From 8858ad1c41341089bf45056abafb0b5c81f4ee5b Mon Sep 17 00:00:00 2001 From: OEOTYAN Date: Tue, 7 Jan 2025 20:10:38 +0800 Subject: [PATCH 01/20] chore: remove some useless codes --- src-client/ll/core/main_win.cpp | 3 --- src-server/ll/core/main_win.cpp | 2 -- src/ll/api/base/Containers.h | 8 ++++---- src/ll/api/mod/Mod.h | 2 +- src/ll/api/mod/ModManagerRegistry.cpp | 9 --------- src/ll/api/mod/ModManagerRegistry.h | 2 -- src/ll/core/mod/ModRegistrar.cpp | 28 ++++++++------------------- src/ll/core/mod/ModRegistrar.h | 2 -- 8 files changed, 13 insertions(+), 43 deletions(-) diff --git a/src-client/ll/core/main_win.cpp b/src-client/ll/core/main_win.cpp index 0d9d42e5e0..5d69a02364 100644 --- a/src-client/ll/core/main_win.cpp +++ b/src-client/ll/core/main_win.cpp @@ -124,9 +124,6 @@ LL_AUTO_TYPE_INSTANCE_HOOK( BOOL APIENTRY DllMain(HMODULE /*hModule*/, DWORD ulReasonForCall, LPVOID /*lpReserved*/) { using namespace ll; - if (ulReasonForCall == DLL_PROCESS_DETACH) { - mod::ModRegistrar::getInstance().releaseAllMods(); - } if (ulReasonForCall != DLL_PROCESS_ATTACH) return TRUE; setGamingStatus(GamingStatus::Default); diff --git a/src-server/ll/core/main_win.cpp b/src-server/ll/core/main_win.cpp index 7249eef442..eb02772a57 100644 --- a/src-server/ll/core/main_win.cpp +++ b/src-server/ll/core/main_win.cpp @@ -257,8 +257,6 @@ LL_AUTO_TYPE_INSTANCE_HOOK( command::CommandRegistrar::getInstance().clear(); - mod::ModRegistrar::getInstance().releaseAllMods(); - origin(); } diff --git a/src/ll/api/base/Containers.h b/src/ll/api/base/Containers.h index da4b66afcb..720e837cd8 100644 --- a/src/ll/api/base/Containers.h +++ b/src/ll/api/base/Containers.h @@ -69,7 +69,7 @@ template < class Key, class Hash = ::phmap::priv::hash_default_hash, class Eq = ::phmap::priv::hash_default_eq, - class Alloc = ::phmap::priv::Allocator, + class Alloc = ::std::allocator, size_t N = 4, class Mutex = std::shared_mutex> using ConcurrentDenseSet = ::phmap::parallel_flat_hash_set; @@ -78,7 +78,7 @@ template < class Value, class Hash = ::phmap::priv::hash_default_hash, class Eq = ::phmap::priv::hash_default_eq, - class Alloc = ::phmap::priv::Allocator<::phmap::priv::Pair>, + class Alloc = ::std::allocator<::std::pair>, size_t N = 4, class Mutex = std::shared_mutex> using ConcurrentDenseMap = ::phmap::parallel_flat_hash_map; @@ -87,7 +87,7 @@ template < class Key, class Hash = ::phmap::priv::hash_default_hash, class Eq = ::phmap::priv::hash_default_eq, - class Alloc = ::phmap::priv::Allocator, + class Alloc = ::std::allocator, size_t N = 4, class Mutex = std::shared_mutex> using ConcurrentDenseNodeSet = ::phmap::parallel_node_hash_set; @@ -96,7 +96,7 @@ template < class Value, class Hash = ::phmap::priv::hash_default_hash, class Eq = ::phmap::priv::hash_default_eq, - class Alloc = ::phmap::priv::Allocator<::phmap::priv::Pair>, + class Alloc = ::std::allocator<::std::pair>, size_t N = 4, class Mutex = std::shared_mutex> using ConcurrentDenseNodeMap = ::phmap::parallel_node_hash_map; diff --git a/src/ll/api/mod/Mod.h b/src/ll/api/mod/Mod.h index 5e739bb75e..26cb5b0688 100644 --- a/src/ll/api/mod/Mod.h +++ b/src/ll/api/mod/Mod.h @@ -11,7 +11,7 @@ namespace ll::mod { -LLAPI std::filesystem::path const& getModsRoot(); +LLNDAPI std::filesystem::path const& getModsRoot(); class ModManager; class Mod { diff --git a/src/ll/api/mod/ModManagerRegistry.cpp b/src/ll/api/mod/ModManagerRegistry.cpp index 1ea9854cbf..e8eec39b91 100644 --- a/src/ll/api/mod/ModManagerRegistry.cpp +++ b/src/ll/api/mod/ModManagerRegistry.cpp @@ -25,15 +25,6 @@ ModManagerRegistry& ModManagerRegistry::getInstance() { return instance; } -Expected<> ModManagerRegistry::releaseManagers() noexcept try { - std::lock_guard lock(impl->modMtx); - impl->loadedMods.clear(); - impl->managers.clear(); - return {}; -} catch (...) { - return makeExceptionError(); -} - Expected<> ModManagerRegistry::loadMod(Manifest manifest) noexcept try { std::lock_guard lock(impl->modMtx); if (hasManager(manifest.type)) { diff --git a/src/ll/api/mod/ModManagerRegistry.h b/src/ll/api/mod/ModManagerRegistry.h index 68645292b0..c93cad9568 100644 --- a/src/ll/api/mod/ModManagerRegistry.h +++ b/src/ll/api/mod/ModManagerRegistry.h @@ -17,8 +17,6 @@ class ModManagerRegistry { ModManagerRegistry(); ~ModManagerRegistry(); - Expected<> releaseManagers() noexcept; - Expected<> loadMod(Manifest manifest) noexcept; Expected<> unloadMod(std::string_view name) noexcept; diff --git a/src/ll/core/mod/ModRegistrar.cpp b/src/ll/core/mod/ModRegistrar.cpp index 17ce60b230..538cc22974 100644 --- a/src/ll/core/mod/ModRegistrar.cpp +++ b/src/ll/core/mod/ModRegistrar.cpp @@ -38,6 +38,7 @@ namespace ll::mod { struct ModRegistrar::Impl { std::recursive_mutex mutex; data::DependencyGraph deps; + ModManagerRegistry& registry = ModManagerRegistry::getInstance(); }; ModRegistrar::ModRegistrar() : impl(std::make_unique()) {} @@ -82,7 +83,7 @@ void ModRegistrar::loadAllMods() noexcept try { getLogger().info("Loading mods..."_tr()); - auto& registry = ModManagerRegistry::getInstance(); + auto& registry = impl->registry; if (!registry.addManager(std::make_shared())) { getLogger().error("Failed to create native mod manager"_tr()); @@ -269,7 +270,7 @@ void ModRegistrar::enableAllMods() noexcept try { auto begin = std::chrono::steady_clock::now(); size_t count{}; for (auto& name : names) { - auto mod = ModManagerRegistry::getInstance().getMod(name); + auto mod = impl->registry.getMod(name); if (!mod || mod->isEnabled()) continue; getLogger().info("Enabling {0} v{1}"_tr(name, mod->getManifest().version.value_or(data::Version{0, 0, 0}))); if (auto res = enableMod(name); res) { @@ -295,7 +296,7 @@ void ModRegistrar::disableAllMods() noexcept try { if (!names.empty()) { getLogger().info("Disabling mods..."_tr()); for (auto& name : std::ranges::reverse_view(names)) { - auto mod = ModManagerRegistry::getInstance().getMod(name); + auto mod = impl->registry.getMod(name); if (!mod || mod->isDisabled()) continue; getLogger().info("Disabling {0} v{1}"_tr(name, mod->getManifest().version.value_or(data::Version{0, 0, 0})) ); @@ -307,17 +308,6 @@ void ModRegistrar::disableAllMods() noexcept try { } catch (...) { error_utils::printCurrentException(getLogger()); } -void ModRegistrar::releaseAllMods() noexcept try { - // TODO: check lifetime - // std::lock_guard lock(impl->mutex); - // if (auto res = ModManagerRegistry::getInstance().releaseManagers(); !res) { - // res.error().log(getLogger(), io::LogLevel::Warn); - // } - // impl->deps.clear(); - return; -} catch (...) { - error_utils::printCurrentException(getLogger()); -} Expected<> ModRegistrar::loadMod(std::string_view name) noexcept { std::lock_guard lock(impl->mutex); @@ -332,7 +322,7 @@ Expected<> ModRegistrar::loadMod(std::string_view name) noexcept { } } auto& manifest = *res; - auto& reg = ModManagerRegistry::getInstance(); + auto& reg = impl->registry; if (manifest.dependencies) { for (auto& dependency : *manifest.dependencies) { if (!reg.hasMod(dependency.name) || !checkVersion(reg.getMod(dependency.name)->getManifest(), dependency)) { @@ -364,13 +354,11 @@ Expected<> ModRegistrar::unloadMod(std::string_view name) noexcept { if (!dependents.empty()) { return makeStringError("{0} still depends on {1}"_tr(dependents, name)); } - return ModManagerRegistry::getInstance().unloadMod(name).transform([&, this]() { - impl->deps.erase(std::string{name}); - }); + return impl->registry.unloadMod(name).transform([&, this]() { impl->deps.erase(std::string{name}); }); } Expected<> ModRegistrar::enableMod(std::string_view name) noexcept { std::lock_guard lock(impl->mutex); - auto& registry = ModManagerRegistry::getInstance(); + auto& registry = impl->registry; auto dependents = impl->deps.dependentOn(std::string{name}); erase_if(dependents, [&](auto& name) { if (auto ptr = registry.getMod(name); ptr) { @@ -385,7 +373,7 @@ Expected<> ModRegistrar::enableMod(std::string_view name) noexcept { } Expected<> ModRegistrar::disableMod(std::string_view name) noexcept { std::lock_guard lock(impl->mutex); - auto& registry = ModManagerRegistry::getInstance(); + auto& registry = impl->registry; auto dependents = impl->deps.dependentBy(std::string{name}); erase_if(dependents, [&](auto& name) { if (auto ptr = registry.getMod(name); ptr) { diff --git a/src/ll/core/mod/ModRegistrar.h b/src/ll/core/mod/ModRegistrar.h index a11036b8e5..d7174a9b1a 100644 --- a/src/ll/core/mod/ModRegistrar.h +++ b/src/ll/core/mod/ModRegistrar.h @@ -34,8 +34,6 @@ class ModRegistrar { void disableAllMods() noexcept; - void releaseAllMods() noexcept; - Expected<> loadMod(std::string_view name) noexcept; Expected<> unloadMod(std::string_view name) noexcept; From ffc40f9743d69491313ea594438428f7a5621eb1 Mon Sep 17 00:00:00 2001 From: Dofes <91889957+Dofes@users.noreply.github.com> Date: Wed, 8 Jan 2025 20:28:17 +0800 Subject: [PATCH 02/20] fix: fix #1610 --- src-server/ll/core/form/FormHandler.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src-server/ll/core/form/FormHandler.cpp b/src-server/ll/core/form/FormHandler.cpp index 5f8c4961e8..04d33fece2 100644 --- a/src-server/ll/core/form/FormHandler.cpp +++ b/src-server/ll/core/form/FormHandler.cpp @@ -140,8 +140,9 @@ bool handleFormPacket( if (it == formHandlers.end()) { return false; } - it->second->handle(player, std::move(data), cancelReason); + auto handler = std::move(it->second); formHandlers.erase(it); + handler->handle(player, std::move(data), cancelReason); return true; } From e776a62f2de038fa532b6051fa1896c24b17edeb Mon Sep 17 00:00:00 2001 From: OEOTYAN Date: Wed, 8 Jan 2025 23:22:50 +0800 Subject: [PATCH 03/20] feat: add more nbt operator --- src-test/server/TestNbt.cpp | 2 +- src/mc/nbt/CompoundTagVariant.h | 18 ++++++++++++++--- src/mc/nbt/Tag.h | 2 -- src/mc/nbt/UniqueTagPtr.h | 30 +++++++++++++++++++---------- src/mc/nbt/detail/SnbtParseImpl.cpp | 2 +- 5 files changed, 37 insertions(+), 17 deletions(-) diff --git a/src-test/server/TestNbt.cpp b/src-test/server/TestNbt.cpp index a423bc4a6d..73cd9d4fe3 100644 --- a/src-test/server/TestNbt.cpp +++ b/src-test/server/TestNbt.cpp @@ -120,7 +120,7 @@ LL_AUTO_TYPE_INSTANCE_HOOK(NbtTest, HookPriority::Normal, ServerInstance, &Serve nbt3["hello"]["world"] = ListTag{1.0, 2.0, 3.0}; - nbt3["hello"]["world"][1] = 7.0_d; + nbt3["hello"]["world"][1] = 7.0; nbt3["hello"][", "] = "world"; diff --git a/src/mc/nbt/CompoundTagVariant.h b/src/mc/nbt/CompoundTagVariant.h index cdaa4fa7ab..9044edf4a7 100644 --- a/src/mc/nbt/CompoundTagVariant.h +++ b/src/mc/nbt/CompoundTagVariant.h @@ -248,13 +248,12 @@ class CompoundTagVariant { return operator[](std::string_view{index}); } - [[nodiscard]] UniqueTagPtr toUnique() const& { + [[nodiscard]] UniqueTagPtr toUniqueCopy() const& { return std::visit( [](auto& val) -> std::unique_ptr { return std::make_unique>(val); }, mTagStorage ); } - [[nodiscard]] operator UniqueTagPtr() const { return toUnique(); } [[nodiscard]] UniqueTagPtr toUnique() && { return std::visit( @@ -342,7 +341,7 @@ class CompoundTagVariant { mType = tags.begin()->index(); reserve(tags.size()); for (auto& tag : tags) { - emplace_back(tag.toUnique()); + emplace_back(tag.toUniqueCopy()); } } } @@ -353,6 +352,19 @@ class CompoundTagVariant { return r ? (l.get() == *r) : false; } +[[nodiscard]] inline UniqueTagPtr::UniqueTagPtr(CompoundTagVariant&& r) : ptr(std::move(r).toUnique().release()) {} + +[[nodiscard]] inline UniqueTagPtr::UniqueTagPtr(CompoundTagVariant const& r) : ptr(r.toUniqueCopy().release()) {} + +inline UniqueTagPtr& UniqueTagPtr::operator=(CompoundTagVariant&& r) { + reset(std::move(r).toUnique().release()); + return *this; +} +inline UniqueTagPtr& UniqueTagPtr::operator=(CompoundTagVariant const& r) { + reset(r.toUniqueCopy().release()); + return *this; +} + template T> [[nodiscard]] inline T& UniqueTagPtr::get() const { if (hold()) { diff --git a/src/mc/nbt/Tag.h b/src/mc/nbt/Tag.h index 91a199e80f..64ea5fea7f 100644 --- a/src/mc/nbt/Tag.h +++ b/src/mc/nbt/Tag.h @@ -77,8 +77,6 @@ class Tag { [[nodiscard]] bool operator==(Tag const& other) const { return equals(other); } - [[nodiscard]] operator std::unique_ptr() const { return copy(); } - LLNDAPI std::string toSnbt(SnbtFormat snbtFormat = SnbtFormat::PrettyFilePrint, uchar indent = 4) const noexcept; public: diff --git a/src/mc/nbt/UniqueTagPtr.h b/src/mc/nbt/UniqueTagPtr.h index f30e36e0fd..65b6b15205 100644 --- a/src/mc/nbt/UniqueTagPtr.h +++ b/src/mc/nbt/UniqueTagPtr.h @@ -17,6 +17,7 @@ class StringTag; class ListTag; class CompoundTag; class IntArrayTag; +class CompoundTagVariant; class UniqueTagPtr { Tag* ptr{}; @@ -37,29 +38,38 @@ class UniqueTagPtr { IntArrayTag>; public: - LL_CONSTEXPR23 UniqueTagPtr() noexcept {} + [[nodiscard]] LL_CONSTEXPR23 UniqueTagPtr() noexcept {} - LL_CONSTEXPR23 UniqueTagPtr(nullptr_t) noexcept {} + [[nodiscard]] LL_CONSTEXPR23 UniqueTagPtr(nullptr_t) noexcept {} + + [[nodiscard]] LL_CONSTEXPR23 explicit UniqueTagPtr(Tag* p) noexcept : ptr(p) {} + + [[nodiscard]] LL_CONSTEXPR23 UniqueTagPtr(std::unique_ptr&& ptr) noexcept : ptr(ptr.release()) {} + + [[nodiscard]] LL_CONSTEXPR23 UniqueTagPtr(UniqueTagPtr&& r) noexcept : ptr(r.release()) {} + + [[nodiscard]] LL_CONSTEXPR23 UniqueTagPtr(UniqueTagPtr const& r) : ptr(r ? (r->copy().release()) : nullptr) {} + + [[nodiscard]] UniqueTagPtr(CompoundTagVariant&& r); + [[nodiscard]] UniqueTagPtr(CompoundTagVariant const& r); + + UniqueTagPtr& operator=(CompoundTagVariant&& r); + UniqueTagPtr& operator=(CompoundTagVariant const& r); LL_CONSTEXPR23 UniqueTagPtr& operator=(nullptr_t) noexcept { reset(); return *this; } - LL_CONSTEXPR23 explicit UniqueTagPtr(Tag* p) noexcept : ptr(p) {} - - LL_CONSTEXPR23 UniqueTagPtr(UniqueTagPtr&& r) noexcept : ptr(r.release()) {} - LL_CONSTEXPR23 UniqueTagPtr(std::unique_ptr&& ptr) noexcept : ptr(ptr.release()) {} - - LL_CONSTEXPR23 UniqueTagPtr& operator=(UniqueTagPtr&& r) noexcept { + LL_CONSTEXPR23 UniqueTagPtr& operator=(std::unique_ptr&& r) noexcept { reset(r.release()); return *this; } - LL_CONSTEXPR23 UniqueTagPtr& operator=(std::unique_ptr&& r) noexcept { + + LL_CONSTEXPR23 UniqueTagPtr& operator=(UniqueTagPtr&& r) noexcept { reset(r.release()); return *this; } - LL_CONSTEXPR23 UniqueTagPtr(UniqueTagPtr const& r) : ptr(r ? (r->copy().release()) : nullptr) {} LL_CONSTEXPR23 UniqueTagPtr& operator=(UniqueTagPtr const& r) { if (r && &r != this) ptr = r->copy().release(); diff --git a/src/mc/nbt/detail/SnbtParseImpl.cpp b/src/mc/nbt/detail/SnbtParseImpl.cpp index 2feaf7d303..7aab33abd5 100644 --- a/src/mc/nbt/detail/SnbtParseImpl.cpp +++ b/src/mc/nbt/detail/SnbtParseImpl.cpp @@ -526,7 +526,7 @@ Expected parseList(std::string_view& s) { if (!value) { return forwardError(value.error()); } - res.emplace_back(value->toUnique()); + res.emplace_back(std::move(*value).toUnique()); if (auto skipped = skipWhitespace(s); !skipped) { return forwardError(skipped.error()); From 6210b8e4d1e372efd584825a1efd0c1bbd50d7c7 Mon Sep 17 00:00:00 2001 From: OEOTYAN Date: Thu, 9 Jan 2025 18:00:02 +0800 Subject: [PATCH 04/20] chore: update some config --- .../entity/systems/LevelChunkTickingSystem.h | 6 -- src/mc/external/webrtc/webrtc.h | 6 +- src/mc/network/packet/LevelChunkPacket.h | 8 +-- src/mc/world/level/BlockTickingQueue.h | 18 +----- .../world/level/LevelChunkMetaDataManager.h | 13 ++--- .../level/LevelChunkPerformanceTelemetry.h | 21 +++---- .../level/block/states/BlockStateInstance.h | 18 ++---- src/mc/world/level/chunk/LevelChunk.h | 24 ++------ .../chunk/LevelChunkAndSubChunkLoggingData.h | 55 ++++++++----------- .../chunk/LevelChunkBlockActorAccessToken.h | 8 +-- .../world/level/chunk/LevelChunkBuilderData.h | 48 ++++++++-------- .../level/chunk/LevelChunkEventManager.h | 31 +++++++---- .../level/chunk/LevelChunkEventManagerProxy.h | 6 -- .../level/chunk/LevelChunkFinalDeleter.h | 6 -- .../chunk/LevelChunkMemoryEstimateData.h | 28 ++++------ src/mc/world/level/chunk/LevelChunkMetaData.h | 12 ++-- .../level/chunk/LevelChunkMetaDataDebug.h | 16 +++--- .../chunk/LevelChunkMetaDataDictionary.h | 16 +++--- .../level/chunk/LevelChunkPhase1Deleter.h | 6 -- .../world/level/chunk/LevelChunkSaveManager.h | 50 ++++++++--------- .../level/chunk/LevelChunkSaveManagerProxy.h | 11 +--- .../world/level/chunk/LevelChunkVolumeData.h | 24 ++++---- 22 files changed, 169 insertions(+), 262 deletions(-) diff --git a/src/mc/entity/systems/LevelChunkTickingSystem.h b/src/mc/entity/systems/LevelChunkTickingSystem.h index cab64ea110..18f7eaecf0 100644 --- a/src/mc/entity/systems/LevelChunkTickingSystem.h +++ b/src/mc/entity/systems/LevelChunkTickingSystem.h @@ -18,12 +18,6 @@ struct TickingSystemWithInfo; // clang-format on class LevelChunkTickingSystem : public ::ITickingSystem { -public: - // prevent constructor by default - LevelChunkTickingSystem& operator=(LevelChunkTickingSystem const&); - LevelChunkTickingSystem(LevelChunkTickingSystem const&); - LevelChunkTickingSystem(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/external/webrtc/webrtc.h b/src/mc/external/webrtc/webrtc.h index e93002f6da..a9652f253d 100644 --- a/src/mc/external/webrtc/webrtc.h +++ b/src/mc/external/webrtc/webrtc.h @@ -78,7 +78,8 @@ namespace webrtc { struct SsrcInfo; } namespace webrtc { // inner types enum : int { - KMaxSpatialLayers = 5, + // bitfield representation + KMaxEncoderBuffers = 1 << 3, }; enum : int { @@ -99,8 +100,7 @@ enum : int { }; enum : int { - // bitfield representation - KMaxEncoderBuffers = 1 << 3, + KMaxSpatialLayers = 5, }; // functions diff --git a/src/mc/network/packet/LevelChunkPacket.h b/src/mc/network/packet/LevelChunkPacket.h index 0876fc5de1..0844a65aee 100644 --- a/src/mc/network/packet/LevelChunkPacket.h +++ b/src/mc/network/packet/LevelChunkPacket.h @@ -28,14 +28,8 @@ class LevelChunkPacket : public ::Packet { public: // member variables // NOLINTBEGIN - ::ll::UntypedStorage<8, 8> mUnke3cf9a; + ::ll::TypedStorage<8, 8, uint64> blobId; // NOLINTEND - - public: - // prevent constructor by default - SubChunkMetadata& operator=(SubChunkMetadata const&); - SubChunkMetadata(SubChunkMetadata const&); - SubChunkMetadata(); }; public: diff --git a/src/mc/world/level/BlockTickingQueue.h b/src/mc/world/level/BlockTickingQueue.h index 62fa71b47f..8ed470fc9d 100644 --- a/src/mc/world/level/BlockTickingQueue.h +++ b/src/mc/world/level/BlockTickingQueue.h @@ -36,24 +36,12 @@ class BlockTickingQueue { public: // member variables // NOLINTBEGIN - ::ll::UntypedStorage<1, 1> mUnk958ddb; - ::ll::UntypedStorage<8, 40> mUnk723bc0; + ::ll::TypedStorage<1, 1, bool> mIsRemoved; + ::ll::TypedStorage<8, 40, ::TickNextTickData> mData; // NOLINTEND - - public: - // prevent constructor by default - BlockTick& operator=(BlockTick const&); - BlockTick(BlockTick const&); - BlockTick(); }; - struct HashBlockTick { - public: - // prevent constructor by default - HashBlockTick& operator=(HashBlockTick const&); - HashBlockTick(HashBlockTick const&); - HashBlockTick(); - }; + struct HashBlockTick {}; class TickDataSet : public ::MovePriorityQueue<::BlockTickingQueue::BlockTick, ::std::greater<::BlockTickingQueue::BlockTick>> { diff --git a/src/mc/world/level/LevelChunkMetaDataManager.h b/src/mc/world/level/LevelChunkMetaDataManager.h index 585cc76f1d..e665979eca 100644 --- a/src/mc/world/level/LevelChunkMetaDataManager.h +++ b/src/mc/world/level/LevelChunkMetaDataManager.h @@ -17,23 +17,18 @@ class LevelChunk; class LevelChunkMetaData; class LevelChunkMetaDataDictionary; class LevelSeed64; +namespace Bedrock::PubSub { class Subscription; } // clang-format on class LevelChunkMetaDataManager { public: // member variables // NOLINTBEGIN - ::ll::UntypedStorage<8, 16> mUnka0bf51; - ::ll::UntypedStorage<8, 16> mUnkab425c; - ::ll::UntypedStorage<8, 16> mUnk206103; + ::ll::TypedStorage<8, 16, ::std::shared_ptr<::LevelChunkMetaDataDictionary>> mLevelChunkMetaDataDictionary; + ::ll::TypedStorage<8, 16, ::Bedrock::PubSub::Subscription> mOnNewDimensionCreatedSubscription; + ::ll::TypedStorage<8, 16, ::Bedrock::PubSub::Subscription> mOnChunkLoadedSubscription; // NOLINTEND -public: - // prevent constructor by default - LevelChunkMetaDataManager& operator=(LevelChunkMetaDataManager const&); - LevelChunkMetaDataManager(LevelChunkMetaDataManager const&); - LevelChunkMetaDataManager(); - public: // member functions // NOLINTBEGIN diff --git a/src/mc/world/level/LevelChunkPerformanceTelemetry.h b/src/mc/world/level/LevelChunkPerformanceTelemetry.h index ede7654c4c..88890e1c0f 100644 --- a/src/mc/world/level/LevelChunkPerformanceTelemetry.h +++ b/src/mc/world/level/LevelChunkPerformanceTelemetry.h @@ -7,6 +7,7 @@ // auto generated forward declare list // clang-format off +class IMinecraftEventing; struct ChunkPerformanceData; // clang-format on @@ -14,21 +15,15 @@ class LevelChunkPerformanceTelemetry { public: // member variables // NOLINTBEGIN - ::ll::UntypedStorage<8, 8> mUnkf6c20b; - ::ll::UntypedStorage<4, 4> mUnk48c0ae; - ::ll::UntypedStorage<1, 1> mUnk8b573f; - ::ll::UntypedStorage<8, 8> mUnkd52427; - ::ll::UntypedStorage<8, 64> mUnk13e530; - ::ll::UntypedStorage<1, 1> mUnkf39a71; - ::ll::UntypedStorage<1, 1> mUnk63c6e8; + ::ll::TypedStorage<8, 8, ::IMinecraftEventing&> mEventing; + ::ll::TypedStorage<4, 4, uint const> mServerTickRange; + ::ll::TypedStorage<1, 1, bool const> mIsClientSide; + ::ll::TypedStorage<8, 8, uint64> mPerformanceTelemetryTimer; + ::ll::TypedStorage<8, 64, ::std::function> mTelemetryPeriodicCallback; + ::ll::TypedStorage<1, 1, bool> mPerformanceTelemetryFired; + ::ll::TypedStorage<1, 1, bool> mShouldTick; // NOLINTEND -public: - // prevent constructor by default - LevelChunkPerformanceTelemetry& operator=(LevelChunkPerformanceTelemetry const&); - LevelChunkPerformanceTelemetry(LevelChunkPerformanceTelemetry const&); - LevelChunkPerformanceTelemetry(); - public: // member functions // NOLINTBEGIN diff --git a/src/mc/world/level/block/states/BlockStateInstance.h b/src/mc/world/level/block/states/BlockStateInstance.h index a4fc777f1d..a5c4f449db 100644 --- a/src/mc/world/level/block/states/BlockStateInstance.h +++ b/src/mc/world/level/block/states/BlockStateInstance.h @@ -11,20 +11,14 @@ class BlockStateInstance { public: // member variables // NOLINTBEGIN - ::ll::UntypedStorage<4, 4> mUnkeee94f; - ::ll::UntypedStorage<4, 4> mUnk58db0e; - ::ll::UntypedStorage<4, 4> mUnk3e3d8a; - ::ll::UntypedStorage<4, 4> mUnk787411; - ::ll::UntypedStorage<1, 1> mUnk163307; - ::ll::UntypedStorage<8, 8> mUnkd127d6; + ::ll::TypedStorage<4, 4, uint> mEndBit; + ::ll::TypedStorage<4, 4, uint> mNumBits; + ::ll::TypedStorage<4, 4, uint> mVariationCount; + ::ll::TypedStorage<4, 4, uint> mMask; + ::ll::TypedStorage<1, 1, bool> mInitialized; + ::ll::TypedStorage<8, 8, ::BlockState const*> mState; // NOLINTEND -public: - // prevent constructor by default - BlockStateInstance& operator=(BlockStateInstance const&); - BlockStateInstance(BlockStateInstance const&); - BlockStateInstance(); - public: // member functions // NOLINTBEGIN diff --git a/src/mc/world/level/chunk/LevelChunk.h b/src/mc/world/level/chunk/LevelChunk.h index 73da3ffc92..a5ddacf010 100644 --- a/src/mc/world/level/chunk/LevelChunk.h +++ b/src/mc/world/level/chunk/LevelChunk.h @@ -135,17 +135,11 @@ class LevelChunk { public: // member variables // NOLINTBEGIN - ::ll::UntypedStorage<1, 1> mUnk6421bd; - ::ll::UntypedStorage<1, 1> mUnk82d63c; - ::ll::UntypedStorage<1, 1> mUnk1cca4f; - ::ll::UntypedStorage<1, 1> mUnkd8dd50; + ::ll::TypedStorage<1, 1, bool> mWasStored; + ::ll::TypedStorage<1, 1, bool> mWasGenerated; + ::ll::TypedStorage<1, 1, bool> mWasRequestedInsideTickRange; + ::ll::TypedStorage<1, 1, bool> mWasLoadedInsideTickRange; // NOLINTEND - - public: - // prevent constructor by default - Telemetry& operator=(Telemetry const&); - Telemetry(Telemetry const&); - Telemetry(); }; using BlockList = ::std::vector<::BlockPos>; @@ -158,15 +152,9 @@ class LevelChunk { public: // member variables // NOLINTBEGIN - ::ll::UntypedStorage<4, 24> mUnkaa0f6a; - ::ll::UntypedStorage<1, 1> mUnkcb47a3; + ::ll::TypedStorage<4, 24, ::BoundingBox> aabb; + ::ll::TypedStorage<1, 1, ::HardcodedSpawnAreaType> type; // NOLINTEND - - public: - // prevent constructor by default - SpawningArea& operator=(SpawningArea const&); - SpawningArea(SpawningArea const&); - SpawningArea(); }; using BBorder = bool; diff --git a/src/mc/world/level/chunk/LevelChunkAndSubChunkLoggingData.h b/src/mc/world/level/chunk/LevelChunkAndSubChunkLoggingData.h index 6c57ab6388..cdaca69f3b 100644 --- a/src/mc/world/level/chunk/LevelChunkAndSubChunkLoggingData.h +++ b/src/mc/world/level/chunk/LevelChunkAndSubChunkLoggingData.h @@ -4,11 +4,14 @@ // auto generated inclusion list #include "mc/deps/core/utility/EnableNonOwnerReferences.h" +#include "mc/world/level/chunk/ChunkState.h" +#include "mc/world/level/chunk/SubChunk.h" // auto generated forward declare list // clang-format off class ChunkPos; class SubChunkPos; +namespace Bedrock::Threading { class Mutex; } // clang-format on struct LevelChunkAndSubChunkLoggingData : public ::Bedrock::EnableNonOwnerReferences { @@ -23,45 +26,35 @@ struct LevelChunkAndSubChunkLoggingData : public ::Bedrock::EnableNonOwnerRefere public: // member variables // NOLINTBEGIN - ::ll::UntypedStorage<8, 8> mUnke8ff39; - ::ll::UntypedStorage<8, 32> mUnk398c02; - ::ll::UntypedStorage<1, 1> mUnk6c0f4b; + ::ll::TypedStorage<8, 8, ::std::chrono::steady_clock::time_point> mTimePoint; + ::ll::TypedStorage<8, 32, ::std::string> mLogEntry; + ::ll::TypedStorage<1, 1, bool> mIsClientSide; // NOLINTEND - - public: - // prevent constructor by default - LogEntry& operator=(LogEntry const&); - LogEntry(LogEntry const&); - LogEntry(); }; public: // member variables // NOLINTBEGIN - ::ll::UntypedStorage<4, 12> mUnk825d58; - ::ll::UntypedStorage<4, 12> mUnkeac1da; - ::ll::UntypedStorage<1, 1> mUnk6f8486; - ::ll::UntypedStorage<1, 1> mUnkde6950; - ::ll::UntypedStorage<1, 1> mUnk52206e; - ::ll::UntypedStorage<1, 1> mUnk9f6042; - ::ll::UntypedStorage<1, 1> mUnkcd7f6b; - ::ll::UntypedStorage<1, 1> mUnk3a940e; - ::ll::UntypedStorage<4, 4> mUnke24144; - ::ll::UntypedStorage<4, 4> mUnkd187a7; - ::ll::UntypedStorage<4, 4> mUnkd5517f; - ::ll::UntypedStorage<8, 8> mUnk2330e3; - ::ll::UntypedStorage<8, 16> mUnkd1257b; - ::ll::UntypedStorage<8, 16> mUnk768d4c; - ::ll::UntypedStorage<8, 24> mUnk5de58f; - ::ll::UntypedStorage<8, 80> mUnk15c6dd; + ::ll::TypedStorage<4, 12, ::SubChunkPos> mCurrentPlayerSubChunk; + ::ll::TypedStorage<4, 12, ::SubChunkPos> mSubChunkToTrack; + ::ll::TypedStorage<1, 1, bool> mCollectData; + ::ll::TypedStorage<1, 1, bool> mLogAllData; + ::ll::TypedStorage<1, 1, bool> mCollectSubChunkPosition; + ::ll::TypedStorage<1, 1, ::ChunkState> mTrackedLevelChunkStateServer; + ::ll::TypedStorage<1, 1, ::ChunkState> mTrackedLevelChunkStateClient; + ::ll::TypedStorage<1, 1, ::ChunkState> mTrackedLevelChunkStateClientServer; + ::ll::TypedStorage<4, 4, ::SubChunk::SubChunkState> mTrackedSubChunkStateServer; + ::ll::TypedStorage<4, 4, ::SubChunk::SubChunkState> mTrackedSubChunkStateClient; + ::ll::TypedStorage<4, 4, ::SubChunk::SubChunkState> mTrackedSubChunkStateClientServer; + ::ll::TypedStorage<8, 8, ::std::chrono::steady_clock::time_point> mLogStartTime; + ::ll::TypedStorage<8, 16, ::std::map<::SubChunkPos, ::std::vector<::LevelChunkAndSubChunkLoggingData::LogEntry>>> + mSubChunkLog; + ::ll::TypedStorage<8, 16, ::std::map<::ChunkPos, ::std::vector<::LevelChunkAndSubChunkLoggingData::LogEntry>>> + mLevelChunkLog; + ::ll::TypedStorage<8, 24, ::std::vector<::LevelChunkAndSubChunkLoggingData::LogEntry>> mGeneralEventLog; + ::ll::TypedStorage<8, 80, ::Bedrock::Threading::Mutex> mMutex; // NOLINTEND -public: - // prevent constructor by default - LevelChunkAndSubChunkLoggingData& operator=(LevelChunkAndSubChunkLoggingData const&); - LevelChunkAndSubChunkLoggingData(LevelChunkAndSubChunkLoggingData const&); - LevelChunkAndSubChunkLoggingData(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/level/chunk/LevelChunkBlockActorAccessToken.h b/src/mc/world/level/chunk/LevelChunkBlockActorAccessToken.h index e233aff006..e0c0b71dad 100644 --- a/src/mc/world/level/chunk/LevelChunkBlockActorAccessToken.h +++ b/src/mc/world/level/chunk/LevelChunkBlockActorAccessToken.h @@ -2,10 +2,4 @@ #include "mc/_HeaderOutputPredefine.h" -class LevelChunkBlockActorAccessToken { -public: - // prevent constructor by default - LevelChunkBlockActorAccessToken& operator=(LevelChunkBlockActorAccessToken const&); - LevelChunkBlockActorAccessToken(LevelChunkBlockActorAccessToken const&); - LevelChunkBlockActorAccessToken(); -}; +class LevelChunkBlockActorAccessToken {}; diff --git a/src/mc/world/level/chunk/LevelChunkBuilderData.h b/src/mc/world/level/chunk/LevelChunkBuilderData.h index c97f139a73..2bbe63d231 100644 --- a/src/mc/world/level/chunk/LevelChunkBuilderData.h +++ b/src/mc/world/level/chunk/LevelChunkBuilderData.h @@ -2,6 +2,17 @@ #include "mc/_HeaderOutputPredefine.h" +// auto generated inclusion list +#include "mc/world/level/chunk/ChunkState.h" +#include "mc/world/level/chunk/LevelChunkGridAreaElement.h" + +// auto generated forward declare list +// clang-format off +class ChunkPos; +class LevelChunk; +class SpinLockImpl; +// clang-format on + class LevelChunkBuilderData { public: // LevelChunkBuilderData inner types declare @@ -14,36 +25,29 @@ class LevelChunkBuilderData { public: // member variables // NOLINTBEGIN - ::ll::UntypedStorage<8, 16> mUnk8e203f; - ::ll::UntypedStorage<4, 4> mUnkc31546; + ::ll::TypedStorage<8, 16, ::std::pair<::ChunkPos, ::ChunkState>> mChunkPosAndExpectedState; + ::ll::TypedStorage<4, 4, int> mPriority; // NOLINTEND - - public: - // prevent constructor by default - ChunkReadyForProcessingElement& operator=(ChunkReadyForProcessingElement const&); - ChunkReadyForProcessingElement(ChunkReadyForProcessingElement const&); - ChunkReadyForProcessingElement(); }; public: // member variables // NOLINTBEGIN - ::ll::UntypedStorage<8, 32> mUnk335e83; - ::ll::UntypedStorage<8, 64> mUnk9d1019; - ::ll::UntypedStorage<8, 32> mUnk46c2a0; - ::ll::UntypedStorage<8, 24> mUnkb5200d; - ::ll::UntypedStorage<8, 32> mUnkdfaac4; - ::ll::UntypedStorage<8, 64> mUnk18e213; - ::ll::UntypedStorage<8, 24> mUnk242213; - ::ll::UntypedStorage<4, 4> mUnkf58007; - ::ll::UntypedStorage<8, 32> mUnkd4fa22; + ::ll::TypedStorage<8, 32, ::SpinLockImpl> mChunkGenerationGridMapSpinLock; + ::ll::TypedStorage< + 8, + 64, + ::std::unordered_map<::ChunkPos, ::std::shared_ptr<::LevelChunkGridAreaElement<::std::weak_ptr<::LevelChunk>>>>> + mChunkGenerationGridMap; + ::ll::TypedStorage<8, 32, ::SpinLockImpl> mChunksToAddToProcessingSpinLock; + ::ll::TypedStorage<8, 24, ::std::vector<::std::pair<::ChunkPos, ::ChunkState>>> mChunksToAddToProcessing; + ::ll::TypedStorage<8, 32, ::SpinLockImpl> mChunksReadyForProcessingSpinLock; + ::ll::TypedStorage<8, 64, ::std::unordered_set<::std::pair<::ChunkPos, ::ChunkState>>> mChunksReadyForProcessing; + ::ll::TypedStorage<8, 24, ::std::vector<::LevelChunkBuilderData::ChunkReadyForProcessingElement>> mChunkSortVector; + ::ll::TypedStorage<4, 4, ::std::atomic> mChunkGenerationTasksInFlight; + ::ll::TypedStorage<8, 32, ::SpinLockImpl> mSpawnTasksLock; // NOLINTEND -public: - // prevent constructor by default - LevelChunkBuilderData& operator=(LevelChunkBuilderData const&); - LevelChunkBuilderData(LevelChunkBuilderData const&); - public: // member functions // NOLINTBEGIN diff --git a/src/mc/world/level/chunk/LevelChunkEventManager.h b/src/mc/world/level/chunk/LevelChunkEventManager.h index 5addfe4b7d..488003499d 100644 --- a/src/mc/world/level/chunk/LevelChunkEventManager.h +++ b/src/mc/world/level/chunk/LevelChunkEventManager.h @@ -4,6 +4,7 @@ // auto generated inclusion list #include "mc/deps/core/utility/pub_sub/Connector.h" +#include "mc/deps/core/utility/pub_sub/Publisher.h" #include "mc/world/level/chunk/ILevelChunkEventManagerConnector.h" // auto generated forward declare list @@ -11,24 +12,34 @@ class ChunkSource; class ILevelChunkEventManagerProxy; class LevelChunk; +namespace Bedrock::PubSub::ThreadModel { struct MultiThreaded; } // clang-format on class LevelChunkEventManager : public ::ILevelChunkEventManagerConnector { public: // member variables // NOLINTBEGIN - ::ll::UntypedStorage<8, 128> mUnk5fa7b8; - ::ll::UntypedStorage<8, 128> mUnkb42b90; - ::ll::UntypedStorage<8, 128> mUnk7144be; - ::ll::UntypedStorage<8, 8> mUnka9f96b; + ::ll::TypedStorage< + 8, + 128, + ::Bedrock::PubSub:: + Publisher> + mOnChunkLoadedPublisher; + ::ll::TypedStorage< + 8, + 128, + ::Bedrock::PubSub:: + Publisher> + mOnChunkReloadedPublisher; + ::ll::TypedStorage< + 8, + 128, + ::Bedrock::PubSub::Publisher> + mOnChunkDiscardedPublisher; + ::ll::TypedStorage<8, 8, ::gsl::not_null<::std::unique_ptr<::ILevelChunkEventManagerProxy>> const> + mLevelChunkEventManagerProxy; // NOLINTEND -public: - // prevent constructor by default - LevelChunkEventManager& operator=(LevelChunkEventManager const&); - LevelChunkEventManager(LevelChunkEventManager const&); - LevelChunkEventManager(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/level/chunk/LevelChunkEventManagerProxy.h b/src/mc/world/level/chunk/LevelChunkEventManagerProxy.h index 2113334b24..57044ef592 100644 --- a/src/mc/world/level/chunk/LevelChunkEventManagerProxy.h +++ b/src/mc/world/level/chunk/LevelChunkEventManagerProxy.h @@ -12,12 +12,6 @@ class LevelChunk; // clang-format on class LevelChunkEventManagerProxy : public ::ILevelChunkEventManagerProxy { -public: - // prevent constructor by default - LevelChunkEventManagerProxy& operator=(LevelChunkEventManagerProxy const&); - LevelChunkEventManagerProxy(LevelChunkEventManagerProxy const&); - LevelChunkEventManagerProxy(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/level/chunk/LevelChunkFinalDeleter.h b/src/mc/world/level/chunk/LevelChunkFinalDeleter.h index b7bc8c962a..8c2b324796 100644 --- a/src/mc/world/level/chunk/LevelChunkFinalDeleter.h +++ b/src/mc/world/level/chunk/LevelChunkFinalDeleter.h @@ -8,12 +8,6 @@ class LevelChunk; // clang-format on struct LevelChunkFinalDeleter { -public: - // prevent constructor by default - LevelChunkFinalDeleter& operator=(LevelChunkFinalDeleter const&); - LevelChunkFinalDeleter(LevelChunkFinalDeleter const&); - LevelChunkFinalDeleter(); - public: // member functions // NOLINTBEGIN diff --git a/src/mc/world/level/chunk/LevelChunkMemoryEstimateData.h b/src/mc/world/level/chunk/LevelChunkMemoryEstimateData.h index a8fa95b6b8..f8d5ab25a5 100644 --- a/src/mc/world/level/chunk/LevelChunkMemoryEstimateData.h +++ b/src/mc/world/level/chunk/LevelChunkMemoryEstimateData.h @@ -6,22 +6,16 @@ struct LevelChunkMemoryEstimateData { public: // member variables // NOLINTBEGIN - ::ll::UntypedStorage<8, 8> mUnk98a1b9; - ::ll::UntypedStorage<8, 8> mUnkb05ccd; - ::ll::UntypedStorage<8, 8> mUnk9f07f0; - ::ll::UntypedStorage<8, 8> mUnk2d87f5; - ::ll::UntypedStorage<8, 8> mUnkf728a8; - ::ll::UntypedStorage<8, 8> mUnkd2c626; - ::ll::UntypedStorage<8, 8> mUnk70f95c; - ::ll::UntypedStorage<8, 8> mUnk1d8c34; - ::ll::UntypedStorage<8, 8> mUnk9ccd40; - ::ll::UntypedStorage<8, 8> mUnke3ebcf; - ::ll::UntypedStorage<8, 8> mUnkc07669; + ::ll::TypedStorage<8, 8, uint64> mTotalLevelChunkSize; + ::ll::TypedStorage<8, 8, uint64> mSubChunkLightDataSize; + ::ll::TypedStorage<8, 8, uint64> mSubChunkBlockDataSize; + ::ll::TypedStorage<8, 8, uint64> mBiomeData3DSize; + ::ll::TypedStorage<8, 8, uint64> mBlockTickingQueueSize; + ::ll::TypedStorage<8, 8, uint64> mMinSubChunkPaletteSize; + ::ll::TypedStorage<8, 8, double> mAverageSubChunkPaletteSize; + ::ll::TypedStorage<8, 8, uint64> mMaxSubChunkPaletteSize; + ::ll::TypedStorage<8, 8, uint64> mMinBiomePaletteSize; + ::ll::TypedStorage<8, 8, double> mAverageBiomePaletteSize; + ::ll::TypedStorage<8, 8, uint64> mMaxBiomePaletteSize; // NOLINTEND - -public: - // prevent constructor by default - LevelChunkMemoryEstimateData& operator=(LevelChunkMemoryEstimateData const&); - LevelChunkMemoryEstimateData(LevelChunkMemoryEstimateData const&); - LevelChunkMemoryEstimateData(); }; diff --git a/src/mc/world/level/chunk/LevelChunkMetaData.h b/src/mc/world/level/chunk/LevelChunkMetaData.h index c16c644e3c..e829bbc614 100644 --- a/src/mc/world/level/chunk/LevelChunkMetaData.h +++ b/src/mc/world/level/chunk/LevelChunkMetaData.h @@ -4,6 +4,7 @@ // auto generated forward declare list // clang-format off +class CompoundTag; class IDataInput; class IDataOutput; // clang-format on @@ -12,16 +13,11 @@ class LevelChunkMetaData { public: // member variables // NOLINTBEGIN - ::ll::UntypedStorage<8, 24> mUnk1e26b3; - ::ll::UntypedStorage<8, 8> mUnk79104c; - ::ll::UntypedStorage<1, 1> mUnk5525bc; + ::ll::TypedStorage<8, 24, ::CompoundTag> mMetaData; + ::ll::TypedStorage<8, 8, uint64> mCurrentHash; + ::ll::TypedStorage<1, 1, bool> mHashNeedsRecomputing; // NOLINTEND -public: - // prevent constructor by default - LevelChunkMetaData& operator=(LevelChunkMetaData const&); - LevelChunkMetaData(); - public: // member functions // NOLINTBEGIN diff --git a/src/mc/world/level/chunk/LevelChunkMetaDataDebug.h b/src/mc/world/level/chunk/LevelChunkMetaDataDebug.h index cbe4f38ebf..2fe26a54fd 100644 --- a/src/mc/world/level/chunk/LevelChunkMetaDataDebug.h +++ b/src/mc/world/level/chunk/LevelChunkMetaDataDebug.h @@ -5,20 +5,20 @@ // auto generated inclusion list #include "mc/deps/core/utility/EnableNonOwnerReferences.h" +// auto generated forward declare list +// clang-format off +class LevelChunk; +class LevelChunkMetaDataDictionary; +// clang-format on + struct LevelChunkMetaDataDebug : public ::Bedrock::EnableNonOwnerReferences { public: // member variables // NOLINTBEGIN - ::ll::UntypedStorage<8, 16> mUnkf640a9; - ::ll::UntypedStorage<8, 16> mUnk6f67a7; + ::ll::TypedStorage<8, 16, ::std::weak_ptr<::LevelChunk>> mActiveLevelChunk; + ::ll::TypedStorage<8, 16, ::std::weak_ptr<::LevelChunkMetaDataDictionary>> mLevelChunkMetaDataDictionary; // NOLINTEND -public: - // prevent constructor by default - LevelChunkMetaDataDebug& operator=(LevelChunkMetaDataDebug const&); - LevelChunkMetaDataDebug(LevelChunkMetaDataDebug const&); - LevelChunkMetaDataDebug(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/level/chunk/LevelChunkMetaDataDictionary.h b/src/mc/world/level/chunk/LevelChunkMetaDataDictionary.h index 531168e99e..192e88ead3 100644 --- a/src/mc/world/level/chunk/LevelChunkMetaDataDictionary.h +++ b/src/mc/world/level/chunk/LevelChunkMetaDataDictionary.h @@ -9,20 +9,18 @@ class LevelChunkMetaData; // clang-format on class LevelChunkMetaDataDictionary { +public: + // LevelChunkMetaDataDictionary inner types define + using PostSerializeWriteCallback = ::std::function; + public: // member variables // NOLINTBEGIN - ::ll::UntypedStorage<8, 16> mUnk56a38a; - ::ll::UntypedStorage<1, 1> mUnk2dd3cb; - ::ll::UntypedStorage<8, 8> mUnkfd998b; + ::ll::TypedStorage<8, 16, ::std::map>> mDictionary; + ::ll::TypedStorage<1, 1, bool> mDictionaryDirty; + ::ll::TypedStorage<8, 8, ::std::shared_mutex> mSharedMutex; // NOLINTEND -public: - // prevent constructor by default - LevelChunkMetaDataDictionary& operator=(LevelChunkMetaDataDictionary const&); - LevelChunkMetaDataDictionary(LevelChunkMetaDataDictionary const&); - LevelChunkMetaDataDictionary(); - public: // member functions // NOLINTBEGIN diff --git a/src/mc/world/level/chunk/LevelChunkPhase1Deleter.h b/src/mc/world/level/chunk/LevelChunkPhase1Deleter.h index d5b3cf661b..af934d5b43 100644 --- a/src/mc/world/level/chunk/LevelChunkPhase1Deleter.h +++ b/src/mc/world/level/chunk/LevelChunkPhase1Deleter.h @@ -8,12 +8,6 @@ class LevelChunk; // clang-format on struct LevelChunkPhase1Deleter { -public: - // prevent constructor by default - LevelChunkPhase1Deleter& operator=(LevelChunkPhase1Deleter const&); - LevelChunkPhase1Deleter(LevelChunkPhase1Deleter const&); - LevelChunkPhase1Deleter(); - public: // member functions // NOLINTBEGIN diff --git a/src/mc/world/level/chunk/LevelChunkSaveManager.h b/src/mc/world/level/chunk/LevelChunkSaveManager.h index 086005181a..ac1dca4732 100644 --- a/src/mc/world/level/chunk/LevelChunkSaveManager.h +++ b/src/mc/world/level/chunk/LevelChunkSaveManager.h @@ -3,16 +3,20 @@ #include "mc/_HeaderOutputPredefine.h" // auto generated inclusion list +#include "mc/deps/core/utility/AutomaticID.h" #include "mc/deps/core/utility/NonOwnerPointer.h" // auto generated forward declare list // clang-format off +class ChunkPos; class ChunkSource; +class Dimension; class DimensionManager; class GameplayUserManager; class ILevelChunkEventManagerConnector; class ILevelChunkSaveManagerProxy; class LevelChunk; +namespace Bedrock::PubSub { class Subscription; } // clang-format on class LevelChunkSaveManager { @@ -28,43 +32,33 @@ class LevelChunkSaveManager { public: // member variables // NOLINTBEGIN - ::ll::UntypedStorage<4, 4> mUnk246613; - ::ll::UntypedStorage<8, 8> mUnkc50f27; - ::ll::UntypedStorage<4, 4> mUnk200da2; + ::ll::TypedStorage<4, 4, int> mDist; + ::ll::TypedStorage<8, 8, ::ChunkPos> mPosition; + ::ll::TypedStorage<4, 4, ::DimensionType> mDimensionId; // NOLINTEND - - public: - // prevent constructor by default - LevelChunkQueuedSavingElement& operator=(LevelChunkQueuedSavingElement const&); - LevelChunkQueuedSavingElement(LevelChunkQueuedSavingElement const&); - LevelChunkQueuedSavingElement(); }; - class CompareLevelChunkQueuedSavingElement { - public: - // prevent constructor by default - CompareLevelChunkQueuedSavingElement& operator=(CompareLevelChunkQueuedSavingElement const&); - CompareLevelChunkQueuedSavingElement(CompareLevelChunkQueuedSavingElement const&); - CompareLevelChunkQueuedSavingElement(); - }; + class CompareLevelChunkQueuedSavingElement {}; public: // member variables // NOLINTBEGIN - ::ll::UntypedStorage<8, 8> mUnkd57538; - ::ll::UntypedStorage<8, 32> mUnk950a43; - ::ll::UntypedStorage<1, 1> mUnk11735a; - ::ll::UntypedStorage<8, 24> mUnk684d99; - ::ll::UntypedStorage<8, 24> mUnk7a90a3; - ::ll::UntypedStorage<8, 16> mUnkcb48d3; + ::ll::TypedStorage<8, 8, ::gsl::not_null<::std::unique_ptr<::ILevelChunkSaveManagerProxy>> const> + mLevelChunkSaveManagerProxy; + ::ll::TypedStorage< + 8, + 32, + ::std::priority_queue< + ::LevelChunkSaveManager::LevelChunkQueuedSavingElement, + ::std::vector<::LevelChunkSaveManager::LevelChunkQueuedSavingElement>, + ::LevelChunkSaveManager::CompareLevelChunkQueuedSavingElement>> + mLevelChunkSaveQueue; + ::ll::TypedStorage<1, 1, bool> mChunkSaveInProgress; + ::ll::TypedStorage<8, 24, ::Bedrock::NotNullNonOwnerPtr<::GameplayUserManager> const> mGameplayUserManager; + ::ll::TypedStorage<8, 24, ::Bedrock::NotNullNonOwnerPtr<::DimensionManager> const> mDimensionManager; + ::ll::TypedStorage<8, 16, ::Bedrock::PubSub::Subscription> mOnChunkLoadedSubscription; // NOLINTEND -public: - // prevent constructor by default - LevelChunkSaveManager& operator=(LevelChunkSaveManager const&); - LevelChunkSaveManager(LevelChunkSaveManager const&); - LevelChunkSaveManager(); - public: // member functions // NOLINTBEGIN diff --git a/src/mc/world/level/chunk/LevelChunkSaveManagerProxy.h b/src/mc/world/level/chunk/LevelChunkSaveManagerProxy.h index 9159b4f496..40d1327435 100644 --- a/src/mc/world/level/chunk/LevelChunkSaveManagerProxy.h +++ b/src/mc/world/level/chunk/LevelChunkSaveManagerProxy.h @@ -15,6 +15,7 @@ class DimensionManager; class LevelChunk; class Random; class Scheduler; +class TaskGroup; class TaskResult; // clang-format on @@ -22,16 +23,10 @@ class LevelChunkSaveManagerProxy : public ::ILevelChunkSaveManagerProxy { public: // member variables // NOLINTBEGIN - ::ll::UntypedStorage<8, 8> mUnk34e07c; - ::ll::UntypedStorage<8, 8> mUnkb39bf4; + ::ll::TypedStorage<8, 8, ::Random&> mRandom; + ::ll::TypedStorage<8, 8, ::gsl::not_null<::std::unique_ptr<::TaskGroup>>> mTaskGroup; // NOLINTEND -public: - // prevent constructor by default - LevelChunkSaveManagerProxy& operator=(LevelChunkSaveManagerProxy const&); - LevelChunkSaveManagerProxy(LevelChunkSaveManagerProxy const&); - LevelChunkSaveManagerProxy(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/level/chunk/LevelChunkVolumeData.h b/src/mc/world/level/chunk/LevelChunkVolumeData.h index 28f6eb8c71..f1c6c8d628 100644 --- a/src/mc/world/level/chunk/LevelChunkVolumeData.h +++ b/src/mc/world/level/chunk/LevelChunkVolumeData.h @@ -9,9 +9,12 @@ // auto generated forward declare list // clang-format off class BlockPos; +class ChunkPos; class IDataInput; class IDataOutput; +class StructureSpawnRegistry; class StructureStart; +namespace br { class LevelChunkDataRegistry; } namespace br::worldgen { class StructureInstance; } namespace br::worldgen { struct SpawnerData; } // clang-format on @@ -20,21 +23,16 @@ class LevelChunkVolumeData { public: // member variables // NOLINTBEGIN - ::ll::UntypedStorage<8, 24> mUnk8f23ab; - ::ll::UntypedStorage<8, 24> mUnk7498ed; - ::ll::UntypedStorage<8, 768> mUnk22597b; - ::ll::UntypedStorage<4, 12> mUnk208a3f; - ::ll::UntypedStorage<4, 12> mUnke69cd4; - ::ll::UntypedStorage<8, 8> mUnk6d5f5c; - ::ll::UntypedStorage<8, 8> mUnkf41575; + ::ll::TypedStorage<8, 24, ::std::vector<::std::shared_ptr<::br::worldgen::StructureInstance const>>> mStructures; + ::ll::TypedStorage<8, 24, ::std::vector<::std::shared_ptr<::br::worldgen::StructureInstance const>>> + mStructureReferences; + ::ll::TypedStorage<8, 768, ::br::LevelChunkDataRegistry> mDataRegistry; + ::ll::TypedStorage<4, 12, ::BlockPos> mMin; + ::ll::TypedStorage<4, 12, ::BlockPos> mMax; + ::ll::TypedStorage<8, 8, ::ChunkPos> mChunkPos; + ::ll::TypedStorage<8, 8, ::StructureSpawnRegistry const&> mStructureSpawnRegistry; // NOLINTEND -public: - // prevent constructor by default - LevelChunkVolumeData& operator=(LevelChunkVolumeData const&); - LevelChunkVolumeData(LevelChunkVolumeData const&); - LevelChunkVolumeData(); - public: // member functions // NOLINTBEGIN From 594d6897525f902c457428bbbc5bc9fe20305fb8 Mon Sep 17 00:00:00 2001 From: OEOTYAN Date: Thu, 9 Jan 2025 23:01:59 +0800 Subject: [PATCH 05/20] feat: add some api to logger --- src/ll/api/io/Logger.cpp | 4 ++++ src/ll/api/io/Logger.h | 4 ++++ 2 files changed, 8 insertions(+) diff --git a/src/ll/api/io/Logger.cpp b/src/ll/api/io/Logger.cpp index a1cfe4613f..b7a2b16ac5 100644 --- a/src/ll/api/io/Logger.cpp +++ b/src/ll/api/io/Logger.cpp @@ -51,6 +51,10 @@ Logger::Logger(PrivateTag, std::string_view title) : impl(std::make_unique impl->sinks.push_back(std::make_shared()); } +std::string const& Logger::getTitle() { return impl->title; } + +LogLevel Logger::getLevel() { return impl->level; } + void Logger::printView(LogLevel level, std::string_view msg) const noexcept { if (level > impl->level) { return; diff --git a/src/ll/api/io/Logger.h b/src/ll/api/io/Logger.h index 71d2c49c88..301457f868 100644 --- a/src/ll/api/io/Logger.h +++ b/src/ll/api/io/Logger.h @@ -111,6 +111,10 @@ class Logger : public std::enable_shared_from_this { explicit Logger(PrivateTag, std::string_view); + LLNDAPI std::string const& getTitle(); + + LLNDAPI LogLevel getLevel(); + LLAPI void setLevel(LogLevel level); LLAPI void setFlushLevel(LogLevel level); From 69c5fffc083b124a6cd792e92ee19bd4cf48a89c Mon Sep 17 00:00:00 2001 From: OEOTYAN Date: Fri, 10 Jan 2025 00:05:07 +0800 Subject: [PATCH 06/20] chore: update define configs --- src/mc/deps/ecs/EntityId.h | 2 +- xmake.lua | 6 ++++-- 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/src/mc/deps/ecs/EntityId.h b/src/mc/deps/ecs/EntityId.h index 5cfe00817e..4d2dbb39f3 100644 --- a/src/mc/deps/ecs/EntityId.h +++ b/src/mc/deps/ecs/EntityId.h @@ -6,7 +6,7 @@ template <> class entt::entt_traits : public entt::basic_entt_traits { public: - static constexpr entity_type page_size = 2048; + static constexpr entity_type page_size = ENTT_SPARSE_PAGE; }; class EntityId : public entt::entt_traits { diff --git a/xmake.lua b/xmake.lua index 695287b679..d9bd2cd574 100644 --- a/xmake.lua +++ b/xmake.lua @@ -128,10 +128,12 @@ target("LeviLamina") "concurrentqueue", {public = true} ) + add_defines("LL_EXPORT") add_defines( "FMT_USE_FULL_CACHE_DRAGONBOX=1", - "ENTT_PACKED_PAGE=128", -- public = true - "LL_EXPORT" + "ENTT_PACKED_PAGE=128", + "ENTT_SPARSE_PAGE=2048", + {public = true} ) if not is_windows then From b5562c2f0e63ceedc712e0bf9c9a12e15ed1c9a2 Mon Sep 17 00:00:00 2001 From: Dofes <91889957+Dofes@users.noreply.github.com> Date: Fri, 10 Jan 2025 00:47:48 +0800 Subject: [PATCH 07/20] docs: update hook guide --- .../how_to_guides/hook_guide.md | 43 +++++++-------- .../how_to_guides/hook_guide.zh.md | 54 +++++++++---------- 2 files changed, 46 insertions(+), 51 deletions(-) diff --git a/docs/main/developer_guides/how_to_guides/hook_guide.md b/docs/main/developer_guides/how_to_guides/hook_guide.md index f761ada888..c9072cc024 100644 --- a/docs/main/developer_guides/how_to_guides/hook_guide.md +++ b/docs/main/developer_guides/how_to_guides/hook_guide.md @@ -30,8 +30,8 @@ In [`ll/api/memory/Hook.h`](https://github.com/LiteLDev/LeviLamina/blob/develop/ #define LL_AUTO_INSTANCE_HOOK(DEF_TYPE, PRIORITY, IDENTIFIER, RET_TYPE, ...) ``` -The AUTO-marked Hooks automatically register, i.e., call the hook() function to register at runtime. -The TYPED-marked Hooks inherit your DEF_TYPE to the specified type. +The `AUTO`-marked Hooks automatically register, i.e., call the `hook()` function to register at runtime. +The `TYPED`-marked Hooks inherit your `DEF_TYPE` to the specified type. ### STATIC_HOOK @@ -50,9 +50,9 @@ For hooking member functions. !!! note Generally, unless there's a special need, we do not recommend a very high priority; Normal is sufficient. -`TYPE`: The type to which your defined DEF_TYPE is inherited. +`TYPE`: The type to which your defined `DEF_TYPE` is inherited. -`IDENTIFIER`: The identifier used for the Hook lookup function, which can be: [function's decorated name](https://learn.microsoft.com/en-us/cpp/build/reference/decorated-names?view=msvc-170), function bytecode, function definition. +`IDENTIFIER`: The identifier used for the Hook lookup function, which can be: [function's decorated name](https://learn.microsoft.com/en-us/cpp/build/reference/decorated-names?view=msvc-170), function bytecode, or function definition. `RET_TYPE`: The return type of the Hook function. @@ -60,49 +60,46 @@ For hooking member functions. ## Using Hooks -You can refer to static program analysis tools, such as IDA Pro, to obtain the symbols or signatures of the functions you want to Hook. - -Or refer to the [`Fake Header`](https://github.com/LiteLDev/LeviLamina/tree/develop/src/mc) provided by LeviLamina to obtain the symbols or definitions of the functions you want to Hook. +You can refer to the [`Fake Header`](https://github.com/LiteLDev/LeviLamina/tree/develop/src/mc) provided by LeviLamina to obtain the definitions of the functions you want to Hook. ### A Simple Hook Example ```cpp -#include "ll/api/Logger.h" -#include "mc/server/common/DedicatedServer.h" +#include "ll/api/memory/Hook.h" +#include "ll/api/io/LoggerRegistry.h" +#include "mc/server/DedicatedServer.h" -ll::Logger dedicatedServerLogger("DedicatedServer"); +auto dedicatedServerLogger = ll::io::LoggerRegistry::getInstance().getOrCreate("DedicatedServer"); LL_AUTO_TYPE_INSTANCE_HOOK( - DedicatedServerHook, + DedicatedServerCtorHook, ll::memory::HookPriority::Normal, DedicatedServer, - "??0DedicatedServer@@QEAA@XZ", - void + &DedicatedServer::$ctor, + void* ) { - origin(); - dedicatedServerLogger.info("DedicatedServer::DedicatedServer"); + dedicatedServerLogger->info("DedicatedServer::DedicatedServer"); + return origin(); } ``` -This code hooks the constructor of DedicatedServer and prints a log message when the constructor is called. +This code hooks the constructor of `DedicatedServer` and prints a log message when the constructor is called. -Analysis: +#### Analysis: -Referring to the [`DedicatedServer.h`](https://github.com/LiteLDev/LeviLamina/blob/cccef6a0307cdcd89342d25f4826271ac298b6a8/src/mc/server/common/DedicatedServer.h#L59C31-L59C32) provided by LeviLamina, we know that the symbol for DedicatedServer's constructor is `??0DedicatedServer@@QEAA@XZ`. +Referring to the [`DedicatedServer.h`](https://github.com/LiteLDev/LeviLamina/blob/594d6897525f902c457428bbbc5bc9fe20305fb8/src/mc/server/DedicatedServer.h#L134) provided by LeviLamina, we know that the constructor of `DedicatedServer` has a thunk function. Since the constructor is a member function of the class, we used the `INSTANCE_HOOK` type of Hook, which means we don't need to fill in the first [`this pointer`](https://en.cppreference.com/w/cpp/language/this) parameter generated by the compiler. We used the `AUTO`-marked Hook because we want it to automatically register when the mod is loaded. -Finally, for convenience, we used the `TYPE`-marked Hook, so we can directly call functions under the DedicatedServer type in the function body. Although we did not use it in this code, it is a good habit. +Finally, for convenience, we used the `TYPE`-marked Hook, so we can directly call functions under the `DedicatedServer` type in the function body. Although we did not use it in this code, it is a good habit. ### Registering and Unloading Hooks #### Registration -For non-automatically registered Hooks, you need - - to call the `hook()` function to register at the moment your mod needs to register the Hook. +For non-automatically registered Hooks, you need to call the `hook()` function to register at the moment your mod needs to register the Hook. #### Unloading @@ -112,4 +109,4 @@ All Hooks will automatically unload when BDS unloads. You can also call the `unh Hook is a very powerful technique but also a double-edged sword. If used improperly, it can cause crashes of the BDS core or mods, and in severe cases, affect the game saves. -Therefore, please be cautious when using Hooks, check your code carefully to avoid unnecessary errors. +Therefore, please be cautious when using Hooks, and check your code carefully to avoid unnecessary errors. \ No newline at end of file diff --git a/docs/main/developer_guides/how_to_guides/hook_guide.zh.md b/docs/main/developer_guides/how_to_guides/hook_guide.zh.md index a18a2215b7..791550f79a 100644 --- a/docs/main/developer_guides/how_to_guides/hook_guide.zh.md +++ b/docs/main/developer_guides/how_to_guides/hook_guide.zh.md @@ -6,11 +6,11 @@ Hook 是一种在运行时修改函数行为的技术。通常用于在不修改 wikipedia 关于 Hook 的解释:[Hooking](https://en.wikipedia.org/wiki/Hooking) -在 LeviLamina 中,我们提供了封装好的Hook API,使得你可以快速便捷地对 Minecraft 基岩专用服务器(下文称为```BDS```)中的游戏函数进行行为修改。 +在 LeviLamina 中,我们提供了封装好的Hook API,使得你可以快速便捷地对 Minecraft 基岩专用服务器(下文称为`BDS`)中的游戏函数进行行为修改。 ## Hook的类型 -在 [```ll/api/memory/Hook.h```](https://github.com/LiteLDev/LeviLamina/blob/develop/src/ll/api/memory/Hook.h#L180C1-L180C1) 中,我们定义了以下几种Hook 宏: +在[`ll/api/memory/Hook.h`](https://github.com/LiteLDev/LeviLamina/blob/develop/src/ll/api/memory/Hook.h#L180C1-L180C1) 中,我们定义了以下几种Hook 宏: ```cpp #define LL_TYPE_STATIC_HOOK(DEF_TYPE, PRIORITY, TYPE, IDENTIFIER, RET_TYPE, ...) @@ -30,8 +30,7 @@ wikipedia 关于 Hook 的解释:[Hooking](https://en.wikipedia.org/wiki/Hookin #define LL_AUTO_INSTANCE_HOOK(DEF_TYPE, PRIORITY, IDENTIFIER, RET_TYPE, ...) ``` -其中,AUTO 标注的 Hook 会自动注册,即运行时自动调用hook()函数进行注册。 -TYPED 标注的 Hook 会给你的 DEF_TYPE 继承到你指定的类型。 +其中,AUTO 标注的 Hook 会自动注册,即运行时自动调用hook()函数进行注册。 TYPE 标注的 Hook 会给你的 DEF_TYPE 继承到你指定的类型。 ### STATIC_HOOK @@ -43,68 +42,67 @@ TYPED 标注的 Hook 会给你的 DEF_TYPE 继承到你指定的类型。 ## Hook的参数解释 -```DEF_TYPE```:你给你这个 Hook 的起的类型名。 +`DEF_TYPE`:你给你这个 Hook 的起的类型名。 -```PRIORITY```:[Hook的优先级](https://github.com/LiteLDev/LeviLamina/blob/develop/src/ll/api/memory/Hook.h#L73),例如```ll::memory::HookPriority::Normal``` +`PRIORITY`:[Hook的优先级](https://github.com/LiteLDev/LeviLamina/blob/develop/src/ll/api/memory/Hook.h#L73),例如`ll::memory::HookPriority::Normal` !!! note 一般不是特殊需求,我们不推荐过高的优先级,Normal 即可。 -```TYPE```:你的定义的 DEF_TYPE 继承到的类型。 +`TYPE`:你的定义的 `DEF_TYPE` 继承到的类型。 -```IDENTIFIER```:Hook 的查询函数使用的标识符,可以为:[函数修饰后名称](https://learn.microsoft.com/zh-cn/cpp/build/reference/decorated-names?view=msvc-170),函数的字节码,函数定义。 +`IDENTIFIER`:Hook 的查询函数使用的标识符,可以为:[函数修饰后名称](https://learn.microsoft.com/zh-cn/cpp/build/reference/decorated-names?view=msvc-170),函数的字节码,函数定义。 -```RET_TYPE```:Hook 的函数的返回值类型。 +`RET_TYPE`:Hook 的函数的返回值类型。 -```...```:Hook 的函数的参数列表。 +`...`:Hook 的函数的参数列表。 ## Hook的使用 -你可以查阅静态程序分析工具,例如 IDA Pro,来获取你想要Hook的函数的符号或特征码。 - -或者查阅 LeviLamina 提供的[```Fake Header```](https://github.com/LiteLDev/LeviLamina/tree/develop/src/mc)来获取你想要 Hook 的函数的符号或者定义。 +你可以查阅 LeviLamina 提供的[`Fake Header`](https://github.com/LiteLDev/LeviLamina/tree/develop/src/mc)来获取你想要 Hook 的函数的定义。 ### 简单的Hook示例 ```cpp -#include "ll/api/Logger.h" -#include "mc/server/common/DedicatedServer.h" +#include "ll/api/memory/Hook.h" +#include "ll/api/io/LoggerRegistry.h" +#include "mc/server/DedicatedServer.h" -ll::Logger dedicatedServerLogger("DedicatedServer"); +auto dedicatedServerLogger = ll::io::LoggerRegistry::getInstance().getOrCreate("DedicatedServer"); LL_AUTO_TYPE_INSTANCE_HOOK( - DedicatedServerHook, + DedicatedServerCtorHook, ll::memory::HookPriority::Normal, DedicatedServer, - "??0DedicatedServer@@QEAA@XZ", - void + &DedicatedServer::$ctor, + void* ) { - origin(); - dedicatedServerLogger.info("DedicatedServer::DedicatedServer"); + dedicatedServerLogger->info("DedicatedServer::DedicatedServer"); + return origin(); } ``` 这段代码会 Hook DedicatedServer 的构造函数,并在构造函数被调用时打印一条日志。 -解析: +#### 解析: -根据查阅 LeviLamina 提供的[```DedicatedServer.h```](https://github.com/LiteLDev/LeviLamina/blob/cccef6a0307cdcd89342d25f4826271ac298b6a8/src/mc/server/common/DedicatedServer.h#L59C31-L59C32) ,我们可以知道 DedicatedServer 的构造函数的符号为 ```??0DedicatedServer@@QEAA@XZ```。 +根据查阅 LeviLamina 提供的[`DedicatedServer.h`](https://github.com/LiteLDev/LeviLamina/blob/594d6897525f902c457428bbbc5bc9fe20305fb8/src/mc/server/DedicatedServer.h#L134),我们可以得到 DedicatedServer 的构造函数的thunk函数。 -又由于构造函数是类的成员函数,所以我们使用了 ```INSTANCE_HOOK```类型的 Hook,这使我们不需要填写由编译器产生的第一个[```this指针```](https://zh.cppreference.com/w/cpp/language/this)参数。 +又由于构造函数是类的成员函数,所以我们使用了`INSTANCE_HOOK`类型的Hook,这使我们不需要填写由编译器产生的第一个[`this指针`](https://zh.cppreference.com/w/cpp/language/this)参数。 -又由于我们希望在模组被加载的时候自动注册,所以我们使用了 ```AUTO```标注的 Hook。 +又由于我们希望在模组被加载的时候自动注册,所以我们使用了 `AUTO`标注的 Hook。 -最后由于方便,我们使用了 ```TYPE```标注的 Hook,使得我们可以直接在函数体内调用 DedicatedServer 类型下的函数,虽然在这段代码中我们并没有使用到,但是这是一个好习惯。 +最后由于方便,我们使用了 `TYPE`标注的 Hook,使得我们可以直接在函数体内调用 DedicatedServer 类型下的函数,虽然在这段代码中我们并没有使用到,但是这是一个好习惯。 ### Hook的注册和卸载 #### 注册 -针对非自动注册的 Hook,你需要在你模组需要注册 Hook 的时机调用```hook()```函数进行注册。 +针对非自动注册的 Hook,你需要在你模组需要注册 Hook 的时机调用`hook()`函数进行注册。 #### 卸载 -所有的 Hook 都会在 BDS 卸载时自动卸载,你也可以在你模组需要卸载 Hook 的时机调用```unhook()```函数进行卸载。 +所有的 Hook 都会在 BDS 卸载时自动卸载,你也可以在你模组需要卸载 Hook 的时机调用`unhook()`函数进行卸载。 ## 写在最后 From 42b75be796e8481394a8dd380c2500f76287919f Mon Sep 17 00:00:00 2001 From: OEOTYAN Date: Fri, 10 Jan 2025 02:27:00 +0800 Subject: [PATCH 08/20] refactor: refactoring logger --- src/ll/api/io/Logger.cpp | 14 ++--- src/ll/api/io/Logger.h | 51 ++++++++++--------- src/mc/server/commands/CommandParameterData.h | 34 ++++++------- 3 files changed, 47 insertions(+), 52 deletions(-) diff --git a/src/ll/api/io/Logger.cpp b/src/ll/api/io/Logger.cpp index b7a2b16ac5..59a3dac055 100644 --- a/src/ll/api/io/Logger.cpp +++ b/src/ll/api/io/Logger.cpp @@ -51,21 +51,13 @@ Logger::Logger(PrivateTag, std::string_view title) : impl(std::make_unique impl->sinks.push_back(std::make_shared()); } -std::string const& Logger::getTitle() { return impl->title; } +std::string const& Logger::getTitle() const noexcept { return impl->title; } -LogLevel Logger::getLevel() { return impl->level; } +LogLevel Logger::getLevel() const noexcept { return impl->level; } -void Logger::printView(LogLevel level, std::string_view msg) const noexcept { - if (level > impl->level) { - return; - } - printStr(level, std::string{msg}); -} +bool Logger::shouldLog(LogLevel level) const noexcept { return level <= impl->level; } void Logger::printStr(LogLevel level, std::string&& msg) const noexcept try { - if (level > impl->level) { - return; - } impl->pool.execute([logger = shared_from_this(), msg = LogMessage{std::move(msg), impl->title, level, sys_utils::getLocalTime()}] { try { diff --git a/src/ll/api/io/Logger.h b/src/ll/api/io/Logger.h index 301457f868..91a8ad67d4 100644 --- a/src/ll/api/io/Logger.h +++ b/src/ll/api/io/Logger.h @@ -24,7 +24,6 @@ namespace ll::io { class LoggerRegistry; class Logger : public std::enable_shared_from_this { LLAPI void printStr(LogLevel, std::string&&) const noexcept; - LLAPI void printView(LogLevel, std::string_view) const noexcept; friend LoggerRegistry; @@ -39,81 +38,85 @@ class Logger : public std::enable_shared_from_this { public: template void log(LogLevel level, fmt::format_string fmt, Args&&... args) const { - printStr(level, fmt::vformat(fmt.get(), fmt::make_format_args(args...))); + if (shouldLog(level)) printStr(level, fmt::vformat(fmt.get(), fmt::make_format_args(args...))); + } + void log(LogLevel level, std::string&& msg) const { + if (shouldLog(level)) printStr(level, std::move(msg)); } - void log(LogLevel level, std::string&& msg) const { printStr(level, std::move(msg)); } template void log(LogLevel level, S const& msg) const { - printView(level, msg); + if (shouldLog(level)) printStr(level, std::string{msg}); } template void fatal(fmt::format_string fmt, Args&&... args) const { - printStr(LogLevel::Fatal, fmt::vformat(fmt.get(), fmt::make_format_args(args...))); + log(LogLevel::Fatal, fmt, std::forward(args)...); } - void fatal(std::string&& msg) const { printStr(LogLevel::Fatal, std::move(msg)); } + void fatal(std::string&& msg) const { log(LogLevel::Fatal, std::move(msg)); } template void fatal(S const& msg) const { - printView(LogLevel::Fatal, msg); + log(LogLevel::Fatal, msg); } template void error(fmt::format_string fmt, Args&&... args) const { - printStr(LogLevel::Error, fmt::vformat(fmt.get(), fmt::make_format_args(args...))); + log(LogLevel::Error, fmt, std::forward(args)...); } - void error(std::string&& msg) const { printStr(LogLevel::Error, std::move(msg)); } + void error(std::string&& msg) const { log(LogLevel::Error, std::move(msg)); } template void error(S const& msg) const { - printView(LogLevel::Error, msg); + log(LogLevel::Error, msg); } template void warn(fmt::format_string fmt, Args&&... args) const { - printStr(LogLevel::Warn, fmt::vformat(fmt.get(), fmt::make_format_args(args...))); + log(LogLevel::Warn, fmt, std::forward(args)...); } - void warn(std::string&& msg) const { printStr(LogLevel::Warn, std::move(msg)); } + void warn(std::string&& msg) const { log(LogLevel::Warn, std::move(msg)); } template void warn(S const& msg) const { - printView(LogLevel::Warn, msg); + log(LogLevel::Warn, msg); } template void info(fmt::format_string fmt, Args&&... args) const { - printStr(LogLevel::Info, fmt::vformat(fmt.get(), fmt::make_format_args(args...))); + log(LogLevel::Info, fmt, std::forward(args)...); } - void info(std::string&& msg) const { printStr(LogLevel::Info, std::move(msg)); } + void info(std::string&& msg) const { log(LogLevel::Info, std::move(msg)); } template void info(S const& msg) const { - printView(LogLevel::Info, msg); + log(LogLevel::Info, msg); } template void debug(fmt::format_string fmt, Args&&... args) const { - printStr(LogLevel::Debug, fmt::vformat(fmt.get(), fmt::make_format_args(args...))); + log(LogLevel::Debug, fmt, std::forward(args)...); } - void debug(std::string&& msg) const { printStr(LogLevel::Debug, std::move(msg)); } + void debug(std::string&& msg) const { log(LogLevel::Debug, std::move(msg)); } template void debug(S const& msg) const { - printView(LogLevel::Debug, msg); + log(LogLevel::Debug, msg); } template void trace(fmt::format_string fmt, Args&&... args) const { - printStr(LogLevel::Trace, fmt::vformat(fmt.get(), fmt::make_format_args(args...))); + log(LogLevel::Trace, fmt, std::forward(args)...); } - void trace(std::string&& msg) const { printStr(LogLevel::Trace, std::move(msg)); } + void trace(std::string&& msg) const { log(LogLevel::Trace, std::move(msg)); } template void trace(S const& msg) const { - printView(LogLevel::Trace, msg); + log(LogLevel::Trace, msg); } LLAPI ~Logger(); explicit Logger(PrivateTag, std::string_view); - LLNDAPI std::string const& getTitle(); + LLNDAPI std::string const& getTitle() const noexcept; + + LLNDAPI LogLevel getLevel() const noexcept; - LLNDAPI LogLevel getLevel(); + LLNDAPI bool shouldLog(LogLevel level) const noexcept; LLAPI void setLevel(LogLevel level); diff --git a/src/mc/server/commands/CommandParameterData.h b/src/mc/server/commands/CommandParameterData.h index b4a96934e9..3f01970249 100644 --- a/src/mc/server/commands/CommandParameterData.h +++ b/src/mc/server/commands/CommandParameterData.h @@ -21,23 +21,6 @@ class CommandParameterData { bool (::CommandRegistry::*)(void*, ::CommandRegistry::ParseToken const&, ::CommandOrigin const&, int, ::std::string&, ::std::vector<::std::string>&) const; -public: - // member variables - // NOLINTBEGIN - ::Bedrock::typeid_t<::CommandRegistry> mTypeIndex; - ParseFunction mParse; - ::std::string mName; - char const* mEnumNameOrPostfix; - CommandRegistry::Symbol mEnumOrPostfixSymbol; - char const* mChainedSubcommand; - CommandRegistry::Symbol mChainedSubcommandSymbol; - ::CommandParameterDataType mParamType; - int mOffset; - int mSetOffset; - bool mIsOptional; - ::CommandParameterOption mOptions; - // NOLINTEND - public: CommandParameterData() = default; @@ -59,6 +42,23 @@ class CommandParameterData { CommandParameterData(CommandParameterData const&) = default; CommandParameterData& operator=(CommandParameterData const&) = default; +public: + // member variables + // NOLINTBEGIN + ::Bedrock::typeid_t<::CommandRegistry> mTypeIndex; + ParseFunction mParse; + ::std::string mName; + char const* mEnumNameOrPostfix; + CommandRegistry::Symbol mEnumOrPostfixSymbol; + char const* mChainedSubcommand; + CommandRegistry::Symbol mChainedSubcommandSymbol; + ::CommandParameterDataType mParamType; + int mOffset; + int mSetOffset; + bool mIsOptional; + ::CommandParameterOption mOptions; + // NOLINTEND + public: // member functions // NOLINTBEGIN From 5e691a2d70e93feea39c49b54ba160fffd3ceb02 Mon Sep 17 00:00:00 2001 From: Dofes <91889957+Dofes@users.noreply.github.com> Date: Fri, 10 Jan 2025 03:36:30 +0800 Subject: [PATCH 09/20] fix: fix save command enum error --- src/ll/core/command/BuiltinCommands.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/ll/core/command/BuiltinCommands.cpp b/src/ll/core/command/BuiltinCommands.cpp index 7e437b3ef6..08de65f51c 100644 --- a/src/ll/core/command/BuiltinCommands.cpp +++ b/src/ll/core/command/BuiltinCommands.cpp @@ -1,16 +1,16 @@ #include "ll/core/command/BuiltinCommands.h" #include "ll/api/memory/Hook.h" -#include "mc/server/commands/ServerCommands.h" -#include "mc/server/commands/standard/TeleportCommand.h" +#include "mc/server/DedicatedServerCommands.h" #include "mc/world/events/ServerInstanceEventCoordinator.h" + namespace ll::command { LL_TYPE_INSTANCE_HOOK( RegisterBuiltinCommands, ll::memory::HookPriority::Highest, - ServerInstanceEventCoordinator, - &ServerInstanceEventCoordinator::sendServerInitializeEnd, + DedicatedServerCommands, + &DedicatedServerCommands::setupStandaloneServer, void, ::ServerInstance& ins ) { From a7ad0667986a9a5a38a69d833a493f9258a456c8 Mon Sep 17 00:00:00 2001 From: OEOTYAN Date: Fri, 10 Jan 2025 15:42:51 +0800 Subject: [PATCH 10/20] chore: add some global prefix to macros --- src/ll/api/memory/Hook.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/ll/api/memory/Hook.h b/src/ll/api/memory/Hook.h index 0530f1aac2..251d454d5c 100644 --- a/src/ll/api/memory/Hook.h +++ b/src/ll/api/memory/Hook.h @@ -128,7 +128,7 @@ struct LL_EBO Hook {}; #define LL_HOOK_IMPL(REGISTER, FUNC_PTR, STATIC, CALL, DEF_TYPE, TYPE, PRIORITY, IDENTIFIER, RET_TYPE, ...) \ struct DEF_TYPE : public TYPE { \ - inline static std::atomic_uint _AutoHookCount{}; \ + inline static ::std::atomic_uint _AutoHookCount{}; \ \ private: \ using _FuncPtr = ::ll::memory::FuncPtr; \ @@ -154,7 +154,7 @@ struct LL_EBO Hook {}; \ static constexpr bool _IsConstMemberFunction = decltype(_ConstDetector{IDENTIFIER})::value; \ \ - using _OriginFuncType = std::conditional_t<_IsConstMemberFunction, _RawConstFuncType, _RawFuncType>; \ + using _OriginFuncType = ::std::conditional_t<_IsConstMemberFunction, _RawConstFuncType, _RawFuncType>; \ \ inline static _FuncPtr _HookTarget{}; \ inline static _OriginFuncType _OriginalFunc{}; \ @@ -179,7 +179,7 @@ struct LL_EBO Hook {}; } \ template \ STATIC RET_TYPE origin(Args&&... params) { \ - return CALL(std::forward(params)...); \ + return CALL(::std::forward(params)...); \ } \ \ STATIC RET_TYPE detour(__VA_ARGS__); \ From 47f478e2e1da997e404097a35243960cb6f83f28 Mon Sep 17 00:00:00 2001 From: OEOTYAN Date: Fri, 10 Jan 2025 16:53:35 +0800 Subject: [PATCH 11/20] fix: fix version prelease parse --- src/ll/api/data/Version.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ll/api/data/Version.h b/src/ll/api/data/Version.h index 7359365a6f..490cb768a2 100644 --- a/src/ll/api/data/Version.h +++ b/src/ll/api/data/Version.h @@ -103,7 +103,7 @@ struct PreRelease { auto tokens = ll::string_utils::splitByPattern(s, "."); for (auto const& token : tokens) { std::uint16_t value; - if (detail::from_chars(token.data(), token.data() + token.length(), value); value) { + if (auto result = detail::from_chars(token.data(), token.data() + token.length(), value); result) { values.emplace_back(value); } else { values.emplace_back(std::string{token}); From 01e5aaf5eb99bd247c7b01010e5378734d479191 Mon Sep 17 00:00:00 2001 From: Dofes <91889957+Dofes@users.noreply.github.com> Date: Sat, 11 Jan 2025 10:08:08 +0800 Subject: [PATCH 12/20] fix: fix some commands crash --- src/ll/core/command/BuiltinCommands.cpp | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/src/ll/core/command/BuiltinCommands.cpp b/src/ll/core/command/BuiltinCommands.cpp index 08de65f51c..bed489f6fd 100644 --- a/src/ll/core/command/BuiltinCommands.cpp +++ b/src/ll/core/command/BuiltinCommands.cpp @@ -6,15 +6,21 @@ namespace ll::command { -LL_TYPE_INSTANCE_HOOK( +LL_TYPE_STATIC_HOOK( RegisterBuiltinCommands, ll::memory::HookPriority::Highest, DedicatedServerCommands, &DedicatedServerCommands::setupStandaloneServer, void, - ::ServerInstance& ins + ::Bedrock::NotNullNonOwnerPtr<::Minecraft> const& minecraft, + ::IMinecraftApp& app, + ::Level& level, + ::LevelStorage& levelStorage, + ::DedicatedServer& dedicatedServer, + ::AllowListFile& allowListFile, + ::ScriptSettings* scriptSettings ) { - origin(ins); + origin(minecraft, app, level, levelStorage, dedicatedServer, allowListFile, scriptSettings); registerTpdimCommand(); registerVersionCommand(); registerMemstatsCommand(); From b1ce9bd027c7631b9d438d9ca912e417b4e180b9 Mon Sep 17 00:00:00 2001 From: Dofes <91889957+Dofes@users.noreply.github.com> Date: Sat, 11 Jan 2025 12:13:01 +0800 Subject: [PATCH 13/20] chore: add itemstack ctor default param --- src/mc/world/item/ItemInstance.h | 9 +++++---- src/mc/world/item/ItemStack.h | 8 ++++---- src/mc/world/item/ItemStackBase.h | 7 ++++--- 3 files changed, 13 insertions(+), 11 deletions(-) diff --git a/src/mc/world/item/ItemInstance.h b/src/mc/world/item/ItemInstance.h index 11904b44a9..74c8b56cae 100644 --- a/src/mc/world/item/ItemInstance.h +++ b/src/mc/world/item/ItemInstance.h @@ -39,13 +39,14 @@ class ItemInstance : public ::ItemStackBase { MCAPI ItemInstance(::ItemInstance const& rhs); - MCAPI ItemInstance(::BlockLegacy const& block, int count); + MCAPI ItemInstance(::BlockLegacy const& block, int count = 1); - MCAPI ItemInstance(::Block const& block, int count, ::CompoundTag const* _userData); + MCAPI ItemInstance(::Block const& block, int count = 1, ::CompoundTag const* _userData = nullptr); - MCAPI ItemInstance(::Item const& item, int count, int auxValue, ::CompoundTag const* _userData); + MCAPI ItemInstance(::Item const& item, int count = 1, int auxValue = 0, ::CompoundTag const* _userData = nullptr); - MCAPI ItemInstance(::std::string_view name, int count, int auxValue, ::CompoundTag const* _userData); + MCAPI + ItemInstance(::std::string_view name, int count = 1, int auxValue = 0, ::CompoundTag const* _userData = nullptr); MCAPI ::ItemInstance clone() const; diff --git a/src/mc/world/item/ItemStack.h b/src/mc/world/item/ItemStack.h index f286c701de..7c3591cbf6 100644 --- a/src/mc/world/item/ItemStack.h +++ b/src/mc/world/item/ItemStack.h @@ -73,13 +73,13 @@ class ItemStack : public ::ItemStackBase { MCAPI explicit ItemStack(::ItemInstance const& rhs); - MCAPI ItemStack(::BlockLegacy const& block, int count); + MCAPI ItemStack(::BlockLegacy const& block, int count = 1); - MCAPI ItemStack(::Block const& block, int count, ::CompoundTag const* _userData); + MCAPI ItemStack(::Block const& block, int count = 1, ::CompoundTag const* _userData = nullptr); - MCAPI ItemStack(::Item const& item, int count, int auxValue, ::CompoundTag const* _userData); + MCAPI ItemStack(::Item const& item, int count = 1, int auxValue = 0, ::CompoundTag const* _userData = nullptr); - MCAPI ItemStack(::std::string_view name, int count, int auxValue, ::CompoundTag const* _userData); + MCAPI ItemStack(::std::string_view name, int count = 1, int auxValue = 0, ::CompoundTag const* _userData = nullptr); MCAPI void _assignNetIdVariant(::ItemStack const& fromItem) const; diff --git a/src/mc/world/item/ItemStackBase.h b/src/mc/world/item/ItemStackBase.h index 4431d8dcea..72c803606a 100644 --- a/src/mc/world/item/ItemStackBase.h +++ b/src/mc/world/item/ItemStackBase.h @@ -119,11 +119,12 @@ class ItemStackBase { MCAPI ItemStackBase(::BlockLegacy const& block, int count); - MCAPI ItemStackBase(::Block const& block, int count, ::CompoundTag const* _userData); + MCAPI ItemStackBase(::Block const& block, int count = 1, ::CompoundTag const* _userData = nullptr); - MCAPI ItemStackBase(::Item const& item, int count, int auxValue, ::CompoundTag const* _userData); + MCAPI ItemStackBase(::Item const& item, int count = 1, int auxValue = 0, ::CompoundTag const* _userData = nullptr); - MCAPI ItemStackBase(::std::string_view name, int count, int auxValue, ::CompoundTag const* _userData); + MCAPI + ItemStackBase(::std::string_view name, int count = 1, int auxValue = 0, ::CompoundTag const* _userData = nullptr); MCAPI void _addCustomUserDataCommon(::std::unique_ptr<::CompoundTag>&& tag); From 604c7f297a3fbebd2aa1b863c19e9c94e5750ba3 Mon Sep 17 00:00:00 2001 From: Lovelylavender4 Date: Sat, 11 Jan 2025 19:26:55 +0800 Subject: [PATCH 14/20] chore: added "mc class member request" issue template --- .../ISSUE_TEMPLATE/mcclass_member_request.yml | 23 +++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 .github/ISSUE_TEMPLATE/mcclass_member_request.yml diff --git a/.github/ISSUE_TEMPLATE/mcclass_member_request.yml b/.github/ISSUE_TEMPLATE/mcclass_member_request.yml new file mode 100644 index 0000000000..5bd8218efe --- /dev/null +++ b/.github/ISSUE_TEMPLATE/mcclass_member_request.yml @@ -0,0 +1,23 @@ +name: MC class member request +description: Requests for completion of certain minecraft class member variables +title: "[Request]: " +labels: ["enhancement"] +body: + - type: textarea + attributes: + label: Please list all requested class names. + description: Names of all requested classes. + validations: + required: true + + - type: textarea + attributes: + label: Do you have a good reason for us to complement these member variables of these mc class? Please write it out. + description: Sufficient reason to convince us to complement the member variables of these mc classes. + validations: + required: true + + - type: textarea + attributes: + label: Additional context + description: Add any other context or screenshots about the mc class member request here. From a5ae5da3fbd2a07dd8e99a36f56416a83dbb5f52 Mon Sep 17 00:00:00 2001 From: OEOTYAN Date: Sat, 11 Jan 2025 20:32:30 +0800 Subject: [PATCH 15/20] feat: don't generate prevent default ctor if member is empty --- src/mc/certificates/ExtendedCertificate.h | 6 --- src/mc/certificates/MessPublicKeyManager.h | 6 --- src/mc/certificates/PublicKeySignatureType.h | 8 +--- src/mc/certificates/ResponseVerifier.h | 6 --- .../IActiveDirectoryIdentityTelemetry.h | 6 --- .../certificates/identity/IEduSsoStrategy.h | 6 --- .../identity/ISettingStorageStrategy.h | 6 --- .../edu/auth/CredentialReplaySubject.h | 8 +--- .../identity/edu/auth/CredentialsObserver.h | 6 --- .../identity/edu/auth/CredsAuthComplete.h | 8 +--- .../identity/edu/auth/CredsExpired.h | 8 +--- .../identity/edu/auth/CredsLost.h | 8 +--- .../edu/auth/GenericCredentialsEvent.h | 8 +--- .../edu/auth/GraphCredsRefreshFailed.h | 8 +--- .../edu/auth/SignInCredsRefreshFailed.h | 8 +--- .../identity/web_services/IEduWebService.h | 6 --- src/mc/client/3d_export/glTFExportData.h | 8 +--- src/mc/client/commands/AutomationCmdOutput.h | 8 +--- .../game/ExternalWorldTransferActionFunc.h | 8 +--- src/mc/client/game/IClientInstance.h | 6 --- src/mc/client/game/IClientInstances.h | 6 --- src/mc/client/game/IConfigListener.h | 6 --- src/mc/client/game/IExternalServerFile.h | 8 +--- src/mc/client/game/IGameServerShutdown.h | 6 --- src/mc/client/game/IGameServerStartup.h | 6 --- src/mc/client/game/IMinecraftGame.h | 6 --- src/mc/client/game/INetworkGameConnector.h | 6 --- .../game/ISplitScreenChangedPublisher.h | 6 --- src/mc/client/game/IWorldTransfer.h | 6 --- src/mc/client/game/LevelLoader.h | 8 +--- .../game/LocalWorldTransferActionFunc.h | 8 +--- src/mc/client/game/TrialManager.h | 8 +--- .../game/edu_cloud/IEduCloudSaveSystem.h | 6 --- src/mc/client/gui/EmoticonManager.h | 8 +--- src/mc/client/gui/FontHandle.h | 8 +--- src/mc/client/gui/GuiData.h | 8 +--- src/mc/client/gui/MobEffectsLayout.h | 8 +--- src/mc/client/gui/ScreenTechStackSelector.h | 8 +--- src/mc/client/gui/TextToIconMapper.h | 8 +--- .../client/gui/controls/ScreenInputContext.h | 8 +--- src/mc/client/gui/controls/UIControl.h | 8 +--- .../client/gui/controls/UIMeasureStrategy.h | 8 +--- src/mc/client/gui/controls/VisualTree.h | 8 +--- .../client/gui/interface/IUIDefRepository.h | 8 +--- src/mc/client/gui/interface/IUIRepository.h | 8 +--- src/mc/client/gui/oreui/SceneProvider.h | 8 +--- .../gui/oreui/UIBlockThumbnailAtlasManager.h | 8 +--- .../DataProviderManager_DEPRECATED.h | 8 +--- .../gui/oreui/interface/IResourceAllowList.h | 8 +--- .../client/gui/oreui/interface/ITelemetry.h | 6 --- src/mc/client/gui/oreui/routing/IEntryPoint.h | 6 --- .../client/gui/oreui/routing/RouteMatcher.h | 8 +--- src/mc/client/gui/oreui/routing/Router.h | 8 +--- src/mc/client/gui/screens/AbstractScene.h | 8 +--- .../gui/screens/CubemapBackgroundResources.h | 8 +--- src/mc/client/gui/screens/SceneFactory.h | 8 +--- src/mc/client/gui/screens/ScreenContext.h | 8 +--- src/mc/client/gui/screens/ScreenController.h | 8 +--- .../gui/screens/ScreenLoadTimeTracker.h | 8 +--- .../gui/screens/UIAnimationController.h | 8 +--- .../controllers/MultiplayerLockState.h | 6 --- .../SettingsScreenControllerBase.h | 6 --- .../StoreDataDrivenScreenController.h | 8 +--- .../gui/screens/interfaces/ISceneStack.h | 6 --- .../screens/interfaces/IScreenController.h | 6 --- .../client/gui/screens/models/ContentSource.h | 8 +--- .../gui/screens/models/IContentManager.h | 8 +--- .../gui/screens/models/IMainMenuScreenModel.h | 6 --- .../models/interface/IWorldsProvider.h | 6 --- src/mc/client/hitresult/HitDetectSystem.h | 8 +--- .../client/identity/ISecureStorageProvider.h | 6 --- src/mc/client/identity/IUserDataObject.h | 6 --- src/mc/client/input/ClientInputHandler.h | 8 +--- src/mc/client/input/ClientMoveInputHandler.h | 8 +--- src/mc/client/input/KeyboardManager.h | 8 +--- src/mc/client/input/KeyboardRemappingLayout.h | 8 +--- src/mc/client/input/MinecraftInputHandler.h | 8 +--- src/mc/client/input/VoiceSystem.h | 8 +--- .../client/legacy/conversion/WorldConverter.h | 6 --- src/mc/client/library/LibraryRepository.h | 8 +--- src/mc/client/model/models/DataDrivenModel.h | 8 +--- src/mc/client/module/GameModuleClient.h | 8 +--- src/mc/client/module/IGameModuleApp.h | 8 +--- .../multiplayer/ISubChunkManagerConnector.h | 6 --- .../client/network/IGameConnectionListener.h | 8 +--- src/mc/client/network/UserAuthentication.h | 8 +--- .../blob_cache/client_blob_cache/Cache.h | 8 +--- src/mc/client/network/realms/Content.h | 8 +--- src/mc/client/network/realms/ContentService.h | 8 +--- .../realms/GenericRequestServiceHandler.h | 8 +--- src/mc/client/network/realms/IContentApi.h | 6 --- .../client/network/realms/ISubscriptionApi.h | 6 --- src/mc/client/network/realms/IWorldApi.h | 6 --- src/mc/client/network/realms/RealmId.h | 8 +--- .../client/network/realms/SubscriptionInfo.h | 8 +--- .../network/realms/SubscriptionService.h | 8 +--- src/mc/client/options/ChatOptions.h | 8 +--- src/mc/client/options/IOptions.h | 6 --- src/mc/client/options/OptionSaveDeferral.h | 8 +--- src/mc/client/options/OptionValueInterface.h | 6 --- src/mc/client/options/OptionsObserver.h | 6 --- src/mc/client/particle/ParticleEngine.h | 8 +--- .../particlesystem/particle/ParticleEmitter.h | 6 --- src/mc/client/player/LocalPlayer.h | 6 --- src/mc/client/player/PersonaRepository.h | 8 +--- src/mc/client/player/SkinRepository.h | 8 +--- .../player/SkinRepositoryClientInterface.h | 8 +--- src/mc/client/realms/RealmsSystem.h | 8 +--- .../renderer/ClientFrameUpdateContext.h | 8 +--- src/mc/client/renderer/DeferredLighting.h | 8 +--- src/mc/client/renderer/FrameUpdateContext.h | 8 +--- .../client/renderer/FrameUpdateContextBase.h | 8 +--- src/mc/client/renderer/MinecraftGraphics.h | 8 +--- src/mc/client/renderer/RenderGraph.h | 8 +--- src/mc/client/renderer/TextureGroup.h | 8 +--- .../client/renderer/actor/ActorRenderData.h | 8 +--- .../renderer/actor/ActorRenderDispatcher.h | 8 +--- .../actor/ActorResourceDefinitionGroup.h | 8 +--- src/mc/client/renderer/actor/ItemRenderer.h | 8 +--- src/mc/client/renderer/block/BlockGraphics.h | 8 +--- .../client/renderer/block/BlockTessellator.h | 8 +--- .../TessellationConfigInfo.h | 8 +--- .../block/culling/BlockCullingGroup.h | 8 +--- .../SchematicsRepository.h | 8 +--- .../block/tessellation_pipeline/VolumeOf.h | 8 +--- .../renderer/blockactor/ActorBlockRenderer.h | 8 +--- .../blockactor/BlockActorRenderDispatcher.h | 8 +--- .../controller/RenderControllerGroup.h | 8 +--- src/mc/client/renderer/debug/DebugRenderer.h | 8 +--- .../renderer/debug/LatencyGraphDisplay.h | 8 +--- src/mc/client/renderer/game/GameRenderer.h | 8 +--- .../client/renderer/game/HolosceneRenderer.h | 8 +--- .../client/renderer/game/ItemInHandRenderer.h | 8 +--- src/mc/client/renderer/game/LevelRenderer.h | 8 +--- .../renderer/game/LevelRendererCameraProxy.h | 8 +--- src/mc/client/renderer/game/SeasonsRenderer.h | 8 +--- .../client/renderer/ptexture/LightTexture.h | 8 +--- src/mc/client/renderer/texture/TextureAtlas.h | 8 +--- .../client/resources/ExternalContentManager.h | 8 +--- .../resources/GlobalResourcesCrashRecovery.h | 8 +--- src/mc/client/resources/PackDownloadManager.h | 8 +--- src/mc/client/safety/PlayerReportHandler.h | 8 +--- src/mc/client/scripting/ClientScriptManager.h | 8 +--- src/mc/client/services/ClubsService.h | 8 +--- .../catalog/ClientRequirementVerifier.h | 8 +--- src/mc/client/services/cdn/CDNService.h | 8 +--- .../services/download/ContentAcquisition.h | 8 +--- .../download/DlcBatchThrottleBridge.h | 8 +--- src/mc/client/services/download/DlcId.h | 8 +--- .../services/download/DownloadStateObject.h | 8 +--- .../services/download/IContentAcquisition.h | 6 --- .../services/download/IContentTracker.h | 8 +--- .../client/services/download/IDlcBatchModel.h | 6 --- src/mc/client/services/download/IDlcBatcher.h | 6 --- .../client/services/download/IDlcValidation.h | 8 +--- .../services/download/PackImportStateObject.h | 8 +--- .../download/TreatmentPackDownloadMonitor.h | 8 +--- .../flighting/FlightingToggleMetadata.h | 8 +--- .../services/flighting/IFlightingToggles.h | 6 --- .../flighting/ProgressionFlightingToggles.h | 6 --- .../flighting/TreatmentFlightingToggles.h | 6 --- .../services/live_events/GatheringManager.h | 8 +--- .../messaging/PlayerMessagingService.h | 8 +--- .../ms_graph/models/DownloadUrlInfo.h | 8 +--- .../services/ms_graph/models/DriveItem.h | 8 +--- .../ms_graph/models/DriveItemCollection.h | 8 +--- .../services/ms_graph/models/GraphError.h | 8 +--- .../ms_graph/models/GraphUploadBody.h | 6 --- .../services/ms_graph/models/UploadSession.h | 8 +--- .../client/services/persona/PersonaService.h | 8 +--- .../services/requests/FileDataRequest.h | 8 +--- .../payment/CheckGooglePlayStoreHold.h | 6 --- .../CheckReceiptDetailsWindowsOneStore.h | 6 --- .../sdl/ServiceResponseOfContinuation.h | 8 +--- .../services/sdl/ServiceResponseOfPage.h | 8 +--- src/mc/client/social/AuthToken.h | 8 +--- src/mc/client/social/GallerySize.h | 8 +--- .../social/IScreenshotGalleryHttpCall.h | 6 --- src/mc/client/social/IToastListener.h | 6 --- src/mc/client/social/IToastManager.h | 6 --- src/mc/client/social/IUserManager.h | 6 --- src/mc/client/social/MultiplayerService.h | 8 +--- .../client/social/PlatformUserProfileData.h | 8 +--- src/mc/client/social/PresenceManager.h | 8 +--- src/mc/client/social/RawShowcasedScreenshot.h | 8 +--- src/mc/client/social/System.h | 8 +--- src/mc/client/social/User.h | 6 --- src/mc/client/social/UserListObserver.h | 6 --- src/mc/client/social/XboxLiveUser.h | 8 +--- src/mc/client/social/invites/InviteId.h | 8 +--- src/mc/client/sound/ListenerState.h | 8 +--- src/mc/client/sound/NullSoundPlayer.h | 6 --- src/mc/client/sound/SoundEngine.h | 8 +--- .../store/IThirdPartyServerRepository.h | 8 +--- src/mc/client/store/NewOffersQuery.h | 8 +--- src/mc/client/store/PersonaNewOffersQuery.h | 8 +--- .../store/ServiceDrivenImageRepository.h | 8 +--- src/mc/client/store/StoreCatalogItem.h | 8 +--- src/mc/client/store/StoreCatalogRepository.h | 8 +--- src/mc/client/store/StoreNewOffersQuery.h | 8 +--- src/mc/client/store/TelemetryData.h | 8 +--- src/mc/client/store/commerce/Entitlement.h | 8 +--- src/mc/client/store/commerce/IEntitlement.h | 6 --- .../store/commerce/IEntitlementManager.h | 6 --- src/mc/client/store/iap/IOfferRepository.h | 8 +--- .../store/iap/OfferCategoryEnumHasher.h | 8 +--- src/mc/client/store/iap/ProductSku.h | 8 +--- src/mc/client/store/iap/StoreListener.h | 6 --- .../store/iap/StoreListenerMultistore.h | 6 --- .../iap/transactions/AutoFulfillmentHelper.h | 6 --- .../store/interface/IStoreCatalogRepository.h | 8 +--- .../services/MarketplaceServicesManager.h | 8 +--- .../services/ServicesManagerServiceClient.h | 6 --- src/mc/client/tts/ITTSEventManager.h | 8 +--- src/mc/client/tts/TextToSpeechClient.h | 8 +--- src/mc/client/tutorial/GuidedFlowManager.h | 8 +--- src/mc/client/tutorial/NewPlayerSystem.h | 8 +--- src/mc/client/util/ClipboardProxy.h | 8 +--- src/mc/client/util/CloudFileUploadManager.h | 8 +--- src/mc/client/util/CloudSaveSystemWrapper.h | 8 +--- src/mc/client/util/ScreenshotRecorder.h | 8 +--- src/mc/client/util/SunsettingManager.h | 8 +--- .../dev_console_logger/DevConsoleLogger.h | 8 +--- .../client/volume/VolumeEntityManagerClient.h | 6 --- src/mc/client/world/IWorldTransferHandler.h | 8 +--- src/mc/client/world/System.h | 8 +--- src/mc/client/world/WorldTransferAgent.h | 8 +--- .../world/level/fog/FogDefinitionRegistry.h | 8 +--- src/mc/client/world/level/fog/FogManager.h | 8 +--- src/mc/codebuilder/CommandOutputObserver.h | 6 --- src/mc/codebuilder/IClient.h | 6 --- src/mc/codebuilder/IManager.h | 6 --- src/mc/codebuilder/IMessenger.h | 6 --- src/mc/codebuilder/IRequestHandler.h | 6 --- src/mc/codebuilder/RequestInterpreter.h | 6 --- src/mc/common/BlockID.h | 8 +--- src/mc/common/IApp.h | 6 --- src/mc/common/IMinecraftApp.h | 6 --- src/mc/common/JsonValidator.h | 6 --- src/mc/common/NewBlockID.h | 8 +--- src/mc/common/Performance.h | 6 --- src/mc/common/Result.h | 8 +--- src/mc/common/SharedPtr.h | 8 +--- src/mc/common/WeakPtr.h | 8 +--- src/mc/common/detail/ColorBase.h | 8 +--- src/mc/common/editor/IEditorManager.h | 6 --- src/mc/common/editor/IEditorPlayer.h | 6 --- src/mc/config/DefaultScreenCapabilities.h | 6 --- src/mc/config/ILevelDataOverride.h | 6 --- src/mc/config/IScreenCapabilities.h | 6 --- src/mc/config/TypedScreenCapabilities.h | 8 +--- .../player_capabilities/IClientController.h | 8 +--- .../config/player_capabilities/ISharedData.h | 6 --- src/mc/debug/MockDebugEndPoint.h | 6 --- src/mc/debug/SentryHelper.h | 8 +--- .../application/AppPlatformNetworkSettings.h | 6 --- src/mc/deps/application/IAppPlatform.h | 6 --- .../deps/application/IApplicationDataStores.h | 6 --- src/mc/deps/application/PlatformBootstrap.h | 6 --- .../common/utility/ThreadOwnerBase.h | 8 +--- .../crash_manager/CrashFileProcessor.h | 12 ----- .../application/crash_manager/CrashManager.h | 6 --- .../crash_manager/CrashSessionFile.h | 6 --- .../crash_manager/CrashTelemetryProcessor.h | 6 --- .../crash_manager/SentryUploadManager.h | 6 --- .../deps/application/device/CacheOpenFailed.h | 8 +--- .../deps/application/device/DeviceIdManager.h | 6 --- .../deps/application/device/FileWriteError.h | 8 +--- src/mc/deps/application/device/NoCacheFound.h | 8 +--- .../initialization/ApplicationInitHandler.h | 6 --- .../application/session/SessionInfoManager.h | 6 --- .../application_signal/ClipboardCopy.h | 8 +--- .../application_signal/ClipboardPaste.h | 8 +--- .../ClipboardPasteRequest.h | 8 +--- .../player_reporting_signal/GetReportJson.h | 5 -- .../player_reporting_signal/ResetAll.h | 8 +--- .../player_reporting_signal/SendReport.h | 8 +--- .../signals/player_reporting_signal/SetData.h | 8 +--- .../signals/player_reporting_signal/SetJson.h | 8 +--- .../storage_migration/MigrationDetector.h | 6 --- .../StorageMigrationService.h | 6 --- .../storage_migration/StorageMigrator.h | 6 --- .../storage_migration/WorldRecovery.h | 6 --- .../WorldRecoveryTelemetryHandler.h | 6 --- .../WorldRecovery_Unimplemented.h | 6 --- .../win/device/DeviceIdManager_Win32.h | 6 --- src/mc/deps/audio/SoundEvent.h | 8 +--- src/mc/deps/cereal/BasicNumericConstraint.h | 8 +--- src/mc/deps/cereal/Constraint.h | 6 --- src/mc/deps/cereal/JSONCppSchemaReader.h | 6 --- src/mc/deps/cereal/NonStrictJsonLoader.h | 6 --- src/mc/deps/cereal/NullConstraint.h | 6 --- src/mc/deps/cereal/ReflectionCtx.h | 5 -- .../deps/cereal/StrictJSONCppSchemaReader.h | 6 --- src/mc/deps/cereal/StrictJsonLoader.h | 6 --- .../cereal/ext/json_schema/JSONSchemaDef.h | 5 -- .../cereal/schema/BasicGenericTypeSchema.h | 6 --- src/mc/deps/cereal/schema/SchemaReader.h | 6 --- src/mc/deps/cereal/schema/SchemaWriter.h | 6 --- src/mc/deps/cereal/schema/UndefinedSchema.h | 6 --- src/mc/deps/core/NetworkChangeObserver.h | 6 --- .../AssertResourceServiceErrorHandler.h | 8 +--- .../IDeferredDebugUpdate.h | 6 --- .../ITransactionContainer.h | 6 --- .../ResourceValidatorDebugTraits.h | 8 +--- src/mc/deps/core/container/Cache.h | 8 +--- src/mc/deps/core/container/DenseEnumMap.h | 8 +--- .../deps/core/container/MovePriorityQueue.h | 8 +--- src/mc/deps/core/container/RefCountedSet.h | 8 +--- src/mc/deps/core/container/SmallSet.h | 8 +--- src/mc/deps/core/container/list.h | 8 +--- src/mc/deps/core/container/list_base_hook.h | 8 +--- .../core/container/list_standard_operations.h | 8 +--- src/mc/deps/core/data_store/DataStore.h | 20 +------- src/mc/deps/core/debug/LogSettingsUpdater.h | 6 --- .../core/debug/bedrock_log/CategoryLogs.h | 8 +--- .../deps/core/debug/log/ContentLogEndPoint.h | 5 -- src/mc/deps/core/debug/log/LogEndPoint.h | 6 --- .../core/file/BasicDirectoryStorageArea.h | 8 +--- src/mc/deps/core/file/FileSizePresetManager.h | 6 --- src/mc/deps/core/file/FileSizePresetToken.h | 6 --- .../deps/core/file/FileStorageAreaFetcher.h | 6 --- .../deps/core/file/FileStorageAreaObserver.h | 6 --- src/mc/deps/core/file/FileSystem.h | 6 --- src/mc/deps/core/file/FlushingIOController.h | 6 --- .../deps/core/file/IFileStorageAreaFetcher.h | 6 --- src/mc/deps/core/file/InputFileStream.h | 6 --- src/mc/deps/core/file/OutputFileStream.h | 5 -- src/mc/deps/core/file/Path.h | 8 +--- src/mc/deps/core/file/PathBuffer.h | 8 +--- src/mc/deps/core/file/UnzipFile.h | 6 --- .../file/file_system/BufferedFileOperations.h | 6 --- .../file/file_system/FileAccessTransforms.h | 6 --- .../file/file_system/FileSystemFileAccess.h | 12 ----- .../file/file_system/FlatFileOperations.h | 6 --- .../file/file_system/FullCopyFileOperations.h | 6 --- .../deps/core/file/file_system/IFileAccess.h | 6 --- .../core/file/file_system/IFileReadAccess.h | 6 --- .../core/file/file_system/IFileWriteAccess.h | 6 --- .../file/file_system/MakeFileTransaction.h | 8 +--- .../file/file_system/MemoryMappedFileAccess.h | 12 ----- .../file_system/splitfat/SfatFileSystemImpl.h | 6 --- .../OSWriteThrottleTracker.h | 6 --- .../ThrottledFileWriteEstimator.h | 6 --- src/mc/deps/core/http/DEL.h | 6 --- src/mc/deps/core/http/DispatchQueue.h | 8 +--- src/mc/deps/core/http/DispatcherInterface.h | 6 --- src/mc/deps/core/http/Factory.h | 6 --- src/mc/deps/core/http/GET.h | 6 --- src/mc/deps/core/http/HEAD.h | 6 --- src/mc/deps/core/http/HttpInterface.h | 6 --- src/mc/deps/core/http/HttpInterfaceInternal.h | 6 --- src/mc/deps/core/http/HttpUrlValidator.h | 6 --- src/mc/deps/core/http/IRequestBody.h | 6 --- src/mc/deps/core/http/IResponseBody.h | 6 --- src/mc/deps/core/http/IgnoredResponseBody.h | 6 --- src/mc/deps/core/http/LoggingInterface.h | 6 --- .../deps/core/http/LoggingInterfaceGeneric.h | 6 --- src/mc/deps/core/http/Method.h | 8 +--- src/mc/deps/core/http/POST.h | 6 --- src/mc/deps/core/http/PUT.h | 6 --- src/mc/deps/core/http/StringRequestBody.h | 6 --- src/mc/deps/core/http/WebSocketInterface.h | 6 --- .../core/http/WebSocketInterfaceInternal.h | 6 --- .../core/http/win/HttpInterface_windows.h | 6 --- .../http/win/WebSocketInterface_windows.h | 6 --- src/mc/deps/core/islands/IIslandCore.h | 6 --- src/mc/deps/core/islands/IIslandManager.h | 6 --- .../deps/core/islands/IIslandManagerLogger.h | 6 --- src/mc/deps/core/math/Degree.h | 6 --- src/mc/deps/core/math/Easing.h | 6 --- src/mc/deps/core/math/IRandom.h | 6 --- src/mc/deps/core/math/IRandomSeeded.h | 6 --- src/mc/deps/core/math/Math.h | 22 +-------- src/mc/deps/core/math/MathUtility.h | 6 --- src/mc/deps/core/math/Radian.h | 6 --- src/mc/deps/core/math/SimpleWeightedEntry.h | 8 +--- src/mc/deps/core/math/VecXZ.h | 8 +--- src/mc/deps/core/math/WeightedRandom.h | 8 +--- .../memory/CpuRingBufferAllocation_Buffer.h | 6 --- src/mc/deps/core/memory/DefaultAllocator.h | 6 --- src/mc/deps/core/memory/IVirtualAllocator.h | 6 --- src/mc/deps/core/memory/MemoryStream.h | 6 --- .../threading/EnableQueueForMainThread.h | 6 --- .../minecraft/threading/MinecraftScheduler.h | 6 --- .../minecraft/threading/MinecraftWorkerPool.h | 6 --- src/mc/deps/core/platform/Result.h | 6 --- .../generic/file/FileSystem_generic.h | 6 --- .../generic/file/TestMemoryFileSystem.h | 6 --- .../generic/file/TestMemoryStorageArea.h | 6 --- .../platform/win/file/FileSystem_windows.h | 6 --- .../windows/memory/VirtualAllocator_windows.h | 6 --- .../deps/core/profiler/perf_metrics/Gauge.h | 8 +--- .../core/renderer/RenderMaterialGroupBase.h | 6 --- .../resource/PackRenderCapabilitiesBitSet.h | 8 +--- src/mc/deps/core/resource/ResourceUtil.h | 8 +--- .../core/secure_storage/FileSecureStorage.h | 6 --- .../secure_storage/ISecureStorageKeySystem.h | 6 --- .../core/secure_storage/NullSecureStorage.h | 6 --- src/mc/deps/core/signal/Signal.h | 8 +--- src/mc/deps/core/signal/SignalPublisher.h | 6 --- src/mc/deps/core/sound/SoundItem.h | 8 +--- src/mc/deps/core/sound/SoundPlayerInterface.h | 6 --- src/mc/deps/core/string/BasicStackString.h | 8 +--- src/mc/deps/core/string/HashType64_hash.h | 8 +--- src/mc/deps/core/string/StringConversions.h | 6 --- src/mc/deps/core/threading/AsyncBase.h | 8 +--- .../core/threading/AsyncBlockInternalGuard.h | 6 --- src/mc/deps/core/threading/AsyncResultBase.h | 8 +--- src/mc/deps/core/threading/AsyncState.h | 6 --- src/mc/deps/core/threading/AsyncStateRef.h | 6 --- .../deps/core/threading/BackgroundTaskBase.h | 14 +----- src/mc/deps/core/threading/DefaultExecution.h | 8 +--- .../core/threading/DeferredTasksManager.h | 8 +--- src/mc/deps/core/threading/GreedyExecution.h | 8 +--- src/mc/deps/core/threading/IAsyncInfo.h | 6 --- src/mc/deps/core/threading/IAsyncResult.h | 8 +--- .../core/threading/IBackgroundTaskOwner.h | 6 --- .../core/threading/ITaskExecutionContext.h | 6 --- .../core/threading/ITaskQueuePortContext.h | 8 +--- .../core/threading/InstancedThreadLocal.h | 8 +--- .../core/threading/InstancedThreadLocalBase.h | 8 +--- .../deps/core/threading/InternalTaskGroup.h | 6 --- src/mc/deps/core/threading/LFBufferCache.h | 6 --- src/mc/deps/core/threading/LocklessQueue.h | 8 +--- src/mc/deps/core/threading/MPMCQueue.h | 8 +--- src/mc/deps/core/threading/MPSCQueue.h | 8 +--- src/mc/deps/core/threading/SPSCQueue.h | 8 +--- .../core/threading/ScopedAutoreleasePool.h | 5 -- src/mc/deps/core/threading/SequenceLock.h | 8 +--- src/mc/deps/core/threading/SharedLockbox.h | 8 +--- src/mc/deps/core/threading/SubmitCallback.h | 6 --- src/mc/deps/core/threading/TaskQueueImpl.h | 5 -- .../deps/core/threading/TaskQueuePortImpl.h | 31 ++----------- src/mc/deps/core/threading/TaskStartInfoEx.h | 8 +--- src/mc/deps/core/threading/WorkQueue.h | 8 +--- .../threading/WorkerPoolHandleInterface.h | 6 --- .../deps/core/threading/WorkerPoolManager.h | 6 --- src/mc/deps/core/threading/XTaskQueueObject.h | 8 +--- .../core/threading/XTaskQueuePortObject.h | 8 +--- .../threading/XTaskQueueRegistrationToken.h | 8 +--- src/mc/deps/core/timing/TimeStamp.h | 8 +--- src/mc/deps/core/timing/launch_time_clock.h | 6 --- src/mc/deps/core/utility/AutomaticID.h | 8 +--- .../core/utility/CompareScheduledCallback.h | 8 +--- .../core/utility/CrashDumpFormatEntryImpl.h | 8 +--- src/mc/deps/core/utility/CrashDumpLog.h | 6 --- .../utility/CrashDumpLogSectionHeaderImpl.h | 8 +--- src/mc/deps/core/utility/CrashDumpLogUtils.h | 6 --- .../utility/DisableServiceLocatorOverride.h | 8 +--- src/mc/deps/core/utility/EnumBitset.h | 8 +--- src/mc/deps/core/utility/ImplCtor.h | 8 +--- src/mc/deps/core/utility/NonOwnerPointer.h | 8 +--- src/mc/deps/core/utility/Observer.h | 8 +--- src/mc/deps/core/utility/PDFError.h | 8 +--- src/mc/deps/core/utility/PDFWriter.h | 6 --- src/mc/deps/core/utility/ServiceReference.h | 8 +--- .../core/utility/ServiceRegistrationToken.h | 8 +--- src/mc/deps/core/utility/SingleThreadedLock.h | 8 +--- .../deps/core/utility/StringStorageTraits.h | 8 +--- src/mc/deps/core/utility/Subject.h | 8 +--- src/mc/deps/core/utility/UniqueOwnerPointer.h | 8 +--- .../core/utility/UniquePtrStorageTraits.h | 8 +--- src/mc/deps/core/utility/buffer_span.h | 8 +--- .../deps/core/utility/json_object/ArrayNode.h | 14 +----- .../core/utility/json_object/BooleanNode.h | 8 +--- .../utility/json_object/MutableObjectHelper.h | 5 -- src/mc/deps/core/utility/json_object/Node.h | 6 --- .../deps/core/utility/json_object/NullNode.h | 8 +--- .../core/utility/json_object/ObjectHelper.h | 8 +--- .../utility/json_object/ObjectHelperBase.h | 8 +--- .../core/utility/json_object/ObjectNode.h | 14 +----- .../core/utility/json_utils/JsonParseState.h | 8 +--- .../utility/json_utils/JsonSchemaObjectNode.h | 8 +--- src/mc/deps/core/utility/optional_ref.h | 8 +--- src/mc/deps/core/utility/pub_sub/Connector.h | 8 +--- .../core/utility/pub_sub/DeferredPublisher.h | 8 +--- .../utility/pub_sub/DeferredSubscription.h | 8 +--- .../utility/pub_sub/DeferredSubscriptionHub.h | 6 --- src/mc/deps/core/utility/pub_sub/Publisher.h | 8 +--- .../core/utility/pub_sub/RawSubscription.h | 8 +--- .../utility/pub_sub/SubscriptionContext.h | 6 --- .../ExecuteImmediatelyPolicy.h | 8 +--- .../pub_sub/deferral_policy/HubPolicy.h | 8 +--- .../pub_sub/deferral_policy/KeepAllPolicy.h | 8 +--- .../deferral_policy/KeepLatestPolicy.h | 8 +--- .../pub_sub/detail/DeferredSubscriptionBase.h | 6 --- ...FastDispatchPublisherBase_SingleThreaded.h | 6 --- .../pub_sub/detail/PublisherDisconnector.h | 6 --- .../pub_sub/detail/SubscriptionBodyBase.h | 8 +--- .../pub_sub/thread_model/MultiThreaded.h | 8 +--- .../pub_sub/thread_model/SingleThreaded.h | 14 +----- src/mc/deps/core/utility/typeid_t.h | 8 +--- .../core_graphics/TextureSetLayerTypeHash.h | 8 +--- .../file_watcher/FileWatcherNull.h | 6 --- .../deps/core_graphics/helpers/TintUtility.h | 8 +--- src/mc/deps/core_graphics/math/Rect.h | 8 +--- .../deps/crypto/asymmetric/ISystemInterface.h | 6 --- .../deps/crypto/asymmetric/NullSSLInterface.h | 6 --- .../crypto/certificate/ISystemInterface.h | 6 --- .../certificate/NullSSLCertificateInterface.h | 6 --- src/mc/deps/crypto/pkcs7/ISystemInterface.h | 6 --- .../deps/crypto/pkcs7/NullSSLpkcs7Interface.h | 6 --- .../deps/crypto/pkcs7/OpenSSLpkcs7Interface.h | 6 --- .../deps/crypto/symmetric/ISystemInterface.h | 6 --- src/mc/deps/ecs/Optional.h | 8 +--- src/mc/deps/ecs/OptionalComponentWrapper.h | 8 +--- src/mc/deps/ecs/ViewT.h | 8 +--- .../gamerefs_entity/IEntityRegistryOwner.h | 6 --- src/mc/deps/ecs/strict/AddRemove.h | 8 +--- src/mc/deps/ecs/strict/EntityFactoryT.h | 8 +--- src/mc/deps/ecs/strict/EntityModifier.h | 8 +--- src/mc/deps/ecs/strict/Exclude.h | 8 +--- src/mc/deps/ecs/strict/Filter.h | 8 +--- src/mc/deps/ecs/strict/GlobalRead.h | 8 +--- src/mc/deps/ecs/strict/GlobalWrite.h | 8 +--- src/mc/deps/ecs/strict/IStrictTickingSystem.h | 8 +--- src/mc/deps/ecs/strict/Include.h | 8 +--- src/mc/deps/ecs/strict/OptionalGlobal.h | 8 +--- src/mc/deps/ecs/strict/Read.h | 8 +--- .../deps/ecs/strict/StrictExecutionContext.h | 8 +--- src/mc/deps/ecs/strict/Write.h | 8 +--- src/mc/deps/ecs/systems/DefaultSystemTraits.h | 6 --- src/mc/deps/ecs/systems/ISystem.h | 6 --- src/mc/deps/ecs/systems/ITickingSystem.h | 6 --- src/mc/deps/game_refs/EnableGetWeakRef.h | 8 +--- src/mc/deps/game_refs/OwnerPtr.h | 8 +--- src/mc/deps/game_refs/StackRefResult.h | 8 +--- src/mc/deps/game_refs/WeakRef.h | 8 +--- src/mc/deps/input/HIDController.h | 8 +--- src/mc/deps/input/Keyboard.h | 6 --- src/mc/deps/input/Multitouch.h | 8 +--- src/mc/deps/minecraft_camera/CameraRegistry.h | 8 +--- src/mc/deps/minecraft_camera/ICameraAPI.h | 6 --- .../minecraft_camera/ICameraClientInstance.h | 6 --- .../components/ActiveCameraComponent.h | 8 +--- .../CameraAlignWithTargetForwardComponent.h | 8 +--- .../components/DefaultInputCameraComponent.h | 8 +--- .../components/DefaultInputCameraDefinition.h | 8 +--- .../events/CameraClearInstructionEvent.h | 8 +--- .../CameraRemoveTargetInstructionEvent.h | 8 +--- .../framebuilder/LivingRoomDescription.h | 8 +--- .../dragon/RenderMetadataFactory.h | 8 +--- .../minecraft_renderer/renderer/MaterialPtr.h | 8 +--- src/mc/deps/nether_net/AesAdapter.h | 6 --- .../deps/nether_net/DiscoveryRequestPacket.h | 6 --- src/mc/deps/nether_net/ILanEventHandler.h | 6 --- .../nether_net/INetherNetTransportInterface.h | 6 --- .../INetherNetTransportInterfaceCallbacks.h | 6 --- .../deps/nether_net/ISignalingEventHandler.h | 6 --- .../nether_net/IWebRTCSignalingInterface.h | 6 --- src/mc/deps/nether_net/SimpleLogSink.h | 6 --- .../nether_net/utils/EnableSharedFromThis.h | 8 +--- src/mc/deps/nether_net/utils/ErrorOr.h | 8 +--- src/mc/deps/nether_net/utils/Thread.h | 6 --- .../file_picker/FilePickerManager.h | 6 --- .../file_picker/FilePickerManagerImpl.h | 5 -- src/mc/deps/profiler/CounterTokenMarker.h | 8 +--- src/mc/deps/profiler/GPUProfileTokenMarker.h | 8 +--- src/mc/deps/profiler/ProfileGroupManager.h | 16 +------ src/mc/deps/profiler/ProfileMultiSectionCPU.h | 14 +----- src/mc/deps/profiler/ProfileThread.h | 6 --- src/mc/deps/puv/Input.h | 6 --- src/mc/deps/puv/LoadResult.h | 8 +--- src/mc/deps/puv/Loader.h | 8 +--- src/mc/deps/puv/LoggerIterator.h | 8 +--- src/mc/deps/raknet/CloudAllocator.h | 6 --- src/mc/deps/raknet/CloudClientCallback.h | 6 --- src/mc/deps/raknet/CloudServerQueryFilter.h | 6 --- src/mc/deps/raknet/DataCompressor.h | 8 +--- src/mc/deps/raknet/FLP_Printf.h | 6 --- src/mc/deps/raknet/FileListProgress.h | 6 --- .../deps/raknet/FileListTransferCBInterface.h | 6 --- src/mc/deps/raknet/IRNS2_Berkley.h | 6 --- src/mc/deps/raknet/IncrementalReadInterface.h | 6 --- .../raknet/NatPunchthroughDebugInterface.h | 6 --- .../NatPunchthroughDebugInterface_Printf.h | 6 --- .../NatPunchthroughServerDebugInterface.h | 6 --- ...tPunchthroughServerDebugInterface_Printf.h | 6 --- src/mc/deps/raknet/PacketOutputWindowLogger.h | 6 --- src/mc/deps/raknet/RNS2EventHandler.h | 6 --- src/mc/deps/raknet/RNS2_Windows_Linux_360.h | 6 --- src/mc/deps/raknet/RPC4GlobalRegistration.h | 8 +--- src/mc/deps/raknet/Rackspace2EventCallback.h | 6 --- .../raknet/RackspaceEventCallback_Default.h | 6 --- src/mc/deps/raknet/RakNetSocket2Allocator.h | 6 --- src/mc/deps/raknet/RakStringCleanup.h | 8 +--- src/mc/deps/raknet/RakThread.h | 6 --- src/mc/deps/raknet/Router2DebugInterface.h | 6 --- src/mc/deps/raknet/SocketLayer.h | 6 --- src/mc/deps/raknet/SocketLayerOverride.h | 6 --- src/mc/deps/raknet/TableSerializer.h | 8 +--- src/mc/deps/raknet/ThreadDataInterface.h | 6 --- src/mc/deps/raknet/TransportInterface.h | 6 --- .../deps/raknet/UDPProxyClientResultHandler.h | 6 --- .../deps/raknet/UDPProxyServerResultHandler.h | 6 --- src/mc/deps/raknet/WSAStartupSingleton.h | 6 --- .../deps/raknet/data_structures/LinkedList.h | 8 +--- src/mc/deps/raknet/data_structures/List.h | 8 +--- .../deps/raknet/data_structures/MemoryPool.h | 8 +--- src/mc/deps/raknet/data_structures/Queue.h | 8 +--- .../ThreadsafeAllocatingQueue.h | 8 +--- src/mc/deps/renderer/hal/interface/Texture.h | 8 +--- src/mc/deps/resource_processing/Builder.h | 6 --- .../deps/resource_processing/PreloadCache.h | 8 +--- src/mc/deps/resource_processing/Reader.h | 6 --- src/mc/deps/shared_types/Color255RGB.h | 8 +--- src/mc/deps/shared_types/Color255RGBA.h | 8 +--- .../shared_types/EventIdentifierConstraint.h | 6 --- src/mc/deps/shared_types/ParticleCurveBase.h | 8 +--- .../shared_types/ParticleEffectComponent.h | 6 --- .../v1_20_50/BlockDescriptorProxyConstraint.h | 6 --- .../v1_20_50/EnchantSlotConstraint.h | 6 --- .../v1_20_60/IBiomeJsonComponent.h | 6 --- .../TheEndSurfaceBiomeJsonComponent.h | 6 --- .../v1_21_30/QuantityConstraint.h | 6 --- .../ActorAddedFlagComponent.h | 8 +--- .../ActorChunkMoveFlagComponent.h | 8 +--- .../deps/vanilla_components/ActorComponent.h | 8 +--- .../ActorDataBoundingBoxComponent.h | 6 --- .../ActorDataComponentBase.h | 8 +--- .../ActorDataComponentBaseInt32.h | 8 +--- .../ActorDataComponentBaseInt8.h | 8 +--- .../ActorDataComponentBaseVec3.h | 8 +--- .../ActorDataControllingSeatIndexComponent.h | 8 +--- .../ActorDataFlagComponent.h | 6 --- .../ActorDataHorseFlagComponent.h | 8 +--- .../ActorDataHorseTypeComponent.h | 8 +--- .../ActorDataJumpDurationComponent.h | 8 +--- .../ActorDataSeatOffsetComponent.h | 8 +--- .../ActorHeadInWaterFlagComponent.h | 8 +--- .../ActorHeadWasInWaterFlagComponent.h | 8 +--- .../ActorIsImmobileFlagComponent.h | 8 +--- .../ActorIsKnockedBackOnDeathFlagComponent.h | 8 +--- ...ActorLocalPlayerEntityMovedFlagComponent.h | 8 +--- .../ActorRemovedFlagComponent.h | 8 +--- .../vanilla_components/AgentFlagComponent.h | 8 +--- .../vanilla_components/BatFlagComponent.h | 8 +--- .../vanilla_components/BeeFlagComponent.h | 8 +--- .../vanilla_components/BlazeFlagComponent.h | 8 +--- .../vanilla_components/BoatFlagComponent.h | 8 +--- .../vanilla_components/CamelFlagComponent.h | 8 +--- .../CanVehicleSprintFlagComponent.h | 8 +--- .../vanilla_components/ChickenFlagComponent.h | 8 +--- .../CollidableMobNearFlagComponent.h | 8 +--- .../CollisionFlagComponent.h | 8 +--- .../vanilla_components/DolphinFlagComponent.h | 8 +--- .../EnderDragonFlagComponent.h | 8 +--- .../EnderManFlagComponent.h | 8 +--- .../ExperienceOrbFlagComponent.h | 8 +--- .../EyeOfEnderFlagComponent.h | 8 +--- .../FallingBlockFlagComponent.h | 8 +--- .../FireworksRocketFlagComponent.h | 8 +--- .../vanilla_components/FishFlagComponent.h | 8 +--- .../FishingHookFlagComponent.h | 8 +--- .../GuardianFlagComponent.h | 8 +--- .../HangingActorFlagComponent.h | 8 +--- .../HorizontalCollisionFlagComponent.h | 8 +--- .../vanilla_components/HorseFlagComponent.h | 8 +--- .../IllagerBeastFlagComponent.h | 8 +--- .../ItemActorFlagComponent.h | 8 +--- .../LavaSlimeFlagComponent.h | 8 +--- .../MinecartFlagComponent.h | 8 +--- .../MobAllowStandSlidingFlagComponent.h | 8 +--- .../vanilla_components/MobFlagComponent.h | 8 +--- .../MobIsImmobileFlagComponent.h | 8 +--- .../MobIsJumpingFlagComponent.h | 8 +--- .../vanilla_components/MonsterFlagComponent.h | 8 +--- .../OnGroundFlagComponent.h | 8 +--- .../PaintingFlagComponent.h | 8 +--- .../vanilla_components/PandaFlagComponent.h | 8 +--- .../vanilla_components/ParrotFlagComponent.h | 8 +--- .../vanilla_components/PersistSitComponent.h | 8 +--- .../deps/vanilla_components/PlayerComponent.h | 8 +--- .../PlayerIsSleepingFlagComponent.h | 8 +--- .../PrimedTntFlagComponent.h | 8 +--- .../SetMovingFlagRequestComponent.h | 8 +--- .../vanilla_components/SheepFlagComponent.h | 8 +--- .../ShulkerBulletFlagComponent.h | 8 +--- .../vanilla_components/ShulkerFlagComponent.h | 8 +--- .../SimulatedPlayerFlagComponent.h | 8 +--- .../SkeletonFlagComponent.h | 8 +--- .../vanilla_components/SlimeFlagComponent.h | 8 +--- .../vanilla_components/SpiderFlagComponent.h | 8 +--- .../vanilla_components/SquidFlagComponent.h | 8 +--- .../ThrownTridentFlagComponent.h | 8 +--- .../TropicalFishFlagComponent.h | 8 +--- .../VerticalCollisionFlagComponent.h | 8 +--- .../vanilla_components/VexFlagComponent.h | 8 +--- .../VillagerV2FlagComponent.h | 8 +--- .../WaterAnimalFlagComponent.h | 8 +--- .../vanilla_components/WitchFlagComponent.h | 8 +--- .../WitherBossFlagComponent.h | 8 +--- .../WitherSkullFlagComponent.h | 8 +--- .../vanilla_components/WolfFlagComponent.h | 8 +--- .../utilities/SynchedActorDataAccessor.h | 8 +--- src/mc/deviceinfo/DeviceInfoUtils.h | 6 --- .../diagnostics/bedrock_log/LogAreaFilter.h | 8 +--- src/mc/editor/PlayerHelpers.h | 6 --- .../editor/datastore/DeprecatedEventFactory.h | 6 --- src/mc/editor/datastore/Payload.h | 6 --- src/mc/editor/logging/LogUtils.h | 6 --- .../editor/logging/LoggingServiceProvider.h | 6 --- .../editor/network/ClientPlayerReadyPayload.h | 5 -- src/mc/editor/network/INetworkPayload.h | 6 --- src/mc/editor/network/NetworkPayload.h | 8 +--- .../playtest/ReloadEditorClientPayload.h | 6 --- .../script/ScriptDataStoreAfterEvents.h | 7 --- .../script/ScriptDataStorePayloadUtils.h | 6 --- .../ScriptExtensionContextAfterEvents.h | 7 --- src/mc/editor/script/ScriptGameOptions.h | 5 -- .../script/ScriptProjectExportOptions.h | 6 --- .../editor/script/ScriptProjectExportType.h | 6 --- ...riptWidgetComponentErrorInvalidComponent.h | 5 -- .../script/ScriptWidgetComponentGuideSensor.h | 6 --- .../ScriptWidgetComponentGuideSensorOptions.h | 5 -- .../ScriptWidgetComponentRenderPrimOptions.h | 5 -- .../ScriptWidgetComponent_WidgetInterface.h | 6 --- .../script/ScriptWidgetErrorInvalidObject.h | 5 -- .../ScriptWidgetGroupErrorInvalidObject.h | 5 -- .../ScriptWidgetGroup_ServiceInterface.h | 6 --- .../ScriptWidgetGroup_WidgetInterface.h | 6 --- .../ScriptWidgetService_GroupInterface.h | 6 --- .../script/ScriptWidget_ComponentInterface.h | 6 --- .../script/ScriptWidget_GroupInterface.h | 6 --- .../script/ScriptWidget_ServiceInterface.h | 6 --- .../SelectionContainerChangedPayload.h | 6 --- .../selection/SelectionServiceProvider.h | 6 --- .../ClipboardServiceProvider.h | 6 --- .../CommonBlockUtilityServiceProvider.h | 6 --- .../DataStoreServiceProvider.h | 6 --- .../EditorBlockPaletteServiceProvider.h | 6 --- .../EditorManagerServiceProvider.h | 6 --- .../EditorPersistenceServiceProvider.h | 6 --- .../EditorPlayerServiceProvider.h | 6 --- .../EditorSettingsServiceProvider.h | 6 --- .../EditorTickingAreaServiceProvider.h | 6 --- .../EmptySampleServiceProvider.h | 6 --- .../serviceproviders/ModeServiceProvider.h | 6 --- .../serviceproviders/PayloadServiceProvider.h | 6 --- .../ServerDataTransferServiceProvider.h | 6 --- .../ServerStructureServiceProvider.h | 6 --- .../TelemetryServiceProvider.h | 6 --- .../services/sample/EmptySampleService.h | 6 --- .../tickingarea/EditorTickingAreaService.h | 6 --- .../transactionmanager/RedoOperationPayload.h | 5 -- .../transactionmanager/UndoOperationPayload.h | 5 -- .../services/widgets/SplineHelperBase.h | 6 --- .../services/widgets/SplineHelperHermite.h | 6 --- .../services/widgets/SplineHelperLine.h | 6 --- .../WidgetAddGuideSensorComponentPayload.h | 6 --- .../widgets/WidgetDeleteGroupPayload.h | 6 --- .../widgets/WidgetDeleteWidgetPayload.h | 6 --- .../editor/systems/EditorFilterPausedSystem.h | 6 --- .../systems/EditorTrackLevelTickSystem.h | 8 +--- .../editor/systems/EditorUpdatePausedSystem.h | 8 +--- .../components/AbilitiesDirtyComponent.h | 8 +--- src/mc/entity/components/ActorDiedComponent.h | 8 +--- .../components/ActorInBubbleColumnComponent.h | 8 +--- .../ActorIsBeingDestroyedFlagComponent.h | 8 +--- .../ActorIsFirstTickFlagComponent.h | 8 +--- .../ActorLimitedLifetimeComponent.h | 5 -- .../ActorMovementTickNeededComponent.h | 8 +--- .../ActorSetPositionRequestComponent.h | 8 +--- .../entity/components/ActorTickedComponent.h | 8 +--- .../AdultRidingHeightOffsetComponent.h | 8 +--- src/mc/entity/components/AirSpeedComponent.h | 8 +--- .../components/AirTravelFlagComponent.h | 8 +--- .../components/AntiCheatRewindFlagComponent.h | 8 +--- .../components/ArmorFlyEnabledFlagComponent.h | 8 +--- .../components/ArmorStandPoseIndexComponent.h | 8 +--- .../components/AutoClimbTravelFlagComponent.h | 8 +--- .../components/AutoStepRequestFlagComponent.h | 8 +--- .../components/AutonomousActorComponent.h | 8 +--- .../entity/components/BlockClimberComponent.h | 8 +--- ...BlockMovementSlowdownMultiplierComponent.h | 8 +--- .../BreaksFallingBlocksFlagComponent.h | 8 +--- .../components/BurnsInDaylightComponent.h | 8 +--- src/mc/entity/components/CactusBlockFlag.h | 8 +--- .../CameraOutOfRangeWarningSentComponent.h | 8 +--- .../entity/components/CanJoinRaidComponent.h | 8 +--- .../CanMakeAudibleSoundsComponent.h | 8 +--- .../components/CanSeeInvisibleFlagComponent.h | 8 +--- .../components/CanStandOnSnowFlagComponent.h | 8 +--- .../components/CollidableMobFlagComponent.h | 8 +--- .../ControlledByLocalInstanceComponent.h | 8 +--- .../CurrentLocalMoveVelocityComponent.h | 8 +--- .../CurrentlyImmuneToFallDamageComponent.h | 8 +--- .../components/DamageNearbyMobsComponent.h | 8 +--- .../entity/components/DashJumpFlagComponent.h | 8 +--- .../entity/components/DebugInfoDefinition.h | 8 +--- .../components/DimensionBoundComponent.h | 8 +--- .../components/DiscardFrictionFlagComponent.h | 8 +--- .../components/DisplayEntityComponent.h | 8 +--- .../EditorActorPauseTickNeededComponent.h | 8 +--- .../components/EditorActorPausedComponent.h | 8 +--- .../EjectedByActivatorRailFlagComponent.h | 8 +--- src/mc/entity/components/EndPortalBlockFlag.h | 8 +--- .../EntityNeedsInitializeFlagComponent.h | 8 +--- .../ExitFromPassengerFlagComponent.h | 8 +--- .../entity/components/FallFlyTicksComponent.h | 8 +--- .../components/FreezeImmuneFlagComponent.h | 8 +--- .../components/FrictionModifierComponent.h | 8 +--- .../components/GallopSoundCounterComponent.h | 8 +--- .../components/GlidingTravelFlagComponent.h | 8 +--- .../entity/components/GlobalActorComponent.h | 8 +--- .../components/GlobalActorRenderComponent.h | 8 +--- .../components/GroundTravelFlagComponent.h | 8 +--- .../HasLightweightFamilyFlagComponent.h | 8 +--- .../components/HasTeleportedFlagComponent.h | 8 +--- src/mc/entity/components/HoneyBlockFlag.h | 8 +--- .../HorseLandedOnGroundFlagComponent.h | 8 +--- .../HorseWasOnGroundPreTravelComponent.h | 8 +--- .../components/HurtOnConditionComponent.h | 8 +--- .../entity/components/IHitResultContainer.h | 6 --- src/mc/entity/components/IPlayerTickPolicy.h | 6 --- src/mc/entity/components/IReplayStatePolicy.h | 6 --- .../IgnoresEntityInsideFlagComponent.h | 8 +--- .../components/ImitateMobSoundsComponent.h | 6 --- .../components/ImmuneToLavaDragComponent.h | 8 +--- .../InsideBlockWithPosAndBlockComponent.h | 8 +--- .../components/InsideBlockWithPosComponent.h | 8 +--- ...nsideSlowingSweetBerryBushBlockComponent.h | 8 +--- .../components/InsideWebBlockComponent.h | 8 +--- .../InteractPreventDefaultFlagComponent.h | 8 +--- .../IsChasingDuringPlayFlagComponent.h | 8 +--- .../entity/components/IsDeadFlagComponent.h | 8 +--- .../components/IsFishableFlagComponent.h | 8 +--- .../IsHorizontalPoseFlagComponent.h | 8 +--- .../components/IsNearDolphinsFlagComponent.h | 8 +--- .../components/IsOnHotBlockFlagComponent.h | 8 +--- .../components/IsPanickingFlagComponent.h | 8 +--- .../IsShowingCreditsFlagComponent.h | 8 +--- .../components/JoinRaidQueuedFlagComponent.h | 8 +--- .../JumpFromGroundRequestComponent.h | 8 +--- .../components/JumpPendingScaleComponent.h | 8 +--- .../components/JumpRidingScaleComponent.h | 8 +--- ...ingEvenIfTooLargeForVehicleFlagComponent.h | 8 +--- .../LavaSlimeJumpRequestComponent.h | 8 +--- .../components/LavaTravelFlagComponent.h | 8 +--- .../components/LevitateTravelFlagComponent.h | 8 +--- .../components/LiquidTravelFlagComponent.h | 8 +--- .../LocalConstBlockSourceFactoryComponent.h | 8 +--- .../components/LocalMoveVelocityComponent.h | 8 +--- .../entity/components/LocalPlayerComponent.h | 8 +--- .../LocalPlayerJumpRequestComponent.h | 8 +--- ...ocalSpatialEntityFetcherFactoryComponent.h | 8 +--- .../components/MakesLavaStepSoundComponent.h | 8 +--- .../entity/components/MaxAutoStepComponent.h | 8 +--- .../entity/components/MobAnimationComponent.h | 8 +--- .../entity/components/MobHurtTimeComponent.h | 8 +--- .../entity/components/MobRotationComponent.h | 8 +--- .../MoveTowardsClosestSpaceFlagComponent.h | 8 +--- .../components/MovementSpeedComponent.h | 8 +--- .../NeedSetPreviousPositionFlagComponent.h | 8 +--- .../NeedsUpgradeToBodySlotFlagComponent.h | 8 +--- .../NeverChangesSizeFlagComponent.h | 8 +--- .../components/OtherJumpRequestComponent.h | 8 +--- .../entity/components/OutOfControlComponent.h | 8 +--- .../entity/components/ParticleEventRequest.h | 8 +--- .../PassengersChangedFlagComponent.h | 8 +--- .../PermanentSkipMobAiStepComponent.h | 8 +--- .../PermanentSkipMobTravelComponent.h | 8 +--- .../PermanentSkipNormalTickComponent.h | 8 +--- .../components/PermissionFlyFlagComponent.h | 8 +--- .../entity/components/PersistentComponent.h | 8 +--- src/mc/entity/components/PhysicsComponent.h | 8 +--- .../PostSplashGameEventRequestComponent.h | 8 +--- .../PostTickPositionDeltaComponent.h | 8 +--- .../entity/components/PowderSnowBlockFlag.h | 8 +--- .../components/PowerJumpFlagComponent.h | 8 +--- .../components/PreferredPathComponent.h | 8 +--- .../PrevPosRotSetThisTickFlagComponent.h | 8 +--- .../components/ProjectileFlagComponent.h | 8 +--- .../components/PushActorsRequestComponent.h | 8 +--- .../entity/components/RaidTriggerComponent.h | 8 +--- ...ontrolledByLocalInstanceRequestComponent.h | 9 +--- .../entity/components/RemotePlayerComponent.h | 8 +--- .../RemoveAllPassengersRequestComponent.h | 8 +--- .../RemoveInPeacefulFlagComponent.h | 8 +--- .../components/RenderPositionComponent.h | 8 +--- .../ReplayStateLenderFlagComponent.h | 8 +--- .../entity/components/ReplayStateValueDiff.h | 8 +--- .../components/ResetTargetRequestComponent.h | 8 +--- .../entity/components/RidingHeightComponent.h | 8 +--- .../RiptideTridentSpinAttackComponent.h | 8 +--- .../entity/components/RollCounterComponent.h | 8 +--- .../SaveSurroundingChunksComponent.h | 8 +--- .../components/ScanForDolphinFlagComponent.h | 8 +--- .../components/ScanForDolphinTimerComponent.h | 8 +--- .../components/SendMotionToServerComponent.h | 8 +--- .../entity/components/ServerPlayerComponent.h | 8 +--- .../ServerPlayerInitialLoadingComponent.h | 8 +--- .../entity/components/ShadowOffsetComponent.h | 8 +--- ...dWhoNeedsRocketsAchievementFlagComponent.h | 9 +--- .../components/ShouldBeSimulatedComponent.h | 8 +--- .../ShouldPlayMovementSoundComponent.h | 8 +--- .../components/ShouldPlayStepSoundComponent.h | 8 +--- .../ShouldStopEmotingRequestComponent.h | 8 +--- .../ShouldUpdateBoundingBoxRequestComponent.h | 8 +--- .../entity/components/SkipAiStepComponent.h | 8 +--- .../SkipBodySlotUpgradeFlagComponent.h | 8 +--- .../components/SkipMobTravelComponent.h | 8 +--- .../components/SkipNormalTickComponent.h | 8 +--- .../SkipPlayerTickSystemFlagComponent.h | 8 +--- .../SlimeWasOnGroundPreNormalTickComponent.h | 8 +--- .../SoulSpeedEnchantFlagComponent.h | 8 +--- .../components/SquidJumpRequestComponent.h | 8 +--- .../StandOnHoneyOrSlimeBlockFlagComponent.h | 8 +--- .../StandOnOtherBlockFlagComponent.h | 8 +--- .../components/StopRidingRequestComponent.h | 8 +--- .../components/SweetBerryBushBlockFlag.h | 8 +--- .../components/SwimSpeedMultiplierComponent.h | 8 +--- .../SwitchingVehiclesFlagComponent.h | 8 +--- src/mc/entity/components/TagsComponent.h | 8 +--- src/mc/entity/components/TagsComponentBase.h | 6 --- src/mc/entity/components/TransientComponent.h | 8 +--- .../TripodCameraActivateComponent.h | 8 +--- .../entity/components/TripodCameraComponent.h | 6 --- .../components/TripodCameraDescription.h | 6 --- .../TripodCameraTakePictureComponent.h | 8 +--- .../UsesDefaultStepSoundComponent.h | 8 +--- .../components/VRMoveAdjustAngleComponent.h | 8 +--- .../components/VibrationDamperComponent.h | 8 +--- .../WasControlledByLocalInstanceComponent.h | 8 +--- .../WasHandledBySculkCatalystFlagComponent.h | 8 +--- .../components/WasInLavaFlagComponent.h | 8 +--- .../components/WasInWaterFlagComponent.h | 8 +--- .../components/WasOnGroundFlagComponent.h | 8 +--- .../components/WaterTravelFlagComponent.h | 8 +--- .../WaterWalkSpeedEnchantComponent.h | 8 +--- src/mc/entity/components/WaterlilyBlockFlag.h | 8 +--- .../agent_components/AnimationArmSwing.h | 8 +--- .../agent_components/AnimationComplete.h | 8 +--- .../agent/agent_components/AnimationShrug.h | 8 +--- .../components/agent_components/ActionQueue.h | 8 +--- .../components/agent_components/Agent.h | 14 +----- .../components/agent_components/Executing.h | 8 +--- .../agent_components/Initializing.h | 8 +--- .../agent_components/LegacyCommand.h | 8 +--- .../BalloonableComponent.h | 6 --- .../BreakBlocksComponent.h | 6 --- .../BucketableComponent.h | 5 -- .../BucketableDescription.h | 6 --- .../components_json_legacy/DespawnComponent.h | 12 ----- .../DouseFireSubcomponent.h | 5 -- .../EnvironmentSensorComponent.h | 8 +--- .../HealableComponent.h | 6 --- .../components_json_legacy/HideDescription.h | 6 --- .../components_json_legacy/HopperDefinition.h | 6 --- .../IgniteSubcomponent.h | 5 -- .../IllagerBeastBlockedComponent.h | 6 --- .../InstantDespawnComponent.h | 6 --- .../LeashableComponent.h | 6 --- .../ManagedWanderingTraderComponent.h | 6 --- .../ManagedWanderingTraderDescription.h | 6 --- .../OnHitSubcomponent.h | 5 -- .../OpenDoorAnnotationDescription.h | 6 --- .../RailActivatorComponent.h | 6 --- .../RemoveOnHitSubcomponent.h | 5 -- .../ShareableComponent.h | 6 --- .../components_json_legacy/SitComponent.h | 6 --- .../SuspectTrackingDefinition.h | 6 --- .../TeleportToSubcomponent.h | 5 -- .../ThrownPotionEffectSubcomponent.h | 6 --- .../TradeResupplyDescription.h | 6 --- .../components_json_legacy/TrustDescription.h | 6 --- .../VibrationListenerDefinition.h | 6 --- .../WindBurstOnHitSubcomponent.h | 5 -- .../IActorWrapper.h | 6 --- .../IPassengerActor.h | 6 --- .../IRideableActor.h | 6 --- .../IRideableActorActions.h | 6 --- .../IVehicleStateProvider.h | 6 --- .../RideableSystem.h | 8 +--- .../VehicleStateProvider.h | 6 --- .../definitions/ActorLocationOffsetSchema.h | 6 --- .../AmphibiousMoveControlDescription.h | 6 --- .../definitions/BlockClimberDefinition.h | 6 --- .../BodyRotationBlockedDefinition.h | 6 --- .../definitions/BurnsInDaylightDefinition.h | 6 --- .../entity/definitions/CanClimbDefinition.h | 6 --- src/mc/entity/definitions/CanFlyDefinition.h | 6 --- .../definitions/CanJoinRaidDefinition.h | 6 --- .../definitions/CanPowerJumpDefinition.h | 6 --- .../definitions/CannotBeAttackedDefinition.h | 6 --- src/mc/entity/definitions/Color2Definition.h | 6 --- .../definitions/DimensionBoundDefinition.h | 6 --- .../DynamicJumpControlDescription.h | 6 --- .../entity/definitions/FireImmuneDefinition.h | 6 --- .../definitions/FloatsInLiquidDefinition.h | 6 --- .../GenericMoveControlDescription.h | 6 --- src/mc/entity/definitions/IsBabyDefinition.h | 6 --- .../entity/definitions/IsChargedDefinition.h | 6 --- .../entity/definitions/IsChestedDefinition.h | 6 --- .../IsHiddenWhenInvisibleDefinition.h | 6 --- .../entity/definitions/IsIgnitedDefinition.h | 6 --- .../definitions/IsIllagerCaptainDefinition.h | 6 --- .../entity/definitions/IsPregnantDefinition.h | 6 --- .../entity/definitions/IsSaddledDefinition.h | 6 --- .../entity/definitions/IsShakingDefinition.h | 6 --- .../entity/definitions/IsShearedDefinition.h | 6 --- .../definitions/IsStackableDefinition.h | 6 --- .../entity/definitions/IsStunnedDefinition.h | 6 --- src/mc/entity/definitions/IsTamedDefinition.h | 6 --- .../definitions/MoveControlBasicDescription.h | 6 --- .../MoveControlDolphinDescription.h | 6 --- .../definitions/MoveControlFlyDescription.h | 6 --- .../definitions/MoveControlHoverDescription.h | 6 --- .../definitions/MoveControlSkipDescription.h | 6 --- .../definitions/NavigationClimbDescription.h | 6 --- .../definitions/NavigationFloatDescription.h | 6 --- .../definitions/NavigationFlyDescription.h | 6 --- .../NavigationGenericDescription.h | 6 --- .../definitions/NavigationHoverDescription.h | 6 --- .../definitions/NavigationWalkDescription.h | 6 --- src/mc/entity/definitions/OnDeathDefinition.h | 6 --- .../definitions/OnFriendlyAngerDefinition.h | 6 --- .../definitions/OnHurtByPlayerDefinition.h | 6 --- src/mc/entity/definitions/OnHurtDefinition.h | 6 --- .../entity/definitions/OnIgniteDefinition.h | 6 --- .../definitions/OnStartLandingDefinition.h | 6 --- .../definitions/OnStartTakeoffDefinition.h | 6 --- .../definitions/OnTargetAcquiredDefinition.h | 6 --- .../definitions/OnTargetEscapeDefinition.h | 6 --- .../definitions/OnWakeWithOwnerDefinition.h | 6 --- .../definitions/OutOfControlDefinition.h | 6 --- .../definitions/PersistentDescription.h | 6 --- .../entity/definitions/TransientDefinition.h | 6 --- .../definitions/VibrationDamperDefinition.h | 6 --- .../definitions/WASDControlledDefinition.h | 6 --- .../definitions/WantsJockeyDefinition.h | 6 --- .../factory/EntityComponentFactoryBase.h | 6 --- .../factory/EntityComponentFactoryCereal.h | 8 +--- .../systems/ActorBubbleColumnStateSystem.h | 6 --- src/mc/entity/systems/ActorDataSyncSystem.h | 6 --- src/mc/entity/systems/ActorLegacyTickSystem.h | 6 --- .../systems/ActorLimitedLifetimeTickSystem.h | 6 --- src/mc/entity/systems/ActorMotionSyncSystem.h | 6 --- src/mc/entity/systems/ActorMoveSystem.h | 6 --- .../systems/ActorMovementTickFilterSystem.h | 6 --- .../systems/ActorPostAiStepTickSystem.h | 6 --- .../systems/ActorPostNormalTickSystem.h | 6 --- .../systems/ActorRefreshComponentsSystem.h | 6 --- src/mc/entity/systems/ActorRemoveSystem.h | 8 +--- .../systems/ActorStopRidingEventSystem.h | 6 --- .../ActorUpdatePostTickPositionDeltaSystem.h | 6 --- .../ActorUpdatePreviousPositionSystem.h | 6 --- .../systems/ActorUpdateRidingIDSystem.h | 6 --- src/mc/entity/systems/AgeableSystem.h | 6 --- .../entity/systems/AgentAbilitiesSyncSystem.h | 6 --- src/mc/entity/systems/AgentCommandSystem.h | 6 --- .../systems/AgentDestroyCommandSystem.h | 6 --- .../entity/systems/AgentDetectCommandSystem.h | 6 --- .../systems/AgentInspectCommandSystem.h | 6 --- .../systems/AgentInteractCommandSystem.h | 6 --- .../entity/systems/AgentMoveCommandSystem.h | 6 --- .../entity/systems/AmbientSoundServerSystem.h | 6 --- src/mc/entity/systems/AmbientSoundSystem.h | 6 --- src/mc/entity/systems/AngerLevelSystem.h | 6 --- src/mc/entity/systems/AngrySystem.h | 6 --- src/mc/entity/systems/AnimationEventSystem.h | 6 --- src/mc/entity/systems/ApplyDashSystem.h | 6 --- .../entity/systems/ApplyJumpModifierSystem.h | 6 --- src/mc/entity/systems/AreaAttackSystem.h | 6 --- src/mc/entity/systems/AttackCooldownSystem.h | 6 --- src/mc/entity/systems/BalloonSystem.h | 6 --- src/mc/entity/systems/BehaviorSystem.h | 6 --- src/mc/entity/systems/BlazePreTravelSystem.h | 6 --- .../entity/systems/BlockBreakSensorSystem.h | 6 --- src/mc/entity/systems/BlockClimberSystem.h | 6 --- src/mc/entity/systems/BodyControlSystem.h | 6 --- src/mc/entity/systems/BoostableSystem.h | 6 --- src/mc/entity/systems/BossSystem.h | 6 --- src/mc/entity/systems/BounceEventingSystem.h | 6 --- src/mc/entity/systems/BreakBlocksSystem.h | 6 --- .../systems/BreakDoorAnnotationSystem.h | 6 --- src/mc/entity/systems/BreathableSystem.h | 6 --- src/mc/entity/systems/BreedableSystem.h | 6 --- src/mc/entity/systems/BribeableSystem.h | 6 --- src/mc/entity/systems/BurnsInDaylightSystem.h | 6 --- src/mc/entity/systems/CameraShakeSystem.h | 6 --- src/mc/entity/systems/CelebrateHuntSystem.h | 6 --- src/mc/entity/systems/CheckFallDamageSystem.h | 6 --- .../CleanUpSingleTickRemovePassengersSystem.h | 6 --- .../entity/systems/ClientInputUpdateSystem.h | 6 --- .../systems/ClientInputUpdateSystemInternal.h | 6 --- .../systems/ClientInteractStopRidingSystem.h | 6 --- .../ClientLoadingProgressTickingSystem.h | 6 --- .../entity/systems/ClientPlayerRewindSystem.h | 6 --- .../systems/ClientTripodCameraTickingSystem.h | 6 --- .../systems/CollidableMobNotifierSystem.h | 6 --- .../entity/systems/CombatRegenerationSystem.h | 6 --- src/mc/entity/systems/CommandBlockSystem.h | 6 --- .../systems/CompareVehiclePositionSystem.h | 6 --- .../systems/ControlledByLocalInstanceSystem.h | 6 --- .../CreativePlayerOnFireServerSystem.h | 6 --- .../entity/systems/CurrentSwimAmountSystem.h | 6 --- .../CurrentlyStandingOnBlockSystemImpl.h | 6 --- src/mc/entity/systems/DamageOverTimeSystem.h | 6 --- src/mc/entity/systems/DanceSystem.h | 6 --- src/mc/entity/systems/DashSystem.h | 6 --- src/mc/entity/systems/DayCycleEventSystem.h | 6 --- src/mc/entity/systems/DebugInfoMob.h | 6 --- src/mc/entity/systems/DebugInfoPlayer.h | 6 --- src/mc/entity/systems/DebugInfoSystem.h | 6 --- src/mc/entity/systems/DespawnSystem.h | 6 --- .../entity/systems/DimensionChunkMoveSystem.h | 6 --- src/mc/entity/systems/DimensionStateSystem.h | 6 --- .../systems/DimensionTransitionSystem.h | 6 --- .../entity/systems/DispatcherUpdateSystem.h | 6 --- src/mc/entity/systems/DolphinBoostSystem.h | 6 --- src/mc/entity/systems/DryingOutTimerSystem.h | 6 --- src/mc/entity/systems/DwellerSystem.h | 6 --- .../entity/systems/EditorTickFilterSystem.h | 6 --- .../entity/systems/EnderManPreAIStepSystem.h | 6 --- src/mc/entity/systems/EntitySensorSystem.h | 6 --- .../entity/systems/EntityStorageKeySystem.h | 6 --- src/mc/entity/systems/EntitySystems.h | 46 ++++--------------- .../entity/systems/EnvironmentSensorSystem.h | 6 --- src/mc/entity/systems/EventingRequestSystem.h | 6 --- src/mc/entity/systems/ExplodeSystem.h | 6 --- .../systems/EyeOfEnderPreNormalTickSystem.h | 6 --- .../systems/FallingBlockNormalTickSystem.h | 6 --- src/mc/entity/systems/FinalizeMoveSystem.h | 6 --- .../systems/FireAnimationTrackerSystem.h | 6 --- src/mc/entity/systems/FireEventsWrapper.h | 8 +--- .../FlagAllPassengersForPositioningSystem.h | 6 --- .../systems/FlagPassengerRemovalSystem.h | 6 --- .../FlagRemotePlayersForTickingSystem.h | 8 +--- src/mc/entity/systems/FlockingSystem.h | 6 --- .../entity/systems/FoodExhaustionSystemImpl.h | 6 --- .../systems/FramewiseActionOrStopSystem.h | 6 --- src/mc/entity/systems/FreezingSystem.h | 6 --- .../systems/GameEventMovementTrackingSystem.h | 6 --- src/mc/entity/systems/GlideInputSystem.h | 6 --- .../systems/GlobalActorLegacyTickSystem.h | 6 --- .../systems/GlobalTextureGroupStateSystem.h | 6 --- src/mc/entity/systems/GoalSelectorSystem.h | 6 --- .../entity/systems/GroundTravelTypeSystem.h | 6 --- src/mc/entity/systems/GroupSizeSystem.h | 6 --- src/mc/entity/systems/GrowCropSystem.h | 6 --- .../entity/systems/GuardianPreAIStepSystem.h | 6 --- .../entity/systems/HangingActorMoveSystem.h | 6 --- src/mc/entity/systems/HeartbeatClientSystem.h | 6 --- src/mc/entity/systems/HeartbeatServerSystem.h | 6 --- src/mc/entity/systems/HitResultSystem.h | 6 --- src/mc/entity/systems/HoldBlockSystem.h | 6 --- src/mc/entity/systems/HomeSystem.h | 6 --- src/mc/entity/systems/HopperSystem.h | 6 --- src/mc/entity/systems/HorsePreTravelSystem.h | 6 --- src/mc/entity/systems/HurtOnConditionSystem.h | 6 --- src/mc/entity/systems/IEntitySystems.h | 6 --- .../systems/IllagerBeastPostAIStepSystem.h | 6 --- .../entity/systems/ImitateMobSoundsSystem.h | 6 --- src/mc/entity/systems/ImmobileSystem.h | 6 --- src/mc/entity/systems/InLavaSensingSystem.h | 6 --- src/mc/entity/systems/InWaterSensingSystem.h | 6 --- .../systems/InsideBlockNotifierSystem.h | 6 --- .../entity/systems/InsideBubbleColumnSystem.h | 14 +----- .../systems/InsideEndPortalBlockSystem.h | 6 --- .../entity/systems/InsideGenericBlockSystem.h | 6 --- .../entity/systems/InsideHoneyBlockSystem.h | 6 --- .../systems/InsideWaterlilyBlockSystem.h | 6 --- src/mc/entity/systems/InsomniaSystem.h | 6 --- src/mc/entity/systems/InstantDespawnSystem.h | 6 --- src/mc/entity/systems/InteractSystem.h | 6 --- src/mc/entity/systems/JumpControlSystem.h | 6 --- src/mc/entity/systems/JumpEndSystem.h | 6 --- src/mc/entity/systems/JumpInputSystem.h | 6 --- .../systems/LadderResetFallDamageSystem.h | 6 --- src/mc/entity/systems/LavaMoveSystem.h | 6 --- src/mc/entity/systems/LavaTravelSystem.h | 6 --- src/mc/entity/systems/LeashableSystem.h | 6 --- .../entity/systems/LegacyRaidTriggerSystem.h | 6 --- .../entity/systems/LiquidPhysicsSystemImpl.h | 6 --- src/mc/entity/systems/LiquidSplashSystem.h | 6 --- .../systems/LocalPlayerUpdatePositionSystem.h | 8 +--- src/mc/entity/systems/LookControlSystem.h | 6 --- src/mc/entity/systems/LootSystem.h | 6 --- .../systems/MinecartCanSnapOnRailSystem.h | 6 --- .../systems/MinecartComeOffRailSystem.h | 6 --- .../systems/MinecartMoveAlongRailSystem.h | 6 --- .../systems/MinecartPreNormalTickSystem.h | 6 --- src/mc/entity/systems/MobEffectSystem.h | 6 --- .../systems/MobIsImmobileFilterSystem.h | 6 --- src/mc/entity/systems/MobOnPlayerJumpSystem.h | 6 --- .../entity/systems/MobRemovePassengerSystem.h | 6 --- .../MobResetPassengerYRotLimitSystem.h | 6 --- .../entity/systems/MobSetPreviousRotSystem.h | 6 --- .../systems/MobTravelImmobileFilterSystem.h | 6 --- .../MobTravelPlayerOrLocalFilterSystem.h | 6 --- .../systems/MobTravelTeleportedFilterSystem.h | 6 --- .../systems/MobTravelUpdateSpeedsSystem.h | 6 --- src/mc/entity/systems/MonsterAiStepSystem.h | 6 --- src/mc/entity/systems/MountTamingSystem.h | 6 --- src/mc/entity/systems/MoveControlSystem.h | 6 --- src/mc/entity/systems/MoveSpeedCapSystem.h | 6 --- .../MoveTowardsClosestSpaceSystemImpl.h | 6 --- .../systems/MovementInterpolatorSystem.h | 6 --- .../systems/MovementInterpolatorSystemImpl.h | 6 --- .../systems/MovementSoundRequestSystemImpl.h | 6 --- ...vementTickResetTemporaryComponentsSystem.h | 6 --- src/mc/entity/systems/NavigationSystem.h | 6 --- .../entity/systems/NavigationTravelSystem.h | 6 --- .../systems/NoClipOrNoBlockMoveFilterSystem.h | 6 --- src/mc/entity/systems/NoPermanentSkip.h | 8 +--- .../entity/systems/NormalTickFilterSystem.h | 6 --- src/mc/entity/systems/NpcSystem.h | 6 --- src/mc/entity/systems/OfferFlowerTickSystem.h | 6 --- src/mc/entity/systems/OnFireClientSystem.h | 6 --- src/mc/entity/systems/OnFireServerSystem.h | 6 --- src/mc/entity/systems/OnFireSystem.h | 6 --- .../entity/systems/OpenDoorAnnotationSystem.h | 6 --- src/mc/entity/systems/OutOfWorldSystem.h | 6 --- .../systems/ParticleEventRequestSystem.h | 8 +--- .../systems/PassengerFreezeMovementSystem.h | 6 --- src/mc/entity/systems/PassengerTickSystem.h | 6 --- src/mc/entity/systems/PeekSystem.h | 6 --- .../systems/PendingRemovePassengersSystem.h | 6 --- .../entity/systems/PersonaEmoteInputSystem.h | 6 --- .../PlayerBoundingBoxStateUpdateSystem.h | 6 --- .../entity/systems/PlayerInteractionSystem.h | 6 --- src/mc/entity/systems/PlayerMoveSystems.h | 6 --- .../entity/systems/PlayerMovementRateSystem.h | 6 --- .../systems/PlayerMovementStatsEventSystem.h | 6 --- .../systems/PlayerResetMovementSpeedSystem.h | 6 --- src/mc/entity/systems/PlayerTickSystem.h | 6 --- ...lateGlobalPassengersToPositionListSystem.h | 6 --- src/mc/entity/systems/PostAIUpdateSystem.h | 6 --- .../PostEntityDismountGameEventSystem.h | 6 --- .../systems/ProcessPlayerActionPacketSystem.h | 6 --- src/mc/entity/systems/ProjectileSystem.h | 6 --- src/mc/entity/systems/PushActorsSystem.h | 6 --- src/mc/entity/systems/RaidBossSystem.h | 6 --- src/mc/entity/systems/RaidTriggerSystem.h | 6 --- src/mc/entity/systems/RailActivatorSystem.h | 6 --- src/mc/entity/systems/RecipeUnlockingSystem.h | 6 --- .../entity/systems/RemovePassengersSystem.h | 6 --- ...RemovePassengersTooLargeForVehicleSystem.h | 6 --- .../RemovePassengersWithoutSeatSystem.h | 6 --- .../systems/RenderingRidingOffsetSystem.h | 6 --- src/mc/entity/systems/ResetActionStopSystem.h | 6 --- .../systems/ResetFrictionModifierSystem.h | 6 --- .../systems/ResetJumpRidingScaleSystem.h | 6 --- .../ResetMoveDirectionJumpPendingSystem.h | 6 --- .../entity/systems/ResetPositionModeSystem.h | 6 --- .../systems/RotateAndSetVelocitySystem.h | 6 --- .../systems/SaveSurroundingChunksSystem.h | 6 --- .../entity/systems/ScaffoldingIntentSystem.h | 6 --- src/mc/entity/systems/SchedulerSystem.h | 6 --- .../SendLinkPacketOfPassengersSystem.h | 6 --- src/mc/entity/systems/SendPacketsSystem.h | 6 --- .../systems/SendPassengerJumpPacketSystem.h | 6 --- .../SendPlayerAuthInputReceivedEventSystem.h | 6 --- .../systems/SendPlayerInputPacketSystem.h | 8 +--- src/mc/entity/systems/SensingSystem.h | 6 --- src/mc/entity/systems/ServerAnimationSystem.h | 6 --- .../systems/ServerMoveInputHandlerSystem.h | 6 --- .../systems/ServerPlayerBroadcastMoveSystem.h | 6 --- .../systems/ServerPlayerFallDamageSystem.h | 6 --- .../systems/ServerPlayerMovementSystem.h | 6 --- .../entity/systems/ServerScriptInputSystem.h | 6 --- .../systems/ServerTripodCameraTickingSystem.h | 6 --- .../entity/systems/SetActorLinkPacketSystem.h | 6 --- .../entity/systems/SetPreviousPosRotSystem.h | 6 --- .../systems/SetPreviousPositionSystem.h | 6 --- .../systems/SetPreviousWalkDistSystem.h | 6 --- src/mc/entity/systems/SheepPreAIStepSystem.h | 6 --- .../entity/systems/ShulkerPostAiStepSystem.h | 6 --- .../systems/SimulatedPlayerPostAIStepSystem.h | 6 --- .../systems/SimulatedPlayerPreAIStepSystem.h | 6 --- .../entity/systems/SlimePreNormalTickSystem.h | 6 --- src/mc/entity/systems/SneakingSystem.h | 6 --- .../entity/systems/SoulSpeedAttributeSystem.h | 6 --- src/mc/entity/systems/SoundEventSystemImpl.h | 6 --- src/mc/entity/systems/SpawnActorSystem.h | 6 --- src/mc/entity/systems/SquidPreAiStepSystem.h | 6 --- ...andingVehiclePostPositionPassengerSystem.h | 6 --- .../entity/systems/StartGlidingActionSystem.h | 6 --- .../entity/systems/StartGlidingIntentSystem.h | 6 --- .../entity/systems/StopGlidingActionSystem.h | 6 --- .../entity/systems/StopGlidingIntentSystem.h | 6 --- .../StoreAbilitiesForPlayerInputSystem.h | 6 --- .../systems/StorePreviousRideStatsSystem.h | 6 --- src/mc/entity/systems/SwimControlSystem.h | 6 --- src/mc/entity/systems/SwimControlSystemImpl.h | 6 --- src/mc/entity/systems/SystemCategory.h | 8 +--- src/mc/entity/systems/TargetNearbySystem.h | 6 --- .../systems/TeleportInterpolatorResetSystem.h | 6 --- .../systems/TeleportPositionModeEventSystem.h | 6 --- src/mc/entity/systems/TeleportSystem.h | 6 --- .../systems/ThrownTridentNormalTickSystem.h | 6 --- src/mc/entity/systems/TimerSystem.h | 6 --- src/mc/entity/systems/TradeableSystem.h | 6 --- src/mc/entity/systems/TrailSystem.h | 6 --- src/mc/entity/systems/TransformationSystem.h | 6 --- .../entity/systems/TravelMoveRequestSystem.h | 6 --- .../entity/systems/TravelTypeSensingSystem.h | 6 --- src/mc/entity/systems/TriggerJumpSystem.h | 6 --- .../systems/TripodCameraTakePictureSystem.h | 6 --- src/mc/entity/systems/TryExitVehicleSystem.h | 6 --- .../entity/systems/UnderWaterSensingSystem.h | 6 --- src/mc/entity/systems/UpdateAISystem.h | 6 --- .../entity/systems/UpdateAttributesSystem.h | 6 --- .../entity/systems/UpdateBoundingBoxSystem.h | 6 --- src/mc/entity/systems/UpdateRenderPosSystem.h | 6 --- .../systems/UpdateServerPlayerInputSystem.h | 6 --- .../systems/UpdateWaterStateRequestSystem.h | 6 --- src/mc/entity/systems/VRBobControlSystem.h | 6 --- src/mc/entity/systems/VRFlyTravelSystem.h | 6 --- .../ValidateClientPlayerActionSystem.h | 6 --- .../systems/VariableMaxAutoStepSystem.h | 6 --- .../VehicleClientPositionPassengerSystem.h | 6 --- .../systems/VehicleInputSwitchRequestSystem.h | 6 --- .../VehicleServerMolangSeatPositionSystem.h | 6 --- .../VehicleServerPositionPassengerSystem.h | 6 --- .../systems/VehicleServerSeatPositionSystem.h | 6 --- .../entity/systems/VerticalCollisionSystem.h | 6 --- .../entity/systems/VibrationListenerSystem.h | 6 --- .../systems/VillagerV2PreTravelSystem.h | 6 --- .../entity/systems/WardenSpawnTrackerSystem.h | 6 --- .../systems/WaterAnimalPreAIStepSystem.h | 6 --- src/mc/entity/systems/WaterMoveSystem.h | 6 --- src/mc/entity/systems/WaterSinkInputSystem.h | 6 --- src/mc/entity/systems/WaterTravelSystem.h | 6 --- src/mc/entity/systems/WitchPreAIStepSystem.h | 6 --- .../systems/WitherBossPreAIStepSystem.h | 6 --- .../systems/agent/AgentAnimationSystem.h | 6 --- .../BlockCollisionResolutionVectorComponent.h | 8 +--- .../CameraAimAssistCachePositionDataSystem.h | 6 --- .../systems/client_rewind/AccumulateSystem.h | 6 --- .../systems/client_rewind/ApplySystem.h | 6 --- .../systems/client_rewind/DiscardSystem.h | 6 --- .../systems/client_rewind/PublishSystem.h | 6 --- .../entity/systems/events/TextboxTextSystem.h | 6 --- ...kEquippableMobForUpgradeToBodySlotSystem.h | 6 --- .../MarkWolfForUpgradeToBodySlotSystem.h | 6 --- ...reventMobEjectionFromLegacyVehicleSystem.h | 6 --- .../initialization/UpgradeToBodySlotSystem.h | 6 --- .../JumpFromGroundSystem.h | 6 --- .../systems/move_collision_system/System.h | 6 --- .../LocalPlayerFilterAutoJumpInternal.h | 6 --- .../SystemImpl.h | 6 --- .../entity/utilities/ExternalDataInterface.h | 6 --- .../utilities/GetCollisionShapeEntityProxy.h | 8 +--- ...erpolatedRidingPositionCalculationHelper.h | 6 --- .../utilities/PositionPassengerUtility.h | 6 --- src/mc/entity/utilities/RailMovementUtility.h | 6 --- .../entity/utilities/SeatDescriptionUtility.h | 6 --- src/mc/entity/utilities/SpatialQueryUtility.h | 6 --- .../UpdateEntityAfterFallOnEntityProxyBase.h | 6 --- .../ActorDataControllingSeatIndexOperations.h | 8 +--- .../ActorDataJumpDurationOperations.h | 8 +--- .../ActorDataSeatOffsetOperations.h | 8 +--- .../actor_data/ActorDataSimpleOperations.h | 8 +--- .../actor_data/ComponentOperationsCommon.h | 8 +--- src/mc/events/IConnectionEventing.h | 6 --- src/mc/events/IEventListener.h | 6 --- src/mc/events/IMinecraftEventing.h | 6 --- src/mc/events/IPackTelemetry.h | 6 --- src/mc/events/IScreenChangedEventing.h | 6 --- src/mc/events/IUIEventTelemetry.h | 6 --- src/mc/events/OneDSEventHelper.h | 5 -- src/mc/events/PlayStreamEventListener.h | 6 --- .../TextProcessingEventOriginEnumHasher.h | 8 +--- src/mc/events/XboxLiveTelemetry.h | 6 --- src/mc/external/absl/AnyInvocable.h | 8 +--- src/mc/external/absl/ConversionConstruct.h | 8 +--- src/mc/external/absl/InlinedVector.h | 8 +--- src/mc/external/bgfx/Encoder.h | 8 +--- src/mc/external/cereal/Schema.h | 8 +--- src/mc/external/cereal/StringViewHash.h | 8 +--- .../cricket/ActiveIceControllerFactoryArgs.h | 6 --- .../ActiveIceControllerFactoryInterface.h | 8 +--- src/mc/external/cricket/AllocationSequence.h | 6 --- src/mc/external/cricket/AsyncStunTCPSocket.h | 6 --- .../cricket/AudioContentDescription.h | 6 --- .../cricket/AudioReceiverParameters.h | 6 --- src/mc/external/cricket/AudioSource.h | 8 +--- src/mc/external/cricket/BaseChannel.h | 6 --- src/mc/external/cricket/BasicIceController.h | 6 --- src/mc/external/cricket/BasicPortAllocator.h | 6 --- .../cricket/BasicPortAllocatorSession.h | 14 +----- .../external/cricket/CandidatePairInterface.h | 6 --- src/mc/external/cricket/ChannelInterface.h | 8 +--- src/mc/external/cricket/Connection.h | 6 --- src/mc/external/cricket/CreateRelayPortArgs.h | 6 --- src/mc/external/cricket/DtlsTransport.h | 6 --- .../external/cricket/DtlsTransportInternal.h | 5 -- src/mc/external/cricket/IceAgentInterface.h | 8 +--- src/mc/external/cricket/IceConfig.h | 5 -- .../cricket/IceControllerFactoryArgs.h | 6 --- .../cricket/IceControllerFactoryInterface.h | 8 +--- .../external/cricket/IceCredentialsIterator.h | 6 --- src/mc/external/cricket/IceMessage.h | 6 --- .../external/cricket/IceTransportInternal.h | 5 -- src/mc/external/cricket/IceTransportStats.h | 5 -- src/mc/external/cricket/JsepTransport.h | 6 --- .../cricket/JsepTransportDescription.h | 5 -- .../cricket/MediaChannelNetworkInterface.h | 6 --- .../cricket/MediaDescriptionOptions.h | 5 -- .../external/cricket/MediaEngineInterface.h | 6 --- .../cricket/MediaReceiveChannelInterface.h | 6 --- .../cricket/MediaSendChannelInterface.h | 6 --- .../cricket/MediaSessionDescriptionFactory.h | 12 ----- src/mc/external/cricket/MediaSessionOptions.h | 4 -- src/mc/external/cricket/P2PTransportChannel.h | 12 ----- src/mc/external/cricket/PingResult.h | 8 +--- src/mc/external/cricket/PortConfiguration.h | 6 --- src/mc/external/cricket/ProxyConnection.h | 6 --- .../cricket/RelayPortFactoryInterface.h | 8 +--- src/mc/external/cricket/RemoteCandidate.h | 6 --- src/mc/external/cricket/RtcpMuxFilter.h | 5 -- .../RtpHeaderExtensionQueryInterface.h | 6 --- .../cricket/RtpMediaContentDescription.h | 6 --- .../external/cricket/SctpTransportFactory.h | 6 --- .../external/cricket/SctpTransportInternal.h | 8 +--- src/mc/external/cricket/SenderOptions.h | 5 -- src/mc/external/cricket/SrtpSession.h | 6 --- .../external/cricket/StreamInterfaceChannel.h | 6 --- src/mc/external/cricket/StunBindingRequest.h | 6 --- src/mc/external/cricket/StunDictionaryView.h | 5 -- .../external/cricket/StunDictionaryWriter.h | 6 --- src/mc/external/cricket/StunPort.h | 6 --- .../cricket/StunXorAddressAttribute.h | 6 --- src/mc/external/cricket/SwitchResult.h | 5 -- src/mc/external/cricket/TCPConnection.h | 6 --- src/mc/external/cricket/TCPPort.h | 12 ----- .../external/cricket/TransportChannelStats.h | 4 -- .../cricket/TransportDescriptionFactory.h | 6 --- src/mc/external/cricket/TransportOptions.h | 8 +--- src/mc/external/cricket/TransportStats.h | 6 --- src/mc/external/cricket/TurnAllocateRequest.h | 6 --- .../external/cricket/TurnChannelBindRequest.h | 6 --- .../cricket/TurnCreatePermissionRequest.h | 6 --- src/mc/external/cricket/TurnEntry.h | 6 --- src/mc/external/cricket/TurnPort.h | 6 --- src/mc/external/cricket/TurnRefreshRequest.h | 6 --- src/mc/external/cricket/UDPPort.h | 12 ----- src/mc/external/cricket/UsedPayloadTypes.h | 8 +--- src/mc/external/cricket/VideoChannel.h | 6 --- .../cricket/VideoContentDescription.h | 6 --- .../external/cricket/VideoEngineInterface.h | 6 --- src/mc/external/cricket/VideoFormat.h | 8 +--- .../VideoMediaReceiveChannelInterface.h | 6 --- .../cricket/VideoMediaSendChannelInterface.h | 6 --- .../cricket/VideoReceiverParameters.h | 6 --- src/mc/external/cricket/VoiceChannel.h | 6 --- .../external/cricket/VoiceEngineInterface.h | 6 --- .../VoiceMediaReceiveChannelInterface.h | 6 --- .../cricket/VoiceMediaSendChannelInterface.h | 6 --- .../cricket/WrappingActiveIceController.h | 6 --- src/mc/external/dcsctp/AbortChunk.h | 6 --- src/mc/external/dcsctp/AnyDataChunk.h | 6 --- src/mc/external/dcsctp/AnyForwardTsnChunk.h | 14 +----- src/mc/external/dcsctp/CallbackDeferrer.h | 24 ---------- src/mc/external/dcsctp/Capabilities.h | 8 +--- src/mc/external/dcsctp/Chunk.h | 8 +--- src/mc/external/dcsctp/ChunkValidators.h | 6 --- src/mc/external/dcsctp/CommonHeader.h | 8 +--- src/mc/external/dcsctp/Context.h | 8 +--- src/mc/external/dcsctp/CookieAckChunk.h | 6 --- src/mc/external/dcsctp/CookieEchoChunk.h | 6 --- .../CookieReceivedWhileShuttingDownCause.h | 6 --- src/mc/external/dcsctp/Data.h | 6 --- src/mc/external/dcsctp/DataChunk.h | 6 --- src/mc/external/dcsctp/DataTracker.h | 12 ----- src/mc/external/dcsctp/DcSctpMessage.h | 6 --- src/mc/external/dcsctp/DcSctpOptions.h | 8 +--- src/mc/external/dcsctp/DcSctpSocket.h | 6 --- .../external/dcsctp/DcSctpSocketCallbacks.h | 8 +--- src/mc/external/dcsctp/DcSctpSocketFactory.h | 8 +--- .../dcsctp/DcSctpSocketHandoverState.h | 20 +------- src/mc/external/dcsctp/DurationMs.h | 6 --- src/mc/external/dcsctp/ErrorChunk.h | 6 --- src/mc/external/dcsctp/FSNTag.h | 8 +--- src/mc/external/dcsctp/ForwardTsnChunk.h | 6 --- .../dcsctp/ForwardTsnSupportedParameter.h | 6 --- .../external/dcsctp/HandoverReadinessStatus.h | 8 +--- src/mc/external/dcsctp/HeartbeatAckChunk.h | 6 --- src/mc/external/dcsctp/HeartbeatHandler.h | 6 --- src/mc/external/dcsctp/HeartbeatInfo.h | 6 --- .../external/dcsctp/HeartbeatInfoParameter.h | 6 --- .../external/dcsctp/HeartbeatRequestChunk.h | 6 --- src/mc/external/dcsctp/IDataChunk.h | 6 --- src/mc/external/dcsctp/IForwardTsnChunk.h | 6 --- src/mc/external/dcsctp/ImmediateAckFlagTag.h | 8 +--- .../dcsctp/IncomingSSNResetRequestParameter.h | 6 --- src/mc/external/dcsctp/InitAckChunk.h | 6 --- src/mc/external/dcsctp/InitChunk.h | 6 --- .../dcsctp/InterleavedReassemblyStreams.h | 20 +------- .../dcsctp/InvalidMandatoryParameterCause.h | 6 --- .../dcsctp/InvalidStreamIdentifierCause.h | 6 --- src/mc/external/dcsctp/IsBeginningTag.h | 8 +--- src/mc/external/dcsctp/IsEndTag.h | 8 +--- src/mc/external/dcsctp/IsUnorderedTag.h | 8 +--- src/mc/external/dcsctp/LifecycleId.h | 8 +--- src/mc/external/dcsctp/MIDTag.h | 8 +--- src/mc/external/dcsctp/MaxRetransmits.h | 8 +--- .../dcsctp/MissingMandatoryParameterCause.h | 6 --- src/mc/external/dcsctp/NoUserDataCause.h | 6 --- .../external/dcsctp/OutOfResourceErrorCause.h | 6 --- src/mc/external/dcsctp/OutgoingMessageIdTag.h | 8 +--- .../dcsctp/OutgoingSSNResetRequestParameter.h | 6 --- src/mc/external/dcsctp/OutstandingData.h | 18 -------- src/mc/external/dcsctp/PPIDTag.h | 8 +--- src/mc/external/dcsctp/PacketObserver.h | 8 +--- src/mc/external/dcsctp/PacketSender.h | 6 --- src/mc/external/dcsctp/Parameter.h | 8 +--- src/mc/external/dcsctp/ParameterDescriptor.h | 8 +--- src/mc/external/dcsctp/Parameters.h | 12 ----- .../external/dcsctp/ProtocolViolationCause.h | 6 --- src/mc/external/dcsctp/RRSendQueue.h | 32 +------------ src/mc/external/dcsctp/ReConfigChunk.h | 6 --- src/mc/external/dcsctp/ReassemblyQueue.h | 6 --- src/mc/external/dcsctp/ReconfigRequestSNTag.h | 8 +--- .../dcsctp/ReconfigurationResponseParameter.h | 6 --- ...tartOfAnAssociationWithNewAddressesCause.h | 6 --- .../dcsctp/RetransmissionErrorCounter.h | 6 --- src/mc/external/dcsctp/RetransmissionQueue.h | 6 --- .../external/dcsctp/RetransmissionTimeout.h | 6 --- src/mc/external/dcsctp/SSNTag.h | 8 +--- src/mc/external/dcsctp/SackChunk.h | 14 +----- src/mc/external/dcsctp/SctpPacket.h | 20 +------- src/mc/external/dcsctp/SendOptions.h | 8 +--- src/mc/external/dcsctp/SendQueue.h | 12 ----- src/mc/external/dcsctp/ShutdownAckChunk.h | 6 --- src/mc/external/dcsctp/ShutdownChunk.h | 6 --- .../external/dcsctp/ShutdownCompleteChunk.h | 6 --- .../external/dcsctp/StaleCookieErrorCause.h | 6 --- src/mc/external/dcsctp/StateCookie.h | 6 --- src/mc/external/dcsctp/StateCookieParameter.h | 6 --- src/mc/external/dcsctp/StreamIDTag.h | 8 +--- src/mc/external/dcsctp/StreamPriorityTag.h | 8 +--- src/mc/external/dcsctp/StreamResetHandler.h | 6 --- src/mc/external/dcsctp/StreamScheduler.h | 20 +------- .../dcsctp/SupportedExtensionsParameter.h | 6 --- src/mc/external/dcsctp/TSNTag.h | 8 +--- .../external/dcsctp/TaskQueueTimeoutFactory.h | 12 ----- .../external/dcsctp/TextPcapPacketObserver.h | 6 --- src/mc/external/dcsctp/TieTagTag.h | 8 +--- src/mc/external/dcsctp/TimeMs.h | 8 +--- src/mc/external/dcsctp/Timeout.h | 8 +--- src/mc/external/dcsctp/TimeoutTag.h | 8 +--- src/mc/external/dcsctp/Timer.h | 6 --- src/mc/external/dcsctp/TimerGenerationTag.h | 8 +--- src/mc/external/dcsctp/TimerIDTag.h | 8 +--- src/mc/external/dcsctp/TimerManager.h | 6 --- src/mc/external/dcsctp/TimerOptions.h | 8 +--- .../dcsctp/TraditionalReassemblyStreams.h | 24 ---------- .../dcsctp/TransmissionControlBlock.h | 6 --- .../dcsctp/UnrecognizedChunkTypeCause.h | 6 --- .../dcsctp/UnrecognizedParametersCause.h | 6 --- .../dcsctp/UnresolvableAddressCause.h | 6 --- .../external/dcsctp/UnwrappedSequenceNumber.h | 8 +--- .../external/dcsctp/UserInitiatedAbortCause.h | 6 --- src/mc/external/dcsctp/VerificationTagTag.h | 8 +--- .../ZeroChecksumAcceptableChunkParameter.h | 6 --- src/mc/external/lib_http_client/HC_CALL.h | 6 --- .../external/lib_http_client/HC_PERFORM_ENV.h | 6 --- .../lib_http_client/HC_WEBSOCKET_OBSERVER.h | 6 --- .../external/lib_http_client/HeaderCompare.h | 6 --- .../lib_http_client/HttpPerformInfo.h | 8 +--- src/mc/external/lib_http_client/Uri.h | 4 -- src/mc/external/lib_http_client/WebSocket.h | 12 ----- .../lib_http_client/WebSocketPerformInfo.h | 8 +--- .../lib_http_client/WinHttpCallbackContext.h | 8 +--- .../lib_http_client/WinHttpConnection.h | 14 +----- .../lib_http_client/WinHttpProvider.h | 6 --- .../lib_http_client/WinHttpWebSocketExports.h | 8 +--- .../XPlatSecurityInformation.h | 8 +--- .../lib_http_client/http_alloc_deleter.h | 8 +--- src/mc/external/lib_http_client/http_memory.h | 6 --- .../lib_http_client/http_memory_buffer.h | 6 --- .../http_retry_after_api_state.h | 8 +--- .../external/lib_http_client/http_singleton.h | 6 --- .../lib_http_client/http_stl_allocator.h | 8 +--- .../lib_http_client/shared_ptr_cache.h | 6 --- .../websocket_message_buffer.h | 6 --- src/mc/external/lib_http_client/win32_cs.h | 6 --- .../lib_http_client/win32_cs_autolock.h | 6 --- src/mc/external/libsrtp/srtp_auth_t.h | 8 +--- src/mc/external/libsrtp/srtp_event_data_t.h | 8 +--- .../playfab/IPlayFabEmitEventRequest.h | 6 --- .../playfab/IPlayFabEmitEventResponse.h | 6 --- src/mc/external/playfab/IPlayFabEvent.h | 6 --- .../external/playfab/IPlayFabEventPipeline.h | 6 --- src/mc/external/playfab/PlayFabBaseModel.h | 6 --- .../client_models/AddGenericIDResult.h | 6 --- .../AddOrUpdateContactEmailResult.h | 6 --- .../AddSharedGroupMembersResult.h | 6 --- ...DevicePushNotificationRegistrationResult.h | 6 --- .../client_models/AttributeInstallResult.h | 6 --- .../playfab/client_models/EmptyResponse.h | 6 --- .../playfab/client_models/EmptyResult.h | 6 --- .../client_models/GetPlayerSegmentsRequest.h | 6 --- .../playfab/client_models/GetTimeRequest.h | 6 --- .../client_models/GetUserInventoryRequest.h | 6 --- .../client_models/LinkAndroidDeviceIDResult.h | 6 --- .../client_models/LinkCustomIDResult.h | 6 --- .../client_models/LinkFacebookAccountResult.h | 6 --- .../LinkFacebookInstantGamesIdResult.h | 6 --- .../LinkGameCenterAccountResult.h | 6 --- .../client_models/LinkGoogleAccountResult.h | 6 --- .../client_models/LinkIOSDeviceIDResult.h | 6 --- .../LinkKongregateAccountResult.h | 6 --- .../LinkNintendoSwitchDeviceIdResult.h | 6 --- .../client_models/LinkPSNAccountResult.h | 6 --- .../client_models/LinkSteamAccountResult.h | 6 --- .../client_models/LinkTwitchAccountResult.h | 6 --- .../LinkWindowsHelloAccountResponse.h | 6 --- .../client_models/LinkXboxAccountResult.h | 6 --- .../RegisterForIOSPushNotificationResult.h | 6 --- .../client_models/RemoveContactEmailRequest.h | 6 --- .../client_models/RemoveContactEmailResult.h | 6 --- .../client_models/RemoveFriendResult.h | 6 --- .../client_models/RemoveGenericIDResult.h | 6 --- .../RemoveSharedGroupMembersResult.h | 6 --- .../client_models/RestoreIOSPurchasesResult.h | 6 --- .../SendAccountRecoveryEmailResult.h | 6 --- .../client_models/SetFriendTagsResult.h | 6 --- .../client_models/SetPlayerSecretResult.h | 6 --- .../UnlinkAndroidDeviceIDResult.h | 6 --- .../client_models/UnlinkCustomIDResult.h | 6 --- .../UnlinkFacebookAccountRequest.h | 6 --- .../UnlinkFacebookAccountResult.h | 6 --- .../UnlinkFacebookInstantGamesIdResult.h | 6 --- .../UnlinkGameCenterAccountRequest.h | 6 --- .../UnlinkGameCenterAccountResult.h | 6 --- .../UnlinkGoogleAccountRequest.h | 6 --- .../client_models/UnlinkGoogleAccountResult.h | 6 --- .../client_models/UnlinkIOSDeviceIDResult.h | 6 --- .../UnlinkKongregateAccountRequest.h | 6 --- .../UnlinkKongregateAccountResult.h | 6 --- .../UnlinkNintendoSwitchDeviceIdResult.h | 6 --- .../client_models/UnlinkPSNAccountRequest.h | 6 --- .../client_models/UnlinkPSNAccountResult.h | 6 --- .../client_models/UnlinkSteamAccountRequest.h | 6 --- .../client_models/UnlinkSteamAccountResult.h | 6 --- .../UnlinkTwitchAccountRequest.h | 6 --- .../client_models/UnlinkTwitchAccountResult.h | 6 --- .../UnlinkWindowsHelloAccountResponse.h | 6 --- .../client_models/UnlinkXboxAccountResult.h | 6 --- .../UpdateCharacterStatisticsResult.h | 6 --- .../UpdatePlayerStatisticsResult.h | 6 --- .../UpdateSharedGroupDataResult.h | 6 --- .../ValidateAmazonReceiptResult.h | 6 --- .../ValidateGooglePlayPurchaseResult.h | 6 --- .../client_models/ValidateIOSReceiptResult.h | 6 --- .../ValidateWindowsReceiptResult.h | 6 --- .../TelemetryIngestionConfigRequest.h | 6 --- .../externals/astc_codec/base/InplaceT.h | 8 +--- .../externals/astc_codec/base/NulloptT.h | 8 +--- .../decoder/IntegerSequenceDecoder.h | 8 +--- .../frame_renderer/CommandContext.h | 8 +--- .../frame_renderer/RenderContext.h | 8 +--- .../resources/ImageDescription.h | 8 +--- .../resources/ImageDescriptionIdentifier.h | 8 +--- .../render_dragon/resources/TextureUsage.h | 8 +--- .../render_dragon/tasks/GraphicsTasks.h | 24 ++-------- src/mc/external/rtc/AsyncSSLSocket.h | 6 --- src/mc/external/rtc/AsyncTCPSocket.h | 6 --- src/mc/external/rtc/Base64.h | 6 --- src/mc/external/rtc/BitBufferWriter.h | 6 --- src/mc/external/rtc/BufferQueue.h | 6 --- src/mc/external/rtc/BufferT.h | 8 +--- src/mc/external/rtc/BufferedReadAdapter.h | 6 --- src/mc/external/rtc/ByteBufferWriter.h | 5 -- src/mc/external/rtc/ByteBufferWriterT.h | 8 +--- src/mc/external/rtc/ClockInterface.h | 6 --- src/mc/external/rtc/CritScope.h | 6 --- .../rtc/DefaultLocalAddressProvider.h | 6 --- src/mc/external/rtc/Dispatcher.h | 6 --- src/mc/external/rtc/EqOp.h | 8 +--- src/mc/external/rtc/ExpFilter.h | 6 --- src/mc/external/rtc/FinalRefCountedObject.h | 8 +--- src/mc/external/rtc/FunctionView.h | 8 +--- src/mc/external/rtc/GeOp.h | 8 +--- src/mc/external/rtc/GtOp.h | 8 +--- src/mc/external/rtc/LeOp.h | 8 +--- src/mc/external/rtc/LtOp.h | 8 +--- src/mc/external/rtc/MdnsResponderProvider.h | 6 --- src/mc/external/rtc/MessageDigest.h | 8 +--- src/mc/external/rtc/MessageDigestFactory.h | 6 --- src/mc/external/rtc/NetworkBinderInterface.h | 6 --- src/mc/external/rtc/NetworkMonitorFactory.h | 6 --- src/mc/external/rtc/OperationsChain.h | 11 ----- src/mc/external/rtc/PacketSocketFactory.h | 6 --- src/mc/external/rtc/PacketTransportInternal.h | 5 -- src/mc/external/rtc/PlatformThread.h | 6 --- src/mc/external/rtc/ProxyInfo.h | 8 +--- .../rtc/RTCCertificateGeneratorInterface.h | 6 --- src/mc/external/rtc/RaceChecker.h | 5 -- src/mc/external/rtc/RaceCheckerScope.h | 6 --- src/mc/external/rtc/RandomGenerator.h | 6 --- src/mc/external/rtc/RefCountedNonVirtual.h | 8 +--- src/mc/external/rtc/RefCountedObject.h | 8 +--- src/mc/external/rtc/SSLAdapter.h | 6 --- src/mc/external/rtc/SSLAdapterFactory.h | 6 --- src/mc/external/rtc/SSLCertificate.h | 6 --- src/mc/external/rtc/SSLCertificateStats.h | 6 --- src/mc/external/rtc/SSLCertificateVerifier.h | 6 --- src/mc/external/rtc/SSLIdentity.h | 6 --- .../rtc/ScopedAllowBaseSyncPrimitives.h | 8 +--- .../ScopedAllowBaseSyncPrimitivesForTesting.h | 8 +--- src/mc/external/rtc/ScopedYieldPolicy.h | 6 --- src/mc/external/rtc/SocketDispatcher.h | 6 --- src/mc/external/rtc/SocketFactory.h | 6 --- src/mc/external/rtc/ThreadAttributes.h | 8 +--- src/mc/external/rtc/VideoBroadcaster.h | 5 -- src/mc/external/rtc/VideoSinkInterface.h | 8 +--- src/mc/external/rtc/VideoSourceBase.h | 11 ----- src/mc/external/rtc/VideoSourceBaseGuarded.h | 11 ----- src/mc/external/rtc/VideoSourceInterface.h | 8 +--- src/mc/external/rtc/WeakPtr.h | 8 +--- .../binding_factory/CommonModuleFactory.h | 6 --- .../binding_factory/IModuleBindingFactory.h | 6 --- .../ArgumentBindingBuilderValidator.h | 8 +--- .../binding_type/ClassBindingBuilder.h | 8 +--- .../ClassBindingBuilderReadOnly.h | 8 +--- .../binding_type/EnumBindingBuilder.h | 8 +--- .../binding_type/EqualPropertyBinding.h | 8 +--- .../binding_type/ErrorBindingBuilder.h | 8 +--- .../binding_type/HashPropertyBinding.h | 8 +--- .../binding_type/InterfaceBindingBuilder.h | 8 +--- .../scripting/lifetime_registry/ClosureType.h | 8 +--- .../lifetime_registry/DataBufferHandleType.h | 8 +--- .../scripting/lifetime_registry/FutureType.h | 8 +--- .../lifetime_registry/GeneratorIteratorType.h | 8 +--- .../lifetime_registry/GeneratorType.h | 8 +--- .../ILifetimeScopeListener.h | 6 --- .../ObjectRegistryUtilities.h | 8 +--- .../scripting/lifetime_registry/PromiseType.h | 8 +--- .../StrongTypedObjectHandle.h | 8 +--- .../lifetime_registry/TypedObjectHandle.h | 8 +--- .../lifetime_registry/WeakFromThisBase.h | 8 +--- .../lifetime_registry/WeakHandleFromThis.h | 8 +--- .../lifetime_registry/WeakTypedObjectHandle.h | 8 +--- .../quickjs/bindings/ClassRegistry.h | 8 +--- .../scripting/reflection/IPropertyGetter.h | 6 --- .../external/scripting/runtime/EngineError.h | 5 -- .../scripting/runtime/IDebuggerController.h | 6 --- .../scripting/runtime/IDebuggerTransport.h | 6 --- .../scripting/runtime/IDependencyLoader.h | 6 --- src/mc/external/scripting/runtime/IPayload.h | 6 --- src/mc/external/scripting/runtime/IPrinter.h | 6 --- src/mc/external/scripting/runtime/IRuntime.h | 6 --- src/mc/external/scripting/runtime/Result.h | 8 +--- .../scripting/runtime/Result_deprecated.h | 8 +--- .../scripting/runtime/RuntimeConditionError.h | 6 --- .../scripting/runtime/StringBasedRuntime.h | 6 --- .../scripting/script_engine/Closure.h | 8 +--- .../scripting/script_engine/Generator.h | 8 +--- .../scripting/script_engine/IObjectFactory.h | 6 --- .../script_engine/IObjectInspector.h | 6 --- .../scripting/script_engine/Promise.h | 8 +--- src/mc/external/sigslot/has_slots.h | 8 +--- .../external/sigslot/multi_threaded_global.h | 8 +--- src/mc/external/sigslot/single_threaded.h | 8 +--- src/mc/external/splitfat/ConfigParamsBase.h | 6 --- .../splitfat/ConfigurationParameters.h | 6 --- src/mc/external/splitfat/FileStorageBase.h | 6 --- src/mc/external/splitfat/utils/CRC16.h | 6 --- src/mc/external/splitfat/utils/CRC24.h | 6 --- src/mc/external/splitfat/utils/CRC32.h | 6 --- .../webrtc/AbsoluteCaptureTimeExtension.h | 6 --- .../webrtc/AbsoluteCaptureTimeInterpolator.h | 6 --- .../webrtc/AbsoluteCaptureTimeSender.h | 6 --- src/mc/external/webrtc/AbsoluteSendTime.h | 6 --- .../webrtc/AcknowledgedBitrateEstimator.h | 6 --- .../AcknowledgedBitrateEstimatorInterface.h | 6 --- .../webrtc/ActiveDecodeTargetsHelper.h | 6 --- src/mc/external/webrtc/AecDump.h | 8 +--- src/mc/external/webrtc/AimdRateControl.h | 6 --- src/mc/external/webrtc/AlrDetector.h | 6 --- src/mc/external/webrtc/AlrDetectorConfig.h | 6 --- .../external/webrtc/AlrExperimentSettings.h | 6 --- src/mc/external/webrtc/AsyncDnsResolver.h | 5 -- .../webrtc/AsyncDnsResolverFactoryInterface.h | 6 --- .../webrtc/AsyncDnsResolverInterface.h | 6 --- .../external/webrtc/AsyncDnsResolverResult.h | 6 --- src/mc/external/webrtc/AttributeInit.h | 6 --- src/mc/external/webrtc/AudioBuffer.h | 8 +--- src/mc/external/webrtc/AudioDecoder.h | 8 +--- src/mc/external/webrtc/AudioDecoderFactory.h | 6 --- src/mc/external/webrtc/AudioDeviceModule.h | 6 --- src/mc/external/webrtc/AudioEncoder.h | 6 --- src/mc/external/webrtc/AudioEncoderFactory.h | 6 --- src/mc/external/webrtc/AudioFrameProcessor.h | 6 --- src/mc/external/webrtc/AudioLevelExtension.h | 8 +--- src/mc/external/webrtc/AudioMixer.h | 12 ----- src/mc/external/webrtc/AudioProcessing.h | 6 --- .../external/webrtc/AudioProcessorInterface.h | 12 ----- .../webrtc/AudioReceiveStreamInterface.h | 6 --- src/mc/external/webrtc/AudioRtpReceiver.h | 6 --- src/mc/external/webrtc/AudioRtpSender.h | 6 --- src/mc/external/webrtc/AudioSendStream.h | 6 --- src/mc/external/webrtc/AudioSender.h | 6 --- src/mc/external/webrtc/AudioSinkInterface.h | 6 --- src/mc/external/webrtc/AudioSourceInterface.h | 12 ----- src/mc/external/webrtc/AudioState.h | 6 --- src/mc/external/webrtc/AudioTrack.h | 6 --- src/mc/external/webrtc/AudioTrackInterface.h | 6 --- .../external/webrtc/AudioTrackSinkInterface.h | 6 --- src/mc/external/webrtc/AudioTransport.h | 6 --- .../external/webrtc/BaseRtpStringExtension.h | 6 --- .../webrtc/BasicRegatheringController.h | 14 +----- src/mc/external/webrtc/BiplanarYuv8Buffer.h | 6 --- src/mc/external/webrtc/BiplanarYuvBuffer.h | 6 --- src/mc/external/webrtc/BitrateEstimator.h | 6 --- src/mc/external/webrtc/BitrateProber.h | 14 +----- src/mc/external/webrtc/BitrateProberConfig.h | 6 --- .../webrtc/BitrateStatisticsObserver.h | 6 --- src/mc/external/webrtc/BitrateTracker.h | 6 --- src/mc/external/webrtc/BundleManager.h | 6 --- .../webrtc/BweSeparateAudioPacketsSettings.h | 6 --- src/mc/external/webrtc/Bye.h | 5 -- src/mc/external/webrtc/Call.h | 6 --- src/mc/external/webrtc/ChainDiffCalculator.h | 6 --- src/mc/external/webrtc/Clock.h | 6 --- src/mc/external/webrtc/ColorSpaceExtension.h | 6 --- src/mc/external/webrtc/CommonHeader.h | 6 --- .../webrtc/CongestionControlHandler.h | 6 --- .../external/webrtc/CongestionWindowConfig.h | 6 --- .../CongestionWindowPushbackController.h | 6 --- .../webrtc/CreateSessionDescriptionObserver.h | 6 --- src/mc/external/webrtc/CsrcAudioLevel.h | 8 +--- src/mc/external/webrtc/CustomAudioAnalyzer.h | 6 --- src/mc/external/webrtc/CustomProcessing.h | 6 --- .../external/webrtc/DataChannelController.h | 6 --- src/mc/external/webrtc/DataChannelInterface.h | 6 --- src/mc/external/webrtc/DataChannelObserver.h | 6 --- src/mc/external/webrtc/DataChannelSink.h | 6 --- src/mc/external/webrtc/DataChannelStats.h | 6 --- .../webrtc/DataChannelTransportInterface.h | 8 +--- src/mc/external/webrtc/DataRate.h | 8 +--- src/mc/external/webrtc/DataSize.h | 8 +--- src/mc/external/webrtc/DcSctpTransport.h | 6 --- src/mc/external/webrtc/DecodedImageCallback.h | 6 --- src/mc/external/webrtc/DefaultIceTransport.h | 6 --- src/mc/external/webrtc/DelayBasedBwe.h | 11 ----- src/mc/external/webrtc/DependencyDescriptor.h | 6 --- src/mc/external/webrtc/Dlrr.h | 5 -- src/mc/external/webrtc/DtlsSrtpTransport.h | 6 --- src/mc/external/webrtc/DtlsTransport.h | 6 --- .../external/webrtc/DtlsTransportInterface.h | 6 --- .../webrtc/DtlsTransportObserverInterface.h | 6 --- .../external/webrtc/DtmfProviderInterface.h | 8 +--- src/mc/external/webrtc/DtmfSender.h | 6 --- src/mc/external/webrtc/DtmfSenderInterface.h | 6 --- .../webrtc/DtmfSenderObserverInterface.h | 6 --- src/mc/external/webrtc/EchoControl.h | 6 --- src/mc/external/webrtc/EchoControlFactory.h | 6 --- src/mc/external/webrtc/EchoDetector.h | 6 --- .../webrtc/EncodedImageBufferInterface.h | 6 --- src/mc/external/webrtc/EncodedImageCallback.h | 6 --- .../webrtc/EncoderSwitchRequestCallback.h | 6 --- src/mc/external/webrtc/EnvironmentFactory.h | 6 --- src/mc/external/webrtc/EventTracer.h | 6 --- src/mc/external/webrtc/ExtendedReports.h | 5 -- src/mc/external/webrtc/FecController.h | 6 --- .../webrtc/FecControllerFactoryInterface.h | 6 --- .../external/webrtc/FecControllerOverride.h | 6 --- src/mc/external/webrtc/FecHeaderReader.h | 6 --- src/mc/external/webrtc/FecHeaderWriter.h | 6 --- src/mc/external/webrtc/FieldTrialFlag.h | 6 --- src/mc/external/webrtc/FieldTrialListBase.h | 6 --- .../webrtc/FieldTrialParameterInterface.h | 6 --- src/mc/external/webrtc/FieldTrialsView.h | 6 --- src/mc/external/webrtc/Fir.h | 5 -- .../external/webrtc/Flexfec03HeaderReader.h | 5 -- .../external/webrtc/Flexfec03HeaderWriter.h | 5 -- src/mc/external/webrtc/FlexfecReceiveStream.h | 6 --- src/mc/external/webrtc/FlexfecSender.h | 6 --- .../external/webrtc/ForwardErrorCorrection.h | 23 ---------- src/mc/external/webrtc/FrameCountObserver.h | 6 --- .../external/webrtc/FrameDecryptorInterface.h | 6 --- .../webrtc/FrameDependenciesCalculator.h | 6 --- .../external/webrtc/FrameEncryptorInterface.h | 6 --- .../webrtc/FrameTransformerInterface.h | 6 --- src/mc/external/webrtc/Frequency.h | 8 +--- src/mc/external/webrtc/FrequencyTracker.h | 6 --- src/mc/external/webrtc/GetFirst.h | 8 +--- src/mc/external/webrtc/GoogCcConfig.h | 6 --- .../external/webrtc/GoogCcNetworkController.h | 6 --- .../webrtc/GoogCcNetworkControllerFactory.h | 6 --- src/mc/external/webrtc/H264ProfileLevelId.h | 8 +--- src/mc/external/webrtc/Histogram.h | 8 +--- src/mc/external/webrtc/I010BufferInterface.h | 6 --- src/mc/external/webrtc/I210BufferInterface.h | 6 --- src/mc/external/webrtc/I410BufferInterface.h | 6 --- src/mc/external/webrtc/I420ABufferInterface.h | 6 --- src/mc/external/webrtc/I420Buffer.h | 6 --- src/mc/external/webrtc/I420BufferInterface.h | 6 --- src/mc/external/webrtc/I422BufferInterface.h | 6 --- src/mc/external/webrtc/I444BufferInterface.h | 6 --- .../external/webrtc/IceCandidateCollection.h | 6 --- .../external/webrtc/IceCandidateInterface.h | 6 --- .../external/webrtc/IceTransportInterface.h | 8 +--- .../external/webrtc/IceTransportWithPointer.h | 6 --- src/mc/external/webrtc/InFlightBytesTracker.h | 12 ----- .../webrtc/InbandComfortNoiseExtension.h | 8 +--- src/mc/external/webrtc/InterArrivalDelta.h | 6 --- .../external/webrtc/InternalDataChannelInit.h | 6 --- src/mc/external/webrtc/IntervalBudget.h | 6 --- src/mc/external/webrtc/JitterBufferDelay.h | 6 --- .../external/webrtc/JsepCandidateCollection.h | 5 -- src/mc/external/webrtc/JsepIceCandidate.h | 6 --- .../external/webrtc/JsepSessionDescription.h | 6 --- .../external/webrtc/JsepTransportCollection.h | 6 --- .../external/webrtc/JsepTransportController.h | 12 ----- src/mc/external/webrtc/LegacyStatsCollector.h | 17 ------- .../webrtc/LegacyStatsCollectorInterface.h | 8 +--- .../external/webrtc/LinkCapacityEstimator.h | 5 -- src/mc/external/webrtc/LinkCapacityTracker.h | 5 -- .../external/webrtc/LocalAudioSinkAdapter.h | 5 -- src/mc/external/webrtc/LocalAudioSource.h | 6 --- src/mc/external/webrtc/Location.h | 8 +--- .../webrtc/LossBasedBandwidthEstimation.h | 6 --- src/mc/external/webrtc/LossBasedBweV2.h | 35 ++------------ .../external/webrtc/LossBasedControlConfig.h | 6 --- src/mc/external/webrtc/LossNotification.h | 5 -- .../external/webrtc/MdnsResponderInterface.h | 6 --- .../webrtc/MediaReceiveStreamInterface.h | 6 --- src/mc/external/webrtc/MediaSourceInterface.h | 6 --- src/mc/external/webrtc/MediaStream.h | 6 --- src/mc/external/webrtc/MediaStreamInterface.h | 6 --- src/mc/external/webrtc/MediaStreamObserver.h | 6 --- .../webrtc/MediaStreamTrackInterface.h | 6 --- src/mc/external/webrtc/MemberParameter.h | 8 +--- src/mc/external/webrtc/Metronome.h | 6 --- src/mc/external/webrtc/ModuleRtpRtcpImpl2.h | 12 ----- src/mc/external/webrtc/NV12BufferInterface.h | 6 --- src/mc/external/webrtc/Nack.h | 5 -- src/mc/external/webrtc/NaluIndex.h | 8 +--- src/mc/external/webrtc/NetEq.h | 6 --- src/mc/external/webrtc/NetEqFactory.h | 6 --- src/mc/external/webrtc/NetworkAvailability.h | 8 +--- .../NetworkControllerFactoryInterface.h | 6 --- .../webrtc/NetworkControllerInterface.h | 8 +--- .../external/webrtc/NetworkLinkRtcpObserver.h | 6 --- .../webrtc/NetworkStateEstimateObserver.h | 6 --- .../external/webrtc/NetworkStateEstimator.h | 6 --- .../external/webrtc/NetworkStatePredictor.h | 6 --- .../NetworkStatePredictorFactoryInterface.h | 6 --- src/mc/external/webrtc/NotifierInterface.h | 6 --- src/mc/external/webrtc/ObserverInterface.h | 6 --- src/mc/external/webrtc/OneTimeEvent.h | 6 --- src/mc/external/webrtc/PacingController.h | 22 +-------- src/mc/external/webrtc/PacketFeedback.h | 8 +--- src/mc/external/webrtc/PacketMaskTable.h | 6 --- src/mc/external/webrtc/PacketQueue.h | 6 --- src/mc/external/webrtc/PacketQueueTTL.h | 8 +--- src/mc/external/webrtc/PacketReceiver.h | 6 --- src/mc/external/webrtc/PacketResult.h | 6 --- src/mc/external/webrtc/PacketRouter.h | 5 -- src/mc/external/webrtc/PacketSequencer.h | 6 --- src/mc/external/webrtc/PeerConnection.h | 14 +----- .../webrtc/PeerConnectionFactoryInterface.h | 6 --- .../external/webrtc/PeerConnectionInterface.h | 6 --- .../external/webrtc/PeerConnectionInternal.h | 8 +--- .../webrtc/PeerConnectionMessageHandler.h | 6 --- .../external/webrtc/PeerConnectionObserver.h | 6 --- .../webrtc/PeerConnectionSdpMethods.h | 8 +--- src/mc/external/webrtc/PlanarYuv16BBuffer.h | 6 --- src/mc/external/webrtc/PlanarYuv8Buffer.h | 6 --- src/mc/external/webrtc/PlanarYuvBuffer.h | 6 --- src/mc/external/webrtc/PlayoutDelayLimits.h | 6 --- src/mc/external/webrtc/Pli.h | 5 -- .../external/webrtc/PrioritizedPacketQueue.h | 18 -------- .../external/webrtc/ProbeBitrateEstimator.h | 6 --- src/mc/external/webrtc/ProbeController.h | 6 --- .../external/webrtc/ProbeControllerConfig.h | 6 --- src/mc/external/webrtc/Psfb.h | 6 --- src/mc/external/webrtc/RTCAudioPlayoutStats.h | 6 --- src/mc/external/webrtc/RTCAudioSourceStats.h | 6 --- src/mc/external/webrtc/RTCCertificateStats.h | 6 --- src/mc/external/webrtc/RTCCodecStats.h | 6 --- src/mc/external/webrtc/RTCDataChannelStats.h | 6 --- src/mc/external/webrtc/RTCErrorOr.h | 8 +--- .../webrtc/RTCIceCandidatePairStats.h | 6 --- src/mc/external/webrtc/RTCIceCandidateStats.h | 5 -- .../webrtc/RTCInboundRtpStreamStats.h | 5 -- .../webrtc/RTCLocalIceCandidateStats.h | 6 --- src/mc/external/webrtc/RTCMediaSourceStats.h | 5 -- .../webrtc/RTCOutboundRtpStreamStats.h | 5 -- src/mc/external/webrtc/RTCPReceiver.h | 38 +-------------- src/mc/external/webrtc/RTCPSender.h | 31 +------------ .../external/webrtc/RTCPeerConnectionStats.h | 6 --- .../webrtc/RTCReceivedRtpStreamStats.h | 6 --- .../webrtc/RTCRemoteIceCandidateStats.h | 6 --- .../webrtc/RTCRemoteInboundRtpStreamStats.h | 6 --- .../webrtc/RTCRemoteOutboundRtpStreamStats.h | 6 --- src/mc/external/webrtc/RTCRtpStreamStats.h | 5 -- .../external/webrtc/RTCSentRtpStreamStats.h | 6 --- src/mc/external/webrtc/RTCStatsCollector.h | 29 ------------ .../webrtc/RTCStatsCollectorCallback.h | 6 --- src/mc/external/webrtc/RTCTransportStats.h | 5 -- src/mc/external/webrtc/RTCVideoSourceStats.h | 6 --- src/mc/external/webrtc/RTPSender.h | 6 --- src/mc/external/webrtc/RTPSenderVideo.h | 12 ----- .../RTPSenderVideoFrameTransformerDelegate.h | 6 --- .../webrtc/RTPVideoFrameSenderInterface.h | 8 +--- src/mc/external/webrtc/Random.h | 6 --- src/mc/external/webrtc/RapidResyncRequest.h | 6 --- src/mc/external/webrtc/RateControlInput.h | 6 --- src/mc/external/webrtc/RateControlSettings.h | 6 --- src/mc/external/webrtc/RateLimiter.h | 6 --- src/mc/external/webrtc/RateStatistics.h | 11 ----- src/mc/external/webrtc/ReceiveStatistics.h | 6 --- .../webrtc/ReceiveStatisticsProvider.h | 6 --- .../external/webrtc/ReceiveStreamInterface.h | 6 --- src/mc/external/webrtc/ReceiveTimeInfo.h | 8 +--- src/mc/external/webrtc/ReceiverReport.h | 5 -- .../external/webrtc/RecordableEncodedFrame.h | 6 --- src/mc/external/webrtc/RefCountInterface.h | 6 --- src/mc/external/webrtc/RelativeUnit.h | 8 +--- src/mc/external/webrtc/Remb.h | 5 -- src/mc/external/webrtc/RemoteAudioSource.h | 6 --- .../webrtc/RemoteEstimateSerializer.h | 6 --- src/mc/external/webrtc/RepairedRtpStreamId.h | 8 +--- src/mc/external/webrtc/RepeatingTaskHandle.h | 6 --- .../external/webrtc/ReportBlockDataObserver.h | 6 --- src/mc/external/webrtc/Resource.h | 8 +--- .../webrtc/RobustThroughputEstimator.h | 6 --- .../RobustThroughputEstimatorSettings.h | 6 --- src/mc/external/webrtc/Rrtr.h | 6 --- src/mc/external/webrtc/RtcEventAlrState.h | 6 --- .../webrtc/RtcEventBweUpdateDelayBased.h | 6 --- .../webrtc/RtcEventBweUpdateLossBased.h | 6 --- .../webrtc/RtcEventDtlsTransportState.h | 6 --- .../webrtc/RtcEventDtlsWritableState.h | 6 --- src/mc/external/webrtc/RtcEventLog.h | 6 --- src/mc/external/webrtc/RtcEventLogNull.h | 6 --- src/mc/external/webrtc/RtcEventLogOutput.h | 6 --- .../webrtc/RtcEventProbeClusterCreated.h | 6 --- .../webrtc/RtcEventProbeResultFailure.h | 6 --- .../webrtc/RtcEventProbeResultSuccess.h | 6 --- src/mc/external/webrtc/RtcEventRouteChange.h | 6 --- .../webrtc/RtcEventRtcpPacketOutgoing.h | 6 --- .../webrtc/RtcEventRtpPacketOutgoing.h | 6 --- .../webrtc/RtcpFeedbackSenderInterface.h | 8 +--- .../external/webrtc/RtcpIntraFrameObserver.h | 6 --- .../webrtc/RtcpLossNotificationObserver.h | 6 --- src/mc/external/webrtc/RtcpNackStats.h | 5 -- .../webrtc/RtcpPacketTypeCounterObserver.h | 6 --- src/mc/external/webrtc/RtcpRttStats.h | 6 --- .../external/webrtc/RtpBitrateConfigurator.h | 6 --- src/mc/external/webrtc/RtpDemuxer.h | 6 --- src/mc/external/webrtc/RtpDemuxerCriteria.h | 6 --- .../webrtc/RtpDependencyDescriptorExtension.h | 6 --- .../webrtc/RtpDependencyDescriptorWriter.h | 14 +----- src/mc/external/webrtc/RtpExtensionSize.h | 8 +--- .../webrtc/RtpGenericFrameDescriptor.h | 5 -- .../RtpGenericFrameDescriptorExtension00.h | 6 --- src/mc/external/webrtc/RtpMid.h | 8 +--- src/mc/external/webrtc/RtpPacketHistory.h | 18 -------- src/mc/external/webrtc/RtpPacketSendInfo.h | 6 --- src/mc/external/webrtc/RtpPacketSender.h | 6 --- .../external/webrtc/RtpPacketSinkInterface.h | 6 --- src/mc/external/webrtc/RtpPacketizer.h | 14 +----- src/mc/external/webrtc/RtpPacketizerAv1.h | 22 +-------- src/mc/external/webrtc/RtpPacketizerGeneric.h | 6 --- src/mc/external/webrtc/RtpPacketizerH264.h | 6 --- src/mc/external/webrtc/RtpPacketizerVp8.h | 6 --- src/mc/external/webrtc/RtpPacketizerVp9.h | 6 --- src/mc/external/webrtc/RtpPayloadParams.h | 5 -- src/mc/external/webrtc/RtpPayloadState.h | 8 +--- src/mc/external/webrtc/RtpReceiverInterface.h | 6 --- src/mc/external/webrtc/RtpReceiverInternal.h | 6 --- .../webrtc/RtpReceiverObserverInterface.h | 6 --- .../webrtc/RtpReceiverProxyWithInternal.h | 8 +--- src/mc/external/webrtc/RtpRtcpInterface.h | 20 +------- src/mc/external/webrtc/RtpSenderBase.h | 14 +----- src/mc/external/webrtc/RtpSenderEgress.h | 18 -------- src/mc/external/webrtc/RtpSenderInfo.h | 6 --- src/mc/external/webrtc/RtpSenderInterface.h | 6 --- src/mc/external/webrtc/RtpSenderInternal.h | 8 +--- .../webrtc/RtpSenderProxyWithInternal.h | 8 +--- src/mc/external/webrtc/RtpSequenceNumberMap.h | 14 +----- src/mc/external/webrtc/RtpState.h | 8 +--- src/mc/external/webrtc/RtpStreamId.h | 8 +--- src/mc/external/webrtc/RtpStreamSender.h | 6 --- src/mc/external/webrtc/RtpTransceiver.h | 6 --- .../external/webrtc/RtpTransceiverInterface.h | 6 --- .../webrtc/RtpTransceiverProxyWithInternal.h | 8 +--- .../external/webrtc/RtpTransmissionManager.h | 6 --- src/mc/external/webrtc/RtpTransport.h | 6 --- .../webrtc/RtpTransportControllerSend.h | 6 --- ...pTransportControllerSendFactoryInterface.h | 6 --- .../RtpTransportControllerSendInterface.h | 6 --- src/mc/external/webrtc/RtpTransportInternal.h | 8 +--- .../RtpVideoLayersAllocationExtension.h | 6 --- src/mc/external/webrtc/RtpVideoSender.h | 6 --- .../external/webrtc/RtpVideoSenderInterface.h | 8 +--- src/mc/external/webrtc/Rtpfb.h | 6 --- src/mc/external/webrtc/RttBasedBackoff.h | 6 --- src/mc/external/webrtc/SampleInfo.h | 6 --- src/mc/external/webrtc/SctpDataChannel.h | 12 ----- .../SctpDataChannelControllerInterface.h | 8 +--- src/mc/external/webrtc/SctpSidAllocator.h | 6 --- src/mc/external/webrtc/SctpTransport.h | 6 --- .../webrtc/SctpTransportFactoryInterface.h | 6 --- .../external/webrtc/SctpTransportInterface.h | 8 +--- src/mc/external/webrtc/Sdes.h | 11 ----- .../external/webrtc/SdpOfferAnswerHandler.h | 24 ---------- src/mc/external/webrtc/SdpStateProvider.h | 8 +--- src/mc/external/webrtc/SendPacketObserver.h | 6 --- .../webrtc/SendSideBandwidthEstimation.h | 6 --- src/mc/external/webrtc/SenderReport.h | 5 -- src/mc/external/webrtc/SequenceChecker.h | 6 --- .../webrtc/SequenceCheckerDoNothing.h | 8 +--- .../webrtc/SessionDescriptionInterface.h | 6 --- .../SetLocalDescriptionObserverInterface.h | 6 --- .../SetRemoteDescriptionObserverInterface.h | 6 --- .../webrtc/SetSessionDescriptionObserver.h | 6 --- .../external/webrtc/SimulcastSdpSerializer.h | 6 --- src/mc/external/webrtc/SrtpTransport.h | 6 --- src/mc/external/webrtc/SsrcInfo.h | 5 -- src/mc/external/webrtc/StatsCollection.h | 5 -- src/mc/external/webrtc/StatsObserver.h | 6 --- src/mc/external/webrtc/StreamCollection.h | 6 --- .../webrtc/StreamCollectionInterface.h | 8 +--- .../webrtc/StreamDataCountersCallback.h | 6 --- .../external/webrtc/StreamFeedbackObserver.h | 6 --- .../external/webrtc/StreamFeedbackProvider.h | 6 --- src/mc/external/webrtc/StreamId.h | 8 +--- src/mc/external/webrtc/StreamStatistician.h | 6 --- src/mc/external/webrtc/StrongAlias.h | 8 +--- .../external/webrtc/StructParametersParser.h | 6 --- src/mc/external/webrtc/TMMBRHelp.h | 6 --- src/mc/external/webrtc/TargetBitrate.h | 6 --- .../webrtc/TargetTransferRateObserver.h | 6 --- src/mc/external/webrtc/TaskQueueBase.h | 14 +----- src/mc/external/webrtc/TaskQueueDeleter.h | 8 +--- src/mc/external/webrtc/TaskQueueFactory.h | 6 --- src/mc/external/webrtc/TaskQueuePacedSender.h | 14 +----- src/mc/external/webrtc/TimeDelta.h | 8 +--- src/mc/external/webrtc/Timestamp.h | 8 +--- src/mc/external/webrtc/TimingFrameInfo.h | 6 --- src/mc/external/webrtc/TmmbItem.h | 6 --- src/mc/external/webrtc/Tmmbn.h | 5 -- src/mc/external/webrtc/Tmmbr.h | 5 -- src/mc/external/webrtc/TraceEndOnScopeClose.h | 6 --- src/mc/external/webrtc/TrackMediaInfoMap.h | 4 -- src/mc/external/webrtc/TransceiverList.h | 6 --- .../external/webrtc/TransceiverStableState.h | 6 --- .../webrtc/TransformableAudioFrameInterface.h | 6 --- .../webrtc/TransformableFrameInterface.h | 6 --- .../webrtc/TransformedFrameCallback.h | 6 --- src/mc/external/webrtc/TransmissionOffset.h | 6 --- src/mc/external/webrtc/Transport.h | 6 --- src/mc/external/webrtc/TransportFeedback.h | 10 ---- .../webrtc/TransportFeedbackAdapter.h | 5 -- .../webrtc/TransportFeedbackDemuxer.h | 5 -- .../external/webrtc/TransportSequenceNumber.h | 6 --- .../webrtc/TransportSequenceNumberV2.h | 8 +--- src/mc/external/webrtc/TrendlineEstimator.h | 6 --- .../webrtc/TrendlineEstimatorSettings.h | 6 --- src/mc/external/webrtc/TurnCustomizer.h | 6 --- src/mc/external/webrtc/UlpfecGenerator.h | 11 ----- src/mc/external/webrtc/UlpfecHeaderReader.h | 5 -- src/mc/external/webrtc/UlpfecHeaderWriter.h | 5 -- src/mc/external/webrtc/UnitBase.h | 8 +--- src/mc/external/webrtc/UsagePattern.h | 6 --- src/mc/external/webrtc/VCMFrameTypeCallback.h | 6 --- .../webrtc/VCMPacketRequestCallback.h | 6 --- .../external/webrtc/VCMProtectionCallback.h | 6 --- src/mc/external/webrtc/VCMReceiveCallback.h | 6 --- .../webrtc/VideoBitrateAllocationObserver.h | 6 --- .../external/webrtc/VideoBitrateAllocator.h | 6 --- .../webrtc/VideoBitrateAllocatorFactory.h | 6 --- .../webrtc/VideoContentTypeExtension.h | 6 --- src/mc/external/webrtc/VideoDecoder.h | 6 --- src/mc/external/webrtc/VideoDecoderFactory.h | 6 --- src/mc/external/webrtc/VideoEncoder.h | 14 +----- src/mc/external/webrtc/VideoEncoderConfig.h | 12 ----- src/mc/external/webrtc/VideoEncoderFactory.h | 12 ----- src/mc/external/webrtc/VideoFecGenerator.h | 8 +--- src/mc/external/webrtc/VideoFrameBuffer.h | 6 --- .../webrtc/VideoFrameTrackingIdExtension.h | 6 --- .../external/webrtc/VideoLayersAllocation.h | 10 ---- src/mc/external/webrtc/VideoOrientation.h | 6 --- .../external/webrtc/VideoRateControlConfig.h | 6 --- .../webrtc/VideoReceiveStreamInterface.h | 6 --- src/mc/external/webrtc/VideoRtpReceiver.h | 6 --- src/mc/external/webrtc/VideoRtpSender.h | 6 --- src/mc/external/webrtc/VideoRtpTrackSource.h | 14 +----- src/mc/external/webrtc/VideoSendStream.h | 6 --- src/mc/external/webrtc/VideoStream.h | 8 +--- src/mc/external/webrtc/VideoTimingExtension.h | 6 --- src/mc/external/webrtc/VideoTrack.h | 6 --- src/mc/external/webrtc/VideoTrackInterface.h | 6 --- src/mc/external/webrtc/VideoTrackSource.h | 6 --- .../webrtc/VideoTrackSourceInterface.h | 6 --- .../VideoTrackSourceProxyWithInternal.h | 8 +--- .../webrtc/WebRtcSessionDescriptionFactory.h | 12 ----- src/mc/external/webrtc/flat_map.h | 8 +--- src/mc/external/webrtc/flat_tree.h | 8 +--- src/mc/external/webrtc/identity.h | 8 +--- src/mc/external/webrtc/scoped_refptr.h | 8 +--- src/mc/external/webrtc/sorted_unique_t.h | 8 +--- src/mc/external/webrtc/webrtc.h | 8 ++-- .../gameplayhandlers/ActorGameplayHandler.h | 6 --- .../gameplayhandlers/BlockGameplayHandler.h | 6 --- .../ClientInstanceEventHandler.h | 6 --- .../gameplayhandlers/EventHandlerDispatcher.h | 8 +--- src/mc/gameplayhandlers/GameplayHandler.h | 6 --- .../gameplayhandlers/GameplayHandlerResult.h | 8 +--- src/mc/gameplayhandlers/ItemGameplayHandler.h | 6 --- .../gameplayhandlers/LevelGameplayHandler.h | 6 --- .../gameplayhandlers/PlayerGameplayHandler.h | 6 --- .../gameplayhandlers/ScriptingEventHandler.h | 6 --- .../ServerInstanceEventHandler.h | 6 --- .../ServerNetworkEventHandler.h | 6 --- src/mc/gametest/ConsoleGameTestListener.h | 6 --- .../gametest/EmptyGameTestFunctionContext.h | 6 --- src/mc/gametest/GameTestRunner.h | 6 --- src/mc/gametest/IGameTestHelperProvider.h | 6 --- .../MinecraftGameTestHelperProvider.h | 6 --- src/mc/gametest/NullGameTestHelper.h | 6 --- .../framework/IGameTestFunctionContext.h | 6 --- .../framework/IGameTestFunctionRunResult.h | 6 --- src/mc/gametest/framework/IGameTestListener.h | 6 --- .../gametest/framework/IGameTestRuleHelper.h | 6 --- src/mc/identity/EmailAddress.h | 8 +--- src/mc/input/IMovementCorrection.h | 6 --- src/mc/input/IReplayableActorInput.h | 6 --- src/mc/leveldb/LevelDbFileLock.h | 6 --- src/mc/leveldb/LevelDbLogger.h | 6 --- src/mc/locale/I18nObserver.h | 6 --- src/mc/molang/MolangVersionMapping.h | 6 --- src/mc/network/ClientNetherNetConnector.h | 6 --- src/mc/network/Connector.h | 6 --- src/mc/network/FranchiseSignalServiceConfig.h | 16 +------ src/mc/network/GameSpecificNetEventCallback.h | 6 --- .../IFranchiseSignalServiceTelemetry.h | 6 --- src/mc/network/IGameConnectionInfoProvider.h | 6 --- src/mc/network/IPacketObserver.h | 6 --- src/mc/network/IServerNetworkController.h | 6 --- src/mc/network/NetEventCallback.h | 6 --- src/mc/network/NetherNetTransportStub.h | 6 --- src/mc/network/RemoteConnector.h | 6 --- src/mc/network/ServerLocator.h | 6 --- src/mc/network/ServerNetherNetConnector.h | 6 --- src/mc/network/ServerNetworkSystem.h | 6 --- src/mc/network/StubServerLocator.h | 5 -- src/mc/network/XboxLiveUserObserver.h | 6 --- src/mc/network/packet/ActorFallPacket.h | 8 +--- src/mc/network/packet/AddMobPacket.h | 8 +--- src/mc/network/packet/BookAddPagePacket.h | 8 +--- src/mc/network/packet/BookDeletePagePacket.h | 8 +--- src/mc/network/packet/BookSignPacket.h | 8 +--- src/mc/network/packet/BookSwapPagesPacket.h | 8 +--- src/mc/network/packet/InventoryActionPacket.h | 8 +--- src/mc/options/AppConfigData.h | 8 +--- src/mc/options/AppConfigsFactory.h | 6 --- src/mc/options/ChatRestrictions.h | 8 +--- .../IAdvancedGraphicsHardwareOptions.h | 6 --- src/mc/options/IAdvancedGraphicsOptions.h | 6 --- src/mc/options/IAppConfigData.h | 6 --- src/mc/options/VanillaAppConfigs.h | 6 --- src/mc/platform/Copyable.h | 8 +--- src/mc/platform/ErrorInfo.h | 8 +--- src/mc/platform/ErrorInfoBuilder.h | 8 +--- src/mc/platform/FakeBatteryMonitorInterface.h | 5 -- src/mc/platform/FakeThermalMonitorInterface.h | 5 -- src/mc/platform/FormatterBase.h | 8 +--- src/mc/platform/ImagePickingCallback.h | 6 --- src/mc/platform/MultiplayerServiceObserver.h | 6 --- src/mc/platform/NonCopyable.h | 8 +--- src/mc/platform/OVRPlatformMessageHandler.h | 6 --- src/mc/platform/Result.h | 8 +--- src/mc/platform/ResultLogger.h | 6 --- src/mc/platform/ThreadPool.h | 5 -- src/mc/platform/ThreadPoolActionStatus.h | 8 +--- src/mc/platform/ThreadPoolImpl.h | 6 --- src/mc/platform/UriListener.h | 6 --- src/mc/platform/WaitTimer.h | 5 -- src/mc/platform/WaitTimerImpl.h | 6 --- src/mc/platform/WebviewInterface.h | 8 +--- src/mc/platform/WebviewObserver.h | 6 --- .../battery/BatteryMonitorInterface.h | 6 --- src/mc/platform/brstd/flat_set.h | 8 +--- src/mc/platform/brstd/function_ref.h | 8 +--- src/mc/platform/brstd/move_only_function.h | 8 +--- src/mc/platform/brstd/no_mapped_container_t.h | 14 +----- src/mc/platform/brstd/no_value_t.h | 8 +--- src/mc/platform/brstd/synth_three_way.h | 8 +--- src/mc/platform/ovrMessage.h | 8 +--- .../thermal/ThermalMonitorInterface.h | 6 --- src/mc/platform/threading/LockGuard.h | 8 +--- src/mc/platform/threading/MainProcScope.h | 5 -- src/mc/platform/threading/SharedLock.h | 8 +--- src/mc/platform/threading/ThreadLocalObject.h | 8 +--- src/mc/platform/threading/ThreadUtil.h | 6 --- src/mc/platform/threading/UniqueLock.h | 8 +--- src/mc/platform/threading/ZeroInit.h | 8 +--- src/mc/platform/webview/Extension.h | 6 --- src/mc/resources/AppResourceLoader.h | 6 --- .../resources/BaseGamePackLoadRequirement.h | 6 --- src/mc/resources/BaseGameVersion.h | 8 +--- .../resources/BetaFeaturesLoadRequirement.h | 6 --- src/mc/resources/EducationMetadataError.h | 6 --- .../resources/IContentAccessibilityProvider.h | 6 --- src/mc/resources/IContentKeyProvider.h | 6 --- src/mc/resources/IContentTierManager.h | 6 --- src/mc/resources/IDynamicPackagePacks.h | 6 --- src/mc/resources/IInPackagePacks.h | 6 --- src/mc/resources/IPackLoadContext.h | 6 --- src/mc/resources/IPackLoadScoped.h | 6 --- src/mc/resources/IResourcePackRepository.h | 6 --- .../LegacyCreatorFeaturesLoadRequirement.h | 6 --- src/mc/resources/PackAccessStrategyFactory.h | 6 --- src/mc/resources/PackCapability.h | 14 +----- src/mc/resources/PackDiscoveryError.h | 6 --- src/mc/resources/PackErrorFactory.h | 8 +--- src/mc/resources/PackLoadError.h | 6 --- src/mc/resources/PackMover.h | 8 +--- src/mc/resources/PackSettingsError.h | 6 --- src/mc/resources/PackSource.h | 6 --- src/mc/resources/PackSourceFactory.h | 8 +--- src/mc/resources/ResourceLoadManager.h | 8 +--- src/mc/resources/ResourcePackListener.h | 6 --- ...ResourcePackManagerMinEngineVersionUtils.h | 8 +--- src/mc/resources/ResourcePackMergeStrategy.h | 6 --- src/mc/resources/ServerContentKeyProvider.h | 6 --- src/mc/resources/UIPackError.h | 6 --- src/mc/resources/ValidatorRegistry.h | 8 +--- src/mc/resources/VanillaInPackagePacks.h | 6 --- .../interface/IPackManifestFactory.h | 6 --- .../resources/interface/IPackSourceFactory.h | 6 --- .../interface/IWorldTemplateManager.h | 6 --- src/mc/resources/persona/DefinedSwatchLists.h | 6 --- src/mc/resources/persona/PersonaColors.h | 6 --- src/mc/scripting/IScriptGeneratorStats.h | 6 --- src/mc/scripting/IScriptPluginSource.h | 6 --- .../scripting/IScriptPluginSourceEnumerator.h | 6 --- src/mc/scripting/IScriptTelemetryLogger.h | 6 --- src/mc/scripting/ScriptPrintLogger.h | 6 --- .../ScriptRuntimeConditionRegistry.h | 6 --- src/mc/scripting/debugger/IScriptDebugger.h | 6 --- .../debugger/IScriptDebuggerWatchdog.h | 6 --- .../diagnostics/IScriptStatPublisher.h | 6 --- .../ScriptActorGameplayHandler.h | 6 --- .../ScriptBlockGameplayHandler.h | 6 --- .../event_handlers/ScriptEventHandler.h | 8 +--- .../ScriptItemGameplayHandler.h | 6 --- .../ScriptLevelGameplayHandler.h | 6 --- .../ScriptPlayerGameplayHandler.h | 6 --- .../ScriptScriptingEventHandler.h | 6 --- .../ScriptServerNetworkEventHandler.h | 6 --- .../ScriptDebugUtilitiesModuleFactory.h | 5 -- .../modules/ScriptIdentityModuleFactory.h | 6 --- .../ScriptLiveEventsUtilitiesModuleFactory.h | 6 --- .../ScriptMinecraftServerUIModuleFactory.h | 6 --- .../debug_utilities/ScriptDebugUtils.h | 6 --- .../modules/gametest/ScriptGameTestDebug.h | 6 --- .../modules/gametest/ScriptSimulatedPlayer.h | 6 --- .../modules/minecraft/BeforeEventExecutor.h | 8 +--- .../minecraft/DeprecatedDimensionTypes.h | 8 +--- ...IScriptCustomComponentScriptEventClosure.h | 8 +--- .../IScriptCustomComponentScriptInterface.h | 8 +--- .../modules/minecraft/ScriptBoundingBox.h | 6 --- .../minecraft/ScriptBoundingBoxUtils.h | 6 --- ...criptCustomComponentInvalidRegistryError.h | 6 --- .../minecraft/ScriptGameRulesFactory.h | 6 --- .../minecraft/ScriptInputPermissionCategory.h | 6 --- .../minecraft/ScriptInvalidIteratorError.h | 5 -- .../modules/minecraft/ScriptLocation.h | 6 --- .../minecraft/ScriptMapValueIterator.h | 8 +--- .../modules/minecraft/ScriptNumberRange.h | 6 --- .../ScriptPlayerInventoryComponentContainer.h | 6 --- .../scripting/modules/minecraft/ScriptRGBA.h | 6 --- .../modules/minecraft/ScriptSystemFactory.h | 6 --- .../minecraft/ScriptUnloadedChunksError.h | 6 --- .../modules/minecraft/ScriptVector.h | 6 --- .../modules/minecraft/ScriptVectorIterator.h | 8 +--- .../modules/minecraft/ScriptWorldFactory.h | 6 --- .../actor/ScriptActorDefinitionFeedItem.h | 6 --- .../minecraft/actor/ScriptActorFactory.h | 6 --- .../actor/ScriptActorInitializationCause.h | 6 --- .../minecraft/actor/ScriptActorIterator.h | 6 --- .../minecraft/actor/ScriptActorTypeIterator.h | 6 --- .../actor/ScriptActorTypesRegistry.h | 8 +--- .../actor/ScriptDefinitionModifier.h | 6 --- .../minecraft/actor/ScriptDefinitionTrigger.h | 6 --- .../modules/minecraft/actor/ScriptFeedItem.h | 6 --- .../minecraft/actor/ScriptFeedItemEffect.h | 6 --- .../minecraft/actor/ScriptFilterGroup.h | 6 --- .../minecraft/actor/ScriptPaletteColor.h | 6 --- ...ockCustomComponentAlreadyRegisteredError.h | 7 --- ...ckCustomComponentReloadNewComponentError.h | 7 --- ...tBlockCustomComponentReloadNewEventError.h | 6 --- ...ptBlockCustomComponentReloadVersionError.h | 6 --- .../minecraft/block/ScriptBlockStates.h | 6 --- .../ScriptLocationInUnloadedChunkError.h | 6 --- .../ScriptLocationOutOfWorldBoundsError.h | 6 --- .../components/IScriptBlockComponentFactory.h | 6 --- .../block/components/ScriptBlockComponents.h | 6 --- .../ScriptBlockFluidContainerComponent.h | 6 --- .../ScriptBlockLavaContainerComponent.h | 6 --- .../block/components/ScriptBlockPistonState.h | 6 --- .../ScriptBlockPotionContainerComponent.h | 6 --- .../ScriptBlockRecordPlayerComponent.h | 6 --- .../ScriptBlockRecordPlayerComponentV010.h | 6 --- .../components/ScriptBlockSignComponent.h | 6 --- .../ScriptBlockSnowContainerComponent.h | 6 --- .../ScriptBlockWaterContainerComponent.h | 6 --- .../block/components/ScriptLiquidContainer.h | 6 --- .../block/components/ScriptSignTextSide.h | 6 --- .../camera/ScriptCameraEaseBindings.h | 6 --- .../minecraft/commands/ScriptActorQuery.h | 6 --- .../minecraft/commands/ScriptCommandError.h | 6 --- .../components/ECSScriptActorComponent.h | 8 +--- .../minecraft/components/IComponentFactory.h | 6 --- .../components/ScriptAddRiderComponent.h | 6 --- .../components/ScriptAgeableComponent.h | 6 --- .../components/ScriptBreathableComponent.h | 6 --- .../ScriptCursorInventoryComponent.h | 6 --- .../ScriptCursorInventoryComponentFactory.h | 6 --- .../components/ScriptEquippableComponent.h | 6 --- .../ScriptEquippableComponentFactory.h | 6 --- .../components/ScriptHealableComponent.h | 6 --- .../components/ScriptHealthComponent.h | 6 --- .../components/ScriptHealthComponentFactory.h | 6 --- .../ScriptInventoryComponentFactory.h | 6 --- .../components/ScriptItemActorComponent.h | 6 --- .../ScriptItemActorComponentFactory.h | 6 --- .../components/ScriptLavaMovementComponent.h | 6 --- .../ScriptLavaMovementComponentFactory.h | 6 --- .../components/ScriptLeashableComponent.h | 6 --- .../components/ScriptMountTamingComponent.h | 6 --- .../ScriptMovementAmphibiousComponent.h | 6 --- ...ScriptMovementAmphibiousComponentFactory.h | 6 --- .../components/ScriptMovementBasicComponent.h | 6 --- .../ScriptMovementBasicComponentFactory.h | 6 --- .../components/ScriptMovementComponent.h | 6 --- .../ScriptMovementComponentFactory.h | 6 --- .../components/ScriptMovementFlyComponent.h | 6 --- .../ScriptMovementFlyComponentFactory.h | 6 --- .../ScriptMovementGenericComponent.h | 6 --- .../ScriptMovementGenericComponentFactory.h | 6 --- .../components/ScriptMovementGlideComponent.h | 6 --- .../ScriptMovementGlideComponentFactory.h | 6 --- .../components/ScriptMovementHoverComponent.h | 6 --- .../ScriptMovementHoverComponentFactory.h | 6 --- .../components/ScriptMovementJumpComponent.h | 6 --- .../ScriptMovementJumpComponentFactory.h | 6 --- .../components/ScriptMovementSkipComponent.h | 6 --- .../ScriptMovementSkipComponentFactory.h | 6 --- .../components/ScriptMovementSwayComponent.h | 6 --- .../ScriptMovementSwayComponentFactory.h | 6 --- .../ScriptNavigationClimbComponent.h | 6 --- .../ScriptNavigationClimbComponentFactory.h | 6 --- .../ScriptNavigationFloatComponent.h | 6 --- .../ScriptNavigationFloatComponentFactory.h | 6 --- .../components/ScriptNavigationFlyComponent.h | 6 --- .../ScriptNavigationFlyComponentFactory.h | 6 --- .../ScriptNavigationGenericComponent.h | 6 --- .../ScriptNavigationGenericComponentFactory.h | 6 --- .../ScriptNavigationHoverComponent.h | 6 --- .../ScriptNavigationHoverComponentFactory.h | 6 --- .../ScriptNavigationWalkComponent.h | 6 --- .../ScriptNavigationWalkComponentFactory.h | 6 --- .../components/ScriptOnFireComponent.h | 6 --- .../components/ScriptOnFireComponentFactory.h | 6 --- .../components/ScriptProjectileComponent.h | 6 --- .../ScriptProjectileComponentFactory.h | 6 --- .../components/ScriptRideableComponent.h | 6 --- .../components/ScriptRidingComponent.h | 6 --- .../components/ScriptRidingComponentFactory.h | 6 --- .../modules/minecraft/components/ScriptSeat.h | 6 --- .../components/ScriptStrengthComponent.h | 6 --- .../ScriptStrengthComponentFactory.h | 6 --- .../components/ScriptTameableComponent.h | 6 --- .../components/ScriptTypeFamilyComponent.h | 6 --- .../ScriptTypeFamilyComponentFactory.h | 6 --- .../ScriptUnderwaterMovementComponent.h | 6 --- ...ScriptUnderwaterMovementComponentFactory.h | 6 --- .../device/ScriptMemoryTierBuilder.h | 6 --- .../minecraft/device/ScriptPlatformType.h | 6 --- .../effects/ScriptEffectTypesRegistry.h | 8 +--- .../modules/minecraft/events/EmptyFilter.h | 8 +--- .../minecraft/events/EmptyFilterData.h | 8 +--- .../events/IScriptEventSignalAsync.h | 6 --- ...criptItemCustomComponentSignalCollection.h | 6 --- .../IScriptScriptDeferredEventListener.h | 8 +--- .../events/IScriptWorldAfterEvents.h | 6 --- .../events/IScriptWorldBeforeEvents.h | 6 --- .../minecraft/events/ScriptActorDamageCause.h | 6 --- .../ScriptBlockCustomComponentInterface.h | 6 --- ...BlockCustomComponentRandomTickAfterEvent.h | 6 --- ...ScriptBlockCustomComponentTickAfterEvent.h | 6 --- .../events/ScriptCustomComponentAfterEvent.h | 8 +--- .../events/ScriptCustomComponentBeforeEvent.h | 8 +--- ...ptCustomComponentPubSubAdapterAfterEvent.h | 8 +--- ...criptCustomComponentPubSubAdapterStorage.h | 8 +--- .../ScriptCustomComponentPubSubConnectors.h | 8 +--- .../events/ScriptFilteredEventSignal.h | 8 +--- .../ScriptItemCustomComponentAfterEvent.h | 6 --- .../ScriptItemCustomComponentBeforeEvent.h | 8 +--- ...criptItemCustomComponentCompleteUseEvent.h | 6 --- .../ScriptItemCustomComponentInterface.h | 6 --- ...ptItemCustomComponentIntermediateStorage.h | 6 --- .../events/ScriptModuleShutdownBeforeEvent.h | 6 --- .../events/ScriptSystemAfterEvents.h | 6 --- .../events/ScriptWatchdogTerminateReason.h | 6 --- .../minecraft/events/ScriptWorldAfterEvents.h | 6 --- .../metadata/ScriptAsyncEventMetadata.h | 8 +--- .../ScriptCustomComponentEventMetadata.h | 8 +--- .../ScriptCustomComponentScriptInterface.h | 8 +--- .../modules/minecraft/input/ScriptInputMode.h | 6 --- .../IScriptItemCustomComponentRegistry.h | 6 --- .../modules/minecraft/items/ScriptDyeColor.h | 6 --- .../minecraft/items/ScriptEquipmentSlot.h | 6 --- .../items/ScriptInvalidContainerSlotError.h | 5 -- ...temCustomComponentAlreadyRegisteredError.h | 6 --- ...emCustomComponentReloadNewComponentError.h | 7 --- ...ptItemCustomComponentReloadNewEventError.h | 6 --- ...iptItemCustomComponentReloadVersionError.h | 6 --- ...riptItemEnchantmentLevelOutOfBoundsError.h | 6 --- .../items/ScriptItemEnchantmentSlot.h | 6 --- ...iptItemEnchantmentTypeNotCompatibleError.h | 6 --- .../ScriptItemEnchantmentUnknownIdError.h | 5 -- .../minecraft/items/ScriptItemUtilities.h | 6 --- .../components/IScriptItemComponentFactory.h | 6 --- .../items/components/ScriptFoodComponent.h | 6 --- .../items/components/ScriptItemComponents.h | 6 --- .../ScriptItemCompostableComponent.h | 6 --- .../components/ScriptItemCooldownComponent.h | 6 --- .../ScriptItemDurabilityComponent.h | 6 --- .../components/ScriptItemDyeableComponent.h | 6 --- .../components/ScriptItemPotionComponent.h | 6 --- .../minecraft/npc/ScriptNpcComponent.h | 6 --- .../minecraft/npc/ScriptNpcComponentFactory.h | 6 --- .../minecraft/player/ScriptPlayerIterator.h | 6 --- .../scoreboard/ScriptObjectiveSortOrder.h | 6 --- .../scoreboard/ScriptScoreboardFactory.h | 6 --- .../scoreboard/ScriptScoreboardIdentityType.h | 6 --- .../structure/ScriptInvalidStructureError.h | 5 -- .../structure/ScriptPlaceJigsawError.h | 6 --- .../minecraft_net/ScriptNetRequestMethod.h | 6 --- .../events/IScriptNetworkBeforeEvents.h | 6 --- .../scripting/modules/minecraft_ui/IControl.h | 6 --- .../modules/minecraft_ui/ScriptUIManager.h | 5 -- .../modules/server_admin/ScriptServerAdmin.h | 6 --- .../ScriptWatchdogMinecraftDefaults.h | 8 +--- src/mc/server/DedicatedServerCommands.h | 6 --- src/mc/server/IPlayerSleepPercentageGetter.h | 6 --- .../server/IServerMapDataManagerConnector.h | 6 --- .../IServerPlayerSleepManagerConnector.h | 6 --- .../server/ServerGameplayUserManagerProxy.h | 6 --- src/mc/server/ServerMetrics.h | 6 --- src/mc/server/TestDedicatedServerCommands.h | 8 +--- src/mc/server/TextFilteringProcessor.h | 6 --- .../server/VanillaGameModuleDedicatedServer.h | 6 --- .../server/commands/ClearRealmEventsCommand.h | 6 --- .../commands/CodeBuilderServerCommands.h | 6 --- src/mc/server/commands/CommandRegistry.h | 8 +--- src/mc/server/commands/CommandSelector.h | 8 +--- .../server/commands/CommandSelectorResults.h | 8 +--- src/mc/server/commands/DeferredCommandBase.h | 6 --- src/mc/server/commands/DelayActionList.h | 6 --- .../GameDirectorEntityServerCommandOrigin.h | 6 --- .../server/commands/GetEduServerInfoCommand.h | 6 --- src/mc/server/commands/ICommandOriginLoader.h | 6 --- .../commands/PrecompiledCommandOrigin.h | 6 --- src/mc/server/commands/ReloadConfigCommand.h | 6 --- src/mc/server/commands/ServerCommand.h | 6 --- src/mc/server/commands/StopCommand.h | 6 --- src/mc/server/commands/TestServerCommands.h | 8 +--- .../server/commands/WildcardCommandSelector.h | 8 +--- .../server/commands/edu/WorldBuilderCommand.h | 6 --- .../commands/functions/CommandDispatcher.h | 6 --- .../commands/functions/ICommandDispatcher.h | 6 --- .../commands/functions/IFunctionEntry.h | 6 --- .../commands/shared/CloseWebSocketCommand.h | 6 --- .../commands/shared/ScriptDebugCommand.h | 5 -- src/mc/server/commands/standard/ListCommand.h | 6 --- .../commands/standard/ToggleDownfallCommand.h | 6 --- .../api/EditorExtensionServiceProvider.h | 6 --- .../EditorPlayerExtensionServiceProvider.h | 6 --- .../block_utils/ServerBlockUtilityService.h | 6 --- .../ServerPlayerLogMessageHandlerService.h | 6 --- .../EditorServerBindingsModuleFactory.h | 6 --- .../modules/EditorServerModuleFactory.h | 6 --- .../selection/ServerSelectionContainer.h | 6 --- .../BrushShapeManagerServiceProvider.h | 6 --- ...EditorPlayerExportProjectServiceProvider.h | 6 --- .../EditorPlayerPlaytestServiceProvider.h | 6 --- .../EditorPlaytestManagerServiceProvider.h | 6 --- .../ServerBlockUtilityServiceProvider.h | 6 --- .../ServerCursorServiceProvider.h | 6 --- .../ServerPlayerInputServiceProvider.h | 6 --- .../TransactionManagerServiceProvider.h | 6 --- .../BlockEventListenerService.h | 6 --- .../blocks/ServerBlockPaletteService.h | 6 --- .../datastore/ServerDataStoreService.h | 6 --- .../services/input/ServerPlayerInputService.h | 6 --- .../settings/EditorServerSettingsService.h | 6 --- .../server/editor/state/ServerModeService.h | 6 --- .../server/editor/transactions/IOperation.h | 6 --- .../editor/transactions/IPendingOperation.h | 6 --- .../module/VanillaEntityInitializerCommon.h | 6 --- .../module/VanillaEntityInitializerServer.h | 8 +--- .../module/VanillaNetworkEventListener.h | 6 --- .../VanillaServerGameplayEventListener.h | 6 --- .../safety/ChatFloodingActionEnumHasher.h | 8 +--- src/mc/server/sim/ContinuousBuildIntent.h | 8 +--- src/mc/server/sim/VoidBuildIntent.h | 8 +--- src/mc/server/sim/VoidLookAtIntent.h | 8 +--- src/mc/server/sim/VoidMoveIntent.h | 8 +--- src/mc/textobject/ITextObject.h | 6 --- src/mc/textobject/TextObjectParser.h | 6 --- src/mc/util/AccessorTypeEnumHasher.h | 8 +--- src/mc/util/ActorDefinitionEventLoader.h | 6 --- src/mc/util/BidirectionalUnorderedMap.h | 8 +--- src/mc/util/BlockCerealSchemaUpgrade.h | 6 --- src/mc/util/BlockListSerializer.h | 6 --- src/mc/util/CallbackTokenContext.h | 8 +--- src/mc/util/CaseInsensitiveCompare.h | 8 +--- src/mc/util/CaseInsensitiveHash.h | 8 +--- src/mc/util/CopyCoordinatesUtils.h | 8 +--- src/mc/util/DefinitionEventLoader.h | 6 --- src/mc/util/EasingInverse.h | 6 --- src/mc/util/Factory.h | 8 +--- src/mc/util/FormJsonValidator.h | 6 --- src/mc/util/GridArea.h | 8 +--- src/mc/util/IDType.h | 8 +--- src/mc/util/IFileChunkDownloader.h | 6 --- src/mc/util/IFileChunkUploader.h | 5 -- src/mc/util/IFilePicker.h | 6 --- src/mc/util/IMolangInstruction.h | 6 --- src/mc/util/ImageMimeTypeEnumHasher.h | 8 +--- src/mc/util/ItemCerealSchemaUpgrade.h | 6 --- src/mc/util/ItemListSerializer.h | 8 +--- src/mc/util/ItemReplacementCommandUtil.h | 6 --- src/mc/util/JpegData.h | 8 +--- src/mc/util/LootTableUtils.h | 6 --- src/mc/util/LowMemoryWatcher.h | 6 --- src/mc/util/MaterialAlphaModeEnumHasher.h | 8 +--- src/mc/util/MolangHashStringVariable.h | 8 +--- src/mc/util/MolangLoopBreak.h | 8 +--- src/mc/util/MolangLoopContinue.h | 8 +--- src/mc/util/MultidimensionalArray.h | 8 +--- src/mc/util/NewType.h | 8 +--- src/mc/util/OwnerPtrFactory.h | 8 +--- src/mc/util/PackSettingsJsonValidator.h | 6 --- src/mc/util/Palette.h | 6 --- src/mc/util/PaletteSwapUtils.h | 8 +--- src/mc/util/PauseChecks.h | 6 --- src/mc/util/ResetCallbackObject.h | 8 +--- src/mc/util/SystemFilePicker.h | 5 -- src/mc/util/TagRegistry.h | 8 +--- src/mc/util/TextFilteringUtils.h | 6 --- src/mc/util/ThreadOwner.h | 8 +--- src/mc/util/WeightedChoices.h | 8 +--- src/mc/util/WeightedRandom.h | 6 --- src/mc/util/WeightedRandomList.h | 8 +--- src/mc/util/_ProfilerLiteCounter.h | 8 +--- .../debug_info_utility/DebugBlockUtility.h | 8 +--- src/mc/util/gltf/Animation.h | 8 +--- src/mc/util/gltf/Primitive.h | 6 --- .../TextureSetDefinitionLoader.h | 12 ----- .../TextureSetDefinitionParser.h | 8 +--- .../TextureSetLayerDefinitionParser.h | 8 +--- src/mc/volume/VolumeComponentFactory.h | 6 --- .../components/VolumeTriggerConstraint.h | 6 --- src/mc/websockets/RakWebSocketClient.h | 6 --- src/mc/websockets/TcpProxy.h | 6 --- .../automation/AutomationObserver.h | 6 --- src/mc/win/PDFHelpers.h | 8 +--- src/mc/win/PDFWriterWindows.h | 6 --- src/mc/world/ContainerCloseListener.h | 6 --- src/mc/world/ContainerContentChangeListener.h | 6 --- src/mc/world/ContainerRuntimeIdTag.h | 8 +--- src/mc/world/ContainerSizeChangeListener.h | 6 --- src/mc/world/Direction.h | 6 --- src/mc/world/GameCallbacks.h | 6 --- src/mc/world/ParticleSystemInterface.h | 6 --- src/mc/world/PlayerUIContainer.h | 6 --- src/mc/world/TypedRuntimeId.h | 8 +--- src/mc/world/actor/ActorClassTree.h | 6 --- .../world/actor/ActorComponentDescription.h | 6 --- src/mc/world/actor/ActorComponentFactory.h | 6 --- .../world/actor/ActorDefinitionDescriptor.h | 8 +--- src/mc/world/actor/ActorFilterGroup.h | 5 -- src/mc/world/actor/ActorLegacySaveConverter.h | 6 --- src/mc/world/actor/AttributeDescription.h | 6 --- src/mc/world/actor/DefintionDescription.h | 6 --- src/mc/world/actor/Description.h | 6 --- src/mc/world/actor/IEntityInitializer.h | 6 --- src/mc/world/actor/ISynchedActorDataAdapter.h | 6 --- src/mc/world/actor/KnockbackArmorUpdater.h | 6 --- src/mc/world/actor/LeashFenceKnotActor.h | 6 --- .../actor/NetheriteArmorEquippedListener.h | 6 --- src/mc/world/actor/Parser.h | 6 --- src/mc/world/actor/ParticleTypeMap.h | 6 --- src/mc/world/actor/SpawnChecks.h | 6 --- src/mc/world/actor/VehicleUtils.h | 6 --- src/mc/world/actor/_TickPtr.h | 6 --- src/mc/world/actor/agent/AgentBodyControl.h | 6 --- src/mc/world/actor/agent/AgentLookControl.h | 5 -- .../actor/ai/control/AmphibiousMoveControl.h | 5 -- src/mc/world/actor/ai/control/Control.h | 6 --- .../actor/ai/control/DynamicJumpControl.h | 5 -- .../world/actor/ai/control/FlyMoveControl.h | 5 -- .../actor/ai/control/GenericMoveControl.h | 5 -- .../world/actor/ai/control/HoverMoveControl.h | 5 -- src/mc/world/actor/ai/control/JumpControl.h | 5 -- .../actor/ai/control/LegacyBodyControl.h | 5 -- src/mc/world/actor/ai/control/LookControl.h | 5 -- src/mc/world/actor/ai/control/MoveControl.h | 5 -- .../world/actor/ai/control/SwimMoveControl.h | 5 -- src/mc/world/actor/ai/goal/EquipItemGoal.h | 6 --- src/mc/world/actor/ai/goal/FleeSunGoal.h | 6 --- src/mc/world/actor/ai/goal/IdleState.h | 6 --- .../KnockbackRoarGoalMinEngineVersionUtils.h | 6 --- src/mc/world/actor/ai/goal/LookAtEntityGoal.h | 6 --- src/mc/world/actor/ai/goal/LookAtPlayerGoal.h | 6 --- src/mc/world/actor/ai/goal/LookAtTargetGoal.h | 6 --- src/mc/world/actor/ai/goal/MoveToLandGoal.h | 6 --- src/mc/world/actor/ai/goal/MoveToLavaGoal.h | 6 --- src/mc/world/actor/ai/goal/MoveToWaterGoal.h | 6 --- ...MoveTowardsDwellingRestrictionDefinition.h | 5 -- .../goal/MoveTowardsDwellingRestrictionGoal.h | 6 --- .../MoveTowardsHomeRestrictionDefinition.h | 5 -- .../ai/goal/MoveTowardsHomeRestrictionGoal.h | 6 --- src/mc/world/actor/ai/goal/SleepState.h | 6 --- src/mc/world/actor/ai/goal/StompEggGoal.h | 6 --- .../world/actor/ai/goal/TimerActorFlag1Goal.h | 12 ----- .../world/actor/ai/goal/TimerActorFlag2Goal.h | 12 ----- .../world/actor/ai/goal/TimerActorFlag3Goal.h | 12 ----- src/mc/world/actor/ai/goal/WalkState.h | 6 --- .../RamGoalItemDropperInterface.h | 6 --- .../RamGoalNoItemDropper.h | 6 --- .../actor/ai/goal/target/HurtByTargetGoal.h | 6 --- .../NearestPrioritizedAttackableTargetGoal.h | 6 --- .../ai/goal/target/VexCopyOwnerTargetGoal.h | 6 --- .../actor/ai/navigation/FloatNavigation.h | 6 --- .../ai/navigation/GenericPathNavigation.h | 6 --- .../actor/ai/navigation/PathNavigation.h | 6 --- src/mc/world/actor/ai/util/RandomPos.h | 6 --- .../world/actor/ai/village/IVillageManager.h | 6 --- src/mc/world/actor/ai/village/Village.h | 6 --- src/mc/world/actor/animal/Animal.h | 6 --- src/mc/world/actor/animal/Armadillo.h | 6 --- src/mc/world/actor/animal/Axolotl.h | 6 --- src/mc/world/actor/animal/Cat.h | 6 --- src/mc/world/actor/animal/Chicken.h | 6 --- src/mc/world/actor/animal/Fish.h | 6 --- src/mc/world/actor/animal/Goat.h | 6 --- src/mc/world/actor/animal/Horse.h | 6 --- src/mc/world/actor/animal/IronGolem.h | 6 --- src/mc/world/actor/animal/Llama.h | 6 --- src/mc/world/actor/animal/MushroomCow.h | 6 --- src/mc/world/actor/animal/Ocelot.h | 6 --- src/mc/world/actor/animal/Parrot.h | 6 --- src/mc/world/actor/animal/Pig.h | 6 --- src/mc/world/actor/animal/Pufferfish.h | 6 --- src/mc/world/actor/animal/Rabbit.h | 6 --- src/mc/world/actor/animal/Salmon.h | 6 --- src/mc/world/actor/animal/Sniffer.h | 6 --- src/mc/world/actor/animal/Tadpole.h | 6 --- src/mc/world/actor/animal/TropicalFish.h | 6 --- src/mc/world/actor/animal/Turtle.h | 6 --- src/mc/world/actor/animal/WaterAnimal.h | 6 --- .../actor/animation/ActorAnimationBase.h | 8 +--- .../ActorAnimationMinEngineVersionUtils.h | 6 --- .../actor/animation/AnimationComponentGroup.h | 6 --- .../DefaultEmptyActorAnimationPlayer.h | 6 --- .../bhave/definition/ConsumeItemDefinition.h | 6 --- .../bhave/definition/InverterDefinition.h | 6 --- .../bhave/definition/PlaceBlockDefinition.h | 6 --- .../definition/RepeatUntilFailureDefinition.h | 6 --- .../bhave/definition/SelectorDefinition.h | 6 --- .../bhave/definition/SequenceDefinition.h | 6 --- .../bhave/definition/UseActorDefinition.h | 6 --- src/mc/world/actor/item/Balloon.h | 6 --- src/mc/world/actor/item/ChestBoat.h | 6 --- .../actor/item/FallingBlockActorDelegate.h | 6 --- src/mc/world/actor/item/ITickDelegate.h | 6 --- src/mc/world/actor/item/MinecartChest.h | 6 --- src/mc/world/actor/item/MinecartRideable.h | 6 --- src/mc/world/actor/item/MinecartTNT.h | 6 --- .../world/actor/item/MinecartTypeEnumHasher.h | 8 +--- src/mc/world/actor/monster/Breeze.h | 6 --- src/mc/world/actor/monster/CaveSpider.h | 6 --- src/mc/world/actor/monster/Creaking.h | 6 --- src/mc/world/actor/monster/EvocationIllager.h | 6 --- src/mc/world/actor/monster/Ghast.h | 6 --- src/mc/world/actor/monster/HumanoidMonster.h | 6 --- src/mc/world/actor/monster/IllagerBeast.h | 6 --- src/mc/world/actor/monster/LavaSlime.h | 6 --- src/mc/world/actor/monster/Phantom.h | 6 --- src/mc/world/actor/monster/Piglin.h | 6 --- src/mc/world/actor/monster/Pillager.h | 6 --- src/mc/world/actor/monster/Shulker.h | 6 --- src/mc/world/actor/monster/Silverfish.h | 6 --- src/mc/world/actor/monster/Spider.h | 6 --- src/mc/world/actor/monster/Vex.h | 6 --- .../world/actor/monster/VindicationIllager.h | 6 --- src/mc/world/actor/monster/Zombie.h | 6 --- src/mc/world/actor/npc/INpcDialogueData.h | 6 --- src/mc/world/actor/npc/Villager.h | 6 --- src/mc/world/actor/npc/VillagerV2.h | 6 --- src/mc/world/actor/npc/WanderingTrader.h | 6 --- src/mc/world/actor/npc/npc.h | 6 --- src/mc/world/actor/player/AbilityHelpers.h | 8 +--- src/mc/world/actor/player/IMovementStop.h | 6 --- .../player/IPlayerDeathManagerConnector.h | 6 --- .../actor/player/IPlayerDeathManagerProxy.h | 6 --- src/mc/world/actor/player/Inventory.h | 6 --- .../actor/player/MarketplaceSkinValidator.h | 6 --- src/mc/world/actor/player/PlayerListener.h | 6 --- src/mc/world/actor/player/SetSleep.h | 8 +--- src/mc/world/actor/player/persona/BodySize.h | 6 --- .../world/actor/projectile/DragonFireball.h | 6 --- .../world/actor/projectile/ExperiencePotion.h | 6 --- .../actor/projectile/PredictableProjectile.h | 6 --- src/mc/world/actor/projectile/SmallFireball.h | 6 --- src/mc/world/actor/projectile/Snowball.h | 6 --- src/mc/world/actor/projectile/ThrownEgg.h | 6 --- .../world/actor/projectile/ThrownEnderpearl.h | 6 --- src/mc/world/actor/projectile/ThrownIceBomb.h | 6 --- src/mc/world/actor/projectile/ThrownPotion.h | 6 --- .../actor/projectile/WindChargeProjectile.h | 6 --- .../provider/SynchedActorDataInitializer.h | 8 +--- .../world/actor/selectors/InvertableFilter.h | 8 +--- src/mc/world/attribute/Amplifier.h | 6 --- .../attribute/ExhaustionAttributeDelegate.h | 6 --- .../attribute/InstantaneousAttributeBuff.h | 6 --- src/mc/world/attribute/SharedAmplifiers.h | 6 --- src/mc/world/attribute/SharedAttributes.h | 6 --- src/mc/world/attribute/SharedBuffs.h | 6 --- src/mc/world/attribute/SharedModifiers.h | 6 --- src/mc/world/containers/ContainerFactory.h | 6 --- .../world/containers/ContainerTransferScope.h | 6 --- src/mc/world/containers/ContainerValidation.h | 8 +--- .../containers/IContainerRegistryAccess.h | 6 --- .../containers/IContainerRegistryTracker.h | 6 --- src/mc/world/containers/IContainerTransfer.h | 6 --- .../IDynamicContainerSerialization.h | 6 --- .../BeaconPaymentContainerController.h | 6 --- .../controllers/CreativeContainerController.h | 6 --- .../EnchantingInputContainerController.h | 6 --- .../containers/managers/IContainerManager.h | 6 --- .../BlastFurnaceContainerManagerController.h | 6 --- .../SmokerContainerManagerController.h | 6 --- .../BlastFurnaceContainerManagerModel.h | 6 --- .../models/DispenserContainerManagerModel.h | 6 --- .../models/DropperContainerManagerModel.h | 6 --- .../models/HopperContainerManagerModel.h | 6 --- .../models/SmokerContainerManagerModel.h | 6 --- .../models/PlayerUIContainerModel.h | 6 --- src/mc/world/effect/AbsorptionMobEffect.h | 6 --- src/mc/world/effect/AttackDamageMobEffect.h | 6 --- src/mc/world/effect/InfestedMobEffect.h | 6 --- src/mc/world/effect/InstantaneousMobEffect.h | 6 --- src/mc/world/effect/OozingMobEffect.h | 6 --- src/mc/world/effect/RaidOmenMobEffect.h | 6 --- src/mc/world/effect/WeavingMobEffect.h | 6 --- src/mc/world/effect/WindChargedMobEffect.h | 6 --- src/mc/world/events/ActorEventListener.h | 6 --- src/mc/world/events/ActorGameplayEvent.h | 8 +--- src/mc/world/events/ActorNotificationEvent.h | 6 --- src/mc/world/events/BlockEventListener.h | 6 --- src/mc/world/events/BlockGameplayEvent.h | 8 +--- src/mc/world/events/BlockNotificationEvent.h | 6 --- src/mc/world/events/BlockPatternPostEvent.h | 6 --- src/mc/world/events/BlockPatternPreEvent.h | 6 --- .../world/events/ClientHitDetectCoordinator.h | 6 --- src/mc/world/events/ClientHitDetectListener.h | 6 --- .../events/ClientInstanceEventListener.h | 6 --- .../events/ClientInstanceGameplayEvent.h | 8 +--- .../events/ClientInstanceNotificationEvent.h | 8 +--- .../events/ClientLevelEventCoordinator.h | 6 --- src/mc/world/events/ClientMessageEvent.h | 8 +--- .../events/ClientNetworkEventCoordinator.h | 6 --- .../world/events/ClientNetworkEventListener.h | 6 --- .../events/ClientPlayerEventCoordinator.h | 6 --- .../events/ClientScriptEventCoordinator.h | 6 --- .../world/events/ClientScriptEventListener.h | 6 --- src/mc/world/events/EventCoordinator.h | 8 +--- .../world/events/EventCoordinatorNoTracking.h | 8 +--- src/mc/world/events/EventListenerDispatcher.h | 8 +--- src/mc/world/events/EventRef.h | 8 +--- src/mc/world/events/EventVariantImpl.h | 8 +--- src/mc/world/events/IRealmEventLogger.h | 6 --- src/mc/world/events/ItemCompleteUseEvent.h | 6 --- src/mc/world/events/ItemEventListener.h | 6 --- src/mc/world/events/ItemGameplayEvent.h | 8 +--- src/mc/world/events/ItemNotificationEvent.h | 6 --- src/mc/world/events/ItemReleaseUseEvent.h | 6 --- src/mc/world/events/ItemStartUseEvent.h | 6 --- src/mc/world/events/ItemStopUseEvent.h | 6 --- src/mc/world/events/LevelEventListener.h | 6 --- src/mc/world/events/LevelGameplayEvent.h | 8 +--- src/mc/world/events/LevelNotificationEvent.h | 6 --- .../world/events/MutableActorGameplayEvent.h | 8 +--- .../world/events/MutableBlockGameplayEvent.h | 8 +--- .../world/events/MutableItemGameplayEvent.h | 8 +--- .../world/events/MutableLevelGameplayEvent.h | 8 +--- .../world/events/MutablePlayerGameplayEvent.h | 8 +--- .../events/MutableScriptingGameplayEvent.h | 8 +--- .../MutableServerNetworkGameplayEvent.h | 8 +--- .../world/events/NetworkPacketEventListener.h | 6 --- src/mc/world/events/NpcEventCoordinator.h | 6 --- src/mc/world/events/NpcEventListener.h | 6 --- src/mc/world/events/PlayerEventListener.h | 6 --- src/mc/world/events/PlayerGameplayEvent.h | 8 +--- src/mc/world/events/PlayerNotificationEvent.h | 6 --- src/mc/world/events/RealmEventServerLogger.h | 6 --- src/mc/world/events/ScoreboardEventListener.h | 6 --- .../events/ScriptDeferredEventCoordinator.h | 6 --- .../events/ScriptDeferredEventListener.h | 6 --- src/mc/world/events/ScriptingEventListener.h | 6 --- src/mc/world/events/ScriptingGameplayEvent.h | 8 +--- .../world/events/ScriptingNotificationEvent.h | 6 --- .../events/ServerInstanceEventListener.h | 6 --- .../events/ServerInstanceGameplayEvent.h | 8 +--- .../events/ServerInstanceNotificationEvent.h | 6 --- .../world/events/ServerNetworkEventListener.h | 6 --- .../ServerNetworkGameplayNotificationEvent.h | 6 --- .../events/ServerPlayerEventCoordinator.h | 6 --- src/mc/world/events/UIEventCoordinator.h | 6 --- src/mc/world/events/UIEventListener.h | 6 --- .../events/gameevents/GameEventDispatcher.h | 6 --- .../events/gameevents/GameEventListener.h | 6 --- .../events/gameevents/GameEventMapping.h | 6 --- .../gameevents/VibrationListenerConfig.h | 6 --- src/mc/world/filters/ActorHasAbilityTest.h | 6 --- src/mc/world/filters/ActorHasComponentTest.h | 6 --- .../world/filters/ActorHasContainerOpenTest.h | 6 --- src/mc/world/filters/ActorHasDamageTest.h | 6 --- .../filters/ActorHasDamagedEquipmentTest.h | 6 --- src/mc/world/filters/ActorHasNameTagTest.h | 6 --- .../world/filters/ActorHasRangedWeaponTest.h | 6 --- src/mc/world/filters/ActorHasSneakHeldTest.h | 6 --- src/mc/world/filters/ActorHasTagTest.h | 6 --- src/mc/world/filters/ActorHasTargetTest.h | 6 --- src/mc/world/filters/ActorHealthTest.h | 6 --- src/mc/world/filters/ActorInBlockTest.h | 6 --- src/mc/world/filters/ActorInCaravanTest.h | 6 --- src/mc/world/filters/ActorInCloudsTest.h | 6 --- .../world/filters/ActorInContactWithWater.h | 6 --- src/mc/world/filters/ActorInLavaTest.h | 6 --- src/mc/world/filters/ActorInNetherTest.h | 6 --- src/mc/world/filters/ActorInOverworldTest.h | 6 --- src/mc/world/filters/ActorInVillageTest.h | 6 --- src/mc/world/filters/ActorInWaterOrRainTest.h | 6 --- src/mc/world/filters/ActorInWaterTest.h | 6 --- .../world/filters/ActorInactivityTimerTest.h | 6 --- .../world/filters/ActorIsAvoidingMobsTest.h | 6 --- src/mc/world/filters/ActorIsBabyTest.h | 6 --- src/mc/world/filters/ActorIsClimbingTest.h | 6 --- src/mc/world/filters/ActorIsColorTest.h | 6 --- src/mc/world/filters/ActorIsFamilyTest.h | 6 --- src/mc/world/filters/ActorIsImmobileTest.h | 6 --- src/mc/world/filters/ActorIsLeashedTest.h | 6 --- src/mc/world/filters/ActorIsLeashedToTest.h | 6 --- src/mc/world/filters/ActorIsMarkVariantTest.h | 6 --- src/mc/world/filters/ActorIsMovingTest.h | 6 --- src/mc/world/filters/ActorIsNavigatingTest.h | 6 --- src/mc/world/filters/ActorIsOwnerTest.h | 6 --- src/mc/world/filters/ActorIsPanickingTest.h | 6 --- src/mc/world/filters/ActorIsPersistentTest.h | 6 --- src/mc/world/filters/ActorIsRaiderTest.h | 6 --- src/mc/world/filters/ActorIsRidingTest.h | 6 --- src/mc/world/filters/ActorIsSittingTest.h | 6 --- src/mc/world/filters/ActorIsSkinIDTest.h | 6 --- src/mc/world/filters/ActorIsSleepingTest.h | 6 --- src/mc/world/filters/ActorIsSneakingTest.h | 6 --- src/mc/world/filters/ActorIsSprintingTest.h | 6 --- src/mc/world/filters/ActorIsTargetTest.h | 6 --- src/mc/world/filters/ActorIsVariantTest.h | 6 --- src/mc/world/filters/ActorIsVisibleTest.h | 6 --- src/mc/world/filters/ActorMissingHealthTest.h | 6 --- src/mc/world/filters/ActorOnGroundTest.h | 6 --- src/mc/world/filters/ActorOnLadderTest.h | 6 --- .../world/filters/ActorPassengerCountTest.h | 6 --- src/mc/world/filters/ActorRandomChanceTest.h | 6 --- src/mc/world/filters/ActorSurfaceMobTest.h | 6 --- src/mc/world/filters/ActorTrustsSubjectTest.h | 6 --- src/mc/world/filters/ActorUndergroundTest.h | 6 --- src/mc/world/filters/ActorUnderwaterTest.h | 6 --- src/mc/world/filters/ActorWasLastHurtByTest.h | 6 --- src/mc/world/filters/BlockIsNameTest.h | 6 --- src/mc/world/filters/FilterStringMap.h | 6 --- src/mc/world/filters/FilterTestAltitude.h | 6 --- src/mc/world/filters/FilterTestBiome.h | 6 --- src/mc/world/filters/FilterTestBiomeHasTag.h | 6 --- src/mc/world/filters/FilterTestBiomeHumid.h | 6 --- .../filters/FilterTestBiomeSnowCovered.h | 6 --- src/mc/world/filters/FilterTestBrightness.h | 6 --- src/mc/world/filters/FilterTestClock.h | 6 --- src/mc/world/filters/FilterTestDaytime.h | 6 --- src/mc/world/filters/FilterTestDifficulty.h | 6 --- .../FilterTestDistanceToNearestPlayer.h | 6 --- .../world/filters/FilterTestHasTradeSupply.h | 6 --- src/mc/world/filters/FilterTestLightLevel.h | 6 --- .../world/filters/FilterTestMoonIntensity.h | 6 --- src/mc/world/filters/FilterTestMoonPhase.h | 6 --- .../world/filters/FilterTestTemperatureType.h | 6 --- .../filters/FilterTestTemperatureValue.h | 6 --- src/mc/world/filters/IsHoldingSilkTouchTest.h | 6 --- src/mc/world/filters/IsOnFireTest.h | 6 --- src/mc/world/filters/IsOnHotBlockTest.h | 6 --- src/mc/world/filters/IsTakingFireDamageTest.h | 6 --- src/mc/world/filters/IsWaterLoggedTest.h | 6 --- src/mc/world/filters/OwnerDistanceTest.h | 6 --- src/mc/world/filters/TargetDistanceTest.h | 6 --- src/mc/world/gamemode/IGameModeMessenger.h | 6 --- src/mc/world/gamemode/IGameModeTimer.h | 6 --- .../IActorEventCoordinatorDependencies.h | 6 --- .../interactions/ILegacyActorDependencies.h | 6 --- .../interactions/mining/ILegacyDependencies.h | 6 --- .../mining/IMinecraftApiDependencies.h | 6 --- .../network/ClientScratchContainer.h | 6 --- .../network/IPlayerContainerSetter.h | 6 --- .../network/ISparseContainerSetListener.h | 6 --- .../network/ItemStackLegacyRequestIdTag.h | 8 +--- .../inventory/network/ItemStackNetIdTag.h | 8 +--- .../inventory/network/ItemStackNetResultMap.h | 6 --- .../network/ItemStackRequestActionConsume.h | 6 --- .../network/ItemStackRequestActionDataless.h | 8 +--- .../network/ItemStackRequestActionDestroy.h | 6 --- .../network/ItemStackRequestActionPlace.h | 6 --- .../network/ItemStackRequestActionSwap.h | 6 --- .../network/ItemStackRequestActionTake.h | 6 --- .../inventory/network/ItemStackRequestIdTag.h | 8 +--- .../inventory/network/ScreenHandlerHUD.h | 6 --- .../inventory/network/SparseContainerClient.h | 6 --- .../inventory/network/TypedClientNetId.h | 8 +--- .../inventory/network/TypedServerNetId.h | 8 +--- ...andleNonImplemented_DEPRECATEDASKTYLAING.h | 6 --- .../network/crafting/CraftHandlerLoom.h | 6 --- .../crafting/ItemStackRequestActionCraft.h | 8 +--- ...CraftNonImplemented_DEPRECATEDASKTYLAING.h | 6 --- .../network/crafting/RecipeNetIdTag.h | 8 +--- .../ContainerScreenSimulationActivate.h | 6 --- .../ContainerScreenSimulationCrafting.h | 6 --- .../ContainerScreenTemporaryActionScope.h | 6 --- .../ContainerScreenValidationActivate.h | 6 --- .../ContainerScreenValidationCrafting.h | 6 --- .../ContainerValidationCraftInputs.h | 8 +--- .../simulation/ContainerValidatorFactory.h | 6 --- .../AnvilContainerScreenValidator.h | 6 --- .../AnvilInputContainerValidation.h | 6 --- .../AnvilMaterialContainerValidation.h | 6 --- .../validation/ArmorContainerValidation.h | 6 --- .../BarrelContainerScreenValidator.h | 6 --- .../validation/BarrelContainerValidation.h | 6 --- .../BeaconContainerScreenValidator.h | 6 --- .../BeaconPaymentContainerValidation.h | 6 --- .../BlastFurnaceContainerScreenValidator.h | 6 --- .../BrewingStandContainerScreenValidator.h | 6 --- .../BrewingStandFuelContainerValidation.h | 6 --- .../BrewingStandInputContainerValidation.h | 6 --- .../BrewingStandResultContainerValidation.h | 6 --- ...CartographyAdditionalContainerValidation.h | 6 --- .../CartographyContainerScreenValidator.h | 6 --- .../CartographyInputContainerValidation.h | 6 --- .../ChestContainerScreenValidator.h | 6 --- ...nedHotbarAndInventoryContainerValidation.h | 6 --- .../CompoundCreatorContainerScreenValidator.h | 6 --- .../CompoundCreatorInputValidation.h | 6 --- .../validation/ContainerValidationBase.h | 6 --- .../CrafterContainerScreenValidator.h | 6 --- .../validation/CrafterContainerValidation.h | 6 --- .../CraftingContainerScreenValidator.h | 6 --- .../CraftingInputContainerValidation.h | 6 --- .../CreatedOutputContainerValidation.h | 6 --- .../validation/CursorContainerValidation.h | 6 --- ...ementConstructorContainerScreenValidator.h | 6 --- .../EnchantingContainerScreenValidator.h | 6 --- .../EnchantingInputContainerValidation.h | 6 --- .../EnchantingMaterialContainerValidation.h | 6 --- .../FurnaceFuelContainerValidation.h | 6 --- .../FurnaceIngredientContainerValidation.h | 6 --- .../FurnaceResultContainerValidation.h | 6 --- .../GrindstoneAdditionalContainerValidation.h | 6 --- .../GrindstoneContainerScreenValidator.h | 6 --- .../GrindstoneInputContainerValidation.h | 6 --- .../validation/HUDContainerScreenValidator.h | 6 --- .../HorseContainerScreenValidator.h | 6 --- .../validation/HotbarContainerValidation.h | 6 --- .../validation/InventoryContainerValidation.h | 6 --- .../LabTableContainerScreenValidator.h | 6 --- .../validation/LabTableInputValidation.h | 6 --- .../LevelEntityContainerValidation.h | 6 --- .../validation/LoomContainerScreenValidator.h | 6 --- .../validation/LoomDyeContainerValidation.h | 6 --- .../validation/LoomInputContainerValidation.h | 6 --- .../LoomMaterialContainerValidation.h | 6 --- .../MaterialReducerContainerScreenValidator.h | 6 --- .../MaterialReducerOutputValidation.h | 6 --- .../validation/OffhandContainerValidation.h | 6 --- .../validation/PreviewContainerValidation.h | 6 --- .../ShulkerBoxContainerScreenValidator.h | 6 --- .../ShulkerBoxContainerValidation.h | 6 --- .../SmithingTableContainerScreenValidator.h | 6 --- .../SmithingTableInputContainerValidation.h | 6 --- ...SmithingTableMaterialContainerValidation.h | 6 --- ...SmithingTableTemplateContainerValidation.h | 6 --- .../SmokerContainerScreenValidator.h | 6 --- .../StoneCutterContainerScreenValidator.h | 6 --- .../StoneCutterInputContainerValidation.h | 6 --- .../Trade1ContainerScreenValidator.h | 6 --- .../Trade2ContainerScreenValidator.h | 6 --- .../Trade2Ingredient1ContainerValidation.h | 6 --- .../Trade2Ingredient2ContainerValidation.h | 6 --- .../transaction/IItemUseTransactionSubject.h | 6 --- .../ILegacyItemUseTransactionSubject.h | 6 --- src/mc/world/item/BedrockItems.h | 6 --- src/mc/world/item/CreativeItemNetIdTag.h | 8 +--- src/mc/world/item/DyeColorUtil.h | 6 --- src/mc/world/item/ILegacyItemTriggerHandler.h | 6 --- src/mc/world/item/ItemAcquisitionMethodMap.h | 6 --- src/mc/world/item/ItemEventResponseFactory.h | 6 --- src/mc/world/item/ItemLockHelper.h | 6 --- .../item/ItemStackBaseComponentsHelper.h | 6 --- src/mc/world/item/ItemUseMethodMap.h | 6 --- src/mc/world/item/ItemUtilities.h | 8 +--- src/mc/world/item/SortItemInstanceIdAux.h | 6 --- src/mc/world/item/UseAnimationUtils.h | 6 --- src/mc/world/item/VanillaItemTags.h | 6 --- src/mc/world/item/VanillaItemTiers.h | 6 --- src/mc/world/item/VanillaItems.h | 6 --- src/mc/world/item/alchemy/PotionBrewing.h | 14 +----- .../world/item/alchemy/PotionTypeEnumHasher.h | 8 +--- .../item/components/ArmorItemComponent.h | 5 -- .../item/components/BetaItemComponentData.h | 6 --- .../world/item/components/CameraCallbacks.h | 6 --- .../ComponentItemUpgraderToStrict.h | 6 --- .../item/components/ICameraItemComponent.h | 6 --- .../item/components/IFoodItemComponent.h | 6 --- .../IItemComponentLegacyFactoryData.h | 6 --- .../item/components/NetworkedItemComponent.h | 8 +--- .../UpgradeTo12020.h | 5 -- .../UpgradeTo118.h | 5 -- .../food_item_versioning/FoodItem118Upgrade.h | 5 -- .../publisher_item_component/MiningBlock.h | 6 --- .../OnBeforeDurabilityDamage.h | 6 --- .../publisher_item_component/OnHitActor.h | 6 --- .../publisher_item_component/OnHitBlock.h | 6 --- .../publisher_item_component/OnHurtActor.h | 6 --- .../publisher_item_component/OnUse.h | 6 --- .../UseTimeDepleted.h | 6 --- .../UpgradeTo118.h | 5 -- .../UpgradeTo12020.h | 5 -- src/mc/world/item/crafting/ChemistryRecipes.h | 6 --- src/mc/world/item/crafting/MultiRecipe.h | 6 --- .../crafting/RecipesMinEngineVersionUtils.h | 6 --- .../item/crafting/ShapedChemistryRecipe.h | 6 --- .../item/crafting/ShapelessChemistryRecipe.h | 6 --- src/mc/world/item/crafting/ShapelessRecipe.h | 6 --- src/mc/world/item/enchanting/BowEnchant.h | 6 --- src/mc/world/item/enchanting/BreachEnchant.h | 6 --- .../world/item/enchanting/CrossbowEnchant.h | 6 --- .../item/enchanting/CurseBindingEnchant.h | 6 --- .../item/enchanting/CurseVanishingEnchant.h | 6 --- src/mc/world/item/enchanting/DensityEnchant.h | 6 --- src/mc/world/item/enchanting/DiggingEnchant.h | 6 --- .../item/enchanting/EnchantSlotEnumHasher.h | 8 +--- src/mc/world/item/enchanting/EnchantUtils.h | 6 --- src/mc/world/item/enchanting/FishingEnchant.h | 6 --- .../item/enchanting/FrostWalkerEnchant.h | 6 --- src/mc/world/item/enchanting/LootEnchant.h | 6 --- .../item/enchanting/MeleeWeaponEnchant.h | 6 --- src/mc/world/item/enchanting/MendingEnchant.h | 6 --- .../world/item/enchanting/ProtectionEnchant.h | 6 --- .../world/item/enchanting/SoulSpeedEnchant.h | 6 --- .../world/item/enchanting/SwiftSneakEnchant.h | 6 --- src/mc/world/item/enchanting/SwimEnchant.h | 6 --- .../enchanting/TridentChannelingEnchant.h | 6 --- .../item/enchanting/TridentImpalerEnchant.h | 6 --- .../item/enchanting/TridentLoyaltyEnchant.h | 6 --- .../item/enchanting/TridentRiptideEnchant.h | 6 --- .../world/item/enchanting/WindBurstEnchant.h | 6 --- .../item/registry/ExplorationMapRegistry.h | 6 --- .../world/item/registry/ItemRegistryManager.h | 6 --- .../world/level/ActorDimensionTransferProxy.h | 5 -- src/mc/world/level/ActorEventBroadcaster.h | 6 --- src/mc/world/level/ActorManagerProxy.h | 6 --- src/mc/world/level/ArmorTrimUnloader.h | 8 +--- src/mc/world/level/BiomeFilterGroup.h | 6 --- src/mc/world/level/BlockActorLevelListener.h | 5 -- src/mc/world/level/BlockDataFetchResult.h | 8 +--- src/mc/world/level/BlockSourceValidityProxy.h | 6 --- .../level/BossEventSubscriptionManager.h | 6 --- src/mc/world/level/ClassroomModeListener.h | 6 --- .../level/DeregisterTagsFromActorProxy.h | 6 --- src/mc/world/level/DividedPos.h | 8 +--- src/mc/world/level/DividedPos2d.h | 8 +--- src/mc/world/level/FileArchiver.h | 6 --- src/mc/world/level/FoliageColor.h | 6 --- src/mc/world/level/GameplayUserManagerProxy.h | 6 --- .../level/IActorDimensionTransferProxy.h | 6 --- .../world/level/IActorDimensionTransferer.h | 6 --- src/mc/world/level/IActorManagerConnector.h | 6 --- src/mc/world/level/IActorManagerProxy.h | 6 --- src/mc/world/level/IAddActorEntityProxy.h | 6 --- .../world/level/IAddDisplayActorEntityProxy.h | 6 --- .../world/level/IBlockSourceValidityProxy.h | 6 --- .../level/IDeregisterTagsFromActorProxy.h | 6 --- src/mc/world/level/IDimensionFactory.h | 6 --- .../world/level/IDimensionManagerConnector.h | 6 --- .../world/level/IDisplayActorManagerProxy.h | 6 --- .../level/IGameplayUserManagerConnector.h | 6 --- src/mc/world/level/ILevel.h | 6 --- .../world/level/ILevelBlockDestroyerProxy.h | 6 --- src/mc/world/level/ILevelCrashDumpManager.h | 6 --- .../level/ILevelEventManagerCoordinator.h | 6 --- src/mc/world/level/ILevelRandom.h | 6 --- .../world/level/ILevelSoundManagerConnector.h | 6 --- src/mc/world/level/IMapDataManagerOptions.h | 6 --- src/mc/world/level/IPhotoManagerConnector.h | 6 --- .../level/IPlayerDimensionTransferConnector.h | 6 --- .../level/IPlayerDimensionTransferProxy.h | 6 --- .../world/level/IPlayerDimensionTransferer.h | 6 --- src/mc/world/level/IPlayerTickProxy.h | 6 --- .../level/IServerWorldDebugRenderProxy.h | 6 --- src/mc/world/level/ISharedSpawnGetter.h | 6 --- .../world/level/ITickDeltaTimeManagerProxy.h | 6 --- src/mc/world/level/ITickTimeManagerProxy.h | 6 --- src/mc/world/level/IWeatherManagerProxy.h | 6 --- src/mc/world/level/IWorldRegistriesProvider.h | 6 --- src/mc/world/level/LevelBlockDestroyerProxy.h | 6 --- src/mc/world/level/LevelListCacheObserver.h | 6 --- src/mc/world/level/LevelListener.h | 6 --- src/mc/world/level/LevelTagIDType.h | 8 +--- src/mc/world/level/LevelTagSetIDType.h | 8 +--- src/mc/world/level/MobSpawnInfo.h | 6 --- .../level/PlayerDimensionTransferProxy.h | 6 --- src/mc/world/level/PlayerTickProxy.h | 6 --- src/mc/world/level/ScalarOptional.h | 8 +--- src/mc/world/level/ServerLevelRandom.h | 5 -- .../world/level/ServerWorldDebugRenderProxy.h | 6 --- src/mc/world/level/SpawnFinder.h | 6 --- src/mc/world/level/biome/BiomeTagComponent.h | 6 --- src/mc/world/level/biome/BiomeTagIDType.h | 8 +--- src/mc/world/level/biome/BiomeTagSetIDType.h | 8 +--- src/mc/world/level/biome/NetherSurfaceFlag.h | 6 --- src/mc/world/level/biome/ToFloatFunction.h | 8 +--- src/mc/world/level/biome/VanillaBiomes.h | 6 --- .../ClimateBiomeComponentGlue.h | 6 --- ...tinoiseGenerationRulesBiomeComponentGlue.h | 6 --- .../OverworldHeightBiomeComponentGlue.h | 6 --- .../component_glue/TagsBiomeComponentGlue.h | 6 --- .../TheEndSurfaceBiomeComponentGlue.h | 6 --- .../biome/components/BiomeComponentBase.h | 6 --- .../FrozenNoiseBasedTemperatureFlag.h | 6 --- .../components/NoiseBasedColorPaletteFlag.h | 6 --- .../biome/components/OceanFrozenSurfaceFlag.h | 6 --- .../biome/components/SwampBiomeSurfaceFlag.h | 6 --- .../biome/components/TheEndBiomeSurfaceFlag.h | 6 --- .../level/biome/glue/IBiomeComponentGlue.h | 6 --- .../registry/BiomeJsonDocumentUpgrader.h | 6 --- .../level/biome/registry/BiomeRegistry.h | 8 +--- .../UpgraderFrom_v1_12_To_v1_13.h | 5 -- .../UpgraderFrom_v1_13_To_v1_20_60.h | 5 -- src/mc/world/level/biome/source/BiomeSource.h | 6 --- .../CappedSurfaceBuilder.h | 6 --- .../OverworldDefaultSurfaceBuilder.h | 6 --- .../TheEndSurfaceBuilder.h | 6 --- src/mc/world/level/block/ActorBlockBase.h | 8 +--- src/mc/world/level/block/BlockTintResolver.h | 6 --- src/mc/world/level/block/BlockVolumeBase.h | 6 --- .../world/level/block/DefaultSculkBehavior.h | 6 --- src/mc/world/level/block/FrontAndTopUtils.h | 8 +--- .../level/block/GetCollisionShapeInterface.h | 6 --- .../level/block/IResourceDropsStrategy.h | 6 --- src/mc/world/level/block/LevelSoundEventMap.h | 6 --- .../world/level/block/LevelSoundEventUtils.h | 6 --- src/mc/world/level/block/LiquidBlockDynamic.h | 6 --- src/mc/world/level/block/LiquidBlockStatic.h | 6 --- src/mc/world/level/block/NyliumBlock.h | 18 ++------ src/mc/world/level/block/SculkBehavior.h | 6 --- src/mc/world/level/block/SculkBlockBehavior.h | 6 --- .../level/block/SculkVeinBlockBehavior.h | 6 --- .../level/block/SculkVeinMultifaceSpreader.h | 6 --- .../level/block/SimpleBlockVolumeIterator.h | 6 --- .../block/UpdateEntityAfterFallOnInterface.h | 6 --- .../world/level/block/VanillaBlockUpdater.h | 6 --- .../level/block/actor/BlockActorFactory.h | 6 --- .../CalibratedSculkSensorVibrationConfig.h | 6 --- .../block/actor/LabTableReactionComponent.h | 6 --- .../actor/RandomizableBlockActorContainer.h | 6 --- .../RandomizableBlockActorFillingContainer.h | 6 --- .../world/level/block/actor/VaultBlockActor.h | 12 ----- .../block_events/BlockPlaceEventExecutor.h | 6 --- .../NbtToBlockCache.h | 8 +--- .../components/BlockCollisionBoxComponent.h | 8 +--- .../block/components/BlockComponentStorage.h | 6 --- .../BlockComponentStorageFinalizer.h | 6 --- .../BlockCreativeGroupDescription.h | 6 --- .../BlockLegacyComponentStorageFinalizer.h | 6 --- .../BlockPartVisibilityDescription.h | 6 --- .../components/BlockSelectionBoxComponent.h | 8 +--- .../block/components/BlockUnitCubeComponent.h | 6 --- .../components/BlockUnitCubeDescription.h | 6 --- .../NetworkedBlockComponentDescription.h | 8 +--- .../BlockBreathability11910Upgrade.h | 5 -- .../BlockCollision118Upgrade.h | 5 -- .../BlockCollision11910Upgrade.h | 5 -- .../BlockCraftingTable118Upgrade.h | 5 -- .../BlockCraftingTable11910Upgrade.h | 5 -- .../BlockCreativeGroup11920Upgrade.h | 5 -- .../BlockDestructibleByMining11910Upgrade.h | 5 -- .../BlockDestructibleByMining11920Upgrade.h | 5 -- .../BlockDestructibleByMining12130Upgrade.h | 5 -- .../BlockDisplayName11910Upgrade.h | 5 -- .../BlockDisplayName11930Upgrade.h | 5 -- ...BlockDestructibleByExplosion11920Upgrade.h | 5 -- .../BlockExplosionResistance11910Upgrade.h | 5 -- .../BlockFlammable11910Upgrade.h | 5 -- .../BlockFriction11910Upgrade.h | 5 -- .../BlockFriction11920Upgrade.h | 5 -- .../block_geometry_serializer/Constraint.h | 6 --- .../BlockGeometry11910Upgrade.h | 5 -- .../BlockGeometry12010Upgrade.h | 5 -- .../BlockUnitCube12060Upgrade.h | 5 -- .../BlockLightDampening118Upgrade.h | 5 -- .../BlockLightDampening11910Upgrade.h | 5 -- .../BlockLightDampening11940Upgrade.h | 5 -- .../BlockLightEmission11910Upgrade.h | 5 -- .../BlockLoot11910Upgrade.h | 5 -- .../BlockMapColor11910Upgrade.h | 5 -- .../block_matrix_helpers/RotationKeyHasher.h | 8 +--- .../BlockPartVisibility11980Upgrade.h | 6 --- .../BlockQueuedTicking11910Upgrade.h | 5 -- .../BlockAimCollision118Upgrade.h | 5 -- .../BlockAimCollision11910Upgrade.h | 5 -- .../BlockSelectionBox11920Upgrade.h | 5 -- ...BlockTranformationVersioning11980Upgrade.h | 5 -- .../triggers/BlockTriggerDescription.h | 8 +--- .../triggers/OnInteractTriggerDescription.h | 6 --- .../triggers/OnPlacedTriggerDescription.h | 6 --- .../OnPlayerDestroyedTriggerDescription.h | 6 --- .../OnPlayerPlacingTriggerDescription.h | 6 --- .../triggers/OnStepOffTriggerDescription.h | 6 --- .../triggers/OnStepOnTriggerDescription.h | 6 --- .../BlockDescription11940Upgrade.h | 5 -- .../block/events/BlockEventResponseFactory.h | 6 --- .../block/registry/BlockRegistryManager.h | 6 --- .../registry/ClientUnknownBlockTypeRegistry.h | 6 --- .../registry/IUnknownBlockTypeRegistry.h | 6 --- .../registry/VanillaDataDrivenGeometry.h | 6 --- .../level/block/states/BlockStateVariant.h | 8 +--- .../block/states/BuiltInBlockStateVariant.h | 8 +--- .../states/VanillaBlockStateTransformUtils.h | 6 --- .../block_trait/IGetPlacementBlockCallback.h | 6 --- .../level/block/traits/block_trait/ITrait.h | 6 --- .../placement_position/PlacementPosition.h | 12 ----- .../BlockHitDetectResultEqual.h | 8 +--- .../BlockHitDetectResultHash.h | 8 +--- src/mc/world/level/chunk/DynamicSpawnArea.h | 8 +--- src/mc/world/level/chunk/EmptyChunkSource.h | 6 --- .../level/chunk/FullStructureBoundingBox.h | 8 +--- .../chunk/ILevelChunkEventManagerConnector.h | 6 --- .../chunk/ILevelChunkEventManagerProxy.h | 6 --- .../level/chunk/ILevelChunkSaveManagerProxy.h | 6 --- src/mc/world/level/chunk/ImguiProfiler.h | 6 --- .../level/chunk/LevelChunkGridAreaElement.h | 8 +--- .../level/chunk/MetaDataTypeVisitor_Set.h | 8 +--- .../world/level/chunk/RequestActionLoader.h | 6 --- src/mc/world/level/chunk/StorageTypeHelper.h | 8 +--- .../level/chunk/SubChunkDelayedDeleter.h | 8 +--- src/mc/world/level/chunk/SubChunkStorage.h | 8 +--- .../ScopedTimedSection.h | 8 +--- .../dimension/ChunkBuildOrderPolicyBase.h | 6 --- .../world/level/dimension/ChunkLoadPriority.h | 8 +--- .../world/level/dimension/NetherDimension.h | 6 --- .../world/level/dimension/VanillaDimensions.h | 6 --- .../feature/AzaleaTreeAndRootsFeature.h | 6 --- .../level/levelgen/feature/BambooFeature.h | 6 --- .../levelgen/feature/BasaltColumnsFeature.h | 6 --- .../levelgen/feature/BasaltPillarFeature.h | 6 --- .../level/levelgen/feature/BlueIceFeature.h | 6 --- .../levelgen/feature/BonusChestFeature.h | 6 --- .../level/levelgen/feature/CactusFeature.h | 6 --- .../levelgen/feature/CoralCrustFeature.h | 6 --- .../level/levelgen/feature/CoralFeature.h | 6 --- .../level/levelgen/feature/CoralHangFeature.h | 6 --- .../level/levelgen/feature/DeadBushFeature.h | 6 --- .../level/levelgen/feature/DeltaFeature.h | 6 --- .../levelgen/feature/DesertWellFeature.h | 6 --- .../levelgen/feature/DoublePlantFeature.h | 6 --- .../level/levelgen/feature/DripleafFeature.h | 6 --- .../feature/DripstoneClusterFeature.h | 6 --- .../levelgen/feature/EndGatewayFeature.h | 6 --- .../level/levelgen/feature/EndIslandFeature.h | 6 --- .../levelgen/feature/EyeblossomFeature.h | 6 --- .../level/levelgen/feature/GlowStoneFeature.h | 6 --- .../level/levelgen/feature/IceSpikeFeature.h | 6 --- .../level/levelgen/feature/IcebergFeature.h | 6 --- .../level/levelgen/feature/KelpFeature.h | 6 --- .../levelgen/feature/LargeDripstoneFeature.h | 6 --- .../feature/LegacyEmeraldOreFeature.h | 6 --- .../level/levelgen/feature/MelonFeature.h | 6 --- .../levelgen/feature/MonsterRoomFeature.h | 5 -- .../levelgen/feature/NetherFireFeature.h | 6 --- .../levelgen/feature/PinkPetalsFeature.h | 6 --- .../levelgen/feature/PodzolAreaFeature.h | 6 --- .../feature/PointedDripstoneFeature.h | 6 --- .../level/levelgen/feature/ReedsFeature.h | 6 --- .../levelgen/feature/SeaAnemoneFeature.h | 6 --- .../level/levelgen/feature/SeaPickleFeature.h | 6 --- .../level/levelgen/feature/SeagrassFeature.h | 6 --- .../feature/TwistingVinesClusterFeature.h | 6 --- .../feature/UnderwaterCanyonFeature.h | 6 --- .../levelgen/feature/VanillaTreeFeature.h | 6 --- .../level/levelgen/feature/VinesFeature.h | 6 --- .../levelgen/feature/VinesSingleFaceFeature.h | 6 --- .../level/levelgen/feature/WaterlilyFeature.h | 6 --- .../feature/WeepingVinesClusterFeature.h | 6 --- .../feature_loading/AbstractFeatureHolder.h | 6 --- .../feature_loading/ConcreteFeatureHolder.h | 8 +--- .../levelgen/feature/helpers/ITreeCanopy.h | 6 --- .../levelgen/feature/helpers/ITreeRoot.h | 6 --- .../levelgen/feature/helpers/ITreeTrunk.h | 6 --- .../feature/registry/FeatureUpgrader.h | 6 --- .../levelgen/structure/AncientCityPiece.h | 6 --- .../level/levelgen/structure/BastionPiece.h | 6 --- .../level/levelgen/structure/BlockSelector.h | 6 --- .../levelgen/structure/BuriedTreasureStart.h | 6 --- .../levelgen/structure/DesertPyramidPiece.h | 6 --- .../level/levelgen/structure/EndCityPieces.h | 30 ------------ .../level/levelgen/structure/FitDoubleXRoom.h | 6 --- .../levelgen/structure/FitDoubleXYRoom.h | 6 --- .../level/levelgen/structure/FitDoubleYRoom.h | 6 --- .../levelgen/structure/FitDoubleYZRoom.h | 6 --- .../level/levelgen/structure/FitDoubleZRoom.h | 6 --- .../level/levelgen/structure/FitSimpleRoom.h | 6 --- .../levelgen/structure/FitSimpleTopRoom.h | 6 --- .../structure/ILegacyStructureTemplate.h | 6 --- .../levelgen/structure/IStructureTemplate.h | 6 --- .../levelgen/structure/JunglePyramidPiece.h | 6 --- .../levelgen/structure/MineshaftFeature.h | 6 --- .../levelgen/structure/MineshaftStairs.h | 6 --- .../level/levelgen/structure/MineshaftStart.h | 6 --- .../levelgen/structure/MonumentRoomFitter.h | 6 --- .../levelgen/structure/NBBridgeCrossing.h | 6 --- .../levelgen/structure/NBBridgeStraight.h | 6 --- .../structure/NBCastleCorridorStairsPiece.h | 6 --- .../structure/NBCastleCorridorTBalconyPiece.h | 6 --- .../levelgen/structure/NBCastleEntrance.h | 6 --- .../NBCastleSmallCorridorCrossingPiece.h | 6 --- .../structure/NBCastleSmallCorridorPiece.h | 6 --- .../levelgen/structure/NBCastleStalkRoom.h | 6 --- .../levelgen/structure/NBMonsterThrone.h | 6 --- .../level/levelgen/structure/NBRoomCrossing.h | 6 --- .../level/levelgen/structure/NBStairsRoom.h | 6 --- .../levelgen/structure/NetherFortressStart.h | 6 --- .../structure/OceanMonumentCoreRoom.h | 6 --- .../structure/OceanMonumentDoubleXRoom.h | 6 --- .../structure/OceanMonumentDoubleXYRoom.h | 6 --- .../structure/OceanMonumentDoubleYRoom.h | 6 --- .../structure/OceanMonumentDoubleYZRoom.h | 6 --- .../structure/OceanMonumentDoubleZRoom.h | 6 --- .../structure/OceanMonumentEntryRoom.h | 6 --- .../structure/OceanMonumentPenthouse.h | 6 --- .../structure/OceanMonumentSimpleTopRoom.h | 6 --- .../levelgen/structure/OceanRuinPieces.h | 6 --- .../structure/PillagerOutpostPieces.h | 6 --- .../levelgen/structure/PillagerOutpostStart.h | 6 --- .../levelgen/structure/RuinedPortalStart.h | 6 --- .../levelgen/structure/SHChestCorridor.h | 6 --- .../level/levelgen/structure/SHLeftTurn.h | 6 --- .../level/levelgen/structure/SHPortalRoom.h | 6 --- .../level/levelgen/structure/SHPrisonHall.h | 6 --- .../level/levelgen/structure/SHRightTurn.h | 6 --- .../levelgen/structure/SHStraightStairsDown.h | 6 --- .../level/levelgen/structure/ShipwreckPiece.h | 6 --- .../level/levelgen/structure/ShipwreckStart.h | 6 --- .../levelgen/structure/StructureHelpers.h | 6 --- .../level/levelgen/structure/VillagePiece.h | 6 --- .../structure/WoodlandMansionPieces.h | 30 ------------ .../constraints/IStructureConstraint.h | 6 --- .../structure/registry/StructurePools.h | 6 --- .../structure/registry/StructureSets.h | 6 --- .../levelgen/structure/registry/Structures.h | 6 --- ...illaAncientCityJigsawStructureBlockRules.h | 6 --- ...anillaAncientCityJigsawStructureElements.h | 6 --- .../VanillaAncientCityJigsawStructures.h | 6 --- .../VanillaBastionJigsawStructureBlockRules.h | 6 --- .../VanillaBastionJigsawStructureElements.h | 6 --- .../registry/VanillaBastionJigsawStructures.h | 6 --- ...nillaTrailRuinsJigsawStructureBlockRules.h | 6 --- .../VanillaTrailRuinsJigsawStructures.h | 6 --- .../VanillaVillageJigsawStructureActorRules.h | 6 --- .../VanillaVillageJigsawStructureBlockRules.h | 6 --- ...nillaVillageJigsawStructureBlockTagRules.h | 6 --- .../VanillaVillageJigsawStructureElements.h | 6 --- .../registry/VanillaVillageJigsawStructures.h | 6 --- .../structurepools/EmptyPoolElement.h | 6 --- .../IStructurePoolActorPredicate.h | 6 --- .../IStructurePoolBlockPredicate.h | 6 --- .../IStructurePoolBlockTagPredicate.h | 6 --- .../StructurePoolActorPredicateAlwaysTrue.h | 6 --- .../StructurePoolBlockPredicateAlwaysTrue.h | 5 -- ...StructurePoolBlockTagPredicateAlwaysTrue.h | 6 --- .../structurepools/StructurePoolElement.h | 6 --- .../structurepools/alias/PoolAliasBinding.h | 6 --- .../levelgen/synth/MultiOctaveNoiseImpl.h | 8 +--- .../level/levelgen/synth/NormalNoiseImpl.h | 8 +--- .../noise_utils/DoublesForFloatsRandom.h | 6 --- .../noise_utils/FloatsForDoublesRandom.h | 6 --- .../levelgen/v1/IPreliminarySurfaceProvider.h | 6 --- .../v1/NullPreliminarySurfaceProvider.h | 6 --- .../level/levelgen/v2/ChunkStructureAccess.h | 6 --- .../world/level/levelgen/v2/HeightProvider.h | 6 --- .../world/level/levelgen/v2/JigsawAssembler.h | 6 --- .../level/levelgen/v2/JigsawStructureParser.h | 6 --- .../level/levelgen/v2/StructureBuilder.h | 8 +--- .../levelgen/v2/processors/AlwaysTrueType.h | 8 +--- .../v2/processors/JigsawReplacement.h | 6 --- .../v2/processors/StructureProcessor.h | 6 --- .../v2/processors/block_entity/ModifierType.h | 6 --- .../v2/processors/block_entity/Passthrough.h | 6 --- .../v2/processors/block_rules/AlwaysTrue.h | 6 --- .../v2/processors/block_rules/TestType.h | 6 --- .../v2/processors/pos_rules/AlwaysTrue.h | 6 --- .../v2/processors/pos_rules/TestType.h | 6 --- .../levelgen/v2/providers/IntProviderType.h | 6 --- .../level/material/MaterialTypeEnumHasher.h | 8 +--- .../AddOceanTemperatureOperationNode.h | 6 --- .../level/newbiome/IslandOperationNode.h | 6 --- .../world/level/newbiome/MixerOperationNode.h | 8 +--- .../level/newbiome/NetherOperationNode.h | 6 --- .../level/newbiome/OperationGraphResult.h | 8 +--- src/mc/world/level/newbiome/OperationNode.h | 8 +--- .../world/level/newbiome/RootOperationNode.h | 8 +--- .../NeighborhoodReader.h | 8 +--- .../operation_node_details/TransferData.h | 8 +--- .../operation_node_details/WorkingData.h | 8 +--- .../operation_node_filters/AddEdgeCoolWarm.h | 6 --- .../operation_node_filters/AddEdgeHeatIce.h | 6 --- .../operation_node_filters/AddEdgeSpecial.h | 8 +--- .../operation_node_filters/AddIsland.h | 8 +--- .../AddIslandWithTemperature.h | 8 +--- .../operation_node_filters/AddOceanEdge.h | 6 --- .../newbiome/operation_node_filters/AddSnow.h | 8 +--- .../operation_node_filters/FilterBase.h | 8 +--- .../RemoveTooMuchOcean.h | 8 +--- .../newbiome/operation_node_filters/River.h | 6 --- .../newbiome/operation_node_zooms/Zoom2x.h | 8 +--- .../operation_node_zooms/Zoom2xFuzzy.h | 8 +--- .../operation_node_zooms/Zoom4xVoronoi.h | 8 +--- .../newbiome/operation_node_zooms/ZoomBase.h | 8 +--- .../world/level/pathfinder/IPathBlockSource.h | 6 --- .../level/pathfinder/PotentialPositionIndex.h | 6 --- .../level/position_trackingdb/OperationBase.h | 6 --- src/mc/world/level/spawn/InLava.h | 6 --- src/mc/world/level/spawn/InWater.h | 6 --- src/mc/world/level/spawn/NoRestrictions.h | 6 --- src/mc/world/level/spawn/NullToken.h | 8 +--- src/mc/world/level/spawn/OnGround.h | 6 --- src/mc/world/level/spawn/PlacementType.h | 6 --- src/mc/world/level/storage/Experiments.h | 5 -- src/mc/world/level/storage/FlushableEnv.h | 6 --- src/mc/world/level/storage/ILevelListCache.h | 6 --- .../storage/ILevelStorageManagerConnector.h | 6 --- .../world/level/storage/LevelStorageSource.h | 6 --- src/mc/world/level/storage/MockLevelStorage.h | 6 --- src/mc/world/level/storage/NullLogger.h | 6 --- .../world/level/storage/SuspendPlayerSave.h | 8 +--- .../loot/functions/ExplosionDecayFunction.h | 6 --- .../loot/functions/LootItemFunctions.h | 6 --- .../loot/functions/RandomDyeFunction.h | 6 --- .../functions/SetDataFromColorIndexFunction.h | 6 --- .../loot/functions/SmeltItemFunction.h | 6 --- .../loot/predicates/LootItemCondition.h | 6 --- .../loot/predicates/LootItemConditions.h | 6 --- .../LootItemKilledByPlayerCondition.h | 6 --- .../LootItemKilledByPlayerOrPetsCondition.h | 6 --- src/mc/world/level/ticking/ITickingArea.h | 6 --- src/mc/world/level/ticking/ITickingAreaView.h | 6 --- src/mc/world/level/ticking/TickingAreaList.h | 5 -- src/mc/world/module/GameModuleServer.h | 5 -- .../world/module/IGameModuleDocumentation.h | 8 +--- src/mc/world/module/IGameModuleShared.h | 6 --- src/mc/world/phys/rope/AABBPred.h | 8 +--- src/mc/world/response/ActorCommandResponse.h | 6 --- src/mc/world/response/ActorEventResponse.h | 6 --- .../response/ActorQueueCommandResponse.h | 6 --- src/mc/world/response/CommandResponse.h | 6 --- src/mc/world/response/EventResponse.h | 6 --- src/mc/world/response/ResetTargetResponse.h | 6 --- src/mc/world/response/SwingEventResponse.h | 6 --- src/mc/world/scores/ServerScoreboard.h | 8 +--- src/mc/world/vanilla_world_systems/Impl.h | 6 --- 3595 files changed, 1069 insertions(+), 23332 deletions(-) diff --git a/src/mc/certificates/ExtendedCertificate.h b/src/mc/certificates/ExtendedCertificate.h index 041f7dbdc5..63d9457fea 100644 --- a/src/mc/certificates/ExtendedCertificate.h +++ b/src/mc/certificates/ExtendedCertificate.h @@ -9,12 +9,6 @@ namespace mce { class UUID; } // clang-format on class ExtendedCertificate { -public: - // prevent constructor by default - ExtendedCertificate& operator=(ExtendedCertificate const&); - ExtendedCertificate(ExtendedCertificate const&); - ExtendedCertificate(); - public: // static functions // NOLINTBEGIN diff --git a/src/mc/certificates/MessPublicKeyManager.h b/src/mc/certificates/MessPublicKeyManager.h index cf72bc303e..2a788917dc 100644 --- a/src/mc/certificates/MessPublicKeyManager.h +++ b/src/mc/certificates/MessPublicKeyManager.h @@ -8,12 +8,6 @@ namespace Bedrock::Threading { class Mutex; } // clang-format on class MessPublicKeyManager { -public: - // prevent constructor by default - MessPublicKeyManager& operator=(MessPublicKeyManager const&); - MessPublicKeyManager(MessPublicKeyManager const&); - MessPublicKeyManager(); - public: // static functions // NOLINTBEGIN diff --git a/src/mc/certificates/PublicKeySignatureType.h b/src/mc/certificates/PublicKeySignatureType.h index df95e85932..15db8bff93 100644 --- a/src/mc/certificates/PublicKeySignatureType.h +++ b/src/mc/certificates/PublicKeySignatureType.h @@ -2,10 +2,4 @@ #include "mc/_HeaderOutputPredefine.h" -struct PublicKeySignatureType { -public: - // prevent constructor by default - PublicKeySignatureType& operator=(PublicKeySignatureType const&); - PublicKeySignatureType(PublicKeySignatureType const&); - PublicKeySignatureType(); -}; +struct PublicKeySignatureType {}; diff --git a/src/mc/certificates/ResponseVerifier.h b/src/mc/certificates/ResponseVerifier.h index 96873fc473..ba3ed53230 100644 --- a/src/mc/certificates/ResponseVerifier.h +++ b/src/mc/certificates/ResponseVerifier.h @@ -8,12 +8,6 @@ namespace Json { class Value; } // clang-format on class ResponseVerifier { -public: - // prevent constructor by default - ResponseVerifier& operator=(ResponseVerifier const&); - ResponseVerifier(ResponseVerifier const&); - ResponseVerifier(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/certificates/identity/IActiveDirectoryIdentityTelemetry.h b/src/mc/certificates/identity/IActiveDirectoryIdentityTelemetry.h index 97c5beaaaf..abcde88e76 100644 --- a/src/mc/certificates/identity/IActiveDirectoryIdentityTelemetry.h +++ b/src/mc/certificates/identity/IActiveDirectoryIdentityTelemetry.h @@ -8,12 +8,6 @@ #include "mc/events/identity/EduSignInStage.h" class IActiveDirectoryIdentityTelemetry { -public: - // prevent constructor by default - IActiveDirectoryIdentityTelemetry& operator=(IActiveDirectoryIdentityTelemetry const&); - IActiveDirectoryIdentityTelemetry(IActiveDirectoryIdentityTelemetry const&); - IActiveDirectoryIdentityTelemetry(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/certificates/identity/IEduSsoStrategy.h b/src/mc/certificates/identity/IEduSsoStrategy.h index 4e94ec1190..f338f19de3 100644 --- a/src/mc/certificates/identity/IEduSsoStrategy.h +++ b/src/mc/certificates/identity/IEduSsoStrategy.h @@ -20,12 +20,6 @@ namespace Json { class Value; } namespace Identity { class IEduSsoStrategy { -public: - // prevent constructor by default - IEduSsoStrategy& operator=(IEduSsoStrategy const&); - IEduSsoStrategy(IEduSsoStrategy const&); - IEduSsoStrategy(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/certificates/identity/ISettingStorageStrategy.h b/src/mc/certificates/identity/ISettingStorageStrategy.h index a8260bb84a..a5d04b01a0 100644 --- a/src/mc/certificates/identity/ISettingStorageStrategy.h +++ b/src/mc/certificates/identity/ISettingStorageStrategy.h @@ -10,12 +10,6 @@ namespace Json { class Value; } namespace Identity { struct ISettingStorageStrategy { -public: - // prevent constructor by default - ISettingStorageStrategy& operator=(ISettingStorageStrategy const&); - ISettingStorageStrategy(ISettingStorageStrategy const&); - ISettingStorageStrategy(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/certificates/identity/edu/auth/CredentialReplaySubject.h b/src/mc/certificates/identity/edu/auth/CredentialReplaySubject.h index abdea8aa29..dcc8d3b6a8 100644 --- a/src/mc/certificates/identity/edu/auth/CredentialReplaySubject.h +++ b/src/mc/certificates/identity/edu/auth/CredentialReplaySubject.h @@ -5,12 +5,6 @@ namespace edu::auth { template -class CredentialReplaySubject { -public: - // prevent constructor by default - CredentialReplaySubject& operator=(CredentialReplaySubject const&); - CredentialReplaySubject(CredentialReplaySubject const&); - CredentialReplaySubject(); -}; +class CredentialReplaySubject {}; } // namespace edu::auth diff --git a/src/mc/certificates/identity/edu/auth/CredentialsObserver.h b/src/mc/certificates/identity/edu/auth/CredentialsObserver.h index d42670844d..32787f491d 100644 --- a/src/mc/certificates/identity/edu/auth/CredentialsObserver.h +++ b/src/mc/certificates/identity/edu/auth/CredentialsObserver.h @@ -23,12 +23,6 @@ namespace edu::auth { struct SignInCredsRefreshFailed; } namespace edu::auth { struct CredentialsObserver : public ::Core::Observer<::edu::auth::CredentialsObserver, ::Core::SingleThreadedLock> { -public: - // prevent constructor by default - CredentialsObserver& operator=(CredentialsObserver const&); - CredentialsObserver(CredentialsObserver const&); - CredentialsObserver(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/certificates/identity/edu/auth/CredsAuthComplete.h b/src/mc/certificates/identity/edu/auth/CredsAuthComplete.h index 59469ff7f2..09bfd6b858 100644 --- a/src/mc/certificates/identity/edu/auth/CredsAuthComplete.h +++ b/src/mc/certificates/identity/edu/auth/CredsAuthComplete.h @@ -4,12 +4,6 @@ namespace edu::auth { -struct CredsAuthComplete { -public: - // prevent constructor by default - CredsAuthComplete& operator=(CredsAuthComplete const&); - CredsAuthComplete(CredsAuthComplete const&); - CredsAuthComplete(); -}; +struct CredsAuthComplete {}; } // namespace edu::auth diff --git a/src/mc/certificates/identity/edu/auth/CredsExpired.h b/src/mc/certificates/identity/edu/auth/CredsExpired.h index 80c332e67a..e7c2afd19b 100644 --- a/src/mc/certificates/identity/edu/auth/CredsExpired.h +++ b/src/mc/certificates/identity/edu/auth/CredsExpired.h @@ -4,12 +4,6 @@ namespace edu::auth { -struct CredsExpired { -public: - // prevent constructor by default - CredsExpired& operator=(CredsExpired const&); - CredsExpired(CredsExpired const&); - CredsExpired(); -}; +struct CredsExpired {}; } // namespace edu::auth diff --git a/src/mc/certificates/identity/edu/auth/CredsLost.h b/src/mc/certificates/identity/edu/auth/CredsLost.h index 06128417c4..cc4040a0d1 100644 --- a/src/mc/certificates/identity/edu/auth/CredsLost.h +++ b/src/mc/certificates/identity/edu/auth/CredsLost.h @@ -4,12 +4,6 @@ namespace edu::auth { -struct CredsLost { -public: - // prevent constructor by default - CredsLost& operator=(CredsLost const&); - CredsLost(CredsLost const&); - CredsLost(); -}; +struct CredsLost {}; } // namespace edu::auth diff --git a/src/mc/certificates/identity/edu/auth/GenericCredentialsEvent.h b/src/mc/certificates/identity/edu/auth/GenericCredentialsEvent.h index cfa2ca2c82..02f2bee216 100644 --- a/src/mc/certificates/identity/edu/auth/GenericCredentialsEvent.h +++ b/src/mc/certificates/identity/edu/auth/GenericCredentialsEvent.h @@ -5,12 +5,6 @@ namespace edu::auth { template -struct GenericCredentialsEvent { -public: - // prevent constructor by default - GenericCredentialsEvent& operator=(GenericCredentialsEvent const&); - GenericCredentialsEvent(GenericCredentialsEvent const&); - GenericCredentialsEvent(); -}; +struct GenericCredentialsEvent {}; } // namespace edu::auth diff --git a/src/mc/certificates/identity/edu/auth/GraphCredsRefreshFailed.h b/src/mc/certificates/identity/edu/auth/GraphCredsRefreshFailed.h index 8c440aed56..2f14d3002f 100644 --- a/src/mc/certificates/identity/edu/auth/GraphCredsRefreshFailed.h +++ b/src/mc/certificates/identity/edu/auth/GraphCredsRefreshFailed.h @@ -4,12 +4,6 @@ namespace edu::auth { -struct GraphCredsRefreshFailed { -public: - // prevent constructor by default - GraphCredsRefreshFailed& operator=(GraphCredsRefreshFailed const&); - GraphCredsRefreshFailed(GraphCredsRefreshFailed const&); - GraphCredsRefreshFailed(); -}; +struct GraphCredsRefreshFailed {}; } // namespace edu::auth diff --git a/src/mc/certificates/identity/edu/auth/SignInCredsRefreshFailed.h b/src/mc/certificates/identity/edu/auth/SignInCredsRefreshFailed.h index dfd8532df9..4d3ac3ea4c 100644 --- a/src/mc/certificates/identity/edu/auth/SignInCredsRefreshFailed.h +++ b/src/mc/certificates/identity/edu/auth/SignInCredsRefreshFailed.h @@ -4,12 +4,6 @@ namespace edu::auth { -struct SignInCredsRefreshFailed { -public: - // prevent constructor by default - SignInCredsRefreshFailed& operator=(SignInCredsRefreshFailed const&); - SignInCredsRefreshFailed(SignInCredsRefreshFailed const&); - SignInCredsRefreshFailed(); -}; +struct SignInCredsRefreshFailed {}; } // namespace edu::auth diff --git a/src/mc/certificates/identity/web_services/IEduWebService.h b/src/mc/certificates/identity/web_services/IEduWebService.h index 7245afa878..7504fb9035 100644 --- a/src/mc/certificates/identity/web_services/IEduWebService.h +++ b/src/mc/certificates/identity/web_services/IEduWebService.h @@ -14,12 +14,6 @@ namespace WebServices::EduSignin { struct SigninResponse; } namespace WebServices { struct IEduWebService { -public: - // prevent constructor by default - IEduWebService& operator=(IEduWebService const&); - IEduWebService(IEduWebService const&); - IEduWebService(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/client/3d_export/glTFExportData.h b/src/mc/client/3d_export/glTFExportData.h index aed70f920e..e8e81f1ea0 100644 --- a/src/mc/client/3d_export/glTFExportData.h +++ b/src/mc/client/3d_export/glTFExportData.h @@ -2,10 +2,4 @@ #include "mc/_HeaderOutputPredefine.h" -struct glTFExportData { -public: - // prevent constructor by default - glTFExportData& operator=(glTFExportData const&); - glTFExportData(glTFExportData const&); - glTFExportData(); -}; +struct glTFExportData {}; diff --git a/src/mc/client/commands/AutomationCmdOutput.h b/src/mc/client/commands/AutomationCmdOutput.h index 8d1368570c..365793a95c 100644 --- a/src/mc/client/commands/AutomationCmdOutput.h +++ b/src/mc/client/commands/AutomationCmdOutput.h @@ -2,10 +2,4 @@ #include "mc/_HeaderOutputPredefine.h" -class AutomationCmdOutput { -public: - // prevent constructor by default - AutomationCmdOutput& operator=(AutomationCmdOutput const&); - AutomationCmdOutput(AutomationCmdOutput const&); - AutomationCmdOutput(); -}; +class AutomationCmdOutput {}; diff --git a/src/mc/client/game/ExternalWorldTransferActionFunc.h b/src/mc/client/game/ExternalWorldTransferActionFunc.h index c5c00b2489..3bf230a625 100644 --- a/src/mc/client/game/ExternalWorldTransferActionFunc.h +++ b/src/mc/client/game/ExternalWorldTransferActionFunc.h @@ -12,10 +12,4 @@ struct ExternalWorldTransferActionFunc : public ::type_safe::strong_typedef< ::ExternalWorldTransferActionFunc, ::std::function>, - public ::type_safe::strong_typedef_op::equality_comparison<::ExternalWorldTransferActionFunc> { -public: - // prevent constructor by default - ExternalWorldTransferActionFunc& operator=(ExternalWorldTransferActionFunc const&); - ExternalWorldTransferActionFunc(ExternalWorldTransferActionFunc const&); - ExternalWorldTransferActionFunc(); -}; + public ::type_safe::strong_typedef_op::equality_comparison<::ExternalWorldTransferActionFunc> {}; diff --git a/src/mc/client/game/IClientInstance.h b/src/mc/client/game/IClientInstance.h index 6afd1ab086..972025251b 100644 --- a/src/mc/client/game/IClientInstance.h +++ b/src/mc/client/game/IClientInstance.h @@ -178,12 +178,6 @@ namespace ui { class ScreenTechStackSelector; } // clang-format on class IClientInstance : public ::Bedrock::EnableNonOwnerReferences { -public: - // prevent constructor by default - IClientInstance& operator=(IClientInstance const&); - IClientInstance(IClientInstance const&); - IClientInstance(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/client/game/IClientInstances.h b/src/mc/client/game/IClientInstances.h index 4374682037..e865210cbf 100644 --- a/src/mc/client/game/IClientInstances.h +++ b/src/mc/client/game/IClientInstances.h @@ -12,12 +12,6 @@ class ItemRegistryRef; // clang-format on class IClientInstances { -public: - // prevent constructor by default - IClientInstances& operator=(IClientInstances const&); - IClientInstances(IClientInstances const&); - IClientInstances(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/client/game/IConfigListener.h b/src/mc/client/game/IConfigListener.h index c8c01f5410..cd1888146e 100644 --- a/src/mc/client/game/IConfigListener.h +++ b/src/mc/client/game/IConfigListener.h @@ -8,12 +8,6 @@ class Config; // clang-format on class IConfigListener { -public: - // prevent constructor by default - IConfigListener& operator=(IConfigListener const&); - IConfigListener(IConfigListener const&); - IConfigListener(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/client/game/IExternalServerFile.h b/src/mc/client/game/IExternalServerFile.h index 88feceb40e..5f7a898a90 100644 --- a/src/mc/client/game/IExternalServerFile.h +++ b/src/mc/client/game/IExternalServerFile.h @@ -2,10 +2,4 @@ #include "mc/_HeaderOutputPredefine.h" -class IExternalServerFile { -public: - // prevent constructor by default - IExternalServerFile& operator=(IExternalServerFile const&); - IExternalServerFile(IExternalServerFile const&); - IExternalServerFile(); -}; +class IExternalServerFile {}; diff --git a/src/mc/client/game/IGameServerShutdown.h b/src/mc/client/game/IGameServerShutdown.h index d3edd0bd88..bcc538379a 100644 --- a/src/mc/client/game/IGameServerShutdown.h +++ b/src/mc/client/game/IGameServerShutdown.h @@ -3,12 +3,6 @@ #include "mc/_HeaderOutputPredefine.h" struct IGameServerShutdown { -public: - // prevent constructor by default - IGameServerShutdown& operator=(IGameServerShutdown const&); - IGameServerShutdown(IGameServerShutdown const&); - IGameServerShutdown(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/client/game/IGameServerStartup.h b/src/mc/client/game/IGameServerStartup.h index 0937d93121..3f37263785 100644 --- a/src/mc/client/game/IGameServerStartup.h +++ b/src/mc/client/game/IGameServerStartup.h @@ -14,12 +14,6 @@ struct LevelSummary; // clang-format on class IGameServerStartup { -public: - // prevent constructor by default - IGameServerStartup& operator=(IGameServerStartup const&); - IGameServerStartup(IGameServerStartup const&); - IGameServerStartup(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/client/game/IMinecraftGame.h b/src/mc/client/game/IMinecraftGame.h index de62480441..83ee42984e 100644 --- a/src/mc/client/game/IMinecraftGame.h +++ b/src/mc/client/game/IMinecraftGame.h @@ -163,12 +163,6 @@ class IMinecraftGame : public ::Bedrock::EnableNonOwnerReferences, public ::IClientInstances, public ::IWorldTransfer, public ::ISplitScreenChangedPublisher { -public: - // prevent constructor by default - IMinecraftGame& operator=(IMinecraftGame const&); - IMinecraftGame(IMinecraftGame const&); - IMinecraftGame(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/client/game/INetworkGameConnector.h b/src/mc/client/game/INetworkGameConnector.h index 0b7ecb6828..e26af85154 100644 --- a/src/mc/client/game/INetworkGameConnector.h +++ b/src/mc/client/game/INetworkGameConnector.h @@ -13,12 +13,6 @@ namespace Social { class GameConnectionInfo; } // clang-format on class INetworkGameConnector { -public: - // prevent constructor by default - INetworkGameConnector& operator=(INetworkGameConnector const&); - INetworkGameConnector(INetworkGameConnector const&); - INetworkGameConnector(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/client/game/ISplitScreenChangedPublisher.h b/src/mc/client/game/ISplitScreenChangedPublisher.h index f2465e2192..a5399c4334 100644 --- a/src/mc/client/game/ISplitScreenChangedPublisher.h +++ b/src/mc/client/game/ISplitScreenChangedPublisher.h @@ -8,12 +8,6 @@ namespace Bedrock::PubSub { class Subscription; } // clang-format on class ISplitScreenChangedPublisher { -public: - // prevent constructor by default - ISplitScreenChangedPublisher& operator=(ISplitScreenChangedPublisher const&); - ISplitScreenChangedPublisher(ISplitScreenChangedPublisher const&); - ISplitScreenChangedPublisher(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/client/game/IWorldTransfer.h b/src/mc/client/game/IWorldTransfer.h index a71a40ab2e..d9f004def4 100644 --- a/src/mc/client/game/IWorldTransfer.h +++ b/src/mc/client/game/IWorldTransfer.h @@ -13,12 +13,6 @@ struct LocalWorldTransferActionFunc; // clang-format on struct IWorldTransfer { -public: - // prevent constructor by default - IWorldTransfer& operator=(IWorldTransfer const&); - IWorldTransfer(IWorldTransfer const&); - IWorldTransfer(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/client/game/LevelLoader.h b/src/mc/client/game/LevelLoader.h index 88d23e6ed7..c4048ba067 100644 --- a/src/mc/client/game/LevelLoader.h +++ b/src/mc/client/game/LevelLoader.h @@ -2,10 +2,4 @@ #include "mc/_HeaderOutputPredefine.h" -class LevelLoader { -public: - // prevent constructor by default - LevelLoader& operator=(LevelLoader const&); - LevelLoader(LevelLoader const&); - LevelLoader(); -}; +class LevelLoader {}; diff --git a/src/mc/client/game/LocalWorldTransferActionFunc.h b/src/mc/client/game/LocalWorldTransferActionFunc.h index 5e806f286f..60f92909ba 100644 --- a/src/mc/client/game/LocalWorldTransferActionFunc.h +++ b/src/mc/client/game/LocalWorldTransferActionFunc.h @@ -12,10 +12,4 @@ struct LocalWorldTransferActionFunc : public ::type_safe::strong_typedef< ::LocalWorldTransferActionFunc, ::std::function>, - public ::type_safe::strong_typedef_op::equality_comparison<::LocalWorldTransferActionFunc> { -public: - // prevent constructor by default - LocalWorldTransferActionFunc& operator=(LocalWorldTransferActionFunc const&); - LocalWorldTransferActionFunc(LocalWorldTransferActionFunc const&); - LocalWorldTransferActionFunc(); -}; + public ::type_safe::strong_typedef_op::equality_comparison<::LocalWorldTransferActionFunc> {}; diff --git a/src/mc/client/game/TrialManager.h b/src/mc/client/game/TrialManager.h index 0d010842f3..9608c7435d 100644 --- a/src/mc/client/game/TrialManager.h +++ b/src/mc/client/game/TrialManager.h @@ -2,10 +2,4 @@ #include "mc/_HeaderOutputPredefine.h" -class TrialManager { -public: - // prevent constructor by default - TrialManager& operator=(TrialManager const&); - TrialManager(TrialManager const&); - TrialManager(); -}; +class TrialManager {}; diff --git a/src/mc/client/game/edu_cloud/IEduCloudSaveSystem.h b/src/mc/client/game/edu_cloud/IEduCloudSaveSystem.h index 67b861c7c4..6539c2719f 100644 --- a/src/mc/client/game/edu_cloud/IEduCloudSaveSystem.h +++ b/src/mc/client/game/edu_cloud/IEduCloudSaveSystem.h @@ -28,12 +28,6 @@ namespace MSGraph::Models { struct UploadSession; } namespace EduCloud { struct IEduCloudSaveSystem : public ::Bedrock::EnableNonOwnerReferences { -public: - // prevent constructor by default - IEduCloudSaveSystem& operator=(IEduCloudSaveSystem const&); - IEduCloudSaveSystem(IEduCloudSaveSystem const&); - IEduCloudSaveSystem(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/client/gui/EmoticonManager.h b/src/mc/client/gui/EmoticonManager.h index 9108d0152c..90a26cc377 100644 --- a/src/mc/client/gui/EmoticonManager.h +++ b/src/mc/client/gui/EmoticonManager.h @@ -2,10 +2,4 @@ #include "mc/_HeaderOutputPredefine.h" -class EmoticonManager { -public: - // prevent constructor by default - EmoticonManager& operator=(EmoticonManager const&); - EmoticonManager(EmoticonManager const&); - EmoticonManager(); -}; +class EmoticonManager {}; diff --git a/src/mc/client/gui/FontHandle.h b/src/mc/client/gui/FontHandle.h index 520c53f117..9fb9805a66 100644 --- a/src/mc/client/gui/FontHandle.h +++ b/src/mc/client/gui/FontHandle.h @@ -2,10 +2,4 @@ #include "mc/_HeaderOutputPredefine.h" -class FontHandle { -public: - // prevent constructor by default - FontHandle& operator=(FontHandle const&); - FontHandle(FontHandle const&); - FontHandle(); -}; +class FontHandle {}; diff --git a/src/mc/client/gui/GuiData.h b/src/mc/client/gui/GuiData.h index 5ea63f7008..e7a4d20554 100644 --- a/src/mc/client/gui/GuiData.h +++ b/src/mc/client/gui/GuiData.h @@ -2,10 +2,4 @@ #include "mc/_HeaderOutputPredefine.h" -class GuiData { -public: - // prevent constructor by default - GuiData& operator=(GuiData const&); - GuiData(GuiData const&); - GuiData(); -}; +class GuiData {}; diff --git a/src/mc/client/gui/MobEffectsLayout.h b/src/mc/client/gui/MobEffectsLayout.h index 220f995dab..013b760012 100644 --- a/src/mc/client/gui/MobEffectsLayout.h +++ b/src/mc/client/gui/MobEffectsLayout.h @@ -2,10 +2,4 @@ #include "mc/_HeaderOutputPredefine.h" -class MobEffectsLayout { -public: - // prevent constructor by default - MobEffectsLayout& operator=(MobEffectsLayout const&); - MobEffectsLayout(MobEffectsLayout const&); - MobEffectsLayout(); -}; +class MobEffectsLayout {}; diff --git a/src/mc/client/gui/ScreenTechStackSelector.h b/src/mc/client/gui/ScreenTechStackSelector.h index e7aef23151..de30738db7 100644 --- a/src/mc/client/gui/ScreenTechStackSelector.h +++ b/src/mc/client/gui/ScreenTechStackSelector.h @@ -4,12 +4,6 @@ namespace ui { -class ScreenTechStackSelector { -public: - // prevent constructor by default - ScreenTechStackSelector& operator=(ScreenTechStackSelector const&); - ScreenTechStackSelector(ScreenTechStackSelector const&); - ScreenTechStackSelector(); -}; +class ScreenTechStackSelector {}; } // namespace ui diff --git a/src/mc/client/gui/TextToIconMapper.h b/src/mc/client/gui/TextToIconMapper.h index 2231a12f64..fdcab45db6 100644 --- a/src/mc/client/gui/TextToIconMapper.h +++ b/src/mc/client/gui/TextToIconMapper.h @@ -2,10 +2,4 @@ #include "mc/_HeaderOutputPredefine.h" -class TextToIconMapper { -public: - // prevent constructor by default - TextToIconMapper& operator=(TextToIconMapper const&); - TextToIconMapper(TextToIconMapper const&); - TextToIconMapper(); -}; +class TextToIconMapper {}; diff --git a/src/mc/client/gui/controls/ScreenInputContext.h b/src/mc/client/gui/controls/ScreenInputContext.h index 95d9327824..33be812b57 100644 --- a/src/mc/client/gui/controls/ScreenInputContext.h +++ b/src/mc/client/gui/controls/ScreenInputContext.h @@ -2,10 +2,4 @@ #include "mc/_HeaderOutputPredefine.h" -class ScreenInputContext { -public: - // prevent constructor by default - ScreenInputContext& operator=(ScreenInputContext const&); - ScreenInputContext(ScreenInputContext const&); - ScreenInputContext(); -}; +class ScreenInputContext {}; diff --git a/src/mc/client/gui/controls/UIControl.h b/src/mc/client/gui/controls/UIControl.h index db546ea395..aff65e79ef 100644 --- a/src/mc/client/gui/controls/UIControl.h +++ b/src/mc/client/gui/controls/UIControl.h @@ -2,10 +2,4 @@ #include "mc/_HeaderOutputPredefine.h" -class UIControl { -public: - // prevent constructor by default - UIControl& operator=(UIControl const&); - UIControl(UIControl const&); - UIControl(); -}; +class UIControl {}; diff --git a/src/mc/client/gui/controls/UIMeasureStrategy.h b/src/mc/client/gui/controls/UIMeasureStrategy.h index 7d30a2946b..3280f9d355 100644 --- a/src/mc/client/gui/controls/UIMeasureStrategy.h +++ b/src/mc/client/gui/controls/UIMeasureStrategy.h @@ -2,10 +2,4 @@ #include "mc/_HeaderOutputPredefine.h" -class UIMeasureStrategy { -public: - // prevent constructor by default - UIMeasureStrategy& operator=(UIMeasureStrategy const&); - UIMeasureStrategy(UIMeasureStrategy const&); - UIMeasureStrategy(); -}; +class UIMeasureStrategy {}; diff --git a/src/mc/client/gui/controls/VisualTree.h b/src/mc/client/gui/controls/VisualTree.h index ee80498a14..f48b0cf7b4 100644 --- a/src/mc/client/gui/controls/VisualTree.h +++ b/src/mc/client/gui/controls/VisualTree.h @@ -2,10 +2,4 @@ #include "mc/_HeaderOutputPredefine.h" -class VisualTree { -public: - // prevent constructor by default - VisualTree& operator=(VisualTree const&); - VisualTree(VisualTree const&); - VisualTree(); -}; +class VisualTree {}; diff --git a/src/mc/client/gui/interface/IUIDefRepository.h b/src/mc/client/gui/interface/IUIDefRepository.h index 5b721011c3..dbcb329562 100644 --- a/src/mc/client/gui/interface/IUIDefRepository.h +++ b/src/mc/client/gui/interface/IUIDefRepository.h @@ -2,10 +2,4 @@ #include "mc/_HeaderOutputPredefine.h" -class IUIDefRepository { -public: - // prevent constructor by default - IUIDefRepository& operator=(IUIDefRepository const&); - IUIDefRepository(IUIDefRepository const&); - IUIDefRepository(); -}; +class IUIDefRepository {}; diff --git a/src/mc/client/gui/interface/IUIRepository.h b/src/mc/client/gui/interface/IUIRepository.h index 7351c09fa8..34545de730 100644 --- a/src/mc/client/gui/interface/IUIRepository.h +++ b/src/mc/client/gui/interface/IUIRepository.h @@ -2,10 +2,4 @@ #include "mc/_HeaderOutputPredefine.h" -class IUIRepository { -public: - // prevent constructor by default - IUIRepository& operator=(IUIRepository const&); - IUIRepository(IUIRepository const&); - IUIRepository(); -}; +class IUIRepository {}; diff --git a/src/mc/client/gui/oreui/SceneProvider.h b/src/mc/client/gui/oreui/SceneProvider.h index 20e0a514dc..d2f4f1ba3f 100644 --- a/src/mc/client/gui/oreui/SceneProvider.h +++ b/src/mc/client/gui/oreui/SceneProvider.h @@ -4,12 +4,6 @@ namespace OreUI { -class SceneProvider { -public: - // prevent constructor by default - SceneProvider& operator=(SceneProvider const&); - SceneProvider(SceneProvider const&); - SceneProvider(); -}; +class SceneProvider {}; } // namespace OreUI diff --git a/src/mc/client/gui/oreui/UIBlockThumbnailAtlasManager.h b/src/mc/client/gui/oreui/UIBlockThumbnailAtlasManager.h index 442bac71de..8fbd43101d 100644 --- a/src/mc/client/gui/oreui/UIBlockThumbnailAtlasManager.h +++ b/src/mc/client/gui/oreui/UIBlockThumbnailAtlasManager.h @@ -4,12 +4,6 @@ namespace OreUI { -class UIBlockThumbnailAtlasManager { -public: - // prevent constructor by default - UIBlockThumbnailAtlasManager& operator=(UIBlockThumbnailAtlasManager const&); - UIBlockThumbnailAtlasManager(UIBlockThumbnailAtlasManager const&); - UIBlockThumbnailAtlasManager(); -}; +class UIBlockThumbnailAtlasManager {}; } // namespace OreUI diff --git a/src/mc/client/gui/oreui/binding/providers_deprecated/DataProviderManager_DEPRECATED.h b/src/mc/client/gui/oreui/binding/providers_deprecated/DataProviderManager_DEPRECATED.h index 61935d2284..069145f2dc 100644 --- a/src/mc/client/gui/oreui/binding/providers_deprecated/DataProviderManager_DEPRECATED.h +++ b/src/mc/client/gui/oreui/binding/providers_deprecated/DataProviderManager_DEPRECATED.h @@ -4,12 +4,6 @@ namespace OreUI { -class DataProviderManager_DEPRECATED { -public: - // prevent constructor by default - DataProviderManager_DEPRECATED& operator=(DataProviderManager_DEPRECATED const&); - DataProviderManager_DEPRECATED(DataProviderManager_DEPRECATED const&); - DataProviderManager_DEPRECATED(); -}; +class DataProviderManager_DEPRECATED {}; } // namespace OreUI diff --git a/src/mc/client/gui/oreui/interface/IResourceAllowList.h b/src/mc/client/gui/oreui/interface/IResourceAllowList.h index 2df638cd43..257171a07b 100644 --- a/src/mc/client/gui/oreui/interface/IResourceAllowList.h +++ b/src/mc/client/gui/oreui/interface/IResourceAllowList.h @@ -4,12 +4,6 @@ namespace OreUI { -class IResourceAllowList { -public: - // prevent constructor by default - IResourceAllowList& operator=(IResourceAllowList const&); - IResourceAllowList(IResourceAllowList const&); - IResourceAllowList(); -}; +class IResourceAllowList {}; } // namespace OreUI diff --git a/src/mc/client/gui/oreui/interface/ITelemetry.h b/src/mc/client/gui/oreui/interface/ITelemetry.h index ac9c99d419..56e6880b7d 100644 --- a/src/mc/client/gui/oreui/interface/ITelemetry.h +++ b/src/mc/client/gui/oreui/interface/ITelemetry.h @@ -12,12 +12,6 @@ namespace Social::Events { class Property; } namespace OreUI { class ITelemetry { -public: - // prevent constructor by default - ITelemetry& operator=(ITelemetry const&); - ITelemetry(ITelemetry const&); - ITelemetry(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/client/gui/oreui/routing/IEntryPoint.h b/src/mc/client/gui/oreui/routing/IEntryPoint.h index db4c8578e2..6db0cb6bf7 100644 --- a/src/mc/client/gui/oreui/routing/IEntryPoint.h +++ b/src/mc/client/gui/oreui/routing/IEntryPoint.h @@ -15,12 +15,6 @@ namespace OreUI { class RouteMatcher; } namespace OreUI { class IEntryPoint { -public: - // prevent constructor by default - IEntryPoint& operator=(IEntryPoint const&); - IEntryPoint(IEntryPoint const&); - IEntryPoint(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/client/gui/oreui/routing/RouteMatcher.h b/src/mc/client/gui/oreui/routing/RouteMatcher.h index e96a29c987..765d0c1298 100644 --- a/src/mc/client/gui/oreui/routing/RouteMatcher.h +++ b/src/mc/client/gui/oreui/routing/RouteMatcher.h @@ -4,12 +4,6 @@ namespace OreUI { -class RouteMatcher { -public: - // prevent constructor by default - RouteMatcher& operator=(RouteMatcher const&); - RouteMatcher(RouteMatcher const&); - RouteMatcher(); -}; +class RouteMatcher {}; } // namespace OreUI diff --git a/src/mc/client/gui/oreui/routing/Router.h b/src/mc/client/gui/oreui/routing/Router.h index eda97caa96..73b82ca593 100644 --- a/src/mc/client/gui/oreui/routing/Router.h +++ b/src/mc/client/gui/oreui/routing/Router.h @@ -4,12 +4,6 @@ namespace OreUI { -class Router { -public: - // prevent constructor by default - Router& operator=(Router const&); - Router(Router const&); - Router(); -}; +class Router {}; } // namespace OreUI diff --git a/src/mc/client/gui/screens/AbstractScene.h b/src/mc/client/gui/screens/AbstractScene.h index 3cdc069685..a5ca4ba20b 100644 --- a/src/mc/client/gui/screens/AbstractScene.h +++ b/src/mc/client/gui/screens/AbstractScene.h @@ -2,10 +2,4 @@ #include "mc/_HeaderOutputPredefine.h" -class AbstractScene { -public: - // prevent constructor by default - AbstractScene& operator=(AbstractScene const&); - AbstractScene(AbstractScene const&); - AbstractScene(); -}; +class AbstractScene {}; diff --git a/src/mc/client/gui/screens/CubemapBackgroundResources.h b/src/mc/client/gui/screens/CubemapBackgroundResources.h index 0b3fbbd104..5dcbbdc459 100644 --- a/src/mc/client/gui/screens/CubemapBackgroundResources.h +++ b/src/mc/client/gui/screens/CubemapBackgroundResources.h @@ -2,10 +2,4 @@ #include "mc/_HeaderOutputPredefine.h" -class CubemapBackgroundResources { -public: - // prevent constructor by default - CubemapBackgroundResources& operator=(CubemapBackgroundResources const&); - CubemapBackgroundResources(CubemapBackgroundResources const&); - CubemapBackgroundResources(); -}; +class CubemapBackgroundResources {}; diff --git a/src/mc/client/gui/screens/SceneFactory.h b/src/mc/client/gui/screens/SceneFactory.h index 0074b8c115..212c7e40ec 100644 --- a/src/mc/client/gui/screens/SceneFactory.h +++ b/src/mc/client/gui/screens/SceneFactory.h @@ -2,10 +2,4 @@ #include "mc/_HeaderOutputPredefine.h" -class SceneFactory { -public: - // prevent constructor by default - SceneFactory& operator=(SceneFactory const&); - SceneFactory(SceneFactory const&); - SceneFactory(); -}; +class SceneFactory {}; diff --git a/src/mc/client/gui/screens/ScreenContext.h b/src/mc/client/gui/screens/ScreenContext.h index 9677c0ed37..16eaea7fa8 100644 --- a/src/mc/client/gui/screens/ScreenContext.h +++ b/src/mc/client/gui/screens/ScreenContext.h @@ -2,10 +2,4 @@ #include "mc/_HeaderOutputPredefine.h" -class ScreenContext { -public: - // prevent constructor by default - ScreenContext& operator=(ScreenContext const&); - ScreenContext(ScreenContext const&); - ScreenContext(); -}; +class ScreenContext {}; diff --git a/src/mc/client/gui/screens/ScreenController.h b/src/mc/client/gui/screens/ScreenController.h index 97fa749c03..061f0c17e4 100644 --- a/src/mc/client/gui/screens/ScreenController.h +++ b/src/mc/client/gui/screens/ScreenController.h @@ -45,13 +45,7 @@ class ScreenController : public ::IScreenController { NotUp = 4, }; - struct ButtonEventCallbackKeyHasher { - public: - // prevent constructor by default - ButtonEventCallbackKeyHasher& operator=(ButtonEventCallbackKeyHasher const&); - ButtonEventCallbackKeyHasher(ButtonEventCallbackKeyHasher const&); - ButtonEventCallbackKeyHasher(); - }; + struct ButtonEventCallbackKeyHasher {}; public: // member variables diff --git a/src/mc/client/gui/screens/ScreenLoadTimeTracker.h b/src/mc/client/gui/screens/ScreenLoadTimeTracker.h index 62e0c704c1..c55ba83dc1 100644 --- a/src/mc/client/gui/screens/ScreenLoadTimeTracker.h +++ b/src/mc/client/gui/screens/ScreenLoadTimeTracker.h @@ -2,10 +2,4 @@ #include "mc/_HeaderOutputPredefine.h" -class ScreenLoadTimeTracker { -public: - // prevent constructor by default - ScreenLoadTimeTracker& operator=(ScreenLoadTimeTracker const&); - ScreenLoadTimeTracker(ScreenLoadTimeTracker const&); - ScreenLoadTimeTracker(); -}; +class ScreenLoadTimeTracker {}; diff --git a/src/mc/client/gui/screens/UIAnimationController.h b/src/mc/client/gui/screens/UIAnimationController.h index 3b23f1d351..7dfb47de71 100644 --- a/src/mc/client/gui/screens/UIAnimationController.h +++ b/src/mc/client/gui/screens/UIAnimationController.h @@ -2,10 +2,4 @@ #include "mc/_HeaderOutputPredefine.h" -class UIAnimationController { -public: - // prevent constructor by default - UIAnimationController& operator=(UIAnimationController const&); - UIAnimationController(UIAnimationController const&); - UIAnimationController(); -}; +class UIAnimationController {}; diff --git a/src/mc/client/gui/screens/controllers/MultiplayerLockState.h b/src/mc/client/gui/screens/controllers/MultiplayerLockState.h index 7724144f37..9e60224f1d 100644 --- a/src/mc/client/gui/screens/controllers/MultiplayerLockState.h +++ b/src/mc/client/gui/screens/controllers/MultiplayerLockState.h @@ -3,12 +3,6 @@ #include "mc/_HeaderOutputPredefine.h" class MultiplayerLockState { -public: - // prevent constructor by default - MultiplayerLockState& operator=(MultiplayerLockState const&); - MultiplayerLockState(MultiplayerLockState const&); - MultiplayerLockState(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/client/gui/screens/controllers/SettingsScreenControllerBase.h b/src/mc/client/gui/screens/controllers/SettingsScreenControllerBase.h index 3ab868782f..5818a4a845 100644 --- a/src/mc/client/gui/screens/controllers/SettingsScreenControllerBase.h +++ b/src/mc/client/gui/screens/controllers/SettingsScreenControllerBase.h @@ -11,12 +11,6 @@ namespace Json { class Value; } // clang-format on class SettingsScreenControllerBase : public ::MainMenuScreenController { -public: - // prevent constructor by default - SettingsScreenControllerBase& operator=(SettingsScreenControllerBase const&); - SettingsScreenControllerBase(SettingsScreenControllerBase const&); - SettingsScreenControllerBase(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/client/gui/screens/controllers/StoreDataDrivenScreenController.h b/src/mc/client/gui/screens/controllers/StoreDataDrivenScreenController.h index b0544e4875..cc4943556c 100644 --- a/src/mc/client/gui/screens/controllers/StoreDataDrivenScreenController.h +++ b/src/mc/client/gui/screens/controllers/StoreDataDrivenScreenController.h @@ -2,10 +2,4 @@ #include "mc/_HeaderOutputPredefine.h" -class StoreDataDrivenScreenController { -public: - // prevent constructor by default - StoreDataDrivenScreenController& operator=(StoreDataDrivenScreenController const&); - StoreDataDrivenScreenController(StoreDataDrivenScreenController const&); - StoreDataDrivenScreenController(); -}; +class StoreDataDrivenScreenController {}; diff --git a/src/mc/client/gui/screens/interfaces/ISceneStack.h b/src/mc/client/gui/screens/interfaces/ISceneStack.h index 17538c5757..3c48802769 100644 --- a/src/mc/client/gui/screens/interfaces/ISceneStack.h +++ b/src/mc/client/gui/screens/interfaces/ISceneStack.h @@ -12,12 +12,6 @@ namespace OreUI { struct RouteAction; } // clang-format on class ISceneStack : public ::Bedrock::EnableNonOwnerReferences { -public: - // prevent constructor by default - ISceneStack& operator=(ISceneStack const&); - ISceneStack(ISceneStack const&); - ISceneStack(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/client/gui/screens/interfaces/IScreenController.h b/src/mc/client/gui/screens/interfaces/IScreenController.h index 072e1d4a9a..b406b798fe 100644 --- a/src/mc/client/gui/screens/interfaces/IScreenController.h +++ b/src/mc/client/gui/screens/interfaces/IScreenController.h @@ -12,12 +12,6 @@ struct ScreenEvent; // clang-format on class IScreenController { -public: - // prevent constructor by default - IScreenController& operator=(IScreenController const&); - IScreenController(IScreenController const&); - IScreenController(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/client/gui/screens/models/ContentSource.h b/src/mc/client/gui/screens/models/ContentSource.h index 3aef8b65d0..e1f2b54fd5 100644 --- a/src/mc/client/gui/screens/models/ContentSource.h +++ b/src/mc/client/gui/screens/models/ContentSource.h @@ -2,10 +2,4 @@ #include "mc/_HeaderOutputPredefine.h" -struct ContentSource { -public: - // prevent constructor by default - ContentSource& operator=(ContentSource const&); - ContentSource(ContentSource const&); - ContentSource(); -}; +struct ContentSource {}; diff --git a/src/mc/client/gui/screens/models/IContentManager.h b/src/mc/client/gui/screens/models/IContentManager.h index f2de026a08..eb8afa5ed3 100644 --- a/src/mc/client/gui/screens/models/IContentManager.h +++ b/src/mc/client/gui/screens/models/IContentManager.h @@ -2,10 +2,4 @@ #include "mc/_HeaderOutputPredefine.h" -class IContentManager { -public: - // prevent constructor by default - IContentManager& operator=(IContentManager const&); - IContentManager(IContentManager const&); - IContentManager(); -}; +class IContentManager {}; diff --git a/src/mc/client/gui/screens/models/IMainMenuScreenModel.h b/src/mc/client/gui/screens/models/IMainMenuScreenModel.h index 75ee4b0db1..ad4602ae55 100644 --- a/src/mc/client/gui/screens/models/IMainMenuScreenModel.h +++ b/src/mc/client/gui/screens/models/IMainMenuScreenModel.h @@ -13,12 +13,6 @@ namespace mce { class UUID; } // clang-format on class IMainMenuScreenModel { -public: - // prevent constructor by default - IMainMenuScreenModel& operator=(IMainMenuScreenModel const&); - IMainMenuScreenModel(IMainMenuScreenModel const&); - IMainMenuScreenModel(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/client/gui/screens/models/interface/IWorldsProvider.h b/src/mc/client/gui/screens/models/interface/IWorldsProvider.h index afde882ed1..bd75e1fc90 100644 --- a/src/mc/client/gui/screens/models/interface/IWorldsProvider.h +++ b/src/mc/client/gui/screens/models/interface/IWorldsProvider.h @@ -13,12 +13,6 @@ struct LocalWorldInfo; // clang-format on class IWorldsProvider { -public: - // prevent constructor by default - IWorldsProvider& operator=(IWorldsProvider const&); - IWorldsProvider(IWorldsProvider const&); - IWorldsProvider(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/client/hitresult/HitDetectSystem.h b/src/mc/client/hitresult/HitDetectSystem.h index 1075b71bbb..a1d70362ea 100644 --- a/src/mc/client/hitresult/HitDetectSystem.h +++ b/src/mc/client/hitresult/HitDetectSystem.h @@ -2,10 +2,4 @@ #include "mc/_HeaderOutputPredefine.h" -class HitDetectSystem { -public: - // prevent constructor by default - HitDetectSystem& operator=(HitDetectSystem const&); - HitDetectSystem(HitDetectSystem const&); - HitDetectSystem(); -}; +class HitDetectSystem {}; diff --git a/src/mc/client/identity/ISecureStorageProvider.h b/src/mc/client/identity/ISecureStorageProvider.h index c1573f694b..0dc0745cb0 100644 --- a/src/mc/client/identity/ISecureStorageProvider.h +++ b/src/mc/client/identity/ISecureStorageProvider.h @@ -10,12 +10,6 @@ class SecureStorage; namespace Social { class ISecureStorageProvider { -public: - // prevent constructor by default - ISecureStorageProvider& operator=(ISecureStorageProvider const&); - ISecureStorageProvider(ISecureStorageProvider const&); - ISecureStorageProvider(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/client/identity/IUserDataObject.h b/src/mc/client/identity/IUserDataObject.h index 2bce7a645f..a86cd52ea3 100644 --- a/src/mc/client/identity/IUserDataObject.h +++ b/src/mc/client/identity/IUserDataObject.h @@ -10,12 +10,6 @@ namespace Json { class Value; } namespace Social { class IUserDataObject { -public: - // prevent constructor by default - IUserDataObject& operator=(IUserDataObject const&); - IUserDataObject(IUserDataObject const&); - IUserDataObject(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/client/input/ClientInputHandler.h b/src/mc/client/input/ClientInputHandler.h index 8a0015910d..d52b4c1578 100644 --- a/src/mc/client/input/ClientInputHandler.h +++ b/src/mc/client/input/ClientInputHandler.h @@ -2,10 +2,4 @@ #include "mc/_HeaderOutputPredefine.h" -class ClientInputHandler { -public: - // prevent constructor by default - ClientInputHandler& operator=(ClientInputHandler const&); - ClientInputHandler(ClientInputHandler const&); - ClientInputHandler(); -}; +class ClientInputHandler {}; diff --git a/src/mc/client/input/ClientMoveInputHandler.h b/src/mc/client/input/ClientMoveInputHandler.h index 2d3b9e53bd..d24b771995 100644 --- a/src/mc/client/input/ClientMoveInputHandler.h +++ b/src/mc/client/input/ClientMoveInputHandler.h @@ -2,10 +2,4 @@ #include "mc/_HeaderOutputPredefine.h" -class ClientMoveInputHandler { -public: - // prevent constructor by default - ClientMoveInputHandler& operator=(ClientMoveInputHandler const&); - ClientMoveInputHandler(ClientMoveInputHandler const&); - ClientMoveInputHandler(); -}; +class ClientMoveInputHandler {}; diff --git a/src/mc/client/input/KeyboardManager.h b/src/mc/client/input/KeyboardManager.h index 640ef87707..7e4fb470de 100644 --- a/src/mc/client/input/KeyboardManager.h +++ b/src/mc/client/input/KeyboardManager.h @@ -2,10 +2,4 @@ #include "mc/_HeaderOutputPredefine.h" -class KeyboardManager { -public: - // prevent constructor by default - KeyboardManager& operator=(KeyboardManager const&); - KeyboardManager(KeyboardManager const&); - KeyboardManager(); -}; +class KeyboardManager {}; diff --git a/src/mc/client/input/KeyboardRemappingLayout.h b/src/mc/client/input/KeyboardRemappingLayout.h index b4ae9db1c3..83a566e59a 100644 --- a/src/mc/client/input/KeyboardRemappingLayout.h +++ b/src/mc/client/input/KeyboardRemappingLayout.h @@ -2,10 +2,4 @@ #include "mc/_HeaderOutputPredefine.h" -class KeyboardRemappingLayout { -public: - // prevent constructor by default - KeyboardRemappingLayout& operator=(KeyboardRemappingLayout const&); - KeyboardRemappingLayout(KeyboardRemappingLayout const&); - KeyboardRemappingLayout(); -}; +class KeyboardRemappingLayout {}; diff --git a/src/mc/client/input/MinecraftInputHandler.h b/src/mc/client/input/MinecraftInputHandler.h index 8c4a3d0618..294132a9f5 100644 --- a/src/mc/client/input/MinecraftInputHandler.h +++ b/src/mc/client/input/MinecraftInputHandler.h @@ -2,10 +2,4 @@ #include "mc/_HeaderOutputPredefine.h" -class MinecraftInputHandler { -public: - // prevent constructor by default - MinecraftInputHandler& operator=(MinecraftInputHandler const&); - MinecraftInputHandler(MinecraftInputHandler const&); - MinecraftInputHandler(); -}; +class MinecraftInputHandler {}; diff --git a/src/mc/client/input/VoiceSystem.h b/src/mc/client/input/VoiceSystem.h index 459c6d2893..c42e00d724 100644 --- a/src/mc/client/input/VoiceSystem.h +++ b/src/mc/client/input/VoiceSystem.h @@ -2,10 +2,4 @@ #include "mc/_HeaderOutputPredefine.h" -class VoiceSystem { -public: - // prevent constructor by default - VoiceSystem& operator=(VoiceSystem const&); - VoiceSystem(VoiceSystem const&); - VoiceSystem(); -}; +class VoiceSystem {}; diff --git a/src/mc/client/legacy/conversion/WorldConverter.h b/src/mc/client/legacy/conversion/WorldConverter.h index 1063384cd5..798f41eaff 100644 --- a/src/mc/client/legacy/conversion/WorldConverter.h +++ b/src/mc/client/legacy/conversion/WorldConverter.h @@ -31,12 +31,6 @@ class WorldConverter { Unknown = 2, }; -public: - // prevent constructor by default - WorldConverter& operator=(WorldConverter const&); - WorldConverter(WorldConverter const&); - WorldConverter(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/client/library/LibraryRepository.h b/src/mc/client/library/LibraryRepository.h index c1628ae9ee..25181f9113 100644 --- a/src/mc/client/library/LibraryRepository.h +++ b/src/mc/client/library/LibraryRepository.h @@ -2,10 +2,4 @@ #include "mc/_HeaderOutputPredefine.h" -class LibraryRepository { -public: - // prevent constructor by default - LibraryRepository& operator=(LibraryRepository const&); - LibraryRepository(LibraryRepository const&); - LibraryRepository(); -}; +class LibraryRepository {}; diff --git a/src/mc/client/model/models/DataDrivenModel.h b/src/mc/client/model/models/DataDrivenModel.h index 5563cfeb76..2fbcf4e463 100644 --- a/src/mc/client/model/models/DataDrivenModel.h +++ b/src/mc/client/model/models/DataDrivenModel.h @@ -2,10 +2,4 @@ #include "mc/_HeaderOutputPredefine.h" -class DataDrivenModel { -public: - // prevent constructor by default - DataDrivenModel& operator=(DataDrivenModel const&); - DataDrivenModel(DataDrivenModel const&); - DataDrivenModel(); -}; +class DataDrivenModel {}; diff --git a/src/mc/client/module/GameModuleClient.h b/src/mc/client/module/GameModuleClient.h index b2d2f83a50..a02b3bea2c 100644 --- a/src/mc/client/module/GameModuleClient.h +++ b/src/mc/client/module/GameModuleClient.h @@ -2,10 +2,4 @@ #include "mc/_HeaderOutputPredefine.h" -class GameModuleClient { -public: - // prevent constructor by default - GameModuleClient& operator=(GameModuleClient const&); - GameModuleClient(GameModuleClient const&); - GameModuleClient(); -}; +class GameModuleClient {}; diff --git a/src/mc/client/module/IGameModuleApp.h b/src/mc/client/module/IGameModuleApp.h index af2cd6aae8..1b3fef50b2 100644 --- a/src/mc/client/module/IGameModuleApp.h +++ b/src/mc/client/module/IGameModuleApp.h @@ -2,10 +2,4 @@ #include "mc/_HeaderOutputPredefine.h" -class IGameModuleApp { -public: - // prevent constructor by default - IGameModuleApp& operator=(IGameModuleApp const&); - IGameModuleApp(IGameModuleApp const&); - IGameModuleApp(); -}; +class IGameModuleApp {}; diff --git a/src/mc/client/multiplayer/ISubChunkManagerConnector.h b/src/mc/client/multiplayer/ISubChunkManagerConnector.h index e44cf1ed16..4b37f808ff 100644 --- a/src/mc/client/multiplayer/ISubChunkManagerConnector.h +++ b/src/mc/client/multiplayer/ISubChunkManagerConnector.h @@ -12,12 +12,6 @@ class LevelChunk; // clang-format on class ISubChunkManagerConnector { -public: - // prevent constructor by default - ISubChunkManagerConnector& operator=(ISubChunkManagerConnector const&); - ISubChunkManagerConnector(ISubChunkManagerConnector const&); - ISubChunkManagerConnector(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/client/network/IGameConnectionListener.h b/src/mc/client/network/IGameConnectionListener.h index dfdcd0c8d5..69c0a1666b 100644 --- a/src/mc/client/network/IGameConnectionListener.h +++ b/src/mc/client/network/IGameConnectionListener.h @@ -2,10 +2,4 @@ #include "mc/_HeaderOutputPredefine.h" -class IGameConnectionListener { -public: - // prevent constructor by default - IGameConnectionListener& operator=(IGameConnectionListener const&); - IGameConnectionListener(IGameConnectionListener const&); - IGameConnectionListener(); -}; +class IGameConnectionListener {}; diff --git a/src/mc/client/network/UserAuthentication.h b/src/mc/client/network/UserAuthentication.h index 053f6a536e..a45751df24 100644 --- a/src/mc/client/network/UserAuthentication.h +++ b/src/mc/client/network/UserAuthentication.h @@ -2,10 +2,4 @@ #include "mc/_HeaderOutputPredefine.h" -class UserAuthentication { -public: - // prevent constructor by default - UserAuthentication& operator=(UserAuthentication const&); - UserAuthentication(UserAuthentication const&); - UserAuthentication(); -}; +class UserAuthentication {}; diff --git a/src/mc/client/network/blob_cache/client_blob_cache/Cache.h b/src/mc/client/network/blob_cache/client_blob_cache/Cache.h index e35350df58..9ec4ab5430 100644 --- a/src/mc/client/network/blob_cache/client_blob_cache/Cache.h +++ b/src/mc/client/network/blob_cache/client_blob_cache/Cache.h @@ -4,12 +4,6 @@ namespace ClientBlobCache { -class Cache { -public: - // prevent constructor by default - Cache& operator=(Cache const&); - Cache(Cache const&); - Cache(); -}; +class Cache {}; } // namespace ClientBlobCache diff --git a/src/mc/client/network/realms/Content.h b/src/mc/client/network/realms/Content.h index 3966c02270..a190c76b65 100644 --- a/src/mc/client/network/realms/Content.h +++ b/src/mc/client/network/realms/Content.h @@ -4,12 +4,6 @@ namespace Realms { -struct Content { -public: - // prevent constructor by default - Content& operator=(Content const&); - Content(Content const&); - Content(); -}; +struct Content {}; } // namespace Realms diff --git a/src/mc/client/network/realms/ContentService.h b/src/mc/client/network/realms/ContentService.h index 4244fdc32b..158dc3d227 100644 --- a/src/mc/client/network/realms/ContentService.h +++ b/src/mc/client/network/realms/ContentService.h @@ -4,12 +4,6 @@ namespace Realms { -class ContentService { -public: - // prevent constructor by default - ContentService& operator=(ContentService const&); - ContentService(ContentService const&); - ContentService(); -}; +class ContentService {}; } // namespace Realms diff --git a/src/mc/client/network/realms/GenericRequestServiceHandler.h b/src/mc/client/network/realms/GenericRequestServiceHandler.h index c9995c1d76..f86e2b2221 100644 --- a/src/mc/client/network/realms/GenericRequestServiceHandler.h +++ b/src/mc/client/network/realms/GenericRequestServiceHandler.h @@ -4,12 +4,6 @@ namespace Realms { -class GenericRequestServiceHandler { -public: - // prevent constructor by default - GenericRequestServiceHandler& operator=(GenericRequestServiceHandler const&); - GenericRequestServiceHandler(GenericRequestServiceHandler const&); - GenericRequestServiceHandler(); -}; +class GenericRequestServiceHandler {}; } // namespace Realms diff --git a/src/mc/client/network/realms/IContentApi.h b/src/mc/client/network/realms/IContentApi.h index c2c88e66e8..d8891cb1a6 100644 --- a/src/mc/client/network/realms/IContentApi.h +++ b/src/mc/client/network/realms/IContentApi.h @@ -14,12 +14,6 @@ namespace Realms { struct RealmId; } namespace Realms { class IContentApi { -public: - // prevent constructor by default - IContentApi& operator=(IContentApi const&); - IContentApi(IContentApi const&); - IContentApi(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/client/network/realms/ISubscriptionApi.h b/src/mc/client/network/realms/ISubscriptionApi.h index 4ae38f081d..5553a5375d 100644 --- a/src/mc/client/network/realms/ISubscriptionApi.h +++ b/src/mc/client/network/realms/ISubscriptionApi.h @@ -14,12 +14,6 @@ namespace Realms { struct SubscriptionInfo; } namespace Realms { class ISubscriptionApi { -public: - // prevent constructor by default - ISubscriptionApi& operator=(ISubscriptionApi const&); - ISubscriptionApi(ISubscriptionApi const&); - ISubscriptionApi(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/client/network/realms/IWorldApi.h b/src/mc/client/network/realms/IWorldApi.h index d1299bd060..a18c77f746 100644 --- a/src/mc/client/network/realms/IWorldApi.h +++ b/src/mc/client/network/realms/IWorldApi.h @@ -14,12 +14,6 @@ namespace Realms { struct RealmId; } namespace Realms { class IWorldApi { -public: - // prevent constructor by default - IWorldApi& operator=(IWorldApi const&); - IWorldApi(IWorldApi const&); - IWorldApi(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/client/network/realms/RealmId.h b/src/mc/client/network/realms/RealmId.h index 5011caac0b..0919e12adb 100644 --- a/src/mc/client/network/realms/RealmId.h +++ b/src/mc/client/network/realms/RealmId.h @@ -7,12 +7,6 @@ namespace Realms { -struct RealmId : public ::NewType { -public: - // prevent constructor by default - RealmId& operator=(RealmId const&); - RealmId(RealmId const&); - RealmId(); -}; +struct RealmId : public ::NewType {}; } // namespace Realms diff --git a/src/mc/client/network/realms/SubscriptionInfo.h b/src/mc/client/network/realms/SubscriptionInfo.h index a0e5d2b120..7720ad0d77 100644 --- a/src/mc/client/network/realms/SubscriptionInfo.h +++ b/src/mc/client/network/realms/SubscriptionInfo.h @@ -4,12 +4,6 @@ namespace Realms { -struct SubscriptionInfo { -public: - // prevent constructor by default - SubscriptionInfo& operator=(SubscriptionInfo const&); - SubscriptionInfo(SubscriptionInfo const&); - SubscriptionInfo(); -}; +struct SubscriptionInfo {}; } // namespace Realms diff --git a/src/mc/client/network/realms/SubscriptionService.h b/src/mc/client/network/realms/SubscriptionService.h index 5ec187f8dc..12cc9248ad 100644 --- a/src/mc/client/network/realms/SubscriptionService.h +++ b/src/mc/client/network/realms/SubscriptionService.h @@ -4,12 +4,6 @@ namespace Realms { -class SubscriptionService { -public: - // prevent constructor by default - SubscriptionService& operator=(SubscriptionService const&); - SubscriptionService(SubscriptionService const&); - SubscriptionService(); -}; +class SubscriptionService {}; } // namespace Realms diff --git a/src/mc/client/options/ChatOptions.h b/src/mc/client/options/ChatOptions.h index fcf2a8e491..704ec33113 100644 --- a/src/mc/client/options/ChatOptions.h +++ b/src/mc/client/options/ChatOptions.h @@ -2,10 +2,4 @@ #include "mc/_HeaderOutputPredefine.h" -class ChatOptions { -public: - // prevent constructor by default - ChatOptions& operator=(ChatOptions const&); - ChatOptions(ChatOptions const&); - ChatOptions(); -}; +class ChatOptions {}; diff --git a/src/mc/client/options/IOptions.h b/src/mc/client/options/IOptions.h index aa347f2735..ddf1cd4600 100644 --- a/src/mc/client/options/IOptions.h +++ b/src/mc/client/options/IOptions.h @@ -47,12 +47,6 @@ class IOptions : public ::std::enable_shared_from_this<::IOptions> { ForceCloudSave = 2, }; -public: - // prevent constructor by default - IOptions& operator=(IOptions const&); - IOptions(IOptions const&); - IOptions(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/client/options/OptionSaveDeferral.h b/src/mc/client/options/OptionSaveDeferral.h index 07c1b15e2d..b69c9dbfc1 100644 --- a/src/mc/client/options/OptionSaveDeferral.h +++ b/src/mc/client/options/OptionSaveDeferral.h @@ -2,10 +2,4 @@ #include "mc/_HeaderOutputPredefine.h" -class OptionSaveDeferral { -public: - // prevent constructor by default - OptionSaveDeferral& operator=(OptionSaveDeferral const&); - OptionSaveDeferral(OptionSaveDeferral const&); - OptionSaveDeferral(); -}; +class OptionSaveDeferral {}; diff --git a/src/mc/client/options/OptionValueInterface.h b/src/mc/client/options/OptionValueInterface.h index 58feaaec80..c06acaba62 100644 --- a/src/mc/client/options/OptionValueInterface.h +++ b/src/mc/client/options/OptionValueInterface.h @@ -22,12 +22,6 @@ struct VolumetricFogConfiguration; // clang-format on class OptionValueInterface { -public: - // prevent constructor by default - OptionValueInterface& operator=(OptionValueInterface const&); - OptionValueInterface(OptionValueInterface const&); - OptionValueInterface(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/client/options/OptionsObserver.h b/src/mc/client/options/OptionsObserver.h index a50dc84207..f28bc95697 100644 --- a/src/mc/client/options/OptionsObserver.h +++ b/src/mc/client/options/OptionsObserver.h @@ -11,12 +11,6 @@ namespace Core { class SingleThreadedLock; } // clang-format on class OptionsObserver : public ::Core::Observer<::OptionsObserver, ::Core::SingleThreadedLock> { -public: - // prevent constructor by default - OptionsObserver& operator=(OptionsObserver const&); - OptionsObserver(OptionsObserver const&); - OptionsObserver(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/client/particle/ParticleEngine.h b/src/mc/client/particle/ParticleEngine.h index b46f24a474..e2e796e9aa 100644 --- a/src/mc/client/particle/ParticleEngine.h +++ b/src/mc/client/particle/ParticleEngine.h @@ -2,10 +2,4 @@ #include "mc/_HeaderOutputPredefine.h" -class ParticleEngine { -public: - // prevent constructor by default - ParticleEngine& operator=(ParticleEngine const&); - ParticleEngine(ParticleEngine const&); - ParticleEngine(); -}; +class ParticleEngine {}; diff --git a/src/mc/client/particlesystem/particle/ParticleEmitter.h b/src/mc/client/particlesystem/particle/ParticleEmitter.h index e2fbd5c2ef..b3f78b6d9d 100644 --- a/src/mc/client/particlesystem/particle/ParticleEmitter.h +++ b/src/mc/client/particlesystem/particle/ParticleEmitter.h @@ -21,12 +21,6 @@ namespace ParticleSystem { struct ActorBindInfo; } namespace ParticleSystem { class ParticleEmitter { -public: - // prevent constructor by default - ParticleEmitter& operator=(ParticleEmitter const&); - ParticleEmitter(ParticleEmitter const&); - ParticleEmitter(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/client/player/LocalPlayer.h b/src/mc/client/player/LocalPlayer.h index 095066a9ed..ce0a778358 100644 --- a/src/mc/client/player/LocalPlayer.h +++ b/src/mc/client/player/LocalPlayer.h @@ -62,12 +62,6 @@ class LocalPlayer : public ::Player { // LocalPlayer inner types define class RegionListener { - public: - // prevent constructor by default - RegionListener& operator=(RegionListener const&); - RegionListener(RegionListener const&); - RegionListener(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/client/player/PersonaRepository.h b/src/mc/client/player/PersonaRepository.h index 16d4b493a0..851d2a897e 100644 --- a/src/mc/client/player/PersonaRepository.h +++ b/src/mc/client/player/PersonaRepository.h @@ -2,10 +2,4 @@ #include "mc/_HeaderOutputPredefine.h" -class PersonaRepository { -public: - // prevent constructor by default - PersonaRepository& operator=(PersonaRepository const&); - PersonaRepository(PersonaRepository const&); - PersonaRepository(); -}; +class PersonaRepository {}; diff --git a/src/mc/client/player/SkinRepository.h b/src/mc/client/player/SkinRepository.h index 44c3b7d713..85bd633536 100644 --- a/src/mc/client/player/SkinRepository.h +++ b/src/mc/client/player/SkinRepository.h @@ -2,10 +2,4 @@ #include "mc/_HeaderOutputPredefine.h" -class SkinRepository { -public: - // prevent constructor by default - SkinRepository& operator=(SkinRepository const&); - SkinRepository(SkinRepository const&); - SkinRepository(); -}; +class SkinRepository {}; diff --git a/src/mc/client/player/SkinRepositoryClientInterface.h b/src/mc/client/player/SkinRepositoryClientInterface.h index 583a871adb..3cdcdb950e 100644 --- a/src/mc/client/player/SkinRepositoryClientInterface.h +++ b/src/mc/client/player/SkinRepositoryClientInterface.h @@ -2,10 +2,4 @@ #include "mc/_HeaderOutputPredefine.h" -class SkinRepositoryClientInterface { -public: - // prevent constructor by default - SkinRepositoryClientInterface& operator=(SkinRepositoryClientInterface const&); - SkinRepositoryClientInterface(SkinRepositoryClientInterface const&); - SkinRepositoryClientInterface(); -}; +class SkinRepositoryClientInterface {}; diff --git a/src/mc/client/realms/RealmsSystem.h b/src/mc/client/realms/RealmsSystem.h index ba5afa8ff8..a532a587a8 100644 --- a/src/mc/client/realms/RealmsSystem.h +++ b/src/mc/client/realms/RealmsSystem.h @@ -4,12 +4,6 @@ namespace Realms { -class RealmsSystem { -public: - // prevent constructor by default - RealmsSystem& operator=(RealmsSystem const&); - RealmsSystem(RealmsSystem const&); - RealmsSystem(); -}; +class RealmsSystem {}; } // namespace Realms diff --git a/src/mc/client/renderer/ClientFrameUpdateContext.h b/src/mc/client/renderer/ClientFrameUpdateContext.h index 72593bc0ef..91cfb6eab7 100644 --- a/src/mc/client/renderer/ClientFrameUpdateContext.h +++ b/src/mc/client/renderer/ClientFrameUpdateContext.h @@ -2,10 +2,4 @@ #include "mc/_HeaderOutputPredefine.h" -class ClientFrameUpdateContext { -public: - // prevent constructor by default - ClientFrameUpdateContext& operator=(ClientFrameUpdateContext const&); - ClientFrameUpdateContext(ClientFrameUpdateContext const&); - ClientFrameUpdateContext(); -}; +class ClientFrameUpdateContext {}; diff --git a/src/mc/client/renderer/DeferredLighting.h b/src/mc/client/renderer/DeferredLighting.h index 7761abd592..068e3fedfa 100644 --- a/src/mc/client/renderer/DeferredLighting.h +++ b/src/mc/client/renderer/DeferredLighting.h @@ -2,10 +2,4 @@ #include "mc/_HeaderOutputPredefine.h" -class DeferredLighting { -public: - // prevent constructor by default - DeferredLighting& operator=(DeferredLighting const&); - DeferredLighting(DeferredLighting const&); - DeferredLighting(); -}; +class DeferredLighting {}; diff --git a/src/mc/client/renderer/FrameUpdateContext.h b/src/mc/client/renderer/FrameUpdateContext.h index ff613ad062..5ba14e5f43 100644 --- a/src/mc/client/renderer/FrameUpdateContext.h +++ b/src/mc/client/renderer/FrameUpdateContext.h @@ -2,10 +2,4 @@ #include "mc/_HeaderOutputPredefine.h" -class FrameUpdateContext { -public: - // prevent constructor by default - FrameUpdateContext& operator=(FrameUpdateContext const&); - FrameUpdateContext(FrameUpdateContext const&); - FrameUpdateContext(); -}; +class FrameUpdateContext {}; diff --git a/src/mc/client/renderer/FrameUpdateContextBase.h b/src/mc/client/renderer/FrameUpdateContextBase.h index 61a2d5d0ed..5c3f496a4c 100644 --- a/src/mc/client/renderer/FrameUpdateContextBase.h +++ b/src/mc/client/renderer/FrameUpdateContextBase.h @@ -2,10 +2,4 @@ #include "mc/_HeaderOutputPredefine.h" -class FrameUpdateContextBase { -public: - // prevent constructor by default - FrameUpdateContextBase& operator=(FrameUpdateContextBase const&); - FrameUpdateContextBase(FrameUpdateContextBase const&); - FrameUpdateContextBase(); -}; +class FrameUpdateContextBase {}; diff --git a/src/mc/client/renderer/MinecraftGraphics.h b/src/mc/client/renderer/MinecraftGraphics.h index 22ac1a2d1c..cf76490d7c 100644 --- a/src/mc/client/renderer/MinecraftGraphics.h +++ b/src/mc/client/renderer/MinecraftGraphics.h @@ -2,10 +2,4 @@ #include "mc/_HeaderOutputPredefine.h" -class MinecraftGraphics { -public: - // prevent constructor by default - MinecraftGraphics& operator=(MinecraftGraphics const&); - MinecraftGraphics(MinecraftGraphics const&); - MinecraftGraphics(); -}; +class MinecraftGraphics {}; diff --git a/src/mc/client/renderer/RenderGraph.h b/src/mc/client/renderer/RenderGraph.h index c76e3ab617..fc350ad1c7 100644 --- a/src/mc/client/renderer/RenderGraph.h +++ b/src/mc/client/renderer/RenderGraph.h @@ -4,12 +4,6 @@ namespace mce { -class RenderGraph { -public: - // prevent constructor by default - RenderGraph& operator=(RenderGraph const&); - RenderGraph(RenderGraph const&); - RenderGraph(); -}; +class RenderGraph {}; } // namespace mce diff --git a/src/mc/client/renderer/TextureGroup.h b/src/mc/client/renderer/TextureGroup.h index 8e40955b67..854c8019f4 100644 --- a/src/mc/client/renderer/TextureGroup.h +++ b/src/mc/client/renderer/TextureGroup.h @@ -4,12 +4,6 @@ namespace mce { -class TextureGroup { -public: - // prevent constructor by default - TextureGroup& operator=(TextureGroup const&); - TextureGroup(TextureGroup const&); - TextureGroup(); -}; +class TextureGroup {}; } // namespace mce diff --git a/src/mc/client/renderer/actor/ActorRenderData.h b/src/mc/client/renderer/actor/ActorRenderData.h index e67987c62c..c5d46ab87a 100644 --- a/src/mc/client/renderer/actor/ActorRenderData.h +++ b/src/mc/client/renderer/actor/ActorRenderData.h @@ -2,10 +2,4 @@ #include "mc/_HeaderOutputPredefine.h" -class ActorRenderData { -public: - // prevent constructor by default - ActorRenderData& operator=(ActorRenderData const&); - ActorRenderData(ActorRenderData const&); - ActorRenderData(); -}; +class ActorRenderData {}; diff --git a/src/mc/client/renderer/actor/ActorRenderDispatcher.h b/src/mc/client/renderer/actor/ActorRenderDispatcher.h index 0bd045b61a..fa1f903973 100644 --- a/src/mc/client/renderer/actor/ActorRenderDispatcher.h +++ b/src/mc/client/renderer/actor/ActorRenderDispatcher.h @@ -2,10 +2,4 @@ #include "mc/_HeaderOutputPredefine.h" -class ActorRenderDispatcher { -public: - // prevent constructor by default - ActorRenderDispatcher& operator=(ActorRenderDispatcher const&); - ActorRenderDispatcher(ActorRenderDispatcher const&); - ActorRenderDispatcher(); -}; +class ActorRenderDispatcher {}; diff --git a/src/mc/client/renderer/actor/ActorResourceDefinitionGroup.h b/src/mc/client/renderer/actor/ActorResourceDefinitionGroup.h index 30a86032f6..64cd4e2c9b 100644 --- a/src/mc/client/renderer/actor/ActorResourceDefinitionGroup.h +++ b/src/mc/client/renderer/actor/ActorResourceDefinitionGroup.h @@ -2,10 +2,4 @@ #include "mc/_HeaderOutputPredefine.h" -class ActorResourceDefinitionGroup { -public: - // prevent constructor by default - ActorResourceDefinitionGroup& operator=(ActorResourceDefinitionGroup const&); - ActorResourceDefinitionGroup(ActorResourceDefinitionGroup const&); - ActorResourceDefinitionGroup(); -}; +class ActorResourceDefinitionGroup {}; diff --git a/src/mc/client/renderer/actor/ItemRenderer.h b/src/mc/client/renderer/actor/ItemRenderer.h index 66a5b890a2..ebbf52e552 100644 --- a/src/mc/client/renderer/actor/ItemRenderer.h +++ b/src/mc/client/renderer/actor/ItemRenderer.h @@ -2,10 +2,4 @@ #include "mc/_HeaderOutputPredefine.h" -class ItemRenderer { -public: - // prevent constructor by default - ItemRenderer& operator=(ItemRenderer const&); - ItemRenderer(ItemRenderer const&); - ItemRenderer(); -}; +class ItemRenderer {}; diff --git a/src/mc/client/renderer/block/BlockGraphics.h b/src/mc/client/renderer/block/BlockGraphics.h index 86ea42fc48..338ae5bcc9 100644 --- a/src/mc/client/renderer/block/BlockGraphics.h +++ b/src/mc/client/renderer/block/BlockGraphics.h @@ -27,13 +27,7 @@ class BlockGraphics { // clang-format on // BlockGraphics inner types define - struct ConstructorToken { - public: - // prevent constructor by default - ConstructorToken& operator=(ConstructorToken const&); - ConstructorToken(ConstructorToken const&); - ConstructorToken(); - }; + struct ConstructorToken {}; struct ModelItem { public: diff --git a/src/mc/client/renderer/block/BlockTessellator.h b/src/mc/client/renderer/block/BlockTessellator.h index 2edb6c09bc..1555c0e750 100644 --- a/src/mc/client/renderer/block/BlockTessellator.h +++ b/src/mc/client/renderer/block/BlockTessellator.h @@ -2,10 +2,4 @@ #include "mc/_HeaderOutputPredefine.h" -class BlockTessellator { -public: - // prevent constructor by default - BlockTessellator& operator=(BlockTessellator const&); - BlockTessellator(BlockTessellator const&); - BlockTessellator(); -}; +class BlockTessellator {}; diff --git a/src/mc/client/renderer/block/block_tessellation_fallback_utils/TessellationConfigInfo.h b/src/mc/client/renderer/block/block_tessellation_fallback_utils/TessellationConfigInfo.h index 94e58331d7..092f379db1 100644 --- a/src/mc/client/renderer/block/block_tessellation_fallback_utils/TessellationConfigInfo.h +++ b/src/mc/client/renderer/block/block_tessellation_fallback_utils/TessellationConfigInfo.h @@ -4,12 +4,6 @@ namespace BlockTessellationFallbackUtils { -struct TessellationConfigInfo { -public: - // prevent constructor by default - TessellationConfigInfo& operator=(TessellationConfigInfo const&); - TessellationConfigInfo(TessellationConfigInfo const&); - TessellationConfigInfo(); -}; +struct TessellationConfigInfo {}; } // namespace BlockTessellationFallbackUtils diff --git a/src/mc/client/renderer/block/culling/BlockCullingGroup.h b/src/mc/client/renderer/block/culling/BlockCullingGroup.h index 5c306b3e71..d61359ad9e 100644 --- a/src/mc/client/renderer/block/culling/BlockCullingGroup.h +++ b/src/mc/client/renderer/block/culling/BlockCullingGroup.h @@ -2,10 +2,4 @@ #include "mc/_HeaderOutputPredefine.h" -class BlockCullingGroup { -public: - // prevent constructor by default - BlockCullingGroup& operator=(BlockCullingGroup const&); - BlockCullingGroup(BlockCullingGroup const&); - BlockCullingGroup(); -}; +class BlockCullingGroup {}; diff --git a/src/mc/client/renderer/block/tessellation_pipeline/SchematicsRepository.h b/src/mc/client/renderer/block/tessellation_pipeline/SchematicsRepository.h index 9229c5cf43..536b3668e5 100644 --- a/src/mc/client/renderer/block/tessellation_pipeline/SchematicsRepository.h +++ b/src/mc/client/renderer/block/tessellation_pipeline/SchematicsRepository.h @@ -4,12 +4,6 @@ namespace ClientBlockPipeline { -class SchematicsRepository { -public: - // prevent constructor by default - SchematicsRepository& operator=(SchematicsRepository const&); - SchematicsRepository(SchematicsRepository const&); - SchematicsRepository(); -}; +class SchematicsRepository {}; } // namespace ClientBlockPipeline diff --git a/src/mc/client/renderer/block/tessellation_pipeline/VolumeOf.h b/src/mc/client/renderer/block/tessellation_pipeline/VolumeOf.h index 1fbff887f4..376fe25f5c 100644 --- a/src/mc/client/renderer/block/tessellation_pipeline/VolumeOf.h +++ b/src/mc/client/renderer/block/tessellation_pipeline/VolumeOf.h @@ -5,12 +5,6 @@ namespace ClientBlockPipeline { template -class VolumeOf { -public: - // prevent constructor by default - VolumeOf& operator=(VolumeOf const&); - VolumeOf(VolumeOf const&); - VolumeOf(); -}; +class VolumeOf {}; } // namespace ClientBlockPipeline diff --git a/src/mc/client/renderer/blockactor/ActorBlockRenderer.h b/src/mc/client/renderer/blockactor/ActorBlockRenderer.h index 806c682507..50f98dd8a1 100644 --- a/src/mc/client/renderer/blockactor/ActorBlockRenderer.h +++ b/src/mc/client/renderer/blockactor/ActorBlockRenderer.h @@ -2,10 +2,4 @@ #include "mc/_HeaderOutputPredefine.h" -class ActorBlockRenderer { -public: - // prevent constructor by default - ActorBlockRenderer& operator=(ActorBlockRenderer const&); - ActorBlockRenderer(ActorBlockRenderer const&); - ActorBlockRenderer(); -}; +class ActorBlockRenderer {}; diff --git a/src/mc/client/renderer/blockactor/BlockActorRenderDispatcher.h b/src/mc/client/renderer/blockactor/BlockActorRenderDispatcher.h index 40be8830a4..beecdc4c8e 100644 --- a/src/mc/client/renderer/blockactor/BlockActorRenderDispatcher.h +++ b/src/mc/client/renderer/blockactor/BlockActorRenderDispatcher.h @@ -2,10 +2,4 @@ #include "mc/_HeaderOutputPredefine.h" -class BlockActorRenderDispatcher { -public: - // prevent constructor by default - BlockActorRenderDispatcher& operator=(BlockActorRenderDispatcher const&); - BlockActorRenderDispatcher(BlockActorRenderDispatcher const&); - BlockActorRenderDispatcher(); -}; +class BlockActorRenderDispatcher {}; diff --git a/src/mc/client/renderer/controller/RenderControllerGroup.h b/src/mc/client/renderer/controller/RenderControllerGroup.h index a468121ccd..6b2b1d4a4e 100644 --- a/src/mc/client/renderer/controller/RenderControllerGroup.h +++ b/src/mc/client/renderer/controller/RenderControllerGroup.h @@ -2,10 +2,4 @@ #include "mc/_HeaderOutputPredefine.h" -class RenderControllerGroup { -public: - // prevent constructor by default - RenderControllerGroup& operator=(RenderControllerGroup const&); - RenderControllerGroup(RenderControllerGroup const&); - RenderControllerGroup(); -}; +class RenderControllerGroup {}; diff --git a/src/mc/client/renderer/debug/DebugRenderer.h b/src/mc/client/renderer/debug/DebugRenderer.h index 633c8e7453..0bd53ad4d1 100644 --- a/src/mc/client/renderer/debug/DebugRenderer.h +++ b/src/mc/client/renderer/debug/DebugRenderer.h @@ -13,10 +13,4 @@ class ChunkPos; class Dimension; // clang-format on -class DebugRenderer { -public: - // prevent constructor by default - DebugRenderer& operator=(DebugRenderer const&); - DebugRenderer(DebugRenderer const&); - DebugRenderer(); -}; +class DebugRenderer {}; diff --git a/src/mc/client/renderer/debug/LatencyGraphDisplay.h b/src/mc/client/renderer/debug/LatencyGraphDisplay.h index b5632b1b0f..adf18f4ff7 100644 --- a/src/mc/client/renderer/debug/LatencyGraphDisplay.h +++ b/src/mc/client/renderer/debug/LatencyGraphDisplay.h @@ -2,10 +2,4 @@ #include "mc/_HeaderOutputPredefine.h" -class LatencyGraphDisplay { -public: - // prevent constructor by default - LatencyGraphDisplay& operator=(LatencyGraphDisplay const&); - LatencyGraphDisplay(LatencyGraphDisplay const&); - LatencyGraphDisplay(); -}; +class LatencyGraphDisplay {}; diff --git a/src/mc/client/renderer/game/GameRenderer.h b/src/mc/client/renderer/game/GameRenderer.h index 5e1323e77e..aa3a1d04dc 100644 --- a/src/mc/client/renderer/game/GameRenderer.h +++ b/src/mc/client/renderer/game/GameRenderer.h @@ -2,10 +2,4 @@ #include "mc/_HeaderOutputPredefine.h" -class GameRenderer { -public: - // prevent constructor by default - GameRenderer& operator=(GameRenderer const&); - GameRenderer(GameRenderer const&); - GameRenderer(); -}; +class GameRenderer {}; diff --git a/src/mc/client/renderer/game/HolosceneRenderer.h b/src/mc/client/renderer/game/HolosceneRenderer.h index 7a0db770a9..d8a06766e1 100644 --- a/src/mc/client/renderer/game/HolosceneRenderer.h +++ b/src/mc/client/renderer/game/HolosceneRenderer.h @@ -2,10 +2,4 @@ #include "mc/_HeaderOutputPredefine.h" -class HolosceneRenderer { -public: - // prevent constructor by default - HolosceneRenderer& operator=(HolosceneRenderer const&); - HolosceneRenderer(HolosceneRenderer const&); - HolosceneRenderer(); -}; +class HolosceneRenderer {}; diff --git a/src/mc/client/renderer/game/ItemInHandRenderer.h b/src/mc/client/renderer/game/ItemInHandRenderer.h index 5e8c3d74fc..bce8679a76 100644 --- a/src/mc/client/renderer/game/ItemInHandRenderer.h +++ b/src/mc/client/renderer/game/ItemInHandRenderer.h @@ -2,10 +2,4 @@ #include "mc/_HeaderOutputPredefine.h" -class ItemInHandRenderer { -public: - // prevent constructor by default - ItemInHandRenderer& operator=(ItemInHandRenderer const&); - ItemInHandRenderer(ItemInHandRenderer const&); - ItemInHandRenderer(); -}; +class ItemInHandRenderer {}; diff --git a/src/mc/client/renderer/game/LevelRenderer.h b/src/mc/client/renderer/game/LevelRenderer.h index e350170421..0021816663 100644 --- a/src/mc/client/renderer/game/LevelRenderer.h +++ b/src/mc/client/renderer/game/LevelRenderer.h @@ -2,10 +2,4 @@ #include "mc/_HeaderOutputPredefine.h" -class LevelRenderer { -public: - // prevent constructor by default - LevelRenderer& operator=(LevelRenderer const&); - LevelRenderer(LevelRenderer const&); - LevelRenderer(); -}; +class LevelRenderer {}; diff --git a/src/mc/client/renderer/game/LevelRendererCameraProxy.h b/src/mc/client/renderer/game/LevelRendererCameraProxy.h index 5e3e1b12a5..67d5fcffa9 100644 --- a/src/mc/client/renderer/game/LevelRendererCameraProxy.h +++ b/src/mc/client/renderer/game/LevelRendererCameraProxy.h @@ -2,10 +2,4 @@ #include "mc/_HeaderOutputPredefine.h" -class LevelRendererCameraProxy { -public: - // prevent constructor by default - LevelRendererCameraProxy& operator=(LevelRendererCameraProxy const&); - LevelRendererCameraProxy(LevelRendererCameraProxy const&); - LevelRendererCameraProxy(); -}; +class LevelRendererCameraProxy {}; diff --git a/src/mc/client/renderer/game/SeasonsRenderer.h b/src/mc/client/renderer/game/SeasonsRenderer.h index fb7390c4fe..597587a76d 100644 --- a/src/mc/client/renderer/game/SeasonsRenderer.h +++ b/src/mc/client/renderer/game/SeasonsRenderer.h @@ -2,10 +2,4 @@ #include "mc/_HeaderOutputPredefine.h" -class SeasonsRenderer { -public: - // prevent constructor by default - SeasonsRenderer& operator=(SeasonsRenderer const&); - SeasonsRenderer(SeasonsRenderer const&); - SeasonsRenderer(); -}; +class SeasonsRenderer {}; diff --git a/src/mc/client/renderer/ptexture/LightTexture.h b/src/mc/client/renderer/ptexture/LightTexture.h index 94bc994e8f..ba04679ec6 100644 --- a/src/mc/client/renderer/ptexture/LightTexture.h +++ b/src/mc/client/renderer/ptexture/LightTexture.h @@ -2,10 +2,4 @@ #include "mc/_HeaderOutputPredefine.h" -class LightTexture { -public: - // prevent constructor by default - LightTexture& operator=(LightTexture const&); - LightTexture(LightTexture const&); - LightTexture(); -}; +class LightTexture {}; diff --git a/src/mc/client/renderer/texture/TextureAtlas.h b/src/mc/client/renderer/texture/TextureAtlas.h index b09e9fa3c1..de00d0be59 100644 --- a/src/mc/client/renderer/texture/TextureAtlas.h +++ b/src/mc/client/renderer/texture/TextureAtlas.h @@ -2,10 +2,4 @@ #include "mc/_HeaderOutputPredefine.h" -class TextureAtlas { -public: - // prevent constructor by default - TextureAtlas& operator=(TextureAtlas const&); - TextureAtlas(TextureAtlas const&); - TextureAtlas(); -}; +class TextureAtlas {}; diff --git a/src/mc/client/resources/ExternalContentManager.h b/src/mc/client/resources/ExternalContentManager.h index f7a70c1612..cce3d9f32f 100644 --- a/src/mc/client/resources/ExternalContentManager.h +++ b/src/mc/client/resources/ExternalContentManager.h @@ -56,13 +56,7 @@ class ExternalContentManager : public ::Bedrock::EnableNonOwnerReferences { LoadingContentData(); }; - struct LoadingContentDataHasher { - public: - // prevent constructor by default - LoadingContentDataHasher& operator=(LoadingContentDataHasher const&); - LoadingContentDataHasher(LoadingContentDataHasher const&); - LoadingContentDataHasher(); - }; + struct LoadingContentDataHasher {}; public: // member variables diff --git a/src/mc/client/resources/GlobalResourcesCrashRecovery.h b/src/mc/client/resources/GlobalResourcesCrashRecovery.h index 18215fc84c..f7b654b321 100644 --- a/src/mc/client/resources/GlobalResourcesCrashRecovery.h +++ b/src/mc/client/resources/GlobalResourcesCrashRecovery.h @@ -2,10 +2,4 @@ #include "mc/_HeaderOutputPredefine.h" -class GlobalResourcesCrashRecovery { -public: - // prevent constructor by default - GlobalResourcesCrashRecovery& operator=(GlobalResourcesCrashRecovery const&); - GlobalResourcesCrashRecovery(GlobalResourcesCrashRecovery const&); - GlobalResourcesCrashRecovery(); -}; +class GlobalResourcesCrashRecovery {}; diff --git a/src/mc/client/resources/PackDownloadManager.h b/src/mc/client/resources/PackDownloadManager.h index 7a8f121393..b0c2ba43cc 100644 --- a/src/mc/client/resources/PackDownloadManager.h +++ b/src/mc/client/resources/PackDownloadManager.h @@ -2,10 +2,4 @@ #include "mc/_HeaderOutputPredefine.h" -class PackDownloadManager { -public: - // prevent constructor by default - PackDownloadManager& operator=(PackDownloadManager const&); - PackDownloadManager(PackDownloadManager const&); - PackDownloadManager(); -}; +class PackDownloadManager {}; diff --git a/src/mc/client/safety/PlayerReportHandler.h b/src/mc/client/safety/PlayerReportHandler.h index dafdf74782..68d22c52d5 100644 --- a/src/mc/client/safety/PlayerReportHandler.h +++ b/src/mc/client/safety/PlayerReportHandler.h @@ -2,10 +2,4 @@ #include "mc/_HeaderOutputPredefine.h" -class PlayerReportHandler { -public: - // prevent constructor by default - PlayerReportHandler& operator=(PlayerReportHandler const&); - PlayerReportHandler(PlayerReportHandler const&); - PlayerReportHandler(); -}; +class PlayerReportHandler {}; diff --git a/src/mc/client/scripting/ClientScriptManager.h b/src/mc/client/scripting/ClientScriptManager.h index 76f534e376..e429478fc7 100644 --- a/src/mc/client/scripting/ClientScriptManager.h +++ b/src/mc/client/scripting/ClientScriptManager.h @@ -2,10 +2,4 @@ #include "mc/_HeaderOutputPredefine.h" -class ClientScriptManager { -public: - // prevent constructor by default - ClientScriptManager& operator=(ClientScriptManager const&); - ClientScriptManager(ClientScriptManager const&); - ClientScriptManager(); -}; +class ClientScriptManager {}; diff --git a/src/mc/client/services/ClubsService.h b/src/mc/client/services/ClubsService.h index b38c1b8d7c..350826d7dc 100644 --- a/src/mc/client/services/ClubsService.h +++ b/src/mc/client/services/ClubsService.h @@ -2,10 +2,4 @@ #include "mc/_HeaderOutputPredefine.h" -class ClubsService { -public: - // prevent constructor by default - ClubsService& operator=(ClubsService const&); - ClubsService(ClubsService const&); - ClubsService(); -}; +class ClubsService {}; diff --git a/src/mc/client/services/catalog/ClientRequirementVerifier.h b/src/mc/client/services/catalog/ClientRequirementVerifier.h index 86b3b438e8..7254c9fc01 100644 --- a/src/mc/client/services/catalog/ClientRequirementVerifier.h +++ b/src/mc/client/services/catalog/ClientRequirementVerifier.h @@ -2,10 +2,4 @@ #include "mc/_HeaderOutputPredefine.h" -class ClientRequirementVerifier { -public: - // prevent constructor by default - ClientRequirementVerifier& operator=(ClientRequirementVerifier const&); - ClientRequirementVerifier(ClientRequirementVerifier const&); - ClientRequirementVerifier(); -}; +class ClientRequirementVerifier {}; diff --git a/src/mc/client/services/cdn/CDNService.h b/src/mc/client/services/cdn/CDNService.h index f746a696e2..0a799d78a1 100644 --- a/src/mc/client/services/cdn/CDNService.h +++ b/src/mc/client/services/cdn/CDNService.h @@ -2,10 +2,4 @@ #include "mc/_HeaderOutputPredefine.h" -class CDNService { -public: - // prevent constructor by default - CDNService& operator=(CDNService const&); - CDNService(CDNService const&); - CDNService(); -}; +class CDNService {}; diff --git a/src/mc/client/services/download/ContentAcquisition.h b/src/mc/client/services/download/ContentAcquisition.h index 1f72856a29..d5ba83aca9 100644 --- a/src/mc/client/services/download/ContentAcquisition.h +++ b/src/mc/client/services/download/ContentAcquisition.h @@ -2,10 +2,4 @@ #include "mc/_HeaderOutputPredefine.h" -class ContentAcquisition { -public: - // prevent constructor by default - ContentAcquisition& operator=(ContentAcquisition const&); - ContentAcquisition(ContentAcquisition const&); - ContentAcquisition(); -}; +class ContentAcquisition {}; diff --git a/src/mc/client/services/download/DlcBatchThrottleBridge.h b/src/mc/client/services/download/DlcBatchThrottleBridge.h index b218c6e031..55a66db852 100644 --- a/src/mc/client/services/download/DlcBatchThrottleBridge.h +++ b/src/mc/client/services/download/DlcBatchThrottleBridge.h @@ -2,10 +2,4 @@ #include "mc/_HeaderOutputPredefine.h" -class DlcBatchThrottleBridge { -public: - // prevent constructor by default - DlcBatchThrottleBridge& operator=(DlcBatchThrottleBridge const&); - DlcBatchThrottleBridge(DlcBatchThrottleBridge const&); - DlcBatchThrottleBridge(); -}; +class DlcBatchThrottleBridge {}; diff --git a/src/mc/client/services/download/DlcId.h b/src/mc/client/services/download/DlcId.h index 2f13a2b36f..3db2ba5890 100644 --- a/src/mc/client/services/download/DlcId.h +++ b/src/mc/client/services/download/DlcId.h @@ -2,10 +2,4 @@ #include "mc/_HeaderOutputPredefine.h" -class DlcId { -public: - // prevent constructor by default - DlcId& operator=(DlcId const&); - DlcId(DlcId const&); - DlcId(); -}; +class DlcId {}; diff --git a/src/mc/client/services/download/DownloadStateObject.h b/src/mc/client/services/download/DownloadStateObject.h index 9be9bd47b0..6cb74bfef4 100644 --- a/src/mc/client/services/download/DownloadStateObject.h +++ b/src/mc/client/services/download/DownloadStateObject.h @@ -2,10 +2,4 @@ #include "mc/_HeaderOutputPredefine.h" -struct DownloadStateObject { -public: - // prevent constructor by default - DownloadStateObject& operator=(DownloadStateObject const&); - DownloadStateObject(DownloadStateObject const&); - DownloadStateObject(); -}; +struct DownloadStateObject {}; diff --git a/src/mc/client/services/download/IContentAcquisition.h b/src/mc/client/services/download/IContentAcquisition.h index cc6001eac0..795326636c 100644 --- a/src/mc/client/services/download/IContentAcquisition.h +++ b/src/mc/client/services/download/IContentAcquisition.h @@ -19,12 +19,6 @@ struct PackImportStateObject; // clang-format on class IContentAcquisition { -public: - // prevent constructor by default - IContentAcquisition& operator=(IContentAcquisition const&); - IContentAcquisition(IContentAcquisition const&); - IContentAcquisition(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/client/services/download/IContentTracker.h b/src/mc/client/services/download/IContentTracker.h index 25dee6c1b4..60d242ef9c 100644 --- a/src/mc/client/services/download/IContentTracker.h +++ b/src/mc/client/services/download/IContentTracker.h @@ -2,10 +2,4 @@ #include "mc/_HeaderOutputPredefine.h" -class IContentTracker { -public: - // prevent constructor by default - IContentTracker& operator=(IContentTracker const&); - IContentTracker(IContentTracker const&); - IContentTracker(); -}; +class IContentTracker {}; diff --git a/src/mc/client/services/download/IDlcBatchModel.h b/src/mc/client/services/download/IDlcBatchModel.h index ea927dceea..255b9f8c66 100644 --- a/src/mc/client/services/download/IDlcBatchModel.h +++ b/src/mc/client/services/download/IDlcBatchModel.h @@ -13,12 +13,6 @@ class IStoreCatalogRepository; // clang-format on class IDlcBatchModel { -public: - // prevent constructor by default - IDlcBatchModel& operator=(IDlcBatchModel const&); - IDlcBatchModel(IDlcBatchModel const&); - IDlcBatchModel(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/client/services/download/IDlcBatcher.h b/src/mc/client/services/download/IDlcBatcher.h index b0ed762ec1..415eec7e46 100644 --- a/src/mc/client/services/download/IDlcBatcher.h +++ b/src/mc/client/services/download/IDlcBatcher.h @@ -10,12 +10,6 @@ struct PackIdVersion; // clang-format on class IDlcBatcher { -public: - // prevent constructor by default - IDlcBatcher& operator=(IDlcBatcher const&); - IDlcBatcher(IDlcBatcher const&); - IDlcBatcher(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/client/services/download/IDlcValidation.h b/src/mc/client/services/download/IDlcValidation.h index 6a18de9a10..f4d9719d90 100644 --- a/src/mc/client/services/download/IDlcValidation.h +++ b/src/mc/client/services/download/IDlcValidation.h @@ -2,10 +2,4 @@ #include "mc/_HeaderOutputPredefine.h" -class IDlcValidation { -public: - // prevent constructor by default - IDlcValidation& operator=(IDlcValidation const&); - IDlcValidation(IDlcValidation const&); - IDlcValidation(); -}; +class IDlcValidation {}; diff --git a/src/mc/client/services/download/PackImportStateObject.h b/src/mc/client/services/download/PackImportStateObject.h index a9a2b0f148..7883b1d230 100644 --- a/src/mc/client/services/download/PackImportStateObject.h +++ b/src/mc/client/services/download/PackImportStateObject.h @@ -2,10 +2,4 @@ #include "mc/_HeaderOutputPredefine.h" -struct PackImportStateObject { -public: - // prevent constructor by default - PackImportStateObject& operator=(PackImportStateObject const&); - PackImportStateObject(PackImportStateObject const&); - PackImportStateObject(); -}; +struct PackImportStateObject {}; diff --git a/src/mc/client/services/download/TreatmentPackDownloadMonitor.h b/src/mc/client/services/download/TreatmentPackDownloadMonitor.h index 935707c5cc..1f7f1b6d87 100644 --- a/src/mc/client/services/download/TreatmentPackDownloadMonitor.h +++ b/src/mc/client/services/download/TreatmentPackDownloadMonitor.h @@ -2,10 +2,4 @@ #include "mc/_HeaderOutputPredefine.h" -class TreatmentPackDownloadMonitor { -public: - // prevent constructor by default - TreatmentPackDownloadMonitor& operator=(TreatmentPackDownloadMonitor const&); - TreatmentPackDownloadMonitor(TreatmentPackDownloadMonitor const&); - TreatmentPackDownloadMonitor(); -}; +class TreatmentPackDownloadMonitor {}; diff --git a/src/mc/client/services/flighting/FlightingToggleMetadata.h b/src/mc/client/services/flighting/FlightingToggleMetadata.h index 8b4603c9af..06ce287d82 100644 --- a/src/mc/client/services/flighting/FlightingToggleMetadata.h +++ b/src/mc/client/services/flighting/FlightingToggleMetadata.h @@ -2,10 +2,4 @@ #include "mc/_HeaderOutputPredefine.h" -struct FlightingToggleMetadata { -public: - // prevent constructor by default - FlightingToggleMetadata& operator=(FlightingToggleMetadata const&); - FlightingToggleMetadata(FlightingToggleMetadata const&); - FlightingToggleMetadata(); -}; +struct FlightingToggleMetadata {}; diff --git a/src/mc/client/services/flighting/IFlightingToggles.h b/src/mc/client/services/flighting/IFlightingToggles.h index ff32b0b221..9c49957ecb 100644 --- a/src/mc/client/services/flighting/IFlightingToggles.h +++ b/src/mc/client/services/flighting/IFlightingToggles.h @@ -13,12 +13,6 @@ namespace Bedrock::PubSub { class Subscription; } // clang-format on class IFlightingToggles { -public: - // prevent constructor by default - IFlightingToggles& operator=(IFlightingToggles const&); - IFlightingToggles(IFlightingToggles const&); - IFlightingToggles(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/client/services/flighting/ProgressionFlightingToggles.h b/src/mc/client/services/flighting/ProgressionFlightingToggles.h index 99c39075c3..a38b75c8af 100644 --- a/src/mc/client/services/flighting/ProgressionFlightingToggles.h +++ b/src/mc/client/services/flighting/ProgressionFlightingToggles.h @@ -6,12 +6,6 @@ #include "mc/client/services/flighting/FlightingToggles.h" class ProgressionFlightingToggles : public ::FlightingToggles { -public: - // prevent constructor by default - ProgressionFlightingToggles& operator=(ProgressionFlightingToggles const&); - ProgressionFlightingToggles(ProgressionFlightingToggles const&); - ProgressionFlightingToggles(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/client/services/flighting/TreatmentFlightingToggles.h b/src/mc/client/services/flighting/TreatmentFlightingToggles.h index 40beaf8402..51e418943e 100644 --- a/src/mc/client/services/flighting/TreatmentFlightingToggles.h +++ b/src/mc/client/services/flighting/TreatmentFlightingToggles.h @@ -6,12 +6,6 @@ #include "mc/client/services/flighting/FlightingToggles.h" class TreatmentFlightingToggles : public ::FlightingToggles { -public: - // prevent constructor by default - TreatmentFlightingToggles& operator=(TreatmentFlightingToggles const&); - TreatmentFlightingToggles(TreatmentFlightingToggles const&); - TreatmentFlightingToggles(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/client/services/live_events/GatheringManager.h b/src/mc/client/services/live_events/GatheringManager.h index b118a38bc3..cbbc467e72 100644 --- a/src/mc/client/services/live_events/GatheringManager.h +++ b/src/mc/client/services/live_events/GatheringManager.h @@ -2,10 +2,4 @@ #include "mc/_HeaderOutputPredefine.h" -class GatheringManager { -public: - // prevent constructor by default - GatheringManager& operator=(GatheringManager const&); - GatheringManager(GatheringManager const&); - GatheringManager(); -}; +class GatheringManager {}; diff --git a/src/mc/client/services/messaging/PlayerMessagingService.h b/src/mc/client/services/messaging/PlayerMessagingService.h index e309ad760c..246dfcd62c 100644 --- a/src/mc/client/services/messaging/PlayerMessagingService.h +++ b/src/mc/client/services/messaging/PlayerMessagingService.h @@ -2,10 +2,4 @@ #include "mc/_HeaderOutputPredefine.h" -class PlayerMessagingService { -public: - // prevent constructor by default - PlayerMessagingService& operator=(PlayerMessagingService const&); - PlayerMessagingService(PlayerMessagingService const&); - PlayerMessagingService(); -}; +class PlayerMessagingService {}; diff --git a/src/mc/client/services/ms_graph/models/DownloadUrlInfo.h b/src/mc/client/services/ms_graph/models/DownloadUrlInfo.h index ade69aa18c..dcba30f1d5 100644 --- a/src/mc/client/services/ms_graph/models/DownloadUrlInfo.h +++ b/src/mc/client/services/ms_graph/models/DownloadUrlInfo.h @@ -4,12 +4,6 @@ namespace MSGraph::Models { -struct DownloadUrlInfo { -public: - // prevent constructor by default - DownloadUrlInfo& operator=(DownloadUrlInfo const&); - DownloadUrlInfo(DownloadUrlInfo const&); - DownloadUrlInfo(); -}; +struct DownloadUrlInfo {}; } // namespace MSGraph::Models diff --git a/src/mc/client/services/ms_graph/models/DriveItem.h b/src/mc/client/services/ms_graph/models/DriveItem.h index db7751a987..da68c4ab94 100644 --- a/src/mc/client/services/ms_graph/models/DriveItem.h +++ b/src/mc/client/services/ms_graph/models/DriveItem.h @@ -4,12 +4,6 @@ namespace MSGraph::Models { -struct DriveItem { -public: - // prevent constructor by default - DriveItem& operator=(DriveItem const&); - DriveItem(DriveItem const&); - DriveItem(); -}; +struct DriveItem {}; } // namespace MSGraph::Models diff --git a/src/mc/client/services/ms_graph/models/DriveItemCollection.h b/src/mc/client/services/ms_graph/models/DriveItemCollection.h index 5626476017..221e97a31b 100644 --- a/src/mc/client/services/ms_graph/models/DriveItemCollection.h +++ b/src/mc/client/services/ms_graph/models/DriveItemCollection.h @@ -4,12 +4,6 @@ namespace MSGraph::Models { -struct DriveItemCollection { -public: - // prevent constructor by default - DriveItemCollection& operator=(DriveItemCollection const&); - DriveItemCollection(DriveItemCollection const&); - DriveItemCollection(); -}; +struct DriveItemCollection {}; } // namespace MSGraph::Models diff --git a/src/mc/client/services/ms_graph/models/GraphError.h b/src/mc/client/services/ms_graph/models/GraphError.h index 883c8dd1df..77c5e464f6 100644 --- a/src/mc/client/services/ms_graph/models/GraphError.h +++ b/src/mc/client/services/ms_graph/models/GraphError.h @@ -4,12 +4,6 @@ namespace MSGraph::Models { -struct GraphError { -public: - // prevent constructor by default - GraphError& operator=(GraphError const&); - GraphError(GraphError const&); - GraphError(); -}; +struct GraphError {}; } // namespace MSGraph::Models diff --git a/src/mc/client/services/ms_graph/models/GraphUploadBody.h b/src/mc/client/services/ms_graph/models/GraphUploadBody.h index 3b95d8382e..8a45cc34a9 100644 --- a/src/mc/client/services/ms_graph/models/GraphUploadBody.h +++ b/src/mc/client/services/ms_graph/models/GraphUploadBody.h @@ -9,12 +9,6 @@ namespace MSGraph::Models { struct GraphUploadBody : public ::Bedrock::Http::FileRequestBody { -public: - // prevent constructor by default - GraphUploadBody& operator=(GraphUploadBody const&); - GraphUploadBody(GraphUploadBody const&); - GraphUploadBody(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/client/services/ms_graph/models/UploadSession.h b/src/mc/client/services/ms_graph/models/UploadSession.h index 6c899fd52d..b1e07e9199 100644 --- a/src/mc/client/services/ms_graph/models/UploadSession.h +++ b/src/mc/client/services/ms_graph/models/UploadSession.h @@ -4,12 +4,6 @@ namespace MSGraph::Models { -struct UploadSession { -public: - // prevent constructor by default - UploadSession& operator=(UploadSession const&); - UploadSession(UploadSession const&); - UploadSession(); -}; +struct UploadSession {}; } // namespace MSGraph::Models diff --git a/src/mc/client/services/persona/PersonaService.h b/src/mc/client/services/persona/PersonaService.h index 2e7e4879be..7772de7f1c 100644 --- a/src/mc/client/services/persona/PersonaService.h +++ b/src/mc/client/services/persona/PersonaService.h @@ -2,10 +2,4 @@ #include "mc/_HeaderOutputPredefine.h" -class PersonaService { -public: - // prevent constructor by default - PersonaService& operator=(PersonaService const&); - PersonaService(PersonaService const&); - PersonaService(); -}; +class PersonaService {}; diff --git a/src/mc/client/services/requests/FileDataRequest.h b/src/mc/client/services/requests/FileDataRequest.h index d42070edb5..7c6529537c 100644 --- a/src/mc/client/services/requests/FileDataRequest.h +++ b/src/mc/client/services/requests/FileDataRequest.h @@ -2,10 +2,4 @@ #include "mc/_HeaderOutputPredefine.h" -class FileDataRequest { -public: - // prevent constructor by default - FileDataRequest& operator=(FileDataRequest const&); - FileDataRequest(FileDataRequest const&); - FileDataRequest(); -}; +class FileDataRequest {}; diff --git a/src/mc/client/services/requests/payment/CheckGooglePlayStoreHold.h b/src/mc/client/services/requests/payment/CheckGooglePlayStoreHold.h index fd04b4c104..3d36193a04 100644 --- a/src/mc/client/services/requests/payment/CheckGooglePlayStoreHold.h +++ b/src/mc/client/services/requests/payment/CheckGooglePlayStoreHold.h @@ -11,12 +11,6 @@ namespace Json { class Value; } // clang-format on class CheckGooglePlayStoreHold : public ::CheckReceiptDetails { -public: - // prevent constructor by default - CheckGooglePlayStoreHold& operator=(CheckGooglePlayStoreHold const&); - CheckGooglePlayStoreHold(CheckGooglePlayStoreHold const&); - CheckGooglePlayStoreHold(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/client/services/requests/payment/CheckReceiptDetailsWindowsOneStore.h b/src/mc/client/services/requests/payment/CheckReceiptDetailsWindowsOneStore.h index 9e80d5acd2..c956c646a7 100644 --- a/src/mc/client/services/requests/payment/CheckReceiptDetailsWindowsOneStore.h +++ b/src/mc/client/services/requests/payment/CheckReceiptDetailsWindowsOneStore.h @@ -11,12 +11,6 @@ namespace Json { class Value; } // clang-format on class CheckReceiptDetailsWindowsOneStore : public ::CheckReceiptDetails { -public: - // prevent constructor by default - CheckReceiptDetailsWindowsOneStore& operator=(CheckReceiptDetailsWindowsOneStore const&); - CheckReceiptDetailsWindowsOneStore(CheckReceiptDetailsWindowsOneStore const&); - CheckReceiptDetailsWindowsOneStore(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/client/services/sdl/ServiceResponseOfContinuation.h b/src/mc/client/services/sdl/ServiceResponseOfContinuation.h index 50ba55ed4e..13240d37a3 100644 --- a/src/mc/client/services/sdl/ServiceResponseOfContinuation.h +++ b/src/mc/client/services/sdl/ServiceResponseOfContinuation.h @@ -4,12 +4,6 @@ namespace SDL { -struct ServiceResponseOfContinuation { -public: - // prevent constructor by default - ServiceResponseOfContinuation& operator=(ServiceResponseOfContinuation const&); - ServiceResponseOfContinuation(ServiceResponseOfContinuation const&); - ServiceResponseOfContinuation(); -}; +struct ServiceResponseOfContinuation {}; } // namespace SDL diff --git a/src/mc/client/services/sdl/ServiceResponseOfPage.h b/src/mc/client/services/sdl/ServiceResponseOfPage.h index 24c55f17d4..4ca050106c 100644 --- a/src/mc/client/services/sdl/ServiceResponseOfPage.h +++ b/src/mc/client/services/sdl/ServiceResponseOfPage.h @@ -4,12 +4,6 @@ namespace SDL { -struct ServiceResponseOfPage { -public: - // prevent constructor by default - ServiceResponseOfPage& operator=(ServiceResponseOfPage const&); - ServiceResponseOfPage(ServiceResponseOfPage const&); - ServiceResponseOfPage(); -}; +struct ServiceResponseOfPage {}; } // namespace SDL diff --git a/src/mc/client/social/AuthToken.h b/src/mc/client/social/AuthToken.h index 84eec8df41..fc8153a119 100644 --- a/src/mc/client/social/AuthToken.h +++ b/src/mc/client/social/AuthToken.h @@ -7,12 +7,6 @@ namespace Social { -struct AuthToken : public ::NewType<::std::string> { -public: - // prevent constructor by default - AuthToken& operator=(AuthToken const&); - AuthToken(AuthToken const&); - AuthToken(); -}; +struct AuthToken : public ::NewType<::std::string> {}; } // namespace Social diff --git a/src/mc/client/social/GallerySize.h b/src/mc/client/social/GallerySize.h index b328de7cf6..94a09e80e0 100644 --- a/src/mc/client/social/GallerySize.h +++ b/src/mc/client/social/GallerySize.h @@ -4,12 +4,6 @@ namespace Social { -struct GallerySize { -public: - // prevent constructor by default - GallerySize& operator=(GallerySize const&); - GallerySize(GallerySize const&); - GallerySize(); -}; +struct GallerySize {}; } // namespace Social diff --git a/src/mc/client/social/IScreenshotGalleryHttpCall.h b/src/mc/client/social/IScreenshotGalleryHttpCall.h index 8746427363..d399abeee7 100644 --- a/src/mc/client/social/IScreenshotGalleryHttpCall.h +++ b/src/mc/client/social/IScreenshotGalleryHttpCall.h @@ -16,12 +16,6 @@ namespace Social { struct RawShowcasedScreenshot; } namespace Social { class IScreenshotGalleryHttpCall { -public: - // prevent constructor by default - IScreenshotGalleryHttpCall& operator=(IScreenshotGalleryHttpCall const&); - IScreenshotGalleryHttpCall(IScreenshotGalleryHttpCall const&); - IScreenshotGalleryHttpCall(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/client/social/IToastListener.h b/src/mc/client/social/IToastListener.h index 7ad2c7f8f4..30239ef2cc 100644 --- a/src/mc/client/social/IToastListener.h +++ b/src/mc/client/social/IToastListener.h @@ -8,12 +8,6 @@ class ToastMessage; // clang-format on class IToastListener { -public: - // prevent constructor by default - IToastListener& operator=(IToastListener const&); - IToastListener(IToastListener const&); - IToastListener(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/client/social/IToastManager.h b/src/mc/client/social/IToastManager.h index 43b49af519..19b2580189 100644 --- a/src/mc/client/social/IToastManager.h +++ b/src/mc/client/social/IToastManager.h @@ -11,12 +11,6 @@ class ToastMessage; // clang-format on class IToastManager : public ::Bedrock::EnableNonOwnerReferences { -public: - // prevent constructor by default - IToastManager& operator=(IToastManager const&); - IToastManager(IToastManager const&); - IToastManager(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/client/social/IUserManager.h b/src/mc/client/social/IUserManager.h index de5d4f4003..7b2371bc13 100644 --- a/src/mc/client/social/IUserManager.h +++ b/src/mc/client/social/IUserManager.h @@ -33,12 +33,6 @@ namespace mce { struct Image; } namespace Social { class IUserManager : public ::Bedrock::EnableNonOwnerReferences { -public: - // prevent constructor by default - IUserManager& operator=(IUserManager const&); - IUserManager(IUserManager const&); - IUserManager(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/client/social/MultiplayerService.h b/src/mc/client/social/MultiplayerService.h index 8dcfb74e6c..0c833b007e 100644 --- a/src/mc/client/social/MultiplayerService.h +++ b/src/mc/client/social/MultiplayerService.h @@ -4,12 +4,6 @@ namespace Social { -class MultiplayerService { -public: - // prevent constructor by default - MultiplayerService& operator=(MultiplayerService const&); - MultiplayerService(MultiplayerService const&); - MultiplayerService(); -}; +class MultiplayerService {}; } // namespace Social diff --git a/src/mc/client/social/PlatformUserProfileData.h b/src/mc/client/social/PlatformUserProfileData.h index d03f932958..9118e2ea60 100644 --- a/src/mc/client/social/PlatformUserProfileData.h +++ b/src/mc/client/social/PlatformUserProfileData.h @@ -4,12 +4,6 @@ namespace Social { -struct PlatformUserProfileData { -public: - // prevent constructor by default - PlatformUserProfileData& operator=(PlatformUserProfileData const&); - PlatformUserProfileData(PlatformUserProfileData const&); - PlatformUserProfileData(); -}; +struct PlatformUserProfileData {}; } // namespace Social diff --git a/src/mc/client/social/PresenceManager.h b/src/mc/client/social/PresenceManager.h index de575fd367..4ac485dbd7 100644 --- a/src/mc/client/social/PresenceManager.h +++ b/src/mc/client/social/PresenceManager.h @@ -4,12 +4,6 @@ namespace Social { -class PresenceManager { -public: - // prevent constructor by default - PresenceManager& operator=(PresenceManager const&); - PresenceManager(PresenceManager const&); - PresenceManager(); -}; +class PresenceManager {}; } // namespace Social diff --git a/src/mc/client/social/RawShowcasedScreenshot.h b/src/mc/client/social/RawShowcasedScreenshot.h index 51f03cdacf..4d4a9d0364 100644 --- a/src/mc/client/social/RawShowcasedScreenshot.h +++ b/src/mc/client/social/RawShowcasedScreenshot.h @@ -4,12 +4,6 @@ namespace Social { -struct RawShowcasedScreenshot { -public: - // prevent constructor by default - RawShowcasedScreenshot& operator=(RawShowcasedScreenshot const&); - RawShowcasedScreenshot(RawShowcasedScreenshot const&); - RawShowcasedScreenshot(); -}; +struct RawShowcasedScreenshot {}; } // namespace Social diff --git a/src/mc/client/social/System.h b/src/mc/client/social/System.h index 421b8057a0..e4e93f062a 100644 --- a/src/mc/client/social/System.h +++ b/src/mc/client/social/System.h @@ -4,12 +4,6 @@ namespace Social { -class System { -public: - // prevent constructor by default - System& operator=(System const&); - System(System const&); - System(); -}; +class System {}; } // namespace Social diff --git a/src/mc/client/social/User.h b/src/mc/client/social/User.h index 972ff7475b..890c392d39 100644 --- a/src/mc/client/social/User.h +++ b/src/mc/client/social/User.h @@ -41,12 +41,6 @@ namespace mce { struct Image; } namespace Social { class User : public ::std::enable_shared_from_this<::Social::User> { -public: - // prevent constructor by default - User& operator=(User const&); - User(User const&); - User(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/client/social/UserListObserver.h b/src/mc/client/social/UserListObserver.h index 9af9418b05..da05bf8350 100644 --- a/src/mc/client/social/UserListObserver.h +++ b/src/mc/client/social/UserListObserver.h @@ -15,12 +15,6 @@ namespace Social { class User; } namespace Social { class UserListObserver : public ::Core::Observer<::Social::UserListObserver, ::Core::SingleThreadedLock> { -public: - // prevent constructor by default - UserListObserver& operator=(UserListObserver const&); - UserListObserver(UserListObserver const&); - UserListObserver(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/client/social/XboxLiveUser.h b/src/mc/client/social/XboxLiveUser.h index 9763498430..d160d98636 100644 --- a/src/mc/client/social/XboxLiveUser.h +++ b/src/mc/client/social/XboxLiveUser.h @@ -4,12 +4,6 @@ namespace Social { -class XboxLiveUser { -public: - // prevent constructor by default - XboxLiveUser& operator=(XboxLiveUser const&); - XboxLiveUser(XboxLiveUser const&); - XboxLiveUser(); -}; +class XboxLiveUser {}; } // namespace Social diff --git a/src/mc/client/social/invites/InviteId.h b/src/mc/client/social/invites/InviteId.h index 2e95ebf1a0..c292c21ad3 100644 --- a/src/mc/client/social/invites/InviteId.h +++ b/src/mc/client/social/invites/InviteId.h @@ -7,12 +7,6 @@ namespace Invites { -struct InviteId : public ::NewType<::std::string> { -public: - // prevent constructor by default - InviteId& operator=(InviteId const&); - InviteId(InviteId const&); - InviteId(); -}; +struct InviteId : public ::NewType<::std::string> {}; } // namespace Invites diff --git a/src/mc/client/sound/ListenerState.h b/src/mc/client/sound/ListenerState.h index 6efc19d228..223ebc3eb4 100644 --- a/src/mc/client/sound/ListenerState.h +++ b/src/mc/client/sound/ListenerState.h @@ -2,10 +2,4 @@ #include "mc/_HeaderOutputPredefine.h" -struct ListenerState { -public: - // prevent constructor by default - ListenerState& operator=(ListenerState const&); - ListenerState(ListenerState const&); - ListenerState(); -}; +struct ListenerState {}; diff --git a/src/mc/client/sound/NullSoundPlayer.h b/src/mc/client/sound/NullSoundPlayer.h index dcf8e06fa0..d744dc76a9 100644 --- a/src/mc/client/sound/NullSoundPlayer.h +++ b/src/mc/client/sound/NullSoundPlayer.h @@ -18,12 +18,6 @@ namespace Core { class Path; } // clang-format on class NullSoundPlayer : public ::SoundPlayerInterface { -public: - // prevent constructor by default - NullSoundPlayer& operator=(NullSoundPlayer const&); - NullSoundPlayer(NullSoundPlayer const&); - NullSoundPlayer(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/client/sound/SoundEngine.h b/src/mc/client/sound/SoundEngine.h index b09e266f8a..5671cb8c2c 100644 --- a/src/mc/client/sound/SoundEngine.h +++ b/src/mc/client/sound/SoundEngine.h @@ -2,10 +2,4 @@ #include "mc/_HeaderOutputPredefine.h" -class SoundEngine { -public: - // prevent constructor by default - SoundEngine& operator=(SoundEngine const&); - SoundEngine(SoundEngine const&); - SoundEngine(); -}; +class SoundEngine {}; diff --git a/src/mc/client/store/IThirdPartyServerRepository.h b/src/mc/client/store/IThirdPartyServerRepository.h index 3c0b062bac..b3c4f60953 100644 --- a/src/mc/client/store/IThirdPartyServerRepository.h +++ b/src/mc/client/store/IThirdPartyServerRepository.h @@ -2,10 +2,4 @@ #include "mc/_HeaderOutputPredefine.h" -class IThirdPartyServerRepository { -public: - // prevent constructor by default - IThirdPartyServerRepository& operator=(IThirdPartyServerRepository const&); - IThirdPartyServerRepository(IThirdPartyServerRepository const&); - IThirdPartyServerRepository(); -}; +class IThirdPartyServerRepository {}; diff --git a/src/mc/client/store/NewOffersQuery.h b/src/mc/client/store/NewOffersQuery.h index d9ab16ab05..0f0f690586 100644 --- a/src/mc/client/store/NewOffersQuery.h +++ b/src/mc/client/store/NewOffersQuery.h @@ -5,10 +5,4 @@ // auto generated inclusion list #include "mc/client/services/requests/catalog/SearchQuery.h" -class NewOffersQuery : public ::SearchQuery { -public: - // prevent constructor by default - NewOffersQuery& operator=(NewOffersQuery const&); - NewOffersQuery(NewOffersQuery const&); - NewOffersQuery(); -}; +class NewOffersQuery : public ::SearchQuery {}; diff --git a/src/mc/client/store/PersonaNewOffersQuery.h b/src/mc/client/store/PersonaNewOffersQuery.h index 8101353650..9e5ae25dcc 100644 --- a/src/mc/client/store/PersonaNewOffersQuery.h +++ b/src/mc/client/store/PersonaNewOffersQuery.h @@ -5,10 +5,4 @@ // auto generated inclusion list #include "mc/client/store/NewOffersQuery.h" -class PersonaNewOffersQuery : public ::NewOffersQuery { -public: - // prevent constructor by default - PersonaNewOffersQuery& operator=(PersonaNewOffersQuery const&); - PersonaNewOffersQuery(PersonaNewOffersQuery const&); - PersonaNewOffersQuery(); -}; +class PersonaNewOffersQuery : public ::NewOffersQuery {}; diff --git a/src/mc/client/store/ServiceDrivenImageRepository.h b/src/mc/client/store/ServiceDrivenImageRepository.h index 17c3dadec0..c07b03fd01 100644 --- a/src/mc/client/store/ServiceDrivenImageRepository.h +++ b/src/mc/client/store/ServiceDrivenImageRepository.h @@ -2,10 +2,4 @@ #include "mc/_HeaderOutputPredefine.h" -class ServiceDrivenImageRepository { -public: - // prevent constructor by default - ServiceDrivenImageRepository& operator=(ServiceDrivenImageRepository const&); - ServiceDrivenImageRepository(ServiceDrivenImageRepository const&); - ServiceDrivenImageRepository(); -}; +class ServiceDrivenImageRepository {}; diff --git a/src/mc/client/store/StoreCatalogItem.h b/src/mc/client/store/StoreCatalogItem.h index c5165e5529..5eef8c2ca3 100644 --- a/src/mc/client/store/StoreCatalogItem.h +++ b/src/mc/client/store/StoreCatalogItem.h @@ -2,10 +2,4 @@ #include "mc/_HeaderOutputPredefine.h" -class StoreCatalogItem { -public: - // prevent constructor by default - StoreCatalogItem& operator=(StoreCatalogItem const&); - StoreCatalogItem(StoreCatalogItem const&); - StoreCatalogItem(); -}; +class StoreCatalogItem {}; diff --git a/src/mc/client/store/StoreCatalogRepository.h b/src/mc/client/store/StoreCatalogRepository.h index d34e7982c0..be0d81a3fc 100644 --- a/src/mc/client/store/StoreCatalogRepository.h +++ b/src/mc/client/store/StoreCatalogRepository.h @@ -2,10 +2,4 @@ #include "mc/_HeaderOutputPredefine.h" -class StoreCatalogRepository { -public: - // prevent constructor by default - StoreCatalogRepository& operator=(StoreCatalogRepository const&); - StoreCatalogRepository(StoreCatalogRepository const&); - StoreCatalogRepository(); -}; +class StoreCatalogRepository {}; diff --git a/src/mc/client/store/StoreNewOffersQuery.h b/src/mc/client/store/StoreNewOffersQuery.h index 0657e31c1b..44319e5605 100644 --- a/src/mc/client/store/StoreNewOffersQuery.h +++ b/src/mc/client/store/StoreNewOffersQuery.h @@ -5,10 +5,4 @@ // auto generated inclusion list #include "mc/client/store/NewOffersQuery.h" -class StoreNewOffersQuery : public ::NewOffersQuery { -public: - // prevent constructor by default - StoreNewOffersQuery& operator=(StoreNewOffersQuery const&); - StoreNewOffersQuery(StoreNewOffersQuery const&); - StoreNewOffersQuery(); -}; +class StoreNewOffersQuery : public ::NewOffersQuery {}; diff --git a/src/mc/client/store/TelemetryData.h b/src/mc/client/store/TelemetryData.h index 39294c74bd..4991aa29d6 100644 --- a/src/mc/client/store/TelemetryData.h +++ b/src/mc/client/store/TelemetryData.h @@ -4,12 +4,6 @@ namespace storeSearch { -struct TelemetryData { -public: - // prevent constructor by default - TelemetryData& operator=(TelemetryData const&); - TelemetryData(TelemetryData const&); - TelemetryData(); -}; +struct TelemetryData {}; } // namespace storeSearch diff --git a/src/mc/client/store/commerce/Entitlement.h b/src/mc/client/store/commerce/Entitlement.h index 511a8ed6ab..29ce8503f3 100644 --- a/src/mc/client/store/commerce/Entitlement.h +++ b/src/mc/client/store/commerce/Entitlement.h @@ -2,10 +2,4 @@ #include "mc/_HeaderOutputPredefine.h" -class Entitlement { -public: - // prevent constructor by default - Entitlement& operator=(Entitlement const&); - Entitlement(Entitlement const&); - Entitlement(); -}; +class Entitlement {}; diff --git a/src/mc/client/store/commerce/IEntitlement.h b/src/mc/client/store/commerce/IEntitlement.h index d8d2770480..35154c3762 100644 --- a/src/mc/client/store/commerce/IEntitlement.h +++ b/src/mc/client/store/commerce/IEntitlement.h @@ -8,12 +8,6 @@ class ContentIdentity; // clang-format on class IEntitlement { -public: - // prevent constructor by default - IEntitlement& operator=(IEntitlement const&); - IEntitlement(IEntitlement const&); - IEntitlement(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/client/store/commerce/IEntitlementManager.h b/src/mc/client/store/commerce/IEntitlementManager.h index 33a1500208..e7a1edf9bb 100644 --- a/src/mc/client/store/commerce/IEntitlementManager.h +++ b/src/mc/client/store/commerce/IEntitlementManager.h @@ -23,12 +23,6 @@ namespace mce { class UUID; } // clang-format on class IEntitlementManager : public ::Bedrock::EnableNonOwnerReferences { -public: - // prevent constructor by default - IEntitlementManager& operator=(IEntitlementManager const&); - IEntitlementManager(IEntitlementManager const&); - IEntitlementManager(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/client/store/iap/IOfferRepository.h b/src/mc/client/store/iap/IOfferRepository.h index 8eeb59a353..57506ed966 100644 --- a/src/mc/client/store/iap/IOfferRepository.h +++ b/src/mc/client/store/iap/IOfferRepository.h @@ -2,10 +2,4 @@ #include "mc/_HeaderOutputPredefine.h" -class IOfferRepository { -public: - // prevent constructor by default - IOfferRepository& operator=(IOfferRepository const&); - IOfferRepository(IOfferRepository const&); - IOfferRepository(); -}; +class IOfferRepository {}; diff --git a/src/mc/client/store/iap/OfferCategoryEnumHasher.h b/src/mc/client/store/iap/OfferCategoryEnumHasher.h index 14fd4a4369..8a3fc0a3fb 100644 --- a/src/mc/client/store/iap/OfferCategoryEnumHasher.h +++ b/src/mc/client/store/iap/OfferCategoryEnumHasher.h @@ -2,10 +2,4 @@ #include "mc/_HeaderOutputPredefine.h" -struct OfferCategoryEnumHasher { -public: - // prevent constructor by default - OfferCategoryEnumHasher& operator=(OfferCategoryEnumHasher const&); - OfferCategoryEnumHasher(OfferCategoryEnumHasher const&); - OfferCategoryEnumHasher(); -}; +struct OfferCategoryEnumHasher {}; diff --git a/src/mc/client/store/iap/ProductSku.h b/src/mc/client/store/iap/ProductSku.h index 2c0464bc19..2c84ee5ac2 100644 --- a/src/mc/client/store/iap/ProductSku.h +++ b/src/mc/client/store/iap/ProductSku.h @@ -5,10 +5,4 @@ // auto generated inclusion list #include "mc/util/NewType.h" -struct ProductSku : public ::NewType<::std::string> { -public: - // prevent constructor by default - ProductSku& operator=(ProductSku const&); - ProductSku(ProductSku const&); - ProductSku(); -}; +struct ProductSku : public ::NewType<::std::string> {}; diff --git a/src/mc/client/store/iap/StoreListener.h b/src/mc/client/store/iap/StoreListener.h index ee693a1f69..50131645e0 100644 --- a/src/mc/client/store/iap/StoreListener.h +++ b/src/mc/client/store/iap/StoreListener.h @@ -10,12 +10,6 @@ struct PurchaseInfo; // clang-format on class StoreListener { -public: - // prevent constructor by default - StoreListener& operator=(StoreListener const&); - StoreListener(StoreListener const&); - StoreListener(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/client/store/iap/StoreListenerMultistore.h b/src/mc/client/store/iap/StoreListenerMultistore.h index f469165cf7..f9e585af0e 100644 --- a/src/mc/client/store/iap/StoreListenerMultistore.h +++ b/src/mc/client/store/iap/StoreListenerMultistore.h @@ -11,12 +11,6 @@ struct PurchaseInfo; // clang-format on class StoreListenerMultistore : public ::StoreListener { -public: - // prevent constructor by default - StoreListenerMultistore& operator=(StoreListenerMultistore const&); - StoreListenerMultistore(StoreListenerMultistore const&); - StoreListenerMultistore(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/client/store/iap/transactions/AutoFulfillmentHelper.h b/src/mc/client/store/iap/transactions/AutoFulfillmentHelper.h index abc634d542..25eb9b45ae 100644 --- a/src/mc/client/store/iap/transactions/AutoFulfillmentHelper.h +++ b/src/mc/client/store/iap/transactions/AutoFulfillmentHelper.h @@ -6,12 +6,6 @@ #include "mc/client/store/iap/transactions/TransactionStatus.h" class AutoFulfillmentHelper { -public: - // prevent constructor by default - AutoFulfillmentHelper& operator=(AutoFulfillmentHelper const&); - AutoFulfillmentHelper(AutoFulfillmentHelper const&); - AutoFulfillmentHelper(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/client/store/interface/IStoreCatalogRepository.h b/src/mc/client/store/interface/IStoreCatalogRepository.h index 99c66b3a59..57fa15e407 100644 --- a/src/mc/client/store/interface/IStoreCatalogRepository.h +++ b/src/mc/client/store/interface/IStoreCatalogRepository.h @@ -2,10 +2,4 @@ #include "mc/_HeaderOutputPredefine.h" -class IStoreCatalogRepository { -public: - // prevent constructor by default - IStoreCatalogRepository& operator=(IStoreCatalogRepository const&); - IStoreCatalogRepository(IStoreCatalogRepository const&); - IStoreCatalogRepository(); -}; +class IStoreCatalogRepository {}; diff --git a/src/mc/client/store/services/MarketplaceServicesManager.h b/src/mc/client/store/services/MarketplaceServicesManager.h index ddf6218bf3..bfd0b8a10c 100644 --- a/src/mc/client/store/services/MarketplaceServicesManager.h +++ b/src/mc/client/store/services/MarketplaceServicesManager.h @@ -2,10 +2,4 @@ #include "mc/_HeaderOutputPredefine.h" -class MarketplaceServicesManager { -public: - // prevent constructor by default - MarketplaceServicesManager& operator=(MarketplaceServicesManager const&); - MarketplaceServicesManager(MarketplaceServicesManager const&); - MarketplaceServicesManager(); -}; +class MarketplaceServicesManager {}; diff --git a/src/mc/client/store/services/ServicesManagerServiceClient.h b/src/mc/client/store/services/ServicesManagerServiceClient.h index 970ba45d7f..b310737b49 100644 --- a/src/mc/client/store/services/ServicesManagerServiceClient.h +++ b/src/mc/client/store/services/ServicesManagerServiceClient.h @@ -6,12 +6,6 @@ #include "mc/client/services/ServiceClient.h" class ServicesManagerServiceClient : public ::ServiceClient { -public: - // prevent constructor by default - ServicesManagerServiceClient& operator=(ServicesManagerServiceClient const&); - ServicesManagerServiceClient(ServicesManagerServiceClient const&); - ServicesManagerServiceClient(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/client/tts/ITTSEventManager.h b/src/mc/client/tts/ITTSEventManager.h index ca63ee7688..f2668b3aae 100644 --- a/src/mc/client/tts/ITTSEventManager.h +++ b/src/mc/client/tts/ITTSEventManager.h @@ -2,10 +2,4 @@ #include "mc/_HeaderOutputPredefine.h" -class ITTSEventManager { -public: - // prevent constructor by default - ITTSEventManager& operator=(ITTSEventManager const&); - ITTSEventManager(ITTSEventManager const&); - ITTSEventManager(); -}; +class ITTSEventManager {}; diff --git a/src/mc/client/tts/TextToSpeechClient.h b/src/mc/client/tts/TextToSpeechClient.h index ae5992c9b5..61d34acaa4 100644 --- a/src/mc/client/tts/TextToSpeechClient.h +++ b/src/mc/client/tts/TextToSpeechClient.h @@ -2,10 +2,4 @@ #include "mc/_HeaderOutputPredefine.h" -class TextToSpeechClient { -public: - // prevent constructor by default - TextToSpeechClient& operator=(TextToSpeechClient const&); - TextToSpeechClient(TextToSpeechClient const&); - TextToSpeechClient(); -}; +class TextToSpeechClient {}; diff --git a/src/mc/client/tutorial/GuidedFlowManager.h b/src/mc/client/tutorial/GuidedFlowManager.h index 6e62a6e877..89a81a7650 100644 --- a/src/mc/client/tutorial/GuidedFlowManager.h +++ b/src/mc/client/tutorial/GuidedFlowManager.h @@ -2,10 +2,4 @@ #include "mc/_HeaderOutputPredefine.h" -class GuidedFlowManager { -public: - // prevent constructor by default - GuidedFlowManager& operator=(GuidedFlowManager const&); - GuidedFlowManager(GuidedFlowManager const&); - GuidedFlowManager(); -}; +class GuidedFlowManager {}; diff --git a/src/mc/client/tutorial/NewPlayerSystem.h b/src/mc/client/tutorial/NewPlayerSystem.h index 532fdd7a69..7003953759 100644 --- a/src/mc/client/tutorial/NewPlayerSystem.h +++ b/src/mc/client/tutorial/NewPlayerSystem.h @@ -2,10 +2,4 @@ #include "mc/_HeaderOutputPredefine.h" -class NewPlayerSystem { -public: - // prevent constructor by default - NewPlayerSystem& operator=(NewPlayerSystem const&); - NewPlayerSystem(NewPlayerSystem const&); - NewPlayerSystem(); -}; +class NewPlayerSystem {}; diff --git a/src/mc/client/util/ClipboardProxy.h b/src/mc/client/util/ClipboardProxy.h index 76b5b1a2cb..acc51a1938 100644 --- a/src/mc/client/util/ClipboardProxy.h +++ b/src/mc/client/util/ClipboardProxy.h @@ -3,10 +3,4 @@ #include "mc/_HeaderOutputPredefine.h" template -class ClipboardProxy { -public: - // prevent constructor by default - ClipboardProxy& operator=(ClipboardProxy const&); - ClipboardProxy(ClipboardProxy const&); - ClipboardProxy(); -}; +class ClipboardProxy {}; diff --git a/src/mc/client/util/CloudFileUploadManager.h b/src/mc/client/util/CloudFileUploadManager.h index 52ee66f3e4..7024d28746 100644 --- a/src/mc/client/util/CloudFileUploadManager.h +++ b/src/mc/client/util/CloudFileUploadManager.h @@ -2,10 +2,4 @@ #include "mc/_HeaderOutputPredefine.h" -class CloudFileUploadManager { -public: - // prevent constructor by default - CloudFileUploadManager& operator=(CloudFileUploadManager const&); - CloudFileUploadManager(CloudFileUploadManager const&); - CloudFileUploadManager(); -}; +class CloudFileUploadManager {}; diff --git a/src/mc/client/util/CloudSaveSystemWrapper.h b/src/mc/client/util/CloudSaveSystemWrapper.h index 5925e8f4c8..fb6705e132 100644 --- a/src/mc/client/util/CloudSaveSystemWrapper.h +++ b/src/mc/client/util/CloudSaveSystemWrapper.h @@ -2,10 +2,4 @@ #include "mc/_HeaderOutputPredefine.h" -class CloudSaveSystemWrapper { -public: - // prevent constructor by default - CloudSaveSystemWrapper& operator=(CloudSaveSystemWrapper const&); - CloudSaveSystemWrapper(CloudSaveSystemWrapper const&); - CloudSaveSystemWrapper(); -}; +class CloudSaveSystemWrapper {}; diff --git a/src/mc/client/util/ScreenshotRecorder.h b/src/mc/client/util/ScreenshotRecorder.h index 507a44d07b..9635fbd744 100644 --- a/src/mc/client/util/ScreenshotRecorder.h +++ b/src/mc/client/util/ScreenshotRecorder.h @@ -2,10 +2,4 @@ #include "mc/_HeaderOutputPredefine.h" -class ScreenshotRecorder { -public: - // prevent constructor by default - ScreenshotRecorder& operator=(ScreenshotRecorder const&); - ScreenshotRecorder(ScreenshotRecorder const&); - ScreenshotRecorder(); -}; +class ScreenshotRecorder {}; diff --git a/src/mc/client/util/SunsettingManager.h b/src/mc/client/util/SunsettingManager.h index ff353e92b0..59b009bf70 100644 --- a/src/mc/client/util/SunsettingManager.h +++ b/src/mc/client/util/SunsettingManager.h @@ -2,10 +2,4 @@ #include "mc/_HeaderOutputPredefine.h" -class SunsettingManager { -public: - // prevent constructor by default - SunsettingManager& operator=(SunsettingManager const&); - SunsettingManager(SunsettingManager const&); - SunsettingManager(); -}; +class SunsettingManager {}; diff --git a/src/mc/client/util/dev_console_logger/DevConsoleLogger.h b/src/mc/client/util/dev_console_logger/DevConsoleLogger.h index 8c5c7e387c..c4b99b7a9c 100644 --- a/src/mc/client/util/dev_console_logger/DevConsoleLogger.h +++ b/src/mc/client/util/dev_console_logger/DevConsoleLogger.h @@ -2,10 +2,4 @@ #include "mc/_HeaderOutputPredefine.h" -class DevConsoleLogger { -public: - // prevent constructor by default - DevConsoleLogger& operator=(DevConsoleLogger const&); - DevConsoleLogger(DevConsoleLogger const&); - DevConsoleLogger(); -}; +class DevConsoleLogger {}; diff --git a/src/mc/client/volume/VolumeEntityManagerClient.h b/src/mc/client/volume/VolumeEntityManagerClient.h index 78a29bab99..34a25d6d68 100644 --- a/src/mc/client/volume/VolumeEntityManagerClient.h +++ b/src/mc/client/volume/VolumeEntityManagerClient.h @@ -6,12 +6,6 @@ #include "mc/volume/VolumeEntityManager.h" class VolumeEntityManagerClient : public ::VolumeEntityManager { -public: - // prevent constructor by default - VolumeEntityManagerClient& operator=(VolumeEntityManagerClient const&); - VolumeEntityManagerClient(VolumeEntityManagerClient const&); - VolumeEntityManagerClient(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/client/world/IWorldTransferHandler.h b/src/mc/client/world/IWorldTransferHandler.h index ad3526327f..d006475de1 100644 --- a/src/mc/client/world/IWorldTransferHandler.h +++ b/src/mc/client/world/IWorldTransferHandler.h @@ -2,10 +2,4 @@ #include "mc/_HeaderOutputPredefine.h" -struct IWorldTransferHandler { -public: - // prevent constructor by default - IWorldTransferHandler& operator=(IWorldTransferHandler const&); - IWorldTransferHandler(IWorldTransferHandler const&); - IWorldTransferHandler(); -}; +struct IWorldTransferHandler {}; diff --git a/src/mc/client/world/System.h b/src/mc/client/world/System.h index 9a89ccf262..e7c7b32b44 100644 --- a/src/mc/client/world/System.h +++ b/src/mc/client/world/System.h @@ -4,12 +4,6 @@ namespace World { -class System { -public: - // prevent constructor by default - System& operator=(System const&); - System(System const&); - System(); -}; +class System {}; } // namespace World diff --git a/src/mc/client/world/WorldTransferAgent.h b/src/mc/client/world/WorldTransferAgent.h index fd816bc7d3..38272c223d 100644 --- a/src/mc/client/world/WorldTransferAgent.h +++ b/src/mc/client/world/WorldTransferAgent.h @@ -2,10 +2,4 @@ #include "mc/_HeaderOutputPredefine.h" -class WorldTransferAgent { -public: - // prevent constructor by default - WorldTransferAgent& operator=(WorldTransferAgent const&); - WorldTransferAgent(WorldTransferAgent const&); - WorldTransferAgent(); -}; +class WorldTransferAgent {}; diff --git a/src/mc/client/world/level/fog/FogDefinitionRegistry.h b/src/mc/client/world/level/fog/FogDefinitionRegistry.h index b60684c6f9..96a76324d3 100644 --- a/src/mc/client/world/level/fog/FogDefinitionRegistry.h +++ b/src/mc/client/world/level/fog/FogDefinitionRegistry.h @@ -2,10 +2,4 @@ #include "mc/_HeaderOutputPredefine.h" -class FogDefinitionRegistry { -public: - // prevent constructor by default - FogDefinitionRegistry& operator=(FogDefinitionRegistry const&); - FogDefinitionRegistry(FogDefinitionRegistry const&); - FogDefinitionRegistry(); -}; +class FogDefinitionRegistry {}; diff --git a/src/mc/client/world/level/fog/FogManager.h b/src/mc/client/world/level/fog/FogManager.h index 943e2b4493..c5cd9794f3 100644 --- a/src/mc/client/world/level/fog/FogManager.h +++ b/src/mc/client/world/level/fog/FogManager.h @@ -2,10 +2,4 @@ #include "mc/_HeaderOutputPredefine.h" -class FogManager { -public: - // prevent constructor by default - FogManager& operator=(FogManager const&); - FogManager(FogManager const&); - FogManager(); -}; +class FogManager {}; diff --git a/src/mc/codebuilder/CommandOutputObserver.h b/src/mc/codebuilder/CommandOutputObserver.h index 3ac5427807..e7f975a387 100644 --- a/src/mc/codebuilder/CommandOutputObserver.h +++ b/src/mc/codebuilder/CommandOutputObserver.h @@ -16,12 +16,6 @@ namespace CodeBuilder { class CommandOutputObserver : public ::Core::Observer<::CodeBuilder::CommandOutputObserver, ::Core::SingleThreadedLock> { -public: - // prevent constructor by default - CommandOutputObserver& operator=(CommandOutputObserver const&); - CommandOutputObserver(CommandOutputObserver const&); - CommandOutputObserver(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/codebuilder/IClient.h b/src/mc/codebuilder/IClient.h index f309298631..a076326979 100644 --- a/src/mc/codebuilder/IClient.h +++ b/src/mc/codebuilder/IClient.h @@ -17,12 +17,6 @@ namespace CodeBuilder { struct EventMessage; } namespace CodeBuilder { class IClient : public ::Bedrock::EnableNonOwnerReferences { -public: - // prevent constructor by default - IClient& operator=(IClient const&); - IClient(IClient const&); - IClient(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/codebuilder/IManager.h b/src/mc/codebuilder/IManager.h index 38f0a171c8..8896bbdb67 100644 --- a/src/mc/codebuilder/IManager.h +++ b/src/mc/codebuilder/IManager.h @@ -15,12 +15,6 @@ namespace CodeBuilder { class IMessenger; } namespace CodeBuilder { class IManager : public ::Bedrock::EnableNonOwnerReferences { -public: - // prevent constructor by default - IManager& operator=(IManager const&); - IManager(IManager const&); - IManager(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/codebuilder/IMessenger.h b/src/mc/codebuilder/IMessenger.h index 146f4702e3..7d4ce1a95e 100644 --- a/src/mc/codebuilder/IMessenger.h +++ b/src/mc/codebuilder/IMessenger.h @@ -22,12 +22,6 @@ namespace Json { class Value; } namespace CodeBuilder { class IMessenger : public ::Bedrock::EnableNonOwnerReferences, public ::CodeBuilder::CommandOutputObserver { -public: - // prevent constructor by default - IMessenger& operator=(IMessenger const&); - IMessenger(IMessenger const&); - IMessenger(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/codebuilder/IRequestHandler.h b/src/mc/codebuilder/IRequestHandler.h index 162c2abfe8..bf30002a01 100644 --- a/src/mc/codebuilder/IRequestHandler.h +++ b/src/mc/codebuilder/IRequestHandler.h @@ -13,12 +13,6 @@ namespace CodeBuilder { struct ErrorMessage; } namespace CodeBuilder { class IRequestHandler { -public: - // prevent constructor by default - IRequestHandler& operator=(IRequestHandler const&); - IRequestHandler(IRequestHandler const&); - IRequestHandler(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/codebuilder/RequestInterpreter.h b/src/mc/codebuilder/RequestInterpreter.h index 72385cef85..64a1b4e456 100644 --- a/src/mc/codebuilder/RequestInterpreter.h +++ b/src/mc/codebuilder/RequestInterpreter.h @@ -13,12 +13,6 @@ namespace Json { class Value; } namespace CodeBuilder { class RequestInterpreter { -public: - // prevent constructor by default - RequestInterpreter& operator=(RequestInterpreter const&); - RequestInterpreter(RequestInterpreter const&); - RequestInterpreter(); - public: // member functions // NOLINTBEGIN diff --git a/src/mc/common/BlockID.h b/src/mc/common/BlockID.h index 91fe34f51d..320fbe0575 100644 --- a/src/mc/common/BlockID.h +++ b/src/mc/common/BlockID.h @@ -5,10 +5,4 @@ // auto generated inclusion list #include "mc/util/NewType.h" -struct BlockID : public ::NewType { -public: - // prevent constructor by default - BlockID& operator=(BlockID const&); - BlockID(BlockID const&); - BlockID(); -}; +struct BlockID : public ::NewType {}; diff --git a/src/mc/common/IApp.h b/src/mc/common/IApp.h index 95d1be1d9c..a0a825f2fd 100644 --- a/src/mc/common/IApp.h +++ b/src/mc/common/IApp.h @@ -6,12 +6,6 @@ #include "mc/deps/core/utility/EnableNonOwnerReferences.h" class IApp : public ::Bedrock::EnableNonOwnerReferences { -public: - // prevent constructor by default - IApp& operator=(IApp const&); - IApp(IApp const&); - IApp(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/common/IMinecraftApp.h b/src/mc/common/IMinecraftApp.h index 26c36b8b63..d31336035e 100644 --- a/src/mc/common/IMinecraftApp.h +++ b/src/mc/common/IMinecraftApp.h @@ -14,12 +14,6 @@ namespace Automation { class AutomationClient; } // clang-format on class IMinecraftApp { -public: - // prevent constructor by default - IMinecraftApp& operator=(IMinecraftApp const&); - IMinecraftApp(IMinecraftApp const&); - IMinecraftApp(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/common/JsonValidator.h b/src/mc/common/JsonValidator.h index f4a5c634fd..f75c183449 100644 --- a/src/mc/common/JsonValidator.h +++ b/src/mc/common/JsonValidator.h @@ -80,12 +80,6 @@ class JsonValidator { // NOLINTEND }; -public: - // prevent constructor by default - JsonValidator& operator=(JsonValidator const&); - JsonValidator(JsonValidator const&); - JsonValidator(); - public: // static functions // NOLINTBEGIN diff --git a/src/mc/common/NewBlockID.h b/src/mc/common/NewBlockID.h index 539b2107c1..1944891483 100644 --- a/src/mc/common/NewBlockID.h +++ b/src/mc/common/NewBlockID.h @@ -5,10 +5,4 @@ // auto generated inclusion list #include "mc/util/NewType.h" -struct NewBlockID : public ::NewType { -public: - // prevent constructor by default - NewBlockID& operator=(NewBlockID const&); - NewBlockID(NewBlockID const&); - NewBlockID(); -}; +struct NewBlockID : public ::NewType {}; diff --git a/src/mc/common/Performance.h b/src/mc/common/Performance.h index c26728d0d8..1b97bf5d0e 100644 --- a/src/mc/common/Performance.h +++ b/src/mc/common/Performance.h @@ -8,12 +8,6 @@ class StopwatchHandler; // clang-format on class Performance { -public: - // prevent constructor by default - Performance& operator=(Performance const&); - Performance(Performance const&); - Performance(); - public: // static variables // NOLINTBEGIN diff --git a/src/mc/common/Result.h b/src/mc/common/Result.h index 93990aa78c..9e9eac6186 100644 --- a/src/mc/common/Result.h +++ b/src/mc/common/Result.h @@ -3,10 +3,4 @@ #include "mc/_HeaderOutputPredefine.h" template -class Result { -public: - // prevent constructor by default - Result& operator=(Result const&); - Result(Result const&); - Result(); -}; +class Result {}; diff --git a/src/mc/common/SharedPtr.h b/src/mc/common/SharedPtr.h index ca59842514..d62c61fe97 100644 --- a/src/mc/common/SharedPtr.h +++ b/src/mc/common/SharedPtr.h @@ -3,10 +3,4 @@ #include "mc/_HeaderOutputPredefine.h" template -class SharedPtr { -public: - // prevent constructor by default - SharedPtr& operator=(SharedPtr const&); - SharedPtr(SharedPtr const&); - SharedPtr(); -}; +class SharedPtr {}; diff --git a/src/mc/common/WeakPtr.h b/src/mc/common/WeakPtr.h index a0b658f5d3..d0a301feb7 100644 --- a/src/mc/common/WeakPtr.h +++ b/src/mc/common/WeakPtr.h @@ -3,10 +3,4 @@ #include "mc/_HeaderOutputPredefine.h" template -class WeakPtr { -public: - // prevent constructor by default - WeakPtr& operator=(WeakPtr const&); - WeakPtr(WeakPtr const&); - WeakPtr(); -}; +class WeakPtr {}; diff --git a/src/mc/common/detail/ColorBase.h b/src/mc/common/detail/ColorBase.h index 4d3a551e5f..d73cb456eb 100644 --- a/src/mc/common/detail/ColorBase.h +++ b/src/mc/common/detail/ColorBase.h @@ -7,12 +7,6 @@ namespace Detail { -struct ColorBase : public ::mce::Color { -public: - // prevent constructor by default - ColorBase& operator=(ColorBase const&); - ColorBase(ColorBase const&); - ColorBase(); -}; +struct ColorBase : public ::mce::Color {}; } // namespace Detail diff --git a/src/mc/common/editor/IEditorManager.h b/src/mc/common/editor/IEditorManager.h index 230e2b1393..22c457fb2d 100644 --- a/src/mc/common/editor/IEditorManager.h +++ b/src/mc/common/editor/IEditorManager.h @@ -23,12 +23,6 @@ namespace Scripting { struct ContextId; } namespace Editor { class IEditorManager : public ::Bedrock::EnableNonOwnerReferences { -public: - // prevent constructor by default - IEditorManager& operator=(IEditorManager const&); - IEditorManager(IEditorManager const&); - IEditorManager(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/common/editor/IEditorPlayer.h b/src/mc/common/editor/IEditorPlayer.h index 5bcbd39be8..4bbf9543b8 100644 --- a/src/mc/common/editor/IEditorPlayer.h +++ b/src/mc/common/editor/IEditorPlayer.h @@ -14,12 +14,6 @@ namespace Editor { class ServiceProviderCollection; } namespace Editor { class IEditorPlayer : public ::Bedrock::EnableNonOwnerReferences { -public: - // prevent constructor by default - IEditorPlayer& operator=(IEditorPlayer const&); - IEditorPlayer(IEditorPlayer const&); - IEditorPlayer(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/config/DefaultScreenCapabilities.h b/src/mc/config/DefaultScreenCapabilities.h index c96d211881..205a80a91a 100644 --- a/src/mc/config/DefaultScreenCapabilities.h +++ b/src/mc/config/DefaultScreenCapabilities.h @@ -6,12 +6,6 @@ #include "mc/config/TypedScreenCapabilities.h" struct DefaultScreenCapabilities : public ::TypedScreenCapabilities<::DefaultScreenCapabilities> { -public: - // prevent constructor by default - DefaultScreenCapabilities& operator=(DefaultScreenCapabilities const&); - DefaultScreenCapabilities(DefaultScreenCapabilities const&); - DefaultScreenCapabilities(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/config/ILevelDataOverride.h b/src/mc/config/ILevelDataOverride.h index f0a1fdee1c..184ebc8419 100644 --- a/src/mc/config/ILevelDataOverride.h +++ b/src/mc/config/ILevelDataOverride.h @@ -8,12 +8,6 @@ class LevelData; // clang-format on class ILevelDataOverride { -public: - // prevent constructor by default - ILevelDataOverride& operator=(ILevelDataOverride const&); - ILevelDataOverride(ILevelDataOverride const&); - ILevelDataOverride(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/config/IScreenCapabilities.h b/src/mc/config/IScreenCapabilities.h index 4e69ae0d62..48c68c23a9 100644 --- a/src/mc/config/IScreenCapabilities.h +++ b/src/mc/config/IScreenCapabilities.h @@ -6,12 +6,6 @@ #include "mc/deps/core/utility/typeid_t.h" class IScreenCapabilities { -public: - // prevent constructor by default - IScreenCapabilities& operator=(IScreenCapabilities const&); - IScreenCapabilities(IScreenCapabilities const&); - IScreenCapabilities(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/config/TypedScreenCapabilities.h b/src/mc/config/TypedScreenCapabilities.h index 0d1b116d5f..1d5a2ed02d 100644 --- a/src/mc/config/TypedScreenCapabilities.h +++ b/src/mc/config/TypedScreenCapabilities.h @@ -3,10 +3,4 @@ #include "mc/_HeaderOutputPredefine.h" template -class TypedScreenCapabilities { -public: - // prevent constructor by default - TypedScreenCapabilities& operator=(TypedScreenCapabilities const&); - TypedScreenCapabilities(TypedScreenCapabilities const&); - TypedScreenCapabilities(); -}; +class TypedScreenCapabilities {}; diff --git a/src/mc/config/player_capabilities/IClientController.h b/src/mc/config/player_capabilities/IClientController.h index a128a93a27..9ee111675e 100644 --- a/src/mc/config/player_capabilities/IClientController.h +++ b/src/mc/config/player_capabilities/IClientController.h @@ -4,12 +4,6 @@ namespace PlayerCapabilities { -struct IClientController { -public: - // prevent constructor by default - IClientController& operator=(IClientController const&); - IClientController(IClientController const&); - IClientController(); -}; +struct IClientController {}; } // namespace PlayerCapabilities diff --git a/src/mc/config/player_capabilities/ISharedData.h b/src/mc/config/player_capabilities/ISharedData.h index d75b53bc75..5ccf5bc7aa 100644 --- a/src/mc/config/player_capabilities/ISharedData.h +++ b/src/mc/config/player_capabilities/ISharedData.h @@ -13,12 +13,6 @@ struct GameRuleId; namespace PlayerCapabilities { struct ISharedData { -public: - // prevent constructor by default - ISharedData& operator=(ISharedData const&); - ISharedData(ISharedData const&); - ISharedData(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/debug/MockDebugEndPoint.h b/src/mc/debug/MockDebugEndPoint.h index 715095a20d..e6f85107cd 100644 --- a/src/mc/debug/MockDebugEndPoint.h +++ b/src/mc/debug/MockDebugEndPoint.h @@ -8,12 +8,6 @@ #include "mc/deps/core/debug/log/LogLevel.h" class MockDebugEndPoint : public ::DebugEndPoint { -public: - // prevent constructor by default - MockDebugEndPoint& operator=(MockDebugEndPoint const&); - MockDebugEndPoint(MockDebugEndPoint const&); - MockDebugEndPoint(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/debug/SentryHelper.h b/src/mc/debug/SentryHelper.h index f5b9629002..062650b4da 100644 --- a/src/mc/debug/SentryHelper.h +++ b/src/mc/debug/SentryHelper.h @@ -2,10 +2,4 @@ #include "mc/_HeaderOutputPredefine.h" -class SentryHelper { -public: - // prevent constructor by default - SentryHelper& operator=(SentryHelper const&); - SentryHelper(SentryHelper const&); - SentryHelper(); -}; +class SentryHelper {}; diff --git a/src/mc/deps/application/AppPlatformNetworkSettings.h b/src/mc/deps/application/AppPlatformNetworkSettings.h index 7f02a825d5..1105092cb7 100644 --- a/src/mc/deps/application/AppPlatformNetworkSettings.h +++ b/src/mc/deps/application/AppPlatformNetworkSettings.h @@ -6,12 +6,6 @@ #include "mc/deps/core/utility/EnableNonOwnerReferences.h" class AppPlatformNetworkSettings : public ::Bedrock::EnableNonOwnerReferences { -public: - // prevent constructor by default - AppPlatformNetworkSettings& operator=(AppPlatformNetworkSettings const&); - AppPlatformNetworkSettings(AppPlatformNetworkSettings const&); - AppPlatformNetworkSettings(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/deps/application/IAppPlatform.h b/src/mc/deps/application/IAppPlatform.h index 3181dddefd..fe6c099089 100644 --- a/src/mc/deps/application/IAppPlatform.h +++ b/src/mc/deps/application/IAppPlatform.h @@ -10,12 +10,6 @@ #include "mc/deps/core/utility/EnableNonOwnerReferences.h" class IAppPlatform : public ::Bedrock::EnableNonOwnerReferences { -public: - // prevent constructor by default - IAppPlatform& operator=(IAppPlatform const&); - IAppPlatform(IAppPlatform const&); - IAppPlatform(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/deps/application/IApplicationDataStores.h b/src/mc/deps/application/IApplicationDataStores.h index cec32b43f4..9d859cfc05 100644 --- a/src/mc/deps/application/IApplicationDataStores.h +++ b/src/mc/deps/application/IApplicationDataStores.h @@ -23,12 +23,6 @@ class IApplicationDataStores : public ::Bedrock::EnableNonOwnerReferences { Count = 3, }; -public: - // prevent constructor by default - IApplicationDataStores& operator=(IApplicationDataStores const&); - IApplicationDataStores(IApplicationDataStores const&); - IApplicationDataStores(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/deps/application/PlatformBootstrap.h b/src/mc/deps/application/PlatformBootstrap.h index 3b30f22b7d..84074906b0 100644 --- a/src/mc/deps/application/PlatformBootstrap.h +++ b/src/mc/deps/application/PlatformBootstrap.h @@ -77,12 +77,6 @@ class PlatformBootstrap { CreateDirectoryResult(); }; -public: - // prevent constructor by default - PlatformBootstrap& operator=(PlatformBootstrap const&); - PlatformBootstrap(PlatformBootstrap const&); - PlatformBootstrap(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/deps/application/common/utility/ThreadOwnerBase.h b/src/mc/deps/application/common/utility/ThreadOwnerBase.h index 9bde2bf07a..67b03a77fa 100644 --- a/src/mc/deps/application/common/utility/ThreadOwnerBase.h +++ b/src/mc/deps/application/common/utility/ThreadOwnerBase.h @@ -4,12 +4,6 @@ namespace Bedrock::Application { -class ThreadOwnerBase { -public: - // prevent constructor by default - ThreadOwnerBase& operator=(ThreadOwnerBase const&); - ThreadOwnerBase(ThreadOwnerBase const&); - ThreadOwnerBase(); -}; +class ThreadOwnerBase {}; } // namespace Bedrock::Application diff --git a/src/mc/deps/application/crash_manager/CrashFileProcessor.h b/src/mc/deps/application/crash_manager/CrashFileProcessor.h index c86a7d1e80..9b6e673a9d 100644 --- a/src/mc/deps/application/crash_manager/CrashFileProcessor.h +++ b/src/mc/deps/application/crash_manager/CrashFileProcessor.h @@ -47,12 +47,6 @@ class CrashFileProcessor { StatusUpdate(); }; - public: - // prevent constructor by default - CrashHandler& operator=(CrashHandler const&); - CrashHandler(CrashHandler const&); - CrashHandler(); - public: // virtual functions // NOLINTBEGIN @@ -87,12 +81,6 @@ class CrashFileProcessor { Asynchronous = 1, }; -public: - // prevent constructor by default - CrashFileProcessor& operator=(CrashFileProcessor const&); - CrashFileProcessor(CrashFileProcessor const&); - CrashFileProcessor(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/deps/application/crash_manager/CrashManager.h b/src/mc/deps/application/crash_manager/CrashManager.h index abe3ed6c1c..f42515612d 100644 --- a/src/mc/deps/application/crash_manager/CrashManager.h +++ b/src/mc/deps/application/crash_manager/CrashManager.h @@ -16,12 +16,6 @@ namespace Bedrock { class WorkerPoolHandleInterface; } namespace Bedrock { class CrashManager : public ::Bedrock::EnableNonOwnerReferences, public ::Bedrock::ImplBase<::Bedrock::CrashManager> { -public: - // prevent constructor by default - CrashManager& operator=(CrashManager const&); - CrashManager(CrashManager const&); - CrashManager(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/deps/application/crash_manager/CrashSessionFile.h b/src/mc/deps/application/crash_manager/CrashSessionFile.h index 88a3541169..ba56fcc451 100644 --- a/src/mc/deps/application/crash_manager/CrashSessionFile.h +++ b/src/mc/deps/application/crash_manager/CrashSessionFile.h @@ -13,12 +13,6 @@ namespace Core { class Path; } namespace Bedrock { class CrashSessionFile { -public: - // prevent constructor by default - CrashSessionFile& operator=(CrashSessionFile const&); - CrashSessionFile(CrashSessionFile const&); - CrashSessionFile(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/deps/application/crash_manager/CrashTelemetryProcessor.h b/src/mc/deps/application/crash_manager/CrashTelemetryProcessor.h index f05b68054b..d33cca9eef 100644 --- a/src/mc/deps/application/crash_manager/CrashTelemetryProcessor.h +++ b/src/mc/deps/application/crash_manager/CrashTelemetryProcessor.h @@ -11,12 +11,6 @@ namespace Bedrock { struct CrashUploadStatus; } namespace Bedrock { class CrashTelemetryProcessor { -public: - // prevent constructor by default - CrashTelemetryProcessor& operator=(CrashTelemetryProcessor const&); - CrashTelemetryProcessor(CrashTelemetryProcessor const&); - CrashTelemetryProcessor(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/deps/application/crash_manager/SentryUploadManager.h b/src/mc/deps/application/crash_manager/SentryUploadManager.h index 6217b2e458..fdf23ae5b3 100644 --- a/src/mc/deps/application/crash_manager/SentryUploadManager.h +++ b/src/mc/deps/application/crash_manager/SentryUploadManager.h @@ -20,12 +20,6 @@ namespace Bedrock { class SentryUploadManager : public ::Bedrock::EnableNonOwnerReferences, public ::Bedrock::ImplBase<::Bedrock::SentryUploadManager> { -public: - // prevent constructor by default - SentryUploadManager& operator=(SentryUploadManager const&); - SentryUploadManager(SentryUploadManager const&); - SentryUploadManager(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/deps/application/device/CacheOpenFailed.h b/src/mc/deps/application/device/CacheOpenFailed.h index cc61e4940d..aea0856fc5 100644 --- a/src/mc/deps/application/device/CacheOpenFailed.h +++ b/src/mc/deps/application/device/CacheOpenFailed.h @@ -4,12 +4,6 @@ namespace Bedrock::DeviceIdErrorType { -struct CacheOpenFailed { -public: - // prevent constructor by default - CacheOpenFailed& operator=(CacheOpenFailed const&); - CacheOpenFailed(CacheOpenFailed const&); - CacheOpenFailed(); -}; +struct CacheOpenFailed {}; } // namespace Bedrock::DeviceIdErrorType diff --git a/src/mc/deps/application/device/DeviceIdManager.h b/src/mc/deps/application/device/DeviceIdManager.h index 39a3440550..eeb14e8e79 100644 --- a/src/mc/deps/application/device/DeviceIdManager.h +++ b/src/mc/deps/application/device/DeviceIdManager.h @@ -16,12 +16,6 @@ namespace Bedrock { class DeviceIdManager : public ::Bedrock::EnableNonOwnerReferences, public ::Bedrock::ImplBase<::Bedrock::DeviceIdManager> { -public: - // prevent constructor by default - DeviceIdManager& operator=(DeviceIdManager const&); - DeviceIdManager(DeviceIdManager const&); - DeviceIdManager(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/deps/application/device/FileWriteError.h b/src/mc/deps/application/device/FileWriteError.h index 2803f6fdfa..974c5155e1 100644 --- a/src/mc/deps/application/device/FileWriteError.h +++ b/src/mc/deps/application/device/FileWriteError.h @@ -4,12 +4,6 @@ namespace Bedrock::DeviceIdErrorType { -struct FileWriteError { -public: - // prevent constructor by default - FileWriteError& operator=(FileWriteError const&); - FileWriteError(FileWriteError const&); - FileWriteError(); -}; +struct FileWriteError {}; } // namespace Bedrock::DeviceIdErrorType diff --git a/src/mc/deps/application/device/NoCacheFound.h b/src/mc/deps/application/device/NoCacheFound.h index 94cb95c9db..05efb6f14f 100644 --- a/src/mc/deps/application/device/NoCacheFound.h +++ b/src/mc/deps/application/device/NoCacheFound.h @@ -4,12 +4,6 @@ namespace Bedrock::DeviceIdErrorType { -struct NoCacheFound { -public: - // prevent constructor by default - NoCacheFound& operator=(NoCacheFound const&); - NoCacheFound(NoCacheFound const&); - NoCacheFound(); -}; +struct NoCacheFound {}; } // namespace Bedrock::DeviceIdErrorType diff --git a/src/mc/deps/application/initialization/ApplicationInitHandler.h b/src/mc/deps/application/initialization/ApplicationInitHandler.h index 39c3ab6829..98a7dd281f 100644 --- a/src/mc/deps/application/initialization/ApplicationInitHandler.h +++ b/src/mc/deps/application/initialization/ApplicationInitHandler.h @@ -26,12 +26,6 @@ class ApplicationInitHandler { InstallCrashHandlerResult(); }; -public: - // prevent constructor by default - ApplicationInitHandler& operator=(ApplicationInitHandler const&); - ApplicationInitHandler(ApplicationInitHandler const&); - ApplicationInitHandler(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/deps/application/session/SessionInfoManager.h b/src/mc/deps/application/session/SessionInfoManager.h index 1f4b954f98..9195b8a928 100644 --- a/src/mc/deps/application/session/SessionInfoManager.h +++ b/src/mc/deps/application/session/SessionInfoManager.h @@ -18,12 +18,6 @@ namespace Bedrock { class SessionInfoManager : public ::Bedrock::EnableNonOwnerReferences, public ::Bedrock::ImplBase<::Bedrock::SessionInfoManager> { -public: - // prevent constructor by default - SessionInfoManager& operator=(SessionInfoManager const&); - SessionInfoManager(SessionInfoManager const&); - SessionInfoManager(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/deps/application/signals/application_signal/ClipboardCopy.h b/src/mc/deps/application/signals/application_signal/ClipboardCopy.h index 781cbe4a49..7ed0c690f3 100644 --- a/src/mc/deps/application/signals/application_signal/ClipboardCopy.h +++ b/src/mc/deps/application/signals/application_signal/ClipboardCopy.h @@ -13,12 +13,6 @@ namespace ApplicationSignal { struct ClipboardCopyData; } namespace ApplicationSignal { class ClipboardCopy -: public ::Bedrock::Signal<::ApplicationSignal::ClipboardCopy, ::ApplicationSignal::ClipboardCopyData> { -public: - // prevent constructor by default - ClipboardCopy& operator=(ClipboardCopy const&); - ClipboardCopy(ClipboardCopy const&); - ClipboardCopy(); -}; +: public ::Bedrock::Signal<::ApplicationSignal::ClipboardCopy, ::ApplicationSignal::ClipboardCopyData> {}; } // namespace ApplicationSignal diff --git a/src/mc/deps/application/signals/application_signal/ClipboardPaste.h b/src/mc/deps/application/signals/application_signal/ClipboardPaste.h index 05e1c6fc8f..8fcc479bb3 100644 --- a/src/mc/deps/application/signals/application_signal/ClipboardPaste.h +++ b/src/mc/deps/application/signals/application_signal/ClipboardPaste.h @@ -13,12 +13,6 @@ namespace ApplicationSignal { struct ClipboardData; } namespace ApplicationSignal { class ClipboardPaste -: public ::Bedrock::Signal<::ApplicationSignal::ClipboardPaste, ::ApplicationSignal::ClipboardData> { -public: - // prevent constructor by default - ClipboardPaste& operator=(ClipboardPaste const&); - ClipboardPaste(ClipboardPaste const&); - ClipboardPaste(); -}; +: public ::Bedrock::Signal<::ApplicationSignal::ClipboardPaste, ::ApplicationSignal::ClipboardData> {}; } // namespace ApplicationSignal diff --git a/src/mc/deps/application/signals/application_signal/ClipboardPasteRequest.h b/src/mc/deps/application/signals/application_signal/ClipboardPasteRequest.h index fb137358ea..0d295aa227 100644 --- a/src/mc/deps/application/signals/application_signal/ClipboardPasteRequest.h +++ b/src/mc/deps/application/signals/application_signal/ClipboardPasteRequest.h @@ -7,12 +7,6 @@ namespace ApplicationSignal { -class ClipboardPasteRequest : public ::Bedrock::Signal<::ApplicationSignal::ClipboardPasteRequest, void> { -public: - // prevent constructor by default - ClipboardPasteRequest& operator=(ClipboardPasteRequest const&); - ClipboardPasteRequest(ClipboardPasteRequest const&); - ClipboardPasteRequest(); -}; +class ClipboardPasteRequest : public ::Bedrock::Signal<::ApplicationSignal::ClipboardPasteRequest, void> {}; } // namespace ApplicationSignal diff --git a/src/mc/deps/application/signals/player_reporting_signal/GetReportJson.h b/src/mc/deps/application/signals/player_reporting_signal/GetReportJson.h index 9141e8c952..9ae43a1d5d 100644 --- a/src/mc/deps/application/signals/player_reporting_signal/GetReportJson.h +++ b/src/mc/deps/application/signals/player_reporting_signal/GetReportJson.h @@ -14,11 +14,6 @@ namespace PlayerReportingSignal { class GetReportJson : public ::Bedrock::Signal<::PlayerReportingSignal::GetReportJson, ::PlayerReportingSignal::GetReportJsonFunctionData> { -public: - // prevent constructor by default - GetReportJson& operator=(GetReportJson const&); - GetReportJson(GetReportJson const&); - GetReportJson(); }; } // namespace PlayerReportingSignal diff --git a/src/mc/deps/application/signals/player_reporting_signal/ResetAll.h b/src/mc/deps/application/signals/player_reporting_signal/ResetAll.h index 81a876ee55..9705ddcd6b 100644 --- a/src/mc/deps/application/signals/player_reporting_signal/ResetAll.h +++ b/src/mc/deps/application/signals/player_reporting_signal/ResetAll.h @@ -7,12 +7,6 @@ namespace PlayerReportingSignal { -class ResetAll : public ::Bedrock::Signal<::PlayerReportingSignal::ResetAll, void> { -public: - // prevent constructor by default - ResetAll& operator=(ResetAll const&); - ResetAll(ResetAll const&); - ResetAll(); -}; +class ResetAll : public ::Bedrock::Signal<::PlayerReportingSignal::ResetAll, void> {}; } // namespace PlayerReportingSignal diff --git a/src/mc/deps/application/signals/player_reporting_signal/SendReport.h b/src/mc/deps/application/signals/player_reporting_signal/SendReport.h index c724415d5e..bd46237e7d 100644 --- a/src/mc/deps/application/signals/player_reporting_signal/SendReport.h +++ b/src/mc/deps/application/signals/player_reporting_signal/SendReport.h @@ -13,12 +13,6 @@ namespace PlayerReportingSignal { struct ReportFunctionData; } namespace PlayerReportingSignal { class SendReport -: public ::Bedrock::Signal<::PlayerReportingSignal::SendReport, ::PlayerReportingSignal::ReportFunctionData> { -public: - // prevent constructor by default - SendReport& operator=(SendReport const&); - SendReport(SendReport const&); - SendReport(); -}; +: public ::Bedrock::Signal<::PlayerReportingSignal::SendReport, ::PlayerReportingSignal::ReportFunctionData> {}; } // namespace PlayerReportingSignal diff --git a/src/mc/deps/application/signals/player_reporting_signal/SetData.h b/src/mc/deps/application/signals/player_reporting_signal/SetData.h index 1425244c5f..6564cf3d46 100644 --- a/src/mc/deps/application/signals/player_reporting_signal/SetData.h +++ b/src/mc/deps/application/signals/player_reporting_signal/SetData.h @@ -12,12 +12,6 @@ namespace PlayerReportingSignal { struct StringData; } namespace PlayerReportingSignal { -class SetData : public ::Bedrock::Signal<::PlayerReportingSignal::SetData, ::PlayerReportingSignal::StringData> { -public: - // prevent constructor by default - SetData& operator=(SetData const&); - SetData(SetData const&); - SetData(); -}; +class SetData : public ::Bedrock::Signal<::PlayerReportingSignal::SetData, ::PlayerReportingSignal::StringData> {}; } // namespace PlayerReportingSignal diff --git a/src/mc/deps/application/signals/player_reporting_signal/SetJson.h b/src/mc/deps/application/signals/player_reporting_signal/SetJson.h index bd5a200b17..e0798df218 100644 --- a/src/mc/deps/application/signals/player_reporting_signal/SetJson.h +++ b/src/mc/deps/application/signals/player_reporting_signal/SetJson.h @@ -12,12 +12,6 @@ namespace PlayerReportingSignal { struct JsonData; } namespace PlayerReportingSignal { -class SetJson : public ::Bedrock::Signal<::PlayerReportingSignal::SetJson, ::PlayerReportingSignal::JsonData> { -public: - // prevent constructor by default - SetJson& operator=(SetJson const&); - SetJson(SetJson const&); - SetJson(); -}; +class SetJson : public ::Bedrock::Signal<::PlayerReportingSignal::SetJson, ::PlayerReportingSignal::JsonData> {}; } // namespace PlayerReportingSignal diff --git a/src/mc/deps/application/storage_migration/MigrationDetector.h b/src/mc/deps/application/storage_migration/MigrationDetector.h index 32de19854b..5e721856b8 100644 --- a/src/mc/deps/application/storage_migration/MigrationDetector.h +++ b/src/mc/deps/application/storage_migration/MigrationDetector.h @@ -12,12 +12,6 @@ namespace Bedrock::StorageMigration { struct ManifestData; } namespace Bedrock::StorageMigration { class MigrationDetector : public ::std::enable_shared_from_this<::Bedrock::StorageMigration::MigrationDetector> { -public: - // prevent constructor by default - MigrationDetector& operator=(MigrationDetector const&); - MigrationDetector(MigrationDetector const&); - MigrationDetector(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/deps/application/storage_migration/StorageMigrationService.h b/src/mc/deps/application/storage_migration/StorageMigrationService.h index fce2e8391e..18c3aafe9d 100644 --- a/src/mc/deps/application/storage_migration/StorageMigrationService.h +++ b/src/mc/deps/application/storage_migration/StorageMigrationService.h @@ -19,12 +19,6 @@ namespace Bedrock::StorageMigration { class StorageMigrationService : public ::Bedrock::EnableNonOwnerReferences, public ::Bedrock::ImplBase<::Bedrock::StorageMigration::StorageMigrationService> { -public: - // prevent constructor by default - StorageMigrationService& operator=(StorageMigrationService const&); - StorageMigrationService(StorageMigrationService const&); - StorageMigrationService(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/deps/application/storage_migration/StorageMigrator.h b/src/mc/deps/application/storage_migration/StorageMigrator.h index f4e62d7630..e921d49f75 100644 --- a/src/mc/deps/application/storage_migration/StorageMigrator.h +++ b/src/mc/deps/application/storage_migration/StorageMigrator.h @@ -40,12 +40,6 @@ class StorageMigrator : public ::std::enable_shared_from_this<::Bedrock::Storage MigrationProgress(); }; -public: - // prevent constructor by default - StorageMigrator& operator=(StorageMigrator const&); - StorageMigrator(StorageMigrator const&); - StorageMigrator(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/deps/application/storage_migration/WorldRecovery.h b/src/mc/deps/application/storage_migration/WorldRecovery.h index 37e910ffa5..c9644b069f 100644 --- a/src/mc/deps/application/storage_migration/WorldRecovery.h +++ b/src/mc/deps/application/storage_migration/WorldRecovery.h @@ -59,12 +59,6 @@ class WorldRecovery : public ::Bedrock::EnableNonOwnerReferences, public ::Bedro RecoveryResult(); }; -public: - // prevent constructor by default - WorldRecovery& operator=(WorldRecovery const&); - WorldRecovery(WorldRecovery const&); - WorldRecovery(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/deps/application/storage_migration/WorldRecoveryTelemetryHandler.h b/src/mc/deps/application/storage_migration/WorldRecoveryTelemetryHandler.h index 04baac3558..5f86718eb4 100644 --- a/src/mc/deps/application/storage_migration/WorldRecoveryTelemetryHandler.h +++ b/src/mc/deps/application/storage_migration/WorldRecoveryTelemetryHandler.h @@ -13,12 +13,6 @@ namespace Bedrock { struct WorldRecoveryTelemetryEvent; } namespace Bedrock { class WorldRecoveryTelemetryHandler : public ::Bedrock::EnableNonOwnerReferences { -public: - // prevent constructor by default - WorldRecoveryTelemetryHandler& operator=(WorldRecoveryTelemetryHandler const&); - WorldRecoveryTelemetryHandler(WorldRecoveryTelemetryHandler const&); - WorldRecoveryTelemetryHandler(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/deps/application/storage_migration/WorldRecovery_Unimplemented.h b/src/mc/deps/application/storage_migration/WorldRecovery_Unimplemented.h index 198811ffa4..05a249c3b4 100644 --- a/src/mc/deps/application/storage_migration/WorldRecovery_Unimplemented.h +++ b/src/mc/deps/application/storage_migration/WorldRecovery_Unimplemented.h @@ -16,12 +16,6 @@ namespace Bedrock::PubSub { class DeferredSubscription; } namespace Bedrock { class WorldRecovery_Unimplemented : public ::Bedrock::WorldRecovery { -public: - // prevent constructor by default - WorldRecovery_Unimplemented& operator=(WorldRecovery_Unimplemented const&); - WorldRecovery_Unimplemented(WorldRecovery_Unimplemented const&); - WorldRecovery_Unimplemented(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/deps/application/win/device/DeviceIdManager_Win32.h b/src/mc/deps/application/win/device/DeviceIdManager_Win32.h index 97ca3ed58d..55fb5b439d 100644 --- a/src/mc/deps/application/win/device/DeviceIdManager_Win32.h +++ b/src/mc/deps/application/win/device/DeviceIdManager_Win32.h @@ -8,12 +8,6 @@ namespace Bedrock { class DeviceIdManager_Win32 : public ::Bedrock::DeviceIdManager_Common { -public: - // prevent constructor by default - DeviceIdManager_Win32& operator=(DeviceIdManager_Win32 const&); - DeviceIdManager_Win32(DeviceIdManager_Win32 const&); - DeviceIdManager_Win32(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/deps/audio/SoundEvent.h b/src/mc/deps/audio/SoundEvent.h index 570c41683b..c905299b5f 100644 --- a/src/mc/deps/audio/SoundEvent.h +++ b/src/mc/deps/audio/SoundEvent.h @@ -2,10 +2,4 @@ #include "mc/_HeaderOutputPredefine.h" -class SoundEvent { -public: - // prevent constructor by default - SoundEvent& operator=(SoundEvent const&); - SoundEvent(SoundEvent const&); - SoundEvent(); -}; +class SoundEvent {}; diff --git a/src/mc/deps/cereal/BasicNumericConstraint.h b/src/mc/deps/cereal/BasicNumericConstraint.h index 8257405bb3..fed8df7cd0 100644 --- a/src/mc/deps/cereal/BasicNumericConstraint.h +++ b/src/mc/deps/cereal/BasicNumericConstraint.h @@ -5,12 +5,6 @@ namespace cereal { template -class BasicNumericConstraint { -public: - // prevent constructor by default - BasicNumericConstraint& operator=(BasicNumericConstraint const&); - BasicNumericConstraint(BasicNumericConstraint const&); - BasicNumericConstraint(); -}; +class BasicNumericConstraint {}; } // namespace cereal diff --git a/src/mc/deps/cereal/Constraint.h b/src/mc/deps/cereal/Constraint.h index 5c5d3796fb..f96bdee53d 100644 --- a/src/mc/deps/cereal/Constraint.h +++ b/src/mc/deps/cereal/Constraint.h @@ -11,12 +11,6 @@ namespace cereal::internal { struct ConstraintDescription; } namespace cereal { class Constraint { -public: - // prevent constructor by default - Constraint& operator=(Constraint const&); - Constraint(Constraint const&); - Constraint(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/deps/cereal/JSONCppSchemaReader.h b/src/mc/deps/cereal/JSONCppSchemaReader.h index fcde5aae98..c69eb11e39 100644 --- a/src/mc/deps/cereal/JSONCppSchemaReader.h +++ b/src/mc/deps/cereal/JSONCppSchemaReader.h @@ -13,12 +13,6 @@ namespace Json { class Value; } namespace cereal { class JSONCppSchemaReader : public ::cereal::JSONCppSchemaReaderBase { -public: - // prevent constructor by default - JSONCppSchemaReader& operator=(JSONCppSchemaReader const&); - JSONCppSchemaReader(JSONCppSchemaReader const&); - JSONCppSchemaReader(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/deps/cereal/NonStrictJsonLoader.h b/src/mc/deps/cereal/NonStrictJsonLoader.h index fe1bc29c5b..fe7557cec4 100644 --- a/src/mc/deps/cereal/NonStrictJsonLoader.h +++ b/src/mc/deps/cereal/NonStrictJsonLoader.h @@ -8,12 +8,6 @@ namespace cereal { class NonStrictJsonLoader : public ::cereal::BasicLoader { -public: - // prevent constructor by default - NonStrictJsonLoader& operator=(NonStrictJsonLoader const&); - NonStrictJsonLoader(NonStrictJsonLoader const&); - NonStrictJsonLoader(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/deps/cereal/NullConstraint.h b/src/mc/deps/cereal/NullConstraint.h index 62211a9960..9ad70e62e7 100644 --- a/src/mc/deps/cereal/NullConstraint.h +++ b/src/mc/deps/cereal/NullConstraint.h @@ -14,12 +14,6 @@ namespace cereal::internal { struct ConstraintDescription; } namespace cereal { class NullConstraint : public ::cereal::Constraint { -public: - // prevent constructor by default - NullConstraint& operator=(NullConstraint const&); - NullConstraint(NullConstraint const&); - NullConstraint(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/deps/cereal/ReflectionCtx.h b/src/mc/deps/cereal/ReflectionCtx.h index 687b57ee75..a63c085a46 100644 --- a/src/mc/deps/cereal/ReflectionCtx.h +++ b/src/mc/deps/cereal/ReflectionCtx.h @@ -9,11 +9,6 @@ namespace cereal { struct ReflectionCtx : public ::cereal::internal::ReflectionContext, public ::Bedrock::EnableNonOwnerReferences { -public: - // prevent constructor by default - ReflectionCtx& operator=(ReflectionCtx const&); - ReflectionCtx(ReflectionCtx const&); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/deps/cereal/StrictJSONCppSchemaReader.h b/src/mc/deps/cereal/StrictJSONCppSchemaReader.h index e18c9e3ba7..a60bbaf90c 100644 --- a/src/mc/deps/cereal/StrictJSONCppSchemaReader.h +++ b/src/mc/deps/cereal/StrictJSONCppSchemaReader.h @@ -13,12 +13,6 @@ namespace Json { class Value; } namespace cereal { class StrictJSONCppSchemaReader : public ::cereal::JSONCppSchemaReaderBase { -public: - // prevent constructor by default - StrictJSONCppSchemaReader& operator=(StrictJSONCppSchemaReader const&); - StrictJSONCppSchemaReader(StrictJSONCppSchemaReader const&); - StrictJSONCppSchemaReader(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/deps/cereal/StrictJsonLoader.h b/src/mc/deps/cereal/StrictJsonLoader.h index 192bb14265..09e6dca83f 100644 --- a/src/mc/deps/cereal/StrictJsonLoader.h +++ b/src/mc/deps/cereal/StrictJsonLoader.h @@ -8,12 +8,6 @@ namespace cereal { class StrictJsonLoader : public ::cereal::BasicLoader { -public: - // prevent constructor by default - StrictJsonLoader& operator=(StrictJsonLoader const&); - StrictJsonLoader(StrictJsonLoader const&); - StrictJsonLoader(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/deps/cereal/ext/json_schema/JSONSchemaDef.h b/src/mc/deps/cereal/ext/json_schema/JSONSchemaDef.h index f037183a88..2f1ca37bfe 100644 --- a/src/mc/deps/cereal/ext/json_schema/JSONSchemaDef.h +++ b/src/mc/deps/cereal/ext/json_schema/JSONSchemaDef.h @@ -17,11 +17,6 @@ namespace cereal::internal { struct SchemaInfo; } namespace cereal::ext::internal { struct JSONSchemaDef : public ::cereal::ext::internal::JSONSchemaInfo, public ::cereal::ext::internal::JSONSchemaBody { -public: - // prevent constructor by default - JSONSchemaDef& operator=(JSONSchemaDef const&); - JSONSchemaDef(); - public: // member functions // NOLINTBEGIN diff --git a/src/mc/deps/cereal/schema/BasicGenericTypeSchema.h b/src/mc/deps/cereal/schema/BasicGenericTypeSchema.h index 083d8c3776..6378c92d40 100644 --- a/src/mc/deps/cereal/schema/BasicGenericTypeSchema.h +++ b/src/mc/deps/cereal/schema/BasicGenericTypeSchema.h @@ -15,12 +15,6 @@ namespace cereal { struct SchemaWriter; } namespace cereal::internal { class BasicGenericTypeSchema : public ::cereal::internal::BasicSchema { -public: - // prevent constructor by default - BasicGenericTypeSchema& operator=(BasicGenericTypeSchema const&); - BasicGenericTypeSchema(BasicGenericTypeSchema const&); - BasicGenericTypeSchema(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/deps/cereal/schema/SchemaReader.h b/src/mc/deps/cereal/schema/SchemaReader.h index 85fac9af5d..30f37035ee 100644 --- a/src/mc/deps/cereal/schema/SchemaReader.h +++ b/src/mc/deps/cereal/schema/SchemaReader.h @@ -47,12 +47,6 @@ struct SchemaReader { // NOLINTEND }; -public: - // prevent constructor by default - SchemaReader& operator=(SchemaReader const&); - SchemaReader(SchemaReader const&); - SchemaReader(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/deps/cereal/schema/SchemaWriter.h b/src/mc/deps/cereal/schema/SchemaWriter.h index 6f4366b950..3a837279df 100644 --- a/src/mc/deps/cereal/schema/SchemaWriter.h +++ b/src/mc/deps/cereal/schema/SchemaWriter.h @@ -10,12 +10,6 @@ namespace cereal { class PropertyReader; } namespace cereal { struct SchemaWriter { -public: - // prevent constructor by default - SchemaWriter& operator=(SchemaWriter const&); - SchemaWriter(SchemaWriter const&); - SchemaWriter(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/deps/cereal/schema/UndefinedSchema.h b/src/mc/deps/cereal/schema/UndefinedSchema.h index cfd9458d82..62621c015e 100644 --- a/src/mc/deps/cereal/schema/UndefinedSchema.h +++ b/src/mc/deps/cereal/schema/UndefinedSchema.h @@ -15,12 +15,6 @@ namespace cereal { struct SchemaReader; } namespace cereal::internal { class UndefinedSchema : public ::cereal::internal::BasicSchema { -public: - // prevent constructor by default - UndefinedSchema& operator=(UndefinedSchema const&); - UndefinedSchema(UndefinedSchema const&); - UndefinedSchema(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/deps/core/NetworkChangeObserver.h b/src/mc/deps/core/NetworkChangeObserver.h index fd26df9df7..3ac905d34c 100644 --- a/src/mc/deps/core/NetworkChangeObserver.h +++ b/src/mc/deps/core/NetworkChangeObserver.h @@ -11,12 +11,6 @@ namespace Bedrock::Threading { class Mutex; } // clang-format on class NetworkChangeObserver : public ::Core::Observer<::NetworkChangeObserver, ::Bedrock::Threading::Mutex> { -public: - // prevent constructor by default - NetworkChangeObserver& operator=(NetworkChangeObserver const&); - NetworkChangeObserver(NetworkChangeObserver const&); - NetworkChangeObserver(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/deps/core/checked_resource_service/AssertResourceServiceErrorHandler.h b/src/mc/deps/core/checked_resource_service/AssertResourceServiceErrorHandler.h index 95a51c6ae8..d0bf08fee3 100644 --- a/src/mc/deps/core/checked_resource_service/AssertResourceServiceErrorHandler.h +++ b/src/mc/deps/core/checked_resource_service/AssertResourceServiceErrorHandler.h @@ -4,12 +4,6 @@ namespace mce { -struct AssertResourceServiceErrorHandler { -public: - // prevent constructor by default - AssertResourceServiceErrorHandler& operator=(AssertResourceServiceErrorHandler const&); - AssertResourceServiceErrorHandler(AssertResourceServiceErrorHandler const&); - AssertResourceServiceErrorHandler(); -}; +struct AssertResourceServiceErrorHandler {}; } // namespace mce diff --git a/src/mc/deps/core/checked_resource_service/IDeferredDebugUpdate.h b/src/mc/deps/core/checked_resource_service/IDeferredDebugUpdate.h index 4bc26dcafc..98c746c02a 100644 --- a/src/mc/deps/core/checked_resource_service/IDeferredDebugUpdate.h +++ b/src/mc/deps/core/checked_resource_service/IDeferredDebugUpdate.h @@ -5,12 +5,6 @@ namespace mce { class IDeferredDebugUpdate { -public: - // prevent constructor by default - IDeferredDebugUpdate& operator=(IDeferredDebugUpdate const&); - IDeferredDebugUpdate(IDeferredDebugUpdate const&); - IDeferredDebugUpdate(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/deps/core/checked_resource_service/ITransactionContainer.h b/src/mc/deps/core/checked_resource_service/ITransactionContainer.h index 066c9712d8..3410a34e36 100644 --- a/src/mc/deps/core/checked_resource_service/ITransactionContainer.h +++ b/src/mc/deps/core/checked_resource_service/ITransactionContainer.h @@ -10,12 +10,6 @@ namespace mce { class IDeferredDebugUpdate; } namespace mce { struct ITransactionContainer { -public: - // prevent constructor by default - ITransactionContainer& operator=(ITransactionContainer const&); - ITransactionContainer(ITransactionContainer const&); - ITransactionContainer(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/deps/core/checked_resource_service/ResourceValidatorDebugTraits.h b/src/mc/deps/core/checked_resource_service/ResourceValidatorDebugTraits.h index 8dfbaf5f2e..1e0f325952 100644 --- a/src/mc/deps/core/checked_resource_service/ResourceValidatorDebugTraits.h +++ b/src/mc/deps/core/checked_resource_service/ResourceValidatorDebugTraits.h @@ -5,12 +5,6 @@ namespace mce { template -struct ResourceValidatorDebugTraits { -public: - // prevent constructor by default - ResourceValidatorDebugTraits& operator=(ResourceValidatorDebugTraits const&); - ResourceValidatorDebugTraits(ResourceValidatorDebugTraits const&); - ResourceValidatorDebugTraits(); -}; +struct ResourceValidatorDebugTraits {}; } // namespace mce diff --git a/src/mc/deps/core/container/Cache.h b/src/mc/deps/core/container/Cache.h index 1b1720c41c..c0bc16fb80 100644 --- a/src/mc/deps/core/container/Cache.h +++ b/src/mc/deps/core/container/Cache.h @@ -5,12 +5,6 @@ namespace Core { template -class Cache { -public: - // prevent constructor by default - Cache& operator=(Cache const&); - Cache(Cache const&); - Cache(); -}; +class Cache {}; } // namespace Core diff --git a/src/mc/deps/core/container/DenseEnumMap.h b/src/mc/deps/core/container/DenseEnumMap.h index 67955518da..e89cd976da 100644 --- a/src/mc/deps/core/container/DenseEnumMap.h +++ b/src/mc/deps/core/container/DenseEnumMap.h @@ -5,12 +5,6 @@ namespace Bedrock { template -class DenseEnumMap { -public: - // prevent constructor by default - DenseEnumMap& operator=(DenseEnumMap const&); - DenseEnumMap(DenseEnumMap const&); - DenseEnumMap(); -}; +class DenseEnumMap {}; } // namespace Bedrock diff --git a/src/mc/deps/core/container/MovePriorityQueue.h b/src/mc/deps/core/container/MovePriorityQueue.h index 8d1cc35fd3..e55be0a8ad 100644 --- a/src/mc/deps/core/container/MovePriorityQueue.h +++ b/src/mc/deps/core/container/MovePriorityQueue.h @@ -3,10 +3,4 @@ #include "mc/_HeaderOutputPredefine.h" template -class MovePriorityQueue { -public: - // prevent constructor by default - MovePriorityQueue& operator=(MovePriorityQueue const&); - MovePriorityQueue(MovePriorityQueue const&); - MovePriorityQueue(); -}; +class MovePriorityQueue {}; diff --git a/src/mc/deps/core/container/RefCountedSet.h b/src/mc/deps/core/container/RefCountedSet.h index 0ac2294318..3bf292a012 100644 --- a/src/mc/deps/core/container/RefCountedSet.h +++ b/src/mc/deps/core/container/RefCountedSet.h @@ -5,12 +5,6 @@ namespace Core { template -class RefCountedSet { -public: - // prevent constructor by default - RefCountedSet& operator=(RefCountedSet const&); - RefCountedSet(RefCountedSet const&); - RefCountedSet(); -}; +class RefCountedSet {}; } // namespace Core diff --git a/src/mc/deps/core/container/SmallSet.h b/src/mc/deps/core/container/SmallSet.h index 7929a9b39f..fd4c1417e0 100644 --- a/src/mc/deps/core/container/SmallSet.h +++ b/src/mc/deps/core/container/SmallSet.h @@ -3,10 +3,4 @@ #include "mc/_HeaderOutputPredefine.h" template -class SmallSet { -public: - // prevent constructor by default - SmallSet& operator=(SmallSet const&); - SmallSet(SmallSet const&); - SmallSet(); -}; +class SmallSet {}; diff --git a/src/mc/deps/core/container/list.h b/src/mc/deps/core/container/list.h index 5e0d6b2ee2..7693a90e3e 100644 --- a/src/mc/deps/core/container/list.h +++ b/src/mc/deps/core/container/list.h @@ -5,12 +5,6 @@ namespace Bedrock::Intrusive { template -class list { -public: - // prevent constructor by default - list& operator=(list const&); - list(list const&); - list(); -}; +class list {}; } // namespace Bedrock::Intrusive diff --git a/src/mc/deps/core/container/list_base_hook.h b/src/mc/deps/core/container/list_base_hook.h index 903199d681..1d521fd502 100644 --- a/src/mc/deps/core/container/list_base_hook.h +++ b/src/mc/deps/core/container/list_base_hook.h @@ -5,12 +5,6 @@ namespace Bedrock::Intrusive { template -class list_base_hook { -public: - // prevent constructor by default - list_base_hook& operator=(list_base_hook const&); - list_base_hook(list_base_hook const&); - list_base_hook(); -}; +class list_base_hook {}; } // namespace Bedrock::Intrusive diff --git a/src/mc/deps/core/container/list_standard_operations.h b/src/mc/deps/core/container/list_standard_operations.h index 011b2fa5d7..9d7fefc641 100644 --- a/src/mc/deps/core/container/list_standard_operations.h +++ b/src/mc/deps/core/container/list_standard_operations.h @@ -5,12 +5,6 @@ namespace Bedrock::Intrusive { template -class list_standard_operations { -public: - // prevent constructor by default - list_standard_operations& operator=(list_standard_operations const&); - list_standard_operations(list_standard_operations const&); - list_standard_operations(); -}; +class list_standard_operations {}; } // namespace Bedrock::Intrusive diff --git a/src/mc/deps/core/data_store/DataStore.h b/src/mc/deps/core/data_store/DataStore.h index 6280a848b7..c68626af1a 100644 --- a/src/mc/deps/core/data_store/DataStore.h +++ b/src/mc/deps/core/data_store/DataStore.h @@ -74,12 +74,6 @@ class DataStore : public ::Bedrock::EnableNonOwnerReferences { }; class Viewer { - public: - // prevent constructor by default - Viewer& operator=(Viewer const&); - Viewer(Viewer const&); - Viewer(); - public: // virtual functions // NOLINTBEGIN @@ -116,12 +110,6 @@ class DataStore : public ::Bedrock::EnableNonOwnerReferences { }; class Editor : public ::Bedrock::DataStore::Viewer { - public: - // prevent constructor by default - Editor& operator=(Editor const&); - Editor(Editor const&); - Editor(); - public: // virtual functions // NOLINTBEGIN @@ -188,13 +176,7 @@ class DataStore : public ::Bedrock::EnableNonOwnerReferences { }; template - class AccessHandle { - public: - // prevent constructor by default - AccessHandle& operator=(AccessHandle const&); - AccessHandle(AccessHandle const&); - AccessHandle(); - }; + class AccessHandle {}; public: // member variables diff --git a/src/mc/deps/core/debug/LogSettingsUpdater.h b/src/mc/deps/core/debug/LogSettingsUpdater.h index c3c626b71d..a9df9be6f9 100644 --- a/src/mc/deps/core/debug/LogSettingsUpdater.h +++ b/src/mc/deps/core/debug/LogSettingsUpdater.h @@ -8,12 +8,6 @@ namespace Bedrock::PubSub { class Subscription; } // clang-format on class LogSettingsUpdater { -public: - // prevent constructor by default - LogSettingsUpdater& operator=(LogSettingsUpdater const&); - LogSettingsUpdater(LogSettingsUpdater const&); - LogSettingsUpdater(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/deps/core/debug/bedrock_log/CategoryLogs.h b/src/mc/deps/core/debug/bedrock_log/CategoryLogs.h index 34b111e55b..a3511ca85b 100644 --- a/src/mc/deps/core/debug/bedrock_log/CategoryLogs.h +++ b/src/mc/deps/core/debug/bedrock_log/CategoryLogs.h @@ -9,12 +9,6 @@ namespace BedrockLog { struct CategoryLogFile; } namespace BedrockLog { -struct CategoryLogs : public ::std::array<::BedrockLog::CategoryLogFile, 7> { -public: - // prevent constructor by default - CategoryLogs& operator=(CategoryLogs const&); - CategoryLogs(CategoryLogs const&); - CategoryLogs(); -}; +struct CategoryLogs : public ::std::array<::BedrockLog::CategoryLogFile, 7> {}; } // namespace BedrockLog diff --git a/src/mc/deps/core/debug/log/ContentLogEndPoint.h b/src/mc/deps/core/debug/log/ContentLogEndPoint.h index 42fabc7743..fddfaa0ae3 100644 --- a/src/mc/deps/core/debug/log/ContentLogEndPoint.h +++ b/src/mc/deps/core/debug/log/ContentLogEndPoint.h @@ -9,11 +9,6 @@ #include "mc/deps/core/utility/EnableNonOwnerReferences.h" class ContentLogEndPoint : public ::Bedrock::EnableNonOwnerReferences, public ::Bedrock::LogEndPoint { -public: - // prevent constructor by default - ContentLogEndPoint& operator=(ContentLogEndPoint const&); - ContentLogEndPoint(ContentLogEndPoint const&); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/deps/core/debug/log/LogEndPoint.h b/src/mc/deps/core/debug/log/LogEndPoint.h index 2c88fac735..1e03414bd0 100644 --- a/src/mc/deps/core/debug/log/LogEndPoint.h +++ b/src/mc/deps/core/debug/log/LogEndPoint.h @@ -5,12 +5,6 @@ namespace Bedrock { class LogEndPoint { -public: - // prevent constructor by default - LogEndPoint& operator=(LogEndPoint const&); - LogEndPoint(LogEndPoint const&); - LogEndPoint(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/deps/core/file/BasicDirectoryStorageArea.h b/src/mc/deps/core/file/BasicDirectoryStorageArea.h index 273115b41c..6d622501c3 100644 --- a/src/mc/deps/core/file/BasicDirectoryStorageArea.h +++ b/src/mc/deps/core/file/BasicDirectoryStorageArea.h @@ -5,12 +5,6 @@ namespace Core { template -class BasicDirectoryStorageArea { -public: - // prevent constructor by default - BasicDirectoryStorageArea& operator=(BasicDirectoryStorageArea const&); - BasicDirectoryStorageArea(BasicDirectoryStorageArea const&); - BasicDirectoryStorageArea(); -}; +class BasicDirectoryStorageArea {}; } // namespace Core diff --git a/src/mc/deps/core/file/FileSizePresetManager.h b/src/mc/deps/core/file/FileSizePresetManager.h index 1835b45cf8..8fb4bfa692 100644 --- a/src/mc/deps/core/file/FileSizePresetManager.h +++ b/src/mc/deps/core/file/FileSizePresetManager.h @@ -11,12 +11,6 @@ namespace Core { class Path; } namespace Core { class FileSizePresetManager { -public: - // prevent constructor by default - FileSizePresetManager& operator=(FileSizePresetManager const&); - FileSizePresetManager(FileSizePresetManager const&); - FileSizePresetManager(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/deps/core/file/FileSizePresetToken.h b/src/mc/deps/core/file/FileSizePresetToken.h index dbb27a3fe3..8584a96410 100644 --- a/src/mc/deps/core/file/FileSizePresetToken.h +++ b/src/mc/deps/core/file/FileSizePresetToken.h @@ -5,12 +5,6 @@ namespace Core { class FileSizePresetToken { -public: - // prevent constructor by default - FileSizePresetToken& operator=(FileSizePresetToken const&); - FileSizePresetToken(FileSizePresetToken const&); - FileSizePresetToken(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/deps/core/file/FileStorageAreaFetcher.h b/src/mc/deps/core/file/FileStorageAreaFetcher.h index 153e989cc2..a6b0e5d178 100644 --- a/src/mc/deps/core/file/FileStorageAreaFetcher.h +++ b/src/mc/deps/core/file/FileStorageAreaFetcher.h @@ -15,12 +15,6 @@ namespace Core { class Result; } namespace Core { class FileStorageAreaFetcher : public ::Core::IFileStorageAreaFetcher { -public: - // prevent constructor by default - FileStorageAreaFetcher& operator=(FileStorageAreaFetcher const&); - FileStorageAreaFetcher(FileStorageAreaFetcher const&); - FileStorageAreaFetcher(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/deps/core/file/FileStorageAreaObserver.h b/src/mc/deps/core/file/FileStorageAreaObserver.h index 6010a324b7..0976b5b60f 100644 --- a/src/mc/deps/core/file/FileStorageAreaObserver.h +++ b/src/mc/deps/core/file/FileStorageAreaObserver.h @@ -14,12 +14,6 @@ namespace Core { class SingleThreadedLock; } namespace Core { class FileStorageAreaObserver : public ::Core::Observer<::Core::FileStorageAreaObserver, ::Core::SingleThreadedLock> { -public: - // prevent constructor by default - FileStorageAreaObserver& operator=(FileStorageAreaObserver const&); - FileStorageAreaObserver(FileStorageAreaObserver const&); - FileStorageAreaObserver(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/deps/core/file/FileSystem.h b/src/mc/deps/core/file/FileSystem.h index e4ca8a9bdd..278e82d8bf 100644 --- a/src/mc/deps/core/file/FileSystem.h +++ b/src/mc/deps/core/file/FileSystem.h @@ -76,12 +76,6 @@ class FileSystem : public ::Bedrock::EnableNonOwnerReferences { FileTransferProgress(); }; -public: - // prevent constructor by default - FileSystem& operator=(FileSystem const&); - FileSystem(FileSystem const&); - FileSystem(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/deps/core/file/FlushingIOController.h b/src/mc/deps/core/file/FlushingIOController.h index 6efc2391b7..07d8f28baf 100644 --- a/src/mc/deps/core/file/FlushingIOController.h +++ b/src/mc/deps/core/file/FlushingIOController.h @@ -18,12 +18,6 @@ class FlushingIOController { // FlushingIOController inner types define class Flusher { - public: - // prevent constructor by default - Flusher& operator=(Flusher const&); - Flusher(Flusher const&); - Flusher(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/deps/core/file/IFileStorageAreaFetcher.h b/src/mc/deps/core/file/IFileStorageAreaFetcher.h index ea2097f6a0..727b686b3d 100644 --- a/src/mc/deps/core/file/IFileStorageAreaFetcher.h +++ b/src/mc/deps/core/file/IFileStorageAreaFetcher.h @@ -12,12 +12,6 @@ namespace Core { class Result; } namespace Core { class IFileStorageAreaFetcher { -public: - // prevent constructor by default - IFileStorageAreaFetcher& operator=(IFileStorageAreaFetcher const&); - IFileStorageAreaFetcher(IFileStorageAreaFetcher const&); - IFileStorageAreaFetcher(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/deps/core/file/InputFileStream.h b/src/mc/deps/core/file/InputFileStream.h index bdc25498ea..8dd503e8ec 100644 --- a/src/mc/deps/core/file/InputFileStream.h +++ b/src/mc/deps/core/file/InputFileStream.h @@ -13,12 +13,6 @@ namespace Core { class Path; } namespace Core { class InputFileStream : public ::Core::FileStream, public virtual ::std::ios { -public: - // prevent constructor by default - InputFileStream& operator=(InputFileStream const&); - InputFileStream(InputFileStream const&); - InputFileStream(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/deps/core/file/OutputFileStream.h b/src/mc/deps/core/file/OutputFileStream.h index a87d39c050..109c03c5c8 100644 --- a/src/mc/deps/core/file/OutputFileStream.h +++ b/src/mc/deps/core/file/OutputFileStream.h @@ -8,11 +8,6 @@ namespace Core { class OutputFileStream : public ::Core::FileStream, public virtual ::std::ios { -public: - // prevent constructor by default - OutputFileStream& operator=(OutputFileStream const&); - OutputFileStream(OutputFileStream const&); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/deps/core/file/Path.h b/src/mc/deps/core/file/Path.h index a53fad54f0..4e50fa3018 100644 --- a/src/mc/deps/core/file/Path.h +++ b/src/mc/deps/core/file/Path.h @@ -23,13 +23,7 @@ class Path { // clang-format on // Path inner types define - struct path_less { - public: - // prevent constructor by default - path_less& operator=(path_less const&); - path_less(path_less const&); - path_less(); - }; + struct path_less {}; public: // member variables diff --git a/src/mc/deps/core/file/PathBuffer.h b/src/mc/deps/core/file/PathBuffer.h index acf8ccc1e4..8d1c8731a0 100644 --- a/src/mc/deps/core/file/PathBuffer.h +++ b/src/mc/deps/core/file/PathBuffer.h @@ -5,12 +5,6 @@ namespace Core { template -class PathBuffer { -public: - // prevent constructor by default - PathBuffer& operator=(PathBuffer const&); - PathBuffer(PathBuffer const&); - PathBuffer(); -}; +class PathBuffer {}; } // namespace Core diff --git a/src/mc/deps/core/file/UnzipFile.h b/src/mc/deps/core/file/UnzipFile.h index 015a8d771b..2958b6e164 100644 --- a/src/mc/deps/core/file/UnzipFile.h +++ b/src/mc/deps/core/file/UnzipFile.h @@ -16,12 +16,6 @@ namespace Core { class Path; } namespace Core { class UnzipFile { -public: - // prevent constructor by default - UnzipFile& operator=(UnzipFile const&); - UnzipFile(UnzipFile const&); - UnzipFile(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/deps/core/file/file_system/BufferedFileOperations.h b/src/mc/deps/core/file/file_system/BufferedFileOperations.h index 7fb9c5395e..cd67108ba6 100644 --- a/src/mc/deps/core/file/file_system/BufferedFileOperations.h +++ b/src/mc/deps/core/file/file_system/BufferedFileOperations.h @@ -12,12 +12,6 @@ namespace Core { class Result; } namespace Core { class BufferedFileOperations { -public: - // prevent constructor by default - BufferedFileOperations& operator=(BufferedFileOperations const&); - BufferedFileOperations(BufferedFileOperations const&); - BufferedFileOperations(); - public: // static functions // NOLINTBEGIN diff --git a/src/mc/deps/core/file/file_system/FileAccessTransforms.h b/src/mc/deps/core/file/file_system/FileAccessTransforms.h index 84dc17fd27..8338dae0f0 100644 --- a/src/mc/deps/core/file/file_system/FileAccessTransforms.h +++ b/src/mc/deps/core/file/file_system/FileAccessTransforms.h @@ -3,12 +3,6 @@ #include "mc/_HeaderOutputPredefine.h" class FileAccessTransforms { -public: - // prevent constructor by default - FileAccessTransforms& operator=(FileAccessTransforms const&); - FileAccessTransforms(FileAccessTransforms const&); - FileAccessTransforms(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/deps/core/file/file_system/FileSystemFileAccess.h b/src/mc/deps/core/file/file_system/FileSystemFileAccess.h index f5f78f290f..5834997b16 100644 --- a/src/mc/deps/core/file/file_system/FileSystemFileAccess.h +++ b/src/mc/deps/core/file/file_system/FileSystemFileAccess.h @@ -23,12 +23,6 @@ class FileSystemFileAccess : public ::IFileAccess { // FileSystemFileAccess inner types define class FileSystemFileReadAccess : public ::IFileReadAccess { - public: - // prevent constructor by default - FileSystemFileReadAccess& operator=(FileSystemFileReadAccess const&); - FileSystemFileReadAccess(FileSystemFileReadAccess const&); - FileSystemFileReadAccess(); - public: // virtual functions // NOLINTBEGIN @@ -59,12 +53,6 @@ class FileSystemFileAccess : public ::IFileAccess { }; class FileSystemFileWriteAccess : public ::IFileWriteAccess { - public: - // prevent constructor by default - FileSystemFileWriteAccess& operator=(FileSystemFileWriteAccess const&); - FileSystemFileWriteAccess(FileSystemFileWriteAccess const&); - FileSystemFileWriteAccess(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/deps/core/file/file_system/FlatFileOperations.h b/src/mc/deps/core/file/file_system/FlatFileOperations.h index fcf14c9693..baf273246e 100644 --- a/src/mc/deps/core/file/file_system/FlatFileOperations.h +++ b/src/mc/deps/core/file/file_system/FlatFileOperations.h @@ -18,12 +18,6 @@ namespace Core { struct ExcludedPath; } namespace Core { class FlatFileOperations { -public: - // prevent constructor by default - FlatFileOperations& operator=(FlatFileOperations const&); - FlatFileOperations(FlatFileOperations const&); - FlatFileOperations(); - public: // static functions // NOLINTBEGIN diff --git a/src/mc/deps/core/file/file_system/FullCopyFileOperations.h b/src/mc/deps/core/file/file_system/FullCopyFileOperations.h index 1b79c170d8..ed07e45724 100644 --- a/src/mc/deps/core/file/file_system/FullCopyFileOperations.h +++ b/src/mc/deps/core/file/file_system/FullCopyFileOperations.h @@ -12,12 +12,6 @@ namespace Core { class Result; } namespace Core { class FullCopyFileOperations { -public: - // prevent constructor by default - FullCopyFileOperations& operator=(FullCopyFileOperations const&); - FullCopyFileOperations(FullCopyFileOperations const&); - FullCopyFileOperations(); - public: // static functions // NOLINTBEGIN diff --git a/src/mc/deps/core/file/file_system/IFileAccess.h b/src/mc/deps/core/file/file_system/IFileAccess.h index 57c078f50b..b3104367ae 100644 --- a/src/mc/deps/core/file/file_system/IFileAccess.h +++ b/src/mc/deps/core/file/file_system/IFileAccess.h @@ -13,12 +13,6 @@ namespace Core { class Path; } // clang-format on class IFileAccess : public ::Bedrock::EnableNonOwnerReferences { -public: - // prevent constructor by default - IFileAccess& operator=(IFileAccess const&); - IFileAccess(IFileAccess const&); - IFileAccess(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/deps/core/file/file_system/IFileReadAccess.h b/src/mc/deps/core/file/file_system/IFileReadAccess.h index f6067f0f9f..6176d9260e 100644 --- a/src/mc/deps/core/file/file_system/IFileReadAccess.h +++ b/src/mc/deps/core/file/file_system/IFileReadAccess.h @@ -3,12 +3,6 @@ #include "mc/_HeaderOutputPredefine.h" class IFileReadAccess { -public: - // prevent constructor by default - IFileReadAccess& operator=(IFileReadAccess const&); - IFileReadAccess(IFileReadAccess const&); - IFileReadAccess(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/deps/core/file/file_system/IFileWriteAccess.h b/src/mc/deps/core/file/file_system/IFileWriteAccess.h index 9dadb84a83..0c4afe699f 100644 --- a/src/mc/deps/core/file/file_system/IFileWriteAccess.h +++ b/src/mc/deps/core/file/file_system/IFileWriteAccess.h @@ -3,12 +3,6 @@ #include "mc/_HeaderOutputPredefine.h" class IFileWriteAccess { -public: - // prevent constructor by default - IFileWriteAccess& operator=(IFileWriteAccess const&); - IFileWriteAccess(IFileWriteAccess const&); - IFileWriteAccess(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/deps/core/file/file_system/MakeFileTransaction.h b/src/mc/deps/core/file/file_system/MakeFileTransaction.h index c911f79fcb..697ccf88c1 100644 --- a/src/mc/deps/core/file/file_system/MakeFileTransaction.h +++ b/src/mc/deps/core/file/file_system/MakeFileTransaction.h @@ -4,12 +4,6 @@ namespace Core { -class MakeFileTransaction { -public: - // prevent constructor by default - MakeFileTransaction& operator=(MakeFileTransaction const&); - MakeFileTransaction(MakeFileTransaction const&); - MakeFileTransaction(); -}; +class MakeFileTransaction {}; } // namespace Core diff --git a/src/mc/deps/core/file/file_system/MemoryMappedFileAccess.h b/src/mc/deps/core/file/file_system/MemoryMappedFileAccess.h index 4e1167d9b4..34d28c074c 100644 --- a/src/mc/deps/core/file/file_system/MemoryMappedFileAccess.h +++ b/src/mc/deps/core/file/file_system/MemoryMappedFileAccess.h @@ -26,12 +26,6 @@ class MemoryMappedFileAccess : public ::IFileAccess { // MemoryMappedFileAccess inner types define class MemoryMappedFileReadAccess : public ::IFileReadAccess { - public: - // prevent constructor by default - MemoryMappedFileReadAccess& operator=(MemoryMappedFileReadAccess const&); - MemoryMappedFileReadAccess(MemoryMappedFileReadAccess const&); - MemoryMappedFileReadAccess(); - public: // virtual functions // NOLINTBEGIN @@ -62,12 +56,6 @@ class MemoryMappedFileAccess : public ::IFileAccess { }; class MemoryMappedFileWriteAccess : public ::IFileWriteAccess { - public: - // prevent constructor by default - MemoryMappedFileWriteAccess& operator=(MemoryMappedFileWriteAccess const&); - MemoryMappedFileWriteAccess(MemoryMappedFileWriteAccess const&); - MemoryMappedFileWriteAccess(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/deps/core/file/file_system/splitfat/SfatFileSystemImpl.h b/src/mc/deps/core/file/file_system/splitfat/SfatFileSystemImpl.h index 49438f6203..e538ea0357 100644 --- a/src/mc/deps/core/file/file_system/splitfat/SfatFileSystemImpl.h +++ b/src/mc/deps/core/file/file_system/splitfat/SfatFileSystemImpl.h @@ -22,12 +22,6 @@ namespace Core { struct DirectoryIterationItem; } namespace Core::SFAT { class SfatFileSystemImpl : public ::Core::FileSystemImpl { -public: - // prevent constructor by default - SfatFileSystemImpl& operator=(SfatFileSystemImpl const&); - SfatFileSystemImpl(SfatFileSystemImpl const&); - SfatFileSystemImpl(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/deps/core/file/write_throttledos/OSWriteThrottleTracker.h b/src/mc/deps/core/file/write_throttledos/OSWriteThrottleTracker.h index c24d09ddbf..524bb50c0b 100644 --- a/src/mc/deps/core/file/write_throttledos/OSWriteThrottleTracker.h +++ b/src/mc/deps/core/file/write_throttledos/OSWriteThrottleTracker.h @@ -46,12 +46,6 @@ class OSWriteThrottleTracker { OSWriteThrottleStats(); }; -public: - // prevent constructor by default - OSWriteThrottleTracker& operator=(OSWriteThrottleTracker const&); - OSWriteThrottleTracker(OSWriteThrottleTracker const&); - OSWriteThrottleTracker(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/deps/core/file/write_throttledos/ThrottledFileWriteEstimator.h b/src/mc/deps/core/file/write_throttledos/ThrottledFileWriteEstimator.h index 660d99481b..05a9614b58 100644 --- a/src/mc/deps/core/file/write_throttledos/ThrottledFileWriteEstimator.h +++ b/src/mc/deps/core/file/write_throttledos/ThrottledFileWriteEstimator.h @@ -28,12 +28,6 @@ class ThrottledFileWriteEstimator { WriteTimeEstimate(WriteTimeEstimate const&); WriteTimeEstimate(); }; - -public: - // prevent constructor by default - ThrottledFileWriteEstimator& operator=(ThrottledFileWriteEstimator const&); - ThrottledFileWriteEstimator(ThrottledFileWriteEstimator const&); - ThrottledFileWriteEstimator(); }; } // namespace Core::WriteThrottledOS diff --git a/src/mc/deps/core/http/DEL.h b/src/mc/deps/core/http/DEL.h index 05ac5a3949..8bbdb5ce82 100644 --- a/src/mc/deps/core/http/DEL.h +++ b/src/mc/deps/core/http/DEL.h @@ -5,12 +5,6 @@ namespace Bedrock::Http::MethodType { struct DEL { -public: - // prevent constructor by default - DEL& operator=(DEL const&); - DEL(DEL const&); - DEL(); - public: // static variables // NOLINTBEGIN diff --git a/src/mc/deps/core/http/DispatchQueue.h b/src/mc/deps/core/http/DispatchQueue.h index eb34f5a223..3ee68fa5eb 100644 --- a/src/mc/deps/core/http/DispatchQueue.h +++ b/src/mc/deps/core/http/DispatchQueue.h @@ -78,13 +78,7 @@ class DispatchQueue : public ::Bedrock::Http::DispatcherProcess { // NOLINTEND }; - struct Compare { - public: - // prevent constructor by default - Compare& operator=(Compare const&); - Compare(Compare const&); - Compare(); - }; + struct Compare {}; public: // member variables diff --git a/src/mc/deps/core/http/DispatcherInterface.h b/src/mc/deps/core/http/DispatcherInterface.h index d7862d6084..8db3e8ee5a 100644 --- a/src/mc/deps/core/http/DispatcherInterface.h +++ b/src/mc/deps/core/http/DispatcherInterface.h @@ -15,12 +15,6 @@ namespace Bedrock::Http { class Response; } namespace Bedrock::Http { class DispatcherInterface : public ::Bedrock::EnableNonOwnerReferences { -public: - // prevent constructor by default - DispatcherInterface& operator=(DispatcherInterface const&); - DispatcherInterface(DispatcherInterface const&); - DispatcherInterface(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/deps/core/http/Factory.h b/src/mc/deps/core/http/Factory.h index 8887264ec9..961e720cad 100644 --- a/src/mc/deps/core/http/Factory.h +++ b/src/mc/deps/core/http/Factory.h @@ -10,12 +10,6 @@ namespace Bedrock::Http { class DispatcherProcess; } namespace Bedrock::Http { class Factory { -public: - // prevent constructor by default - Factory& operator=(Factory const&); - Factory(Factory const&); - Factory(); - public: // static functions // NOLINTBEGIN diff --git a/src/mc/deps/core/http/GET.h b/src/mc/deps/core/http/GET.h index 42adf9caa0..df135bea99 100644 --- a/src/mc/deps/core/http/GET.h +++ b/src/mc/deps/core/http/GET.h @@ -5,12 +5,6 @@ namespace Bedrock::Http::MethodType { struct GET { -public: - // prevent constructor by default - GET& operator=(GET const&); - GET(GET const&); - GET(); - public: // static variables // NOLINTBEGIN diff --git a/src/mc/deps/core/http/HEAD.h b/src/mc/deps/core/http/HEAD.h index 36519353a9..373a0539b6 100644 --- a/src/mc/deps/core/http/HEAD.h +++ b/src/mc/deps/core/http/HEAD.h @@ -5,12 +5,6 @@ namespace Bedrock::Http::MethodType { struct HEAD { -public: - // prevent constructor by default - HEAD& operator=(HEAD const&); - HEAD(HEAD const&); - HEAD(); - public: // static variables // NOLINTBEGIN diff --git a/src/mc/deps/core/http/HttpInterface.h b/src/mc/deps/core/http/HttpInterface.h index ff821b8040..ea5c544042 100644 --- a/src/mc/deps/core/http/HttpInterface.h +++ b/src/mc/deps/core/http/HttpInterface.h @@ -12,12 +12,6 @@ struct XAsyncBlock; namespace Bedrock::Http { class HttpInterface : public ::Bedrock::ImplBase<::Bedrock::Http::HttpInterface> { -public: - // prevent constructor by default - HttpInterface& operator=(HttpInterface const&); - HttpInterface(HttpInterface const&); - HttpInterface(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/deps/core/http/HttpInterfaceInternal.h b/src/mc/deps/core/http/HttpInterfaceInternal.h index 744a3a5977..749bb86173 100644 --- a/src/mc/deps/core/http/HttpInterfaceInternal.h +++ b/src/mc/deps/core/http/HttpInterfaceInternal.h @@ -15,12 +15,6 @@ struct XAsyncBlock; namespace Bedrock::Http { class HttpInterfaceInternal : public ::Bedrock::Http::HttpInterface { -public: - // prevent constructor by default - HttpInterfaceInternal& operator=(HttpInterfaceInternal const&); - HttpInterfaceInternal(HttpInterfaceInternal const&); - HttpInterfaceInternal(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/deps/core/http/HttpUrlValidator.h b/src/mc/deps/core/http/HttpUrlValidator.h index a99399515d..ba7901549a 100644 --- a/src/mc/deps/core/http/HttpUrlValidator.h +++ b/src/mc/deps/core/http/HttpUrlValidator.h @@ -15,12 +15,6 @@ namespace Bedrock::Http { class Response; } namespace Bedrock::Http { class HttpUrlValidator : public ::Bedrock::Http::DispatcherProcess { -public: - // prevent constructor by default - HttpUrlValidator& operator=(HttpUrlValidator const&); - HttpUrlValidator(HttpUrlValidator const&); - HttpUrlValidator(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/deps/core/http/IRequestBody.h b/src/mc/deps/core/http/IRequestBody.h index e1140910e6..5198552692 100644 --- a/src/mc/deps/core/http/IRequestBody.h +++ b/src/mc/deps/core/http/IRequestBody.h @@ -27,12 +27,6 @@ class IRequestBody : public ::std::enable_shared_from_this<::Bedrock::Http::Inte ReadResult(); }; -public: - // prevent constructor by default - IRequestBody& operator=(IRequestBody const&); - IRequestBody(IRequestBody const&); - IRequestBody(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/deps/core/http/IResponseBody.h b/src/mc/deps/core/http/IResponseBody.h index d5701a28c9..7f4839f612 100644 --- a/src/mc/deps/core/http/IResponseBody.h +++ b/src/mc/deps/core/http/IResponseBody.h @@ -8,12 +8,6 @@ namespace Bedrock::Http::Internal { class IResponseBody { -public: - // prevent constructor by default - IResponseBody& operator=(IResponseBody const&); - IResponseBody(IResponseBody const&); - IResponseBody(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/deps/core/http/IgnoredResponseBody.h b/src/mc/deps/core/http/IgnoredResponseBody.h index fbb579563a..3f1fc3c76b 100644 --- a/src/mc/deps/core/http/IgnoredResponseBody.h +++ b/src/mc/deps/core/http/IgnoredResponseBody.h @@ -9,12 +9,6 @@ namespace Bedrock::Http { class IgnoredResponseBody : public ::Bedrock::Http::Internal::IResponseBody { -public: - // prevent constructor by default - IgnoredResponseBody& operator=(IgnoredResponseBody const&); - IgnoredResponseBody(IgnoredResponseBody const&); - IgnoredResponseBody(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/deps/core/http/LoggingInterface.h b/src/mc/deps/core/http/LoggingInterface.h index d20893a883..bbf19d86d9 100644 --- a/src/mc/deps/core/http/LoggingInterface.h +++ b/src/mc/deps/core/http/LoggingInterface.h @@ -8,12 +8,6 @@ namespace Bedrock::Http { class LoggingInterface : public ::Bedrock::ImplBase<::Bedrock::Http::LoggingInterface> { -public: - // prevent constructor by default - LoggingInterface& operator=(LoggingInterface const&); - LoggingInterface(LoggingInterface const&); - LoggingInterface(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/deps/core/http/LoggingInterfaceGeneric.h b/src/mc/deps/core/http/LoggingInterfaceGeneric.h index 7fc4f4088a..5079308ea1 100644 --- a/src/mc/deps/core/http/LoggingInterfaceGeneric.h +++ b/src/mc/deps/core/http/LoggingInterfaceGeneric.h @@ -9,12 +9,6 @@ namespace Bedrock::Http { class LoggingInterfaceGeneric : public ::Bedrock::Http::LoggingInterface { -public: - // prevent constructor by default - LoggingInterfaceGeneric& operator=(LoggingInterfaceGeneric const&); - LoggingInterfaceGeneric(LoggingInterfaceGeneric const&); - LoggingInterfaceGeneric(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/deps/core/http/Method.h b/src/mc/deps/core/http/Method.h index ed15c5bf95..e5f34fb61c 100644 --- a/src/mc/deps/core/http/Method.h +++ b/src/mc/deps/core/http/Method.h @@ -4,12 +4,6 @@ namespace Bedrock::Http { -struct Method { -public: - // prevent constructor by default - Method& operator=(Method const&); - Method(Method const&); - Method(); -}; +struct Method {}; } // namespace Bedrock::Http diff --git a/src/mc/deps/core/http/POST.h b/src/mc/deps/core/http/POST.h index 0195f95a2f..b170ae3ce1 100644 --- a/src/mc/deps/core/http/POST.h +++ b/src/mc/deps/core/http/POST.h @@ -5,12 +5,6 @@ namespace Bedrock::Http::MethodType { struct POST { -public: - // prevent constructor by default - POST& operator=(POST const&); - POST(POST const&); - POST(); - public: // static variables // NOLINTBEGIN diff --git a/src/mc/deps/core/http/PUT.h b/src/mc/deps/core/http/PUT.h index 45a6a0e9d9..e0dc6ed61c 100644 --- a/src/mc/deps/core/http/PUT.h +++ b/src/mc/deps/core/http/PUT.h @@ -5,12 +5,6 @@ namespace Bedrock::Http::MethodType { struct PUT { -public: - // prevent constructor by default - PUT& operator=(PUT const&); - PUT(PUT const&); - PUT(); - public: // static variables // NOLINTBEGIN diff --git a/src/mc/deps/core/http/StringRequestBody.h b/src/mc/deps/core/http/StringRequestBody.h index 11207096b1..da6c76394f 100644 --- a/src/mc/deps/core/http/StringRequestBody.h +++ b/src/mc/deps/core/http/StringRequestBody.h @@ -8,12 +8,6 @@ namespace Bedrock::Http { class StringRequestBody : public ::Bedrock::Http::BinaryRequestBody { -public: - // prevent constructor by default - StringRequestBody& operator=(StringRequestBody const&); - StringRequestBody(StringRequestBody const&); - StringRequestBody(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/deps/core/http/WebSocketInterface.h b/src/mc/deps/core/http/WebSocketInterface.h index 905e670c98..e49c0fa83d 100644 --- a/src/mc/deps/core/http/WebSocketInterface.h +++ b/src/mc/deps/core/http/WebSocketInterface.h @@ -15,12 +15,6 @@ struct XAsyncBlock; namespace Bedrock::Http { class WebSocketInterface : public ::Bedrock::ImplBase<::Bedrock::Http::WebSocketInterface> { -public: - // prevent constructor by default - WebSocketInterface& operator=(WebSocketInterface const&); - WebSocketInterface(WebSocketInterface const&); - WebSocketInterface(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/deps/core/http/WebSocketInterfaceInternal.h b/src/mc/deps/core/http/WebSocketInterfaceInternal.h index 35bd344d6f..06804c909e 100644 --- a/src/mc/deps/core/http/WebSocketInterfaceInternal.h +++ b/src/mc/deps/core/http/WebSocketInterfaceInternal.h @@ -16,12 +16,6 @@ struct XAsyncBlock; namespace Bedrock::Http { class WebSocketInterfaceInternal : public ::Bedrock::Http::WebSocketInterface { -public: - // prevent constructor by default - WebSocketInterfaceInternal& operator=(WebSocketInterfaceInternal const&); - WebSocketInterfaceInternal(WebSocketInterfaceInternal const&); - WebSocketInterfaceInternal(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/deps/core/http/win/HttpInterface_windows.h b/src/mc/deps/core/http/win/HttpInterface_windows.h index ae9f3ff96e..85e23f5768 100644 --- a/src/mc/deps/core/http/win/HttpInterface_windows.h +++ b/src/mc/deps/core/http/win/HttpInterface_windows.h @@ -8,12 +8,6 @@ namespace Bedrock::Http { class HttpInterface_windows : public ::Bedrock::Http::HttpInterfaceInternal { -public: - // prevent constructor by default - HttpInterface_windows& operator=(HttpInterface_windows const&); - HttpInterface_windows(HttpInterface_windows const&); - HttpInterface_windows(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/deps/core/http/win/WebSocketInterface_windows.h b/src/mc/deps/core/http/win/WebSocketInterface_windows.h index ce705870a6..b19f6658e5 100644 --- a/src/mc/deps/core/http/win/WebSocketInterface_windows.h +++ b/src/mc/deps/core/http/win/WebSocketInterface_windows.h @@ -8,12 +8,6 @@ namespace Bedrock::Http { class WebSocketInterface_windows : public ::Bedrock::Http::WebSocketInterfaceInternal { -public: - // prevent constructor by default - WebSocketInterface_windows& operator=(WebSocketInterface_windows const&); - WebSocketInterface_windows(WebSocketInterface_windows const&); - WebSocketInterface_windows(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/deps/core/islands/IIslandCore.h b/src/mc/deps/core/islands/IIslandCore.h index 4b8c4f90ed..7501223eb8 100644 --- a/src/mc/deps/core/islands/IIslandCore.h +++ b/src/mc/deps/core/islands/IIslandCore.h @@ -10,12 +10,6 @@ namespace Bedrock { class ActivationArguments; } namespace Bedrock { class IIslandCore { -public: - // prevent constructor by default - IIslandCore& operator=(IIslandCore const&); - IIslandCore(IIslandCore const&); - IIslandCore(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/deps/core/islands/IIslandManager.h b/src/mc/deps/core/islands/IIslandManager.h index 88be270e35..98c9cb98dd 100644 --- a/src/mc/deps/core/islands/IIslandManager.h +++ b/src/mc/deps/core/islands/IIslandManager.h @@ -11,12 +11,6 @@ namespace Bedrock { class IslandRegistrationInfo; } namespace Bedrock { class IIslandManager { -public: - // prevent constructor by default - IIslandManager& operator=(IIslandManager const&); - IIslandManager(IIslandManager const&); - IIslandManager(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/deps/core/islands/IIslandManagerLogger.h b/src/mc/deps/core/islands/IIslandManagerLogger.h index 92af60855f..939535e9dc 100644 --- a/src/mc/deps/core/islands/IIslandManagerLogger.h +++ b/src/mc/deps/core/islands/IIslandManagerLogger.h @@ -8,12 +8,6 @@ namespace Bedrock { class IIslandManagerLogger { -public: - // prevent constructor by default - IIslandManagerLogger& operator=(IIslandManagerLogger const&); - IIslandManagerLogger(IIslandManagerLogger const&); - IIslandManagerLogger(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/deps/core/math/Degree.h b/src/mc/deps/core/math/Degree.h index 0b0f2fced6..835ef925ff 100644 --- a/src/mc/deps/core/math/Degree.h +++ b/src/mc/deps/core/math/Degree.h @@ -15,12 +15,6 @@ struct Degree : public ::type_safe::strong_typedef<::mce::Degree, float>, public ::type_safe::strong_typedef_op::floating_point_arithmetic<::mce::Degree>, public ::type_safe::strong_typedef_op::input_operator<::mce::Degree>, public ::type_safe::strong_typedef_op::output_operator<::mce::Degree> { -public: - // prevent constructor by default - Degree& operator=(Degree const&); - Degree(Degree const&); - Degree(); - public: // member functions // NOLINTBEGIN diff --git a/src/mc/deps/core/math/Easing.h b/src/mc/deps/core/math/Easing.h index 6929446855..79fec22922 100644 --- a/src/mc/deps/core/math/Easing.h +++ b/src/mc/deps/core/math/Easing.h @@ -6,12 +6,6 @@ #include "mc/deps/core/math/EasingType.h" class Easing { -public: - // prevent constructor by default - Easing& operator=(Easing const&); - Easing(Easing const&); - Easing(); - public: // static functions // NOLINTBEGIN diff --git a/src/mc/deps/core/math/IRandom.h b/src/mc/deps/core/math/IRandom.h index 59ca23daeb..82595fb260 100644 --- a/src/mc/deps/core/math/IRandom.h +++ b/src/mc/deps/core/math/IRandom.h @@ -8,12 +8,6 @@ class IPositionalRandomFactory; // clang-format on class IRandom { -public: - // prevent constructor by default - IRandom& operator=(IRandom const&); - IRandom(IRandom const&); - IRandom(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/deps/core/math/IRandomSeeded.h b/src/mc/deps/core/math/IRandomSeeded.h index 71315a8043..aa95f1ee87 100644 --- a/src/mc/deps/core/math/IRandomSeeded.h +++ b/src/mc/deps/core/math/IRandomSeeded.h @@ -8,12 +8,6 @@ struct Seed128Bit; // clang-format on class IRandomSeeded { -public: - // prevent constructor by default - IRandomSeeded& operator=(IRandomSeeded const&); - IRandomSeeded(IRandomSeeded const&); - IRandomSeeded(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/deps/core/math/Math.h b/src/mc/deps/core/math/Math.h index 8c6c3a31b9..7f80a08f84 100644 --- a/src/mc/deps/core/math/Math.h +++ b/src/mc/deps/core/math/Math.h @@ -19,27 +19,9 @@ class Math { // clang-format on // Math inner types define - struct PairHash { - public: - // prevent constructor by default - PairHash& operator=(PairHash const&); - PairHash(PairHash const&); - PairHash(); - }; - - struct TupleHash { - public: - // prevent constructor by default - TupleHash& operator=(TupleHash const&); - TupleHash(TupleHash const&); - TupleHash(); - }; + struct PairHash {}; -public: - // prevent constructor by default - Math& operator=(Math const&); - Math(Math const&); - Math(); + struct TupleHash {}; public: // static functions diff --git a/src/mc/deps/core/math/MathUtility.h b/src/mc/deps/core/math/MathUtility.h index 886f85531d..92da10eec9 100644 --- a/src/mc/deps/core/math/MathUtility.h +++ b/src/mc/deps/core/math/MathUtility.h @@ -5,12 +5,6 @@ namespace mce { class MathUtility { -public: - // prevent constructor by default - MathUtility& operator=(MathUtility const&); - MathUtility(MathUtility const&); - MathUtility(); - public: // static functions // NOLINTBEGIN diff --git a/src/mc/deps/core/math/Radian.h b/src/mc/deps/core/math/Radian.h index ff305c74fd..a84e99f3ba 100644 --- a/src/mc/deps/core/math/Radian.h +++ b/src/mc/deps/core/math/Radian.h @@ -15,12 +15,6 @@ struct Radian : public ::type_safe::strong_typedef<::mce::Radian, float>, public ::type_safe::strong_typedef_op::floating_point_arithmetic<::mce::Radian>, public ::type_safe::strong_typedef_op::input_operator<::mce::Radian>, public ::type_safe::strong_typedef_op::output_operator<::mce::Radian> { -public: - // prevent constructor by default - Radian& operator=(Radian const&); - Radian(Radian const&); - Radian(); - public: // member functions // NOLINTBEGIN diff --git a/src/mc/deps/core/math/SimpleWeightedEntry.h b/src/mc/deps/core/math/SimpleWeightedEntry.h index ec1e6d8e9f..d0880f45f5 100644 --- a/src/mc/deps/core/math/SimpleWeightedEntry.h +++ b/src/mc/deps/core/math/SimpleWeightedEntry.h @@ -5,12 +5,6 @@ namespace Core { template -struct SimpleWeightedEntry { -public: - // prevent constructor by default - SimpleWeightedEntry& operator=(SimpleWeightedEntry const&); - SimpleWeightedEntry(SimpleWeightedEntry const&); - SimpleWeightedEntry(); -}; +struct SimpleWeightedEntry {}; } // namespace Core diff --git a/src/mc/deps/core/math/VecXZ.h b/src/mc/deps/core/math/VecXZ.h index a9227b1972..7c7bf44ce5 100644 --- a/src/mc/deps/core/math/VecXZ.h +++ b/src/mc/deps/core/math/VecXZ.h @@ -5,10 +5,4 @@ // auto generated inclusion list #include "mc/deps/core/math/Vec2.h" -class VecXZ : public ::Vec2 { -public: - // prevent constructor by default - VecXZ& operator=(VecXZ const&); - VecXZ(VecXZ const&); - VecXZ(); -}; +class VecXZ : public ::Vec2 {}; diff --git a/src/mc/deps/core/math/WeightedRandom.h b/src/mc/deps/core/math/WeightedRandom.h index 6e5d668b80..9a80234988 100644 --- a/src/mc/deps/core/math/WeightedRandom.h +++ b/src/mc/deps/core/math/WeightedRandom.h @@ -4,12 +4,6 @@ namespace Core { -class WeightedRandom { -public: - // prevent constructor by default - WeightedRandom& operator=(WeightedRandom const&); - WeightedRandom(WeightedRandom const&); - WeightedRandom(); -}; +class WeightedRandom {}; } // namespace Core diff --git a/src/mc/deps/core/memory/CpuRingBufferAllocation_Buffer.h b/src/mc/deps/core/memory/CpuRingBufferAllocation_Buffer.h index 106dba92be..e98f6f656e 100644 --- a/src/mc/deps/core/memory/CpuRingBufferAllocation_Buffer.h +++ b/src/mc/deps/core/memory/CpuRingBufferAllocation_Buffer.h @@ -25,12 +25,6 @@ class CpuRingBufferAllocation_Buffer { Buffer(Buffer const&); Buffer(); }; - -public: - // prevent constructor by default - CpuRingBufferAllocation_Buffer& operator=(CpuRingBufferAllocation_Buffer const&); - CpuRingBufferAllocation_Buffer(CpuRingBufferAllocation_Buffer const&); - CpuRingBufferAllocation_Buffer(); }; } // namespace Core diff --git a/src/mc/deps/core/memory/DefaultAllocator.h b/src/mc/deps/core/memory/DefaultAllocator.h index 2fdcab7bfd..1a2ec847c3 100644 --- a/src/mc/deps/core/memory/DefaultAllocator.h +++ b/src/mc/deps/core/memory/DefaultAllocator.h @@ -8,12 +8,6 @@ namespace Bedrock::Memory { class DefaultAllocator : public ::Bedrock::Memory::IMemoryAllocator { -public: - // prevent constructor by default - DefaultAllocator& operator=(DefaultAllocator const&); - DefaultAllocator(DefaultAllocator const&); - DefaultAllocator(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/deps/core/memory/IVirtualAllocator.h b/src/mc/deps/core/memory/IVirtualAllocator.h index 878a911252..0798fed1ec 100644 --- a/src/mc/deps/core/memory/IVirtualAllocator.h +++ b/src/mc/deps/core/memory/IVirtualAllocator.h @@ -45,12 +45,6 @@ class IVirtualAllocator { ReservationInfo(); }; -public: - // prevent constructor by default - IVirtualAllocator& operator=(IVirtualAllocator const&); - IVirtualAllocator(IVirtualAllocator const&); - IVirtualAllocator(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/deps/core/memory/MemoryStream.h b/src/mc/deps/core/memory/MemoryStream.h index 8e69092f8b..57a6041b5a 100644 --- a/src/mc/deps/core/memory/MemoryStream.h +++ b/src/mc/deps/core/memory/MemoryStream.h @@ -6,12 +6,6 @@ #include "mc/deps/core/memory/MemoryStreamBuffer.h" struct MemoryStream : public ::MemoryStreamBuffer, public ::std::istream, public virtual ::std::ios { -public: - // prevent constructor by default - MemoryStream& operator=(MemoryStream const&); - MemoryStream(MemoryStream const&); - MemoryStream(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/deps/core/minecraft/threading/EnableQueueForMainThread.h b/src/mc/deps/core/minecraft/threading/EnableQueueForMainThread.h index b4db558c05..604d478c29 100644 --- a/src/mc/deps/core/minecraft/threading/EnableQueueForMainThread.h +++ b/src/mc/deps/core/minecraft/threading/EnableQueueForMainThread.h @@ -9,12 +9,6 @@ namespace Bedrock::Threading { class EnableQueueForMainThread : public ::Bedrock::Threading::EnableQueueForThread { -public: - // prevent constructor by default - EnableQueueForMainThread& operator=(EnableQueueForMainThread const&); - EnableQueueForMainThread(EnableQueueForMainThread const&); - EnableQueueForMainThread(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/deps/core/minecraft/threading/MinecraftScheduler.h b/src/mc/deps/core/minecraft/threading/MinecraftScheduler.h index f9be563e62..62f3c60101 100644 --- a/src/mc/deps/core/minecraft/threading/MinecraftScheduler.h +++ b/src/mc/deps/core/minecraft/threading/MinecraftScheduler.h @@ -8,12 +8,6 @@ class Scheduler; // clang-format on class MinecraftScheduler { -public: - // prevent constructor by default - MinecraftScheduler& operator=(MinecraftScheduler const&); - MinecraftScheduler(MinecraftScheduler const&); - MinecraftScheduler(); - public: // static functions // NOLINTBEGIN diff --git a/src/mc/deps/core/minecraft/threading/MinecraftWorkerPool.h b/src/mc/deps/core/minecraft/threading/MinecraftWorkerPool.h index 17a0571f55..8c76b7b284 100644 --- a/src/mc/deps/core/minecraft/threading/MinecraftWorkerPool.h +++ b/src/mc/deps/core/minecraft/threading/MinecraftWorkerPool.h @@ -18,12 +18,6 @@ class MinecraftWorkerPool { ClientRenderServerCores = 1, }; -public: - // prevent constructor by default - MinecraftWorkerPool& operator=(MinecraftWorkerPool const&); - MinecraftWorkerPool(MinecraftWorkerPool const&); - MinecraftWorkerPool(); - public: // static functions // NOLINTBEGIN diff --git a/src/mc/deps/core/platform/Result.h b/src/mc/deps/core/platform/Result.h index d83cd7a8d7..174804c4d3 100644 --- a/src/mc/deps/core/platform/Result.h +++ b/src/mc/deps/core/platform/Result.h @@ -14,12 +14,6 @@ namespace Bedrock { class OSError; } namespace Core { class Result : public ::Bedrock::Result { -public: - // prevent constructor by default - Result& operator=(Result const&); - Result(Result const&); - Result(); - public: // member functions // NOLINTBEGIN diff --git a/src/mc/deps/core/platform/generic/file/FileSystem_generic.h b/src/mc/deps/core/platform/generic/file/FileSystem_generic.h index b95ff8e6f6..697ea6aae0 100644 --- a/src/mc/deps/core/platform/generic/file/FileSystem_generic.h +++ b/src/mc/deps/core/platform/generic/file/FileSystem_generic.h @@ -21,12 +21,6 @@ namespace Core { struct DirectoryIterationItem; } namespace Core { class FileSystem_generic : public ::Core::FileSystemImpl { -public: - // prevent constructor by default - FileSystem_generic& operator=(FileSystem_generic const&); - FileSystem_generic(FileSystem_generic const&); - FileSystem_generic(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/deps/core/platform/generic/file/TestMemoryFileSystem.h b/src/mc/deps/core/platform/generic/file/TestMemoryFileSystem.h index 0ec429d0a6..d922dfd1ed 100644 --- a/src/mc/deps/core/platform/generic/file/TestMemoryFileSystem.h +++ b/src/mc/deps/core/platform/generic/file/TestMemoryFileSystem.h @@ -15,12 +15,6 @@ namespace Core { class MemoryFileSystemEntryFile; } namespace Bedrock { class TestMemoryFileSystem : public ::Core::MemoryFileSystem { -public: - // prevent constructor by default - TestMemoryFileSystem& operator=(TestMemoryFileSystem const&); - TestMemoryFileSystem(TestMemoryFileSystem const&); - TestMemoryFileSystem(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/deps/core/platform/generic/file/TestMemoryStorageArea.h b/src/mc/deps/core/platform/generic/file/TestMemoryStorageArea.h index ab21ee4bb7..56df8d5fc2 100644 --- a/src/mc/deps/core/platform/generic/file/TestMemoryStorageArea.h +++ b/src/mc/deps/core/platform/generic/file/TestMemoryStorageArea.h @@ -15,12 +15,6 @@ namespace Core { class Result; } namespace Bedrock { class TestMemoryStorageArea : public ::Core::MemoryFileStorageArea { -public: - // prevent constructor by default - TestMemoryStorageArea& operator=(TestMemoryStorageArea const&); - TestMemoryStorageArea(TestMemoryStorageArea const&); - TestMemoryStorageArea(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/deps/core/platform/win/file/FileSystem_windows.h b/src/mc/deps/core/platform/win/file/FileSystem_windows.h index f5f4dfaaf5..7a2c9f458e 100644 --- a/src/mc/deps/core/platform/win/file/FileSystem_windows.h +++ b/src/mc/deps/core/platform/win/file/FileSystem_windows.h @@ -24,12 +24,6 @@ namespace Core { struct DirectoryIterationItem; } namespace Core { class FileSystem_windows : public ::Core::FileSystemImpl { -public: - // prevent constructor by default - FileSystem_windows& operator=(FileSystem_windows const&); - FileSystem_windows(FileSystem_windows const&); - FileSystem_windows(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/deps/core/platform/windows/memory/VirtualAllocator_windows.h b/src/mc/deps/core/platform/windows/memory/VirtualAllocator_windows.h index 7b291aa58c..6b356bf902 100644 --- a/src/mc/deps/core/platform/windows/memory/VirtualAllocator_windows.h +++ b/src/mc/deps/core/platform/windows/memory/VirtualAllocator_windows.h @@ -9,12 +9,6 @@ namespace Bedrock::Memory { class VirtualAllocator_windows : public ::Bedrock::Memory::IVirtualAllocator { -public: - // prevent constructor by default - VirtualAllocator_windows& operator=(VirtualAllocator_windows const&); - VirtualAllocator_windows(VirtualAllocator_windows const&); - VirtualAllocator_windows(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/deps/core/profiler/perf_metrics/Gauge.h b/src/mc/deps/core/profiler/perf_metrics/Gauge.h index 955e3a6fb2..37ec68efa1 100644 --- a/src/mc/deps/core/profiler/perf_metrics/Gauge.h +++ b/src/mc/deps/core/profiler/perf_metrics/Gauge.h @@ -7,12 +7,6 @@ namespace PerfMetrics { -class Gauge : public ::PerfMetrics::Counter { -public: - // prevent constructor by default - Gauge& operator=(Gauge const&); - Gauge(Gauge const&); - Gauge(); -}; +class Gauge : public ::PerfMetrics::Counter {}; } // namespace PerfMetrics diff --git a/src/mc/deps/core/renderer/RenderMaterialGroupBase.h b/src/mc/deps/core/renderer/RenderMaterialGroupBase.h index 6a990dc4a7..02fd298eb1 100644 --- a/src/mc/deps/core/renderer/RenderMaterialGroupBase.h +++ b/src/mc/deps/core/renderer/RenderMaterialGroupBase.h @@ -11,12 +11,6 @@ namespace mce { class RenderMaterialInfo; } namespace mce { class RenderMaterialGroupBase { -public: - // prevent constructor by default - RenderMaterialGroupBase& operator=(RenderMaterialGroupBase const&); - RenderMaterialGroupBase(RenderMaterialGroupBase const&); - RenderMaterialGroupBase(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/deps/core/resource/PackRenderCapabilitiesBitSet.h b/src/mc/deps/core/resource/PackRenderCapabilitiesBitSet.h index 6300288351..7bec7f79fc 100644 --- a/src/mc/deps/core/resource/PackRenderCapabilitiesBitSet.h +++ b/src/mc/deps/core/resource/PackRenderCapabilitiesBitSet.h @@ -6,10 +6,4 @@ #include "mc/deps/core/renderer/RenderCapability.h" #include "mc/deps/core/utility/EnumBitset.h" -class PackRenderCapabilitiesBitSet : public ::EnumBitset<::RenderCapability, 14> { -public: - // prevent constructor by default - PackRenderCapabilitiesBitSet& operator=(PackRenderCapabilitiesBitSet const&); - PackRenderCapabilitiesBitSet(PackRenderCapabilitiesBitSet const&); - PackRenderCapabilitiesBitSet(); -}; +class PackRenderCapabilitiesBitSet : public ::EnumBitset<::RenderCapability, 14> {}; diff --git a/src/mc/deps/core/resource/ResourceUtil.h b/src/mc/deps/core/resource/ResourceUtil.h index ba870f588d..f94cfbdd97 100644 --- a/src/mc/deps/core/resource/ResourceUtil.h +++ b/src/mc/deps/core/resource/ResourceUtil.h @@ -2,10 +2,4 @@ #include "mc/_HeaderOutputPredefine.h" -class ResourceUtil { -public: - // prevent constructor by default - ResourceUtil& operator=(ResourceUtil const&); - ResourceUtil(ResourceUtil const&); - ResourceUtil(); -}; +class ResourceUtil {}; diff --git a/src/mc/deps/core/secure_storage/FileSecureStorage.h b/src/mc/deps/core/secure_storage/FileSecureStorage.h index e90272b910..9b4640e9eb 100644 --- a/src/mc/deps/core/secure_storage/FileSecureStorage.h +++ b/src/mc/deps/core/secure_storage/FileSecureStorage.h @@ -24,12 +24,6 @@ class FileSecureStorage : public ::SecureStorage { // FileSecureStorage inner types define class StorageSystem { - public: - // prevent constructor by default - StorageSystem& operator=(StorageSystem const&); - StorageSystem(StorageSystem const&); - StorageSystem(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/deps/core/secure_storage/ISecureStorageKeySystem.h b/src/mc/deps/core/secure_storage/ISecureStorageKeySystem.h index 2220be24db..890da1b78c 100644 --- a/src/mc/deps/core/secure_storage/ISecureStorageKeySystem.h +++ b/src/mc/deps/core/secure_storage/ISecureStorageKeySystem.h @@ -8,12 +8,6 @@ class SecureStorageKey; // clang-format on class ISecureStorageKeySystem { -public: - // prevent constructor by default - ISecureStorageKeySystem& operator=(ISecureStorageKeySystem const&); - ISecureStorageKeySystem(ISecureStorageKeySystem const&); - ISecureStorageKeySystem(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/deps/core/secure_storage/NullSecureStorage.h b/src/mc/deps/core/secure_storage/NullSecureStorage.h index 3f2a3bf917..77dab63e27 100644 --- a/src/mc/deps/core/secure_storage/NullSecureStorage.h +++ b/src/mc/deps/core/secure_storage/NullSecureStorage.h @@ -6,12 +6,6 @@ #include "mc/deps/core/secure_storage/SecureStorage.h" class NullSecureStorage : public ::SecureStorage { -public: - // prevent constructor by default - NullSecureStorage& operator=(NullSecureStorage const&); - NullSecureStorage(NullSecureStorage const&); - NullSecureStorage(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/deps/core/signal/Signal.h b/src/mc/deps/core/signal/Signal.h index adbb76f851..097e917f8d 100644 --- a/src/mc/deps/core/signal/Signal.h +++ b/src/mc/deps/core/signal/Signal.h @@ -5,12 +5,6 @@ namespace Bedrock { template -class Signal { -public: - // prevent constructor by default - Signal& operator=(Signal const&); - Signal(Signal const&); - Signal(); -}; +class Signal {}; } // namespace Bedrock diff --git a/src/mc/deps/core/signal/SignalPublisher.h b/src/mc/deps/core/signal/SignalPublisher.h index 69ef8d3045..e366f406fe 100644 --- a/src/mc/deps/core/signal/SignalPublisher.h +++ b/src/mc/deps/core/signal/SignalPublisher.h @@ -11,12 +11,6 @@ namespace Bedrock::PubSub { class RawSubscription; } namespace Bedrock::Detail { class SignalPublisher { -public: - // prevent constructor by default - SignalPublisher& operator=(SignalPublisher const&); - SignalPublisher(SignalPublisher const&); - SignalPublisher(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/deps/core/sound/SoundItem.h b/src/mc/deps/core/sound/SoundItem.h index 1943c76cb5..373b5ce5ae 100644 --- a/src/mc/deps/core/sound/SoundItem.h +++ b/src/mc/deps/core/sound/SoundItem.h @@ -2,10 +2,4 @@ #include "mc/_HeaderOutputPredefine.h" -class SoundItem { -public: - // prevent constructor by default - SoundItem& operator=(SoundItem const&); - SoundItem(SoundItem const&); - SoundItem(); -}; +class SoundItem {}; diff --git a/src/mc/deps/core/sound/SoundPlayerInterface.h b/src/mc/deps/core/sound/SoundPlayerInterface.h index 2dadf2a2fd..f0ddd710cf 100644 --- a/src/mc/deps/core/sound/SoundPlayerInterface.h +++ b/src/mc/deps/core/sound/SoundPlayerInterface.h @@ -18,12 +18,6 @@ namespace Core { class Path; } // clang-format on class SoundPlayerInterface : public ::Bedrock::EnableNonOwnerReferences { -public: - // prevent constructor by default - SoundPlayerInterface& operator=(SoundPlayerInterface const&); - SoundPlayerInterface(SoundPlayerInterface const&); - SoundPlayerInterface(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/deps/core/string/BasicStackString.h b/src/mc/deps/core/string/BasicStackString.h index 090b85e302..ef1d6f7fff 100644 --- a/src/mc/deps/core/string/BasicStackString.h +++ b/src/mc/deps/core/string/BasicStackString.h @@ -5,12 +5,6 @@ namespace Core { template -class BasicStackString { -public: - // prevent constructor by default - BasicStackString& operator=(BasicStackString const&); - BasicStackString(BasicStackString const&); - BasicStackString(); -}; +class BasicStackString {}; } // namespace Core diff --git a/src/mc/deps/core/string/HashType64_hash.h b/src/mc/deps/core/string/HashType64_hash.h index 683a624023..c6698ca699 100644 --- a/src/mc/deps/core/string/HashType64_hash.h +++ b/src/mc/deps/core/string/HashType64_hash.h @@ -2,10 +2,4 @@ #include "mc/_HeaderOutputPredefine.h" -struct HashType64_hash { -public: - // prevent constructor by default - HashType64_hash& operator=(HashType64_hash const&); - HashType64_hash(HashType64_hash const&); - HashType64_hash(); -}; +struct HashType64_hash {}; diff --git a/src/mc/deps/core/string/StringConversions.h b/src/mc/deps/core/string/StringConversions.h index 89b35fce21..e87dd94e54 100644 --- a/src/mc/deps/core/string/StringConversions.h +++ b/src/mc/deps/core/string/StringConversions.h @@ -5,12 +5,6 @@ namespace Core { class StringConversions { -public: - // prevent constructor by default - StringConversions& operator=(StringConversions const&); - StringConversions(StringConversions const&); - StringConversions(); - public: // static functions // NOLINTBEGIN diff --git a/src/mc/deps/core/threading/AsyncBase.h b/src/mc/deps/core/threading/AsyncBase.h index a03778d8ac..0cb6690c86 100644 --- a/src/mc/deps/core/threading/AsyncBase.h +++ b/src/mc/deps/core/threading/AsyncBase.h @@ -4,12 +4,6 @@ namespace Bedrock::Threading { -class AsyncBase : public ::std::enable_shared_from_this<::Bedrock::Threading::AsyncBase> { -public: - // prevent constructor by default - AsyncBase& operator=(AsyncBase const&); - AsyncBase(AsyncBase const&); - AsyncBase(); -}; +class AsyncBase : public ::std::enable_shared_from_this<::Bedrock::Threading::AsyncBase> {}; } // namespace Bedrock::Threading diff --git a/src/mc/deps/core/threading/AsyncBlockInternalGuard.h b/src/mc/deps/core/threading/AsyncBlockInternalGuard.h index 82811f4a2e..934c28e5e3 100644 --- a/src/mc/deps/core/threading/AsyncBlockInternalGuard.h +++ b/src/mc/deps/core/threading/AsyncBlockInternalGuard.h @@ -8,12 +8,6 @@ struct XAsyncBlock; // clang-format on struct AsyncBlockInternalGuard { -public: - // prevent constructor by default - AsyncBlockInternalGuard& operator=(AsyncBlockInternalGuard const&); - AsyncBlockInternalGuard(AsyncBlockInternalGuard const&); - AsyncBlockInternalGuard(); - public: // member functions // NOLINTBEGIN diff --git a/src/mc/deps/core/threading/AsyncResultBase.h b/src/mc/deps/core/threading/AsyncResultBase.h index 81efe2cc12..16bdb909b1 100644 --- a/src/mc/deps/core/threading/AsyncResultBase.h +++ b/src/mc/deps/core/threading/AsyncResultBase.h @@ -5,12 +5,6 @@ namespace Bedrock::Threading { template -class AsyncResultBase { -public: - // prevent constructor by default - AsyncResultBase& operator=(AsyncResultBase const&); - AsyncResultBase(AsyncResultBase const&); - AsyncResultBase(); -}; +class AsyncResultBase {}; } // namespace Bedrock::Threading diff --git a/src/mc/deps/core/threading/AsyncState.h b/src/mc/deps/core/threading/AsyncState.h index 91cd44a278..b338ca51be 100644 --- a/src/mc/deps/core/threading/AsyncState.h +++ b/src/mc/deps/core/threading/AsyncState.h @@ -3,12 +3,6 @@ #include "mc/_HeaderOutputPredefine.h" struct AsyncState { -public: - // prevent constructor by default - AsyncState& operator=(AsyncState const&); - AsyncState(AsyncState const&); - AsyncState(); - public: // member functions // NOLINTBEGIN diff --git a/src/mc/deps/core/threading/AsyncStateRef.h b/src/mc/deps/core/threading/AsyncStateRef.h index ce2ed60d3b..379f7f32f9 100644 --- a/src/mc/deps/core/threading/AsyncStateRef.h +++ b/src/mc/deps/core/threading/AsyncStateRef.h @@ -3,12 +3,6 @@ #include "mc/_HeaderOutputPredefine.h" struct AsyncStateRef { -public: - // prevent constructor by default - AsyncStateRef& operator=(AsyncStateRef const&); - AsyncStateRef(AsyncStateRef const&); - AsyncStateRef(); - public: // member functions // NOLINTBEGIN diff --git a/src/mc/deps/core/threading/BackgroundTaskBase.h b/src/mc/deps/core/threading/BackgroundTaskBase.h index 97ee835a9b..394e32c82d 100644 --- a/src/mc/deps/core/threading/BackgroundTaskBase.h +++ b/src/mc/deps/core/threading/BackgroundTaskBase.h @@ -23,21 +23,9 @@ class BackgroundTaskBase { // clang-format on // BackgroundTaskBase inner types define - class PriorityComparer { - public: - // prevent constructor by default - PriorityComparer& operator=(PriorityComparer const&); - PriorityComparer(PriorityComparer const&); - PriorityComparer(); - }; + class PriorityComparer {}; class PendingComparer { - public: - // prevent constructor by default - PendingComparer& operator=(PendingComparer const&); - PendingComparer(PendingComparer const&); - PendingComparer(); - public: // member functions // NOLINTBEGIN diff --git a/src/mc/deps/core/threading/DefaultExecution.h b/src/mc/deps/core/threading/DefaultExecution.h index 4341accc4f..30287b870c 100644 --- a/src/mc/deps/core/threading/DefaultExecution.h +++ b/src/mc/deps/core/threading/DefaultExecution.h @@ -4,12 +4,6 @@ namespace Bedrock::Threading::Burst::Strategy::Execution { -class DefaultExecution { -public: - // prevent constructor by default - DefaultExecution& operator=(DefaultExecution const&); - DefaultExecution(DefaultExecution const&); - DefaultExecution(); -}; +class DefaultExecution {}; } // namespace Bedrock::Threading::Burst::Strategy::Execution diff --git a/src/mc/deps/core/threading/DeferredTasksManager.h b/src/mc/deps/core/threading/DeferredTasksManager.h index c25f3bd6e7..5b4ac7baa7 100644 --- a/src/mc/deps/core/threading/DeferredTasksManager.h +++ b/src/mc/deps/core/threading/DeferredTasksManager.h @@ -3,10 +3,4 @@ #include "mc/_HeaderOutputPredefine.h" template -class DeferredTasksManager { -public: - // prevent constructor by default - DeferredTasksManager& operator=(DeferredTasksManager const&); - DeferredTasksManager(DeferredTasksManager const&); - DeferredTasksManager(); -}; +class DeferredTasksManager {}; diff --git a/src/mc/deps/core/threading/GreedyExecution.h b/src/mc/deps/core/threading/GreedyExecution.h index cb6e6aded0..5e52d0b1f1 100644 --- a/src/mc/deps/core/threading/GreedyExecution.h +++ b/src/mc/deps/core/threading/GreedyExecution.h @@ -4,12 +4,6 @@ namespace Bedrock::Threading::Burst::Strategy::Execution { -class GreedyExecution { -public: - // prevent constructor by default - GreedyExecution& operator=(GreedyExecution const&); - GreedyExecution(GreedyExecution const&); - GreedyExecution(); -}; +class GreedyExecution {}; } // namespace Bedrock::Threading::Burst::Strategy::Execution diff --git a/src/mc/deps/core/threading/IAsyncInfo.h b/src/mc/deps/core/threading/IAsyncInfo.h index 923dfa1d11..fd60b34abb 100644 --- a/src/mc/deps/core/threading/IAsyncInfo.h +++ b/src/mc/deps/core/threading/IAsyncInfo.h @@ -8,12 +8,6 @@ namespace Bedrock::Threading { class IAsyncInfo { -public: - // prevent constructor by default - IAsyncInfo& operator=(IAsyncInfo const&); - IAsyncInfo(IAsyncInfo const&); - IAsyncInfo(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/deps/core/threading/IAsyncResult.h b/src/mc/deps/core/threading/IAsyncResult.h index 26e6456828..4f45387715 100644 --- a/src/mc/deps/core/threading/IAsyncResult.h +++ b/src/mc/deps/core/threading/IAsyncResult.h @@ -5,12 +5,6 @@ namespace Bedrock::Threading { template -class IAsyncResult { -public: - // prevent constructor by default - IAsyncResult& operator=(IAsyncResult const&); - IAsyncResult(IAsyncResult const&); - IAsyncResult(); -}; +class IAsyncResult {}; } // namespace Bedrock::Threading diff --git a/src/mc/deps/core/threading/IBackgroundTaskOwner.h b/src/mc/deps/core/threading/IBackgroundTaskOwner.h index e888d95c38..771aee4d2d 100644 --- a/src/mc/deps/core/threading/IBackgroundTaskOwner.h +++ b/src/mc/deps/core/threading/IBackgroundTaskOwner.h @@ -15,12 +15,6 @@ class TaskResult; // clang-format on class IBackgroundTaskOwner { -public: - // prevent constructor by default - IBackgroundTaskOwner& operator=(IBackgroundTaskOwner const&); - IBackgroundTaskOwner(IBackgroundTaskOwner const&); - IBackgroundTaskOwner(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/deps/core/threading/ITaskExecutionContext.h b/src/mc/deps/core/threading/ITaskExecutionContext.h index a7d1c79e57..7e8c3bd883 100644 --- a/src/mc/deps/core/threading/ITaskExecutionContext.h +++ b/src/mc/deps/core/threading/ITaskExecutionContext.h @@ -3,12 +3,6 @@ #include "mc/_HeaderOutputPredefine.h" class ITaskExecutionContext { -public: - // prevent constructor by default - ITaskExecutionContext& operator=(ITaskExecutionContext const&); - ITaskExecutionContext(ITaskExecutionContext const&); - ITaskExecutionContext(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/deps/core/threading/ITaskQueuePortContext.h b/src/mc/deps/core/threading/ITaskQueuePortContext.h index b4f79c2f69..82294311d8 100644 --- a/src/mc/deps/core/threading/ITaskQueuePortContext.h +++ b/src/mc/deps/core/threading/ITaskQueuePortContext.h @@ -2,10 +2,4 @@ #include "mc/_HeaderOutputPredefine.h" -struct ITaskQueuePortContext { -public: - // prevent constructor by default - ITaskQueuePortContext& operator=(ITaskQueuePortContext const&); - ITaskQueuePortContext(ITaskQueuePortContext const&); - ITaskQueuePortContext(); -}; +struct ITaskQueuePortContext {}; diff --git a/src/mc/deps/core/threading/InstancedThreadLocal.h b/src/mc/deps/core/threading/InstancedThreadLocal.h index af02970038..326e016924 100644 --- a/src/mc/deps/core/threading/InstancedThreadLocal.h +++ b/src/mc/deps/core/threading/InstancedThreadLocal.h @@ -5,12 +5,6 @@ namespace Bedrock::Threading { template -class InstancedThreadLocal { -public: - // prevent constructor by default - InstancedThreadLocal& operator=(InstancedThreadLocal const&); - InstancedThreadLocal(InstancedThreadLocal const&); - InstancedThreadLocal(); -}; +class InstancedThreadLocal {}; } // namespace Bedrock::Threading diff --git a/src/mc/deps/core/threading/InstancedThreadLocalBase.h b/src/mc/deps/core/threading/InstancedThreadLocalBase.h index 18e3bf50df..554966b681 100644 --- a/src/mc/deps/core/threading/InstancedThreadLocalBase.h +++ b/src/mc/deps/core/threading/InstancedThreadLocalBase.h @@ -4,12 +4,6 @@ namespace Bedrock::Threading { -class InstancedThreadLocalBase { -public: - // prevent constructor by default - InstancedThreadLocalBase& operator=(InstancedThreadLocalBase const&); - InstancedThreadLocalBase(InstancedThreadLocalBase const&); - InstancedThreadLocalBase(); -}; +class InstancedThreadLocalBase {}; } // namespace Bedrock::Threading diff --git a/src/mc/deps/core/threading/InternalTaskGroup.h b/src/mc/deps/core/threading/InternalTaskGroup.h index 20d4b83c69..e84bf5319e 100644 --- a/src/mc/deps/core/threading/InternalTaskGroup.h +++ b/src/mc/deps/core/threading/InternalTaskGroup.h @@ -16,12 +16,6 @@ class TaskResult; // clang-format on class InternalTaskGroup : public ::IBackgroundTaskOwner { -public: - // prevent constructor by default - InternalTaskGroup& operator=(InternalTaskGroup const&); - InternalTaskGroup(InternalTaskGroup const&); - InternalTaskGroup(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/deps/core/threading/LFBufferCache.h b/src/mc/deps/core/threading/LFBufferCache.h index 23b29246f9..2e8b6d32af 100644 --- a/src/mc/deps/core/threading/LFBufferCache.h +++ b/src/mc/deps/core/threading/LFBufferCache.h @@ -13,12 +13,6 @@ class LFBufferCache { // LFBufferCache inner types define class BufferAllocator { - public: - // prevent constructor by default - BufferAllocator& operator=(BufferAllocator const&); - BufferAllocator(BufferAllocator const&); - BufferAllocator(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/deps/core/threading/LocklessQueue.h b/src/mc/deps/core/threading/LocklessQueue.h index 76ea7f1df3..0b6b7aef13 100644 --- a/src/mc/deps/core/threading/LocklessQueue.h +++ b/src/mc/deps/core/threading/LocklessQueue.h @@ -3,10 +3,4 @@ #include "mc/_HeaderOutputPredefine.h" template -class LocklessQueue { -public: - // prevent constructor by default - LocklessQueue& operator=(LocklessQueue const&); - LocklessQueue(LocklessQueue const&); - LocklessQueue(); -}; +class LocklessQueue {}; diff --git a/src/mc/deps/core/threading/MPMCQueue.h b/src/mc/deps/core/threading/MPMCQueue.h index 8bc12fb65b..23d1d90853 100644 --- a/src/mc/deps/core/threading/MPMCQueue.h +++ b/src/mc/deps/core/threading/MPMCQueue.h @@ -3,10 +3,4 @@ #include "mc/_HeaderOutputPredefine.h" template -class MPMCQueue { -public: - // prevent constructor by default - MPMCQueue& operator=(MPMCQueue const&); - MPMCQueue(MPMCQueue const&); - MPMCQueue(); -}; +class MPMCQueue {}; diff --git a/src/mc/deps/core/threading/MPSCQueue.h b/src/mc/deps/core/threading/MPSCQueue.h index 3739b8875d..3d43e5c573 100644 --- a/src/mc/deps/core/threading/MPSCQueue.h +++ b/src/mc/deps/core/threading/MPSCQueue.h @@ -5,12 +5,6 @@ namespace Bedrock { template -class MPSCQueue { -public: - // prevent constructor by default - MPSCQueue& operator=(MPSCQueue const&); - MPSCQueue(MPSCQueue const&); - MPSCQueue(); -}; +class MPSCQueue {}; } // namespace Bedrock diff --git a/src/mc/deps/core/threading/SPSCQueue.h b/src/mc/deps/core/threading/SPSCQueue.h index d1b4005e3e..891c20485b 100644 --- a/src/mc/deps/core/threading/SPSCQueue.h +++ b/src/mc/deps/core/threading/SPSCQueue.h @@ -3,10 +3,4 @@ #include "mc/_HeaderOutputPredefine.h" template -class SPSCQueue { -public: - // prevent constructor by default - SPSCQueue& operator=(SPSCQueue const&); - SPSCQueue(SPSCQueue const&); - SPSCQueue(); -}; +class SPSCQueue {}; diff --git a/src/mc/deps/core/threading/ScopedAutoreleasePool.h b/src/mc/deps/core/threading/ScopedAutoreleasePool.h index bcd66f4209..3c0a4994e5 100644 --- a/src/mc/deps/core/threading/ScopedAutoreleasePool.h +++ b/src/mc/deps/core/threading/ScopedAutoreleasePool.h @@ -3,11 +3,6 @@ #include "mc/_HeaderOutputPredefine.h" class ScopedAutoreleasePool { -public: - // prevent constructor by default - ScopedAutoreleasePool& operator=(ScopedAutoreleasePool const&); - ScopedAutoreleasePool(ScopedAutoreleasePool const&); - public: // member functions // NOLINTBEGIN diff --git a/src/mc/deps/core/threading/SequenceLock.h b/src/mc/deps/core/threading/SequenceLock.h index 379f0358f6..216292c65a 100644 --- a/src/mc/deps/core/threading/SequenceLock.h +++ b/src/mc/deps/core/threading/SequenceLock.h @@ -27,13 +27,7 @@ class SequenceLock { SequenceId(); }; - class LockAlgorithm { - public: - // prevent constructor by default - LockAlgorithm& operator=(LockAlgorithm const&); - LockAlgorithm(LockAlgorithm const&); - LockAlgorithm(); - }; + class LockAlgorithm {}; public: // member variables diff --git a/src/mc/deps/core/threading/SharedLockbox.h b/src/mc/deps/core/threading/SharedLockbox.h index be6dfed0e6..3159cb98f1 100644 --- a/src/mc/deps/core/threading/SharedLockbox.h +++ b/src/mc/deps/core/threading/SharedLockbox.h @@ -5,12 +5,6 @@ namespace Bedrock::Threading { template -class SharedLockbox { -public: - // prevent constructor by default - SharedLockbox& operator=(SharedLockbox const&); - SharedLockbox(SharedLockbox const&); - SharedLockbox(); -}; +class SharedLockbox {}; } // namespace Bedrock::Threading diff --git a/src/mc/deps/core/threading/SubmitCallback.h b/src/mc/deps/core/threading/SubmitCallback.h index d4b9998012..1a3f52ce46 100644 --- a/src/mc/deps/core/threading/SubmitCallback.h +++ b/src/mc/deps/core/threading/SubmitCallback.h @@ -12,12 +12,6 @@ struct XTaskQueueRegistrationToken; // clang-format on struct SubmitCallback { -public: - // prevent constructor by default - SubmitCallback& operator=(SubmitCallback const&); - SubmitCallback(SubmitCallback const&); - SubmitCallback(); - public: // member functions // NOLINTBEGIN diff --git a/src/mc/deps/core/threading/TaskQueueImpl.h b/src/mc/deps/core/threading/TaskQueueImpl.h index 9ea03e88e0..8caf56b0f4 100644 --- a/src/mc/deps/core/threading/TaskQueueImpl.h +++ b/src/mc/deps/core/threading/TaskQueueImpl.h @@ -11,11 +11,6 @@ struct XTaskQueuePortObject; // clang-format on class TaskQueueImpl { -public: - // prevent constructor by default - TaskQueueImpl& operator=(TaskQueueImpl const&); - TaskQueueImpl(TaskQueueImpl const&); - public: // member functions // NOLINTBEGIN diff --git a/src/mc/deps/core/threading/TaskQueuePortImpl.h b/src/mc/deps/core/threading/TaskQueuePortImpl.h index 752b5ff5e9..62b7daae85 100644 --- a/src/mc/deps/core/threading/TaskQueuePortImpl.h +++ b/src/mc/deps/core/threading/TaskQueuePortImpl.h @@ -22,34 +22,11 @@ class TaskQueuePortImpl { // clang-format on // TaskQueuePortImpl inner types define - struct QueueEntry { - public: - // prevent constructor by default - QueueEntry& operator=(QueueEntry const&); - QueueEntry(QueueEntry const&); - QueueEntry(); - }; - - struct TerminationEntry { - public: - // prevent constructor by default - TerminationEntry& operator=(TerminationEntry const&); - TerminationEntry(TerminationEntry const&); - TerminationEntry(); - }; - - struct WaitRegistration { - public: - // prevent constructor by default - WaitRegistration& operator=(WaitRegistration const&); - WaitRegistration(WaitRegistration const&); - WaitRegistration(); - }; + struct QueueEntry {}; -public: - // prevent constructor by default - TaskQueuePortImpl& operator=(TaskQueuePortImpl const&); - TaskQueuePortImpl(TaskQueuePortImpl const&); + struct TerminationEntry {}; + + struct WaitRegistration {}; public: // member functions diff --git a/src/mc/deps/core/threading/TaskStartInfoEx.h b/src/mc/deps/core/threading/TaskStartInfoEx.h index 662fc272c3..493c29a822 100644 --- a/src/mc/deps/core/threading/TaskStartInfoEx.h +++ b/src/mc/deps/core/threading/TaskStartInfoEx.h @@ -3,10 +3,4 @@ #include "mc/_HeaderOutputPredefine.h" template -struct TaskStartInfoEx { -public: - // prevent constructor by default - TaskStartInfoEx& operator=(TaskStartInfoEx const&); - TaskStartInfoEx(TaskStartInfoEx const&); - TaskStartInfoEx(); -}; +struct TaskStartInfoEx {}; diff --git a/src/mc/deps/core/threading/WorkQueue.h b/src/mc/deps/core/threading/WorkQueue.h index 3c3d5fefb8..8dfe91fc6c 100644 --- a/src/mc/deps/core/threading/WorkQueue.h +++ b/src/mc/deps/core/threading/WorkQueue.h @@ -5,12 +5,6 @@ namespace Bedrock::Threading::Burst { template -class WorkQueue { -public: - // prevent constructor by default - WorkQueue& operator=(WorkQueue const&); - WorkQueue(WorkQueue const&); - WorkQueue(); -}; +class WorkQueue {}; } // namespace Bedrock::Threading::Burst diff --git a/src/mc/deps/core/threading/WorkerPoolHandleInterface.h b/src/mc/deps/core/threading/WorkerPoolHandleInterface.h index 6fa9053e80..079ebfdb28 100644 --- a/src/mc/deps/core/threading/WorkerPoolHandleInterface.h +++ b/src/mc/deps/core/threading/WorkerPoolHandleInterface.h @@ -13,12 +13,6 @@ class WorkerPool; namespace Bedrock { class WorkerPoolHandleInterface { -public: - // prevent constructor by default - WorkerPoolHandleInterface& operator=(WorkerPoolHandleInterface const&); - WorkerPoolHandleInterface(WorkerPoolHandleInterface const&); - WorkerPoolHandleInterface(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/deps/core/threading/WorkerPoolManager.h b/src/mc/deps/core/threading/WorkerPoolManager.h index cf7c037304..cfe56ddd1b 100644 --- a/src/mc/deps/core/threading/WorkerPoolManager.h +++ b/src/mc/deps/core/threading/WorkerPoolManager.h @@ -15,12 +15,6 @@ namespace Bedrock { class WorkerPoolManager : public ::Bedrock::EnableNonOwnerReferences, public ::Bedrock::ImplBase<::Bedrock::WorkerPoolManager> { -public: - // prevent constructor by default - WorkerPoolManager& operator=(WorkerPoolManager const&); - WorkerPoolManager(WorkerPoolManager const&); - WorkerPoolManager(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/deps/core/threading/XTaskQueueObject.h b/src/mc/deps/core/threading/XTaskQueueObject.h index c07c4ed616..f63098c82e 100644 --- a/src/mc/deps/core/threading/XTaskQueueObject.h +++ b/src/mc/deps/core/threading/XTaskQueueObject.h @@ -2,10 +2,4 @@ #include "mc/_HeaderOutputPredefine.h" -struct XTaskQueueObject { -public: - // prevent constructor by default - XTaskQueueObject& operator=(XTaskQueueObject const&); - XTaskQueueObject(XTaskQueueObject const&); - XTaskQueueObject(); -}; +struct XTaskQueueObject {}; diff --git a/src/mc/deps/core/threading/XTaskQueuePortObject.h b/src/mc/deps/core/threading/XTaskQueuePortObject.h index 1ba862c439..a4ff8c7d56 100644 --- a/src/mc/deps/core/threading/XTaskQueuePortObject.h +++ b/src/mc/deps/core/threading/XTaskQueuePortObject.h @@ -2,10 +2,4 @@ #include "mc/_HeaderOutputPredefine.h" -struct XTaskQueuePortObject { -public: - // prevent constructor by default - XTaskQueuePortObject& operator=(XTaskQueuePortObject const&); - XTaskQueuePortObject(XTaskQueuePortObject const&); - XTaskQueuePortObject(); -}; +struct XTaskQueuePortObject {}; diff --git a/src/mc/deps/core/threading/XTaskQueueRegistrationToken.h b/src/mc/deps/core/threading/XTaskQueueRegistrationToken.h index da87a2c58c..dd838865c2 100644 --- a/src/mc/deps/core/threading/XTaskQueueRegistrationToken.h +++ b/src/mc/deps/core/threading/XTaskQueueRegistrationToken.h @@ -2,10 +2,4 @@ #include "mc/_HeaderOutputPredefine.h" -struct XTaskQueueRegistrationToken { -public: - // prevent constructor by default - XTaskQueueRegistrationToken& operator=(XTaskQueueRegistrationToken const&); - XTaskQueueRegistrationToken(XTaskQueueRegistrationToken const&); - XTaskQueueRegistrationToken(); -}; +struct XTaskQueueRegistrationToken {}; diff --git a/src/mc/deps/core/timing/TimeStamp.h b/src/mc/deps/core/timing/TimeStamp.h index 1582b1b0b1..9ac5bb89b2 100644 --- a/src/mc/deps/core/timing/TimeStamp.h +++ b/src/mc/deps/core/timing/TimeStamp.h @@ -2,10 +2,4 @@ #include "mc/_HeaderOutputPredefine.h" -class TimeStamp { -public: - // prevent constructor by default - TimeStamp& operator=(TimeStamp const&); - TimeStamp(TimeStamp const&); - TimeStamp(); -}; +class TimeStamp {}; diff --git a/src/mc/deps/core/timing/launch_time_clock.h b/src/mc/deps/core/timing/launch_time_clock.h index cc2facaba7..8882fe4094 100644 --- a/src/mc/deps/core/timing/launch_time_clock.h +++ b/src/mc/deps/core/timing/launch_time_clock.h @@ -3,12 +3,6 @@ #include "mc/_HeaderOutputPredefine.h" class launch_time_clock { -public: - // prevent constructor by default - launch_time_clock& operator=(launch_time_clock const&); - launch_time_clock(launch_time_clock const&); - launch_time_clock(); - public: // static functions // NOLINTBEGIN diff --git a/src/mc/deps/core/utility/AutomaticID.h b/src/mc/deps/core/utility/AutomaticID.h index 7b590c4543..6c191fbc7b 100644 --- a/src/mc/deps/core/utility/AutomaticID.h +++ b/src/mc/deps/core/utility/AutomaticID.h @@ -3,10 +3,4 @@ #include "mc/_HeaderOutputPredefine.h" template -class AutomaticID { -public: - // prevent constructor by default - AutomaticID& operator=(AutomaticID const&); - AutomaticID(AutomaticID const&); - AutomaticID(); -}; +class AutomaticID {}; diff --git a/src/mc/deps/core/utility/CompareScheduledCallback.h b/src/mc/deps/core/utility/CompareScheduledCallback.h index 82bc235fec..67cedb22da 100644 --- a/src/mc/deps/core/utility/CompareScheduledCallback.h +++ b/src/mc/deps/core/utility/CompareScheduledCallback.h @@ -2,10 +2,4 @@ #include "mc/_HeaderOutputPredefine.h" -class CompareScheduledCallback { -public: - // prevent constructor by default - CompareScheduledCallback& operator=(CompareScheduledCallback const&); - CompareScheduledCallback(CompareScheduledCallback const&); - CompareScheduledCallback(); -}; +class CompareScheduledCallback {}; diff --git a/src/mc/deps/core/utility/CrashDumpFormatEntryImpl.h b/src/mc/deps/core/utility/CrashDumpFormatEntryImpl.h index 727bf91eaf..1d2420df24 100644 --- a/src/mc/deps/core/utility/CrashDumpFormatEntryImpl.h +++ b/src/mc/deps/core/utility/CrashDumpFormatEntryImpl.h @@ -5,10 +5,4 @@ // auto generated inclusion list #include "mc/deps/core/utility/CrashDumpLogFieldFormat.h" -struct CrashDumpFormatEntryImpl : public ::CrashDumpLogFieldFormat { -public: - // prevent constructor by default - CrashDumpFormatEntryImpl& operator=(CrashDumpFormatEntryImpl const&); - CrashDumpFormatEntryImpl(CrashDumpFormatEntryImpl const&); - CrashDumpFormatEntryImpl(); -}; +struct CrashDumpFormatEntryImpl : public ::CrashDumpLogFieldFormat {}; diff --git a/src/mc/deps/core/utility/CrashDumpLog.h b/src/mc/deps/core/utility/CrashDumpLog.h index 186edc3910..8391cf709b 100644 --- a/src/mc/deps/core/utility/CrashDumpLog.h +++ b/src/mc/deps/core/utility/CrashDumpLog.h @@ -12,12 +12,6 @@ namespace Bedrock::Threading { class Mutex; } // clang-format on class CrashDumpLog { -public: - // prevent constructor by default - CrashDumpLog& operator=(CrashDumpLog const&); - CrashDumpLog(CrashDumpLog const&); - CrashDumpLog(); - public: // static functions // NOLINTBEGIN diff --git a/src/mc/deps/core/utility/CrashDumpLogSectionHeaderImpl.h b/src/mc/deps/core/utility/CrashDumpLogSectionHeaderImpl.h index d2da74d2a8..6b7664f40b 100644 --- a/src/mc/deps/core/utility/CrashDumpLogSectionHeaderImpl.h +++ b/src/mc/deps/core/utility/CrashDumpLogSectionHeaderImpl.h @@ -5,10 +5,4 @@ // auto generated inclusion list #include "mc/deps/core/utility/CrashDumpLogSectionHeader.h" -struct CrashDumpLogSectionHeaderImpl : public ::CrashDumpLogSectionHeader { -public: - // prevent constructor by default - CrashDumpLogSectionHeaderImpl& operator=(CrashDumpLogSectionHeaderImpl const&); - CrashDumpLogSectionHeaderImpl(CrashDumpLogSectionHeaderImpl const&); - CrashDumpLogSectionHeaderImpl(); -}; +struct CrashDumpLogSectionHeaderImpl : public ::CrashDumpLogSectionHeader {}; diff --git a/src/mc/deps/core/utility/CrashDumpLogUtils.h b/src/mc/deps/core/utility/CrashDumpLogUtils.h index 86e5a1f86b..d293f42264 100644 --- a/src/mc/deps/core/utility/CrashDumpLogUtils.h +++ b/src/mc/deps/core/utility/CrashDumpLogUtils.h @@ -6,12 +6,6 @@ #include "mc/deps/core/utility/CrashDumpLogStringID.h" struct CrashDumpLogUtils { -public: - // prevent constructor by default - CrashDumpLogUtils& operator=(CrashDumpLogUtils const&); - CrashDumpLogUtils(CrashDumpLogUtils const&); - CrashDumpLogUtils(); - public: // static functions // NOLINTBEGIN diff --git a/src/mc/deps/core/utility/DisableServiceLocatorOverride.h b/src/mc/deps/core/utility/DisableServiceLocatorOverride.h index 505c6901e7..f276ee7e77 100644 --- a/src/mc/deps/core/utility/DisableServiceLocatorOverride.h +++ b/src/mc/deps/core/utility/DisableServiceLocatorOverride.h @@ -2,10 +2,4 @@ #include "mc/_HeaderOutputPredefine.h" -class DisableServiceLocatorOverride { -public: - // prevent constructor by default - DisableServiceLocatorOverride& operator=(DisableServiceLocatorOverride const&); - DisableServiceLocatorOverride(DisableServiceLocatorOverride const&); - DisableServiceLocatorOverride(); -}; +class DisableServiceLocatorOverride {}; diff --git a/src/mc/deps/core/utility/EnumBitset.h b/src/mc/deps/core/utility/EnumBitset.h index 1ef4096e03..11444657f1 100644 --- a/src/mc/deps/core/utility/EnumBitset.h +++ b/src/mc/deps/core/utility/EnumBitset.h @@ -3,10 +3,4 @@ #include "mc/_HeaderOutputPredefine.h" template -class EnumBitset { -public: - // prevent constructor by default - EnumBitset& operator=(EnumBitset const&); - EnumBitset(EnumBitset const&); - EnumBitset(); -}; +class EnumBitset {}; diff --git a/src/mc/deps/core/utility/ImplCtor.h b/src/mc/deps/core/utility/ImplCtor.h index 1aae5579c3..31c4b37923 100644 --- a/src/mc/deps/core/utility/ImplCtor.h +++ b/src/mc/deps/core/utility/ImplCtor.h @@ -4,12 +4,6 @@ namespace Bedrock { -struct ImplCtor { -public: - // prevent constructor by default - ImplCtor& operator=(ImplCtor const&); - ImplCtor(ImplCtor const&); - ImplCtor(); -}; +struct ImplCtor {}; } // namespace Bedrock diff --git a/src/mc/deps/core/utility/NonOwnerPointer.h b/src/mc/deps/core/utility/NonOwnerPointer.h index a6e75693a9..e632d19581 100644 --- a/src/mc/deps/core/utility/NonOwnerPointer.h +++ b/src/mc/deps/core/utility/NonOwnerPointer.h @@ -5,12 +5,6 @@ namespace Bedrock { template -class NonOwnerPointer { -public: - // prevent constructor by default - NonOwnerPointer& operator=(NonOwnerPointer const&); - NonOwnerPointer(NonOwnerPointer const&); - NonOwnerPointer(); -}; +class NonOwnerPointer {}; } // namespace Bedrock diff --git a/src/mc/deps/core/utility/Observer.h b/src/mc/deps/core/utility/Observer.h index 7af5c91eca..120e380d9f 100644 --- a/src/mc/deps/core/utility/Observer.h +++ b/src/mc/deps/core/utility/Observer.h @@ -5,12 +5,6 @@ namespace Core { template -class Observer { -public: - // prevent constructor by default - Observer& operator=(Observer const&); - Observer(Observer const&); - Observer(); -}; +class Observer {}; } // namespace Core diff --git a/src/mc/deps/core/utility/PDFError.h b/src/mc/deps/core/utility/PDFError.h index 2d83f0954d..5717b6862c 100644 --- a/src/mc/deps/core/utility/PDFError.h +++ b/src/mc/deps/core/utility/PDFError.h @@ -2,10 +2,4 @@ #include "mc/_HeaderOutputPredefine.h" -struct PDFError { -public: - // prevent constructor by default - PDFError& operator=(PDFError const&); - PDFError(PDFError const&); - PDFError(); -}; +struct PDFError {}; diff --git a/src/mc/deps/core/utility/PDFWriter.h b/src/mc/deps/core/utility/PDFWriter.h index 61c082fe02..4359da15a6 100644 --- a/src/mc/deps/core/utility/PDFWriter.h +++ b/src/mc/deps/core/utility/PDFWriter.h @@ -9,12 +9,6 @@ struct PDFOptions; // clang-format on class PDFWriter : public ::std::enable_shared_from_this<::PDFWriter> { -public: - // prevent constructor by default - PDFWriter& operator=(PDFWriter const&); - PDFWriter(PDFWriter const&); - PDFWriter(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/deps/core/utility/ServiceReference.h b/src/mc/deps/core/utility/ServiceReference.h index b23cca2248..f36a1d1715 100644 --- a/src/mc/deps/core/utility/ServiceReference.h +++ b/src/mc/deps/core/utility/ServiceReference.h @@ -3,10 +3,4 @@ #include "mc/_HeaderOutputPredefine.h" template -class ServiceReference { -public: - // prevent constructor by default - ServiceReference& operator=(ServiceReference const&); - ServiceReference(ServiceReference const&); - ServiceReference(); -}; +class ServiceReference {}; diff --git a/src/mc/deps/core/utility/ServiceRegistrationToken.h b/src/mc/deps/core/utility/ServiceRegistrationToken.h index 1071e025ac..3518896d0c 100644 --- a/src/mc/deps/core/utility/ServiceRegistrationToken.h +++ b/src/mc/deps/core/utility/ServiceRegistrationToken.h @@ -3,10 +3,4 @@ #include "mc/_HeaderOutputPredefine.h" template -class ServiceRegistrationToken { -public: - // prevent constructor by default - ServiceRegistrationToken& operator=(ServiceRegistrationToken const&); - ServiceRegistrationToken(ServiceRegistrationToken const&); - ServiceRegistrationToken(); -}; +class ServiceRegistrationToken {}; diff --git a/src/mc/deps/core/utility/SingleThreadedLock.h b/src/mc/deps/core/utility/SingleThreadedLock.h index a882d32c89..f1c595b5c8 100644 --- a/src/mc/deps/core/utility/SingleThreadedLock.h +++ b/src/mc/deps/core/utility/SingleThreadedLock.h @@ -4,12 +4,6 @@ namespace Core { -class SingleThreadedLock { -public: - // prevent constructor by default - SingleThreadedLock& operator=(SingleThreadedLock const&); - SingleThreadedLock(SingleThreadedLock const&); - SingleThreadedLock(); -}; +class SingleThreadedLock {}; } // namespace Core diff --git a/src/mc/deps/core/utility/StringStorageTraits.h b/src/mc/deps/core/utility/StringStorageTraits.h index b4f69d2a89..15dfa72589 100644 --- a/src/mc/deps/core/utility/StringStorageTraits.h +++ b/src/mc/deps/core/utility/StringStorageTraits.h @@ -4,12 +4,6 @@ namespace Util::Detail { -class StringStorageTraits { -public: - // prevent constructor by default - StringStorageTraits& operator=(StringStorageTraits const&); - StringStorageTraits(StringStorageTraits const&); - StringStorageTraits(); -}; +class StringStorageTraits {}; } // namespace Util::Detail diff --git a/src/mc/deps/core/utility/Subject.h b/src/mc/deps/core/utility/Subject.h index ffbf825e6c..0f3967a387 100644 --- a/src/mc/deps/core/utility/Subject.h +++ b/src/mc/deps/core/utility/Subject.h @@ -5,12 +5,6 @@ namespace Core { template -class Subject { -public: - // prevent constructor by default - Subject& operator=(Subject const&); - Subject(Subject const&); - Subject(); -}; +class Subject {}; } // namespace Core diff --git a/src/mc/deps/core/utility/UniqueOwnerPointer.h b/src/mc/deps/core/utility/UniqueOwnerPointer.h index 921cd8fdf8..1f05ea3d0a 100644 --- a/src/mc/deps/core/utility/UniqueOwnerPointer.h +++ b/src/mc/deps/core/utility/UniqueOwnerPointer.h @@ -5,12 +5,6 @@ namespace Bedrock { template -class UniqueOwnerPointer { -public: - // prevent constructor by default - UniqueOwnerPointer& operator=(UniqueOwnerPointer const&); - UniqueOwnerPointer(UniqueOwnerPointer const&); - UniqueOwnerPointer(); -}; +class UniqueOwnerPointer {}; } // namespace Bedrock diff --git a/src/mc/deps/core/utility/UniquePtrStorageTraits.h b/src/mc/deps/core/utility/UniquePtrStorageTraits.h index 78536c04d2..022c0ce140 100644 --- a/src/mc/deps/core/utility/UniquePtrStorageTraits.h +++ b/src/mc/deps/core/utility/UniquePtrStorageTraits.h @@ -9,12 +9,6 @@ namespace Util { struct FormattedString; } namespace Util::Detail { -class UniquePtrStorageTraits { -public: - // prevent constructor by default - UniquePtrStorageTraits& operator=(UniquePtrStorageTraits const&); - UniquePtrStorageTraits(UniquePtrStorageTraits const&); - UniquePtrStorageTraits(); -}; +class UniquePtrStorageTraits {}; } // namespace Util::Detail diff --git a/src/mc/deps/core/utility/buffer_span.h b/src/mc/deps/core/utility/buffer_span.h index 85a5e80838..e6cdbf2402 100644 --- a/src/mc/deps/core/utility/buffer_span.h +++ b/src/mc/deps/core/utility/buffer_span.h @@ -3,10 +3,4 @@ #include "mc/_HeaderOutputPredefine.h" template -class buffer_span { -public: - // prevent constructor by default - buffer_span& operator=(buffer_span const&); - buffer_span(buffer_span const&); - buffer_span(); -}; +class buffer_span {}; diff --git a/src/mc/deps/core/utility/json_object/ArrayNode.h b/src/mc/deps/core/utility/json_object/ArrayNode.h index 8ed5434ca0..fbf4a8603b 100644 --- a/src/mc/deps/core/utility/json_object/ArrayNode.h +++ b/src/mc/deps/core/utility/json_object/ArrayNode.h @@ -22,19 +22,7 @@ class ArrayNode : public ::Bedrock::JSONObject::Node, public ::Bedrock::JSONObje // ArrayNode inner types define template - class iterator_base { - public: - // prevent constructor by default - iterator_base& operator=(iterator_base const&); - iterator_base(iterator_base const&); - iterator_base(); - }; - -public: - // prevent constructor by default - ArrayNode& operator=(ArrayNode const&); - ArrayNode(ArrayNode const&); - ArrayNode(); + class iterator_base {}; public: // member functions diff --git a/src/mc/deps/core/utility/json_object/BooleanNode.h b/src/mc/deps/core/utility/json_object/BooleanNode.h index 1610b60ce0..a6654212cb 100644 --- a/src/mc/deps/core/utility/json_object/BooleanNode.h +++ b/src/mc/deps/core/utility/json_object/BooleanNode.h @@ -7,12 +7,6 @@ namespace Bedrock::JSONObject { -class BooleanNode : public ::Bedrock::JSONObject::Node { -public: - // prevent constructor by default - BooleanNode& operator=(BooleanNode const&); - BooleanNode(BooleanNode const&); - BooleanNode(); -}; +class BooleanNode : public ::Bedrock::JSONObject::Node {}; } // namespace Bedrock::JSONObject diff --git a/src/mc/deps/core/utility/json_object/MutableObjectHelper.h b/src/mc/deps/core/utility/json_object/MutableObjectHelper.h index 328ceb56ca..4b584058ba 100644 --- a/src/mc/deps/core/utility/json_object/MutableObjectHelper.h +++ b/src/mc/deps/core/utility/json_object/MutableObjectHelper.h @@ -14,11 +14,6 @@ namespace Bedrock::JSONObject { class ValueWrapper; } namespace Bedrock::JSONObject { class MutableObjectHelper : public ::Bedrock::JSONObject::ObjectHelperBase<0> { -public: - // prevent constructor by default - MutableObjectHelper& operator=(MutableObjectHelper const&); - MutableObjectHelper(MutableObjectHelper const&); - public: // member functions // NOLINTBEGIN diff --git a/src/mc/deps/core/utility/json_object/Node.h b/src/mc/deps/core/utility/json_object/Node.h index a825f06a62..5845e7e6ae 100644 --- a/src/mc/deps/core/utility/json_object/Node.h +++ b/src/mc/deps/core/utility/json_object/Node.h @@ -14,12 +14,6 @@ namespace Bedrock::JSONObject { class ValueWrapper; } namespace Bedrock::JSONObject { class Node : public ::Bedrock::JSONObject::NodeBase { -public: - // prevent constructor by default - Node& operator=(Node const&); - Node(Node const&); - Node(); - public: // member functions // NOLINTBEGIN diff --git a/src/mc/deps/core/utility/json_object/NullNode.h b/src/mc/deps/core/utility/json_object/NullNode.h index 0361f04e5e..fd452edeca 100644 --- a/src/mc/deps/core/utility/json_object/NullNode.h +++ b/src/mc/deps/core/utility/json_object/NullNode.h @@ -7,12 +7,6 @@ namespace Bedrock::JSONObject { -class NullNode : public ::Bedrock::JSONObject::Node { -public: - // prevent constructor by default - NullNode& operator=(NullNode const&); - NullNode(NullNode const&); - NullNode(); -}; +class NullNode : public ::Bedrock::JSONObject::Node {}; } // namespace Bedrock::JSONObject diff --git a/src/mc/deps/core/utility/json_object/ObjectHelper.h b/src/mc/deps/core/utility/json_object/ObjectHelper.h index a7b5ab1119..cc9041abc5 100644 --- a/src/mc/deps/core/utility/json_object/ObjectHelper.h +++ b/src/mc/deps/core/utility/json_object/ObjectHelper.h @@ -12,12 +12,6 @@ namespace Bedrock::JSONObject { class Node; } namespace Bedrock::JSONObject { -class ObjectHelper : public ::Bedrock::JSONObject::ObjectHelperBase<1> { -public: - // prevent constructor by default - ObjectHelper& operator=(ObjectHelper const&); - ObjectHelper(ObjectHelper const&); - ObjectHelper(); -}; +class ObjectHelper : public ::Bedrock::JSONObject::ObjectHelperBase<1> {}; } // namespace Bedrock::JSONObject diff --git a/src/mc/deps/core/utility/json_object/ObjectHelperBase.h b/src/mc/deps/core/utility/json_object/ObjectHelperBase.h index 31bc55789a..84b9883c70 100644 --- a/src/mc/deps/core/utility/json_object/ObjectHelperBase.h +++ b/src/mc/deps/core/utility/json_object/ObjectHelperBase.h @@ -5,12 +5,6 @@ namespace Bedrock::JSONObject { template -class ObjectHelperBase { -public: - // prevent constructor by default - ObjectHelperBase& operator=(ObjectHelperBase const&); - ObjectHelperBase(ObjectHelperBase const&); - ObjectHelperBase(); -}; +class ObjectHelperBase {}; } // namespace Bedrock::JSONObject diff --git a/src/mc/deps/core/utility/json_object/ObjectNode.h b/src/mc/deps/core/utility/json_object/ObjectNode.h index f1ff96b19e..bcbea9318c 100644 --- a/src/mc/deps/core/utility/json_object/ObjectNode.h +++ b/src/mc/deps/core/utility/json_object/ObjectNode.h @@ -23,19 +23,7 @@ class ObjectNode : public ::Bedrock::JSONObject::Node, public ::Bedrock::JSONObj // ObjectNode inner types define template - class iterator_base { - public: - // prevent constructor by default - iterator_base& operator=(iterator_base const&); - iterator_base(iterator_base const&); - iterator_base(); - }; - -public: - // prevent constructor by default - ObjectNode& operator=(ObjectNode const&); - ObjectNode(ObjectNode const&); - ObjectNode(); + class iterator_base {}; public: // member functions diff --git a/src/mc/deps/core/utility/json_utils/JsonParseState.h b/src/mc/deps/core/utility/json_utils/JsonParseState.h index c569896785..1bd6530be6 100644 --- a/src/mc/deps/core/utility/json_utils/JsonParseState.h +++ b/src/mc/deps/core/utility/json_utils/JsonParseState.h @@ -5,12 +5,6 @@ namespace JsonUtil { template -class JsonParseState { -public: - // prevent constructor by default - JsonParseState& operator=(JsonParseState const&); - JsonParseState(JsonParseState const&); - JsonParseState(); -}; +class JsonParseState {}; } // namespace JsonUtil diff --git a/src/mc/deps/core/utility/json_utils/JsonSchemaObjectNode.h b/src/mc/deps/core/utility/json_utils/JsonSchemaObjectNode.h index edcdad0c86..992df1ea16 100644 --- a/src/mc/deps/core/utility/json_utils/JsonSchemaObjectNode.h +++ b/src/mc/deps/core/utility/json_utils/JsonSchemaObjectNode.h @@ -5,12 +5,6 @@ namespace JsonUtil { template -class JsonSchemaObjectNode { -public: - // prevent constructor by default - JsonSchemaObjectNode& operator=(JsonSchemaObjectNode const&); - JsonSchemaObjectNode(JsonSchemaObjectNode const&); - JsonSchemaObjectNode(); -}; +class JsonSchemaObjectNode {}; } // namespace JsonUtil diff --git a/src/mc/deps/core/utility/optional_ref.h b/src/mc/deps/core/utility/optional_ref.h index 4df5cb2626..a8fec7aef8 100644 --- a/src/mc/deps/core/utility/optional_ref.h +++ b/src/mc/deps/core/utility/optional_ref.h @@ -3,10 +3,4 @@ #include "mc/_HeaderOutputPredefine.h" template -class optional_ref { -public: - // prevent constructor by default - optional_ref& operator=(optional_ref const&); - optional_ref(optional_ref const&); - optional_ref(); -}; +class optional_ref {}; diff --git a/src/mc/deps/core/utility/pub_sub/Connector.h b/src/mc/deps/core/utility/pub_sub/Connector.h index 9aaf1cad36..e50c449f52 100644 --- a/src/mc/deps/core/utility/pub_sub/Connector.h +++ b/src/mc/deps/core/utility/pub_sub/Connector.h @@ -5,12 +5,6 @@ namespace Bedrock::PubSub { template -class Connector { -public: - // prevent constructor by default - Connector& operator=(Connector const&); - Connector(Connector const&); - Connector(); -}; +class Connector {}; } // namespace Bedrock::PubSub diff --git a/src/mc/deps/core/utility/pub_sub/DeferredPublisher.h b/src/mc/deps/core/utility/pub_sub/DeferredPublisher.h index 8adb083fbb..2e3e1891cd 100644 --- a/src/mc/deps/core/utility/pub_sub/DeferredPublisher.h +++ b/src/mc/deps/core/utility/pub_sub/DeferredPublisher.h @@ -5,12 +5,6 @@ namespace Bedrock::PubSub { template -class DeferredPublisher { -public: - // prevent constructor by default - DeferredPublisher& operator=(DeferredPublisher const&); - DeferredPublisher(DeferredPublisher const&); - DeferredPublisher(); -}; +class DeferredPublisher {}; } // namespace Bedrock::PubSub diff --git a/src/mc/deps/core/utility/pub_sub/DeferredSubscription.h b/src/mc/deps/core/utility/pub_sub/DeferredSubscription.h index 5f4d2d0b9c..8eb627b75f 100644 --- a/src/mc/deps/core/utility/pub_sub/DeferredSubscription.h +++ b/src/mc/deps/core/utility/pub_sub/DeferredSubscription.h @@ -7,12 +7,6 @@ namespace Bedrock::PubSub { -class DeferredSubscription : public ::Bedrock::PubSub::SubscriptionBase { -public: - // prevent constructor by default - DeferredSubscription& operator=(DeferredSubscription const&); - DeferredSubscription(DeferredSubscription const&); - DeferredSubscription(); -}; +class DeferredSubscription : public ::Bedrock::PubSub::SubscriptionBase {}; } // namespace Bedrock::PubSub diff --git a/src/mc/deps/core/utility/pub_sub/DeferredSubscriptionHub.h b/src/mc/deps/core/utility/pub_sub/DeferredSubscriptionHub.h index d73b8e4485..51a830c87d 100644 --- a/src/mc/deps/core/utility/pub_sub/DeferredSubscriptionHub.h +++ b/src/mc/deps/core/utility/pub_sub/DeferredSubscriptionHub.h @@ -22,12 +22,6 @@ class DeferredSubscriptionHub { RecursiveFIFO = 2, }; -public: - // prevent constructor by default - DeferredSubscriptionHub& operator=(DeferredSubscriptionHub const&); - DeferredSubscriptionHub(DeferredSubscriptionHub const&); - DeferredSubscriptionHub(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/deps/core/utility/pub_sub/Publisher.h b/src/mc/deps/core/utility/pub_sub/Publisher.h index 33437901f8..54d39bed04 100644 --- a/src/mc/deps/core/utility/pub_sub/Publisher.h +++ b/src/mc/deps/core/utility/pub_sub/Publisher.h @@ -5,12 +5,6 @@ namespace Bedrock::PubSub { template -class Publisher { -public: - // prevent constructor by default - Publisher& operator=(Publisher const&); - Publisher(Publisher const&); - Publisher(); -}; +class Publisher {}; } // namespace Bedrock::PubSub diff --git a/src/mc/deps/core/utility/pub_sub/RawSubscription.h b/src/mc/deps/core/utility/pub_sub/RawSubscription.h index 309727b85c..cc4003062b 100644 --- a/src/mc/deps/core/utility/pub_sub/RawSubscription.h +++ b/src/mc/deps/core/utility/pub_sub/RawSubscription.h @@ -7,12 +7,6 @@ namespace Bedrock::PubSub { -class RawSubscription : public ::Bedrock::PubSub::SubscriptionBase { -public: - // prevent constructor by default - RawSubscription& operator=(RawSubscription const&); - RawSubscription(RawSubscription const&); - RawSubscription(); -}; +class RawSubscription : public ::Bedrock::PubSub::SubscriptionBase {}; } // namespace Bedrock::PubSub diff --git a/src/mc/deps/core/utility/pub_sub/SubscriptionContext.h b/src/mc/deps/core/utility/pub_sub/SubscriptionContext.h index 1e437c578e..46f6f732a6 100644 --- a/src/mc/deps/core/utility/pub_sub/SubscriptionContext.h +++ b/src/mc/deps/core/utility/pub_sub/SubscriptionContext.h @@ -5,12 +5,6 @@ namespace Bedrock::PubSub { class SubscriptionContext { -public: - // prevent constructor by default - SubscriptionContext& operator=(SubscriptionContext const&); - SubscriptionContext(SubscriptionContext const&); - SubscriptionContext(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/deps/core/utility/pub_sub/deferral_policy/ExecuteImmediatelyPolicy.h b/src/mc/deps/core/utility/pub_sub/deferral_policy/ExecuteImmediatelyPolicy.h index 714cbaf644..38c8d467a1 100644 --- a/src/mc/deps/core/utility/pub_sub/deferral_policy/ExecuteImmediatelyPolicy.h +++ b/src/mc/deps/core/utility/pub_sub/deferral_policy/ExecuteImmediatelyPolicy.h @@ -4,12 +4,6 @@ namespace Bedrock::PubSub::DeferralPolicy { -class ExecuteImmediatelyPolicy { -public: - // prevent constructor by default - ExecuteImmediatelyPolicy& operator=(ExecuteImmediatelyPolicy const&); - ExecuteImmediatelyPolicy(ExecuteImmediatelyPolicy const&); - ExecuteImmediatelyPolicy(); -}; +class ExecuteImmediatelyPolicy {}; } // namespace Bedrock::PubSub::DeferralPolicy diff --git a/src/mc/deps/core/utility/pub_sub/deferral_policy/HubPolicy.h b/src/mc/deps/core/utility/pub_sub/deferral_policy/HubPolicy.h index ab6407966a..c9d7675afc 100644 --- a/src/mc/deps/core/utility/pub_sub/deferral_policy/HubPolicy.h +++ b/src/mc/deps/core/utility/pub_sub/deferral_policy/HubPolicy.h @@ -4,12 +4,6 @@ namespace Bedrock::PubSub::DeferralPolicy { -class HubPolicy { -public: - // prevent constructor by default - HubPolicy& operator=(HubPolicy const&); - HubPolicy(HubPolicy const&); - HubPolicy(); -}; +class HubPolicy {}; } // namespace Bedrock::PubSub::DeferralPolicy diff --git a/src/mc/deps/core/utility/pub_sub/deferral_policy/KeepAllPolicy.h b/src/mc/deps/core/utility/pub_sub/deferral_policy/KeepAllPolicy.h index dbb14c7b92..aeefff84cd 100644 --- a/src/mc/deps/core/utility/pub_sub/deferral_policy/KeepAllPolicy.h +++ b/src/mc/deps/core/utility/pub_sub/deferral_policy/KeepAllPolicy.h @@ -4,12 +4,6 @@ namespace Bedrock::PubSub::DeferralPolicy { -class KeepAllPolicy { -public: - // prevent constructor by default - KeepAllPolicy& operator=(KeepAllPolicy const&); - KeepAllPolicy(KeepAllPolicy const&); - KeepAllPolicy(); -}; +class KeepAllPolicy {}; } // namespace Bedrock::PubSub::DeferralPolicy diff --git a/src/mc/deps/core/utility/pub_sub/deferral_policy/KeepLatestPolicy.h b/src/mc/deps/core/utility/pub_sub/deferral_policy/KeepLatestPolicy.h index e797a21372..c0f42b7461 100644 --- a/src/mc/deps/core/utility/pub_sub/deferral_policy/KeepLatestPolicy.h +++ b/src/mc/deps/core/utility/pub_sub/deferral_policy/KeepLatestPolicy.h @@ -4,12 +4,6 @@ namespace Bedrock::PubSub::DeferralPolicy { -class KeepLatestPolicy { -public: - // prevent constructor by default - KeepLatestPolicy& operator=(KeepLatestPolicy const&); - KeepLatestPolicy(KeepLatestPolicy const&); - KeepLatestPolicy(); -}; +class KeepLatestPolicy {}; } // namespace Bedrock::PubSub::DeferralPolicy diff --git a/src/mc/deps/core/utility/pub_sub/detail/DeferredSubscriptionBase.h b/src/mc/deps/core/utility/pub_sub/detail/DeferredSubscriptionBase.h index 4ae5bb8702..fb70017bcb 100644 --- a/src/mc/deps/core/utility/pub_sub/detail/DeferredSubscriptionBase.h +++ b/src/mc/deps/core/utility/pub_sub/detail/DeferredSubscriptionBase.h @@ -9,12 +9,6 @@ namespace Bedrock::PubSub { class DeferredSubscriptionBase : public ::Bedrock::PubSub::Detail::SubscriptionBodyBase { -public: - // prevent constructor by default - DeferredSubscriptionBase& operator=(DeferredSubscriptionBase const&); - DeferredSubscriptionBase(DeferredSubscriptionBase const&); - DeferredSubscriptionBase(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/deps/core/utility/pub_sub/detail/FastDispatchPublisherBase_SingleThreaded.h b/src/mc/deps/core/utility/pub_sub/detail/FastDispatchPublisherBase_SingleThreaded.h index 983eec78e9..9430d9f0bc 100644 --- a/src/mc/deps/core/utility/pub_sub/detail/FastDispatchPublisherBase_SingleThreaded.h +++ b/src/mc/deps/core/utility/pub_sub/detail/FastDispatchPublisherBase_SingleThreaded.h @@ -16,12 +16,6 @@ namespace Bedrock::PubSub::Detail { class FastDispatchPublisherBase_SingleThreaded : public ::Bedrock::PubSub::Detail::PublisherBase, public ::Bedrock::PubSub::ThreadModel::SingleThreaded::NullMutex { -public: - // prevent constructor by default - FastDispatchPublisherBase_SingleThreaded& operator=(FastDispatchPublisherBase_SingleThreaded const&); - FastDispatchPublisherBase_SingleThreaded(FastDispatchPublisherBase_SingleThreaded const&); - FastDispatchPublisherBase_SingleThreaded(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/deps/core/utility/pub_sub/detail/PublisherDisconnector.h b/src/mc/deps/core/utility/pub_sub/detail/PublisherDisconnector.h index 05d2d487a6..7416f3e76f 100644 --- a/src/mc/deps/core/utility/pub_sub/detail/PublisherDisconnector.h +++ b/src/mc/deps/core/utility/pub_sub/detail/PublisherDisconnector.h @@ -10,12 +10,6 @@ namespace Bedrock::PubSub::Detail { class SubscriptionBodyBase; } namespace Bedrock::PubSub::Detail { class PublisherDisconnector { -public: - // prevent constructor by default - PublisherDisconnector& operator=(PublisherDisconnector const&); - PublisherDisconnector(PublisherDisconnector const&); - PublisherDisconnector(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/deps/core/utility/pub_sub/detail/SubscriptionBodyBase.h b/src/mc/deps/core/utility/pub_sub/detail/SubscriptionBodyBase.h index 9684b71fdc..fa8bf994a3 100644 --- a/src/mc/deps/core/utility/pub_sub/detail/SubscriptionBodyBase.h +++ b/src/mc/deps/core/utility/pub_sub/detail/SubscriptionBodyBase.h @@ -27,13 +27,7 @@ class SubscriptionBodyBase using SubscriptionType = ::Bedrock::PubSub::Subscription; - struct CompareEntries { - public: - // prevent constructor by default - CompareEntries& operator=(CompareEntries const&); - CompareEntries(CompareEntries const&); - CompareEntries(); - }; + struct CompareEntries {}; public: // member variables diff --git a/src/mc/deps/core/utility/pub_sub/thread_model/MultiThreaded.h b/src/mc/deps/core/utility/pub_sub/thread_model/MultiThreaded.h index 25fc0060a4..6db6f5d9f0 100644 --- a/src/mc/deps/core/utility/pub_sub/thread_model/MultiThreaded.h +++ b/src/mc/deps/core/utility/pub_sub/thread_model/MultiThreaded.h @@ -4,12 +4,6 @@ namespace Bedrock::PubSub::ThreadModel { -struct MultiThreaded { -public: - // prevent constructor by default - MultiThreaded& operator=(MultiThreaded const&); - MultiThreaded(MultiThreaded const&); - MultiThreaded(); -}; +struct MultiThreaded {}; } // namespace Bedrock::PubSub::ThreadModel diff --git a/src/mc/deps/core/utility/pub_sub/thread_model/SingleThreaded.h b/src/mc/deps/core/utility/pub_sub/thread_model/SingleThreaded.h index a0e0c99583..d7d50ce8d5 100644 --- a/src/mc/deps/core/utility/pub_sub/thread_model/SingleThreaded.h +++ b/src/mc/deps/core/utility/pub_sub/thread_model/SingleThreaded.h @@ -12,19 +12,7 @@ struct SingleThreaded { // clang-format on // SingleThreaded inner types define - class NullMutex { - public: - // prevent constructor by default - NullMutex& operator=(NullMutex const&); - NullMutex(NullMutex const&); - NullMutex(); - }; - -public: - // prevent constructor by default - SingleThreaded& operator=(SingleThreaded const&); - SingleThreaded(SingleThreaded const&); - SingleThreaded(); + class NullMutex {}; }; } // namespace Bedrock::PubSub::ThreadModel diff --git a/src/mc/deps/core/utility/typeid_t.h b/src/mc/deps/core/utility/typeid_t.h index 4261834961..97d9107e1e 100644 --- a/src/mc/deps/core/utility/typeid_t.h +++ b/src/mc/deps/core/utility/typeid_t.h @@ -5,12 +5,6 @@ namespace Bedrock { template -class typeid_t { -public: - // prevent constructor by default - typeid_t& operator=(typeid_t const&); - typeid_t(typeid_t const&); - typeid_t(); -}; +class typeid_t {}; } // namespace Bedrock diff --git a/src/mc/deps/core_graphics/TextureSetLayerTypeHash.h b/src/mc/deps/core_graphics/TextureSetLayerTypeHash.h index 454545c0c5..0f7dad0eda 100644 --- a/src/mc/deps/core_graphics/TextureSetLayerTypeHash.h +++ b/src/mc/deps/core_graphics/TextureSetLayerTypeHash.h @@ -4,12 +4,6 @@ namespace cg { -struct TextureSetLayerTypeHash { -public: - // prevent constructor by default - TextureSetLayerTypeHash& operator=(TextureSetLayerTypeHash const&); - TextureSetLayerTypeHash(TextureSetLayerTypeHash const&); - TextureSetLayerTypeHash(); -}; +struct TextureSetLayerTypeHash {}; } // namespace cg diff --git a/src/mc/deps/core_graphics/file_watcher/FileWatcherNull.h b/src/mc/deps/core_graphics/file_watcher/FileWatcherNull.h index 3d9aa0b62e..afb0085714 100644 --- a/src/mc/deps/core_graphics/file_watcher/FileWatcherNull.h +++ b/src/mc/deps/core_graphics/file_watcher/FileWatcherNull.h @@ -8,12 +8,6 @@ namespace mce { class FileWatcherNull : public ::Bedrock::EnableNonOwnerReferences { -public: - // prevent constructor by default - FileWatcherNull& operator=(FileWatcherNull const&); - FileWatcherNull(FileWatcherNull const&); - FileWatcherNull(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/deps/core_graphics/helpers/TintUtility.h b/src/mc/deps/core_graphics/helpers/TintUtility.h index 8315f918c3..cb3aaabf4d 100644 --- a/src/mc/deps/core_graphics/helpers/TintUtility.h +++ b/src/mc/deps/core_graphics/helpers/TintUtility.h @@ -2,10 +2,4 @@ #include "mc/_HeaderOutputPredefine.h" -class TintUtility { -public: - // prevent constructor by default - TintUtility& operator=(TintUtility const&); - TintUtility(TintUtility const&); - TintUtility(); -}; +class TintUtility {}; diff --git a/src/mc/deps/core_graphics/math/Rect.h b/src/mc/deps/core_graphics/math/Rect.h index 54e726a0b8..f1783278a9 100644 --- a/src/mc/deps/core_graphics/math/Rect.h +++ b/src/mc/deps/core_graphics/math/Rect.h @@ -5,12 +5,6 @@ namespace cg::math { template -struct Rect { -public: - // prevent constructor by default - Rect& operator=(Rect const&); - Rect(Rect const&); - Rect(); -}; +struct Rect {}; } // namespace cg::math diff --git a/src/mc/deps/crypto/asymmetric/ISystemInterface.h b/src/mc/deps/crypto/asymmetric/ISystemInterface.h index 6cbbd75e0a..f23990f3b8 100644 --- a/src/mc/deps/crypto/asymmetric/ISystemInterface.h +++ b/src/mc/deps/crypto/asymmetric/ISystemInterface.h @@ -11,12 +11,6 @@ namespace Crypto::Asymmetric { class ISystemInterface { -public: - // prevent constructor by default - ISystemInterface& operator=(ISystemInterface const&); - ISystemInterface(ISystemInterface const&); - ISystemInterface(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/deps/crypto/asymmetric/NullSSLInterface.h b/src/mc/deps/crypto/asymmetric/NullSSLInterface.h index 17aad1568b..bcd5b427f6 100644 --- a/src/mc/deps/crypto/asymmetric/NullSSLInterface.h +++ b/src/mc/deps/crypto/asymmetric/NullSSLInterface.h @@ -12,12 +12,6 @@ namespace Crypto::Asymmetric { class NullSSLInterface : public ::Crypto::Asymmetric::ISystemInterface { -public: - // prevent constructor by default - NullSSLInterface& operator=(NullSSLInterface const&); - NullSSLInterface(NullSSLInterface const&); - NullSSLInterface(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/deps/crypto/certificate/ISystemInterface.h b/src/mc/deps/crypto/certificate/ISystemInterface.h index 15d1f67f1e..64ae6872d9 100644 --- a/src/mc/deps/crypto/certificate/ISystemInterface.h +++ b/src/mc/deps/crypto/certificate/ISystemInterface.h @@ -10,12 +10,6 @@ namespace Crypto::Certificate { class ISystemInterface { -public: - // prevent constructor by default - ISystemInterface& operator=(ISystemInterface const&); - ISystemInterface(ISystemInterface const&); - ISystemInterface(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/deps/crypto/certificate/NullSSLCertificateInterface.h b/src/mc/deps/crypto/certificate/NullSSLCertificateInterface.h index b671b1adbc..94a976e4cd 100644 --- a/src/mc/deps/crypto/certificate/NullSSLCertificateInterface.h +++ b/src/mc/deps/crypto/certificate/NullSSLCertificateInterface.h @@ -11,12 +11,6 @@ namespace Crypto::Certificate { class NullSSLCertificateInterface : public ::Crypto::Certificate::ISystemInterface { -public: - // prevent constructor by default - NullSSLCertificateInterface& operator=(NullSSLCertificateInterface const&); - NullSSLCertificateInterface(NullSSLCertificateInterface const&); - NullSSLCertificateInterface(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/deps/crypto/pkcs7/ISystemInterface.h b/src/mc/deps/crypto/pkcs7/ISystemInterface.h index 8654c1c1e5..53dbae526d 100644 --- a/src/mc/deps/crypto/pkcs7/ISystemInterface.h +++ b/src/mc/deps/crypto/pkcs7/ISystemInterface.h @@ -5,12 +5,6 @@ namespace Crypto::Pkcs7 { class ISystemInterface { -public: - // prevent constructor by default - ISystemInterface& operator=(ISystemInterface const&); - ISystemInterface(ISystemInterface const&); - ISystemInterface(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/deps/crypto/pkcs7/NullSSLpkcs7Interface.h b/src/mc/deps/crypto/pkcs7/NullSSLpkcs7Interface.h index 9c56ba5846..f31013bc03 100644 --- a/src/mc/deps/crypto/pkcs7/NullSSLpkcs7Interface.h +++ b/src/mc/deps/crypto/pkcs7/NullSSLpkcs7Interface.h @@ -8,12 +8,6 @@ namespace Crypto::Pkcs7 { class NullSSLpkcs7Interface : public ::Crypto::Pkcs7::ISystemInterface { -public: - // prevent constructor by default - NullSSLpkcs7Interface& operator=(NullSSLpkcs7Interface const&); - NullSSLpkcs7Interface(NullSSLpkcs7Interface const&); - NullSSLpkcs7Interface(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/deps/crypto/pkcs7/OpenSSLpkcs7Interface.h b/src/mc/deps/crypto/pkcs7/OpenSSLpkcs7Interface.h index 4d6835c2d0..d26a58fe01 100644 --- a/src/mc/deps/crypto/pkcs7/OpenSSLpkcs7Interface.h +++ b/src/mc/deps/crypto/pkcs7/OpenSSLpkcs7Interface.h @@ -8,12 +8,6 @@ namespace Crypto::Pkcs7 { class OpenSSLpkcs7Interface : public ::Crypto::Pkcs7::ISystemInterface { -public: - // prevent constructor by default - OpenSSLpkcs7Interface& operator=(OpenSSLpkcs7Interface const&); - OpenSSLpkcs7Interface(OpenSSLpkcs7Interface const&); - OpenSSLpkcs7Interface(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/deps/crypto/symmetric/ISystemInterface.h b/src/mc/deps/crypto/symmetric/ISystemInterface.h index b3904cbb66..9e745c18a6 100644 --- a/src/mc/deps/crypto/symmetric/ISystemInterface.h +++ b/src/mc/deps/crypto/symmetric/ISystemInterface.h @@ -5,12 +5,6 @@ namespace Crypto::Symmetric { class ISystemInterface { -public: - // prevent constructor by default - ISystemInterface& operator=(ISystemInterface const&); - ISystemInterface(ISystemInterface const&); - ISystemInterface(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/deps/ecs/Optional.h b/src/mc/deps/ecs/Optional.h index 9f7f87890c..e91ff356a8 100644 --- a/src/mc/deps/ecs/Optional.h +++ b/src/mc/deps/ecs/Optional.h @@ -3,10 +3,4 @@ #include "mc/_HeaderOutputPredefine.h" template -class Optional { -public: - // prevent constructor by default - Optional& operator=(Optional const&); - Optional(Optional const&); - Optional(); -}; +class Optional {}; diff --git a/src/mc/deps/ecs/OptionalComponentWrapper.h b/src/mc/deps/ecs/OptionalComponentWrapper.h index a86de0ab09..9820d2f5ce 100644 --- a/src/mc/deps/ecs/OptionalComponentWrapper.h +++ b/src/mc/deps/ecs/OptionalComponentWrapper.h @@ -3,10 +3,4 @@ #include "mc/_HeaderOutputPredefine.h" template -class OptionalComponentWrapper { -public: - // prevent constructor by default - OptionalComponentWrapper& operator=(OptionalComponentWrapper const&); - OptionalComponentWrapper(OptionalComponentWrapper const&); - OptionalComponentWrapper(); -}; +class OptionalComponentWrapper {}; diff --git a/src/mc/deps/ecs/ViewT.h b/src/mc/deps/ecs/ViewT.h index d631ac2684..aca6d60f6f 100644 --- a/src/mc/deps/ecs/ViewT.h +++ b/src/mc/deps/ecs/ViewT.h @@ -3,10 +3,4 @@ #include "mc/_HeaderOutputPredefine.h" template -class ViewT { -public: - // prevent constructor by default - ViewT& operator=(ViewT const&); - ViewT(ViewT const&); - ViewT(); -}; +class ViewT {}; diff --git a/src/mc/deps/ecs/gamerefs_entity/IEntityRegistryOwner.h b/src/mc/deps/ecs/gamerefs_entity/IEntityRegistryOwner.h index 25d7f52f6a..f6e859244b 100644 --- a/src/mc/deps/ecs/gamerefs_entity/IEntityRegistryOwner.h +++ b/src/mc/deps/ecs/gamerefs_entity/IEntityRegistryOwner.h @@ -12,12 +12,6 @@ class EntityRegistry; // clang-format on class IEntityRegistryOwner : public ::Bedrock::EnableNonOwnerReferences { -public: - // prevent constructor by default - IEntityRegistryOwner& operator=(IEntityRegistryOwner const&); - IEntityRegistryOwner(IEntityRegistryOwner const&); - IEntityRegistryOwner(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/deps/ecs/strict/AddRemove.h b/src/mc/deps/ecs/strict/AddRemove.h index c25cfb3492..0546c058f0 100644 --- a/src/mc/deps/ecs/strict/AddRemove.h +++ b/src/mc/deps/ecs/strict/AddRemove.h @@ -3,10 +3,4 @@ #include "mc/_HeaderOutputPredefine.h" template -struct AddRemove { -public: - // prevent constructor by default - AddRemove& operator=(AddRemove const&); - AddRemove(AddRemove const&); - AddRemove(); -}; +struct AddRemove {}; diff --git a/src/mc/deps/ecs/strict/EntityFactoryT.h b/src/mc/deps/ecs/strict/EntityFactoryT.h index eecc7a209d..8ee91f6369 100644 --- a/src/mc/deps/ecs/strict/EntityFactoryT.h +++ b/src/mc/deps/ecs/strict/EntityFactoryT.h @@ -3,10 +3,4 @@ #include "mc/_HeaderOutputPredefine.h" template -struct EntityFactoryT { -public: - // prevent constructor by default - EntityFactoryT& operator=(EntityFactoryT const&); - EntityFactoryT(EntityFactoryT const&); - EntityFactoryT(); -}; +struct EntityFactoryT {}; diff --git a/src/mc/deps/ecs/strict/EntityModifier.h b/src/mc/deps/ecs/strict/EntityModifier.h index 6b04b3a39b..93f34aee25 100644 --- a/src/mc/deps/ecs/strict/EntityModifier.h +++ b/src/mc/deps/ecs/strict/EntityModifier.h @@ -3,10 +3,4 @@ #include "mc/_HeaderOutputPredefine.h" template -class EntityModifier { -public: - // prevent constructor by default - EntityModifier& operator=(EntityModifier const&); - EntityModifier(EntityModifier const&); - EntityModifier(); -}; +class EntityModifier {}; diff --git a/src/mc/deps/ecs/strict/Exclude.h b/src/mc/deps/ecs/strict/Exclude.h index 45e5bad914..e817330567 100644 --- a/src/mc/deps/ecs/strict/Exclude.h +++ b/src/mc/deps/ecs/strict/Exclude.h @@ -3,10 +3,4 @@ #include "mc/_HeaderOutputPredefine.h" template -struct Exclude { -public: - // prevent constructor by default - Exclude& operator=(Exclude const&); - Exclude(Exclude const&); - Exclude(); -}; +struct Exclude {}; diff --git a/src/mc/deps/ecs/strict/Filter.h b/src/mc/deps/ecs/strict/Filter.h index ddcfd4fd87..86b56a32e3 100644 --- a/src/mc/deps/ecs/strict/Filter.h +++ b/src/mc/deps/ecs/strict/Filter.h @@ -3,10 +3,4 @@ #include "mc/_HeaderOutputPredefine.h" template -struct Filter { -public: - // prevent constructor by default - Filter& operator=(Filter const&); - Filter(Filter const&); - Filter(); -}; +struct Filter {}; diff --git a/src/mc/deps/ecs/strict/GlobalRead.h b/src/mc/deps/ecs/strict/GlobalRead.h index bc32f36d7a..1dcd5e5fbf 100644 --- a/src/mc/deps/ecs/strict/GlobalRead.h +++ b/src/mc/deps/ecs/strict/GlobalRead.h @@ -3,10 +3,4 @@ #include "mc/_HeaderOutputPredefine.h" template -struct GlobalRead { -public: - // prevent constructor by default - GlobalRead& operator=(GlobalRead const&); - GlobalRead(GlobalRead const&); - GlobalRead(); -}; +struct GlobalRead {}; diff --git a/src/mc/deps/ecs/strict/GlobalWrite.h b/src/mc/deps/ecs/strict/GlobalWrite.h index 10dfc12fed..3040522dfc 100644 --- a/src/mc/deps/ecs/strict/GlobalWrite.h +++ b/src/mc/deps/ecs/strict/GlobalWrite.h @@ -3,10 +3,4 @@ #include "mc/_HeaderOutputPredefine.h" template -struct GlobalWrite { -public: - // prevent constructor by default - GlobalWrite& operator=(GlobalWrite const&); - GlobalWrite(GlobalWrite const&); - GlobalWrite(); -}; +struct GlobalWrite {}; diff --git a/src/mc/deps/ecs/strict/IStrictTickingSystem.h b/src/mc/deps/ecs/strict/IStrictTickingSystem.h index 9a56126ec2..3c6d51cd4e 100644 --- a/src/mc/deps/ecs/strict/IStrictTickingSystem.h +++ b/src/mc/deps/ecs/strict/IStrictTickingSystem.h @@ -3,10 +3,4 @@ #include "mc/_HeaderOutputPredefine.h" template -class IStrictTickingSystem { -public: - // prevent constructor by default - IStrictTickingSystem& operator=(IStrictTickingSystem const&); - IStrictTickingSystem(IStrictTickingSystem const&); - IStrictTickingSystem(); -}; +class IStrictTickingSystem {}; diff --git a/src/mc/deps/ecs/strict/Include.h b/src/mc/deps/ecs/strict/Include.h index 7613c68059..913e961c5c 100644 --- a/src/mc/deps/ecs/strict/Include.h +++ b/src/mc/deps/ecs/strict/Include.h @@ -3,10 +3,4 @@ #include "mc/_HeaderOutputPredefine.h" template -struct Include { -public: - // prevent constructor by default - Include& operator=(Include const&); - Include(Include const&); - Include(); -}; +struct Include {}; diff --git a/src/mc/deps/ecs/strict/OptionalGlobal.h b/src/mc/deps/ecs/strict/OptionalGlobal.h index c797e4f043..c502f6b148 100644 --- a/src/mc/deps/ecs/strict/OptionalGlobal.h +++ b/src/mc/deps/ecs/strict/OptionalGlobal.h @@ -3,10 +3,4 @@ #include "mc/_HeaderOutputPredefine.h" template -class OptionalGlobal { -public: - // prevent constructor by default - OptionalGlobal& operator=(OptionalGlobal const&); - OptionalGlobal(OptionalGlobal const&); - OptionalGlobal(); -}; +class OptionalGlobal {}; diff --git a/src/mc/deps/ecs/strict/Read.h b/src/mc/deps/ecs/strict/Read.h index 75f79434ef..6b25f2b681 100644 --- a/src/mc/deps/ecs/strict/Read.h +++ b/src/mc/deps/ecs/strict/Read.h @@ -3,10 +3,4 @@ #include "mc/_HeaderOutputPredefine.h" template -struct Read { -public: - // prevent constructor by default - Read& operator=(Read const&); - Read(Read const&); - Read(); -}; +struct Read {}; diff --git a/src/mc/deps/ecs/strict/StrictExecutionContext.h b/src/mc/deps/ecs/strict/StrictExecutionContext.h index e55e02fd02..4497d9a102 100644 --- a/src/mc/deps/ecs/strict/StrictExecutionContext.h +++ b/src/mc/deps/ecs/strict/StrictExecutionContext.h @@ -3,10 +3,4 @@ #include "mc/_HeaderOutputPredefine.h" template -class StrictExecutionContext { -public: - // prevent constructor by default - StrictExecutionContext& operator=(StrictExecutionContext const&); - StrictExecutionContext(StrictExecutionContext const&); - StrictExecutionContext(); -}; +class StrictExecutionContext {}; diff --git a/src/mc/deps/ecs/strict/Write.h b/src/mc/deps/ecs/strict/Write.h index ace91eeb3e..25a441c34a 100644 --- a/src/mc/deps/ecs/strict/Write.h +++ b/src/mc/deps/ecs/strict/Write.h @@ -3,10 +3,4 @@ #include "mc/_HeaderOutputPredefine.h" template -struct Write { -public: - // prevent constructor by default - Write& operator=(Write const&); - Write(Write const&); - Write(); -}; +struct Write {}; diff --git a/src/mc/deps/ecs/systems/DefaultSystemTraits.h b/src/mc/deps/ecs/systems/DefaultSystemTraits.h index 82c06cb260..71828eb44b 100644 --- a/src/mc/deps/ecs/systems/DefaultSystemTraits.h +++ b/src/mc/deps/ecs/systems/DefaultSystemTraits.h @@ -8,12 +8,6 @@ struct ComponentInfo; // clang-format on struct DefaultSystemTraits { -public: - // prevent constructor by default - DefaultSystemTraits& operator=(DefaultSystemTraits const&); - DefaultSystemTraits(DefaultSystemTraits const&); - DefaultSystemTraits(); - public: // static functions // NOLINTBEGIN diff --git a/src/mc/deps/ecs/systems/ISystem.h b/src/mc/deps/ecs/systems/ISystem.h index a0b8e1b4bb..166ab8d68b 100644 --- a/src/mc/deps/ecs/systems/ISystem.h +++ b/src/mc/deps/ecs/systems/ISystem.h @@ -3,12 +3,6 @@ #include "mc/_HeaderOutputPredefine.h" struct ISystem { -public: - // prevent constructor by default - ISystem& operator=(ISystem const&); - ISystem(ISystem const&); - ISystem(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/deps/ecs/systems/ITickingSystem.h b/src/mc/deps/ecs/systems/ITickingSystem.h index e054e36794..37b822e01d 100644 --- a/src/mc/deps/ecs/systems/ITickingSystem.h +++ b/src/mc/deps/ecs/systems/ITickingSystem.h @@ -13,12 +13,6 @@ class StrictEntityContext; // clang-format on class ITickingSystem : public ::ISystem { -public: - // prevent constructor by default - ITickingSystem& operator=(ITickingSystem const&); - ITickingSystem(ITickingSystem const&); - ITickingSystem(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/deps/game_refs/EnableGetWeakRef.h b/src/mc/deps/game_refs/EnableGetWeakRef.h index 5cf20fcebb..6133b32a78 100644 --- a/src/mc/deps/game_refs/EnableGetWeakRef.h +++ b/src/mc/deps/game_refs/EnableGetWeakRef.h @@ -3,10 +3,4 @@ #include "mc/_HeaderOutputPredefine.h" template -class EnableGetWeakRef { -public: - // prevent constructor by default - EnableGetWeakRef& operator=(EnableGetWeakRef const&); - EnableGetWeakRef(EnableGetWeakRef const&); - EnableGetWeakRef(); -}; +class EnableGetWeakRef {}; diff --git a/src/mc/deps/game_refs/OwnerPtr.h b/src/mc/deps/game_refs/OwnerPtr.h index a53b7fa247..3a076ed5eb 100644 --- a/src/mc/deps/game_refs/OwnerPtr.h +++ b/src/mc/deps/game_refs/OwnerPtr.h @@ -3,10 +3,4 @@ #include "mc/_HeaderOutputPredefine.h" template -class OwnerPtr { -public: - // prevent constructor by default - OwnerPtr& operator=(OwnerPtr const&); - OwnerPtr(OwnerPtr const&); - OwnerPtr(); -}; +class OwnerPtr {}; diff --git a/src/mc/deps/game_refs/StackRefResult.h b/src/mc/deps/game_refs/StackRefResult.h index aa4f3c3d75..3766cc9032 100644 --- a/src/mc/deps/game_refs/StackRefResult.h +++ b/src/mc/deps/game_refs/StackRefResult.h @@ -3,10 +3,4 @@ #include "mc/_HeaderOutputPredefine.h" template -class StackRefResult { -public: - // prevent constructor by default - StackRefResult& operator=(StackRefResult const&); - StackRefResult(StackRefResult const&); - StackRefResult(); -}; +class StackRefResult {}; diff --git a/src/mc/deps/game_refs/WeakRef.h b/src/mc/deps/game_refs/WeakRef.h index 284f10ec32..0265b97de3 100644 --- a/src/mc/deps/game_refs/WeakRef.h +++ b/src/mc/deps/game_refs/WeakRef.h @@ -3,10 +3,4 @@ #include "mc/_HeaderOutputPredefine.h" template -class WeakRef { -public: - // prevent constructor by default - WeakRef& operator=(WeakRef const&); - WeakRef(WeakRef const&); - WeakRef(); -}; +class WeakRef {}; diff --git a/src/mc/deps/input/HIDController.h b/src/mc/deps/input/HIDController.h index f079defe3e..e7658c0cad 100644 --- a/src/mc/deps/input/HIDController.h +++ b/src/mc/deps/input/HIDController.h @@ -2,10 +2,4 @@ #include "mc/_HeaderOutputPredefine.h" -class HIDController { -public: - // prevent constructor by default - HIDController& operator=(HIDController const&); - HIDController(HIDController const&); - HIDController(); -}; +class HIDController {}; diff --git a/src/mc/deps/input/Keyboard.h b/src/mc/deps/input/Keyboard.h index b77ae05ce9..3b97162453 100644 --- a/src/mc/deps/input/Keyboard.h +++ b/src/mc/deps/input/Keyboard.h @@ -108,10 +108,4 @@ class Keyboard { AndroidMenu = 255, Count = 256, }; - -public: - // prevent constructor by default - Keyboard& operator=(Keyboard const&); - Keyboard(Keyboard const&); - Keyboard(); }; diff --git a/src/mc/deps/input/Multitouch.h b/src/mc/deps/input/Multitouch.h index 6798eaffcd..ca3aea4124 100644 --- a/src/mc/deps/input/Multitouch.h +++ b/src/mc/deps/input/Multitouch.h @@ -2,10 +2,4 @@ #include "mc/_HeaderOutputPredefine.h" -class Multitouch { -public: - // prevent constructor by default - Multitouch& operator=(Multitouch const&); - Multitouch(Multitouch const&); - Multitouch(); -}; +class Multitouch {}; diff --git a/src/mc/deps/minecraft_camera/CameraRegistry.h b/src/mc/deps/minecraft_camera/CameraRegistry.h index 8209399389..268cdaa486 100644 --- a/src/mc/deps/minecraft_camera/CameraRegistry.h +++ b/src/mc/deps/minecraft_camera/CameraRegistry.h @@ -2,10 +2,4 @@ #include "mc/_HeaderOutputPredefine.h" -class CameraRegistry { -public: - // prevent constructor by default - CameraRegistry& operator=(CameraRegistry const&); - CameraRegistry(CameraRegistry const&); - CameraRegistry(); -}; +class CameraRegistry {}; diff --git a/src/mc/deps/minecraft_camera/ICameraAPI.h b/src/mc/deps/minecraft_camera/ICameraAPI.h index 57a26d8f02..7a56ca208e 100644 --- a/src/mc/deps/minecraft_camera/ICameraAPI.h +++ b/src/mc/deps/minecraft_camera/ICameraAPI.h @@ -56,12 +56,6 @@ class ICameraAPI { CameraMovementData(); }; -public: - // prevent constructor by default - ICameraAPI& operator=(ICameraAPI const&); - ICameraAPI(ICameraAPI const&); - ICameraAPI(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/deps/minecraft_camera/ICameraClientInstance.h b/src/mc/deps/minecraft_camera/ICameraClientInstance.h index d1bd5b1bb9..da68b6b375 100644 --- a/src/mc/deps/minecraft_camera/ICameraClientInstance.h +++ b/src/mc/deps/minecraft_camera/ICameraClientInstance.h @@ -10,12 +10,6 @@ class Vec2; // clang-format on class ICameraClientInstance { -public: - // prevent constructor by default - ICameraClientInstance& operator=(ICameraClientInstance const&); - ICameraClientInstance(ICameraClientInstance const&); - ICameraClientInstance(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/deps/minecraft_camera/components/ActiveCameraComponent.h b/src/mc/deps/minecraft_camera/components/ActiveCameraComponent.h index 14b4786bb3..944aed05b1 100644 --- a/src/mc/deps/minecraft_camera/components/ActiveCameraComponent.h +++ b/src/mc/deps/minecraft_camera/components/ActiveCameraComponent.h @@ -2,10 +2,4 @@ #include "mc/_HeaderOutputPredefine.h" -struct ActiveCameraComponent { -public: - // prevent constructor by default - ActiveCameraComponent& operator=(ActiveCameraComponent const&); - ActiveCameraComponent(ActiveCameraComponent const&); - ActiveCameraComponent(); -}; +struct ActiveCameraComponent {}; diff --git a/src/mc/deps/minecraft_camera/components/CameraAlignWithTargetForwardComponent.h b/src/mc/deps/minecraft_camera/components/CameraAlignWithTargetForwardComponent.h index f26e760ea3..0d5c5cbc6e 100644 --- a/src/mc/deps/minecraft_camera/components/CameraAlignWithTargetForwardComponent.h +++ b/src/mc/deps/minecraft_camera/components/CameraAlignWithTargetForwardComponent.h @@ -2,10 +2,4 @@ #include "mc/_HeaderOutputPredefine.h" -struct CameraAlignWithTargetForwardComponent { -public: - // prevent constructor by default - CameraAlignWithTargetForwardComponent& operator=(CameraAlignWithTargetForwardComponent const&); - CameraAlignWithTargetForwardComponent(CameraAlignWithTargetForwardComponent const&); - CameraAlignWithTargetForwardComponent(); -}; +struct CameraAlignWithTargetForwardComponent {}; diff --git a/src/mc/deps/minecraft_camera/components/DefaultInputCameraComponent.h b/src/mc/deps/minecraft_camera/components/DefaultInputCameraComponent.h index 9127970447..fc3e90a021 100644 --- a/src/mc/deps/minecraft_camera/components/DefaultInputCameraComponent.h +++ b/src/mc/deps/minecraft_camera/components/DefaultInputCameraComponent.h @@ -2,10 +2,4 @@ #include "mc/_HeaderOutputPredefine.h" -struct DefaultInputCameraComponent { -public: - // prevent constructor by default - DefaultInputCameraComponent& operator=(DefaultInputCameraComponent const&); - DefaultInputCameraComponent(DefaultInputCameraComponent const&); - DefaultInputCameraComponent(); -}; +struct DefaultInputCameraComponent {}; diff --git a/src/mc/deps/minecraft_camera/components/DefaultInputCameraDefinition.h b/src/mc/deps/minecraft_camera/components/DefaultInputCameraDefinition.h index 127293f478..69582f1497 100644 --- a/src/mc/deps/minecraft_camera/components/DefaultInputCameraDefinition.h +++ b/src/mc/deps/minecraft_camera/components/DefaultInputCameraDefinition.h @@ -2,10 +2,4 @@ #include "mc/_HeaderOutputPredefine.h" -class DefaultInputCameraDefinition { -public: - // prevent constructor by default - DefaultInputCameraDefinition& operator=(DefaultInputCameraDefinition const&); - DefaultInputCameraDefinition(DefaultInputCameraDefinition const&); - DefaultInputCameraDefinition(); -}; +class DefaultInputCameraDefinition {}; diff --git a/src/mc/deps/minecraft_camera/events/CameraClearInstructionEvent.h b/src/mc/deps/minecraft_camera/events/CameraClearInstructionEvent.h index 37439860c7..d824905613 100644 --- a/src/mc/deps/minecraft_camera/events/CameraClearInstructionEvent.h +++ b/src/mc/deps/minecraft_camera/events/CameraClearInstructionEvent.h @@ -2,10 +2,4 @@ #include "mc/_HeaderOutputPredefine.h" -struct CameraClearInstructionEvent { -public: - // prevent constructor by default - CameraClearInstructionEvent& operator=(CameraClearInstructionEvent const&); - CameraClearInstructionEvent(CameraClearInstructionEvent const&); - CameraClearInstructionEvent(); -}; +struct CameraClearInstructionEvent {}; diff --git a/src/mc/deps/minecraft_camera/events/CameraRemoveTargetInstructionEvent.h b/src/mc/deps/minecraft_camera/events/CameraRemoveTargetInstructionEvent.h index b690352ea4..33392412c0 100644 --- a/src/mc/deps/minecraft_camera/events/CameraRemoveTargetInstructionEvent.h +++ b/src/mc/deps/minecraft_camera/events/CameraRemoveTargetInstructionEvent.h @@ -2,10 +2,4 @@ #include "mc/_HeaderOutputPredefine.h" -struct CameraRemoveTargetInstructionEvent { -public: - // prevent constructor by default - CameraRemoveTargetInstructionEvent& operator=(CameraRemoveTargetInstructionEvent const&); - CameraRemoveTargetInstructionEvent(CameraRemoveTargetInstructionEvent const&); - CameraRemoveTargetInstructionEvent(); -}; +struct CameraRemoveTargetInstructionEvent {}; diff --git a/src/mc/deps/minecraft_renderer/framebuilder/LivingRoomDescription.h b/src/mc/deps/minecraft_renderer/framebuilder/LivingRoomDescription.h index 6137d77fb7..f21d2ad156 100644 --- a/src/mc/deps/minecraft_renderer/framebuilder/LivingRoomDescription.h +++ b/src/mc/deps/minecraft_renderer/framebuilder/LivingRoomDescription.h @@ -4,12 +4,6 @@ namespace mce::framebuilder { -struct LivingRoomDescription { -public: - // prevent constructor by default - LivingRoomDescription& operator=(LivingRoomDescription const&); - LivingRoomDescription(LivingRoomDescription const&); - LivingRoomDescription(); -}; +struct LivingRoomDescription {}; } // namespace mce::framebuilder diff --git a/src/mc/deps/minecraft_renderer/framebuilder/dragon/RenderMetadataFactory.h b/src/mc/deps/minecraft_renderer/framebuilder/dragon/RenderMetadataFactory.h index 8a7f59b128..50273c522f 100644 --- a/src/mc/deps/minecraft_renderer/framebuilder/dragon/RenderMetadataFactory.h +++ b/src/mc/deps/minecraft_renderer/framebuilder/dragon/RenderMetadataFactory.h @@ -4,12 +4,6 @@ namespace dragon { -class RenderMetadataFactory { -public: - // prevent constructor by default - RenderMetadataFactory& operator=(RenderMetadataFactory const&); - RenderMetadataFactory(RenderMetadataFactory const&); - RenderMetadataFactory(); -}; +class RenderMetadataFactory {}; } // namespace dragon diff --git a/src/mc/deps/minecraft_renderer/renderer/MaterialPtr.h b/src/mc/deps/minecraft_renderer/renderer/MaterialPtr.h index 8666bf8907..c43e36a35c 100644 --- a/src/mc/deps/minecraft_renderer/renderer/MaterialPtr.h +++ b/src/mc/deps/minecraft_renderer/renderer/MaterialPtr.h @@ -4,12 +4,6 @@ namespace mce { -class MaterialPtr { -public: - // prevent constructor by default - MaterialPtr& operator=(MaterialPtr const&); - MaterialPtr(MaterialPtr const&); - MaterialPtr(); -}; +class MaterialPtr {}; } // namespace mce diff --git a/src/mc/deps/nether_net/AesAdapter.h b/src/mc/deps/nether_net/AesAdapter.h index 071067065d..1b3755b7d0 100644 --- a/src/mc/deps/nether_net/AesAdapter.h +++ b/src/mc/deps/nether_net/AesAdapter.h @@ -14,12 +14,6 @@ namespace rtc { class Socket; } namespace NetherNet { class AesAdapter : public ::rtc::AsyncSocketAdapter { -public: - // prevent constructor by default - AesAdapter& operator=(AesAdapter const&); - AesAdapter(AesAdapter const&); - AesAdapter(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/deps/nether_net/DiscoveryRequestPacket.h b/src/mc/deps/nether_net/DiscoveryRequestPacket.h index 2fb6bdfa32..e8115c1e08 100644 --- a/src/mc/deps/nether_net/DiscoveryRequestPacket.h +++ b/src/mc/deps/nether_net/DiscoveryRequestPacket.h @@ -13,12 +13,6 @@ namespace NetherNet { struct NetworkID; } namespace NetherNet { struct DiscoveryRequestPacket : public ::NetherNet::DiscoveryPacket { -public: - // prevent constructor by default - DiscoveryRequestPacket& operator=(DiscoveryRequestPacket const&); - DiscoveryRequestPacket(DiscoveryRequestPacket const&); - DiscoveryRequestPacket(); - public: // member functions // NOLINTBEGIN diff --git a/src/mc/deps/nether_net/ILanEventHandler.h b/src/mc/deps/nether_net/ILanEventHandler.h index 5de27aaf03..879b9fd0a8 100644 --- a/src/mc/deps/nether_net/ILanEventHandler.h +++ b/src/mc/deps/nether_net/ILanEventHandler.h @@ -13,12 +13,6 @@ namespace NetherNet::LanEvents { struct MessageSent; } namespace NetherNet { struct ILanEventHandler { -public: - // prevent constructor by default - ILanEventHandler& operator=(ILanEventHandler const&); - ILanEventHandler(ILanEventHandler const&); - ILanEventHandler(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/deps/nether_net/INetherNetTransportInterface.h b/src/mc/deps/nether_net/INetherNetTransportInterface.h index 5a6dfbb76e..cd402bed93 100644 --- a/src/mc/deps/nether_net/INetherNetTransportInterface.h +++ b/src/mc/deps/nether_net/INetherNetTransportInterface.h @@ -21,12 +21,6 @@ namespace NetherNet { struct SessionState; } namespace NetherNet { class INetherNetTransportInterface { -public: - // prevent constructor by default - INetherNetTransportInterface& operator=(INetherNetTransportInterface const&); - INetherNetTransportInterface(INetherNetTransportInterface const&); - INetherNetTransportInterface(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/deps/nether_net/INetherNetTransportInterfaceCallbacks.h b/src/mc/deps/nether_net/INetherNetTransportInterfaceCallbacks.h index e7ceafa079..986287c689 100644 --- a/src/mc/deps/nether_net/INetherNetTransportInterfaceCallbacks.h +++ b/src/mc/deps/nether_net/INetherNetTransportInterfaceCallbacks.h @@ -13,12 +13,6 @@ namespace NetherNet { struct NetworkID; } namespace NetherNet { class INetherNetTransportInterfaceCallbacks { -public: - // prevent constructor by default - INetherNetTransportInterfaceCallbacks& operator=(INetherNetTransportInterfaceCallbacks const&); - INetherNetTransportInterfaceCallbacks(INetherNetTransportInterfaceCallbacks const&); - INetherNetTransportInterfaceCallbacks(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/deps/nether_net/ISignalingEventHandler.h b/src/mc/deps/nether_net/ISignalingEventHandler.h index 1d8b40aff7..a4ac5caacd 100644 --- a/src/mc/deps/nether_net/ISignalingEventHandler.h +++ b/src/mc/deps/nether_net/ISignalingEventHandler.h @@ -16,12 +16,6 @@ namespace NetherNet::SignalingEvents { struct TurnAuthReceived; } namespace NetherNet { struct ISignalingEventHandler { -public: - // prevent constructor by default - ISignalingEventHandler& operator=(ISignalingEventHandler const&); - ISignalingEventHandler(ISignalingEventHandler const&); - ISignalingEventHandler(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/deps/nether_net/IWebRTCSignalingInterface.h b/src/mc/deps/nether_net/IWebRTCSignalingInterface.h index b8f3e9f5a8..acea8ddea6 100644 --- a/src/mc/deps/nether_net/IWebRTCSignalingInterface.h +++ b/src/mc/deps/nether_net/IWebRTCSignalingInterface.h @@ -40,12 +40,6 @@ class IWebRTCSignalingInterface { SignalingConfiguration(); }; -public: - // prevent constructor by default - IWebRTCSignalingInterface& operator=(IWebRTCSignalingInterface const&); - IWebRTCSignalingInterface(IWebRTCSignalingInterface const&); - IWebRTCSignalingInterface(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/deps/nether_net/SimpleLogSink.h b/src/mc/deps/nether_net/SimpleLogSink.h index d1353b2247..d79d1b4067 100644 --- a/src/mc/deps/nether_net/SimpleLogSink.h +++ b/src/mc/deps/nether_net/SimpleLogSink.h @@ -8,12 +8,6 @@ namespace NetherNet { class SimpleLogSink : public ::rtc::LogSink { -public: - // prevent constructor by default - SimpleLogSink& operator=(SimpleLogSink const&); - SimpleLogSink(SimpleLogSink const&); - SimpleLogSink(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/deps/nether_net/utils/EnableSharedFromThis.h b/src/mc/deps/nether_net/utils/EnableSharedFromThis.h index 155472d446..61b3c2387b 100644 --- a/src/mc/deps/nether_net/utils/EnableSharedFromThis.h +++ b/src/mc/deps/nether_net/utils/EnableSharedFromThis.h @@ -5,12 +5,6 @@ namespace NetherNet { template -class EnableSharedFromThis { -public: - // prevent constructor by default - EnableSharedFromThis& operator=(EnableSharedFromThis const&); - EnableSharedFromThis(EnableSharedFromThis const&); - EnableSharedFromThis(); -}; +class EnableSharedFromThis {}; } // namespace NetherNet diff --git a/src/mc/deps/nether_net/utils/ErrorOr.h b/src/mc/deps/nether_net/utils/ErrorOr.h index bbe90ff9d1..9f9400dedf 100644 --- a/src/mc/deps/nether_net/utils/ErrorOr.h +++ b/src/mc/deps/nether_net/utils/ErrorOr.h @@ -5,12 +5,6 @@ namespace NetherNet { template -struct ErrorOr { -public: - // prevent constructor by default - ErrorOr& operator=(ErrorOr const&); - ErrorOr(ErrorOr const&); - ErrorOr(); -}; +struct ErrorOr {}; } // namespace NetherNet diff --git a/src/mc/deps/nether_net/utils/Thread.h b/src/mc/deps/nether_net/utils/Thread.h index 58c8e9d1b7..af8106bd12 100644 --- a/src/mc/deps/nether_net/utils/Thread.h +++ b/src/mc/deps/nether_net/utils/Thread.h @@ -5,12 +5,6 @@ namespace NetherNet { struct Thread : public ::std::thread { -public: - // prevent constructor by default - Thread& operator=(Thread const&); - Thread(Thread const&); - Thread(); - public: // static functions // NOLINTBEGIN diff --git a/src/mc/deps/platform_features/file_picker/FilePickerManager.h b/src/mc/deps/platform_features/file_picker/FilePickerManager.h index 1706e8d280..3d7d20e0d2 100644 --- a/src/mc/deps/platform_features/file_picker/FilePickerManager.h +++ b/src/mc/deps/platform_features/file_picker/FilePickerManager.h @@ -49,12 +49,6 @@ class FilePickerManager : public ::Bedrock::ImplBase<::Bedrock::FilePickerManage // NOLINTEND }; -public: - // prevent constructor by default - FilePickerManager& operator=(FilePickerManager const&); - FilePickerManager(FilePickerManager const&); - FilePickerManager(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/deps/platform_features/platform/v/disabled/file_picker/FilePickerManagerImpl.h b/src/mc/deps/platform_features/platform/v/disabled/file_picker/FilePickerManagerImpl.h index 2c47f80872..c2b02f19c8 100644 --- a/src/mc/deps/platform_features/platform/v/disabled/file_picker/FilePickerManagerImpl.h +++ b/src/mc/deps/platform_features/platform/v/disabled/file_picker/FilePickerManagerImpl.h @@ -14,11 +14,6 @@ namespace Bedrock { class DirectoryPickerConfig; } namespace Bedrock { class FilePickerManagerImpl : public ::Bedrock::FilePickerManager { -public: - // prevent constructor by default - FilePickerManagerImpl& operator=(FilePickerManagerImpl const&); - FilePickerManagerImpl(FilePickerManagerImpl const&); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/deps/profiler/CounterTokenMarker.h b/src/mc/deps/profiler/CounterTokenMarker.h index f2b994cb4b..dd3127604f 100644 --- a/src/mc/deps/profiler/CounterTokenMarker.h +++ b/src/mc/deps/profiler/CounterTokenMarker.h @@ -4,12 +4,6 @@ namespace Core::Profile { -class CounterTokenMarker { -public: - // prevent constructor by default - CounterTokenMarker& operator=(CounterTokenMarker const&); - CounterTokenMarker(CounterTokenMarker const&); - CounterTokenMarker(); -}; +class CounterTokenMarker {}; } // namespace Core::Profile diff --git a/src/mc/deps/profiler/GPUProfileTokenMarker.h b/src/mc/deps/profiler/GPUProfileTokenMarker.h index e7f0ece070..bf2539c57c 100644 --- a/src/mc/deps/profiler/GPUProfileTokenMarker.h +++ b/src/mc/deps/profiler/GPUProfileTokenMarker.h @@ -4,12 +4,6 @@ namespace Core::Profile { -struct GPUProfileTokenMarker { -public: - // prevent constructor by default - GPUProfileTokenMarker& operator=(GPUProfileTokenMarker const&); - GPUProfileTokenMarker(GPUProfileTokenMarker const&); - GPUProfileTokenMarker(); -}; +struct GPUProfileTokenMarker {}; } // namespace Core::Profile diff --git a/src/mc/deps/profiler/ProfileGroupManager.h b/src/mc/deps/profiler/ProfileGroupManager.h index 665fe5c585..db7cd97bc4 100644 --- a/src/mc/deps/profiler/ProfileGroupManager.h +++ b/src/mc/deps/profiler/ProfileGroupManager.h @@ -23,13 +23,7 @@ class ProfileGroupManager { // clang-format on // ProfileGroupManager inner types define - class Factory { - public: - // prevent constructor by default - Factory& operator=(Factory const&); - Factory(Factory const&); - Factory(); - }; + class Factory {}; class Impl { public: @@ -39,13 +33,7 @@ class ProfileGroupManager { // clang-format on // Impl inner types define - struct StringCompare { - public: - // prevent constructor by default - StringCompare& operator=(StringCompare const&); - StringCompare(StringCompare const&); - StringCompare(); - }; + struct StringCompare {}; public: // member variables diff --git a/src/mc/deps/profiler/ProfileMultiSectionCPU.h b/src/mc/deps/profiler/ProfileMultiSectionCPU.h index 16ac7b4b5f..f4357d099f 100644 --- a/src/mc/deps/profiler/ProfileMultiSectionCPU.h +++ b/src/mc/deps/profiler/ProfileMultiSectionCPU.h @@ -12,19 +12,7 @@ class ProfileMultiSectionCPU { // clang-format on // ProfileMultiSectionCPU inner types define - class ProfileSectionSuspend { - public: - // prevent constructor by default - ProfileSectionSuspend& operator=(ProfileSectionSuspend const&); - ProfileSectionSuspend(ProfileSectionSuspend const&); - ProfileSectionSuspend(); - }; - -public: - // prevent constructor by default - ProfileMultiSectionCPU& operator=(ProfileMultiSectionCPU const&); - ProfileMultiSectionCPU(ProfileMultiSectionCPU const&); - ProfileMultiSectionCPU(); + class ProfileSectionSuspend {}; }; } // namespace Core::Profile diff --git a/src/mc/deps/profiler/ProfileThread.h b/src/mc/deps/profiler/ProfileThread.h index 2d465187e1..fcac1d890c 100644 --- a/src/mc/deps/profiler/ProfileThread.h +++ b/src/mc/deps/profiler/ProfileThread.h @@ -5,12 +5,6 @@ namespace Core::Profile { class ProfileThread { -public: - // prevent constructor by default - ProfileThread& operator=(ProfileThread const&); - ProfileThread(ProfileThread const&); - ProfileThread(); - public: // member functions // NOLINTBEGIN diff --git a/src/mc/deps/puv/Input.h b/src/mc/deps/puv/Input.h index 2a90013107..91ad48352c 100644 --- a/src/mc/deps/puv/Input.h +++ b/src/mc/deps/puv/Input.h @@ -50,12 +50,6 @@ class Input { // NOLINTEND }; -public: - // prevent constructor by default - Input& operator=(Input const&); - Input(Input const&); - Input(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/deps/puv/LoadResult.h b/src/mc/deps/puv/LoadResult.h index 05f33d38b8..36fe831f9a 100644 --- a/src/mc/deps/puv/LoadResult.h +++ b/src/mc/deps/puv/LoadResult.h @@ -5,12 +5,6 @@ namespace Puv { template -class LoadResult { -public: - // prevent constructor by default - LoadResult& operator=(LoadResult const&); - LoadResult(LoadResult const&); - LoadResult(); -}; +class LoadResult {}; } // namespace Puv diff --git a/src/mc/deps/puv/Loader.h b/src/mc/deps/puv/Loader.h index fa6d913425..accff31695 100644 --- a/src/mc/deps/puv/Loader.h +++ b/src/mc/deps/puv/Loader.h @@ -5,12 +5,6 @@ namespace Puv { template -class Loader { -public: - // prevent constructor by default - Loader& operator=(Loader const&); - Loader(Loader const&); - Loader(); -}; +class Loader {}; } // namespace Puv diff --git a/src/mc/deps/puv/LoggerIterator.h b/src/mc/deps/puv/LoggerIterator.h index 81cae661c2..1c0ab93725 100644 --- a/src/mc/deps/puv/LoggerIterator.h +++ b/src/mc/deps/puv/LoggerIterator.h @@ -5,12 +5,6 @@ namespace Puv { template -class LoggerIterator { -public: - // prevent constructor by default - LoggerIterator& operator=(LoggerIterator const&); - LoggerIterator(LoggerIterator const&); - LoggerIterator(); -}; +class LoggerIterator {}; } // namespace Puv diff --git a/src/mc/deps/raknet/CloudAllocator.h b/src/mc/deps/raknet/CloudAllocator.h index fee58cffdf..298c96c1c2 100644 --- a/src/mc/deps/raknet/CloudAllocator.h +++ b/src/mc/deps/raknet/CloudAllocator.h @@ -10,12 +10,6 @@ namespace RakNet { struct CloudQueryRow; } namespace RakNet { class CloudAllocator { -public: - // prevent constructor by default - CloudAllocator& operator=(CloudAllocator const&); - CloudAllocator(CloudAllocator const&); - CloudAllocator(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/deps/raknet/CloudClientCallback.h b/src/mc/deps/raknet/CloudClientCallback.h index 0972fae03c..4171bca292 100644 --- a/src/mc/deps/raknet/CloudClientCallback.h +++ b/src/mc/deps/raknet/CloudClientCallback.h @@ -11,12 +11,6 @@ namespace RakNet { struct CloudQueryRow; } namespace RakNet { class CloudClientCallback { -public: - // prevent constructor by default - CloudClientCallback& operator=(CloudClientCallback const&); - CloudClientCallback(CloudClientCallback const&); - CloudClientCallback(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/deps/raknet/CloudServerQueryFilter.h b/src/mc/deps/raknet/CloudServerQueryFilter.h index 257b31dfcd..7c3b2b87af 100644 --- a/src/mc/deps/raknet/CloudServerQueryFilter.h +++ b/src/mc/deps/raknet/CloudServerQueryFilter.h @@ -16,12 +16,6 @@ namespace RakNet { struct SystemAddress; } namespace RakNet { class CloudServerQueryFilter { -public: - // prevent constructor by default - CloudServerQueryFilter& operator=(CloudServerQueryFilter const&); - CloudServerQueryFilter(CloudServerQueryFilter const&); - CloudServerQueryFilter(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/deps/raknet/DataCompressor.h b/src/mc/deps/raknet/DataCompressor.h index ee16598181..da69686777 100644 --- a/src/mc/deps/raknet/DataCompressor.h +++ b/src/mc/deps/raknet/DataCompressor.h @@ -4,12 +4,6 @@ namespace RakNet { -class DataCompressor { -public: - // prevent constructor by default - DataCompressor& operator=(DataCompressor const&); - DataCompressor(DataCompressor const&); - DataCompressor(); -}; +class DataCompressor {}; } // namespace RakNet diff --git a/src/mc/deps/raknet/FLP_Printf.h b/src/mc/deps/raknet/FLP_Printf.h index c5c8e576b6..eefb96f1b6 100644 --- a/src/mc/deps/raknet/FLP_Printf.h +++ b/src/mc/deps/raknet/FLP_Printf.h @@ -14,12 +14,6 @@ namespace RakNet { struct SystemAddress; } namespace RakNet { class FLP_Printf : public ::RakNet::FileListProgress { -public: - // prevent constructor by default - FLP_Printf& operator=(FLP_Printf const&); - FLP_Printf(FLP_Printf const&); - FLP_Printf(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/deps/raknet/FileListProgress.h b/src/mc/deps/raknet/FileListProgress.h index b77d057568..a0161ce4a9 100644 --- a/src/mc/deps/raknet/FileListProgress.h +++ b/src/mc/deps/raknet/FileListProgress.h @@ -11,12 +11,6 @@ namespace RakNet { struct SystemAddress; } namespace RakNet { class FileListProgress { -public: - // prevent constructor by default - FileListProgress& operator=(FileListProgress const&); - FileListProgress(FileListProgress const&); - FileListProgress(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/deps/raknet/FileListTransferCBInterface.h b/src/mc/deps/raknet/FileListTransferCBInterface.h index 45ed8bcb75..b3ef87f35b 100644 --- a/src/mc/deps/raknet/FileListTransferCBInterface.h +++ b/src/mc/deps/raknet/FileListTransferCBInterface.h @@ -80,12 +80,6 @@ class FileListTransferCBInterface { DownloadCompleteStruct(); }; -public: - // prevent constructor by default - FileListTransferCBInterface& operator=(FileListTransferCBInterface const&); - FileListTransferCBInterface(FileListTransferCBInterface const&); - FileListTransferCBInterface(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/deps/raknet/IRNS2_Berkley.h b/src/mc/deps/raknet/IRNS2_Berkley.h index 8b3f44e01b..5ce2e3c96d 100644 --- a/src/mc/deps/raknet/IRNS2_Berkley.h +++ b/src/mc/deps/raknet/IRNS2_Berkley.h @@ -14,12 +14,6 @@ namespace RakNet { struct RNS2_BerkleyBindParameters; } namespace RakNet { class IRNS2_Berkley : public ::RakNet::RakNetSocket2 { -public: - // prevent constructor by default - IRNS2_Berkley& operator=(IRNS2_Berkley const&); - IRNS2_Berkley(IRNS2_Berkley const&); - IRNS2_Berkley(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/deps/raknet/IncrementalReadInterface.h b/src/mc/deps/raknet/IncrementalReadInterface.h index ed95fc94f5..33cede4df3 100644 --- a/src/mc/deps/raknet/IncrementalReadInterface.h +++ b/src/mc/deps/raknet/IncrementalReadInterface.h @@ -10,12 +10,6 @@ struct FileListNodeContext; namespace RakNet { class IncrementalReadInterface { -public: - // prevent constructor by default - IncrementalReadInterface& operator=(IncrementalReadInterface const&); - IncrementalReadInterface(IncrementalReadInterface const&); - IncrementalReadInterface(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/deps/raknet/NatPunchthroughDebugInterface.h b/src/mc/deps/raknet/NatPunchthroughDebugInterface.h index a37010910d..2fe8409002 100644 --- a/src/mc/deps/raknet/NatPunchthroughDebugInterface.h +++ b/src/mc/deps/raknet/NatPunchthroughDebugInterface.h @@ -5,12 +5,6 @@ namespace RakNet { struct NatPunchthroughDebugInterface { -public: - // prevent constructor by default - NatPunchthroughDebugInterface& operator=(NatPunchthroughDebugInterface const&); - NatPunchthroughDebugInterface(NatPunchthroughDebugInterface const&); - NatPunchthroughDebugInterface(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/deps/raknet/NatPunchthroughDebugInterface_Printf.h b/src/mc/deps/raknet/NatPunchthroughDebugInterface_Printf.h index ea3cdbe55c..93d0704e8e 100644 --- a/src/mc/deps/raknet/NatPunchthroughDebugInterface_Printf.h +++ b/src/mc/deps/raknet/NatPunchthroughDebugInterface_Printf.h @@ -8,12 +8,6 @@ namespace RakNet { struct NatPunchthroughDebugInterface_Printf : public ::RakNet::NatPunchthroughDebugInterface { -public: - // prevent constructor by default - NatPunchthroughDebugInterface_Printf& operator=(NatPunchthroughDebugInterface_Printf const&); - NatPunchthroughDebugInterface_Printf(NatPunchthroughDebugInterface_Printf const&); - NatPunchthroughDebugInterface_Printf(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/deps/raknet/NatPunchthroughServerDebugInterface.h b/src/mc/deps/raknet/NatPunchthroughServerDebugInterface.h index 0970345198..3f3f4a328f 100644 --- a/src/mc/deps/raknet/NatPunchthroughServerDebugInterface.h +++ b/src/mc/deps/raknet/NatPunchthroughServerDebugInterface.h @@ -5,12 +5,6 @@ namespace RakNet { struct NatPunchthroughServerDebugInterface { -public: - // prevent constructor by default - NatPunchthroughServerDebugInterface& operator=(NatPunchthroughServerDebugInterface const&); - NatPunchthroughServerDebugInterface(NatPunchthroughServerDebugInterface const&); - NatPunchthroughServerDebugInterface(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/deps/raknet/NatPunchthroughServerDebugInterface_Printf.h b/src/mc/deps/raknet/NatPunchthroughServerDebugInterface_Printf.h index cf723310c2..ad8a32d3f5 100644 --- a/src/mc/deps/raknet/NatPunchthroughServerDebugInterface_Printf.h +++ b/src/mc/deps/raknet/NatPunchthroughServerDebugInterface_Printf.h @@ -8,12 +8,6 @@ namespace RakNet { struct NatPunchthroughServerDebugInterface_Printf : public ::RakNet::NatPunchthroughServerDebugInterface { -public: - // prevent constructor by default - NatPunchthroughServerDebugInterface_Printf& operator=(NatPunchthroughServerDebugInterface_Printf const&); - NatPunchthroughServerDebugInterface_Printf(NatPunchthroughServerDebugInterface_Printf const&); - NatPunchthroughServerDebugInterface_Printf(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/deps/raknet/PacketOutputWindowLogger.h b/src/mc/deps/raknet/PacketOutputWindowLogger.h index df9c784b2a..61d09ac0f4 100644 --- a/src/mc/deps/raknet/PacketOutputWindowLogger.h +++ b/src/mc/deps/raknet/PacketOutputWindowLogger.h @@ -8,12 +8,6 @@ namespace RakNet { class PacketOutputWindowLogger : public ::RakNet::PacketLogger { -public: - // prevent constructor by default - PacketOutputWindowLogger& operator=(PacketOutputWindowLogger const&); - PacketOutputWindowLogger(PacketOutputWindowLogger const&); - PacketOutputWindowLogger(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/deps/raknet/RNS2EventHandler.h b/src/mc/deps/raknet/RNS2EventHandler.h index fb4ab24c55..d939bcdaa9 100644 --- a/src/mc/deps/raknet/RNS2EventHandler.h +++ b/src/mc/deps/raknet/RNS2EventHandler.h @@ -10,12 +10,6 @@ namespace RakNet { struct RNS2RecvStruct; } namespace RakNet { class RNS2EventHandler { -public: - // prevent constructor by default - RNS2EventHandler& operator=(RNS2EventHandler const&); - RNS2EventHandler(RNS2EventHandler const&); - RNS2EventHandler(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/deps/raknet/RNS2_Windows_Linux_360.h b/src/mc/deps/raknet/RNS2_Windows_Linux_360.h index ea8576591d..c9638e18eb 100644 --- a/src/mc/deps/raknet/RNS2_Windows_Linux_360.h +++ b/src/mc/deps/raknet/RNS2_Windows_Linux_360.h @@ -10,12 +10,6 @@ namespace RakNet { struct RNS2_SendParameters; } namespace RakNet { class RNS2_Windows_Linux_360 { -public: - // prevent constructor by default - RNS2_Windows_Linux_360& operator=(RNS2_Windows_Linux_360 const&); - RNS2_Windows_Linux_360(RNS2_Windows_Linux_360 const&); - RNS2_Windows_Linux_360(); - public: // static functions // NOLINTBEGIN diff --git a/src/mc/deps/raknet/RPC4GlobalRegistration.h b/src/mc/deps/raknet/RPC4GlobalRegistration.h index 2034faca30..a6a1d00271 100644 --- a/src/mc/deps/raknet/RPC4GlobalRegistration.h +++ b/src/mc/deps/raknet/RPC4GlobalRegistration.h @@ -4,12 +4,6 @@ namespace RakNet { -class RPC4GlobalRegistration { -public: - // prevent constructor by default - RPC4GlobalRegistration& operator=(RPC4GlobalRegistration const&); - RPC4GlobalRegistration(RPC4GlobalRegistration const&); - RPC4GlobalRegistration(); -}; +class RPC4GlobalRegistration {}; } // namespace RakNet diff --git a/src/mc/deps/raknet/Rackspace2EventCallback.h b/src/mc/deps/raknet/Rackspace2EventCallback.h index 95c3c340b5..2a82d2f66f 100644 --- a/src/mc/deps/raknet/Rackspace2EventCallback.h +++ b/src/mc/deps/raknet/Rackspace2EventCallback.h @@ -9,12 +9,6 @@ namespace RakNet { class Rackspace2EventCallback { -public: - // prevent constructor by default - Rackspace2EventCallback& operator=(Rackspace2EventCallback const&); - Rackspace2EventCallback(Rackspace2EventCallback const&); - Rackspace2EventCallback(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/deps/raknet/RackspaceEventCallback_Default.h b/src/mc/deps/raknet/RackspaceEventCallback_Default.h index f23fa1092d..136e20bec2 100644 --- a/src/mc/deps/raknet/RackspaceEventCallback_Default.h +++ b/src/mc/deps/raknet/RackspaceEventCallback_Default.h @@ -10,12 +10,6 @@ namespace RakNet { class RackspaceEventCallback_Default : public ::RakNet::Rackspace2EventCallback { -public: - // prevent constructor by default - RackspaceEventCallback_Default& operator=(RackspaceEventCallback_Default const&); - RackspaceEventCallback_Default(RackspaceEventCallback_Default const&); - RackspaceEventCallback_Default(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/deps/raknet/RakNetSocket2Allocator.h b/src/mc/deps/raknet/RakNetSocket2Allocator.h index 223f7aa63b..daae6baa67 100644 --- a/src/mc/deps/raknet/RakNetSocket2Allocator.h +++ b/src/mc/deps/raknet/RakNetSocket2Allocator.h @@ -10,12 +10,6 @@ namespace RakNet { class RakNetSocket2; } namespace RakNet { class RakNetSocket2Allocator { -public: - // prevent constructor by default - RakNetSocket2Allocator& operator=(RakNetSocket2Allocator const&); - RakNetSocket2Allocator(RakNetSocket2Allocator const&); - RakNetSocket2Allocator(); - public: // static functions // NOLINTBEGIN diff --git a/src/mc/deps/raknet/RakStringCleanup.h b/src/mc/deps/raknet/RakStringCleanup.h index 70eca54e46..0414eabb5e 100644 --- a/src/mc/deps/raknet/RakStringCleanup.h +++ b/src/mc/deps/raknet/RakStringCleanup.h @@ -2,10 +2,4 @@ #include "mc/_HeaderOutputPredefine.h" -class RakStringCleanup { -public: - // prevent constructor by default - RakStringCleanup& operator=(RakStringCleanup const&); - RakStringCleanup(RakStringCleanup const&); - RakStringCleanup(); -}; +class RakStringCleanup {}; diff --git a/src/mc/deps/raknet/RakThread.h b/src/mc/deps/raknet/RakThread.h index 46e0b73cea..66902038a6 100644 --- a/src/mc/deps/raknet/RakThread.h +++ b/src/mc/deps/raknet/RakThread.h @@ -5,12 +5,6 @@ namespace RakNet { class RakThread { -public: - // prevent constructor by default - RakThread& operator=(RakThread const&); - RakThread(RakThread const&); - RakThread(); - public: // static functions // NOLINTBEGIN diff --git a/src/mc/deps/raknet/Router2DebugInterface.h b/src/mc/deps/raknet/Router2DebugInterface.h index 3b9f87a62c..77185aeff4 100644 --- a/src/mc/deps/raknet/Router2DebugInterface.h +++ b/src/mc/deps/raknet/Router2DebugInterface.h @@ -5,12 +5,6 @@ namespace RakNet { struct Router2DebugInterface { -public: - // prevent constructor by default - Router2DebugInterface& operator=(Router2DebugInterface const&); - Router2DebugInterface(Router2DebugInterface const&); - Router2DebugInterface(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/deps/raknet/SocketLayer.h b/src/mc/deps/raknet/SocketLayer.h index e52e70034c..db981f0ede 100644 --- a/src/mc/deps/raknet/SocketLayer.h +++ b/src/mc/deps/raknet/SocketLayer.h @@ -11,12 +11,6 @@ namespace RakNet { struct NetworkAdapter; } namespace RakNet { class SocketLayer { -public: - // prevent constructor by default - SocketLayer& operator=(SocketLayer const&); - SocketLayer(SocketLayer const&); - SocketLayer(); - public: // static functions // NOLINTBEGIN diff --git a/src/mc/deps/raknet/SocketLayerOverride.h b/src/mc/deps/raknet/SocketLayerOverride.h index ad3c96410a..1782d60e7d 100644 --- a/src/mc/deps/raknet/SocketLayerOverride.h +++ b/src/mc/deps/raknet/SocketLayerOverride.h @@ -10,12 +10,6 @@ namespace RakNet { struct SystemAddress; } namespace RakNet { class SocketLayerOverride { -public: - // prevent constructor by default - SocketLayerOverride& operator=(SocketLayerOverride const&); - SocketLayerOverride(SocketLayerOverride const&); - SocketLayerOverride(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/deps/raknet/TableSerializer.h b/src/mc/deps/raknet/TableSerializer.h index cfc3cfe850..db0a3fcbc9 100644 --- a/src/mc/deps/raknet/TableSerializer.h +++ b/src/mc/deps/raknet/TableSerializer.h @@ -4,12 +4,6 @@ namespace RakNet { -class TableSerializer { -public: - // prevent constructor by default - TableSerializer& operator=(TableSerializer const&); - TableSerializer(TableSerializer const&); - TableSerializer(); -}; +class TableSerializer {}; } // namespace RakNet diff --git a/src/mc/deps/raknet/ThreadDataInterface.h b/src/mc/deps/raknet/ThreadDataInterface.h index 3cc4636a0d..9c4b929baa 100644 --- a/src/mc/deps/raknet/ThreadDataInterface.h +++ b/src/mc/deps/raknet/ThreadDataInterface.h @@ -3,12 +3,6 @@ #include "mc/_HeaderOutputPredefine.h" class ThreadDataInterface { -public: - // prevent constructor by default - ThreadDataInterface& operator=(ThreadDataInterface const&); - ThreadDataInterface(ThreadDataInterface const&); - ThreadDataInterface(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/deps/raknet/TransportInterface.h b/src/mc/deps/raknet/TransportInterface.h index b88f2ec3d6..37e3116df0 100644 --- a/src/mc/deps/raknet/TransportInterface.h +++ b/src/mc/deps/raknet/TransportInterface.h @@ -12,12 +12,6 @@ namespace RakNet { struct SystemAddress; } namespace RakNet { class TransportInterface { -public: - // prevent constructor by default - TransportInterface& operator=(TransportInterface const&); - TransportInterface(TransportInterface const&); - TransportInterface(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/deps/raknet/UDPProxyClientResultHandler.h b/src/mc/deps/raknet/UDPProxyClientResultHandler.h index 56df679c42..7d6a6b85c7 100644 --- a/src/mc/deps/raknet/UDPProxyClientResultHandler.h +++ b/src/mc/deps/raknet/UDPProxyClientResultHandler.h @@ -12,12 +12,6 @@ namespace RakNet { struct SystemAddress; } namespace RakNet { struct UDPProxyClientResultHandler { -public: - // prevent constructor by default - UDPProxyClientResultHandler& operator=(UDPProxyClientResultHandler const&); - UDPProxyClientResultHandler(UDPProxyClientResultHandler const&); - UDPProxyClientResultHandler(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/deps/raknet/UDPProxyServerResultHandler.h b/src/mc/deps/raknet/UDPProxyServerResultHandler.h index a5eb84fb90..ada0e507bb 100644 --- a/src/mc/deps/raknet/UDPProxyServerResultHandler.h +++ b/src/mc/deps/raknet/UDPProxyServerResultHandler.h @@ -11,12 +11,6 @@ namespace RakNet { class UDPProxyServer; } namespace RakNet { struct UDPProxyServerResultHandler { -public: - // prevent constructor by default - UDPProxyServerResultHandler& operator=(UDPProxyServerResultHandler const&); - UDPProxyServerResultHandler(UDPProxyServerResultHandler const&); - UDPProxyServerResultHandler(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/deps/raknet/WSAStartupSingleton.h b/src/mc/deps/raknet/WSAStartupSingleton.h index ef9ab0f577..b85bba62ff 100644 --- a/src/mc/deps/raknet/WSAStartupSingleton.h +++ b/src/mc/deps/raknet/WSAStartupSingleton.h @@ -3,12 +3,6 @@ #include "mc/_HeaderOutputPredefine.h" class WSAStartupSingleton { -public: - // prevent constructor by default - WSAStartupSingleton& operator=(WSAStartupSingleton const&); - WSAStartupSingleton(WSAStartupSingleton const&); - WSAStartupSingleton(); - public: // static functions // NOLINTBEGIN diff --git a/src/mc/deps/raknet/data_structures/LinkedList.h b/src/mc/deps/raknet/data_structures/LinkedList.h index 1e0480c9b5..fe7bb4aa2c 100644 --- a/src/mc/deps/raknet/data_structures/LinkedList.h +++ b/src/mc/deps/raknet/data_structures/LinkedList.h @@ -5,12 +5,6 @@ namespace DataStructures { template -class LinkedList { -public: - // prevent constructor by default - LinkedList& operator=(LinkedList const&); - LinkedList(LinkedList const&); - LinkedList(); -}; +class LinkedList {}; } // namespace DataStructures diff --git a/src/mc/deps/raknet/data_structures/List.h b/src/mc/deps/raknet/data_structures/List.h index 206ae9a8c6..07ae1f288c 100644 --- a/src/mc/deps/raknet/data_structures/List.h +++ b/src/mc/deps/raknet/data_structures/List.h @@ -5,12 +5,6 @@ namespace DataStructures { template -class List { -public: - // prevent constructor by default - List& operator=(List const&); - List(List const&); - List(); -}; +class List {}; } // namespace DataStructures diff --git a/src/mc/deps/raknet/data_structures/MemoryPool.h b/src/mc/deps/raknet/data_structures/MemoryPool.h index a9f8293bf3..f16f7ac221 100644 --- a/src/mc/deps/raknet/data_structures/MemoryPool.h +++ b/src/mc/deps/raknet/data_structures/MemoryPool.h @@ -5,12 +5,6 @@ namespace DataStructures { template -class MemoryPool { -public: - // prevent constructor by default - MemoryPool& operator=(MemoryPool const&); - MemoryPool(MemoryPool const&); - MemoryPool(); -}; +class MemoryPool {}; } // namespace DataStructures diff --git a/src/mc/deps/raknet/data_structures/Queue.h b/src/mc/deps/raknet/data_structures/Queue.h index 5ef0614d7c..0b2f567ccb 100644 --- a/src/mc/deps/raknet/data_structures/Queue.h +++ b/src/mc/deps/raknet/data_structures/Queue.h @@ -5,12 +5,6 @@ namespace DataStructures { template -class Queue { -public: - // prevent constructor by default - Queue& operator=(Queue const&); - Queue(Queue const&); - Queue(); -}; +class Queue {}; } // namespace DataStructures diff --git a/src/mc/deps/raknet/data_structures/ThreadsafeAllocatingQueue.h b/src/mc/deps/raknet/data_structures/ThreadsafeAllocatingQueue.h index 50e7b6ad11..a8138aa728 100644 --- a/src/mc/deps/raknet/data_structures/ThreadsafeAllocatingQueue.h +++ b/src/mc/deps/raknet/data_structures/ThreadsafeAllocatingQueue.h @@ -5,12 +5,6 @@ namespace DataStructures { template -class ThreadsafeAllocatingQueue { -public: - // prevent constructor by default - ThreadsafeAllocatingQueue& operator=(ThreadsafeAllocatingQueue const&); - ThreadsafeAllocatingQueue(ThreadsafeAllocatingQueue const&); - ThreadsafeAllocatingQueue(); -}; +class ThreadsafeAllocatingQueue {}; } // namespace DataStructures diff --git a/src/mc/deps/renderer/hal/interface/Texture.h b/src/mc/deps/renderer/hal/interface/Texture.h index 8ec86f01b6..46377beb32 100644 --- a/src/mc/deps/renderer/hal/interface/Texture.h +++ b/src/mc/deps/renderer/hal/interface/Texture.h @@ -4,12 +4,6 @@ namespace mce { -class Texture { -public: - // prevent constructor by default - Texture& operator=(Texture const&); - Texture(Texture const&); - Texture(); -}; +class Texture {}; } // namespace mce diff --git a/src/mc/deps/resource_processing/Builder.h b/src/mc/deps/resource_processing/Builder.h index 69815ac6c8..ab716c4784 100644 --- a/src/mc/deps/resource_processing/Builder.h +++ b/src/mc/deps/resource_processing/Builder.h @@ -8,12 +8,6 @@ namespace Bedrock::Resources::Archive { class Builder : public ::Bedrock::ImplBase<::Bedrock::Resources::Archive::Builder> { -public: - // prevent constructor by default - Builder& operator=(Builder const&); - Builder(Builder const&); - Builder(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/deps/resource_processing/PreloadCache.h b/src/mc/deps/resource_processing/PreloadCache.h index 097e8dd84f..5370466e3d 100644 --- a/src/mc/deps/resource_processing/PreloadCache.h +++ b/src/mc/deps/resource_processing/PreloadCache.h @@ -23,13 +23,7 @@ class PreloadCache : public ::std::enable_shared_from_this<::Bedrock::Resources: // clang-format on // PreloadCache inner types define - struct SharedOnlyConstructionTag { - public: - // prevent constructor by default - SharedOnlyConstructionTag& operator=(SharedOnlyConstructionTag const&); - SharedOnlyConstructionTag(SharedOnlyConstructionTag const&); - SharedOnlyConstructionTag(); - }; + struct SharedOnlyConstructionTag {}; struct PreloadedContentMaps { public: diff --git a/src/mc/deps/resource_processing/Reader.h b/src/mc/deps/resource_processing/Reader.h index 49620daaf2..5961166650 100644 --- a/src/mc/deps/resource_processing/Reader.h +++ b/src/mc/deps/resource_processing/Reader.h @@ -15,12 +15,6 @@ namespace Bedrock::Resources::Archive { class Reader : public ::Bedrock:: ImplBase<::Bedrock::Resources::Archive::Reader, ::Bedrock::ImplCtor(::std::unique_ptr, uint64 const&)> { -public: - // prevent constructor by default - Reader& operator=(Reader const&); - Reader(Reader const&); - Reader(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/deps/shared_types/Color255RGB.h b/src/mc/deps/shared_types/Color255RGB.h index 31f58e5d71..f5c3be9344 100644 --- a/src/mc/deps/shared_types/Color255RGB.h +++ b/src/mc/deps/shared_types/Color255RGB.h @@ -7,12 +7,6 @@ namespace SharedTypes { -struct Color255RGB : public ::Detail::ColorBase { -public: - // prevent constructor by default - Color255RGB& operator=(Color255RGB const&); - Color255RGB(Color255RGB const&); - Color255RGB(); -}; +struct Color255RGB : public ::Detail::ColorBase {}; } // namespace SharedTypes diff --git a/src/mc/deps/shared_types/Color255RGBA.h b/src/mc/deps/shared_types/Color255RGBA.h index fbc1836e9c..5feedfadc3 100644 --- a/src/mc/deps/shared_types/Color255RGBA.h +++ b/src/mc/deps/shared_types/Color255RGBA.h @@ -7,12 +7,6 @@ namespace SharedTypes { -struct Color255RGBA : public ::Detail::ColorBase { -public: - // prevent constructor by default - Color255RGBA& operator=(Color255RGBA const&); - Color255RGBA(Color255RGBA const&); - Color255RGBA(); -}; +struct Color255RGBA : public ::Detail::ColorBase {}; } // namespace SharedTypes diff --git a/src/mc/deps/shared_types/EventIdentifierConstraint.h b/src/mc/deps/shared_types/EventIdentifierConstraint.h index 68b97b8786..9c835da754 100644 --- a/src/mc/deps/shared_types/EventIdentifierConstraint.h +++ b/src/mc/deps/shared_types/EventIdentifierConstraint.h @@ -14,12 +14,6 @@ namespace cereal::internal { struct ConstraintDescription; } namespace SharedTypes { class EventIdentifierConstraint : public ::cereal::Constraint { -public: - // prevent constructor by default - EventIdentifierConstraint& operator=(EventIdentifierConstraint const&); - EventIdentifierConstraint(EventIdentifierConstraint const&); - EventIdentifierConstraint(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/deps/shared_types/ParticleCurveBase.h b/src/mc/deps/shared_types/ParticleCurveBase.h index aa9d2c4655..974a16c0b6 100644 --- a/src/mc/deps/shared_types/ParticleCurveBase.h +++ b/src/mc/deps/shared_types/ParticleCurveBase.h @@ -4,12 +4,6 @@ namespace SharedTypes::v1_21 { -struct ParticleCurveBase { -public: - // prevent constructor by default - ParticleCurveBase& operator=(ParticleCurveBase const&); - ParticleCurveBase(ParticleCurveBase const&); - ParticleCurveBase(); -}; +struct ParticleCurveBase {}; } // namespace SharedTypes::v1_21 diff --git a/src/mc/deps/shared_types/ParticleEffectComponent.h b/src/mc/deps/shared_types/ParticleEffectComponent.h index 711a0f90fd..3dd3cce50c 100644 --- a/src/mc/deps/shared_types/ParticleEffectComponent.h +++ b/src/mc/deps/shared_types/ParticleEffectComponent.h @@ -10,12 +10,6 @@ class HashedString; namespace SharedTypes::v1_21 { struct ParticleEffectComponent { -public: - // prevent constructor by default - ParticleEffectComponent& operator=(ParticleEffectComponent const&); - ParticleEffectComponent(ParticleEffectComponent const&); - ParticleEffectComponent(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/deps/shared_types/v1_20_50/BlockDescriptorProxyConstraint.h b/src/mc/deps/shared_types/v1_20_50/BlockDescriptorProxyConstraint.h index 1a3cec3684..3e178f14c0 100644 --- a/src/mc/deps/shared_types/v1_20_50/BlockDescriptorProxyConstraint.h +++ b/src/mc/deps/shared_types/v1_20_50/BlockDescriptorProxyConstraint.h @@ -15,12 +15,6 @@ namespace cereal::internal { struct ConstraintDescription; } namespace SharedTypes::v1_20_50::BlockDescriptorSerializer { class BlockDescriptorProxyConstraint : public ::cereal::Constraint { -public: - // prevent constructor by default - BlockDescriptorProxyConstraint& operator=(BlockDescriptorProxyConstraint const&); - BlockDescriptorProxyConstraint(BlockDescriptorProxyConstraint const&); - BlockDescriptorProxyConstraint(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/deps/shared_types/v1_20_50/EnchantSlotConstraint.h b/src/mc/deps/shared_types/v1_20_50/EnchantSlotConstraint.h index 6b9c2a6dda..12a1546067 100644 --- a/src/mc/deps/shared_types/v1_20_50/EnchantSlotConstraint.h +++ b/src/mc/deps/shared_types/v1_20_50/EnchantSlotConstraint.h @@ -14,12 +14,6 @@ namespace cereal::internal { struct ConstraintDescription; } namespace SharedTypes::v1_20_50 { class EnchantSlotConstraint : public ::cereal::Constraint { -public: - // prevent constructor by default - EnchantSlotConstraint& operator=(EnchantSlotConstraint const&); - EnchantSlotConstraint(EnchantSlotConstraint const&); - EnchantSlotConstraint(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/deps/shared_types/v1_20_60/IBiomeJsonComponent.h b/src/mc/deps/shared_types/v1_20_60/IBiomeJsonComponent.h index 892faf7563..67665e4ff5 100644 --- a/src/mc/deps/shared_types/v1_20_60/IBiomeJsonComponent.h +++ b/src/mc/deps/shared_types/v1_20_60/IBiomeJsonComponent.h @@ -5,12 +5,6 @@ namespace SharedTypes::v1_20_60 { struct IBiomeJsonComponent { -public: - // prevent constructor by default - IBiomeJsonComponent& operator=(IBiomeJsonComponent const&); - IBiomeJsonComponent(IBiomeJsonComponent const&); - IBiomeJsonComponent(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/deps/shared_types/v1_20_60/TheEndSurfaceBiomeJsonComponent.h b/src/mc/deps/shared_types/v1_20_60/TheEndSurfaceBiomeJsonComponent.h index c3f3f39508..574262df55 100644 --- a/src/mc/deps/shared_types/v1_20_60/TheEndSurfaceBiomeJsonComponent.h +++ b/src/mc/deps/shared_types/v1_20_60/TheEndSurfaceBiomeJsonComponent.h @@ -13,12 +13,6 @@ namespace cereal { struct ReflectionCtx; } namespace SharedTypes::v1_20_60 { struct TheEndSurfaceBiomeJsonComponent : public ::SharedTypes::v1_20_60::IBiomeJsonComponent { -public: - // prevent constructor by default - TheEndSurfaceBiomeJsonComponent& operator=(TheEndSurfaceBiomeJsonComponent const&); - TheEndSurfaceBiomeJsonComponent(TheEndSurfaceBiomeJsonComponent const&); - TheEndSurfaceBiomeJsonComponent(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/deps/shared_types/v1_21_30/QuantityConstraint.h b/src/mc/deps/shared_types/v1_21_30/QuantityConstraint.h index eca6ace480..beb4d70d2e 100644 --- a/src/mc/deps/shared_types/v1_21_30/QuantityConstraint.h +++ b/src/mc/deps/shared_types/v1_21_30/QuantityConstraint.h @@ -14,12 +14,6 @@ namespace cereal::internal { struct ConstraintDescription; } namespace SharedTypes::v1_21_30 { struct QuantityConstraint : public ::cereal::Constraint { -public: - // prevent constructor by default - QuantityConstraint& operator=(QuantityConstraint const&); - QuantityConstraint(QuantityConstraint const&); - QuantityConstraint(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/deps/vanilla_components/ActorAddedFlagComponent.h b/src/mc/deps/vanilla_components/ActorAddedFlagComponent.h index 8834336d79..65eefd0828 100644 --- a/src/mc/deps/vanilla_components/ActorAddedFlagComponent.h +++ b/src/mc/deps/vanilla_components/ActorAddedFlagComponent.h @@ -2,10 +2,4 @@ #include "mc/_HeaderOutputPredefine.h" -struct ActorAddedFlagComponent { -public: - // prevent constructor by default - ActorAddedFlagComponent& operator=(ActorAddedFlagComponent const&); - ActorAddedFlagComponent(ActorAddedFlagComponent const&); - ActorAddedFlagComponent(); -}; +struct ActorAddedFlagComponent {}; diff --git a/src/mc/deps/vanilla_components/ActorChunkMoveFlagComponent.h b/src/mc/deps/vanilla_components/ActorChunkMoveFlagComponent.h index f59ea091ed..2a53fceaae 100644 --- a/src/mc/deps/vanilla_components/ActorChunkMoveFlagComponent.h +++ b/src/mc/deps/vanilla_components/ActorChunkMoveFlagComponent.h @@ -2,10 +2,4 @@ #include "mc/_HeaderOutputPredefine.h" -struct ActorChunkMoveFlagComponent { -public: - // prevent constructor by default - ActorChunkMoveFlagComponent& operator=(ActorChunkMoveFlagComponent const&); - ActorChunkMoveFlagComponent(ActorChunkMoveFlagComponent const&); - ActorChunkMoveFlagComponent(); -}; +struct ActorChunkMoveFlagComponent {}; diff --git a/src/mc/deps/vanilla_components/ActorComponent.h b/src/mc/deps/vanilla_components/ActorComponent.h index 97288206ec..a4f12798a7 100644 --- a/src/mc/deps/vanilla_components/ActorComponent.h +++ b/src/mc/deps/vanilla_components/ActorComponent.h @@ -2,10 +2,4 @@ #include "mc/_HeaderOutputPredefine.h" -struct ActorComponent { -public: - // prevent constructor by default - ActorComponent& operator=(ActorComponent const&); - ActorComponent(ActorComponent const&); - ActorComponent(); -}; +struct ActorComponent {}; diff --git a/src/mc/deps/vanilla_components/ActorDataBoundingBoxComponent.h b/src/mc/deps/vanilla_components/ActorDataBoundingBoxComponent.h index 7ec65659e3..3599b23d1b 100644 --- a/src/mc/deps/vanilla_components/ActorDataBoundingBoxComponent.h +++ b/src/mc/deps/vanilla_components/ActorDataBoundingBoxComponent.h @@ -13,10 +13,4 @@ struct ActorDataBoundingBoxComponent : public ::ActorDataComponentBase<::std::ar Width = 1, Height = 2, }; - -public: - // prevent constructor by default - ActorDataBoundingBoxComponent& operator=(ActorDataBoundingBoxComponent const&); - ActorDataBoundingBoxComponent(ActorDataBoundingBoxComponent const&); - ActorDataBoundingBoxComponent(); }; diff --git a/src/mc/deps/vanilla_components/ActorDataComponentBase.h b/src/mc/deps/vanilla_components/ActorDataComponentBase.h index e16148366b..88b794da11 100644 --- a/src/mc/deps/vanilla_components/ActorDataComponentBase.h +++ b/src/mc/deps/vanilla_components/ActorDataComponentBase.h @@ -3,10 +3,4 @@ #include "mc/_HeaderOutputPredefine.h" template -class ActorDataComponentBase { -public: - // prevent constructor by default - ActorDataComponentBase& operator=(ActorDataComponentBase const&); - ActorDataComponentBase(ActorDataComponentBase const&); - ActorDataComponentBase(); -}; +class ActorDataComponentBase {}; diff --git a/src/mc/deps/vanilla_components/ActorDataComponentBaseInt32.h b/src/mc/deps/vanilla_components/ActorDataComponentBaseInt32.h index 93c4c2f0fb..599eb7c994 100644 --- a/src/mc/deps/vanilla_components/ActorDataComponentBaseInt32.h +++ b/src/mc/deps/vanilla_components/ActorDataComponentBaseInt32.h @@ -5,10 +5,4 @@ // auto generated inclusion list #include "mc/deps/vanilla_components/ActorDataComponentBase.h" -struct ActorDataComponentBaseInt32 : public ::ActorDataComponentBase { -public: - // prevent constructor by default - ActorDataComponentBaseInt32& operator=(ActorDataComponentBaseInt32 const&); - ActorDataComponentBaseInt32(ActorDataComponentBaseInt32 const&); - ActorDataComponentBaseInt32(); -}; +struct ActorDataComponentBaseInt32 : public ::ActorDataComponentBase {}; diff --git a/src/mc/deps/vanilla_components/ActorDataComponentBaseInt8.h b/src/mc/deps/vanilla_components/ActorDataComponentBaseInt8.h index 8d50c02ed0..6f81e6f915 100644 --- a/src/mc/deps/vanilla_components/ActorDataComponentBaseInt8.h +++ b/src/mc/deps/vanilla_components/ActorDataComponentBaseInt8.h @@ -5,10 +5,4 @@ // auto generated inclusion list #include "mc/deps/vanilla_components/ActorDataComponentBase.h" -struct ActorDataComponentBaseInt8 : public ::ActorDataComponentBase { -public: - // prevent constructor by default - ActorDataComponentBaseInt8& operator=(ActorDataComponentBaseInt8 const&); - ActorDataComponentBaseInt8(ActorDataComponentBaseInt8 const&); - ActorDataComponentBaseInt8(); -}; +struct ActorDataComponentBaseInt8 : public ::ActorDataComponentBase {}; diff --git a/src/mc/deps/vanilla_components/ActorDataComponentBaseVec3.h b/src/mc/deps/vanilla_components/ActorDataComponentBaseVec3.h index c8d479596c..d1d39f7652 100644 --- a/src/mc/deps/vanilla_components/ActorDataComponentBaseVec3.h +++ b/src/mc/deps/vanilla_components/ActorDataComponentBaseVec3.h @@ -10,10 +10,4 @@ class Vec3; // clang-format on -struct ActorDataComponentBaseVec3 : public ::ActorDataComponentBase<::Vec3> { -public: - // prevent constructor by default - ActorDataComponentBaseVec3& operator=(ActorDataComponentBaseVec3 const&); - ActorDataComponentBaseVec3(ActorDataComponentBaseVec3 const&); - ActorDataComponentBaseVec3(); -}; +struct ActorDataComponentBaseVec3 : public ::ActorDataComponentBase<::Vec3> {}; diff --git a/src/mc/deps/vanilla_components/ActorDataControllingSeatIndexComponent.h b/src/mc/deps/vanilla_components/ActorDataControllingSeatIndexComponent.h index 87516b58c0..696a49cbde 100644 --- a/src/mc/deps/vanilla_components/ActorDataControllingSeatIndexComponent.h +++ b/src/mc/deps/vanilla_components/ActorDataControllingSeatIndexComponent.h @@ -5,10 +5,4 @@ // auto generated inclusion list #include "mc/deps/vanilla_components/ActorDataComponentBaseInt8.h" -struct ActorDataControllingSeatIndexComponent : public ::ActorDataComponentBaseInt8 { -public: - // prevent constructor by default - ActorDataControllingSeatIndexComponent& operator=(ActorDataControllingSeatIndexComponent const&); - ActorDataControllingSeatIndexComponent(ActorDataControllingSeatIndexComponent const&); - ActorDataControllingSeatIndexComponent(); -}; +struct ActorDataControllingSeatIndexComponent : public ::ActorDataComponentBaseInt8 {}; diff --git a/src/mc/deps/vanilla_components/ActorDataFlagComponent.h b/src/mc/deps/vanilla_components/ActorDataFlagComponent.h index 02213cb76d..730ac555f4 100644 --- a/src/mc/deps/vanilla_components/ActorDataFlagComponent.h +++ b/src/mc/deps/vanilla_components/ActorDataFlagComponent.h @@ -7,12 +7,6 @@ #include "mc/world/actor/ActorFlags.h" struct ActorDataFlagComponent : public ::ActorDataComponentBase<::std::bitset<119>> { -public: - // prevent constructor by default - ActorDataFlagComponent& operator=(ActorDataFlagComponent const&); - ActorDataFlagComponent(ActorDataFlagComponent const&); - ActorDataFlagComponent(); - public: // member functions // NOLINTBEGIN diff --git a/src/mc/deps/vanilla_components/ActorDataHorseFlagComponent.h b/src/mc/deps/vanilla_components/ActorDataHorseFlagComponent.h index ff0c00fe3a..9e107266da 100644 --- a/src/mc/deps/vanilla_components/ActorDataHorseFlagComponent.h +++ b/src/mc/deps/vanilla_components/ActorDataHorseFlagComponent.h @@ -5,10 +5,4 @@ // auto generated inclusion list #include "mc/deps/vanilla_components/ActorDataComponentBaseInt32.h" -struct ActorDataHorseFlagComponent : public ::ActorDataComponentBaseInt32 { -public: - // prevent constructor by default - ActorDataHorseFlagComponent& operator=(ActorDataHorseFlagComponent const&); - ActorDataHorseFlagComponent(ActorDataHorseFlagComponent const&); - ActorDataHorseFlagComponent(); -}; +struct ActorDataHorseFlagComponent : public ::ActorDataComponentBaseInt32 {}; diff --git a/src/mc/deps/vanilla_components/ActorDataHorseTypeComponent.h b/src/mc/deps/vanilla_components/ActorDataHorseTypeComponent.h index 21e206054f..ae6f346595 100644 --- a/src/mc/deps/vanilla_components/ActorDataHorseTypeComponent.h +++ b/src/mc/deps/vanilla_components/ActorDataHorseTypeComponent.h @@ -5,10 +5,4 @@ // auto generated inclusion list #include "mc/deps/vanilla_components/ActorDataComponentBaseInt32.h" -struct ActorDataHorseTypeComponent : public ::ActorDataComponentBaseInt32 { -public: - // prevent constructor by default - ActorDataHorseTypeComponent& operator=(ActorDataHorseTypeComponent const&); - ActorDataHorseTypeComponent(ActorDataHorseTypeComponent const&); - ActorDataHorseTypeComponent(); -}; +struct ActorDataHorseTypeComponent : public ::ActorDataComponentBaseInt32 {}; diff --git a/src/mc/deps/vanilla_components/ActorDataJumpDurationComponent.h b/src/mc/deps/vanilla_components/ActorDataJumpDurationComponent.h index 2488f89007..46f0cb828d 100644 --- a/src/mc/deps/vanilla_components/ActorDataJumpDurationComponent.h +++ b/src/mc/deps/vanilla_components/ActorDataJumpDurationComponent.h @@ -5,10 +5,4 @@ // auto generated inclusion list #include "mc/deps/vanilla_components/ActorDataComponentBaseInt8.h" -struct ActorDataJumpDurationComponent : public ::ActorDataComponentBaseInt8 { -public: - // prevent constructor by default - ActorDataJumpDurationComponent& operator=(ActorDataJumpDurationComponent const&); - ActorDataJumpDurationComponent(ActorDataJumpDurationComponent const&); - ActorDataJumpDurationComponent(); -}; +struct ActorDataJumpDurationComponent : public ::ActorDataComponentBaseInt8 {}; diff --git a/src/mc/deps/vanilla_components/ActorDataSeatOffsetComponent.h b/src/mc/deps/vanilla_components/ActorDataSeatOffsetComponent.h index 2cc0630462..0f4e696f0b 100644 --- a/src/mc/deps/vanilla_components/ActorDataSeatOffsetComponent.h +++ b/src/mc/deps/vanilla_components/ActorDataSeatOffsetComponent.h @@ -5,10 +5,4 @@ // auto generated inclusion list #include "mc/deps/vanilla_components/ActorDataComponentBaseVec3.h" -struct ActorDataSeatOffsetComponent : public ::ActorDataComponentBaseVec3 { -public: - // prevent constructor by default - ActorDataSeatOffsetComponent& operator=(ActorDataSeatOffsetComponent const&); - ActorDataSeatOffsetComponent(ActorDataSeatOffsetComponent const&); - ActorDataSeatOffsetComponent(); -}; +struct ActorDataSeatOffsetComponent : public ::ActorDataComponentBaseVec3 {}; diff --git a/src/mc/deps/vanilla_components/ActorHeadInWaterFlagComponent.h b/src/mc/deps/vanilla_components/ActorHeadInWaterFlagComponent.h index cf7809a820..17895ceb8b 100644 --- a/src/mc/deps/vanilla_components/ActorHeadInWaterFlagComponent.h +++ b/src/mc/deps/vanilla_components/ActorHeadInWaterFlagComponent.h @@ -2,10 +2,4 @@ #include "mc/_HeaderOutputPredefine.h" -struct ActorHeadInWaterFlagComponent { -public: - // prevent constructor by default - ActorHeadInWaterFlagComponent& operator=(ActorHeadInWaterFlagComponent const&); - ActorHeadInWaterFlagComponent(ActorHeadInWaterFlagComponent const&); - ActorHeadInWaterFlagComponent(); -}; +struct ActorHeadInWaterFlagComponent {}; diff --git a/src/mc/deps/vanilla_components/ActorHeadWasInWaterFlagComponent.h b/src/mc/deps/vanilla_components/ActorHeadWasInWaterFlagComponent.h index f822d09ccc..232af847ef 100644 --- a/src/mc/deps/vanilla_components/ActorHeadWasInWaterFlagComponent.h +++ b/src/mc/deps/vanilla_components/ActorHeadWasInWaterFlagComponent.h @@ -2,10 +2,4 @@ #include "mc/_HeaderOutputPredefine.h" -struct ActorHeadWasInWaterFlagComponent { -public: - // prevent constructor by default - ActorHeadWasInWaterFlagComponent& operator=(ActorHeadWasInWaterFlagComponent const&); - ActorHeadWasInWaterFlagComponent(ActorHeadWasInWaterFlagComponent const&); - ActorHeadWasInWaterFlagComponent(); -}; +struct ActorHeadWasInWaterFlagComponent {}; diff --git a/src/mc/deps/vanilla_components/ActorIsImmobileFlagComponent.h b/src/mc/deps/vanilla_components/ActorIsImmobileFlagComponent.h index 0cb8ac9367..d5ae849acd 100644 --- a/src/mc/deps/vanilla_components/ActorIsImmobileFlagComponent.h +++ b/src/mc/deps/vanilla_components/ActorIsImmobileFlagComponent.h @@ -2,10 +2,4 @@ #include "mc/_HeaderOutputPredefine.h" -struct ActorIsImmobileFlagComponent { -public: - // prevent constructor by default - ActorIsImmobileFlagComponent& operator=(ActorIsImmobileFlagComponent const&); - ActorIsImmobileFlagComponent(ActorIsImmobileFlagComponent const&); - ActorIsImmobileFlagComponent(); -}; +struct ActorIsImmobileFlagComponent {}; diff --git a/src/mc/deps/vanilla_components/ActorIsKnockedBackOnDeathFlagComponent.h b/src/mc/deps/vanilla_components/ActorIsKnockedBackOnDeathFlagComponent.h index 856694d901..6c17ff7a3a 100644 --- a/src/mc/deps/vanilla_components/ActorIsKnockedBackOnDeathFlagComponent.h +++ b/src/mc/deps/vanilla_components/ActorIsKnockedBackOnDeathFlagComponent.h @@ -2,10 +2,4 @@ #include "mc/_HeaderOutputPredefine.h" -struct ActorIsKnockedBackOnDeathFlagComponent { -public: - // prevent constructor by default - ActorIsKnockedBackOnDeathFlagComponent& operator=(ActorIsKnockedBackOnDeathFlagComponent const&); - ActorIsKnockedBackOnDeathFlagComponent(ActorIsKnockedBackOnDeathFlagComponent const&); - ActorIsKnockedBackOnDeathFlagComponent(); -}; +struct ActorIsKnockedBackOnDeathFlagComponent {}; diff --git a/src/mc/deps/vanilla_components/ActorLocalPlayerEntityMovedFlagComponent.h b/src/mc/deps/vanilla_components/ActorLocalPlayerEntityMovedFlagComponent.h index df7a679301..5e5f0b9727 100644 --- a/src/mc/deps/vanilla_components/ActorLocalPlayerEntityMovedFlagComponent.h +++ b/src/mc/deps/vanilla_components/ActorLocalPlayerEntityMovedFlagComponent.h @@ -2,10 +2,4 @@ #include "mc/_HeaderOutputPredefine.h" -struct ActorLocalPlayerEntityMovedFlagComponent { -public: - // prevent constructor by default - ActorLocalPlayerEntityMovedFlagComponent& operator=(ActorLocalPlayerEntityMovedFlagComponent const&); - ActorLocalPlayerEntityMovedFlagComponent(ActorLocalPlayerEntityMovedFlagComponent const&); - ActorLocalPlayerEntityMovedFlagComponent(); -}; +struct ActorLocalPlayerEntityMovedFlagComponent {}; diff --git a/src/mc/deps/vanilla_components/ActorRemovedFlagComponent.h b/src/mc/deps/vanilla_components/ActorRemovedFlagComponent.h index 749d8f3724..9714ae29e3 100644 --- a/src/mc/deps/vanilla_components/ActorRemovedFlagComponent.h +++ b/src/mc/deps/vanilla_components/ActorRemovedFlagComponent.h @@ -2,10 +2,4 @@ #include "mc/_HeaderOutputPredefine.h" -struct ActorRemovedFlagComponent { -public: - // prevent constructor by default - ActorRemovedFlagComponent& operator=(ActorRemovedFlagComponent const&); - ActorRemovedFlagComponent(ActorRemovedFlagComponent const&); - ActorRemovedFlagComponent(); -}; +struct ActorRemovedFlagComponent {}; diff --git a/src/mc/deps/vanilla_components/AgentFlagComponent.h b/src/mc/deps/vanilla_components/AgentFlagComponent.h index ef0a9aff52..191b932347 100644 --- a/src/mc/deps/vanilla_components/AgentFlagComponent.h +++ b/src/mc/deps/vanilla_components/AgentFlagComponent.h @@ -2,10 +2,4 @@ #include "mc/_HeaderOutputPredefine.h" -struct AgentFlagComponent { -public: - // prevent constructor by default - AgentFlagComponent& operator=(AgentFlagComponent const&); - AgentFlagComponent(AgentFlagComponent const&); - AgentFlagComponent(); -}; +struct AgentFlagComponent {}; diff --git a/src/mc/deps/vanilla_components/BatFlagComponent.h b/src/mc/deps/vanilla_components/BatFlagComponent.h index f37105ba31..d46c0ff35c 100644 --- a/src/mc/deps/vanilla_components/BatFlagComponent.h +++ b/src/mc/deps/vanilla_components/BatFlagComponent.h @@ -2,10 +2,4 @@ #include "mc/_HeaderOutputPredefine.h" -struct BatFlagComponent { -public: - // prevent constructor by default - BatFlagComponent& operator=(BatFlagComponent const&); - BatFlagComponent(BatFlagComponent const&); - BatFlagComponent(); -}; +struct BatFlagComponent {}; diff --git a/src/mc/deps/vanilla_components/BeeFlagComponent.h b/src/mc/deps/vanilla_components/BeeFlagComponent.h index 5c0500fef1..d4c8d7e683 100644 --- a/src/mc/deps/vanilla_components/BeeFlagComponent.h +++ b/src/mc/deps/vanilla_components/BeeFlagComponent.h @@ -2,10 +2,4 @@ #include "mc/_HeaderOutputPredefine.h" -struct BeeFlagComponent { -public: - // prevent constructor by default - BeeFlagComponent& operator=(BeeFlagComponent const&); - BeeFlagComponent(BeeFlagComponent const&); - BeeFlagComponent(); -}; +struct BeeFlagComponent {}; diff --git a/src/mc/deps/vanilla_components/BlazeFlagComponent.h b/src/mc/deps/vanilla_components/BlazeFlagComponent.h index 66f505a64d..ccf4f970eb 100644 --- a/src/mc/deps/vanilla_components/BlazeFlagComponent.h +++ b/src/mc/deps/vanilla_components/BlazeFlagComponent.h @@ -2,10 +2,4 @@ #include "mc/_HeaderOutputPredefine.h" -struct BlazeFlagComponent { -public: - // prevent constructor by default - BlazeFlagComponent& operator=(BlazeFlagComponent const&); - BlazeFlagComponent(BlazeFlagComponent const&); - BlazeFlagComponent(); -}; +struct BlazeFlagComponent {}; diff --git a/src/mc/deps/vanilla_components/BoatFlagComponent.h b/src/mc/deps/vanilla_components/BoatFlagComponent.h index 76943dfe8a..daac9c08a3 100644 --- a/src/mc/deps/vanilla_components/BoatFlagComponent.h +++ b/src/mc/deps/vanilla_components/BoatFlagComponent.h @@ -2,10 +2,4 @@ #include "mc/_HeaderOutputPredefine.h" -struct BoatFlagComponent { -public: - // prevent constructor by default - BoatFlagComponent& operator=(BoatFlagComponent const&); - BoatFlagComponent(BoatFlagComponent const&); - BoatFlagComponent(); -}; +struct BoatFlagComponent {}; diff --git a/src/mc/deps/vanilla_components/CamelFlagComponent.h b/src/mc/deps/vanilla_components/CamelFlagComponent.h index 6db2dcb7ce..b790a36e60 100644 --- a/src/mc/deps/vanilla_components/CamelFlagComponent.h +++ b/src/mc/deps/vanilla_components/CamelFlagComponent.h @@ -2,10 +2,4 @@ #include "mc/_HeaderOutputPredefine.h" -struct CamelFlagComponent { -public: - // prevent constructor by default - CamelFlagComponent& operator=(CamelFlagComponent const&); - CamelFlagComponent(CamelFlagComponent const&); - CamelFlagComponent(); -}; +struct CamelFlagComponent {}; diff --git a/src/mc/deps/vanilla_components/CanVehicleSprintFlagComponent.h b/src/mc/deps/vanilla_components/CanVehicleSprintFlagComponent.h index e7ae435b08..563e694fda 100644 --- a/src/mc/deps/vanilla_components/CanVehicleSprintFlagComponent.h +++ b/src/mc/deps/vanilla_components/CanVehicleSprintFlagComponent.h @@ -2,10 +2,4 @@ #include "mc/_HeaderOutputPredefine.h" -struct CanVehicleSprintFlagComponent { -public: - // prevent constructor by default - CanVehicleSprintFlagComponent& operator=(CanVehicleSprintFlagComponent const&); - CanVehicleSprintFlagComponent(CanVehicleSprintFlagComponent const&); - CanVehicleSprintFlagComponent(); -}; +struct CanVehicleSprintFlagComponent {}; diff --git a/src/mc/deps/vanilla_components/ChickenFlagComponent.h b/src/mc/deps/vanilla_components/ChickenFlagComponent.h index 11fb1b10d3..b9f2145a6f 100644 --- a/src/mc/deps/vanilla_components/ChickenFlagComponent.h +++ b/src/mc/deps/vanilla_components/ChickenFlagComponent.h @@ -2,10 +2,4 @@ #include "mc/_HeaderOutputPredefine.h" -struct ChickenFlagComponent { -public: - // prevent constructor by default - ChickenFlagComponent& operator=(ChickenFlagComponent const&); - ChickenFlagComponent(ChickenFlagComponent const&); - ChickenFlagComponent(); -}; +struct ChickenFlagComponent {}; diff --git a/src/mc/deps/vanilla_components/CollidableMobNearFlagComponent.h b/src/mc/deps/vanilla_components/CollidableMobNearFlagComponent.h index 2c00d004b4..e246305dc0 100644 --- a/src/mc/deps/vanilla_components/CollidableMobNearFlagComponent.h +++ b/src/mc/deps/vanilla_components/CollidableMobNearFlagComponent.h @@ -2,10 +2,4 @@ #include "mc/_HeaderOutputPredefine.h" -struct CollidableMobNearFlagComponent { -public: - // prevent constructor by default - CollidableMobNearFlagComponent& operator=(CollidableMobNearFlagComponent const&); - CollidableMobNearFlagComponent(CollidableMobNearFlagComponent const&); - CollidableMobNearFlagComponent(); -}; +struct CollidableMobNearFlagComponent {}; diff --git a/src/mc/deps/vanilla_components/CollisionFlagComponent.h b/src/mc/deps/vanilla_components/CollisionFlagComponent.h index a4419765ae..b9486ba0c9 100644 --- a/src/mc/deps/vanilla_components/CollisionFlagComponent.h +++ b/src/mc/deps/vanilla_components/CollisionFlagComponent.h @@ -2,10 +2,4 @@ #include "mc/_HeaderOutputPredefine.h" -struct CollisionFlagComponent { -public: - // prevent constructor by default - CollisionFlagComponent& operator=(CollisionFlagComponent const&); - CollisionFlagComponent(CollisionFlagComponent const&); - CollisionFlagComponent(); -}; +struct CollisionFlagComponent {}; diff --git a/src/mc/deps/vanilla_components/DolphinFlagComponent.h b/src/mc/deps/vanilla_components/DolphinFlagComponent.h index d699ca78c4..87a4735767 100644 --- a/src/mc/deps/vanilla_components/DolphinFlagComponent.h +++ b/src/mc/deps/vanilla_components/DolphinFlagComponent.h @@ -2,10 +2,4 @@ #include "mc/_HeaderOutputPredefine.h" -struct DolphinFlagComponent { -public: - // prevent constructor by default - DolphinFlagComponent& operator=(DolphinFlagComponent const&); - DolphinFlagComponent(DolphinFlagComponent const&); - DolphinFlagComponent(); -}; +struct DolphinFlagComponent {}; diff --git a/src/mc/deps/vanilla_components/EnderDragonFlagComponent.h b/src/mc/deps/vanilla_components/EnderDragonFlagComponent.h index d4a58bd4d2..4223039e05 100644 --- a/src/mc/deps/vanilla_components/EnderDragonFlagComponent.h +++ b/src/mc/deps/vanilla_components/EnderDragonFlagComponent.h @@ -2,10 +2,4 @@ #include "mc/_HeaderOutputPredefine.h" -struct EnderDragonFlagComponent { -public: - // prevent constructor by default - EnderDragonFlagComponent& operator=(EnderDragonFlagComponent const&); - EnderDragonFlagComponent(EnderDragonFlagComponent const&); - EnderDragonFlagComponent(); -}; +struct EnderDragonFlagComponent {}; diff --git a/src/mc/deps/vanilla_components/EnderManFlagComponent.h b/src/mc/deps/vanilla_components/EnderManFlagComponent.h index 4dc57b1245..3e46084d0c 100644 --- a/src/mc/deps/vanilla_components/EnderManFlagComponent.h +++ b/src/mc/deps/vanilla_components/EnderManFlagComponent.h @@ -2,10 +2,4 @@ #include "mc/_HeaderOutputPredefine.h" -struct EnderManFlagComponent { -public: - // prevent constructor by default - EnderManFlagComponent& operator=(EnderManFlagComponent const&); - EnderManFlagComponent(EnderManFlagComponent const&); - EnderManFlagComponent(); -}; +struct EnderManFlagComponent {}; diff --git a/src/mc/deps/vanilla_components/ExperienceOrbFlagComponent.h b/src/mc/deps/vanilla_components/ExperienceOrbFlagComponent.h index 4c63b3075d..5c68ad2fb0 100644 --- a/src/mc/deps/vanilla_components/ExperienceOrbFlagComponent.h +++ b/src/mc/deps/vanilla_components/ExperienceOrbFlagComponent.h @@ -2,10 +2,4 @@ #include "mc/_HeaderOutputPredefine.h" -struct ExperienceOrbFlagComponent { -public: - // prevent constructor by default - ExperienceOrbFlagComponent& operator=(ExperienceOrbFlagComponent const&); - ExperienceOrbFlagComponent(ExperienceOrbFlagComponent const&); - ExperienceOrbFlagComponent(); -}; +struct ExperienceOrbFlagComponent {}; diff --git a/src/mc/deps/vanilla_components/EyeOfEnderFlagComponent.h b/src/mc/deps/vanilla_components/EyeOfEnderFlagComponent.h index 8016ad7ecd..7fc11d107b 100644 --- a/src/mc/deps/vanilla_components/EyeOfEnderFlagComponent.h +++ b/src/mc/deps/vanilla_components/EyeOfEnderFlagComponent.h @@ -2,10 +2,4 @@ #include "mc/_HeaderOutputPredefine.h" -struct EyeOfEnderFlagComponent { -public: - // prevent constructor by default - EyeOfEnderFlagComponent& operator=(EyeOfEnderFlagComponent const&); - EyeOfEnderFlagComponent(EyeOfEnderFlagComponent const&); - EyeOfEnderFlagComponent(); -}; +struct EyeOfEnderFlagComponent {}; diff --git a/src/mc/deps/vanilla_components/FallingBlockFlagComponent.h b/src/mc/deps/vanilla_components/FallingBlockFlagComponent.h index 9b91f8e001..5d2f326e92 100644 --- a/src/mc/deps/vanilla_components/FallingBlockFlagComponent.h +++ b/src/mc/deps/vanilla_components/FallingBlockFlagComponent.h @@ -2,10 +2,4 @@ #include "mc/_HeaderOutputPredefine.h" -struct FallingBlockFlagComponent { -public: - // prevent constructor by default - FallingBlockFlagComponent& operator=(FallingBlockFlagComponent const&); - FallingBlockFlagComponent(FallingBlockFlagComponent const&); - FallingBlockFlagComponent(); -}; +struct FallingBlockFlagComponent {}; diff --git a/src/mc/deps/vanilla_components/FireworksRocketFlagComponent.h b/src/mc/deps/vanilla_components/FireworksRocketFlagComponent.h index 9919de754c..9a224bbdbf 100644 --- a/src/mc/deps/vanilla_components/FireworksRocketFlagComponent.h +++ b/src/mc/deps/vanilla_components/FireworksRocketFlagComponent.h @@ -2,10 +2,4 @@ #include "mc/_HeaderOutputPredefine.h" -struct FireworksRocketFlagComponent { -public: - // prevent constructor by default - FireworksRocketFlagComponent& operator=(FireworksRocketFlagComponent const&); - FireworksRocketFlagComponent(FireworksRocketFlagComponent const&); - FireworksRocketFlagComponent(); -}; +struct FireworksRocketFlagComponent {}; diff --git a/src/mc/deps/vanilla_components/FishFlagComponent.h b/src/mc/deps/vanilla_components/FishFlagComponent.h index b8b15552e3..2c98653a51 100644 --- a/src/mc/deps/vanilla_components/FishFlagComponent.h +++ b/src/mc/deps/vanilla_components/FishFlagComponent.h @@ -2,10 +2,4 @@ #include "mc/_HeaderOutputPredefine.h" -struct FishFlagComponent { -public: - // prevent constructor by default - FishFlagComponent& operator=(FishFlagComponent const&); - FishFlagComponent(FishFlagComponent const&); - FishFlagComponent(); -}; +struct FishFlagComponent {}; diff --git a/src/mc/deps/vanilla_components/FishingHookFlagComponent.h b/src/mc/deps/vanilla_components/FishingHookFlagComponent.h index fce638a895..9c53e72ad3 100644 --- a/src/mc/deps/vanilla_components/FishingHookFlagComponent.h +++ b/src/mc/deps/vanilla_components/FishingHookFlagComponent.h @@ -2,10 +2,4 @@ #include "mc/_HeaderOutputPredefine.h" -struct FishingHookFlagComponent { -public: - // prevent constructor by default - FishingHookFlagComponent& operator=(FishingHookFlagComponent const&); - FishingHookFlagComponent(FishingHookFlagComponent const&); - FishingHookFlagComponent(); -}; +struct FishingHookFlagComponent {}; diff --git a/src/mc/deps/vanilla_components/GuardianFlagComponent.h b/src/mc/deps/vanilla_components/GuardianFlagComponent.h index ee213000ab..0dad269990 100644 --- a/src/mc/deps/vanilla_components/GuardianFlagComponent.h +++ b/src/mc/deps/vanilla_components/GuardianFlagComponent.h @@ -2,10 +2,4 @@ #include "mc/_HeaderOutputPredefine.h" -struct GuardianFlagComponent { -public: - // prevent constructor by default - GuardianFlagComponent& operator=(GuardianFlagComponent const&); - GuardianFlagComponent(GuardianFlagComponent const&); - GuardianFlagComponent(); -}; +struct GuardianFlagComponent {}; diff --git a/src/mc/deps/vanilla_components/HangingActorFlagComponent.h b/src/mc/deps/vanilla_components/HangingActorFlagComponent.h index 25e6702aee..f07c18179d 100644 --- a/src/mc/deps/vanilla_components/HangingActorFlagComponent.h +++ b/src/mc/deps/vanilla_components/HangingActorFlagComponent.h @@ -2,10 +2,4 @@ #include "mc/_HeaderOutputPredefine.h" -struct HangingActorFlagComponent { -public: - // prevent constructor by default - HangingActorFlagComponent& operator=(HangingActorFlagComponent const&); - HangingActorFlagComponent(HangingActorFlagComponent const&); - HangingActorFlagComponent(); -}; +struct HangingActorFlagComponent {}; diff --git a/src/mc/deps/vanilla_components/HorizontalCollisionFlagComponent.h b/src/mc/deps/vanilla_components/HorizontalCollisionFlagComponent.h index d21df84379..0a7f0f06cd 100644 --- a/src/mc/deps/vanilla_components/HorizontalCollisionFlagComponent.h +++ b/src/mc/deps/vanilla_components/HorizontalCollisionFlagComponent.h @@ -2,10 +2,4 @@ #include "mc/_HeaderOutputPredefine.h" -struct HorizontalCollisionFlagComponent { -public: - // prevent constructor by default - HorizontalCollisionFlagComponent& operator=(HorizontalCollisionFlagComponent const&); - HorizontalCollisionFlagComponent(HorizontalCollisionFlagComponent const&); - HorizontalCollisionFlagComponent(); -}; +struct HorizontalCollisionFlagComponent {}; diff --git a/src/mc/deps/vanilla_components/HorseFlagComponent.h b/src/mc/deps/vanilla_components/HorseFlagComponent.h index 1647579b1a..e17ecd26a0 100644 --- a/src/mc/deps/vanilla_components/HorseFlagComponent.h +++ b/src/mc/deps/vanilla_components/HorseFlagComponent.h @@ -2,10 +2,4 @@ #include "mc/_HeaderOutputPredefine.h" -struct HorseFlagComponent { -public: - // prevent constructor by default - HorseFlagComponent& operator=(HorseFlagComponent const&); - HorseFlagComponent(HorseFlagComponent const&); - HorseFlagComponent(); -}; +struct HorseFlagComponent {}; diff --git a/src/mc/deps/vanilla_components/IllagerBeastFlagComponent.h b/src/mc/deps/vanilla_components/IllagerBeastFlagComponent.h index b1f3ed80d5..69eb07d0ac 100644 --- a/src/mc/deps/vanilla_components/IllagerBeastFlagComponent.h +++ b/src/mc/deps/vanilla_components/IllagerBeastFlagComponent.h @@ -2,10 +2,4 @@ #include "mc/_HeaderOutputPredefine.h" -struct IllagerBeastFlagComponent { -public: - // prevent constructor by default - IllagerBeastFlagComponent& operator=(IllagerBeastFlagComponent const&); - IllagerBeastFlagComponent(IllagerBeastFlagComponent const&); - IllagerBeastFlagComponent(); -}; +struct IllagerBeastFlagComponent {}; diff --git a/src/mc/deps/vanilla_components/ItemActorFlagComponent.h b/src/mc/deps/vanilla_components/ItemActorFlagComponent.h index f62391e54b..d6bc5bb9bd 100644 --- a/src/mc/deps/vanilla_components/ItemActorFlagComponent.h +++ b/src/mc/deps/vanilla_components/ItemActorFlagComponent.h @@ -2,10 +2,4 @@ #include "mc/_HeaderOutputPredefine.h" -struct ItemActorFlagComponent { -public: - // prevent constructor by default - ItemActorFlagComponent& operator=(ItemActorFlagComponent const&); - ItemActorFlagComponent(ItemActorFlagComponent const&); - ItemActorFlagComponent(); -}; +struct ItemActorFlagComponent {}; diff --git a/src/mc/deps/vanilla_components/LavaSlimeFlagComponent.h b/src/mc/deps/vanilla_components/LavaSlimeFlagComponent.h index 3f2d4dd0c8..509130abf2 100644 --- a/src/mc/deps/vanilla_components/LavaSlimeFlagComponent.h +++ b/src/mc/deps/vanilla_components/LavaSlimeFlagComponent.h @@ -2,10 +2,4 @@ #include "mc/_HeaderOutputPredefine.h" -struct LavaSlimeFlagComponent { -public: - // prevent constructor by default - LavaSlimeFlagComponent& operator=(LavaSlimeFlagComponent const&); - LavaSlimeFlagComponent(LavaSlimeFlagComponent const&); - LavaSlimeFlagComponent(); -}; +struct LavaSlimeFlagComponent {}; diff --git a/src/mc/deps/vanilla_components/MinecartFlagComponent.h b/src/mc/deps/vanilla_components/MinecartFlagComponent.h index 0622a7f47f..8bcd05a0f7 100644 --- a/src/mc/deps/vanilla_components/MinecartFlagComponent.h +++ b/src/mc/deps/vanilla_components/MinecartFlagComponent.h @@ -2,10 +2,4 @@ #include "mc/_HeaderOutputPredefine.h" -struct MinecartFlagComponent { -public: - // prevent constructor by default - MinecartFlagComponent& operator=(MinecartFlagComponent const&); - MinecartFlagComponent(MinecartFlagComponent const&); - MinecartFlagComponent(); -}; +struct MinecartFlagComponent {}; diff --git a/src/mc/deps/vanilla_components/MobAllowStandSlidingFlagComponent.h b/src/mc/deps/vanilla_components/MobAllowStandSlidingFlagComponent.h index 3bcb732cb2..d5f9aa3be1 100644 --- a/src/mc/deps/vanilla_components/MobAllowStandSlidingFlagComponent.h +++ b/src/mc/deps/vanilla_components/MobAllowStandSlidingFlagComponent.h @@ -2,10 +2,4 @@ #include "mc/_HeaderOutputPredefine.h" -struct MobAllowStandSlidingFlagComponent { -public: - // prevent constructor by default - MobAllowStandSlidingFlagComponent& operator=(MobAllowStandSlidingFlagComponent const&); - MobAllowStandSlidingFlagComponent(MobAllowStandSlidingFlagComponent const&); - MobAllowStandSlidingFlagComponent(); -}; +struct MobAllowStandSlidingFlagComponent {}; diff --git a/src/mc/deps/vanilla_components/MobFlagComponent.h b/src/mc/deps/vanilla_components/MobFlagComponent.h index 452a0ca674..b1a561d712 100644 --- a/src/mc/deps/vanilla_components/MobFlagComponent.h +++ b/src/mc/deps/vanilla_components/MobFlagComponent.h @@ -2,10 +2,4 @@ #include "mc/_HeaderOutputPredefine.h" -struct MobFlagComponent { -public: - // prevent constructor by default - MobFlagComponent& operator=(MobFlagComponent const&); - MobFlagComponent(MobFlagComponent const&); - MobFlagComponent(); -}; +struct MobFlagComponent {}; diff --git a/src/mc/deps/vanilla_components/MobIsImmobileFlagComponent.h b/src/mc/deps/vanilla_components/MobIsImmobileFlagComponent.h index 7e29daf913..3fd7b268a1 100644 --- a/src/mc/deps/vanilla_components/MobIsImmobileFlagComponent.h +++ b/src/mc/deps/vanilla_components/MobIsImmobileFlagComponent.h @@ -2,10 +2,4 @@ #include "mc/_HeaderOutputPredefine.h" -struct MobIsImmobileFlagComponent { -public: - // prevent constructor by default - MobIsImmobileFlagComponent& operator=(MobIsImmobileFlagComponent const&); - MobIsImmobileFlagComponent(MobIsImmobileFlagComponent const&); - MobIsImmobileFlagComponent(); -}; +struct MobIsImmobileFlagComponent {}; diff --git a/src/mc/deps/vanilla_components/MobIsJumpingFlagComponent.h b/src/mc/deps/vanilla_components/MobIsJumpingFlagComponent.h index ce0ae942e5..5b11febfb8 100644 --- a/src/mc/deps/vanilla_components/MobIsJumpingFlagComponent.h +++ b/src/mc/deps/vanilla_components/MobIsJumpingFlagComponent.h @@ -2,10 +2,4 @@ #include "mc/_HeaderOutputPredefine.h" -struct MobIsJumpingFlagComponent { -public: - // prevent constructor by default - MobIsJumpingFlagComponent& operator=(MobIsJumpingFlagComponent const&); - MobIsJumpingFlagComponent(MobIsJumpingFlagComponent const&); - MobIsJumpingFlagComponent(); -}; +struct MobIsJumpingFlagComponent {}; diff --git a/src/mc/deps/vanilla_components/MonsterFlagComponent.h b/src/mc/deps/vanilla_components/MonsterFlagComponent.h index 711c7d0792..20a136d557 100644 --- a/src/mc/deps/vanilla_components/MonsterFlagComponent.h +++ b/src/mc/deps/vanilla_components/MonsterFlagComponent.h @@ -2,10 +2,4 @@ #include "mc/_HeaderOutputPredefine.h" -struct MonsterFlagComponent { -public: - // prevent constructor by default - MonsterFlagComponent& operator=(MonsterFlagComponent const&); - MonsterFlagComponent(MonsterFlagComponent const&); - MonsterFlagComponent(); -}; +struct MonsterFlagComponent {}; diff --git a/src/mc/deps/vanilla_components/OnGroundFlagComponent.h b/src/mc/deps/vanilla_components/OnGroundFlagComponent.h index dfcb6cbc04..374bbe63e0 100644 --- a/src/mc/deps/vanilla_components/OnGroundFlagComponent.h +++ b/src/mc/deps/vanilla_components/OnGroundFlagComponent.h @@ -2,10 +2,4 @@ #include "mc/_HeaderOutputPredefine.h" -struct OnGroundFlagComponent { -public: - // prevent constructor by default - OnGroundFlagComponent& operator=(OnGroundFlagComponent const&); - OnGroundFlagComponent(OnGroundFlagComponent const&); - OnGroundFlagComponent(); -}; +struct OnGroundFlagComponent {}; diff --git a/src/mc/deps/vanilla_components/PaintingFlagComponent.h b/src/mc/deps/vanilla_components/PaintingFlagComponent.h index caf207b380..dc2f9c3395 100644 --- a/src/mc/deps/vanilla_components/PaintingFlagComponent.h +++ b/src/mc/deps/vanilla_components/PaintingFlagComponent.h @@ -2,10 +2,4 @@ #include "mc/_HeaderOutputPredefine.h" -struct PaintingFlagComponent { -public: - // prevent constructor by default - PaintingFlagComponent& operator=(PaintingFlagComponent const&); - PaintingFlagComponent(PaintingFlagComponent const&); - PaintingFlagComponent(); -}; +struct PaintingFlagComponent {}; diff --git a/src/mc/deps/vanilla_components/PandaFlagComponent.h b/src/mc/deps/vanilla_components/PandaFlagComponent.h index 7ba0d1e2ad..9d495985c5 100644 --- a/src/mc/deps/vanilla_components/PandaFlagComponent.h +++ b/src/mc/deps/vanilla_components/PandaFlagComponent.h @@ -2,10 +2,4 @@ #include "mc/_HeaderOutputPredefine.h" -struct PandaFlagComponent { -public: - // prevent constructor by default - PandaFlagComponent& operator=(PandaFlagComponent const&); - PandaFlagComponent(PandaFlagComponent const&); - PandaFlagComponent(); -}; +struct PandaFlagComponent {}; diff --git a/src/mc/deps/vanilla_components/ParrotFlagComponent.h b/src/mc/deps/vanilla_components/ParrotFlagComponent.h index 9952863692..84041a62d3 100644 --- a/src/mc/deps/vanilla_components/ParrotFlagComponent.h +++ b/src/mc/deps/vanilla_components/ParrotFlagComponent.h @@ -2,10 +2,4 @@ #include "mc/_HeaderOutputPredefine.h" -struct ParrotFlagComponent { -public: - // prevent constructor by default - ParrotFlagComponent& operator=(ParrotFlagComponent const&); - ParrotFlagComponent(ParrotFlagComponent const&); - ParrotFlagComponent(); -}; +struct ParrotFlagComponent {}; diff --git a/src/mc/deps/vanilla_components/PersistSitComponent.h b/src/mc/deps/vanilla_components/PersistSitComponent.h index 1268b11632..6c2448aeee 100644 --- a/src/mc/deps/vanilla_components/PersistSitComponent.h +++ b/src/mc/deps/vanilla_components/PersistSitComponent.h @@ -2,10 +2,4 @@ #include "mc/_HeaderOutputPredefine.h" -struct PersistSitComponent { -public: - // prevent constructor by default - PersistSitComponent& operator=(PersistSitComponent const&); - PersistSitComponent(PersistSitComponent const&); - PersistSitComponent(); -}; +struct PersistSitComponent {}; diff --git a/src/mc/deps/vanilla_components/PlayerComponent.h b/src/mc/deps/vanilla_components/PlayerComponent.h index 36e98dcfc9..481f2be89f 100644 --- a/src/mc/deps/vanilla_components/PlayerComponent.h +++ b/src/mc/deps/vanilla_components/PlayerComponent.h @@ -2,10 +2,4 @@ #include "mc/_HeaderOutputPredefine.h" -struct PlayerComponent { -public: - // prevent constructor by default - PlayerComponent& operator=(PlayerComponent const&); - PlayerComponent(PlayerComponent const&); - PlayerComponent(); -}; +struct PlayerComponent {}; diff --git a/src/mc/deps/vanilla_components/PlayerIsSleepingFlagComponent.h b/src/mc/deps/vanilla_components/PlayerIsSleepingFlagComponent.h index 1ec6e563ca..f7ba4e26d3 100644 --- a/src/mc/deps/vanilla_components/PlayerIsSleepingFlagComponent.h +++ b/src/mc/deps/vanilla_components/PlayerIsSleepingFlagComponent.h @@ -2,10 +2,4 @@ #include "mc/_HeaderOutputPredefine.h" -struct PlayerIsSleepingFlagComponent { -public: - // prevent constructor by default - PlayerIsSleepingFlagComponent& operator=(PlayerIsSleepingFlagComponent const&); - PlayerIsSleepingFlagComponent(PlayerIsSleepingFlagComponent const&); - PlayerIsSleepingFlagComponent(); -}; +struct PlayerIsSleepingFlagComponent {}; diff --git a/src/mc/deps/vanilla_components/PrimedTntFlagComponent.h b/src/mc/deps/vanilla_components/PrimedTntFlagComponent.h index f06e303b7b..03733b4251 100644 --- a/src/mc/deps/vanilla_components/PrimedTntFlagComponent.h +++ b/src/mc/deps/vanilla_components/PrimedTntFlagComponent.h @@ -2,10 +2,4 @@ #include "mc/_HeaderOutputPredefine.h" -struct PrimedTntFlagComponent { -public: - // prevent constructor by default - PrimedTntFlagComponent& operator=(PrimedTntFlagComponent const&); - PrimedTntFlagComponent(PrimedTntFlagComponent const&); - PrimedTntFlagComponent(); -}; +struct PrimedTntFlagComponent {}; diff --git a/src/mc/deps/vanilla_components/SetMovingFlagRequestComponent.h b/src/mc/deps/vanilla_components/SetMovingFlagRequestComponent.h index 11a2461c9b..7d0d88de20 100644 --- a/src/mc/deps/vanilla_components/SetMovingFlagRequestComponent.h +++ b/src/mc/deps/vanilla_components/SetMovingFlagRequestComponent.h @@ -2,10 +2,4 @@ #include "mc/_HeaderOutputPredefine.h" -struct SetMovingFlagRequestComponent { -public: - // prevent constructor by default - SetMovingFlagRequestComponent& operator=(SetMovingFlagRequestComponent const&); - SetMovingFlagRequestComponent(SetMovingFlagRequestComponent const&); - SetMovingFlagRequestComponent(); -}; +struct SetMovingFlagRequestComponent {}; diff --git a/src/mc/deps/vanilla_components/SheepFlagComponent.h b/src/mc/deps/vanilla_components/SheepFlagComponent.h index c740514d69..cf7b415803 100644 --- a/src/mc/deps/vanilla_components/SheepFlagComponent.h +++ b/src/mc/deps/vanilla_components/SheepFlagComponent.h @@ -2,10 +2,4 @@ #include "mc/_HeaderOutputPredefine.h" -struct SheepFlagComponent { -public: - // prevent constructor by default - SheepFlagComponent& operator=(SheepFlagComponent const&); - SheepFlagComponent(SheepFlagComponent const&); - SheepFlagComponent(); -}; +struct SheepFlagComponent {}; diff --git a/src/mc/deps/vanilla_components/ShulkerBulletFlagComponent.h b/src/mc/deps/vanilla_components/ShulkerBulletFlagComponent.h index ab98cd50e2..0ac2bfe5c3 100644 --- a/src/mc/deps/vanilla_components/ShulkerBulletFlagComponent.h +++ b/src/mc/deps/vanilla_components/ShulkerBulletFlagComponent.h @@ -2,10 +2,4 @@ #include "mc/_HeaderOutputPredefine.h" -struct ShulkerBulletFlagComponent { -public: - // prevent constructor by default - ShulkerBulletFlagComponent& operator=(ShulkerBulletFlagComponent const&); - ShulkerBulletFlagComponent(ShulkerBulletFlagComponent const&); - ShulkerBulletFlagComponent(); -}; +struct ShulkerBulletFlagComponent {}; diff --git a/src/mc/deps/vanilla_components/ShulkerFlagComponent.h b/src/mc/deps/vanilla_components/ShulkerFlagComponent.h index a199c45f1d..2b60fee869 100644 --- a/src/mc/deps/vanilla_components/ShulkerFlagComponent.h +++ b/src/mc/deps/vanilla_components/ShulkerFlagComponent.h @@ -2,10 +2,4 @@ #include "mc/_HeaderOutputPredefine.h" -struct ShulkerFlagComponent { -public: - // prevent constructor by default - ShulkerFlagComponent& operator=(ShulkerFlagComponent const&); - ShulkerFlagComponent(ShulkerFlagComponent const&); - ShulkerFlagComponent(); -}; +struct ShulkerFlagComponent {}; diff --git a/src/mc/deps/vanilla_components/SimulatedPlayerFlagComponent.h b/src/mc/deps/vanilla_components/SimulatedPlayerFlagComponent.h index d542c84480..47b57d8255 100644 --- a/src/mc/deps/vanilla_components/SimulatedPlayerFlagComponent.h +++ b/src/mc/deps/vanilla_components/SimulatedPlayerFlagComponent.h @@ -2,10 +2,4 @@ #include "mc/_HeaderOutputPredefine.h" -struct SimulatedPlayerFlagComponent { -public: - // prevent constructor by default - SimulatedPlayerFlagComponent& operator=(SimulatedPlayerFlagComponent const&); - SimulatedPlayerFlagComponent(SimulatedPlayerFlagComponent const&); - SimulatedPlayerFlagComponent(); -}; +struct SimulatedPlayerFlagComponent {}; diff --git a/src/mc/deps/vanilla_components/SkeletonFlagComponent.h b/src/mc/deps/vanilla_components/SkeletonFlagComponent.h index cbae335dc4..32955604dc 100644 --- a/src/mc/deps/vanilla_components/SkeletonFlagComponent.h +++ b/src/mc/deps/vanilla_components/SkeletonFlagComponent.h @@ -2,10 +2,4 @@ #include "mc/_HeaderOutputPredefine.h" -struct SkeletonFlagComponent { -public: - // prevent constructor by default - SkeletonFlagComponent& operator=(SkeletonFlagComponent const&); - SkeletonFlagComponent(SkeletonFlagComponent const&); - SkeletonFlagComponent(); -}; +struct SkeletonFlagComponent {}; diff --git a/src/mc/deps/vanilla_components/SlimeFlagComponent.h b/src/mc/deps/vanilla_components/SlimeFlagComponent.h index 5013df6ccd..e86482c8be 100644 --- a/src/mc/deps/vanilla_components/SlimeFlagComponent.h +++ b/src/mc/deps/vanilla_components/SlimeFlagComponent.h @@ -2,10 +2,4 @@ #include "mc/_HeaderOutputPredefine.h" -struct SlimeFlagComponent { -public: - // prevent constructor by default - SlimeFlagComponent& operator=(SlimeFlagComponent const&); - SlimeFlagComponent(SlimeFlagComponent const&); - SlimeFlagComponent(); -}; +struct SlimeFlagComponent {}; diff --git a/src/mc/deps/vanilla_components/SpiderFlagComponent.h b/src/mc/deps/vanilla_components/SpiderFlagComponent.h index 7b7ffa3c14..ee1de34e36 100644 --- a/src/mc/deps/vanilla_components/SpiderFlagComponent.h +++ b/src/mc/deps/vanilla_components/SpiderFlagComponent.h @@ -2,10 +2,4 @@ #include "mc/_HeaderOutputPredefine.h" -struct SpiderFlagComponent { -public: - // prevent constructor by default - SpiderFlagComponent& operator=(SpiderFlagComponent const&); - SpiderFlagComponent(SpiderFlagComponent const&); - SpiderFlagComponent(); -}; +struct SpiderFlagComponent {}; diff --git a/src/mc/deps/vanilla_components/SquidFlagComponent.h b/src/mc/deps/vanilla_components/SquidFlagComponent.h index 866dda5c80..444c074ace 100644 --- a/src/mc/deps/vanilla_components/SquidFlagComponent.h +++ b/src/mc/deps/vanilla_components/SquidFlagComponent.h @@ -2,10 +2,4 @@ #include "mc/_HeaderOutputPredefine.h" -struct SquidFlagComponent { -public: - // prevent constructor by default - SquidFlagComponent& operator=(SquidFlagComponent const&); - SquidFlagComponent(SquidFlagComponent const&); - SquidFlagComponent(); -}; +struct SquidFlagComponent {}; diff --git a/src/mc/deps/vanilla_components/ThrownTridentFlagComponent.h b/src/mc/deps/vanilla_components/ThrownTridentFlagComponent.h index b629d473a5..b5f12fcc5b 100644 --- a/src/mc/deps/vanilla_components/ThrownTridentFlagComponent.h +++ b/src/mc/deps/vanilla_components/ThrownTridentFlagComponent.h @@ -2,10 +2,4 @@ #include "mc/_HeaderOutputPredefine.h" -struct ThrownTridentFlagComponent { -public: - // prevent constructor by default - ThrownTridentFlagComponent& operator=(ThrownTridentFlagComponent const&); - ThrownTridentFlagComponent(ThrownTridentFlagComponent const&); - ThrownTridentFlagComponent(); -}; +struct ThrownTridentFlagComponent {}; diff --git a/src/mc/deps/vanilla_components/TropicalFishFlagComponent.h b/src/mc/deps/vanilla_components/TropicalFishFlagComponent.h index 3fbc5fa3b0..2a08f8f9b1 100644 --- a/src/mc/deps/vanilla_components/TropicalFishFlagComponent.h +++ b/src/mc/deps/vanilla_components/TropicalFishFlagComponent.h @@ -2,10 +2,4 @@ #include "mc/_HeaderOutputPredefine.h" -struct TropicalFishFlagComponent { -public: - // prevent constructor by default - TropicalFishFlagComponent& operator=(TropicalFishFlagComponent const&); - TropicalFishFlagComponent(TropicalFishFlagComponent const&); - TropicalFishFlagComponent(); -}; +struct TropicalFishFlagComponent {}; diff --git a/src/mc/deps/vanilla_components/VerticalCollisionFlagComponent.h b/src/mc/deps/vanilla_components/VerticalCollisionFlagComponent.h index 72200ab7b5..08f3bc99b4 100644 --- a/src/mc/deps/vanilla_components/VerticalCollisionFlagComponent.h +++ b/src/mc/deps/vanilla_components/VerticalCollisionFlagComponent.h @@ -2,10 +2,4 @@ #include "mc/_HeaderOutputPredefine.h" -struct VerticalCollisionFlagComponent { -public: - // prevent constructor by default - VerticalCollisionFlagComponent& operator=(VerticalCollisionFlagComponent const&); - VerticalCollisionFlagComponent(VerticalCollisionFlagComponent const&); - VerticalCollisionFlagComponent(); -}; +struct VerticalCollisionFlagComponent {}; diff --git a/src/mc/deps/vanilla_components/VexFlagComponent.h b/src/mc/deps/vanilla_components/VexFlagComponent.h index 3e06921691..3ea2297dbe 100644 --- a/src/mc/deps/vanilla_components/VexFlagComponent.h +++ b/src/mc/deps/vanilla_components/VexFlagComponent.h @@ -2,10 +2,4 @@ #include "mc/_HeaderOutputPredefine.h" -struct VexFlagComponent { -public: - // prevent constructor by default - VexFlagComponent& operator=(VexFlagComponent const&); - VexFlagComponent(VexFlagComponent const&); - VexFlagComponent(); -}; +struct VexFlagComponent {}; diff --git a/src/mc/deps/vanilla_components/VillagerV2FlagComponent.h b/src/mc/deps/vanilla_components/VillagerV2FlagComponent.h index e02826368c..51619055ba 100644 --- a/src/mc/deps/vanilla_components/VillagerV2FlagComponent.h +++ b/src/mc/deps/vanilla_components/VillagerV2FlagComponent.h @@ -2,10 +2,4 @@ #include "mc/_HeaderOutputPredefine.h" -struct VillagerV2FlagComponent { -public: - // prevent constructor by default - VillagerV2FlagComponent& operator=(VillagerV2FlagComponent const&); - VillagerV2FlagComponent(VillagerV2FlagComponent const&); - VillagerV2FlagComponent(); -}; +struct VillagerV2FlagComponent {}; diff --git a/src/mc/deps/vanilla_components/WaterAnimalFlagComponent.h b/src/mc/deps/vanilla_components/WaterAnimalFlagComponent.h index 8860628b52..54831517b1 100644 --- a/src/mc/deps/vanilla_components/WaterAnimalFlagComponent.h +++ b/src/mc/deps/vanilla_components/WaterAnimalFlagComponent.h @@ -2,10 +2,4 @@ #include "mc/_HeaderOutputPredefine.h" -struct WaterAnimalFlagComponent { -public: - // prevent constructor by default - WaterAnimalFlagComponent& operator=(WaterAnimalFlagComponent const&); - WaterAnimalFlagComponent(WaterAnimalFlagComponent const&); - WaterAnimalFlagComponent(); -}; +struct WaterAnimalFlagComponent {}; diff --git a/src/mc/deps/vanilla_components/WitchFlagComponent.h b/src/mc/deps/vanilla_components/WitchFlagComponent.h index f0c0242dba..4ee5effd34 100644 --- a/src/mc/deps/vanilla_components/WitchFlagComponent.h +++ b/src/mc/deps/vanilla_components/WitchFlagComponent.h @@ -2,10 +2,4 @@ #include "mc/_HeaderOutputPredefine.h" -struct WitchFlagComponent { -public: - // prevent constructor by default - WitchFlagComponent& operator=(WitchFlagComponent const&); - WitchFlagComponent(WitchFlagComponent const&); - WitchFlagComponent(); -}; +struct WitchFlagComponent {}; diff --git a/src/mc/deps/vanilla_components/WitherBossFlagComponent.h b/src/mc/deps/vanilla_components/WitherBossFlagComponent.h index 02782c337f..9736d32b0f 100644 --- a/src/mc/deps/vanilla_components/WitherBossFlagComponent.h +++ b/src/mc/deps/vanilla_components/WitherBossFlagComponent.h @@ -2,10 +2,4 @@ #include "mc/_HeaderOutputPredefine.h" -struct WitherBossFlagComponent { -public: - // prevent constructor by default - WitherBossFlagComponent& operator=(WitherBossFlagComponent const&); - WitherBossFlagComponent(WitherBossFlagComponent const&); - WitherBossFlagComponent(); -}; +struct WitherBossFlagComponent {}; diff --git a/src/mc/deps/vanilla_components/WitherSkullFlagComponent.h b/src/mc/deps/vanilla_components/WitherSkullFlagComponent.h index be561588e8..37aee71049 100644 --- a/src/mc/deps/vanilla_components/WitherSkullFlagComponent.h +++ b/src/mc/deps/vanilla_components/WitherSkullFlagComponent.h @@ -2,10 +2,4 @@ #include "mc/_HeaderOutputPredefine.h" -struct WitherSkullFlagComponent { -public: - // prevent constructor by default - WitherSkullFlagComponent& operator=(WitherSkullFlagComponent const&); - WitherSkullFlagComponent(WitherSkullFlagComponent const&); - WitherSkullFlagComponent(); -}; +struct WitherSkullFlagComponent {}; diff --git a/src/mc/deps/vanilla_components/WolfFlagComponent.h b/src/mc/deps/vanilla_components/WolfFlagComponent.h index c4c270d361..0e5f49e33a 100644 --- a/src/mc/deps/vanilla_components/WolfFlagComponent.h +++ b/src/mc/deps/vanilla_components/WolfFlagComponent.h @@ -2,10 +2,4 @@ #include "mc/_HeaderOutputPredefine.h" -struct WolfFlagComponent { -public: - // prevent constructor by default - WolfFlagComponent& operator=(WolfFlagComponent const&); - WolfFlagComponent(WolfFlagComponent const&); - WolfFlagComponent(); -}; +struct WolfFlagComponent {}; diff --git a/src/mc/deps/vanilla_components/utilities/SynchedActorDataAccessor.h b/src/mc/deps/vanilla_components/utilities/SynchedActorDataAccessor.h index 66eafdde79..bc3b60194c 100644 --- a/src/mc/deps/vanilla_components/utilities/SynchedActorDataAccessor.h +++ b/src/mc/deps/vanilla_components/utilities/SynchedActorDataAccessor.h @@ -2,10 +2,4 @@ #include "mc/_HeaderOutputPredefine.h" -struct SynchedActorDataAccessor { -public: - // prevent constructor by default - SynchedActorDataAccessor& operator=(SynchedActorDataAccessor const&); - SynchedActorDataAccessor(SynchedActorDataAccessor const&); - SynchedActorDataAccessor(); -}; +struct SynchedActorDataAccessor {}; diff --git a/src/mc/deviceinfo/DeviceInfoUtils.h b/src/mc/deviceinfo/DeviceInfoUtils.h index 6d48873610..55651e2408 100644 --- a/src/mc/deviceinfo/DeviceInfoUtils.h +++ b/src/mc/deviceinfo/DeviceInfoUtils.h @@ -11,12 +11,6 @@ class BaseGameVersion; // clang-format on class DeviceInfoUtils { -public: - // prevent constructor by default - DeviceInfoUtils& operator=(DeviceInfoUtils const&); - DeviceInfoUtils(DeviceInfoUtils const&); - DeviceInfoUtils(); - public: // static functions // NOLINTBEGIN diff --git a/src/mc/diagnostics/bedrock_log/LogAreaFilter.h b/src/mc/diagnostics/bedrock_log/LogAreaFilter.h index 1d069aec25..d1f2783c7e 100644 --- a/src/mc/diagnostics/bedrock_log/LogAreaFilter.h +++ b/src/mc/diagnostics/bedrock_log/LogAreaFilter.h @@ -4,12 +4,6 @@ namespace BedrockLog { -class LogAreaFilter : public ::std::bitset<49> { -public: - // prevent constructor by default - LogAreaFilter& operator=(LogAreaFilter const&); - LogAreaFilter(LogAreaFilter const&); - LogAreaFilter(); -}; +class LogAreaFilter : public ::std::bitset<49> {}; } // namespace BedrockLog diff --git a/src/mc/editor/PlayerHelpers.h b/src/mc/editor/PlayerHelpers.h index 8fbedc380b..2a794a0ac9 100644 --- a/src/mc/editor/PlayerHelpers.h +++ b/src/mc/editor/PlayerHelpers.h @@ -15,12 +15,6 @@ namespace Editor::Services { class ModeServiceProvider; } namespace Editor { class PlayerHelpers { -public: - // prevent constructor by default - PlayerHelpers& operator=(PlayerHelpers const&); - PlayerHelpers(PlayerHelpers const&); - PlayerHelpers(); - public: // static functions // NOLINTBEGIN diff --git a/src/mc/editor/datastore/DeprecatedEventFactory.h b/src/mc/editor/datastore/DeprecatedEventFactory.h index 58cb9206a6..a3ec60a16f 100644 --- a/src/mc/editor/datastore/DeprecatedEventFactory.h +++ b/src/mc/editor/datastore/DeprecatedEventFactory.h @@ -57,12 +57,6 @@ class DeprecatedEventFactory { RemoveActionBindingFromControl = 12, }; -public: - // prevent constructor by default - DeprecatedEventFactory& operator=(DeprecatedEventFactory const&); - DeprecatedEventFactory(DeprecatedEventFactory const&); - DeprecatedEventFactory(); - public: // static functions // NOLINTBEGIN diff --git a/src/mc/editor/datastore/Payload.h b/src/mc/editor/datastore/Payload.h index 071f2d0222..4bad4d1af1 100644 --- a/src/mc/editor/datastore/Payload.h +++ b/src/mc/editor/datastore/Payload.h @@ -10,12 +10,6 @@ namespace Json { class Value; } namespace Editor::DataStore { class Payload { -public: - // prevent constructor by default - Payload& operator=(Payload const&); - Payload(Payload const&); - Payload(); - public: // static functions // NOLINTBEGIN diff --git a/src/mc/editor/logging/LogUtils.h b/src/mc/editor/logging/LogUtils.h index 62df252530..4e57dc95a3 100644 --- a/src/mc/editor/logging/LogUtils.h +++ b/src/mc/editor/logging/LogUtils.h @@ -15,12 +15,6 @@ namespace Editor { class ServiceProviderCollection; } namespace Editor { class LogUtils { -public: - // prevent constructor by default - LogUtils& operator=(LogUtils const&); - LogUtils(LogUtils const&); - LogUtils(); - public: // static functions // NOLINTBEGIN diff --git a/src/mc/editor/logging/LoggingServiceProvider.h b/src/mc/editor/logging/LoggingServiceProvider.h index 85bb0f23f4..7f75f43b5e 100644 --- a/src/mc/editor/logging/LoggingServiceProvider.h +++ b/src/mc/editor/logging/LoggingServiceProvider.h @@ -17,12 +17,6 @@ namespace Editor { class LogMessage; } namespace Editor::Services { class LoggingServiceProvider { -public: - // prevent constructor by default - LoggingServiceProvider& operator=(LoggingServiceProvider const&); - LoggingServiceProvider(LoggingServiceProvider const&); - LoggingServiceProvider(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/editor/network/ClientPlayerReadyPayload.h b/src/mc/editor/network/ClientPlayerReadyPayload.h index d3488bdbdb..e7ac803ebc 100644 --- a/src/mc/editor/network/ClientPlayerReadyPayload.h +++ b/src/mc/editor/network/ClientPlayerReadyPayload.h @@ -13,11 +13,6 @@ namespace cereal { struct ReflectionCtx; } namespace Editor::Network { class ClientPlayerReadyPayload : public ::Editor::Network::NetworkPayload<::Editor::Network::ClientPlayerReadyPayload> { -public: - // prevent constructor by default - ClientPlayerReadyPayload& operator=(ClientPlayerReadyPayload const&); - ClientPlayerReadyPayload(ClientPlayerReadyPayload const&); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/editor/network/INetworkPayload.h b/src/mc/editor/network/INetworkPayload.h index d92f849444..d825b22f7f 100644 --- a/src/mc/editor/network/INetworkPayload.h +++ b/src/mc/editor/network/INetworkPayload.h @@ -10,12 +10,6 @@ class CompoundTag; namespace Editor::Network { class INetworkPayload { -public: - // prevent constructor by default - INetworkPayload& operator=(INetworkPayload const&); - INetworkPayload(INetworkPayload const&); - INetworkPayload(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/editor/network/NetworkPayload.h b/src/mc/editor/network/NetworkPayload.h index 3f65ef0512..1d4138eb91 100644 --- a/src/mc/editor/network/NetworkPayload.h +++ b/src/mc/editor/network/NetworkPayload.h @@ -5,12 +5,6 @@ namespace Editor::Network { template -class NetworkPayload { -public: - // prevent constructor by default - NetworkPayload& operator=(NetworkPayload const&); - NetworkPayload(NetworkPayload const&); - NetworkPayload(); -}; +class NetworkPayload {}; } // namespace Editor::Network diff --git a/src/mc/editor/playtest/ReloadEditorClientPayload.h b/src/mc/editor/playtest/ReloadEditorClientPayload.h index a2817d1da2..f7b7fbe28e 100644 --- a/src/mc/editor/playtest/ReloadEditorClientPayload.h +++ b/src/mc/editor/playtest/ReloadEditorClientPayload.h @@ -14,12 +14,6 @@ namespace Editor::Network { class ReloadEditorClientPayload : public ::Editor::Network::NetworkPayload<::Editor::Network::ReloadEditorClientPayload> { -public: - // prevent constructor by default - ReloadEditorClientPayload& operator=(ReloadEditorClientPayload const&); - ReloadEditorClientPayload(ReloadEditorClientPayload const&); - ReloadEditorClientPayload(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/editor/script/ScriptDataStoreAfterEvents.h b/src/mc/editor/script/ScriptDataStoreAfterEvents.h index 3700e18d72..0a70a4c79b 100644 --- a/src/mc/editor/script/ScriptDataStoreAfterEvents.h +++ b/src/mc/editor/script/ScriptDataStoreAfterEvents.h @@ -34,13 +34,6 @@ class ScriptDataStoreAfterEvents class ScriptDataStoreAfterEventsDeferredEventListener : public ::ScriptModuleMinecraft::IScriptScriptDeferredEventListener< ::Editor::ScriptModule::ScriptDataStoreAfterEvents> { - public: - // prevent constructor by default - ScriptDataStoreAfterEventsDeferredEventListener& - operator=(ScriptDataStoreAfterEventsDeferredEventListener const&); - ScriptDataStoreAfterEventsDeferredEventListener(ScriptDataStoreAfterEventsDeferredEventListener const&); - ScriptDataStoreAfterEventsDeferredEventListener(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/editor/script/ScriptDataStorePayloadUtils.h b/src/mc/editor/script/ScriptDataStorePayloadUtils.h index 4bccbcd3e9..99ee8c01d3 100644 --- a/src/mc/editor/script/ScriptDataStorePayloadUtils.h +++ b/src/mc/editor/script/ScriptDataStorePayloadUtils.h @@ -10,12 +10,6 @@ namespace Json { class Value; } namespace Editor::ScriptModule { struct ScriptDataStorePayloadUtils { -public: - // prevent constructor by default - ScriptDataStorePayloadUtils& operator=(ScriptDataStorePayloadUtils const&); - ScriptDataStorePayloadUtils(ScriptDataStorePayloadUtils const&); - ScriptDataStorePayloadUtils(); - public: // static functions // NOLINTBEGIN diff --git a/src/mc/editor/script/ScriptExtensionContextAfterEvents.h b/src/mc/editor/script/ScriptExtensionContextAfterEvents.h index bb1f9f9573..3bed8583bb 100644 --- a/src/mc/editor/script/ScriptExtensionContextAfterEvents.h +++ b/src/mc/editor/script/ScriptExtensionContextAfterEvents.h @@ -38,13 +38,6 @@ class ScriptExtensionContextAfterEvents class ScriptExtensionContextAfterEventsDeferredEventListener : public ::ScriptModuleMinecraft::IScriptScriptDeferredEventListener< ::Editor::ScriptModule::ScriptExtensionContextAfterEvents> { - public: - // prevent constructor by default - ScriptExtensionContextAfterEventsDeferredEventListener& - operator=(ScriptExtensionContextAfterEventsDeferredEventListener const&); - ScriptExtensionContextAfterEventsDeferredEventListener(ScriptExtensionContextAfterEventsDeferredEventListener const&); - ScriptExtensionContextAfterEventsDeferredEventListener(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/editor/script/ScriptGameOptions.h b/src/mc/editor/script/ScriptGameOptions.h index 0cf90bc215..9f6d0ff660 100644 --- a/src/mc/editor/script/ScriptGameOptions.h +++ b/src/mc/editor/script/ScriptGameOptions.h @@ -13,11 +13,6 @@ namespace Editor::ScriptModule { class ScriptGameOptions : public ::Editor::GameOptions { -public: - // prevent constructor by default - ScriptGameOptions& operator=(ScriptGameOptions const&); - ScriptGameOptions(); - public: // member functions // NOLINTBEGIN diff --git a/src/mc/editor/script/ScriptProjectExportOptions.h b/src/mc/editor/script/ScriptProjectExportOptions.h index 1b18fca1cc..910ffdc24c 100644 --- a/src/mc/editor/script/ScriptProjectExportOptions.h +++ b/src/mc/editor/script/ScriptProjectExportOptions.h @@ -9,12 +9,6 @@ namespace Editor::ScriptModule { class ScriptProjectExportOptions : public ::Editor::ProjectExportOptions { -public: - // prevent constructor by default - ScriptProjectExportOptions& operator=(ScriptProjectExportOptions const&); - ScriptProjectExportOptions(ScriptProjectExportOptions const&); - ScriptProjectExportOptions(); - public: // static functions // NOLINTBEGIN diff --git a/src/mc/editor/script/ScriptProjectExportType.h b/src/mc/editor/script/ScriptProjectExportType.h index d0315d03e7..41669ffb3f 100644 --- a/src/mc/editor/script/ScriptProjectExportType.h +++ b/src/mc/editor/script/ScriptProjectExportType.h @@ -9,12 +9,6 @@ namespace Editor::ScriptModule { class ScriptProjectExportType { -public: - // prevent constructor by default - ScriptProjectExportType& operator=(ScriptProjectExportType const&); - ScriptProjectExportType(ScriptProjectExportType const&); - ScriptProjectExportType(); - public: // static functions // NOLINTBEGIN diff --git a/src/mc/editor/script/ScriptWidgetComponentErrorInvalidComponent.h b/src/mc/editor/script/ScriptWidgetComponentErrorInvalidComponent.h index cb42b67d47..a84794660b 100644 --- a/src/mc/editor/script/ScriptWidgetComponentErrorInvalidComponent.h +++ b/src/mc/editor/script/ScriptWidgetComponentErrorInvalidComponent.h @@ -9,11 +9,6 @@ namespace Editor::ScriptModule { class ScriptWidgetComponentErrorInvalidComponent : public ::Scripting::Error { -public: - // prevent constructor by default - ScriptWidgetComponentErrorInvalidComponent& operator=(ScriptWidgetComponentErrorInvalidComponent const&); - ScriptWidgetComponentErrorInvalidComponent(ScriptWidgetComponentErrorInvalidComponent const&); - public: // member functions // NOLINTBEGIN diff --git a/src/mc/editor/script/ScriptWidgetComponentGuideSensor.h b/src/mc/editor/script/ScriptWidgetComponentGuideSensor.h index 66c610918a..49169c34c4 100644 --- a/src/mc/editor/script/ScriptWidgetComponentGuideSensor.h +++ b/src/mc/editor/script/ScriptWidgetComponentGuideSensor.h @@ -20,12 +20,6 @@ namespace mce { class UUID; } namespace Editor::ScriptModule { class ScriptWidgetComponentGuideSensor : public ::Editor::ScriptModule::ScriptWidgetComponentBase { -public: - // prevent constructor by default - ScriptWidgetComponentGuideSensor& operator=(ScriptWidgetComponentGuideSensor const&); - ScriptWidgetComponentGuideSensor(ScriptWidgetComponentGuideSensor const&); - ScriptWidgetComponentGuideSensor(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/editor/script/ScriptWidgetComponentGuideSensorOptions.h b/src/mc/editor/script/ScriptWidgetComponentGuideSensorOptions.h index e3286e3e83..3edae8787a 100644 --- a/src/mc/editor/script/ScriptWidgetComponentGuideSensorOptions.h +++ b/src/mc/editor/script/ScriptWidgetComponentGuideSensorOptions.h @@ -9,11 +9,6 @@ namespace Editor::ScriptModule { class ScriptWidgetComponentGuideSensorOptions : public ::Editor::ScriptModule::ScriptWidgetComponentBaseOptions { -public: - // prevent constructor by default - ScriptWidgetComponentGuideSensorOptions& operator=(ScriptWidgetComponentGuideSensorOptions const&); - ScriptWidgetComponentGuideSensorOptions(); - public: // member functions // NOLINTBEGIN diff --git a/src/mc/editor/script/ScriptWidgetComponentRenderPrimOptions.h b/src/mc/editor/script/ScriptWidgetComponentRenderPrimOptions.h index 472edee0fa..13f2ff9387 100644 --- a/src/mc/editor/script/ScriptWidgetComponentRenderPrimOptions.h +++ b/src/mc/editor/script/ScriptWidgetComponentRenderPrimOptions.h @@ -9,11 +9,6 @@ namespace Editor::ScriptModule { class ScriptWidgetComponentRenderPrimOptions : public ::Editor::ScriptModule::ScriptWidgetComponentBaseOptions { -public: - // prevent constructor by default - ScriptWidgetComponentRenderPrimOptions& operator=(ScriptWidgetComponentRenderPrimOptions const&); - ScriptWidgetComponentRenderPrimOptions(); - public: // member functions // NOLINTBEGIN diff --git a/src/mc/editor/script/ScriptWidgetComponent_WidgetInterface.h b/src/mc/editor/script/ScriptWidgetComponent_WidgetInterface.h index 3bb7ad371e..5cbcea3672 100644 --- a/src/mc/editor/script/ScriptWidgetComponent_WidgetInterface.h +++ b/src/mc/editor/script/ScriptWidgetComponent_WidgetInterface.h @@ -10,12 +10,6 @@ namespace Editor::Network { class WidgetComponentStateChangePayload; } namespace Editor::ScriptModule { class ScriptWidgetComponent_WidgetInterface { -public: - // prevent constructor by default - ScriptWidgetComponent_WidgetInterface& operator=(ScriptWidgetComponent_WidgetInterface const&); - ScriptWidgetComponent_WidgetInterface(ScriptWidgetComponent_WidgetInterface const&); - ScriptWidgetComponent_WidgetInterface(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/editor/script/ScriptWidgetErrorInvalidObject.h b/src/mc/editor/script/ScriptWidgetErrorInvalidObject.h index b829f09641..3c28fa3bc2 100644 --- a/src/mc/editor/script/ScriptWidgetErrorInvalidObject.h +++ b/src/mc/editor/script/ScriptWidgetErrorInvalidObject.h @@ -9,11 +9,6 @@ namespace Editor::ScriptModule { class ScriptWidgetErrorInvalidObject : public ::Scripting::Error { -public: - // prevent constructor by default - ScriptWidgetErrorInvalidObject& operator=(ScriptWidgetErrorInvalidObject const&); - ScriptWidgetErrorInvalidObject(ScriptWidgetErrorInvalidObject const&); - public: // member functions // NOLINTBEGIN diff --git a/src/mc/editor/script/ScriptWidgetGroupErrorInvalidObject.h b/src/mc/editor/script/ScriptWidgetGroupErrorInvalidObject.h index 3c74c82217..d217e99065 100644 --- a/src/mc/editor/script/ScriptWidgetGroupErrorInvalidObject.h +++ b/src/mc/editor/script/ScriptWidgetGroupErrorInvalidObject.h @@ -9,11 +9,6 @@ namespace Editor::ScriptModule { class ScriptWidgetGroupErrorInvalidObject : public ::Scripting::Error { -public: - // prevent constructor by default - ScriptWidgetGroupErrorInvalidObject& operator=(ScriptWidgetGroupErrorInvalidObject const&); - ScriptWidgetGroupErrorInvalidObject(ScriptWidgetGroupErrorInvalidObject const&); - public: // member functions // NOLINTBEGIN diff --git a/src/mc/editor/script/ScriptWidgetGroup_ServiceInterface.h b/src/mc/editor/script/ScriptWidgetGroup_ServiceInterface.h index ed7a67f33a..4745b9d8be 100644 --- a/src/mc/editor/script/ScriptWidgetGroup_ServiceInterface.h +++ b/src/mc/editor/script/ScriptWidgetGroup_ServiceInterface.h @@ -11,12 +11,6 @@ namespace Editor::Network { class WidgetStateChangePayload; } namespace Editor::ScriptModule { class ScriptWidgetGroup_ServiceInterface { -public: - // prevent constructor by default - ScriptWidgetGroup_ServiceInterface& operator=(ScriptWidgetGroup_ServiceInterface const&); - ScriptWidgetGroup_ServiceInterface(ScriptWidgetGroup_ServiceInterface const&); - ScriptWidgetGroup_ServiceInterface(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/editor/script/ScriptWidgetGroup_WidgetInterface.h b/src/mc/editor/script/ScriptWidgetGroup_WidgetInterface.h index 64e19e1f6f..4324833727 100644 --- a/src/mc/editor/script/ScriptWidgetGroup_WidgetInterface.h +++ b/src/mc/editor/script/ScriptWidgetGroup_WidgetInterface.h @@ -17,12 +17,6 @@ namespace Scripting { struct Error; } namespace Editor::ScriptModule { class ScriptWidgetGroup_WidgetInterface { -public: - // prevent constructor by default - ScriptWidgetGroup_WidgetInterface& operator=(ScriptWidgetGroup_WidgetInterface const&); - ScriptWidgetGroup_WidgetInterface(ScriptWidgetGroup_WidgetInterface const&); - ScriptWidgetGroup_WidgetInterface(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/editor/script/ScriptWidgetService_GroupInterface.h b/src/mc/editor/script/ScriptWidgetService_GroupInterface.h index fa1d41f979..c27f4888de 100644 --- a/src/mc/editor/script/ScriptWidgetService_GroupInterface.h +++ b/src/mc/editor/script/ScriptWidgetService_GroupInterface.h @@ -15,12 +15,6 @@ namespace Scripting { struct Error; } namespace Editor::ScriptModule { class ScriptWidgetService_GroupInterface { -public: - // prevent constructor by default - ScriptWidgetService_GroupInterface& operator=(ScriptWidgetService_GroupInterface const&); - ScriptWidgetService_GroupInterface(ScriptWidgetService_GroupInterface const&); - ScriptWidgetService_GroupInterface(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/editor/script/ScriptWidget_ComponentInterface.h b/src/mc/editor/script/ScriptWidget_ComponentInterface.h index 79cc76d2ad..ad815266d6 100644 --- a/src/mc/editor/script/ScriptWidget_ComponentInterface.h +++ b/src/mc/editor/script/ScriptWidget_ComponentInterface.h @@ -11,12 +11,6 @@ namespace mce { class UUID; } namespace Editor::ScriptModule { class ScriptWidget_ComponentInterface { -public: - // prevent constructor by default - ScriptWidget_ComponentInterface& operator=(ScriptWidget_ComponentInterface const&); - ScriptWidget_ComponentInterface(ScriptWidget_ComponentInterface const&); - ScriptWidget_ComponentInterface(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/editor/script/ScriptWidget_GroupInterface.h b/src/mc/editor/script/ScriptWidget_GroupInterface.h index 1a309bde1e..aa02a819aa 100644 --- a/src/mc/editor/script/ScriptWidget_GroupInterface.h +++ b/src/mc/editor/script/ScriptWidget_GroupInterface.h @@ -11,12 +11,6 @@ namespace Editor::Network { class WidgetStateChangePayload; } namespace Editor::ScriptModule { class ScriptWidget_GroupInterface { -public: - // prevent constructor by default - ScriptWidget_GroupInterface& operator=(ScriptWidget_GroupInterface const&); - ScriptWidget_GroupInterface(ScriptWidget_GroupInterface const&); - ScriptWidget_GroupInterface(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/editor/script/ScriptWidget_ServiceInterface.h b/src/mc/editor/script/ScriptWidget_ServiceInterface.h index 822ed3fc29..1466df901c 100644 --- a/src/mc/editor/script/ScriptWidget_ServiceInterface.h +++ b/src/mc/editor/script/ScriptWidget_ServiceInterface.h @@ -10,12 +10,6 @@ namespace Editor::Network { class WidgetComponentStateChangePayload; } namespace Editor::ScriptModule { class ScriptWidget_ServiceInterface { -public: - // prevent constructor by default - ScriptWidget_ServiceInterface& operator=(ScriptWidget_ServiceInterface const&); - ScriptWidget_ServiceInterface(ScriptWidget_ServiceInterface const&); - ScriptWidget_ServiceInterface(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/editor/selection/SelectionContainerChangedPayload.h b/src/mc/editor/selection/SelectionContainerChangedPayload.h index 4fe00a33c7..70c718be37 100644 --- a/src/mc/editor/selection/SelectionContainerChangedPayload.h +++ b/src/mc/editor/selection/SelectionContainerChangedPayload.h @@ -17,12 +17,6 @@ namespace Editor::Network { class SelectionContainerChangedPayload : public ::Editor::Network::NetworkPayload<::Editor::Network::SelectionContainerChangedPayload>, public ::Editor::Network::SelectionContainerCommon { -public: - // prevent constructor by default - SelectionContainerChangedPayload& operator=(SelectionContainerChangedPayload const&); - SelectionContainerChangedPayload(SelectionContainerChangedPayload const&); - SelectionContainerChangedPayload(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/editor/selection/SelectionServiceProvider.h b/src/mc/editor/selection/SelectionServiceProvider.h index 619a7d2e59..ab319d93c3 100644 --- a/src/mc/editor/selection/SelectionServiceProvider.h +++ b/src/mc/editor/selection/SelectionServiceProvider.h @@ -19,12 +19,6 @@ namespace mce { class UUID; } namespace Editor::Services { class SelectionServiceProvider { -public: - // prevent constructor by default - SelectionServiceProvider& operator=(SelectionServiceProvider const&); - SelectionServiceProvider(SelectionServiceProvider const&); - SelectionServiceProvider(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/editor/serviceproviders/ClipboardServiceProvider.h b/src/mc/editor/serviceproviders/ClipboardServiceProvider.h index c3be0c63b7..b07126bd7d 100644 --- a/src/mc/editor/serviceproviders/ClipboardServiceProvider.h +++ b/src/mc/editor/serviceproviders/ClipboardServiceProvider.h @@ -22,12 +22,6 @@ namespace mce { class UUID; } namespace Editor::Services { class ClipboardServiceProvider { -public: - // prevent constructor by default - ClipboardServiceProvider& operator=(ClipboardServiceProvider const&); - ClipboardServiceProvider(ClipboardServiceProvider const&); - ClipboardServiceProvider(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/editor/serviceproviders/CommonBlockUtilityServiceProvider.h b/src/mc/editor/serviceproviders/CommonBlockUtilityServiceProvider.h index a537b89a76..ebcf650133 100644 --- a/src/mc/editor/serviceproviders/CommonBlockUtilityServiceProvider.h +++ b/src/mc/editor/serviceproviders/CommonBlockUtilityServiceProvider.h @@ -11,12 +11,6 @@ class ChunkPos; namespace Editor::BlockUtils { class CommonBlockUtilityServiceProvider { -public: - // prevent constructor by default - CommonBlockUtilityServiceProvider& operator=(CommonBlockUtilityServiceProvider const&); - CommonBlockUtilityServiceProvider(CommonBlockUtilityServiceProvider const&); - CommonBlockUtilityServiceProvider(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/editor/serviceproviders/DataStoreServiceProvider.h b/src/mc/editor/serviceproviders/DataStoreServiceProvider.h index a1ffb0acaa..9d08cc86f5 100644 --- a/src/mc/editor/serviceproviders/DataStoreServiceProvider.h +++ b/src/mc/editor/serviceproviders/DataStoreServiceProvider.h @@ -17,12 +17,6 @@ namespace Json { class Value; } namespace Editor::Services { class DataStoreServiceProvider { -public: - // prevent constructor by default - DataStoreServiceProvider& operator=(DataStoreServiceProvider const&); - DataStoreServiceProvider(DataStoreServiceProvider const&); - DataStoreServiceProvider(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/editor/serviceproviders/EditorBlockPaletteServiceProvider.h b/src/mc/editor/serviceproviders/EditorBlockPaletteServiceProvider.h index 6ed581ec1d..d9dac17dbd 100644 --- a/src/mc/editor/serviceproviders/EditorBlockPaletteServiceProvider.h +++ b/src/mc/editor/serviceproviders/EditorBlockPaletteServiceProvider.h @@ -25,12 +25,6 @@ namespace Editor { struct SimpleBlockPaletteItem; } namespace Editor::Services { class EditorBlockPaletteServiceProvider { -public: - // prevent constructor by default - EditorBlockPaletteServiceProvider& operator=(EditorBlockPaletteServiceProvider const&); - EditorBlockPaletteServiceProvider(EditorBlockPaletteServiceProvider const&); - EditorBlockPaletteServiceProvider(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/editor/serviceproviders/EditorManagerServiceProvider.h b/src/mc/editor/serviceproviders/EditorManagerServiceProvider.h index dbd7192f71..e9fad4c905 100644 --- a/src/mc/editor/serviceproviders/EditorManagerServiceProvider.h +++ b/src/mc/editor/serviceproviders/EditorManagerServiceProvider.h @@ -10,12 +10,6 @@ namespace Editor { class ServiceProviderCollection; } namespace Editor { class EditorManagerServiceProvider { -public: - // prevent constructor by default - EditorManagerServiceProvider& operator=(EditorManagerServiceProvider const&); - EditorManagerServiceProvider(EditorManagerServiceProvider const&); - EditorManagerServiceProvider(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/editor/serviceproviders/EditorPersistenceServiceProvider.h b/src/mc/editor/serviceproviders/EditorPersistenceServiceProvider.h index 12997cf067..3e822b24c1 100644 --- a/src/mc/editor/serviceproviders/EditorPersistenceServiceProvider.h +++ b/src/mc/editor/serviceproviders/EditorPersistenceServiceProvider.h @@ -19,12 +19,6 @@ namespace cereal { struct ReflectionCtx; } namespace Editor::Services { class EditorPersistenceServiceProvider { -public: - // prevent constructor by default - EditorPersistenceServiceProvider& operator=(EditorPersistenceServiceProvider const&); - EditorPersistenceServiceProvider(EditorPersistenceServiceProvider const&); - EditorPersistenceServiceProvider(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/editor/serviceproviders/EditorPlayerServiceProvider.h b/src/mc/editor/serviceproviders/EditorPlayerServiceProvider.h index 26e5731eef..f3fa689bb2 100644 --- a/src/mc/editor/serviceproviders/EditorPlayerServiceProvider.h +++ b/src/mc/editor/serviceproviders/EditorPlayerServiceProvider.h @@ -16,12 +16,6 @@ namespace Scripting { struct Error; } namespace Editor { class EditorPlayerServiceProvider { -public: - // prevent constructor by default - EditorPlayerServiceProvider& operator=(EditorPlayerServiceProvider const&); - EditorPlayerServiceProvider(EditorPlayerServiceProvider const&); - EditorPlayerServiceProvider(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/editor/serviceproviders/EditorSettingsServiceProvider.h b/src/mc/editor/serviceproviders/EditorSettingsServiceProvider.h index 3a55f29a0e..5a19c23e2c 100644 --- a/src/mc/editor/serviceproviders/EditorSettingsServiceProvider.h +++ b/src/mc/editor/serviceproviders/EditorSettingsServiceProvider.h @@ -21,12 +21,6 @@ namespace mce { class Color; } namespace Editor::Services { class EditorSettingsServiceProvider { -public: - // prevent constructor by default - EditorSettingsServiceProvider& operator=(EditorSettingsServiceProvider const&); - EditorSettingsServiceProvider(EditorSettingsServiceProvider const&); - EditorSettingsServiceProvider(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/editor/serviceproviders/EditorTickingAreaServiceProvider.h b/src/mc/editor/serviceproviders/EditorTickingAreaServiceProvider.h index 0cdc2d8b86..6491043eee 100644 --- a/src/mc/editor/serviceproviders/EditorTickingAreaServiceProvider.h +++ b/src/mc/editor/serviceproviders/EditorTickingAreaServiceProvider.h @@ -14,12 +14,6 @@ namespace Scripting { struct Error; } namespace Editor::Services { class EditorTickingAreaServiceProvider { -public: - // prevent constructor by default - EditorTickingAreaServiceProvider& operator=(EditorTickingAreaServiceProvider const&); - EditorTickingAreaServiceProvider(EditorTickingAreaServiceProvider const&); - EditorTickingAreaServiceProvider(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/editor/serviceproviders/EmptySampleServiceProvider.h b/src/mc/editor/serviceproviders/EmptySampleServiceProvider.h index 4679871db8..953ec8a1c0 100644 --- a/src/mc/editor/serviceproviders/EmptySampleServiceProvider.h +++ b/src/mc/editor/serviceproviders/EmptySampleServiceProvider.h @@ -5,12 +5,6 @@ namespace Editor::Services { class EmptySampleServiceProvider { -public: - // prevent constructor by default - EmptySampleServiceProvider& operator=(EmptySampleServiceProvider const&); - EmptySampleServiceProvider(EmptySampleServiceProvider const&); - EmptySampleServiceProvider(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/editor/serviceproviders/ModeServiceProvider.h b/src/mc/editor/serviceproviders/ModeServiceProvider.h index 20d8dbfa1b..4be8fb2a08 100644 --- a/src/mc/editor/serviceproviders/ModeServiceProvider.h +++ b/src/mc/editor/serviceproviders/ModeServiceProvider.h @@ -15,12 +15,6 @@ namespace Bedrock::PubSub { class Subscription; } namespace Editor::Services { class ModeServiceProvider { -public: - // prevent constructor by default - ModeServiceProvider& operator=(ModeServiceProvider const&); - ModeServiceProvider(ModeServiceProvider const&); - ModeServiceProvider(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/editor/serviceproviders/PayloadServiceProvider.h b/src/mc/editor/serviceproviders/PayloadServiceProvider.h index 6a3bc85d95..e39398460a 100644 --- a/src/mc/editor/serviceproviders/PayloadServiceProvider.h +++ b/src/mc/editor/serviceproviders/PayloadServiceProvider.h @@ -16,12 +16,6 @@ namespace Editor::Network { class INetworkPayload; } namespace Editor::Network { class PayloadServiceProvider { -public: - // prevent constructor by default - PayloadServiceProvider& operator=(PayloadServiceProvider const&); - PayloadServiceProvider(PayloadServiceProvider const&); - PayloadServiceProvider(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/editor/serviceproviders/ServerDataTransferServiceProvider.h b/src/mc/editor/serviceproviders/ServerDataTransferServiceProvider.h index 078d164c81..17c15b73b5 100644 --- a/src/mc/editor/serviceproviders/ServerDataTransferServiceProvider.h +++ b/src/mc/editor/serviceproviders/ServerDataTransferServiceProvider.h @@ -14,12 +14,6 @@ namespace Scripting { struct Error; } namespace Editor::Services { class ServerDataTransferServiceProvider { -public: - // prevent constructor by default - ServerDataTransferServiceProvider& operator=(ServerDataTransferServiceProvider const&); - ServerDataTransferServiceProvider(ServerDataTransferServiceProvider const&); - ServerDataTransferServiceProvider(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/editor/serviceproviders/ServerStructureServiceProvider.h b/src/mc/editor/serviceproviders/ServerStructureServiceProvider.h index d636da2d77..74ab13de19 100644 --- a/src/mc/editor/serviceproviders/ServerStructureServiceProvider.h +++ b/src/mc/editor/serviceproviders/ServerStructureServiceProvider.h @@ -10,12 +10,6 @@ namespace Editor { class EditorStructureTemplate; } namespace Editor::Services { class ServerStructureServiceProvider { -public: - // prevent constructor by default - ServerStructureServiceProvider& operator=(ServerStructureServiceProvider const&); - ServerStructureServiceProvider(ServerStructureServiceProvider const&); - ServerStructureServiceProvider(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/editor/serviceproviders/TelemetryServiceProvider.h b/src/mc/editor/serviceproviders/TelemetryServiceProvider.h index 52ee4a675a..ba3013a500 100644 --- a/src/mc/editor/serviceproviders/TelemetryServiceProvider.h +++ b/src/mc/editor/serviceproviders/TelemetryServiceProvider.h @@ -5,12 +5,6 @@ namespace Editor::Services { class TelemetryServiceProvider { -public: - // prevent constructor by default - TelemetryServiceProvider& operator=(TelemetryServiceProvider const&); - TelemetryServiceProvider(TelemetryServiceProvider const&); - TelemetryServiceProvider(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/editor/services/sample/EmptySampleService.h b/src/mc/editor/services/sample/EmptySampleService.h index aa7ad17863..fde7f2553a 100644 --- a/src/mc/editor/services/sample/EmptySampleService.h +++ b/src/mc/editor/services/sample/EmptySampleService.h @@ -16,12 +16,6 @@ namespace Editor::Services { class EmptySampleService : public ::Editor::Services::IEditorService, public ::Editor::Services::EmptySampleServiceProvider { -public: - // prevent constructor by default - EmptySampleService& operator=(EmptySampleService const&); - EmptySampleService(EmptySampleService const&); - EmptySampleService(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/editor/services/tickingarea/EditorTickingAreaService.h b/src/mc/editor/services/tickingarea/EditorTickingAreaService.h index 440d5c3a61..21b1a60d88 100644 --- a/src/mc/editor/services/tickingarea/EditorTickingAreaService.h +++ b/src/mc/editor/services/tickingarea/EditorTickingAreaService.h @@ -18,12 +18,6 @@ namespace Editor::Services { class EditorTickingAreaService : public ::Editor::Services::IEditorService, public ::Editor::Services::EditorTickingAreaServiceProvider { -public: - // prevent constructor by default - EditorTickingAreaService& operator=(EditorTickingAreaService const&); - EditorTickingAreaService(EditorTickingAreaService const&); - EditorTickingAreaService(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/editor/services/transactionmanager/RedoOperationPayload.h b/src/mc/editor/services/transactionmanager/RedoOperationPayload.h index 5ff72d3f0a..05f704b1d5 100644 --- a/src/mc/editor/services/transactionmanager/RedoOperationPayload.h +++ b/src/mc/editor/services/transactionmanager/RedoOperationPayload.h @@ -13,11 +13,6 @@ namespace cereal { struct ReflectionCtx; } namespace Editor::Network { class RedoOperationPayload : public ::Editor::Network::NetworkPayload<::Editor::Network::RedoOperationPayload> { -public: - // prevent constructor by default - RedoOperationPayload& operator=(RedoOperationPayload const&); - RedoOperationPayload(RedoOperationPayload const&); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/editor/services/transactionmanager/UndoOperationPayload.h b/src/mc/editor/services/transactionmanager/UndoOperationPayload.h index 371e7c0413..b4c6a4b3a7 100644 --- a/src/mc/editor/services/transactionmanager/UndoOperationPayload.h +++ b/src/mc/editor/services/transactionmanager/UndoOperationPayload.h @@ -13,11 +13,6 @@ namespace cereal { struct ReflectionCtx; } namespace Editor::Network { class UndoOperationPayload : public ::Editor::Network::NetworkPayload<::Editor::Network::UndoOperationPayload> { -public: - // prevent constructor by default - UndoOperationPayload& operator=(UndoOperationPayload const&); - UndoOperationPayload(UndoOperationPayload const&); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/editor/services/widgets/SplineHelperBase.h b/src/mc/editor/services/widgets/SplineHelperBase.h index 0099d2fdc4..320f210687 100644 --- a/src/mc/editor/services/widgets/SplineHelperBase.h +++ b/src/mc/editor/services/widgets/SplineHelperBase.h @@ -10,12 +10,6 @@ class Vec3; namespace Editor::Widgets { class SplineHelperBase { -public: - // prevent constructor by default - SplineHelperBase& operator=(SplineHelperBase const&); - SplineHelperBase(SplineHelperBase const&); - SplineHelperBase(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/editor/services/widgets/SplineHelperHermite.h b/src/mc/editor/services/widgets/SplineHelperHermite.h index 32a07b4296..43250d7ee5 100644 --- a/src/mc/editor/services/widgets/SplineHelperHermite.h +++ b/src/mc/editor/services/widgets/SplineHelperHermite.h @@ -13,12 +13,6 @@ class Vec3; namespace Editor::Widgets { class SplineHelperHermite : public ::Editor::Widgets::SplineHelperBase { -public: - // prevent constructor by default - SplineHelperHermite& operator=(SplineHelperHermite const&); - SplineHelperHermite(SplineHelperHermite const&); - SplineHelperHermite(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/editor/services/widgets/SplineHelperLine.h b/src/mc/editor/services/widgets/SplineHelperLine.h index fd96f07f74..a052fc85c4 100644 --- a/src/mc/editor/services/widgets/SplineHelperLine.h +++ b/src/mc/editor/services/widgets/SplineHelperLine.h @@ -13,12 +13,6 @@ class Vec3; namespace Editor::Widgets { class SplineHelperLine : public ::Editor::Widgets::SplineHelperBase { -public: - // prevent constructor by default - SplineHelperLine& operator=(SplineHelperLine const&); - SplineHelperLine(SplineHelperLine const&); - SplineHelperLine(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/editor/services/widgets/WidgetAddGuideSensorComponentPayload.h b/src/mc/editor/services/widgets/WidgetAddGuideSensorComponentPayload.h index 4c2ad4151f..26f9a0aece 100644 --- a/src/mc/editor/services/widgets/WidgetAddGuideSensorComponentPayload.h +++ b/src/mc/editor/services/widgets/WidgetAddGuideSensorComponentPayload.h @@ -16,12 +16,6 @@ namespace Editor::Network { class WidgetAddGuideSensorComponentPayload : public ::Editor::Network::NetworkPayload<::Editor::Network::WidgetAddGuideSensorComponentPayload>, public ::Editor::Network::WidgetComponentBasePayload { -public: - // prevent constructor by default - WidgetAddGuideSensorComponentPayload& operator=(WidgetAddGuideSensorComponentPayload const&); - WidgetAddGuideSensorComponentPayload(WidgetAddGuideSensorComponentPayload const&); - WidgetAddGuideSensorComponentPayload(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/editor/services/widgets/WidgetDeleteGroupPayload.h b/src/mc/editor/services/widgets/WidgetDeleteGroupPayload.h index f77003244e..6f79688dc9 100644 --- a/src/mc/editor/services/widgets/WidgetDeleteGroupPayload.h +++ b/src/mc/editor/services/widgets/WidgetDeleteGroupPayload.h @@ -15,12 +15,6 @@ namespace Editor::Network { class WidgetDeleteGroupPayload : public ::Editor::Network::NetworkPayload<::Editor::Network::WidgetDeleteGroupPayload>, public ::Editor::Network::WidgetCommonBasePayload { -public: - // prevent constructor by default - WidgetDeleteGroupPayload& operator=(WidgetDeleteGroupPayload const&); - WidgetDeleteGroupPayload(WidgetDeleteGroupPayload const&); - WidgetDeleteGroupPayload(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/editor/services/widgets/WidgetDeleteWidgetPayload.h b/src/mc/editor/services/widgets/WidgetDeleteWidgetPayload.h index 453da29363..fcefb01235 100644 --- a/src/mc/editor/services/widgets/WidgetDeleteWidgetPayload.h +++ b/src/mc/editor/services/widgets/WidgetDeleteWidgetPayload.h @@ -16,12 +16,6 @@ namespace Editor::Network { class WidgetDeleteWidgetPayload : public ::Editor::Network::NetworkPayload<::Editor::Network::WidgetDeleteWidgetPayload>, public ::Editor::Network::WidgetCommonBasePayload { -public: - // prevent constructor by default - WidgetDeleteWidgetPayload& operator=(WidgetDeleteWidgetPayload const&); - WidgetDeleteWidgetPayload(WidgetDeleteWidgetPayload const&); - WidgetDeleteWidgetPayload(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/editor/systems/EditorFilterPausedSystem.h b/src/mc/editor/systems/EditorFilterPausedSystem.h index 86effc2c2c..0308333805 100644 --- a/src/mc/editor/systems/EditorFilterPausedSystem.h +++ b/src/mc/editor/systems/EditorFilterPausedSystem.h @@ -20,12 +20,6 @@ struct TickingSystemWithInfo; // clang-format on struct EditorFilterPausedSystem { -public: - // prevent constructor by default - EditorFilterPausedSystem& operator=(EditorFilterPausedSystem const&); - EditorFilterPausedSystem(EditorFilterPausedSystem const&); - EditorFilterPausedSystem(); - public: // static functions // NOLINTBEGIN diff --git a/src/mc/editor/systems/EditorTrackLevelTickSystem.h b/src/mc/editor/systems/EditorTrackLevelTickSystem.h index 48bbbf93a5..ea029ddac1 100644 --- a/src/mc/editor/systems/EditorTrackLevelTickSystem.h +++ b/src/mc/editor/systems/EditorTrackLevelTickSystem.h @@ -2,10 +2,4 @@ #include "mc/_HeaderOutputPredefine.h" -struct EditorTrackLevelTickSystem { -public: - // prevent constructor by default - EditorTrackLevelTickSystem& operator=(EditorTrackLevelTickSystem const&); - EditorTrackLevelTickSystem(EditorTrackLevelTickSystem const&); - EditorTrackLevelTickSystem(); -}; +struct EditorTrackLevelTickSystem {}; diff --git a/src/mc/editor/systems/EditorUpdatePausedSystem.h b/src/mc/editor/systems/EditorUpdatePausedSystem.h index d5b5238ec5..b1c80a1039 100644 --- a/src/mc/editor/systems/EditorUpdatePausedSystem.h +++ b/src/mc/editor/systems/EditorUpdatePausedSystem.h @@ -2,10 +2,4 @@ #include "mc/_HeaderOutputPredefine.h" -struct EditorUpdatePausedSystem { -public: - // prevent constructor by default - EditorUpdatePausedSystem& operator=(EditorUpdatePausedSystem const&); - EditorUpdatePausedSystem(EditorUpdatePausedSystem const&); - EditorUpdatePausedSystem(); -}; +struct EditorUpdatePausedSystem {}; diff --git a/src/mc/entity/components/AbilitiesDirtyComponent.h b/src/mc/entity/components/AbilitiesDirtyComponent.h index ae0740786c..269d0e1fce 100644 --- a/src/mc/entity/components/AbilitiesDirtyComponent.h +++ b/src/mc/entity/components/AbilitiesDirtyComponent.h @@ -2,10 +2,4 @@ #include "mc/_HeaderOutputPredefine.h" -struct AbilitiesDirtyComponent { -public: - // prevent constructor by default - AbilitiesDirtyComponent& operator=(AbilitiesDirtyComponent const&); - AbilitiesDirtyComponent(AbilitiesDirtyComponent const&); - AbilitiesDirtyComponent(); -}; +struct AbilitiesDirtyComponent {}; diff --git a/src/mc/entity/components/ActorDiedComponent.h b/src/mc/entity/components/ActorDiedComponent.h index cc8d090512..a72f1c5779 100644 --- a/src/mc/entity/components/ActorDiedComponent.h +++ b/src/mc/entity/components/ActorDiedComponent.h @@ -2,10 +2,4 @@ #include "mc/_HeaderOutputPredefine.h" -struct ActorDiedComponent { -public: - // prevent constructor by default - ActorDiedComponent& operator=(ActorDiedComponent const&); - ActorDiedComponent(ActorDiedComponent const&); - ActorDiedComponent(); -}; +struct ActorDiedComponent {}; diff --git a/src/mc/entity/components/ActorInBubbleColumnComponent.h b/src/mc/entity/components/ActorInBubbleColumnComponent.h index b6bebf202f..0cd507e132 100644 --- a/src/mc/entity/components/ActorInBubbleColumnComponent.h +++ b/src/mc/entity/components/ActorInBubbleColumnComponent.h @@ -2,10 +2,4 @@ #include "mc/_HeaderOutputPredefine.h" -struct ActorInBubbleColumnComponent { -public: - // prevent constructor by default - ActorInBubbleColumnComponent& operator=(ActorInBubbleColumnComponent const&); - ActorInBubbleColumnComponent(ActorInBubbleColumnComponent const&); - ActorInBubbleColumnComponent(); -}; +struct ActorInBubbleColumnComponent {}; diff --git a/src/mc/entity/components/ActorIsBeingDestroyedFlagComponent.h b/src/mc/entity/components/ActorIsBeingDestroyedFlagComponent.h index 8685876f91..33778b170c 100644 --- a/src/mc/entity/components/ActorIsBeingDestroyedFlagComponent.h +++ b/src/mc/entity/components/ActorIsBeingDestroyedFlagComponent.h @@ -2,10 +2,4 @@ #include "mc/_HeaderOutputPredefine.h" -struct ActorIsBeingDestroyedFlagComponent { -public: - // prevent constructor by default - ActorIsBeingDestroyedFlagComponent& operator=(ActorIsBeingDestroyedFlagComponent const&); - ActorIsBeingDestroyedFlagComponent(ActorIsBeingDestroyedFlagComponent const&); - ActorIsBeingDestroyedFlagComponent(); -}; +struct ActorIsBeingDestroyedFlagComponent {}; diff --git a/src/mc/entity/components/ActorIsFirstTickFlagComponent.h b/src/mc/entity/components/ActorIsFirstTickFlagComponent.h index 269dc8a688..939965e6ee 100644 --- a/src/mc/entity/components/ActorIsFirstTickFlagComponent.h +++ b/src/mc/entity/components/ActorIsFirstTickFlagComponent.h @@ -2,10 +2,4 @@ #include "mc/_HeaderOutputPredefine.h" -struct ActorIsFirstTickFlagComponent { -public: - // prevent constructor by default - ActorIsFirstTickFlagComponent& operator=(ActorIsFirstTickFlagComponent const&); - ActorIsFirstTickFlagComponent(ActorIsFirstTickFlagComponent const&); - ActorIsFirstTickFlagComponent(); -}; +struct ActorIsFirstTickFlagComponent {}; diff --git a/src/mc/entity/components/ActorLimitedLifetimeComponent.h b/src/mc/entity/components/ActorLimitedLifetimeComponent.h index a66b2fd1c9..6241041142 100644 --- a/src/mc/entity/components/ActorLimitedLifetimeComponent.h +++ b/src/mc/entity/components/ActorLimitedLifetimeComponent.h @@ -9,11 +9,6 @@ class CompoundTag; // clang-format on class ActorLimitedLifetimeComponent { -public: - // prevent constructor by default - ActorLimitedLifetimeComponent& operator=(ActorLimitedLifetimeComponent const&); - ActorLimitedLifetimeComponent(ActorLimitedLifetimeComponent const&); - public: // member functions // NOLINTBEGIN diff --git a/src/mc/entity/components/ActorMovementTickNeededComponent.h b/src/mc/entity/components/ActorMovementTickNeededComponent.h index b02f8cb63c..cb36890462 100644 --- a/src/mc/entity/components/ActorMovementTickNeededComponent.h +++ b/src/mc/entity/components/ActorMovementTickNeededComponent.h @@ -2,10 +2,4 @@ #include "mc/_HeaderOutputPredefine.h" -struct ActorMovementTickNeededComponent { -public: - // prevent constructor by default - ActorMovementTickNeededComponent& operator=(ActorMovementTickNeededComponent const&); - ActorMovementTickNeededComponent(ActorMovementTickNeededComponent const&); - ActorMovementTickNeededComponent(); -}; +struct ActorMovementTickNeededComponent {}; diff --git a/src/mc/entity/components/ActorSetPositionRequestComponent.h b/src/mc/entity/components/ActorSetPositionRequestComponent.h index 140d362620..6b5997c877 100644 --- a/src/mc/entity/components/ActorSetPositionRequestComponent.h +++ b/src/mc/entity/components/ActorSetPositionRequestComponent.h @@ -5,10 +5,4 @@ // auto generated inclusion list #include "mc/entity/components/Vec3Component.h" -struct ActorSetPositionRequestComponent : public ::Vec3Component { -public: - // prevent constructor by default - ActorSetPositionRequestComponent& operator=(ActorSetPositionRequestComponent const&); - ActorSetPositionRequestComponent(ActorSetPositionRequestComponent const&); - ActorSetPositionRequestComponent(); -}; +struct ActorSetPositionRequestComponent : public ::Vec3Component {}; diff --git a/src/mc/entity/components/ActorTickedComponent.h b/src/mc/entity/components/ActorTickedComponent.h index 7d3c2eec37..fb9118fd8f 100644 --- a/src/mc/entity/components/ActorTickedComponent.h +++ b/src/mc/entity/components/ActorTickedComponent.h @@ -2,10 +2,4 @@ #include "mc/_HeaderOutputPredefine.h" -struct ActorTickedComponent { -public: - // prevent constructor by default - ActorTickedComponent& operator=(ActorTickedComponent const&); - ActorTickedComponent(ActorTickedComponent const&); - ActorTickedComponent(); -}; +struct ActorTickedComponent {}; diff --git a/src/mc/entity/components/AdultRidingHeightOffsetComponent.h b/src/mc/entity/components/AdultRidingHeightOffsetComponent.h index b180556044..b0641c8306 100644 --- a/src/mc/entity/components/AdultRidingHeightOffsetComponent.h +++ b/src/mc/entity/components/AdultRidingHeightOffsetComponent.h @@ -5,10 +5,4 @@ // auto generated inclusion list #include "mc/entity/components/FloatComponent.h" -struct AdultRidingHeightOffsetComponent : public ::FloatComponent { -public: - // prevent constructor by default - AdultRidingHeightOffsetComponent& operator=(AdultRidingHeightOffsetComponent const&); - AdultRidingHeightOffsetComponent(AdultRidingHeightOffsetComponent const&); - AdultRidingHeightOffsetComponent(); -}; +struct AdultRidingHeightOffsetComponent : public ::FloatComponent {}; diff --git a/src/mc/entity/components/AirSpeedComponent.h b/src/mc/entity/components/AirSpeedComponent.h index db1b324519..350bf4e00c 100644 --- a/src/mc/entity/components/AirSpeedComponent.h +++ b/src/mc/entity/components/AirSpeedComponent.h @@ -5,10 +5,4 @@ // auto generated inclusion list #include "mc/entity/components/FloatComponent.h" -struct AirSpeedComponent : public ::FloatComponent { -public: - // prevent constructor by default - AirSpeedComponent& operator=(AirSpeedComponent const&); - AirSpeedComponent(AirSpeedComponent const&); - AirSpeedComponent(); -}; +struct AirSpeedComponent : public ::FloatComponent {}; diff --git a/src/mc/entity/components/AirTravelFlagComponent.h b/src/mc/entity/components/AirTravelFlagComponent.h index 24b444ee19..efc44eced4 100644 --- a/src/mc/entity/components/AirTravelFlagComponent.h +++ b/src/mc/entity/components/AirTravelFlagComponent.h @@ -2,10 +2,4 @@ #include "mc/_HeaderOutputPredefine.h" -struct AirTravelFlagComponent { -public: - // prevent constructor by default - AirTravelFlagComponent& operator=(AirTravelFlagComponent const&); - AirTravelFlagComponent(AirTravelFlagComponent const&); - AirTravelFlagComponent(); -}; +struct AirTravelFlagComponent {}; diff --git a/src/mc/entity/components/AntiCheatRewindFlagComponent.h b/src/mc/entity/components/AntiCheatRewindFlagComponent.h index 7cbd241a30..5c1468a467 100644 --- a/src/mc/entity/components/AntiCheatRewindFlagComponent.h +++ b/src/mc/entity/components/AntiCheatRewindFlagComponent.h @@ -2,10 +2,4 @@ #include "mc/_HeaderOutputPredefine.h" -struct AntiCheatRewindFlagComponent { -public: - // prevent constructor by default - AntiCheatRewindFlagComponent& operator=(AntiCheatRewindFlagComponent const&); - AntiCheatRewindFlagComponent(AntiCheatRewindFlagComponent const&); - AntiCheatRewindFlagComponent(); -}; +struct AntiCheatRewindFlagComponent {}; diff --git a/src/mc/entity/components/ArmorFlyEnabledFlagComponent.h b/src/mc/entity/components/ArmorFlyEnabledFlagComponent.h index 0c34095356..e1623b0d91 100644 --- a/src/mc/entity/components/ArmorFlyEnabledFlagComponent.h +++ b/src/mc/entity/components/ArmorFlyEnabledFlagComponent.h @@ -2,10 +2,4 @@ #include "mc/_HeaderOutputPredefine.h" -struct ArmorFlyEnabledFlagComponent { -public: - // prevent constructor by default - ArmorFlyEnabledFlagComponent& operator=(ArmorFlyEnabledFlagComponent const&); - ArmorFlyEnabledFlagComponent(ArmorFlyEnabledFlagComponent const&); - ArmorFlyEnabledFlagComponent(); -}; +struct ArmorFlyEnabledFlagComponent {}; diff --git a/src/mc/entity/components/ArmorStandPoseIndexComponent.h b/src/mc/entity/components/ArmorStandPoseIndexComponent.h index 225ba67b04..fcb82519fa 100644 --- a/src/mc/entity/components/ArmorStandPoseIndexComponent.h +++ b/src/mc/entity/components/ArmorStandPoseIndexComponent.h @@ -5,10 +5,4 @@ // auto generated inclusion list #include "mc/entity/components/IntComponent.h" -struct ArmorStandPoseIndexComponent : public ::IntComponent { -public: - // prevent constructor by default - ArmorStandPoseIndexComponent& operator=(ArmorStandPoseIndexComponent const&); - ArmorStandPoseIndexComponent(ArmorStandPoseIndexComponent const&); - ArmorStandPoseIndexComponent(); -}; +struct ArmorStandPoseIndexComponent : public ::IntComponent {}; diff --git a/src/mc/entity/components/AutoClimbTravelFlagComponent.h b/src/mc/entity/components/AutoClimbTravelFlagComponent.h index de7f4c6cec..8c3ec5a771 100644 --- a/src/mc/entity/components/AutoClimbTravelFlagComponent.h +++ b/src/mc/entity/components/AutoClimbTravelFlagComponent.h @@ -2,10 +2,4 @@ #include "mc/_HeaderOutputPredefine.h" -struct AutoClimbTravelFlagComponent { -public: - // prevent constructor by default - AutoClimbTravelFlagComponent& operator=(AutoClimbTravelFlagComponent const&); - AutoClimbTravelFlagComponent(AutoClimbTravelFlagComponent const&); - AutoClimbTravelFlagComponent(); -}; +struct AutoClimbTravelFlagComponent {}; diff --git a/src/mc/entity/components/AutoStepRequestFlagComponent.h b/src/mc/entity/components/AutoStepRequestFlagComponent.h index 35d4f078d3..705e58b167 100644 --- a/src/mc/entity/components/AutoStepRequestFlagComponent.h +++ b/src/mc/entity/components/AutoStepRequestFlagComponent.h @@ -2,10 +2,4 @@ #include "mc/_HeaderOutputPredefine.h" -struct AutoStepRequestFlagComponent { -public: - // prevent constructor by default - AutoStepRequestFlagComponent& operator=(AutoStepRequestFlagComponent const&); - AutoStepRequestFlagComponent(AutoStepRequestFlagComponent const&); - AutoStepRequestFlagComponent(); -}; +struct AutoStepRequestFlagComponent {}; diff --git a/src/mc/entity/components/AutonomousActorComponent.h b/src/mc/entity/components/AutonomousActorComponent.h index b380c74478..aedb456258 100644 --- a/src/mc/entity/components/AutonomousActorComponent.h +++ b/src/mc/entity/components/AutonomousActorComponent.h @@ -2,10 +2,4 @@ #include "mc/_HeaderOutputPredefine.h" -struct AutonomousActorComponent { -public: - // prevent constructor by default - AutonomousActorComponent& operator=(AutonomousActorComponent const&); - AutonomousActorComponent(AutonomousActorComponent const&); - AutonomousActorComponent(); -}; +struct AutonomousActorComponent {}; diff --git a/src/mc/entity/components/BlockClimberComponent.h b/src/mc/entity/components/BlockClimberComponent.h index f400acf6f3..ec24e76839 100644 --- a/src/mc/entity/components/BlockClimberComponent.h +++ b/src/mc/entity/components/BlockClimberComponent.h @@ -2,10 +2,4 @@ #include "mc/_HeaderOutputPredefine.h" -struct BlockClimberComponent { -public: - // prevent constructor by default - BlockClimberComponent& operator=(BlockClimberComponent const&); - BlockClimberComponent(BlockClimberComponent const&); - BlockClimberComponent(); -}; +struct BlockClimberComponent {}; diff --git a/src/mc/entity/components/BlockMovementSlowdownMultiplierComponent.h b/src/mc/entity/components/BlockMovementSlowdownMultiplierComponent.h index 791ac284b1..92706d67cd 100644 --- a/src/mc/entity/components/BlockMovementSlowdownMultiplierComponent.h +++ b/src/mc/entity/components/BlockMovementSlowdownMultiplierComponent.h @@ -5,10 +5,4 @@ // auto generated inclusion list #include "mc/entity/components/Vec3Component.h" -struct BlockMovementSlowdownMultiplierComponent : public ::Vec3Component { -public: - // prevent constructor by default - BlockMovementSlowdownMultiplierComponent& operator=(BlockMovementSlowdownMultiplierComponent const&); - BlockMovementSlowdownMultiplierComponent(BlockMovementSlowdownMultiplierComponent const&); - BlockMovementSlowdownMultiplierComponent(); -}; +struct BlockMovementSlowdownMultiplierComponent : public ::Vec3Component {}; diff --git a/src/mc/entity/components/BreaksFallingBlocksFlagComponent.h b/src/mc/entity/components/BreaksFallingBlocksFlagComponent.h index a172ad6c8f..5be5036c77 100644 --- a/src/mc/entity/components/BreaksFallingBlocksFlagComponent.h +++ b/src/mc/entity/components/BreaksFallingBlocksFlagComponent.h @@ -2,10 +2,4 @@ #include "mc/_HeaderOutputPredefine.h" -struct BreaksFallingBlocksFlagComponent { -public: - // prevent constructor by default - BreaksFallingBlocksFlagComponent& operator=(BreaksFallingBlocksFlagComponent const&); - BreaksFallingBlocksFlagComponent(BreaksFallingBlocksFlagComponent const&); - BreaksFallingBlocksFlagComponent(); -}; +struct BreaksFallingBlocksFlagComponent {}; diff --git a/src/mc/entity/components/BurnsInDaylightComponent.h b/src/mc/entity/components/BurnsInDaylightComponent.h index c1ae31693e..729148f95f 100644 --- a/src/mc/entity/components/BurnsInDaylightComponent.h +++ b/src/mc/entity/components/BurnsInDaylightComponent.h @@ -2,10 +2,4 @@ #include "mc/_HeaderOutputPredefine.h" -struct BurnsInDaylightComponent { -public: - // prevent constructor by default - BurnsInDaylightComponent& operator=(BurnsInDaylightComponent const&); - BurnsInDaylightComponent(BurnsInDaylightComponent const&); - BurnsInDaylightComponent(); -}; +struct BurnsInDaylightComponent {}; diff --git a/src/mc/entity/components/CactusBlockFlag.h b/src/mc/entity/components/CactusBlockFlag.h index ae75ba2a62..5e2cddf296 100644 --- a/src/mc/entity/components/CactusBlockFlag.h +++ b/src/mc/entity/components/CactusBlockFlag.h @@ -2,10 +2,4 @@ #include "mc/_HeaderOutputPredefine.h" -struct CactusBlockFlag { -public: - // prevent constructor by default - CactusBlockFlag& operator=(CactusBlockFlag const&); - CactusBlockFlag(CactusBlockFlag const&); - CactusBlockFlag(); -}; +struct CactusBlockFlag {}; diff --git a/src/mc/entity/components/CameraOutOfRangeWarningSentComponent.h b/src/mc/entity/components/CameraOutOfRangeWarningSentComponent.h index 8ee0bf5104..06401cf9ef 100644 --- a/src/mc/entity/components/CameraOutOfRangeWarningSentComponent.h +++ b/src/mc/entity/components/CameraOutOfRangeWarningSentComponent.h @@ -2,10 +2,4 @@ #include "mc/_HeaderOutputPredefine.h" -struct CameraOutOfRangeWarningSentComponent { -public: - // prevent constructor by default - CameraOutOfRangeWarningSentComponent& operator=(CameraOutOfRangeWarningSentComponent const&); - CameraOutOfRangeWarningSentComponent(CameraOutOfRangeWarningSentComponent const&); - CameraOutOfRangeWarningSentComponent(); -}; +struct CameraOutOfRangeWarningSentComponent {}; diff --git a/src/mc/entity/components/CanJoinRaidComponent.h b/src/mc/entity/components/CanJoinRaidComponent.h index f506a7fd6b..3f75da2b10 100644 --- a/src/mc/entity/components/CanJoinRaidComponent.h +++ b/src/mc/entity/components/CanJoinRaidComponent.h @@ -2,10 +2,4 @@ #include "mc/_HeaderOutputPredefine.h" -struct CanJoinRaidComponent { -public: - // prevent constructor by default - CanJoinRaidComponent& operator=(CanJoinRaidComponent const&); - CanJoinRaidComponent(CanJoinRaidComponent const&); - CanJoinRaidComponent(); -}; +struct CanJoinRaidComponent {}; diff --git a/src/mc/entity/components/CanMakeAudibleSoundsComponent.h b/src/mc/entity/components/CanMakeAudibleSoundsComponent.h index 875f1602bc..547944a113 100644 --- a/src/mc/entity/components/CanMakeAudibleSoundsComponent.h +++ b/src/mc/entity/components/CanMakeAudibleSoundsComponent.h @@ -2,10 +2,4 @@ #include "mc/_HeaderOutputPredefine.h" -struct CanMakeAudibleSoundsComponent { -public: - // prevent constructor by default - CanMakeAudibleSoundsComponent& operator=(CanMakeAudibleSoundsComponent const&); - CanMakeAudibleSoundsComponent(CanMakeAudibleSoundsComponent const&); - CanMakeAudibleSoundsComponent(); -}; +struct CanMakeAudibleSoundsComponent {}; diff --git a/src/mc/entity/components/CanSeeInvisibleFlagComponent.h b/src/mc/entity/components/CanSeeInvisibleFlagComponent.h index 64d174769d..1123cd3e63 100644 --- a/src/mc/entity/components/CanSeeInvisibleFlagComponent.h +++ b/src/mc/entity/components/CanSeeInvisibleFlagComponent.h @@ -2,10 +2,4 @@ #include "mc/_HeaderOutputPredefine.h" -struct CanSeeInvisibleFlagComponent { -public: - // prevent constructor by default - CanSeeInvisibleFlagComponent& operator=(CanSeeInvisibleFlagComponent const&); - CanSeeInvisibleFlagComponent(CanSeeInvisibleFlagComponent const&); - CanSeeInvisibleFlagComponent(); -}; +struct CanSeeInvisibleFlagComponent {}; diff --git a/src/mc/entity/components/CanStandOnSnowFlagComponent.h b/src/mc/entity/components/CanStandOnSnowFlagComponent.h index 1db175cf0e..165da0b98a 100644 --- a/src/mc/entity/components/CanStandOnSnowFlagComponent.h +++ b/src/mc/entity/components/CanStandOnSnowFlagComponent.h @@ -2,10 +2,4 @@ #include "mc/_HeaderOutputPredefine.h" -struct CanStandOnSnowFlagComponent { -public: - // prevent constructor by default - CanStandOnSnowFlagComponent& operator=(CanStandOnSnowFlagComponent const&); - CanStandOnSnowFlagComponent(CanStandOnSnowFlagComponent const&); - CanStandOnSnowFlagComponent(); -}; +struct CanStandOnSnowFlagComponent {}; diff --git a/src/mc/entity/components/CollidableMobFlagComponent.h b/src/mc/entity/components/CollidableMobFlagComponent.h index 4110dec23d..c056af2911 100644 --- a/src/mc/entity/components/CollidableMobFlagComponent.h +++ b/src/mc/entity/components/CollidableMobFlagComponent.h @@ -2,10 +2,4 @@ #include "mc/_HeaderOutputPredefine.h" -struct CollidableMobFlagComponent { -public: - // prevent constructor by default - CollidableMobFlagComponent& operator=(CollidableMobFlagComponent const&); - CollidableMobFlagComponent(CollidableMobFlagComponent const&); - CollidableMobFlagComponent(); -}; +struct CollidableMobFlagComponent {}; diff --git a/src/mc/entity/components/ControlledByLocalInstanceComponent.h b/src/mc/entity/components/ControlledByLocalInstanceComponent.h index de7d87ebe9..aebf116e66 100644 --- a/src/mc/entity/components/ControlledByLocalInstanceComponent.h +++ b/src/mc/entity/components/ControlledByLocalInstanceComponent.h @@ -2,10 +2,4 @@ #include "mc/_HeaderOutputPredefine.h" -struct ControlledByLocalInstanceComponent { -public: - // prevent constructor by default - ControlledByLocalInstanceComponent& operator=(ControlledByLocalInstanceComponent const&); - ControlledByLocalInstanceComponent(ControlledByLocalInstanceComponent const&); - ControlledByLocalInstanceComponent(); -}; +struct ControlledByLocalInstanceComponent {}; diff --git a/src/mc/entity/components/CurrentLocalMoveVelocityComponent.h b/src/mc/entity/components/CurrentLocalMoveVelocityComponent.h index 640928fd24..5ec0937aa0 100644 --- a/src/mc/entity/components/CurrentLocalMoveVelocityComponent.h +++ b/src/mc/entity/components/CurrentLocalMoveVelocityComponent.h @@ -5,10 +5,4 @@ // auto generated inclusion list #include "mc/entity/components/Vec2Component.h" -struct CurrentLocalMoveVelocityComponent : public ::Vec2Component { -public: - // prevent constructor by default - CurrentLocalMoveVelocityComponent& operator=(CurrentLocalMoveVelocityComponent const&); - CurrentLocalMoveVelocityComponent(CurrentLocalMoveVelocityComponent const&); - CurrentLocalMoveVelocityComponent(); -}; +struct CurrentLocalMoveVelocityComponent : public ::Vec2Component {}; diff --git a/src/mc/entity/components/CurrentlyImmuneToFallDamageComponent.h b/src/mc/entity/components/CurrentlyImmuneToFallDamageComponent.h index 3cb3b9e690..2609080a4e 100644 --- a/src/mc/entity/components/CurrentlyImmuneToFallDamageComponent.h +++ b/src/mc/entity/components/CurrentlyImmuneToFallDamageComponent.h @@ -2,10 +2,4 @@ #include "mc/_HeaderOutputPredefine.h" -struct CurrentlyImmuneToFallDamageComponent { -public: - // prevent constructor by default - CurrentlyImmuneToFallDamageComponent& operator=(CurrentlyImmuneToFallDamageComponent const&); - CurrentlyImmuneToFallDamageComponent(CurrentlyImmuneToFallDamageComponent const&); - CurrentlyImmuneToFallDamageComponent(); -}; +struct CurrentlyImmuneToFallDamageComponent {}; diff --git a/src/mc/entity/components/DamageNearbyMobsComponent.h b/src/mc/entity/components/DamageNearbyMobsComponent.h index bea087ea2e..0dd3636c50 100644 --- a/src/mc/entity/components/DamageNearbyMobsComponent.h +++ b/src/mc/entity/components/DamageNearbyMobsComponent.h @@ -5,10 +5,4 @@ // auto generated inclusion list #include "mc/entity/components/IntComponent.h" -struct DamageNearbyMobsComponent : public ::IntComponent { -public: - // prevent constructor by default - DamageNearbyMobsComponent& operator=(DamageNearbyMobsComponent const&); - DamageNearbyMobsComponent(DamageNearbyMobsComponent const&); - DamageNearbyMobsComponent(); -}; +struct DamageNearbyMobsComponent : public ::IntComponent {}; diff --git a/src/mc/entity/components/DashJumpFlagComponent.h b/src/mc/entity/components/DashJumpFlagComponent.h index 000aed29df..c274d0b616 100644 --- a/src/mc/entity/components/DashJumpFlagComponent.h +++ b/src/mc/entity/components/DashJumpFlagComponent.h @@ -2,10 +2,4 @@ #include "mc/_HeaderOutputPredefine.h" -struct DashJumpFlagComponent { -public: - // prevent constructor by default - DashJumpFlagComponent& operator=(DashJumpFlagComponent const&); - DashJumpFlagComponent(DashJumpFlagComponent const&); - DashJumpFlagComponent(); -}; +struct DashJumpFlagComponent {}; diff --git a/src/mc/entity/components/DebugInfoDefinition.h b/src/mc/entity/components/DebugInfoDefinition.h index ea313a340b..ba5f24c8a5 100644 --- a/src/mc/entity/components/DebugInfoDefinition.h +++ b/src/mc/entity/components/DebugInfoDefinition.h @@ -2,10 +2,4 @@ #include "mc/_HeaderOutputPredefine.h" -class DebugInfoDefinition { -public: - // prevent constructor by default - DebugInfoDefinition& operator=(DebugInfoDefinition const&); - DebugInfoDefinition(DebugInfoDefinition const&); - DebugInfoDefinition(); -}; +class DebugInfoDefinition {}; diff --git a/src/mc/entity/components/DimensionBoundComponent.h b/src/mc/entity/components/DimensionBoundComponent.h index 848f08223f..42fce673c3 100644 --- a/src/mc/entity/components/DimensionBoundComponent.h +++ b/src/mc/entity/components/DimensionBoundComponent.h @@ -2,10 +2,4 @@ #include "mc/_HeaderOutputPredefine.h" -struct DimensionBoundComponent { -public: - // prevent constructor by default - DimensionBoundComponent& operator=(DimensionBoundComponent const&); - DimensionBoundComponent(DimensionBoundComponent const&); - DimensionBoundComponent(); -}; +struct DimensionBoundComponent {}; diff --git a/src/mc/entity/components/DiscardFrictionFlagComponent.h b/src/mc/entity/components/DiscardFrictionFlagComponent.h index 6f63b7364a..7ee8ca692e 100644 --- a/src/mc/entity/components/DiscardFrictionFlagComponent.h +++ b/src/mc/entity/components/DiscardFrictionFlagComponent.h @@ -2,10 +2,4 @@ #include "mc/_HeaderOutputPredefine.h" -struct DiscardFrictionFlagComponent { -public: - // prevent constructor by default - DiscardFrictionFlagComponent& operator=(DiscardFrictionFlagComponent const&); - DiscardFrictionFlagComponent(DiscardFrictionFlagComponent const&); - DiscardFrictionFlagComponent(); -}; +struct DiscardFrictionFlagComponent {}; diff --git a/src/mc/entity/components/DisplayEntityComponent.h b/src/mc/entity/components/DisplayEntityComponent.h index c85e1c2497..0ea48ea13b 100644 --- a/src/mc/entity/components/DisplayEntityComponent.h +++ b/src/mc/entity/components/DisplayEntityComponent.h @@ -2,10 +2,4 @@ #include "mc/_HeaderOutputPredefine.h" -struct DisplayEntityComponent { -public: - // prevent constructor by default - DisplayEntityComponent& operator=(DisplayEntityComponent const&); - DisplayEntityComponent(DisplayEntityComponent const&); - DisplayEntityComponent(); -}; +struct DisplayEntityComponent {}; diff --git a/src/mc/entity/components/EditorActorPauseTickNeededComponent.h b/src/mc/entity/components/EditorActorPauseTickNeededComponent.h index ea0db86b39..5c4d9e256e 100644 --- a/src/mc/entity/components/EditorActorPauseTickNeededComponent.h +++ b/src/mc/entity/components/EditorActorPauseTickNeededComponent.h @@ -2,10 +2,4 @@ #include "mc/_HeaderOutputPredefine.h" -struct EditorActorPauseTickNeededComponent { -public: - // prevent constructor by default - EditorActorPauseTickNeededComponent& operator=(EditorActorPauseTickNeededComponent const&); - EditorActorPauseTickNeededComponent(EditorActorPauseTickNeededComponent const&); - EditorActorPauseTickNeededComponent(); -}; +struct EditorActorPauseTickNeededComponent {}; diff --git a/src/mc/entity/components/EditorActorPausedComponent.h b/src/mc/entity/components/EditorActorPausedComponent.h index fe72a8be52..e5d0ae2ba3 100644 --- a/src/mc/entity/components/EditorActorPausedComponent.h +++ b/src/mc/entity/components/EditorActorPausedComponent.h @@ -2,10 +2,4 @@ #include "mc/_HeaderOutputPredefine.h" -struct EditorActorPausedComponent { -public: - // prevent constructor by default - EditorActorPausedComponent& operator=(EditorActorPausedComponent const&); - EditorActorPausedComponent(EditorActorPausedComponent const&); - EditorActorPausedComponent(); -}; +struct EditorActorPausedComponent {}; diff --git a/src/mc/entity/components/EjectedByActivatorRailFlagComponent.h b/src/mc/entity/components/EjectedByActivatorRailFlagComponent.h index 6baf33ceb3..ab94f25e65 100644 --- a/src/mc/entity/components/EjectedByActivatorRailFlagComponent.h +++ b/src/mc/entity/components/EjectedByActivatorRailFlagComponent.h @@ -2,10 +2,4 @@ #include "mc/_HeaderOutputPredefine.h" -struct EjectedByActivatorRailFlagComponent { -public: - // prevent constructor by default - EjectedByActivatorRailFlagComponent& operator=(EjectedByActivatorRailFlagComponent const&); - EjectedByActivatorRailFlagComponent(EjectedByActivatorRailFlagComponent const&); - EjectedByActivatorRailFlagComponent(); -}; +struct EjectedByActivatorRailFlagComponent {}; diff --git a/src/mc/entity/components/EndPortalBlockFlag.h b/src/mc/entity/components/EndPortalBlockFlag.h index 187000d076..a0ff4f283e 100644 --- a/src/mc/entity/components/EndPortalBlockFlag.h +++ b/src/mc/entity/components/EndPortalBlockFlag.h @@ -2,10 +2,4 @@ #include "mc/_HeaderOutputPredefine.h" -struct EndPortalBlockFlag { -public: - // prevent constructor by default - EndPortalBlockFlag& operator=(EndPortalBlockFlag const&); - EndPortalBlockFlag(EndPortalBlockFlag const&); - EndPortalBlockFlag(); -}; +struct EndPortalBlockFlag {}; diff --git a/src/mc/entity/components/EntityNeedsInitializeFlagComponent.h b/src/mc/entity/components/EntityNeedsInitializeFlagComponent.h index 3518dfc475..7732e98d0f 100644 --- a/src/mc/entity/components/EntityNeedsInitializeFlagComponent.h +++ b/src/mc/entity/components/EntityNeedsInitializeFlagComponent.h @@ -2,10 +2,4 @@ #include "mc/_HeaderOutputPredefine.h" -struct EntityNeedsInitializeFlagComponent { -public: - // prevent constructor by default - EntityNeedsInitializeFlagComponent& operator=(EntityNeedsInitializeFlagComponent const&); - EntityNeedsInitializeFlagComponent(EntityNeedsInitializeFlagComponent const&); - EntityNeedsInitializeFlagComponent(); -}; +struct EntityNeedsInitializeFlagComponent {}; diff --git a/src/mc/entity/components/ExitFromPassengerFlagComponent.h b/src/mc/entity/components/ExitFromPassengerFlagComponent.h index 681502ac50..52824547b0 100644 --- a/src/mc/entity/components/ExitFromPassengerFlagComponent.h +++ b/src/mc/entity/components/ExitFromPassengerFlagComponent.h @@ -2,10 +2,4 @@ #include "mc/_HeaderOutputPredefine.h" -struct ExitFromPassengerFlagComponent { -public: - // prevent constructor by default - ExitFromPassengerFlagComponent& operator=(ExitFromPassengerFlagComponent const&); - ExitFromPassengerFlagComponent(ExitFromPassengerFlagComponent const&); - ExitFromPassengerFlagComponent(); -}; +struct ExitFromPassengerFlagComponent {}; diff --git a/src/mc/entity/components/FallFlyTicksComponent.h b/src/mc/entity/components/FallFlyTicksComponent.h index 63465306a9..d6a1bd450d 100644 --- a/src/mc/entity/components/FallFlyTicksComponent.h +++ b/src/mc/entity/components/FallFlyTicksComponent.h @@ -5,10 +5,4 @@ // auto generated inclusion list #include "mc/entity/components/IntComponent.h" -struct FallFlyTicksComponent : public ::IntComponent { -public: - // prevent constructor by default - FallFlyTicksComponent& operator=(FallFlyTicksComponent const&); - FallFlyTicksComponent(FallFlyTicksComponent const&); - FallFlyTicksComponent(); -}; +struct FallFlyTicksComponent : public ::IntComponent {}; diff --git a/src/mc/entity/components/FreezeImmuneFlagComponent.h b/src/mc/entity/components/FreezeImmuneFlagComponent.h index 7fcb7a7675..c332959f2e 100644 --- a/src/mc/entity/components/FreezeImmuneFlagComponent.h +++ b/src/mc/entity/components/FreezeImmuneFlagComponent.h @@ -2,10 +2,4 @@ #include "mc/_HeaderOutputPredefine.h" -struct FreezeImmuneFlagComponent { -public: - // prevent constructor by default - FreezeImmuneFlagComponent& operator=(FreezeImmuneFlagComponent const&); - FreezeImmuneFlagComponent(FreezeImmuneFlagComponent const&); - FreezeImmuneFlagComponent(); -}; +struct FreezeImmuneFlagComponent {}; diff --git a/src/mc/entity/components/FrictionModifierComponent.h b/src/mc/entity/components/FrictionModifierComponent.h index 34426197cd..782dc6b8dd 100644 --- a/src/mc/entity/components/FrictionModifierComponent.h +++ b/src/mc/entity/components/FrictionModifierComponent.h @@ -5,10 +5,4 @@ // auto generated inclusion list #include "mc/entity/components/FloatComponent.h" -struct FrictionModifierComponent : public ::FloatComponent { -public: - // prevent constructor by default - FrictionModifierComponent& operator=(FrictionModifierComponent const&); - FrictionModifierComponent(FrictionModifierComponent const&); - FrictionModifierComponent(); -}; +struct FrictionModifierComponent : public ::FloatComponent {}; diff --git a/src/mc/entity/components/GallopSoundCounterComponent.h b/src/mc/entity/components/GallopSoundCounterComponent.h index 957178744f..48c060bf41 100644 --- a/src/mc/entity/components/GallopSoundCounterComponent.h +++ b/src/mc/entity/components/GallopSoundCounterComponent.h @@ -5,10 +5,4 @@ // auto generated inclusion list #include "mc/entity/components/IntComponent.h" -struct GallopSoundCounterComponent : public ::IntComponent { -public: - // prevent constructor by default - GallopSoundCounterComponent& operator=(GallopSoundCounterComponent const&); - GallopSoundCounterComponent(GallopSoundCounterComponent const&); - GallopSoundCounterComponent(); -}; +struct GallopSoundCounterComponent : public ::IntComponent {}; diff --git a/src/mc/entity/components/GlidingTravelFlagComponent.h b/src/mc/entity/components/GlidingTravelFlagComponent.h index ce00463478..bf9a134c8d 100644 --- a/src/mc/entity/components/GlidingTravelFlagComponent.h +++ b/src/mc/entity/components/GlidingTravelFlagComponent.h @@ -2,10 +2,4 @@ #include "mc/_HeaderOutputPredefine.h" -struct GlidingTravelFlagComponent { -public: - // prevent constructor by default - GlidingTravelFlagComponent& operator=(GlidingTravelFlagComponent const&); - GlidingTravelFlagComponent(GlidingTravelFlagComponent const&); - GlidingTravelFlagComponent(); -}; +struct GlidingTravelFlagComponent {}; diff --git a/src/mc/entity/components/GlobalActorComponent.h b/src/mc/entity/components/GlobalActorComponent.h index 8fbab18687..b321423772 100644 --- a/src/mc/entity/components/GlobalActorComponent.h +++ b/src/mc/entity/components/GlobalActorComponent.h @@ -2,10 +2,4 @@ #include "mc/_HeaderOutputPredefine.h" -struct GlobalActorComponent { -public: - // prevent constructor by default - GlobalActorComponent& operator=(GlobalActorComponent const&); - GlobalActorComponent(GlobalActorComponent const&); - GlobalActorComponent(); -}; +struct GlobalActorComponent {}; diff --git a/src/mc/entity/components/GlobalActorRenderComponent.h b/src/mc/entity/components/GlobalActorRenderComponent.h index 5dcbc05573..32bab1a4a9 100644 --- a/src/mc/entity/components/GlobalActorRenderComponent.h +++ b/src/mc/entity/components/GlobalActorRenderComponent.h @@ -2,10 +2,4 @@ #include "mc/_HeaderOutputPredefine.h" -struct GlobalActorRenderComponent { -public: - // prevent constructor by default - GlobalActorRenderComponent& operator=(GlobalActorRenderComponent const&); - GlobalActorRenderComponent(GlobalActorRenderComponent const&); - GlobalActorRenderComponent(); -}; +struct GlobalActorRenderComponent {}; diff --git a/src/mc/entity/components/GroundTravelFlagComponent.h b/src/mc/entity/components/GroundTravelFlagComponent.h index 32163dec9f..f351436825 100644 --- a/src/mc/entity/components/GroundTravelFlagComponent.h +++ b/src/mc/entity/components/GroundTravelFlagComponent.h @@ -2,10 +2,4 @@ #include "mc/_HeaderOutputPredefine.h" -struct GroundTravelFlagComponent { -public: - // prevent constructor by default - GroundTravelFlagComponent& operator=(GroundTravelFlagComponent const&); - GroundTravelFlagComponent(GroundTravelFlagComponent const&); - GroundTravelFlagComponent(); -}; +struct GroundTravelFlagComponent {}; diff --git a/src/mc/entity/components/HasLightweightFamilyFlagComponent.h b/src/mc/entity/components/HasLightweightFamilyFlagComponent.h index 0290c73f5b..be5ff4cd73 100644 --- a/src/mc/entity/components/HasLightweightFamilyFlagComponent.h +++ b/src/mc/entity/components/HasLightweightFamilyFlagComponent.h @@ -2,10 +2,4 @@ #include "mc/_HeaderOutputPredefine.h" -struct HasLightweightFamilyFlagComponent { -public: - // prevent constructor by default - HasLightweightFamilyFlagComponent& operator=(HasLightweightFamilyFlagComponent const&); - HasLightweightFamilyFlagComponent(HasLightweightFamilyFlagComponent const&); - HasLightweightFamilyFlagComponent(); -}; +struct HasLightweightFamilyFlagComponent {}; diff --git a/src/mc/entity/components/HasTeleportedFlagComponent.h b/src/mc/entity/components/HasTeleportedFlagComponent.h index 88febdb924..6753c845ef 100644 --- a/src/mc/entity/components/HasTeleportedFlagComponent.h +++ b/src/mc/entity/components/HasTeleportedFlagComponent.h @@ -2,10 +2,4 @@ #include "mc/_HeaderOutputPredefine.h" -struct HasTeleportedFlagComponent { -public: - // prevent constructor by default - HasTeleportedFlagComponent& operator=(HasTeleportedFlagComponent const&); - HasTeleportedFlagComponent(HasTeleportedFlagComponent const&); - HasTeleportedFlagComponent(); -}; +struct HasTeleportedFlagComponent {}; diff --git a/src/mc/entity/components/HoneyBlockFlag.h b/src/mc/entity/components/HoneyBlockFlag.h index 1e7ae2767d..ab856f3691 100644 --- a/src/mc/entity/components/HoneyBlockFlag.h +++ b/src/mc/entity/components/HoneyBlockFlag.h @@ -2,10 +2,4 @@ #include "mc/_HeaderOutputPredefine.h" -struct HoneyBlockFlag { -public: - // prevent constructor by default - HoneyBlockFlag& operator=(HoneyBlockFlag const&); - HoneyBlockFlag(HoneyBlockFlag const&); - HoneyBlockFlag(); -}; +struct HoneyBlockFlag {}; diff --git a/src/mc/entity/components/HorseLandedOnGroundFlagComponent.h b/src/mc/entity/components/HorseLandedOnGroundFlagComponent.h index c59a98ce5f..cecfd5553d 100644 --- a/src/mc/entity/components/HorseLandedOnGroundFlagComponent.h +++ b/src/mc/entity/components/HorseLandedOnGroundFlagComponent.h @@ -2,10 +2,4 @@ #include "mc/_HeaderOutputPredefine.h" -struct HorseLandedOnGroundFlagComponent { -public: - // prevent constructor by default - HorseLandedOnGroundFlagComponent& operator=(HorseLandedOnGroundFlagComponent const&); - HorseLandedOnGroundFlagComponent(HorseLandedOnGroundFlagComponent const&); - HorseLandedOnGroundFlagComponent(); -}; +struct HorseLandedOnGroundFlagComponent {}; diff --git a/src/mc/entity/components/HorseWasOnGroundPreTravelComponent.h b/src/mc/entity/components/HorseWasOnGroundPreTravelComponent.h index 49981ba2f4..2921245d08 100644 --- a/src/mc/entity/components/HorseWasOnGroundPreTravelComponent.h +++ b/src/mc/entity/components/HorseWasOnGroundPreTravelComponent.h @@ -2,10 +2,4 @@ #include "mc/_HeaderOutputPredefine.h" -struct HorseWasOnGroundPreTravelComponent { -public: - // prevent constructor by default - HorseWasOnGroundPreTravelComponent& operator=(HorseWasOnGroundPreTravelComponent const&); - HorseWasOnGroundPreTravelComponent(HorseWasOnGroundPreTravelComponent const&); - HorseWasOnGroundPreTravelComponent(); -}; +struct HorseWasOnGroundPreTravelComponent {}; diff --git a/src/mc/entity/components/HurtOnConditionComponent.h b/src/mc/entity/components/HurtOnConditionComponent.h index 1ea4dedf88..829057e80b 100644 --- a/src/mc/entity/components/HurtOnConditionComponent.h +++ b/src/mc/entity/components/HurtOnConditionComponent.h @@ -2,10 +2,4 @@ #include "mc/_HeaderOutputPredefine.h" -struct HurtOnConditionComponent { -public: - // prevent constructor by default - HurtOnConditionComponent& operator=(HurtOnConditionComponent const&); - HurtOnConditionComponent(HurtOnConditionComponent const&); - HurtOnConditionComponent(); -}; +struct HurtOnConditionComponent {}; diff --git a/src/mc/entity/components/IHitResultContainer.h b/src/mc/entity/components/IHitResultContainer.h index 1d9f691c40..d897718d1b 100644 --- a/src/mc/entity/components/IHitResultContainer.h +++ b/src/mc/entity/components/IHitResultContainer.h @@ -8,12 +8,6 @@ class HitResult; // clang-format on struct IHitResultContainer { -public: - // prevent constructor by default - IHitResultContainer& operator=(IHitResultContainer const&); - IHitResultContainer(IHitResultContainer const&); - IHitResultContainer(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/entity/components/IPlayerTickPolicy.h b/src/mc/entity/components/IPlayerTickPolicy.h index 16a08f1dc9..6289d76a8a 100644 --- a/src/mc/entity/components/IPlayerTickPolicy.h +++ b/src/mc/entity/components/IPlayerTickPolicy.h @@ -16,12 +16,6 @@ struct IPlayerTickPolicy { SkipTick = 2, }; -public: - // prevent constructor by default - IPlayerTickPolicy& operator=(IPlayerTickPolicy const&); - IPlayerTickPolicy(IPlayerTickPolicy const&); - IPlayerTickPolicy(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/entity/components/IReplayStatePolicy.h b/src/mc/entity/components/IReplayStatePolicy.h index 243ed29e7f..507e708a4b 100644 --- a/src/mc/entity/components/IReplayStatePolicy.h +++ b/src/mc/entity/components/IReplayStatePolicy.h @@ -13,12 +13,6 @@ struct MovementCorrection; // clang-format on struct IReplayStatePolicy { -public: - // prevent constructor by default - IReplayStatePolicy& operator=(IReplayStatePolicy const&); - IReplayStatePolicy(IReplayStatePolicy const&); - IReplayStatePolicy(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/entity/components/IgnoresEntityInsideFlagComponent.h b/src/mc/entity/components/IgnoresEntityInsideFlagComponent.h index 0f4e0af0d9..5624bfde0f 100644 --- a/src/mc/entity/components/IgnoresEntityInsideFlagComponent.h +++ b/src/mc/entity/components/IgnoresEntityInsideFlagComponent.h @@ -2,10 +2,4 @@ #include "mc/_HeaderOutputPredefine.h" -struct IgnoresEntityInsideFlagComponent { -public: - // prevent constructor by default - IgnoresEntityInsideFlagComponent& operator=(IgnoresEntityInsideFlagComponent const&); - IgnoresEntityInsideFlagComponent(IgnoresEntityInsideFlagComponent const&); - IgnoresEntityInsideFlagComponent(); -}; +struct IgnoresEntityInsideFlagComponent {}; diff --git a/src/mc/entity/components/ImitateMobSoundsComponent.h b/src/mc/entity/components/ImitateMobSoundsComponent.h index bb3219ba12..8c92d71ffb 100644 --- a/src/mc/entity/components/ImitateMobSoundsComponent.h +++ b/src/mc/entity/components/ImitateMobSoundsComponent.h @@ -13,12 +13,6 @@ class Randomize; // clang-format on class ImitateMobSoundsComponent { -public: - // prevent constructor by default - ImitateMobSoundsComponent& operator=(ImitateMobSoundsComponent const&); - ImitateMobSoundsComponent(ImitateMobSoundsComponent const&); - ImitateMobSoundsComponent(); - public: // static functions // NOLINTBEGIN diff --git a/src/mc/entity/components/ImmuneToLavaDragComponent.h b/src/mc/entity/components/ImmuneToLavaDragComponent.h index 8937d86af4..85edb7f3ee 100644 --- a/src/mc/entity/components/ImmuneToLavaDragComponent.h +++ b/src/mc/entity/components/ImmuneToLavaDragComponent.h @@ -2,10 +2,4 @@ #include "mc/_HeaderOutputPredefine.h" -struct ImmuneToLavaDragComponent { -public: - // prevent constructor by default - ImmuneToLavaDragComponent& operator=(ImmuneToLavaDragComponent const&); - ImmuneToLavaDragComponent(ImmuneToLavaDragComponent const&); - ImmuneToLavaDragComponent(); -}; +struct ImmuneToLavaDragComponent {}; diff --git a/src/mc/entity/components/InsideBlockWithPosAndBlockComponent.h b/src/mc/entity/components/InsideBlockWithPosAndBlockComponent.h index e0149a1660..0b32daa919 100644 --- a/src/mc/entity/components/InsideBlockWithPosAndBlockComponent.h +++ b/src/mc/entity/components/InsideBlockWithPosAndBlockComponent.h @@ -3,10 +3,4 @@ #include "mc/_HeaderOutputPredefine.h" template -struct InsideBlockWithPosAndBlockComponent { -public: - // prevent constructor by default - InsideBlockWithPosAndBlockComponent& operator=(InsideBlockWithPosAndBlockComponent const&); - InsideBlockWithPosAndBlockComponent(InsideBlockWithPosAndBlockComponent const&); - InsideBlockWithPosAndBlockComponent(); -}; +struct InsideBlockWithPosAndBlockComponent {}; diff --git a/src/mc/entity/components/InsideBlockWithPosComponent.h b/src/mc/entity/components/InsideBlockWithPosComponent.h index 5db4c43b13..2d919860d1 100644 --- a/src/mc/entity/components/InsideBlockWithPosComponent.h +++ b/src/mc/entity/components/InsideBlockWithPosComponent.h @@ -3,10 +3,4 @@ #include "mc/_HeaderOutputPredefine.h" template -struct InsideBlockWithPosComponent { -public: - // prevent constructor by default - InsideBlockWithPosComponent& operator=(InsideBlockWithPosComponent const&); - InsideBlockWithPosComponent(InsideBlockWithPosComponent const&); - InsideBlockWithPosComponent(); -}; +struct InsideBlockWithPosComponent {}; diff --git a/src/mc/entity/components/InsideSlowingSweetBerryBushBlockComponent.h b/src/mc/entity/components/InsideSlowingSweetBerryBushBlockComponent.h index 1585bdd9db..bdf20f4dbf 100644 --- a/src/mc/entity/components/InsideSlowingSweetBerryBushBlockComponent.h +++ b/src/mc/entity/components/InsideSlowingSweetBerryBushBlockComponent.h @@ -2,10 +2,4 @@ #include "mc/_HeaderOutputPredefine.h" -struct InsideSlowingSweetBerryBushBlockComponent { -public: - // prevent constructor by default - InsideSlowingSweetBerryBushBlockComponent& operator=(InsideSlowingSweetBerryBushBlockComponent const&); - InsideSlowingSweetBerryBushBlockComponent(InsideSlowingSweetBerryBushBlockComponent const&); - InsideSlowingSweetBerryBushBlockComponent(); -}; +struct InsideSlowingSweetBerryBushBlockComponent {}; diff --git a/src/mc/entity/components/InsideWebBlockComponent.h b/src/mc/entity/components/InsideWebBlockComponent.h index e7c9eae9c5..0c37033d76 100644 --- a/src/mc/entity/components/InsideWebBlockComponent.h +++ b/src/mc/entity/components/InsideWebBlockComponent.h @@ -2,10 +2,4 @@ #include "mc/_HeaderOutputPredefine.h" -struct InsideWebBlockComponent { -public: - // prevent constructor by default - InsideWebBlockComponent& operator=(InsideWebBlockComponent const&); - InsideWebBlockComponent(InsideWebBlockComponent const&); - InsideWebBlockComponent(); -}; +struct InsideWebBlockComponent {}; diff --git a/src/mc/entity/components/InteractPreventDefaultFlagComponent.h b/src/mc/entity/components/InteractPreventDefaultFlagComponent.h index 9747a42f18..f114231865 100644 --- a/src/mc/entity/components/InteractPreventDefaultFlagComponent.h +++ b/src/mc/entity/components/InteractPreventDefaultFlagComponent.h @@ -2,10 +2,4 @@ #include "mc/_HeaderOutputPredefine.h" -struct InteractPreventDefaultFlagComponent { -public: - // prevent constructor by default - InteractPreventDefaultFlagComponent& operator=(InteractPreventDefaultFlagComponent const&); - InteractPreventDefaultFlagComponent(InteractPreventDefaultFlagComponent const&); - InteractPreventDefaultFlagComponent(); -}; +struct InteractPreventDefaultFlagComponent {}; diff --git a/src/mc/entity/components/IsChasingDuringPlayFlagComponent.h b/src/mc/entity/components/IsChasingDuringPlayFlagComponent.h index 96f3c69746..3b9598a66b 100644 --- a/src/mc/entity/components/IsChasingDuringPlayFlagComponent.h +++ b/src/mc/entity/components/IsChasingDuringPlayFlagComponent.h @@ -2,10 +2,4 @@ #include "mc/_HeaderOutputPredefine.h" -struct IsChasingDuringPlayFlagComponent { -public: - // prevent constructor by default - IsChasingDuringPlayFlagComponent& operator=(IsChasingDuringPlayFlagComponent const&); - IsChasingDuringPlayFlagComponent(IsChasingDuringPlayFlagComponent const&); - IsChasingDuringPlayFlagComponent(); -}; +struct IsChasingDuringPlayFlagComponent {}; diff --git a/src/mc/entity/components/IsDeadFlagComponent.h b/src/mc/entity/components/IsDeadFlagComponent.h index 79eb5bed2a..33c3249e6e 100644 --- a/src/mc/entity/components/IsDeadFlagComponent.h +++ b/src/mc/entity/components/IsDeadFlagComponent.h @@ -2,10 +2,4 @@ #include "mc/_HeaderOutputPredefine.h" -struct IsDeadFlagComponent { -public: - // prevent constructor by default - IsDeadFlagComponent& operator=(IsDeadFlagComponent const&); - IsDeadFlagComponent(IsDeadFlagComponent const&); - IsDeadFlagComponent(); -}; +struct IsDeadFlagComponent {}; diff --git a/src/mc/entity/components/IsFishableFlagComponent.h b/src/mc/entity/components/IsFishableFlagComponent.h index 7f1e7c19fb..7afb864c9b 100644 --- a/src/mc/entity/components/IsFishableFlagComponent.h +++ b/src/mc/entity/components/IsFishableFlagComponent.h @@ -2,10 +2,4 @@ #include "mc/_HeaderOutputPredefine.h" -struct IsFishableFlagComponent { -public: - // prevent constructor by default - IsFishableFlagComponent& operator=(IsFishableFlagComponent const&); - IsFishableFlagComponent(IsFishableFlagComponent const&); - IsFishableFlagComponent(); -}; +struct IsFishableFlagComponent {}; diff --git a/src/mc/entity/components/IsHorizontalPoseFlagComponent.h b/src/mc/entity/components/IsHorizontalPoseFlagComponent.h index e3a395cb8d..ba905e1c45 100644 --- a/src/mc/entity/components/IsHorizontalPoseFlagComponent.h +++ b/src/mc/entity/components/IsHorizontalPoseFlagComponent.h @@ -2,10 +2,4 @@ #include "mc/_HeaderOutputPredefine.h" -struct IsHorizontalPoseFlagComponent { -public: - // prevent constructor by default - IsHorizontalPoseFlagComponent& operator=(IsHorizontalPoseFlagComponent const&); - IsHorizontalPoseFlagComponent(IsHorizontalPoseFlagComponent const&); - IsHorizontalPoseFlagComponent(); -}; +struct IsHorizontalPoseFlagComponent {}; diff --git a/src/mc/entity/components/IsNearDolphinsFlagComponent.h b/src/mc/entity/components/IsNearDolphinsFlagComponent.h index 9992c6e6ba..1bfdcb26d7 100644 --- a/src/mc/entity/components/IsNearDolphinsFlagComponent.h +++ b/src/mc/entity/components/IsNearDolphinsFlagComponent.h @@ -2,10 +2,4 @@ #include "mc/_HeaderOutputPredefine.h" -struct IsNearDolphinsFlagComponent { -public: - // prevent constructor by default - IsNearDolphinsFlagComponent& operator=(IsNearDolphinsFlagComponent const&); - IsNearDolphinsFlagComponent(IsNearDolphinsFlagComponent const&); - IsNearDolphinsFlagComponent(); -}; +struct IsNearDolphinsFlagComponent {}; diff --git a/src/mc/entity/components/IsOnHotBlockFlagComponent.h b/src/mc/entity/components/IsOnHotBlockFlagComponent.h index b4c82667cd..53f754199c 100644 --- a/src/mc/entity/components/IsOnHotBlockFlagComponent.h +++ b/src/mc/entity/components/IsOnHotBlockFlagComponent.h @@ -2,10 +2,4 @@ #include "mc/_HeaderOutputPredefine.h" -struct IsOnHotBlockFlagComponent { -public: - // prevent constructor by default - IsOnHotBlockFlagComponent& operator=(IsOnHotBlockFlagComponent const&); - IsOnHotBlockFlagComponent(IsOnHotBlockFlagComponent const&); - IsOnHotBlockFlagComponent(); -}; +struct IsOnHotBlockFlagComponent {}; diff --git a/src/mc/entity/components/IsPanickingFlagComponent.h b/src/mc/entity/components/IsPanickingFlagComponent.h index abfc206a3d..8b68ef7734 100644 --- a/src/mc/entity/components/IsPanickingFlagComponent.h +++ b/src/mc/entity/components/IsPanickingFlagComponent.h @@ -2,10 +2,4 @@ #include "mc/_HeaderOutputPredefine.h" -struct IsPanickingFlagComponent { -public: - // prevent constructor by default - IsPanickingFlagComponent& operator=(IsPanickingFlagComponent const&); - IsPanickingFlagComponent(IsPanickingFlagComponent const&); - IsPanickingFlagComponent(); -}; +struct IsPanickingFlagComponent {}; diff --git a/src/mc/entity/components/IsShowingCreditsFlagComponent.h b/src/mc/entity/components/IsShowingCreditsFlagComponent.h index 3d5feaf5ac..43bc97722f 100644 --- a/src/mc/entity/components/IsShowingCreditsFlagComponent.h +++ b/src/mc/entity/components/IsShowingCreditsFlagComponent.h @@ -2,10 +2,4 @@ #include "mc/_HeaderOutputPredefine.h" -struct IsShowingCreditsFlagComponent { -public: - // prevent constructor by default - IsShowingCreditsFlagComponent& operator=(IsShowingCreditsFlagComponent const&); - IsShowingCreditsFlagComponent(IsShowingCreditsFlagComponent const&); - IsShowingCreditsFlagComponent(); -}; +struct IsShowingCreditsFlagComponent {}; diff --git a/src/mc/entity/components/JoinRaidQueuedFlagComponent.h b/src/mc/entity/components/JoinRaidQueuedFlagComponent.h index 979e934ac6..19df3d7c75 100644 --- a/src/mc/entity/components/JoinRaidQueuedFlagComponent.h +++ b/src/mc/entity/components/JoinRaidQueuedFlagComponent.h @@ -2,10 +2,4 @@ #include "mc/_HeaderOutputPredefine.h" -struct JoinRaidQueuedFlagComponent { -public: - // prevent constructor by default - JoinRaidQueuedFlagComponent& operator=(JoinRaidQueuedFlagComponent const&); - JoinRaidQueuedFlagComponent(JoinRaidQueuedFlagComponent const&); - JoinRaidQueuedFlagComponent(); -}; +struct JoinRaidQueuedFlagComponent {}; diff --git a/src/mc/entity/components/JumpFromGroundRequestComponent.h b/src/mc/entity/components/JumpFromGroundRequestComponent.h index 7bae03bbad..d22e433004 100644 --- a/src/mc/entity/components/JumpFromGroundRequestComponent.h +++ b/src/mc/entity/components/JumpFromGroundRequestComponent.h @@ -2,10 +2,4 @@ #include "mc/_HeaderOutputPredefine.h" -struct JumpFromGroundRequestComponent { -public: - // prevent constructor by default - JumpFromGroundRequestComponent& operator=(JumpFromGroundRequestComponent const&); - JumpFromGroundRequestComponent(JumpFromGroundRequestComponent const&); - JumpFromGroundRequestComponent(); -}; +struct JumpFromGroundRequestComponent {}; diff --git a/src/mc/entity/components/JumpPendingScaleComponent.h b/src/mc/entity/components/JumpPendingScaleComponent.h index e7fecd74c7..451a66cc93 100644 --- a/src/mc/entity/components/JumpPendingScaleComponent.h +++ b/src/mc/entity/components/JumpPendingScaleComponent.h @@ -5,10 +5,4 @@ // auto generated inclusion list #include "mc/entity/components/FloatComponent.h" -struct JumpPendingScaleComponent : public ::FloatComponent { -public: - // prevent constructor by default - JumpPendingScaleComponent& operator=(JumpPendingScaleComponent const&); - JumpPendingScaleComponent(JumpPendingScaleComponent const&); - JumpPendingScaleComponent(); -}; +struct JumpPendingScaleComponent : public ::FloatComponent {}; diff --git a/src/mc/entity/components/JumpRidingScaleComponent.h b/src/mc/entity/components/JumpRidingScaleComponent.h index 512db931d4..cfb15e66f1 100644 --- a/src/mc/entity/components/JumpRidingScaleComponent.h +++ b/src/mc/entity/components/JumpRidingScaleComponent.h @@ -5,10 +5,4 @@ // auto generated inclusion list #include "mc/entity/components/FloatComponent.h" -struct JumpRidingScaleComponent : public ::FloatComponent { -public: - // prevent constructor by default - JumpRidingScaleComponent& operator=(JumpRidingScaleComponent const&); - JumpRidingScaleComponent(JumpRidingScaleComponent const&); - JumpRidingScaleComponent(); -}; +struct JumpRidingScaleComponent : public ::FloatComponent {}; diff --git a/src/mc/entity/components/KeepRidingEvenIfTooLargeForVehicleFlagComponent.h b/src/mc/entity/components/KeepRidingEvenIfTooLargeForVehicleFlagComponent.h index 737c8264e3..bfd87be0dd 100644 --- a/src/mc/entity/components/KeepRidingEvenIfTooLargeForVehicleFlagComponent.h +++ b/src/mc/entity/components/KeepRidingEvenIfTooLargeForVehicleFlagComponent.h @@ -2,10 +2,4 @@ #include "mc/_HeaderOutputPredefine.h" -struct KeepRidingEvenIfTooLargeForVehicleFlagComponent { -public: - // prevent constructor by default - KeepRidingEvenIfTooLargeForVehicleFlagComponent& operator=(KeepRidingEvenIfTooLargeForVehicleFlagComponent const&); - KeepRidingEvenIfTooLargeForVehicleFlagComponent(KeepRidingEvenIfTooLargeForVehicleFlagComponent const&); - KeepRidingEvenIfTooLargeForVehicleFlagComponent(); -}; +struct KeepRidingEvenIfTooLargeForVehicleFlagComponent {}; diff --git a/src/mc/entity/components/LavaSlimeJumpRequestComponent.h b/src/mc/entity/components/LavaSlimeJumpRequestComponent.h index 52942ab2f6..e13c790ab6 100644 --- a/src/mc/entity/components/LavaSlimeJumpRequestComponent.h +++ b/src/mc/entity/components/LavaSlimeJumpRequestComponent.h @@ -2,10 +2,4 @@ #include "mc/_HeaderOutputPredefine.h" -struct LavaSlimeJumpRequestComponent { -public: - // prevent constructor by default - LavaSlimeJumpRequestComponent& operator=(LavaSlimeJumpRequestComponent const&); - LavaSlimeJumpRequestComponent(LavaSlimeJumpRequestComponent const&); - LavaSlimeJumpRequestComponent(); -}; +struct LavaSlimeJumpRequestComponent {}; diff --git a/src/mc/entity/components/LavaTravelFlagComponent.h b/src/mc/entity/components/LavaTravelFlagComponent.h index cc1cc68e97..c6bed4ee90 100644 --- a/src/mc/entity/components/LavaTravelFlagComponent.h +++ b/src/mc/entity/components/LavaTravelFlagComponent.h @@ -2,10 +2,4 @@ #include "mc/_HeaderOutputPredefine.h" -struct LavaTravelFlagComponent { -public: - // prevent constructor by default - LavaTravelFlagComponent& operator=(LavaTravelFlagComponent const&); - LavaTravelFlagComponent(LavaTravelFlagComponent const&); - LavaTravelFlagComponent(); -}; +struct LavaTravelFlagComponent {}; diff --git a/src/mc/entity/components/LevitateTravelFlagComponent.h b/src/mc/entity/components/LevitateTravelFlagComponent.h index 916a2603f4..df51539b04 100644 --- a/src/mc/entity/components/LevitateTravelFlagComponent.h +++ b/src/mc/entity/components/LevitateTravelFlagComponent.h @@ -2,10 +2,4 @@ #include "mc/_HeaderOutputPredefine.h" -struct LevitateTravelFlagComponent { -public: - // prevent constructor by default - LevitateTravelFlagComponent& operator=(LevitateTravelFlagComponent const&); - LevitateTravelFlagComponent(LevitateTravelFlagComponent const&); - LevitateTravelFlagComponent(); -}; +struct LevitateTravelFlagComponent {}; diff --git a/src/mc/entity/components/LiquidTravelFlagComponent.h b/src/mc/entity/components/LiquidTravelFlagComponent.h index 41852beb80..df427648c0 100644 --- a/src/mc/entity/components/LiquidTravelFlagComponent.h +++ b/src/mc/entity/components/LiquidTravelFlagComponent.h @@ -2,10 +2,4 @@ #include "mc/_HeaderOutputPredefine.h" -struct LiquidTravelFlagComponent { -public: - // prevent constructor by default - LiquidTravelFlagComponent& operator=(LiquidTravelFlagComponent const&); - LiquidTravelFlagComponent(LiquidTravelFlagComponent const&); - LiquidTravelFlagComponent(); -}; +struct LiquidTravelFlagComponent {}; diff --git a/src/mc/entity/components/LocalConstBlockSourceFactoryComponent.h b/src/mc/entity/components/LocalConstBlockSourceFactoryComponent.h index a28db0831b..b149df2bbc 100644 --- a/src/mc/entity/components/LocalConstBlockSourceFactoryComponent.h +++ b/src/mc/entity/components/LocalConstBlockSourceFactoryComponent.h @@ -5,10 +5,4 @@ // auto generated inclusion list #include "mc/entity/components/BlockSourceFactoryImpl.h" -struct LocalConstBlockSourceFactoryComponent : public ::BlockSourceFactoryImpl { -public: - // prevent constructor by default - LocalConstBlockSourceFactoryComponent& operator=(LocalConstBlockSourceFactoryComponent const&); - LocalConstBlockSourceFactoryComponent(LocalConstBlockSourceFactoryComponent const&); - LocalConstBlockSourceFactoryComponent(); -}; +struct LocalConstBlockSourceFactoryComponent : public ::BlockSourceFactoryImpl {}; diff --git a/src/mc/entity/components/LocalMoveVelocityComponent.h b/src/mc/entity/components/LocalMoveVelocityComponent.h index 6ea2507c29..8fb3a006d3 100644 --- a/src/mc/entity/components/LocalMoveVelocityComponent.h +++ b/src/mc/entity/components/LocalMoveVelocityComponent.h @@ -5,10 +5,4 @@ // auto generated inclusion list #include "mc/entity/components/Vec3Component.h" -struct LocalMoveVelocityComponent : public ::Vec3Component { -public: - // prevent constructor by default - LocalMoveVelocityComponent& operator=(LocalMoveVelocityComponent const&); - LocalMoveVelocityComponent(LocalMoveVelocityComponent const&); - LocalMoveVelocityComponent(); -}; +struct LocalMoveVelocityComponent : public ::Vec3Component {}; diff --git a/src/mc/entity/components/LocalPlayerComponent.h b/src/mc/entity/components/LocalPlayerComponent.h index 624b454f01..772c1b6e6f 100644 --- a/src/mc/entity/components/LocalPlayerComponent.h +++ b/src/mc/entity/components/LocalPlayerComponent.h @@ -2,10 +2,4 @@ #include "mc/_HeaderOutputPredefine.h" -struct LocalPlayerComponent { -public: - // prevent constructor by default - LocalPlayerComponent& operator=(LocalPlayerComponent const&); - LocalPlayerComponent(LocalPlayerComponent const&); - LocalPlayerComponent(); -}; +struct LocalPlayerComponent {}; diff --git a/src/mc/entity/components/LocalPlayerJumpRequestComponent.h b/src/mc/entity/components/LocalPlayerJumpRequestComponent.h index 963514ab2f..0e9fc5e1c2 100644 --- a/src/mc/entity/components/LocalPlayerJumpRequestComponent.h +++ b/src/mc/entity/components/LocalPlayerJumpRequestComponent.h @@ -2,10 +2,4 @@ #include "mc/_HeaderOutputPredefine.h" -struct LocalPlayerJumpRequestComponent { -public: - // prevent constructor by default - LocalPlayerJumpRequestComponent& operator=(LocalPlayerJumpRequestComponent const&); - LocalPlayerJumpRequestComponent(LocalPlayerJumpRequestComponent const&); - LocalPlayerJumpRequestComponent(); -}; +struct LocalPlayerJumpRequestComponent {}; diff --git a/src/mc/entity/components/LocalSpatialEntityFetcherFactoryComponent.h b/src/mc/entity/components/LocalSpatialEntityFetcherFactoryComponent.h index a0be58f55a..c216bd6b6c 100644 --- a/src/mc/entity/components/LocalSpatialEntityFetcherFactoryComponent.h +++ b/src/mc/entity/components/LocalSpatialEntityFetcherFactoryComponent.h @@ -5,10 +5,4 @@ // auto generated inclusion list #include "mc/entity/components/BlockSourceFactoryImpl.h" -struct LocalSpatialEntityFetcherFactoryComponent : public ::BlockSourceFactoryImpl { -public: - // prevent constructor by default - LocalSpatialEntityFetcherFactoryComponent& operator=(LocalSpatialEntityFetcherFactoryComponent const&); - LocalSpatialEntityFetcherFactoryComponent(LocalSpatialEntityFetcherFactoryComponent const&); - LocalSpatialEntityFetcherFactoryComponent(); -}; +struct LocalSpatialEntityFetcherFactoryComponent : public ::BlockSourceFactoryImpl {}; diff --git a/src/mc/entity/components/MakesLavaStepSoundComponent.h b/src/mc/entity/components/MakesLavaStepSoundComponent.h index 9d3ad63be6..0bbb0d20f6 100644 --- a/src/mc/entity/components/MakesLavaStepSoundComponent.h +++ b/src/mc/entity/components/MakesLavaStepSoundComponent.h @@ -2,10 +2,4 @@ #include "mc/_HeaderOutputPredefine.h" -struct MakesLavaStepSoundComponent { -public: - // prevent constructor by default - MakesLavaStepSoundComponent& operator=(MakesLavaStepSoundComponent const&); - MakesLavaStepSoundComponent(MakesLavaStepSoundComponent const&); - MakesLavaStepSoundComponent(); -}; +struct MakesLavaStepSoundComponent {}; diff --git a/src/mc/entity/components/MaxAutoStepComponent.h b/src/mc/entity/components/MaxAutoStepComponent.h index d14d33a809..0100f88849 100644 --- a/src/mc/entity/components/MaxAutoStepComponent.h +++ b/src/mc/entity/components/MaxAutoStepComponent.h @@ -5,10 +5,4 @@ // auto generated inclusion list #include "mc/entity/components/FloatComponent.h" -struct MaxAutoStepComponent : public ::FloatComponent { -public: - // prevent constructor by default - MaxAutoStepComponent& operator=(MaxAutoStepComponent const&); - MaxAutoStepComponent(MaxAutoStepComponent const&); - MaxAutoStepComponent(); -}; +struct MaxAutoStepComponent : public ::FloatComponent {}; diff --git a/src/mc/entity/components/MobAnimationComponent.h b/src/mc/entity/components/MobAnimationComponent.h index 5a72472d47..c43dc1a45c 100644 --- a/src/mc/entity/components/MobAnimationComponent.h +++ b/src/mc/entity/components/MobAnimationComponent.h @@ -5,10 +5,4 @@ // auto generated inclusion list #include "mc/entity/components/FloatComponent.h" -struct MobAnimationComponent : public ::FloatComponent { -public: - // prevent constructor by default - MobAnimationComponent& operator=(MobAnimationComponent const&); - MobAnimationComponent(MobAnimationComponent const&); - MobAnimationComponent(); -}; +struct MobAnimationComponent : public ::FloatComponent {}; diff --git a/src/mc/entity/components/MobHurtTimeComponent.h b/src/mc/entity/components/MobHurtTimeComponent.h index 60faf81da4..636e8c6b99 100644 --- a/src/mc/entity/components/MobHurtTimeComponent.h +++ b/src/mc/entity/components/MobHurtTimeComponent.h @@ -5,10 +5,4 @@ // auto generated inclusion list #include "mc/entity/components/IntComponent.h" -struct MobHurtTimeComponent : public ::IntComponent { -public: - // prevent constructor by default - MobHurtTimeComponent& operator=(MobHurtTimeComponent const&); - MobHurtTimeComponent(MobHurtTimeComponent const&); - MobHurtTimeComponent(); -}; +struct MobHurtTimeComponent : public ::IntComponent {}; diff --git a/src/mc/entity/components/MobRotationComponent.h b/src/mc/entity/components/MobRotationComponent.h index 0de4c5b627..c03ac752eb 100644 --- a/src/mc/entity/components/MobRotationComponent.h +++ b/src/mc/entity/components/MobRotationComponent.h @@ -5,10 +5,4 @@ // auto generated inclusion list #include "mc/entity/components/FloatComponent.h" -struct MobRotationComponent : public ::FloatComponent { -public: - // prevent constructor by default - MobRotationComponent& operator=(MobRotationComponent const&); - MobRotationComponent(MobRotationComponent const&); - MobRotationComponent(); -}; +struct MobRotationComponent : public ::FloatComponent {}; diff --git a/src/mc/entity/components/MoveTowardsClosestSpaceFlagComponent.h b/src/mc/entity/components/MoveTowardsClosestSpaceFlagComponent.h index 85b8e61a86..9cf66a2e36 100644 --- a/src/mc/entity/components/MoveTowardsClosestSpaceFlagComponent.h +++ b/src/mc/entity/components/MoveTowardsClosestSpaceFlagComponent.h @@ -2,10 +2,4 @@ #include "mc/_HeaderOutputPredefine.h" -struct MoveTowardsClosestSpaceFlagComponent { -public: - // prevent constructor by default - MoveTowardsClosestSpaceFlagComponent& operator=(MoveTowardsClosestSpaceFlagComponent const&); - MoveTowardsClosestSpaceFlagComponent(MoveTowardsClosestSpaceFlagComponent const&); - MoveTowardsClosestSpaceFlagComponent(); -}; +struct MoveTowardsClosestSpaceFlagComponent {}; diff --git a/src/mc/entity/components/MovementSpeedComponent.h b/src/mc/entity/components/MovementSpeedComponent.h index ac84c0e384..cf6ee7cd87 100644 --- a/src/mc/entity/components/MovementSpeedComponent.h +++ b/src/mc/entity/components/MovementSpeedComponent.h @@ -5,10 +5,4 @@ // auto generated inclusion list #include "mc/entity/components/FloatComponent.h" -struct MovementSpeedComponent : public ::FloatComponent { -public: - // prevent constructor by default - MovementSpeedComponent& operator=(MovementSpeedComponent const&); - MovementSpeedComponent(MovementSpeedComponent const&); - MovementSpeedComponent(); -}; +struct MovementSpeedComponent : public ::FloatComponent {}; diff --git a/src/mc/entity/components/NeedSetPreviousPositionFlagComponent.h b/src/mc/entity/components/NeedSetPreviousPositionFlagComponent.h index db176293a1..d6fac321d9 100644 --- a/src/mc/entity/components/NeedSetPreviousPositionFlagComponent.h +++ b/src/mc/entity/components/NeedSetPreviousPositionFlagComponent.h @@ -2,10 +2,4 @@ #include "mc/_HeaderOutputPredefine.h" -struct NeedSetPreviousPositionFlagComponent { -public: - // prevent constructor by default - NeedSetPreviousPositionFlagComponent& operator=(NeedSetPreviousPositionFlagComponent const&); - NeedSetPreviousPositionFlagComponent(NeedSetPreviousPositionFlagComponent const&); - NeedSetPreviousPositionFlagComponent(); -}; +struct NeedSetPreviousPositionFlagComponent {}; diff --git a/src/mc/entity/components/NeedsUpgradeToBodySlotFlagComponent.h b/src/mc/entity/components/NeedsUpgradeToBodySlotFlagComponent.h index 835324827d..c4710e0c58 100644 --- a/src/mc/entity/components/NeedsUpgradeToBodySlotFlagComponent.h +++ b/src/mc/entity/components/NeedsUpgradeToBodySlotFlagComponent.h @@ -2,10 +2,4 @@ #include "mc/_HeaderOutputPredefine.h" -struct NeedsUpgradeToBodySlotFlagComponent { -public: - // prevent constructor by default - NeedsUpgradeToBodySlotFlagComponent& operator=(NeedsUpgradeToBodySlotFlagComponent const&); - NeedsUpgradeToBodySlotFlagComponent(NeedsUpgradeToBodySlotFlagComponent const&); - NeedsUpgradeToBodySlotFlagComponent(); -}; +struct NeedsUpgradeToBodySlotFlagComponent {}; diff --git a/src/mc/entity/components/NeverChangesSizeFlagComponent.h b/src/mc/entity/components/NeverChangesSizeFlagComponent.h index 58dd86db70..8af3f0f8d5 100644 --- a/src/mc/entity/components/NeverChangesSizeFlagComponent.h +++ b/src/mc/entity/components/NeverChangesSizeFlagComponent.h @@ -2,10 +2,4 @@ #include "mc/_HeaderOutputPredefine.h" -struct NeverChangesSizeFlagComponent { -public: - // prevent constructor by default - NeverChangesSizeFlagComponent& operator=(NeverChangesSizeFlagComponent const&); - NeverChangesSizeFlagComponent(NeverChangesSizeFlagComponent const&); - NeverChangesSizeFlagComponent(); -}; +struct NeverChangesSizeFlagComponent {}; diff --git a/src/mc/entity/components/OtherJumpRequestComponent.h b/src/mc/entity/components/OtherJumpRequestComponent.h index ec0bfa6fac..3c2471f23e 100644 --- a/src/mc/entity/components/OtherJumpRequestComponent.h +++ b/src/mc/entity/components/OtherJumpRequestComponent.h @@ -2,10 +2,4 @@ #include "mc/_HeaderOutputPredefine.h" -struct OtherJumpRequestComponent { -public: - // prevent constructor by default - OtherJumpRequestComponent& operator=(OtherJumpRequestComponent const&); - OtherJumpRequestComponent(OtherJumpRequestComponent const&); - OtherJumpRequestComponent(); -}; +struct OtherJumpRequestComponent {}; diff --git a/src/mc/entity/components/OutOfControlComponent.h b/src/mc/entity/components/OutOfControlComponent.h index 9f1b22a550..64673436e2 100644 --- a/src/mc/entity/components/OutOfControlComponent.h +++ b/src/mc/entity/components/OutOfControlComponent.h @@ -2,10 +2,4 @@ #include "mc/_HeaderOutputPredefine.h" -struct OutOfControlComponent { -public: - // prevent constructor by default - OutOfControlComponent& operator=(OutOfControlComponent const&); - OutOfControlComponent(OutOfControlComponent const&); - OutOfControlComponent(); -}; +struct OutOfControlComponent {}; diff --git a/src/mc/entity/components/ParticleEventRequest.h b/src/mc/entity/components/ParticleEventRequest.h index e4f05bcb6b..44f937c912 100644 --- a/src/mc/entity/components/ParticleEventRequest.h +++ b/src/mc/entity/components/ParticleEventRequest.h @@ -68,13 +68,7 @@ struct ParticleEventRequest { TerrainData(); }; - struct TerrainSlideData : public ::ParticleEventRequest::TerrainData { - public: - // prevent constructor by default - TerrainSlideData& operator=(TerrainSlideData const&); - TerrainSlideData(TerrainSlideData const&); - TerrainSlideData(); - }; + struct TerrainSlideData : public ::ParticleEventRequest::TerrainData {}; struct BreakingItemData { public: diff --git a/src/mc/entity/components/PassengersChangedFlagComponent.h b/src/mc/entity/components/PassengersChangedFlagComponent.h index 8428901a1b..ce26066c03 100644 --- a/src/mc/entity/components/PassengersChangedFlagComponent.h +++ b/src/mc/entity/components/PassengersChangedFlagComponent.h @@ -2,10 +2,4 @@ #include "mc/_HeaderOutputPredefine.h" -struct PassengersChangedFlagComponent { -public: - // prevent constructor by default - PassengersChangedFlagComponent& operator=(PassengersChangedFlagComponent const&); - PassengersChangedFlagComponent(PassengersChangedFlagComponent const&); - PassengersChangedFlagComponent(); -}; +struct PassengersChangedFlagComponent {}; diff --git a/src/mc/entity/components/PermanentSkipMobAiStepComponent.h b/src/mc/entity/components/PermanentSkipMobAiStepComponent.h index 8c513ade01..4fc73770cc 100644 --- a/src/mc/entity/components/PermanentSkipMobAiStepComponent.h +++ b/src/mc/entity/components/PermanentSkipMobAiStepComponent.h @@ -2,10 +2,4 @@ #include "mc/_HeaderOutputPredefine.h" -struct PermanentSkipMobAiStepComponent { -public: - // prevent constructor by default - PermanentSkipMobAiStepComponent& operator=(PermanentSkipMobAiStepComponent const&); - PermanentSkipMobAiStepComponent(PermanentSkipMobAiStepComponent const&); - PermanentSkipMobAiStepComponent(); -}; +struct PermanentSkipMobAiStepComponent {}; diff --git a/src/mc/entity/components/PermanentSkipMobTravelComponent.h b/src/mc/entity/components/PermanentSkipMobTravelComponent.h index 0b6ea55e77..306202ac19 100644 --- a/src/mc/entity/components/PermanentSkipMobTravelComponent.h +++ b/src/mc/entity/components/PermanentSkipMobTravelComponent.h @@ -2,10 +2,4 @@ #include "mc/_HeaderOutputPredefine.h" -struct PermanentSkipMobTravelComponent { -public: - // prevent constructor by default - PermanentSkipMobTravelComponent& operator=(PermanentSkipMobTravelComponent const&); - PermanentSkipMobTravelComponent(PermanentSkipMobTravelComponent const&); - PermanentSkipMobTravelComponent(); -}; +struct PermanentSkipMobTravelComponent {}; diff --git a/src/mc/entity/components/PermanentSkipNormalTickComponent.h b/src/mc/entity/components/PermanentSkipNormalTickComponent.h index 1af80cc226..e30f90e225 100644 --- a/src/mc/entity/components/PermanentSkipNormalTickComponent.h +++ b/src/mc/entity/components/PermanentSkipNormalTickComponent.h @@ -2,10 +2,4 @@ #include "mc/_HeaderOutputPredefine.h" -struct PermanentSkipNormalTickComponent { -public: - // prevent constructor by default - PermanentSkipNormalTickComponent& operator=(PermanentSkipNormalTickComponent const&); - PermanentSkipNormalTickComponent(PermanentSkipNormalTickComponent const&); - PermanentSkipNormalTickComponent(); -}; +struct PermanentSkipNormalTickComponent {}; diff --git a/src/mc/entity/components/PermissionFlyFlagComponent.h b/src/mc/entity/components/PermissionFlyFlagComponent.h index 69028724ff..2b919719e6 100644 --- a/src/mc/entity/components/PermissionFlyFlagComponent.h +++ b/src/mc/entity/components/PermissionFlyFlagComponent.h @@ -2,10 +2,4 @@ #include "mc/_HeaderOutputPredefine.h" -struct PermissionFlyFlagComponent { -public: - // prevent constructor by default - PermissionFlyFlagComponent& operator=(PermissionFlyFlagComponent const&); - PermissionFlyFlagComponent(PermissionFlyFlagComponent const&); - PermissionFlyFlagComponent(); -}; +struct PermissionFlyFlagComponent {}; diff --git a/src/mc/entity/components/PersistentComponent.h b/src/mc/entity/components/PersistentComponent.h index a0ceaaef75..911fbc0378 100644 --- a/src/mc/entity/components/PersistentComponent.h +++ b/src/mc/entity/components/PersistentComponent.h @@ -2,10 +2,4 @@ #include "mc/_HeaderOutputPredefine.h" -struct PersistentComponent { -public: - // prevent constructor by default - PersistentComponent& operator=(PersistentComponent const&); - PersistentComponent(PersistentComponent const&); - PersistentComponent(); -}; +struct PersistentComponent {}; diff --git a/src/mc/entity/components/PhysicsComponent.h b/src/mc/entity/components/PhysicsComponent.h index 1961fc8982..57e80e1c13 100644 --- a/src/mc/entity/components/PhysicsComponent.h +++ b/src/mc/entity/components/PhysicsComponent.h @@ -2,10 +2,4 @@ #include "mc/_HeaderOutputPredefine.h" -struct PhysicsComponent { -public: - // prevent constructor by default - PhysicsComponent& operator=(PhysicsComponent const&); - PhysicsComponent(PhysicsComponent const&); - PhysicsComponent(); -}; +struct PhysicsComponent {}; diff --git a/src/mc/entity/components/PostSplashGameEventRequestComponent.h b/src/mc/entity/components/PostSplashGameEventRequestComponent.h index 9f75be444a..dd6487e22a 100644 --- a/src/mc/entity/components/PostSplashGameEventRequestComponent.h +++ b/src/mc/entity/components/PostSplashGameEventRequestComponent.h @@ -2,10 +2,4 @@ #include "mc/_HeaderOutputPredefine.h" -struct PostSplashGameEventRequestComponent { -public: - // prevent constructor by default - PostSplashGameEventRequestComponent& operator=(PostSplashGameEventRequestComponent const&); - PostSplashGameEventRequestComponent(PostSplashGameEventRequestComponent const&); - PostSplashGameEventRequestComponent(); -}; +struct PostSplashGameEventRequestComponent {}; diff --git a/src/mc/entity/components/PostTickPositionDeltaComponent.h b/src/mc/entity/components/PostTickPositionDeltaComponent.h index 82f6a45ac2..57f03b613b 100644 --- a/src/mc/entity/components/PostTickPositionDeltaComponent.h +++ b/src/mc/entity/components/PostTickPositionDeltaComponent.h @@ -5,10 +5,4 @@ // auto generated inclusion list #include "mc/entity/components/Vec3Component.h" -struct PostTickPositionDeltaComponent : public ::Vec3Component { -public: - // prevent constructor by default - PostTickPositionDeltaComponent& operator=(PostTickPositionDeltaComponent const&); - PostTickPositionDeltaComponent(PostTickPositionDeltaComponent const&); - PostTickPositionDeltaComponent(); -}; +struct PostTickPositionDeltaComponent : public ::Vec3Component {}; diff --git a/src/mc/entity/components/PowderSnowBlockFlag.h b/src/mc/entity/components/PowderSnowBlockFlag.h index 0f4b3d15b9..88e1599fe5 100644 --- a/src/mc/entity/components/PowderSnowBlockFlag.h +++ b/src/mc/entity/components/PowderSnowBlockFlag.h @@ -2,10 +2,4 @@ #include "mc/_HeaderOutputPredefine.h" -struct PowderSnowBlockFlag { -public: - // prevent constructor by default - PowderSnowBlockFlag& operator=(PowderSnowBlockFlag const&); - PowderSnowBlockFlag(PowderSnowBlockFlag const&); - PowderSnowBlockFlag(); -}; +struct PowderSnowBlockFlag {}; diff --git a/src/mc/entity/components/PowerJumpFlagComponent.h b/src/mc/entity/components/PowerJumpFlagComponent.h index 2a5612857f..cf90a37b97 100644 --- a/src/mc/entity/components/PowerJumpFlagComponent.h +++ b/src/mc/entity/components/PowerJumpFlagComponent.h @@ -2,10 +2,4 @@ #include "mc/_HeaderOutputPredefine.h" -struct PowerJumpFlagComponent { -public: - // prevent constructor by default - PowerJumpFlagComponent& operator=(PowerJumpFlagComponent const&); - PowerJumpFlagComponent(PowerJumpFlagComponent const&); - PowerJumpFlagComponent(); -}; +struct PowerJumpFlagComponent {}; diff --git a/src/mc/entity/components/PreferredPathComponent.h b/src/mc/entity/components/PreferredPathComponent.h index ed29c22c88..575feebbaf 100644 --- a/src/mc/entity/components/PreferredPathComponent.h +++ b/src/mc/entity/components/PreferredPathComponent.h @@ -2,10 +2,4 @@ #include "mc/_HeaderOutputPredefine.h" -struct PreferredPathComponent { -public: - // prevent constructor by default - PreferredPathComponent& operator=(PreferredPathComponent const&); - PreferredPathComponent(PreferredPathComponent const&); - PreferredPathComponent(); -}; +struct PreferredPathComponent {}; diff --git a/src/mc/entity/components/PrevPosRotSetThisTickFlagComponent.h b/src/mc/entity/components/PrevPosRotSetThisTickFlagComponent.h index 8acdf6a20b..bd626663be 100644 --- a/src/mc/entity/components/PrevPosRotSetThisTickFlagComponent.h +++ b/src/mc/entity/components/PrevPosRotSetThisTickFlagComponent.h @@ -2,10 +2,4 @@ #include "mc/_HeaderOutputPredefine.h" -struct PrevPosRotSetThisTickFlagComponent { -public: - // prevent constructor by default - PrevPosRotSetThisTickFlagComponent& operator=(PrevPosRotSetThisTickFlagComponent const&); - PrevPosRotSetThisTickFlagComponent(PrevPosRotSetThisTickFlagComponent const&); - PrevPosRotSetThisTickFlagComponent(); -}; +struct PrevPosRotSetThisTickFlagComponent {}; diff --git a/src/mc/entity/components/ProjectileFlagComponent.h b/src/mc/entity/components/ProjectileFlagComponent.h index 33f4292f92..454ec7b433 100644 --- a/src/mc/entity/components/ProjectileFlagComponent.h +++ b/src/mc/entity/components/ProjectileFlagComponent.h @@ -2,10 +2,4 @@ #include "mc/_HeaderOutputPredefine.h" -struct ProjectileFlagComponent { -public: - // prevent constructor by default - ProjectileFlagComponent& operator=(ProjectileFlagComponent const&); - ProjectileFlagComponent(ProjectileFlagComponent const&); - ProjectileFlagComponent(); -}; +struct ProjectileFlagComponent {}; diff --git a/src/mc/entity/components/PushActorsRequestComponent.h b/src/mc/entity/components/PushActorsRequestComponent.h index 73fe9e364f..3423d71c20 100644 --- a/src/mc/entity/components/PushActorsRequestComponent.h +++ b/src/mc/entity/components/PushActorsRequestComponent.h @@ -2,10 +2,4 @@ #include "mc/_HeaderOutputPredefine.h" -struct PushActorsRequestComponent { -public: - // prevent constructor by default - PushActorsRequestComponent& operator=(PushActorsRequestComponent const&); - PushActorsRequestComponent(PushActorsRequestComponent const&); - PushActorsRequestComponent(); -}; +struct PushActorsRequestComponent {}; diff --git a/src/mc/entity/components/RaidTriggerComponent.h b/src/mc/entity/components/RaidTriggerComponent.h index 092186a1f0..951c1d62ea 100644 --- a/src/mc/entity/components/RaidTriggerComponent.h +++ b/src/mc/entity/components/RaidTriggerComponent.h @@ -2,10 +2,4 @@ #include "mc/_HeaderOutputPredefine.h" -struct RaidTriggerComponent { -public: - // prevent constructor by default - RaidTriggerComponent& operator=(RaidTriggerComponent const&); - RaidTriggerComponent(RaidTriggerComponent const&); - RaidTriggerComponent(); -}; +struct RaidTriggerComponent {}; diff --git a/src/mc/entity/components/RecalculateControlledByLocalInstanceRequestComponent.h b/src/mc/entity/components/RecalculateControlledByLocalInstanceRequestComponent.h index d2632bc939..54453d50ad 100644 --- a/src/mc/entity/components/RecalculateControlledByLocalInstanceRequestComponent.h +++ b/src/mc/entity/components/RecalculateControlledByLocalInstanceRequestComponent.h @@ -2,11 +2,4 @@ #include "mc/_HeaderOutputPredefine.h" -struct RecalculateControlledByLocalInstanceRequestComponent { -public: - // prevent constructor by default - RecalculateControlledByLocalInstanceRequestComponent& - operator=(RecalculateControlledByLocalInstanceRequestComponent const&); - RecalculateControlledByLocalInstanceRequestComponent(RecalculateControlledByLocalInstanceRequestComponent const&); - RecalculateControlledByLocalInstanceRequestComponent(); -}; +struct RecalculateControlledByLocalInstanceRequestComponent {}; diff --git a/src/mc/entity/components/RemotePlayerComponent.h b/src/mc/entity/components/RemotePlayerComponent.h index fa24abd726..29e13c49d7 100644 --- a/src/mc/entity/components/RemotePlayerComponent.h +++ b/src/mc/entity/components/RemotePlayerComponent.h @@ -2,10 +2,4 @@ #include "mc/_HeaderOutputPredefine.h" -struct RemotePlayerComponent { -public: - // prevent constructor by default - RemotePlayerComponent& operator=(RemotePlayerComponent const&); - RemotePlayerComponent(RemotePlayerComponent const&); - RemotePlayerComponent(); -}; +struct RemotePlayerComponent {}; diff --git a/src/mc/entity/components/RemoveAllPassengersRequestComponent.h b/src/mc/entity/components/RemoveAllPassengersRequestComponent.h index 54cb0cfab9..292077715a 100644 --- a/src/mc/entity/components/RemoveAllPassengersRequestComponent.h +++ b/src/mc/entity/components/RemoveAllPassengersRequestComponent.h @@ -2,10 +2,4 @@ #include "mc/_HeaderOutputPredefine.h" -struct RemoveAllPassengersRequestComponent { -public: - // prevent constructor by default - RemoveAllPassengersRequestComponent& operator=(RemoveAllPassengersRequestComponent const&); - RemoveAllPassengersRequestComponent(RemoveAllPassengersRequestComponent const&); - RemoveAllPassengersRequestComponent(); -}; +struct RemoveAllPassengersRequestComponent {}; diff --git a/src/mc/entity/components/RemoveInPeacefulFlagComponent.h b/src/mc/entity/components/RemoveInPeacefulFlagComponent.h index 29636487d9..8f062a1378 100644 --- a/src/mc/entity/components/RemoveInPeacefulFlagComponent.h +++ b/src/mc/entity/components/RemoveInPeacefulFlagComponent.h @@ -2,10 +2,4 @@ #include "mc/_HeaderOutputPredefine.h" -struct RemoveInPeacefulFlagComponent { -public: - // prevent constructor by default - RemoveInPeacefulFlagComponent& operator=(RemoveInPeacefulFlagComponent const&); - RemoveInPeacefulFlagComponent(RemoveInPeacefulFlagComponent const&); - RemoveInPeacefulFlagComponent(); -}; +struct RemoveInPeacefulFlagComponent {}; diff --git a/src/mc/entity/components/RenderPositionComponent.h b/src/mc/entity/components/RenderPositionComponent.h index 74d950d668..a9ebfab87d 100644 --- a/src/mc/entity/components/RenderPositionComponent.h +++ b/src/mc/entity/components/RenderPositionComponent.h @@ -5,10 +5,4 @@ // auto generated inclusion list #include "mc/entity/components/Vec3Component.h" -struct RenderPositionComponent : public ::Vec3Component { -public: - // prevent constructor by default - RenderPositionComponent& operator=(RenderPositionComponent const&); - RenderPositionComponent(RenderPositionComponent const&); - RenderPositionComponent(); -}; +struct RenderPositionComponent : public ::Vec3Component {}; diff --git a/src/mc/entity/components/ReplayStateLenderFlagComponent.h b/src/mc/entity/components/ReplayStateLenderFlagComponent.h index d8c0aa8196..d58384c4db 100644 --- a/src/mc/entity/components/ReplayStateLenderFlagComponent.h +++ b/src/mc/entity/components/ReplayStateLenderFlagComponent.h @@ -2,10 +2,4 @@ #include "mc/_HeaderOutputPredefine.h" -struct ReplayStateLenderFlagComponent { -public: - // prevent constructor by default - ReplayStateLenderFlagComponent& operator=(ReplayStateLenderFlagComponent const&); - ReplayStateLenderFlagComponent(ReplayStateLenderFlagComponent const&); - ReplayStateLenderFlagComponent(); -}; +struct ReplayStateLenderFlagComponent {}; diff --git a/src/mc/entity/components/ReplayStateValueDiff.h b/src/mc/entity/components/ReplayStateValueDiff.h index 93d713c0ea..193f7acfb4 100644 --- a/src/mc/entity/components/ReplayStateValueDiff.h +++ b/src/mc/entity/components/ReplayStateValueDiff.h @@ -3,10 +3,4 @@ #include "mc/_HeaderOutputPredefine.h" template -struct ReplayStateValueDiff { -public: - // prevent constructor by default - ReplayStateValueDiff& operator=(ReplayStateValueDiff const&); - ReplayStateValueDiff(ReplayStateValueDiff const&); - ReplayStateValueDiff(); -}; +struct ReplayStateValueDiff {}; diff --git a/src/mc/entity/components/ResetTargetRequestComponent.h b/src/mc/entity/components/ResetTargetRequestComponent.h index 900e67f993..083551c50e 100644 --- a/src/mc/entity/components/ResetTargetRequestComponent.h +++ b/src/mc/entity/components/ResetTargetRequestComponent.h @@ -2,10 +2,4 @@ #include "mc/_HeaderOutputPredefine.h" -struct ResetTargetRequestComponent { -public: - // prevent constructor by default - ResetTargetRequestComponent& operator=(ResetTargetRequestComponent const&); - ResetTargetRequestComponent(ResetTargetRequestComponent const&); - ResetTargetRequestComponent(); -}; +struct ResetTargetRequestComponent {}; diff --git a/src/mc/entity/components/RidingHeightComponent.h b/src/mc/entity/components/RidingHeightComponent.h index e5fd53069b..623205897e 100644 --- a/src/mc/entity/components/RidingHeightComponent.h +++ b/src/mc/entity/components/RidingHeightComponent.h @@ -5,10 +5,4 @@ // auto generated inclusion list #include "mc/entity/components/FloatComponent.h" -struct RidingHeightComponent : public ::FloatComponent { -public: - // prevent constructor by default - RidingHeightComponent& operator=(RidingHeightComponent const&); - RidingHeightComponent(RidingHeightComponent const&); - RidingHeightComponent(); -}; +struct RidingHeightComponent : public ::FloatComponent {}; diff --git a/src/mc/entity/components/RiptideTridentSpinAttackComponent.h b/src/mc/entity/components/RiptideTridentSpinAttackComponent.h index 8627cbca7f..bea86e7c91 100644 --- a/src/mc/entity/components/RiptideTridentSpinAttackComponent.h +++ b/src/mc/entity/components/RiptideTridentSpinAttackComponent.h @@ -5,10 +5,4 @@ // auto generated inclusion list #include "mc/entity/components/IntComponent.h" -struct RiptideTridentSpinAttackComponent : public ::IntComponent { -public: - // prevent constructor by default - RiptideTridentSpinAttackComponent& operator=(RiptideTridentSpinAttackComponent const&); - RiptideTridentSpinAttackComponent(RiptideTridentSpinAttackComponent const&); - RiptideTridentSpinAttackComponent(); -}; +struct RiptideTridentSpinAttackComponent : public ::IntComponent {}; diff --git a/src/mc/entity/components/RollCounterComponent.h b/src/mc/entity/components/RollCounterComponent.h index aa2117d318..5e1eaa0fab 100644 --- a/src/mc/entity/components/RollCounterComponent.h +++ b/src/mc/entity/components/RollCounterComponent.h @@ -5,10 +5,4 @@ // auto generated inclusion list #include "mc/entity/components/IntComponent.h" -struct RollCounterComponent : public ::IntComponent { -public: - // prevent constructor by default - RollCounterComponent& operator=(RollCounterComponent const&); - RollCounterComponent(RollCounterComponent const&); - RollCounterComponent(); -}; +struct RollCounterComponent : public ::IntComponent {}; diff --git a/src/mc/entity/components/SaveSurroundingChunksComponent.h b/src/mc/entity/components/SaveSurroundingChunksComponent.h index 69d2eccbeb..674a7c2f31 100644 --- a/src/mc/entity/components/SaveSurroundingChunksComponent.h +++ b/src/mc/entity/components/SaveSurroundingChunksComponent.h @@ -2,10 +2,4 @@ #include "mc/_HeaderOutputPredefine.h" -struct SaveSurroundingChunksComponent { -public: - // prevent constructor by default - SaveSurroundingChunksComponent& operator=(SaveSurroundingChunksComponent const&); - SaveSurroundingChunksComponent(SaveSurroundingChunksComponent const&); - SaveSurroundingChunksComponent(); -}; +struct SaveSurroundingChunksComponent {}; diff --git a/src/mc/entity/components/ScanForDolphinFlagComponent.h b/src/mc/entity/components/ScanForDolphinFlagComponent.h index 3f898c4719..eee7b0673f 100644 --- a/src/mc/entity/components/ScanForDolphinFlagComponent.h +++ b/src/mc/entity/components/ScanForDolphinFlagComponent.h @@ -2,10 +2,4 @@ #include "mc/_HeaderOutputPredefine.h" -struct ScanForDolphinFlagComponent { -public: - // prevent constructor by default - ScanForDolphinFlagComponent& operator=(ScanForDolphinFlagComponent const&); - ScanForDolphinFlagComponent(ScanForDolphinFlagComponent const&); - ScanForDolphinFlagComponent(); -}; +struct ScanForDolphinFlagComponent {}; diff --git a/src/mc/entity/components/ScanForDolphinTimerComponent.h b/src/mc/entity/components/ScanForDolphinTimerComponent.h index 3616f16ce8..288e4a3f57 100644 --- a/src/mc/entity/components/ScanForDolphinTimerComponent.h +++ b/src/mc/entity/components/ScanForDolphinTimerComponent.h @@ -5,10 +5,4 @@ // auto generated inclusion list #include "mc/entity/components/IntComponent.h" -struct ScanForDolphinTimerComponent : public ::IntComponent { -public: - // prevent constructor by default - ScanForDolphinTimerComponent& operator=(ScanForDolphinTimerComponent const&); - ScanForDolphinTimerComponent(ScanForDolphinTimerComponent const&); - ScanForDolphinTimerComponent(); -}; +struct ScanForDolphinTimerComponent : public ::IntComponent {}; diff --git a/src/mc/entity/components/SendMotionToServerComponent.h b/src/mc/entity/components/SendMotionToServerComponent.h index 4d973ab4cb..00deb60a0c 100644 --- a/src/mc/entity/components/SendMotionToServerComponent.h +++ b/src/mc/entity/components/SendMotionToServerComponent.h @@ -2,10 +2,4 @@ #include "mc/_HeaderOutputPredefine.h" -struct SendMotionToServerComponent { -public: - // prevent constructor by default - SendMotionToServerComponent& operator=(SendMotionToServerComponent const&); - SendMotionToServerComponent(SendMotionToServerComponent const&); - SendMotionToServerComponent(); -}; +struct SendMotionToServerComponent {}; diff --git a/src/mc/entity/components/ServerPlayerComponent.h b/src/mc/entity/components/ServerPlayerComponent.h index 3dd6162afa..13deedfe2d 100644 --- a/src/mc/entity/components/ServerPlayerComponent.h +++ b/src/mc/entity/components/ServerPlayerComponent.h @@ -2,10 +2,4 @@ #include "mc/_HeaderOutputPredefine.h" -struct ServerPlayerComponent { -public: - // prevent constructor by default - ServerPlayerComponent& operator=(ServerPlayerComponent const&); - ServerPlayerComponent(ServerPlayerComponent const&); - ServerPlayerComponent(); -}; +struct ServerPlayerComponent {}; diff --git a/src/mc/entity/components/ServerPlayerInitialLoadingComponent.h b/src/mc/entity/components/ServerPlayerInitialLoadingComponent.h index 2022a05096..7f65a3cd35 100644 --- a/src/mc/entity/components/ServerPlayerInitialLoadingComponent.h +++ b/src/mc/entity/components/ServerPlayerInitialLoadingComponent.h @@ -2,10 +2,4 @@ #include "mc/_HeaderOutputPredefine.h" -struct ServerPlayerInitialLoadingComponent { -public: - // prevent constructor by default - ServerPlayerInitialLoadingComponent& operator=(ServerPlayerInitialLoadingComponent const&); - ServerPlayerInitialLoadingComponent(ServerPlayerInitialLoadingComponent const&); - ServerPlayerInitialLoadingComponent(); -}; +struct ServerPlayerInitialLoadingComponent {}; diff --git a/src/mc/entity/components/ShadowOffsetComponent.h b/src/mc/entity/components/ShadowOffsetComponent.h index 906e9f7bb0..997f5de153 100644 --- a/src/mc/entity/components/ShadowOffsetComponent.h +++ b/src/mc/entity/components/ShadowOffsetComponent.h @@ -5,10 +5,4 @@ // auto generated inclusion list #include "mc/entity/components/FloatComponent.h" -struct ShadowOffsetComponent : public ::FloatComponent { -public: - // prevent constructor by default - ShadowOffsetComponent& operator=(ShadowOffsetComponent const&); - ShadowOffsetComponent(ShadowOffsetComponent const&); - ShadowOffsetComponent(); -}; +struct ShadowOffsetComponent : public ::FloatComponent {}; diff --git a/src/mc/entity/components/ShouldAwardWhoNeedsRocketsAchievementFlagComponent.h b/src/mc/entity/components/ShouldAwardWhoNeedsRocketsAchievementFlagComponent.h index b05322afbd..17d517dabd 100644 --- a/src/mc/entity/components/ShouldAwardWhoNeedsRocketsAchievementFlagComponent.h +++ b/src/mc/entity/components/ShouldAwardWhoNeedsRocketsAchievementFlagComponent.h @@ -2,11 +2,4 @@ #include "mc/_HeaderOutputPredefine.h" -struct ShouldAwardWhoNeedsRocketsAchievementFlagComponent { -public: - // prevent constructor by default - ShouldAwardWhoNeedsRocketsAchievementFlagComponent& - operator=(ShouldAwardWhoNeedsRocketsAchievementFlagComponent const&); - ShouldAwardWhoNeedsRocketsAchievementFlagComponent(ShouldAwardWhoNeedsRocketsAchievementFlagComponent const&); - ShouldAwardWhoNeedsRocketsAchievementFlagComponent(); -}; +struct ShouldAwardWhoNeedsRocketsAchievementFlagComponent {}; diff --git a/src/mc/entity/components/ShouldBeSimulatedComponent.h b/src/mc/entity/components/ShouldBeSimulatedComponent.h index 1d5aba31a3..6202fcb4b4 100644 --- a/src/mc/entity/components/ShouldBeSimulatedComponent.h +++ b/src/mc/entity/components/ShouldBeSimulatedComponent.h @@ -2,10 +2,4 @@ #include "mc/_HeaderOutputPredefine.h" -struct ShouldBeSimulatedComponent { -public: - // prevent constructor by default - ShouldBeSimulatedComponent& operator=(ShouldBeSimulatedComponent const&); - ShouldBeSimulatedComponent(ShouldBeSimulatedComponent const&); - ShouldBeSimulatedComponent(); -}; +struct ShouldBeSimulatedComponent {}; diff --git a/src/mc/entity/components/ShouldPlayMovementSoundComponent.h b/src/mc/entity/components/ShouldPlayMovementSoundComponent.h index 010e187faf..a31304a8d2 100644 --- a/src/mc/entity/components/ShouldPlayMovementSoundComponent.h +++ b/src/mc/entity/components/ShouldPlayMovementSoundComponent.h @@ -2,10 +2,4 @@ #include "mc/_HeaderOutputPredefine.h" -struct ShouldPlayMovementSoundComponent { -public: - // prevent constructor by default - ShouldPlayMovementSoundComponent& operator=(ShouldPlayMovementSoundComponent const&); - ShouldPlayMovementSoundComponent(ShouldPlayMovementSoundComponent const&); - ShouldPlayMovementSoundComponent(); -}; +struct ShouldPlayMovementSoundComponent {}; diff --git a/src/mc/entity/components/ShouldPlayStepSoundComponent.h b/src/mc/entity/components/ShouldPlayStepSoundComponent.h index 2dd0b01dbe..af7945980c 100644 --- a/src/mc/entity/components/ShouldPlayStepSoundComponent.h +++ b/src/mc/entity/components/ShouldPlayStepSoundComponent.h @@ -2,10 +2,4 @@ #include "mc/_HeaderOutputPredefine.h" -struct ShouldPlayStepSoundComponent { -public: - // prevent constructor by default - ShouldPlayStepSoundComponent& operator=(ShouldPlayStepSoundComponent const&); - ShouldPlayStepSoundComponent(ShouldPlayStepSoundComponent const&); - ShouldPlayStepSoundComponent(); -}; +struct ShouldPlayStepSoundComponent {}; diff --git a/src/mc/entity/components/ShouldStopEmotingRequestComponent.h b/src/mc/entity/components/ShouldStopEmotingRequestComponent.h index 3d483efc57..71985d566b 100644 --- a/src/mc/entity/components/ShouldStopEmotingRequestComponent.h +++ b/src/mc/entity/components/ShouldStopEmotingRequestComponent.h @@ -2,10 +2,4 @@ #include "mc/_HeaderOutputPredefine.h" -struct ShouldStopEmotingRequestComponent { -public: - // prevent constructor by default - ShouldStopEmotingRequestComponent& operator=(ShouldStopEmotingRequestComponent const&); - ShouldStopEmotingRequestComponent(ShouldStopEmotingRequestComponent const&); - ShouldStopEmotingRequestComponent(); -}; +struct ShouldStopEmotingRequestComponent {}; diff --git a/src/mc/entity/components/ShouldUpdateBoundingBoxRequestComponent.h b/src/mc/entity/components/ShouldUpdateBoundingBoxRequestComponent.h index 2b99809378..aab2b680a7 100644 --- a/src/mc/entity/components/ShouldUpdateBoundingBoxRequestComponent.h +++ b/src/mc/entity/components/ShouldUpdateBoundingBoxRequestComponent.h @@ -11,13 +11,7 @@ struct ShouldUpdateBoundingBoxRequestComponent { // clang-format on // ShouldUpdateBoundingBoxRequestComponent inner types define - struct UpdateFromDefinition { - public: - // prevent constructor by default - UpdateFromDefinition& operator=(UpdateFromDefinition const&); - UpdateFromDefinition(UpdateFromDefinition const&); - UpdateFromDefinition(); - }; + struct UpdateFromDefinition {}; struct UpdateFromValue { public: diff --git a/src/mc/entity/components/SkipAiStepComponent.h b/src/mc/entity/components/SkipAiStepComponent.h index e465ad2874..bfa43d68bc 100644 --- a/src/mc/entity/components/SkipAiStepComponent.h +++ b/src/mc/entity/components/SkipAiStepComponent.h @@ -2,10 +2,4 @@ #include "mc/_HeaderOutputPredefine.h" -struct SkipAiStepComponent { -public: - // prevent constructor by default - SkipAiStepComponent& operator=(SkipAiStepComponent const&); - SkipAiStepComponent(SkipAiStepComponent const&); - SkipAiStepComponent(); -}; +struct SkipAiStepComponent {}; diff --git a/src/mc/entity/components/SkipBodySlotUpgradeFlagComponent.h b/src/mc/entity/components/SkipBodySlotUpgradeFlagComponent.h index 21b1fb716b..408929401e 100644 --- a/src/mc/entity/components/SkipBodySlotUpgradeFlagComponent.h +++ b/src/mc/entity/components/SkipBodySlotUpgradeFlagComponent.h @@ -2,10 +2,4 @@ #include "mc/_HeaderOutputPredefine.h" -struct SkipBodySlotUpgradeFlagComponent { -public: - // prevent constructor by default - SkipBodySlotUpgradeFlagComponent& operator=(SkipBodySlotUpgradeFlagComponent const&); - SkipBodySlotUpgradeFlagComponent(SkipBodySlotUpgradeFlagComponent const&); - SkipBodySlotUpgradeFlagComponent(); -}; +struct SkipBodySlotUpgradeFlagComponent {}; diff --git a/src/mc/entity/components/SkipMobTravelComponent.h b/src/mc/entity/components/SkipMobTravelComponent.h index 6ec427e70e..9a2e4208b1 100644 --- a/src/mc/entity/components/SkipMobTravelComponent.h +++ b/src/mc/entity/components/SkipMobTravelComponent.h @@ -2,10 +2,4 @@ #include "mc/_HeaderOutputPredefine.h" -struct SkipMobTravelComponent { -public: - // prevent constructor by default - SkipMobTravelComponent& operator=(SkipMobTravelComponent const&); - SkipMobTravelComponent(SkipMobTravelComponent const&); - SkipMobTravelComponent(); -}; +struct SkipMobTravelComponent {}; diff --git a/src/mc/entity/components/SkipNormalTickComponent.h b/src/mc/entity/components/SkipNormalTickComponent.h index b0fb8f7107..4182688277 100644 --- a/src/mc/entity/components/SkipNormalTickComponent.h +++ b/src/mc/entity/components/SkipNormalTickComponent.h @@ -2,10 +2,4 @@ #include "mc/_HeaderOutputPredefine.h" -struct SkipNormalTickComponent { -public: - // prevent constructor by default - SkipNormalTickComponent& operator=(SkipNormalTickComponent const&); - SkipNormalTickComponent(SkipNormalTickComponent const&); - SkipNormalTickComponent(); -}; +struct SkipNormalTickComponent {}; diff --git a/src/mc/entity/components/SkipPlayerTickSystemFlagComponent.h b/src/mc/entity/components/SkipPlayerTickSystemFlagComponent.h index 462f1c9af2..267eb6216a 100644 --- a/src/mc/entity/components/SkipPlayerTickSystemFlagComponent.h +++ b/src/mc/entity/components/SkipPlayerTickSystemFlagComponent.h @@ -2,10 +2,4 @@ #include "mc/_HeaderOutputPredefine.h" -struct SkipPlayerTickSystemFlagComponent { -public: - // prevent constructor by default - SkipPlayerTickSystemFlagComponent& operator=(SkipPlayerTickSystemFlagComponent const&); - SkipPlayerTickSystemFlagComponent(SkipPlayerTickSystemFlagComponent const&); - SkipPlayerTickSystemFlagComponent(); -}; +struct SkipPlayerTickSystemFlagComponent {}; diff --git a/src/mc/entity/components/SlimeWasOnGroundPreNormalTickComponent.h b/src/mc/entity/components/SlimeWasOnGroundPreNormalTickComponent.h index b317137011..58ea860934 100644 --- a/src/mc/entity/components/SlimeWasOnGroundPreNormalTickComponent.h +++ b/src/mc/entity/components/SlimeWasOnGroundPreNormalTickComponent.h @@ -2,10 +2,4 @@ #include "mc/_HeaderOutputPredefine.h" -struct SlimeWasOnGroundPreNormalTickComponent { -public: - // prevent constructor by default - SlimeWasOnGroundPreNormalTickComponent& operator=(SlimeWasOnGroundPreNormalTickComponent const&); - SlimeWasOnGroundPreNormalTickComponent(SlimeWasOnGroundPreNormalTickComponent const&); - SlimeWasOnGroundPreNormalTickComponent(); -}; +struct SlimeWasOnGroundPreNormalTickComponent {}; diff --git a/src/mc/entity/components/SoulSpeedEnchantFlagComponent.h b/src/mc/entity/components/SoulSpeedEnchantFlagComponent.h index d6398084b9..44adb7b03b 100644 --- a/src/mc/entity/components/SoulSpeedEnchantFlagComponent.h +++ b/src/mc/entity/components/SoulSpeedEnchantFlagComponent.h @@ -2,10 +2,4 @@ #include "mc/_HeaderOutputPredefine.h" -struct SoulSpeedEnchantFlagComponent { -public: - // prevent constructor by default - SoulSpeedEnchantFlagComponent& operator=(SoulSpeedEnchantFlagComponent const&); - SoulSpeedEnchantFlagComponent(SoulSpeedEnchantFlagComponent const&); - SoulSpeedEnchantFlagComponent(); -}; +struct SoulSpeedEnchantFlagComponent {}; diff --git a/src/mc/entity/components/SquidJumpRequestComponent.h b/src/mc/entity/components/SquidJumpRequestComponent.h index 698d48a67b..4b409e95a3 100644 --- a/src/mc/entity/components/SquidJumpRequestComponent.h +++ b/src/mc/entity/components/SquidJumpRequestComponent.h @@ -2,10 +2,4 @@ #include "mc/_HeaderOutputPredefine.h" -struct SquidJumpRequestComponent { -public: - // prevent constructor by default - SquidJumpRequestComponent& operator=(SquidJumpRequestComponent const&); - SquidJumpRequestComponent(SquidJumpRequestComponent const&); - SquidJumpRequestComponent(); -}; +struct SquidJumpRequestComponent {}; diff --git a/src/mc/entity/components/StandOnHoneyOrSlimeBlockFlagComponent.h b/src/mc/entity/components/StandOnHoneyOrSlimeBlockFlagComponent.h index 7359f01f7a..ce80135cc0 100644 --- a/src/mc/entity/components/StandOnHoneyOrSlimeBlockFlagComponent.h +++ b/src/mc/entity/components/StandOnHoneyOrSlimeBlockFlagComponent.h @@ -2,10 +2,4 @@ #include "mc/_HeaderOutputPredefine.h" -struct StandOnHoneyOrSlimeBlockFlagComponent { -public: - // prevent constructor by default - StandOnHoneyOrSlimeBlockFlagComponent& operator=(StandOnHoneyOrSlimeBlockFlagComponent const&); - StandOnHoneyOrSlimeBlockFlagComponent(StandOnHoneyOrSlimeBlockFlagComponent const&); - StandOnHoneyOrSlimeBlockFlagComponent(); -}; +struct StandOnHoneyOrSlimeBlockFlagComponent {}; diff --git a/src/mc/entity/components/StandOnOtherBlockFlagComponent.h b/src/mc/entity/components/StandOnOtherBlockFlagComponent.h index c8e9c8e095..5ccbc2666a 100644 --- a/src/mc/entity/components/StandOnOtherBlockFlagComponent.h +++ b/src/mc/entity/components/StandOnOtherBlockFlagComponent.h @@ -2,10 +2,4 @@ #include "mc/_HeaderOutputPredefine.h" -struct StandOnOtherBlockFlagComponent { -public: - // prevent constructor by default - StandOnOtherBlockFlagComponent& operator=(StandOnOtherBlockFlagComponent const&); - StandOnOtherBlockFlagComponent(StandOnOtherBlockFlagComponent const&); - StandOnOtherBlockFlagComponent(); -}; +struct StandOnOtherBlockFlagComponent {}; diff --git a/src/mc/entity/components/StopRidingRequestComponent.h b/src/mc/entity/components/StopRidingRequestComponent.h index 85d65e9397..7cadda8946 100644 --- a/src/mc/entity/components/StopRidingRequestComponent.h +++ b/src/mc/entity/components/StopRidingRequestComponent.h @@ -2,10 +2,4 @@ #include "mc/_HeaderOutputPredefine.h" -struct StopRidingRequestComponent { -public: - // prevent constructor by default - StopRidingRequestComponent& operator=(StopRidingRequestComponent const&); - StopRidingRequestComponent(StopRidingRequestComponent const&); - StopRidingRequestComponent(); -}; +struct StopRidingRequestComponent {}; diff --git a/src/mc/entity/components/SweetBerryBushBlockFlag.h b/src/mc/entity/components/SweetBerryBushBlockFlag.h index 7b022a97e9..14033f5339 100644 --- a/src/mc/entity/components/SweetBerryBushBlockFlag.h +++ b/src/mc/entity/components/SweetBerryBushBlockFlag.h @@ -2,10 +2,4 @@ #include "mc/_HeaderOutputPredefine.h" -struct SweetBerryBushBlockFlag { -public: - // prevent constructor by default - SweetBerryBushBlockFlag& operator=(SweetBerryBushBlockFlag const&); - SweetBerryBushBlockFlag(SweetBerryBushBlockFlag const&); - SweetBerryBushBlockFlag(); -}; +struct SweetBerryBushBlockFlag {}; diff --git a/src/mc/entity/components/SwimSpeedMultiplierComponent.h b/src/mc/entity/components/SwimSpeedMultiplierComponent.h index b35fd96d4b..c068c03fd5 100644 --- a/src/mc/entity/components/SwimSpeedMultiplierComponent.h +++ b/src/mc/entity/components/SwimSpeedMultiplierComponent.h @@ -5,10 +5,4 @@ // auto generated inclusion list #include "mc/entity/components/FloatComponent.h" -struct SwimSpeedMultiplierComponent : public ::FloatComponent { -public: - // prevent constructor by default - SwimSpeedMultiplierComponent& operator=(SwimSpeedMultiplierComponent const&); - SwimSpeedMultiplierComponent(SwimSpeedMultiplierComponent const&); - SwimSpeedMultiplierComponent(); -}; +struct SwimSpeedMultiplierComponent : public ::FloatComponent {}; diff --git a/src/mc/entity/components/SwitchingVehiclesFlagComponent.h b/src/mc/entity/components/SwitchingVehiclesFlagComponent.h index 947b10c79d..68c5d46cd3 100644 --- a/src/mc/entity/components/SwitchingVehiclesFlagComponent.h +++ b/src/mc/entity/components/SwitchingVehiclesFlagComponent.h @@ -2,10 +2,4 @@ #include "mc/_HeaderOutputPredefine.h" -struct SwitchingVehiclesFlagComponent { -public: - // prevent constructor by default - SwitchingVehiclesFlagComponent& operator=(SwitchingVehiclesFlagComponent const&); - SwitchingVehiclesFlagComponent(SwitchingVehiclesFlagComponent const&); - SwitchingVehiclesFlagComponent(); -}; +struct SwitchingVehiclesFlagComponent {}; diff --git a/src/mc/entity/components/TagsComponent.h b/src/mc/entity/components/TagsComponent.h index 5806dd2fb9..80e4736822 100644 --- a/src/mc/entity/components/TagsComponent.h +++ b/src/mc/entity/components/TagsComponent.h @@ -3,10 +3,4 @@ #include "mc/_HeaderOutputPredefine.h" template -class TagsComponent { -public: - // prevent constructor by default - TagsComponent& operator=(TagsComponent const&); - TagsComponent(TagsComponent const&); - TagsComponent(); -}; +class TagsComponent {}; diff --git a/src/mc/entity/components/TagsComponentBase.h b/src/mc/entity/components/TagsComponentBase.h index fe65ba9bdf..a99522506a 100644 --- a/src/mc/entity/components/TagsComponentBase.h +++ b/src/mc/entity/components/TagsComponentBase.h @@ -10,12 +10,6 @@ class DataLoadHelper; // clang-format on class TagsComponentBase { -public: - // prevent constructor by default - TagsComponentBase& operator=(TagsComponentBase const&); - TagsComponentBase(TagsComponentBase const&); - TagsComponentBase(); - public: // member functions // NOLINTBEGIN diff --git a/src/mc/entity/components/TransientComponent.h b/src/mc/entity/components/TransientComponent.h index 21eaf6ba94..b87fd902ea 100644 --- a/src/mc/entity/components/TransientComponent.h +++ b/src/mc/entity/components/TransientComponent.h @@ -2,10 +2,4 @@ #include "mc/_HeaderOutputPredefine.h" -struct TransientComponent { -public: - // prevent constructor by default - TransientComponent& operator=(TransientComponent const&); - TransientComponent(TransientComponent const&); - TransientComponent(); -}; +struct TransientComponent {}; diff --git a/src/mc/entity/components/TripodCameraActivateComponent.h b/src/mc/entity/components/TripodCameraActivateComponent.h index 9cfbf54470..8e92bc0717 100644 --- a/src/mc/entity/components/TripodCameraActivateComponent.h +++ b/src/mc/entity/components/TripodCameraActivateComponent.h @@ -2,10 +2,4 @@ #include "mc/_HeaderOutputPredefine.h" -struct TripodCameraActivateComponent { -public: - // prevent constructor by default - TripodCameraActivateComponent& operator=(TripodCameraActivateComponent const&); - TripodCameraActivateComponent(TripodCameraActivateComponent const&); - TripodCameraActivateComponent(); -}; +struct TripodCameraActivateComponent {}; diff --git a/src/mc/entity/components/TripodCameraComponent.h b/src/mc/entity/components/TripodCameraComponent.h index 4a17992c29..cdfcce6ed0 100644 --- a/src/mc/entity/components/TripodCameraComponent.h +++ b/src/mc/entity/components/TripodCameraComponent.h @@ -10,12 +10,6 @@ class Player; // clang-format on class TripodCameraComponent { -public: - // prevent constructor by default - TripodCameraComponent& operator=(TripodCameraComponent const&); - TripodCameraComponent(TripodCameraComponent const&); - TripodCameraComponent(); - public: // member functions // NOLINTBEGIN diff --git a/src/mc/entity/components/TripodCameraDescription.h b/src/mc/entity/components/TripodCameraDescription.h index ee583c1115..c8b7ae0db2 100644 --- a/src/mc/entity/components/TripodCameraDescription.h +++ b/src/mc/entity/components/TripodCameraDescription.h @@ -6,12 +6,6 @@ #include "mc/world/actor/ActorComponentDescription.h" struct TripodCameraDescription : public ::ActorComponentDescription { -public: - // prevent constructor by default - TripodCameraDescription& operator=(TripodCameraDescription const&); - TripodCameraDescription(TripodCameraDescription const&); - TripodCameraDescription(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/entity/components/TripodCameraTakePictureComponent.h b/src/mc/entity/components/TripodCameraTakePictureComponent.h index c382a73006..4bd9c9245f 100644 --- a/src/mc/entity/components/TripodCameraTakePictureComponent.h +++ b/src/mc/entity/components/TripodCameraTakePictureComponent.h @@ -10,13 +10,7 @@ class TripodCameraTakePictureComponent { // clang-format on // TripodCameraTakePictureComponent inner types define - class Definition { - public: - // prevent constructor by default - Definition& operator=(Definition const&); - Definition(Definition const&); - Definition(); - }; + class Definition {}; public: // member variables diff --git a/src/mc/entity/components/UsesDefaultStepSoundComponent.h b/src/mc/entity/components/UsesDefaultStepSoundComponent.h index 09145d1801..40c7e48cfb 100644 --- a/src/mc/entity/components/UsesDefaultStepSoundComponent.h +++ b/src/mc/entity/components/UsesDefaultStepSoundComponent.h @@ -2,10 +2,4 @@ #include "mc/_HeaderOutputPredefine.h" -struct UsesDefaultStepSoundComponent { -public: - // prevent constructor by default - UsesDefaultStepSoundComponent& operator=(UsesDefaultStepSoundComponent const&); - UsesDefaultStepSoundComponent(UsesDefaultStepSoundComponent const&); - UsesDefaultStepSoundComponent(); -}; +struct UsesDefaultStepSoundComponent {}; diff --git a/src/mc/entity/components/VRMoveAdjustAngleComponent.h b/src/mc/entity/components/VRMoveAdjustAngleComponent.h index d6ac91af60..12fb454a10 100644 --- a/src/mc/entity/components/VRMoveAdjustAngleComponent.h +++ b/src/mc/entity/components/VRMoveAdjustAngleComponent.h @@ -5,10 +5,4 @@ // auto generated inclusion list #include "mc/entity/components/FloatComponent.h" -struct VRMoveAdjustAngleComponent : public ::FloatComponent { -public: - // prevent constructor by default - VRMoveAdjustAngleComponent& operator=(VRMoveAdjustAngleComponent const&); - VRMoveAdjustAngleComponent(VRMoveAdjustAngleComponent const&); - VRMoveAdjustAngleComponent(); -}; +struct VRMoveAdjustAngleComponent : public ::FloatComponent {}; diff --git a/src/mc/entity/components/VibrationDamperComponent.h b/src/mc/entity/components/VibrationDamperComponent.h index df9a743fc7..eb0e5dcda7 100644 --- a/src/mc/entity/components/VibrationDamperComponent.h +++ b/src/mc/entity/components/VibrationDamperComponent.h @@ -2,10 +2,4 @@ #include "mc/_HeaderOutputPredefine.h" -struct VibrationDamperComponent { -public: - // prevent constructor by default - VibrationDamperComponent& operator=(VibrationDamperComponent const&); - VibrationDamperComponent(VibrationDamperComponent const&); - VibrationDamperComponent(); -}; +struct VibrationDamperComponent {}; diff --git a/src/mc/entity/components/WasControlledByLocalInstanceComponent.h b/src/mc/entity/components/WasControlledByLocalInstanceComponent.h index f9546b57e0..cd8f831a2e 100644 --- a/src/mc/entity/components/WasControlledByLocalInstanceComponent.h +++ b/src/mc/entity/components/WasControlledByLocalInstanceComponent.h @@ -2,10 +2,4 @@ #include "mc/_HeaderOutputPredefine.h" -struct WasControlledByLocalInstanceComponent { -public: - // prevent constructor by default - WasControlledByLocalInstanceComponent& operator=(WasControlledByLocalInstanceComponent const&); - WasControlledByLocalInstanceComponent(WasControlledByLocalInstanceComponent const&); - WasControlledByLocalInstanceComponent(); -}; +struct WasControlledByLocalInstanceComponent {}; diff --git a/src/mc/entity/components/WasHandledBySculkCatalystFlagComponent.h b/src/mc/entity/components/WasHandledBySculkCatalystFlagComponent.h index 6afbcc89d7..7dbcc80953 100644 --- a/src/mc/entity/components/WasHandledBySculkCatalystFlagComponent.h +++ b/src/mc/entity/components/WasHandledBySculkCatalystFlagComponent.h @@ -2,10 +2,4 @@ #include "mc/_HeaderOutputPredefine.h" -struct WasHandledBySculkCatalystFlagComponent { -public: - // prevent constructor by default - WasHandledBySculkCatalystFlagComponent& operator=(WasHandledBySculkCatalystFlagComponent const&); - WasHandledBySculkCatalystFlagComponent(WasHandledBySculkCatalystFlagComponent const&); - WasHandledBySculkCatalystFlagComponent(); -}; +struct WasHandledBySculkCatalystFlagComponent {}; diff --git a/src/mc/entity/components/WasInLavaFlagComponent.h b/src/mc/entity/components/WasInLavaFlagComponent.h index 51244ce307..dfd6e7794f 100644 --- a/src/mc/entity/components/WasInLavaFlagComponent.h +++ b/src/mc/entity/components/WasInLavaFlagComponent.h @@ -2,10 +2,4 @@ #include "mc/_HeaderOutputPredefine.h" -struct WasInLavaFlagComponent { -public: - // prevent constructor by default - WasInLavaFlagComponent& operator=(WasInLavaFlagComponent const&); - WasInLavaFlagComponent(WasInLavaFlagComponent const&); - WasInLavaFlagComponent(); -}; +struct WasInLavaFlagComponent {}; diff --git a/src/mc/entity/components/WasInWaterFlagComponent.h b/src/mc/entity/components/WasInWaterFlagComponent.h index 3f8f813a29..01ff575d28 100644 --- a/src/mc/entity/components/WasInWaterFlagComponent.h +++ b/src/mc/entity/components/WasInWaterFlagComponent.h @@ -2,10 +2,4 @@ #include "mc/_HeaderOutputPredefine.h" -struct WasInWaterFlagComponent { -public: - // prevent constructor by default - WasInWaterFlagComponent& operator=(WasInWaterFlagComponent const&); - WasInWaterFlagComponent(WasInWaterFlagComponent const&); - WasInWaterFlagComponent(); -}; +struct WasInWaterFlagComponent {}; diff --git a/src/mc/entity/components/WasOnGroundFlagComponent.h b/src/mc/entity/components/WasOnGroundFlagComponent.h index a923af3acf..01e3f7107f 100644 --- a/src/mc/entity/components/WasOnGroundFlagComponent.h +++ b/src/mc/entity/components/WasOnGroundFlagComponent.h @@ -2,10 +2,4 @@ #include "mc/_HeaderOutputPredefine.h" -struct WasOnGroundFlagComponent { -public: - // prevent constructor by default - WasOnGroundFlagComponent& operator=(WasOnGroundFlagComponent const&); - WasOnGroundFlagComponent(WasOnGroundFlagComponent const&); - WasOnGroundFlagComponent(); -}; +struct WasOnGroundFlagComponent {}; diff --git a/src/mc/entity/components/WaterTravelFlagComponent.h b/src/mc/entity/components/WaterTravelFlagComponent.h index d7e54a21da..9c01f22784 100644 --- a/src/mc/entity/components/WaterTravelFlagComponent.h +++ b/src/mc/entity/components/WaterTravelFlagComponent.h @@ -2,10 +2,4 @@ #include "mc/_HeaderOutputPredefine.h" -struct WaterTravelFlagComponent { -public: - // prevent constructor by default - WaterTravelFlagComponent& operator=(WaterTravelFlagComponent const&); - WaterTravelFlagComponent(WaterTravelFlagComponent const&); - WaterTravelFlagComponent(); -}; +struct WaterTravelFlagComponent {}; diff --git a/src/mc/entity/components/WaterWalkSpeedEnchantComponent.h b/src/mc/entity/components/WaterWalkSpeedEnchantComponent.h index e50b11c073..515deec2de 100644 --- a/src/mc/entity/components/WaterWalkSpeedEnchantComponent.h +++ b/src/mc/entity/components/WaterWalkSpeedEnchantComponent.h @@ -5,10 +5,4 @@ // auto generated inclusion list #include "mc/entity/components/IntComponent.h" -struct WaterWalkSpeedEnchantComponent : public ::IntComponent { -public: - // prevent constructor by default - WaterWalkSpeedEnchantComponent& operator=(WaterWalkSpeedEnchantComponent const&); - WaterWalkSpeedEnchantComponent(WaterWalkSpeedEnchantComponent const&); - WaterWalkSpeedEnchantComponent(); -}; +struct WaterWalkSpeedEnchantComponent : public ::IntComponent {}; diff --git a/src/mc/entity/components/WaterlilyBlockFlag.h b/src/mc/entity/components/WaterlilyBlockFlag.h index a9430e0b7d..9c00acfa04 100644 --- a/src/mc/entity/components/WaterlilyBlockFlag.h +++ b/src/mc/entity/components/WaterlilyBlockFlag.h @@ -2,10 +2,4 @@ #include "mc/_HeaderOutputPredefine.h" -struct WaterlilyBlockFlag { -public: - // prevent constructor by default - WaterlilyBlockFlag& operator=(WaterlilyBlockFlag const&); - WaterlilyBlockFlag(WaterlilyBlockFlag const&); - WaterlilyBlockFlag(); -}; +struct WaterlilyBlockFlag {}; diff --git a/src/mc/entity/components/agent/agent_components/AnimationArmSwing.h b/src/mc/entity/components/agent/agent_components/AnimationArmSwing.h index 385076c612..023c18d21a 100644 --- a/src/mc/entity/components/agent/agent_components/AnimationArmSwing.h +++ b/src/mc/entity/components/agent/agent_components/AnimationArmSwing.h @@ -4,12 +4,6 @@ namespace AgentComponents { -struct AnimationArmSwing { -public: - // prevent constructor by default - AnimationArmSwing& operator=(AnimationArmSwing const&); - AnimationArmSwing(AnimationArmSwing const&); - AnimationArmSwing(); -}; +struct AnimationArmSwing {}; } // namespace AgentComponents diff --git a/src/mc/entity/components/agent/agent_components/AnimationComplete.h b/src/mc/entity/components/agent/agent_components/AnimationComplete.h index d142dc8f84..2cbbb5bb21 100644 --- a/src/mc/entity/components/agent/agent_components/AnimationComplete.h +++ b/src/mc/entity/components/agent/agent_components/AnimationComplete.h @@ -4,12 +4,6 @@ namespace AgentComponents { -struct AnimationComplete { -public: - // prevent constructor by default - AnimationComplete& operator=(AnimationComplete const&); - AnimationComplete(AnimationComplete const&); - AnimationComplete(); -}; +struct AnimationComplete {}; } // namespace AgentComponents diff --git a/src/mc/entity/components/agent/agent_components/AnimationShrug.h b/src/mc/entity/components/agent/agent_components/AnimationShrug.h index f495dcd02e..f5a631292d 100644 --- a/src/mc/entity/components/agent/agent_components/AnimationShrug.h +++ b/src/mc/entity/components/agent/agent_components/AnimationShrug.h @@ -4,12 +4,6 @@ namespace AgentComponents { -struct AnimationShrug { -public: - // prevent constructor by default - AnimationShrug& operator=(AnimationShrug const&); - AnimationShrug(AnimationShrug const&); - AnimationShrug(); -}; +struct AnimationShrug {}; } // namespace AgentComponents diff --git a/src/mc/entity/components/agent_components/ActionQueue.h b/src/mc/entity/components/agent_components/ActionQueue.h index 4a038b26bc..131a479dc6 100644 --- a/src/mc/entity/components/agent_components/ActionQueue.h +++ b/src/mc/entity/components/agent_components/ActionQueue.h @@ -18,13 +18,7 @@ class ActionQueue { // clang-format on // ActionQueue inner types define - class Definition { - public: - // prevent constructor by default - Definition& operator=(Definition const&); - Definition(Definition const&); - Definition(); - }; + class Definition {}; public: // member variables diff --git a/src/mc/entity/components/agent_components/Agent.h b/src/mc/entity/components/agent_components/Agent.h index c670204caa..4b2745052a 100644 --- a/src/mc/entity/components/agent_components/Agent.h +++ b/src/mc/entity/components/agent_components/Agent.h @@ -12,19 +12,7 @@ class Agent { // clang-format on // Agent inner types define - class Definition { - public: - // prevent constructor by default - Definition& operator=(Definition const&); - Definition(Definition const&); - Definition(); - }; - -public: - // prevent constructor by default - Agent& operator=(Agent const&); - Agent(Agent const&); - Agent(); + class Definition {}; }; } // namespace AgentComponents diff --git a/src/mc/entity/components/agent_components/Executing.h b/src/mc/entity/components/agent_components/Executing.h index 13ed303bf6..096ce7655e 100644 --- a/src/mc/entity/components/agent_components/Executing.h +++ b/src/mc/entity/components/agent_components/Executing.h @@ -4,12 +4,6 @@ namespace AgentComponents { -struct Executing { -public: - // prevent constructor by default - Executing& operator=(Executing const&); - Executing(Executing const&); - Executing(); -}; +struct Executing {}; } // namespace AgentComponents diff --git a/src/mc/entity/components/agent_components/Initializing.h b/src/mc/entity/components/agent_components/Initializing.h index e7abb629ce..cfe55b3713 100644 --- a/src/mc/entity/components/agent_components/Initializing.h +++ b/src/mc/entity/components/agent_components/Initializing.h @@ -4,12 +4,6 @@ namespace AgentComponents { -struct Initializing { -public: - // prevent constructor by default - Initializing& operator=(Initializing const&); - Initializing(Initializing const&); - Initializing(); -}; +struct Initializing {}; } // namespace AgentComponents diff --git a/src/mc/entity/components/agent_components/LegacyCommand.h b/src/mc/entity/components/agent_components/LegacyCommand.h index e1f6f94952..a000a52cd0 100644 --- a/src/mc/entity/components/agent_components/LegacyCommand.h +++ b/src/mc/entity/components/agent_components/LegacyCommand.h @@ -4,12 +4,6 @@ namespace AgentComponents { -struct LegacyCommand { -public: - // prevent constructor by default - LegacyCommand& operator=(LegacyCommand const&); - LegacyCommand(LegacyCommand const&); - LegacyCommand(); -}; +struct LegacyCommand {}; } // namespace AgentComponents diff --git a/src/mc/entity/components_json_legacy/BalloonableComponent.h b/src/mc/entity/components_json_legacy/BalloonableComponent.h index 2c07f9b0ae..b4eb4a3118 100644 --- a/src/mc/entity/components_json_legacy/BalloonableComponent.h +++ b/src/mc/entity/components_json_legacy/BalloonableComponent.h @@ -11,12 +11,6 @@ class Player; // clang-format on class BalloonableComponent { -public: - // prevent constructor by default - BalloonableComponent& operator=(BalloonableComponent const&); - BalloonableComponent(BalloonableComponent const&); - BalloonableComponent(); - public: // member functions // NOLINTBEGIN diff --git a/src/mc/entity/components_json_legacy/BreakBlocksComponent.h b/src/mc/entity/components_json_legacy/BreakBlocksComponent.h index 04a194ec76..63363dc8c0 100644 --- a/src/mc/entity/components_json_legacy/BreakBlocksComponent.h +++ b/src/mc/entity/components_json_legacy/BreakBlocksComponent.h @@ -10,12 +10,6 @@ struct BreakBlocksDescription; // clang-format on class BreakBlocksComponent { -public: - // prevent constructor by default - BreakBlocksComponent& operator=(BreakBlocksComponent const&); - BreakBlocksComponent(BreakBlocksComponent const&); - BreakBlocksComponent(); - public: // member functions // NOLINTBEGIN diff --git a/src/mc/entity/components_json_legacy/BucketableComponent.h b/src/mc/entity/components_json_legacy/BucketableComponent.h index 5ca1e061d5..4c7ac0cf97 100644 --- a/src/mc/entity/components_json_legacy/BucketableComponent.h +++ b/src/mc/entity/components_json_legacy/BucketableComponent.h @@ -11,11 +11,6 @@ class Player; // clang-format on class BucketableComponent { -public: - // prevent constructor by default - BucketableComponent& operator=(BucketableComponent const&); - BucketableComponent(BucketableComponent const&); - public: // member functions // NOLINTBEGIN diff --git a/src/mc/entity/components_json_legacy/BucketableDescription.h b/src/mc/entity/components_json_legacy/BucketableDescription.h index 18a6693b95..9eeaf50ad1 100644 --- a/src/mc/entity/components_json_legacy/BucketableDescription.h +++ b/src/mc/entity/components_json_legacy/BucketableDescription.h @@ -6,12 +6,6 @@ #include "mc/world/actor/ActorComponentDescription.h" struct BucketableDescription : public ::ActorComponentDescription { -public: - // prevent constructor by default - BucketableDescription& operator=(BucketableDescription const&); - BucketableDescription(BucketableDescription const&); - BucketableDescription(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/entity/components_json_legacy/DespawnComponent.h b/src/mc/entity/components_json_legacy/DespawnComponent.h index cdaaeb5592..9d379478ba 100644 --- a/src/mc/entity/components_json_legacy/DespawnComponent.h +++ b/src/mc/entity/components_json_legacy/DespawnComponent.h @@ -23,12 +23,6 @@ class DespawnComponent { // DespawnComponent inner types define class IWorldAccessor { - public: - // prevent constructor by default - IWorldAccessor& operator=(IWorldAccessor const&); - IWorldAccessor(IWorldAccessor const&); - IWorldAccessor(); - public: // virtual functions // NOLINTBEGIN @@ -149,12 +143,6 @@ class DespawnComponent { // NOLINTEND }; -public: - // prevent constructor by default - DespawnComponent& operator=(DespawnComponent const&); - DespawnComponent(DespawnComponent const&); - DespawnComponent(); - public: // member functions // NOLINTBEGIN diff --git a/src/mc/entity/components_json_legacy/DouseFireSubcomponent.h b/src/mc/entity/components_json_legacy/DouseFireSubcomponent.h index 6c73f41a4c..c843d8a872 100644 --- a/src/mc/entity/components_json_legacy/DouseFireSubcomponent.h +++ b/src/mc/entity/components_json_legacy/DouseFireSubcomponent.h @@ -15,11 +15,6 @@ namespace Json { class Value; } // clang-format on class DouseFireSubcomponent : public ::OnHitSubcomponent { -public: - // prevent constructor by default - DouseFireSubcomponent& operator=(DouseFireSubcomponent const&); - DouseFireSubcomponent(DouseFireSubcomponent const&); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/entity/components_json_legacy/EnvironmentSensorComponent.h b/src/mc/entity/components_json_legacy/EnvironmentSensorComponent.h index f597e82c2b..a99efa57c3 100644 --- a/src/mc/entity/components_json_legacy/EnvironmentSensorComponent.h +++ b/src/mc/entity/components_json_legacy/EnvironmentSensorComponent.h @@ -2,10 +2,4 @@ #include "mc/_HeaderOutputPredefine.h" -struct EnvironmentSensorComponent { -public: - // prevent constructor by default - EnvironmentSensorComponent& operator=(EnvironmentSensorComponent const&); - EnvironmentSensorComponent(EnvironmentSensorComponent const&); - EnvironmentSensorComponent(); -}; +struct EnvironmentSensorComponent {}; diff --git a/src/mc/entity/components_json_legacy/HealableComponent.h b/src/mc/entity/components_json_legacy/HealableComponent.h index d86a48cd8b..f03215db58 100644 --- a/src/mc/entity/components_json_legacy/HealableComponent.h +++ b/src/mc/entity/components_json_legacy/HealableComponent.h @@ -13,12 +13,6 @@ struct FeedItem; // clang-format on class HealableComponent { -public: - // prevent constructor by default - HealableComponent& operator=(HealableComponent const&); - HealableComponent(HealableComponent const&); - HealableComponent(); - public: // member functions // NOLINTBEGIN diff --git a/src/mc/entity/components_json_legacy/HideDescription.h b/src/mc/entity/components_json_legacy/HideDescription.h index 5619376d9f..9b3a227f66 100644 --- a/src/mc/entity/components_json_legacy/HideDescription.h +++ b/src/mc/entity/components_json_legacy/HideDescription.h @@ -6,12 +6,6 @@ #include "mc/world/actor/ActorComponentDescription.h" struct HideDescription : public ::ActorComponentDescription { -public: - // prevent constructor by default - HideDescription& operator=(HideDescription const&); - HideDescription(HideDescription const&); - HideDescription(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/entity/components_json_legacy/HopperDefinition.h b/src/mc/entity/components_json_legacy/HopperDefinition.h index ad13912028..bc3fa6dc93 100644 --- a/src/mc/entity/components_json_legacy/HopperDefinition.h +++ b/src/mc/entity/components_json_legacy/HopperDefinition.h @@ -11,12 +11,6 @@ namespace JsonUtil { class EmptyClass; } // clang-format on struct HopperDefinition { -public: - // prevent constructor by default - HopperDefinition& operator=(HopperDefinition const&); - HopperDefinition(HopperDefinition const&); - HopperDefinition(); - public: // static functions // NOLINTBEGIN diff --git a/src/mc/entity/components_json_legacy/IgniteSubcomponent.h b/src/mc/entity/components_json_legacy/IgniteSubcomponent.h index 41a4ed9b2b..d24c46dec3 100644 --- a/src/mc/entity/components_json_legacy/IgniteSubcomponent.h +++ b/src/mc/entity/components_json_legacy/IgniteSubcomponent.h @@ -13,11 +13,6 @@ namespace Json { class Value; } // clang-format on class IgniteSubcomponent : public ::OnHitSubcomponent { -public: - // prevent constructor by default - IgniteSubcomponent& operator=(IgniteSubcomponent const&); - IgniteSubcomponent(IgniteSubcomponent const&); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/entity/components_json_legacy/IllagerBeastBlockedComponent.h b/src/mc/entity/components_json_legacy/IllagerBeastBlockedComponent.h index 51bf728893..11ad7f2d25 100644 --- a/src/mc/entity/components_json_legacy/IllagerBeastBlockedComponent.h +++ b/src/mc/entity/components_json_legacy/IllagerBeastBlockedComponent.h @@ -9,12 +9,6 @@ class ActorDamageSource; // clang-format on class IllagerBeastBlockedComponent { -public: - // prevent constructor by default - IllagerBeastBlockedComponent& operator=(IllagerBeastBlockedComponent const&); - IllagerBeastBlockedComponent(IllagerBeastBlockedComponent const&); - IllagerBeastBlockedComponent(); - public: // member functions // NOLINTBEGIN diff --git a/src/mc/entity/components_json_legacy/InstantDespawnComponent.h b/src/mc/entity/components_json_legacy/InstantDespawnComponent.h index f0203c8035..084ca90642 100644 --- a/src/mc/entity/components_json_legacy/InstantDespawnComponent.h +++ b/src/mc/entity/components_json_legacy/InstantDespawnComponent.h @@ -8,12 +8,6 @@ class Actor; // clang-format on class InstantDespawnComponent { -public: - // prevent constructor by default - InstantDespawnComponent& operator=(InstantDespawnComponent const&); - InstantDespawnComponent(InstantDespawnComponent const&); - InstantDespawnComponent(); - public: // member functions // NOLINTBEGIN diff --git a/src/mc/entity/components_json_legacy/LeashableComponent.h b/src/mc/entity/components_json_legacy/LeashableComponent.h index cabed14dc2..cb9985298f 100644 --- a/src/mc/entity/components_json_legacy/LeashableComponent.h +++ b/src/mc/entity/components_json_legacy/LeashableComponent.h @@ -10,12 +10,6 @@ class Player; // clang-format on class LeashableComponent { -public: - // prevent constructor by default - LeashableComponent& operator=(LeashableComponent const&); - LeashableComponent(LeashableComponent const&); - LeashableComponent(); - public: // member functions // NOLINTBEGIN diff --git a/src/mc/entity/components_json_legacy/ManagedWanderingTraderComponent.h b/src/mc/entity/components_json_legacy/ManagedWanderingTraderComponent.h index ec832939e2..7a73ee881f 100644 --- a/src/mc/entity/components_json_legacy/ManagedWanderingTraderComponent.h +++ b/src/mc/entity/components_json_legacy/ManagedWanderingTraderComponent.h @@ -8,12 +8,6 @@ class Actor; // clang-format on class ManagedWanderingTraderComponent { -public: - // prevent constructor by default - ManagedWanderingTraderComponent& operator=(ManagedWanderingTraderComponent const&); - ManagedWanderingTraderComponent(ManagedWanderingTraderComponent const&); - ManagedWanderingTraderComponent(); - public: // member functions // NOLINTBEGIN diff --git a/src/mc/entity/components_json_legacy/ManagedWanderingTraderDescription.h b/src/mc/entity/components_json_legacy/ManagedWanderingTraderDescription.h index a747718537..41c8d583cf 100644 --- a/src/mc/entity/components_json_legacy/ManagedWanderingTraderDescription.h +++ b/src/mc/entity/components_json_legacy/ManagedWanderingTraderDescription.h @@ -6,12 +6,6 @@ #include "mc/world/actor/ActorComponentDescription.h" struct ManagedWanderingTraderDescription : public ::ActorComponentDescription { -public: - // prevent constructor by default - ManagedWanderingTraderDescription& operator=(ManagedWanderingTraderDescription const&); - ManagedWanderingTraderDescription(ManagedWanderingTraderDescription const&); - ManagedWanderingTraderDescription(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/entity/components_json_legacy/OnHitSubcomponent.h b/src/mc/entity/components_json_legacy/OnHitSubcomponent.h index 89e6023eee..f9f0278593 100644 --- a/src/mc/entity/components_json_legacy/OnHitSubcomponent.h +++ b/src/mc/entity/components_json_legacy/OnHitSubcomponent.h @@ -10,11 +10,6 @@ namespace Json { class Value; } // clang-format on class OnHitSubcomponent { -public: - // prevent constructor by default - OnHitSubcomponent& operator=(OnHitSubcomponent const&); - OnHitSubcomponent(OnHitSubcomponent const&); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/entity/components_json_legacy/OpenDoorAnnotationDescription.h b/src/mc/entity/components_json_legacy/OpenDoorAnnotationDescription.h index 1c7fa08c3b..1ee9a8ecfd 100644 --- a/src/mc/entity/components_json_legacy/OpenDoorAnnotationDescription.h +++ b/src/mc/entity/components_json_legacy/OpenDoorAnnotationDescription.h @@ -6,12 +6,6 @@ #include "mc/world/actor/ActorComponentDescription.h" struct OpenDoorAnnotationDescription : public ::ActorComponentDescription { -public: - // prevent constructor by default - OpenDoorAnnotationDescription& operator=(OpenDoorAnnotationDescription const&); - OpenDoorAnnotationDescription(OpenDoorAnnotationDescription const&); - OpenDoorAnnotationDescription(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/entity/components_json_legacy/RailActivatorComponent.h b/src/mc/entity/components_json_legacy/RailActivatorComponent.h index cb943ba93a..97c7f596a5 100644 --- a/src/mc/entity/components_json_legacy/RailActivatorComponent.h +++ b/src/mc/entity/components_json_legacy/RailActivatorComponent.h @@ -8,12 +8,6 @@ class Actor; // clang-format on class RailActivatorComponent { -public: - // prevent constructor by default - RailActivatorComponent& operator=(RailActivatorComponent const&); - RailActivatorComponent(RailActivatorComponent const&); - RailActivatorComponent(); - public: // member functions // NOLINTBEGIN diff --git a/src/mc/entity/components_json_legacy/RemoveOnHitSubcomponent.h b/src/mc/entity/components_json_legacy/RemoveOnHitSubcomponent.h index 35da4fc164..6086a69cfd 100644 --- a/src/mc/entity/components_json_legacy/RemoveOnHitSubcomponent.h +++ b/src/mc/entity/components_json_legacy/RemoveOnHitSubcomponent.h @@ -13,11 +13,6 @@ namespace Json { class Value; } // clang-format on class RemoveOnHitSubcomponent : public ::OnHitSubcomponent { -public: - // prevent constructor by default - RemoveOnHitSubcomponent& operator=(RemoveOnHitSubcomponent const&); - RemoveOnHitSubcomponent(RemoveOnHitSubcomponent const&); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/entity/components_json_legacy/ShareableComponent.h b/src/mc/entity/components_json_legacy/ShareableComponent.h index 9f30138998..4c4b824b02 100644 --- a/src/mc/entity/components_json_legacy/ShareableComponent.h +++ b/src/mc/entity/components_json_legacy/ShareableComponent.h @@ -11,12 +11,6 @@ class ShareableDefinition; // clang-format on class ShareableComponent { -public: - // prevent constructor by default - ShareableComponent& operator=(ShareableComponent const&); - ShareableComponent(ShareableComponent const&); - ShareableComponent(); - public: // member functions // NOLINTBEGIN diff --git a/src/mc/entity/components_json_legacy/SitComponent.h b/src/mc/entity/components_json_legacy/SitComponent.h index bd282392d9..cffd4db86a 100644 --- a/src/mc/entity/components_json_legacy/SitComponent.h +++ b/src/mc/entity/components_json_legacy/SitComponent.h @@ -10,12 +10,6 @@ class Player; // clang-format on class SitComponent { -public: - // prevent constructor by default - SitComponent& operator=(SitComponent const&); - SitComponent(SitComponent const&); - SitComponent(); - public: // member functions // NOLINTBEGIN diff --git a/src/mc/entity/components_json_legacy/SuspectTrackingDefinition.h b/src/mc/entity/components_json_legacy/SuspectTrackingDefinition.h index e22b9dd31a..b2f31d0bcf 100644 --- a/src/mc/entity/components_json_legacy/SuspectTrackingDefinition.h +++ b/src/mc/entity/components_json_legacy/SuspectTrackingDefinition.h @@ -13,12 +13,6 @@ namespace JsonUtil { class EmptyClass; } // clang-format on class SuspectTrackingDefinition { -public: - // prevent constructor by default - SuspectTrackingDefinition& operator=(SuspectTrackingDefinition const&); - SuspectTrackingDefinition(SuspectTrackingDefinition const&); - SuspectTrackingDefinition(); - public: // member functions // NOLINTBEGIN diff --git a/src/mc/entity/components_json_legacy/TeleportToSubcomponent.h b/src/mc/entity/components_json_legacy/TeleportToSubcomponent.h index 44f4154e0f..2f60757a09 100644 --- a/src/mc/entity/components_json_legacy/TeleportToSubcomponent.h +++ b/src/mc/entity/components_json_legacy/TeleportToSubcomponent.h @@ -13,11 +13,6 @@ namespace Json { class Value; } // clang-format on class TeleportToSubcomponent : public ::OnHitSubcomponent { -public: - // prevent constructor by default - TeleportToSubcomponent& operator=(TeleportToSubcomponent const&); - TeleportToSubcomponent(TeleportToSubcomponent const&); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/entity/components_json_legacy/ThrownPotionEffectSubcomponent.h b/src/mc/entity/components_json_legacy/ThrownPotionEffectSubcomponent.h index f13d6866f9..9778858d67 100644 --- a/src/mc/entity/components_json_legacy/ThrownPotionEffectSubcomponent.h +++ b/src/mc/entity/components_json_legacy/ThrownPotionEffectSubcomponent.h @@ -13,12 +13,6 @@ namespace Json { class Value; } // clang-format on class ThrownPotionEffectSubcomponent : public ::SplashPotionEffectSubcomponent { -public: - // prevent constructor by default - ThrownPotionEffectSubcomponent& operator=(ThrownPotionEffectSubcomponent const&); - ThrownPotionEffectSubcomponent(ThrownPotionEffectSubcomponent const&); - ThrownPotionEffectSubcomponent(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/entity/components_json_legacy/TradeResupplyDescription.h b/src/mc/entity/components_json_legacy/TradeResupplyDescription.h index 34b4413f32..48dcea753c 100644 --- a/src/mc/entity/components_json_legacy/TradeResupplyDescription.h +++ b/src/mc/entity/components_json_legacy/TradeResupplyDescription.h @@ -6,12 +6,6 @@ #include "mc/world/actor/ActorComponentDescription.h" struct TradeResupplyDescription : public ::ActorComponentDescription { -public: - // prevent constructor by default - TradeResupplyDescription& operator=(TradeResupplyDescription const&); - TradeResupplyDescription(TradeResupplyDescription const&); - TradeResupplyDescription(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/entity/components_json_legacy/TrustDescription.h b/src/mc/entity/components_json_legacy/TrustDescription.h index 5442a1f1ae..cab569efb8 100644 --- a/src/mc/entity/components_json_legacy/TrustDescription.h +++ b/src/mc/entity/components_json_legacy/TrustDescription.h @@ -6,12 +6,6 @@ #include "mc/world/actor/ActorComponentDescription.h" struct TrustDescription : public ::ActorComponentDescription { -public: - // prevent constructor by default - TrustDescription& operator=(TrustDescription const&); - TrustDescription(TrustDescription const&); - TrustDescription(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/entity/components_json_legacy/VibrationListenerDefinition.h b/src/mc/entity/components_json_legacy/VibrationListenerDefinition.h index 000876cd6d..5b4f2a6200 100644 --- a/src/mc/entity/components_json_legacy/VibrationListenerDefinition.h +++ b/src/mc/entity/components_json_legacy/VibrationListenerDefinition.h @@ -12,12 +12,6 @@ namespace JsonUtil { class EmptyClass; } // clang-format on class VibrationListenerDefinition { -public: - // prevent constructor by default - VibrationListenerDefinition& operator=(VibrationListenerDefinition const&); - VibrationListenerDefinition(VibrationListenerDefinition const&); - VibrationListenerDefinition(); - public: // member functions // NOLINTBEGIN diff --git a/src/mc/entity/components_json_legacy/WindBurstOnHitSubcomponent.h b/src/mc/entity/components_json_legacy/WindBurstOnHitSubcomponent.h index 5266e1db20..f84eff9bf8 100644 --- a/src/mc/entity/components_json_legacy/WindBurstOnHitSubcomponent.h +++ b/src/mc/entity/components_json_legacy/WindBurstOnHitSubcomponent.h @@ -13,11 +13,6 @@ namespace Json { class Value; } // clang-format on class WindBurstOnHitSubcomponent : public ::OnHitSubcomponent { -public: - // prevent constructor by default - WindBurstOnHitSubcomponent& operator=(WindBurstOnHitSubcomponent const&); - WindBurstOnHitSubcomponent(WindBurstOnHitSubcomponent const&); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/entity/components_json_legacy/rideable_component_helpers/IActorWrapper.h b/src/mc/entity/components_json_legacy/rideable_component_helpers/IActorWrapper.h index 04cff2a24c..31dc6610df 100644 --- a/src/mc/entity/components_json_legacy/rideable_component_helpers/IActorWrapper.h +++ b/src/mc/entity/components_json_legacy/rideable_component_helpers/IActorWrapper.h @@ -10,12 +10,6 @@ class Actor; namespace RideableComponentHelpers { class IActorWrapper { -public: - // prevent constructor by default - IActorWrapper& operator=(IActorWrapper const&); - IActorWrapper(IActorWrapper const&); - IActorWrapper(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/entity/components_json_legacy/rideable_component_helpers/IPassengerActor.h b/src/mc/entity/components_json_legacy/rideable_component_helpers/IPassengerActor.h index c2203f330a..95d7e991ec 100644 --- a/src/mc/entity/components_json_legacy/rideable_component_helpers/IPassengerActor.h +++ b/src/mc/entity/components_json_legacy/rideable_component_helpers/IPassengerActor.h @@ -10,12 +10,6 @@ class AABB; namespace RideableComponentHelpers { class IPassengerActor { -public: - // prevent constructor by default - IPassengerActor& operator=(IPassengerActor const&); - IPassengerActor(IPassengerActor const&); - IPassengerActor(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/entity/components_json_legacy/rideable_component_helpers/IRideableActor.h b/src/mc/entity/components_json_legacy/rideable_component_helpers/IRideableActor.h index 08857ab4a7..3577e2d470 100644 --- a/src/mc/entity/components_json_legacy/rideable_component_helpers/IRideableActor.h +++ b/src/mc/entity/components_json_legacy/rideable_component_helpers/IRideableActor.h @@ -12,12 +12,6 @@ struct FamilyTypeDefinition; namespace RideableComponentHelpers { class IRideableActor { -public: - // prevent constructor by default - IRideableActor& operator=(IRideableActor const&); - IRideableActor(IRideableActor const&); - IRideableActor(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/entity/components_json_legacy/rideable_component_helpers/IRideableActorActions.h b/src/mc/entity/components_json_legacy/rideable_component_helpers/IRideableActorActions.h index 0616aa1d7c..f917b2e32f 100644 --- a/src/mc/entity/components_json_legacy/rideable_component_helpers/IRideableActorActions.h +++ b/src/mc/entity/components_json_legacy/rideable_component_helpers/IRideableActorActions.h @@ -10,12 +10,6 @@ namespace RideableComponentHelpers { class IActorWrapper; } namespace RideableComponentHelpers { class IRideableActorActions { -public: - // prevent constructor by default - IRideableActorActions& operator=(IRideableActorActions const&); - IRideableActorActions(IRideableActorActions const&); - IRideableActorActions(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/entity/components_json_legacy/rideable_component_helpers/IVehicleStateProvider.h b/src/mc/entity/components_json_legacy/rideable_component_helpers/IVehicleStateProvider.h index f3f8ff6f67..7eaed5f44c 100644 --- a/src/mc/entity/components_json_legacy/rideable_component_helpers/IVehicleStateProvider.h +++ b/src/mc/entity/components_json_legacy/rideable_component_helpers/IVehicleStateProvider.h @@ -12,12 +12,6 @@ namespace RideableComponentHelpers { class IRideableActor; } namespace RideableComponentHelpers { class IVehicleStateProvider { -public: - // prevent constructor by default - IVehicleStateProvider& operator=(IVehicleStateProvider const&); - IVehicleStateProvider(IVehicleStateProvider const&); - IVehicleStateProvider(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/entity/components_json_legacy/rideable_component_helpers/RideableSystem.h b/src/mc/entity/components_json_legacy/rideable_component_helpers/RideableSystem.h index 93e7e02f1d..cddadf0fcc 100644 --- a/src/mc/entity/components_json_legacy/rideable_component_helpers/RideableSystem.h +++ b/src/mc/entity/components_json_legacy/rideable_component_helpers/RideableSystem.h @@ -4,12 +4,6 @@ namespace RideableComponentHelpers { -class RideableSystem { -public: - // prevent constructor by default - RideableSystem& operator=(RideableSystem const&); - RideableSystem(RideableSystem const&); - RideableSystem(); -}; +class RideableSystem {}; } // namespace RideableComponentHelpers diff --git a/src/mc/entity/components_json_legacy/rideable_component_helpers/VehicleStateProvider.h b/src/mc/entity/components_json_legacy/rideable_component_helpers/VehicleStateProvider.h index 1d40df4323..27dd8d3996 100644 --- a/src/mc/entity/components_json_legacy/rideable_component_helpers/VehicleStateProvider.h +++ b/src/mc/entity/components_json_legacy/rideable_component_helpers/VehicleStateProvider.h @@ -16,12 +16,6 @@ namespace RideableComponentHelpers { class IRideableActor; } namespace RideableComponentHelpers { class VehicleStateProvider : public ::RideableComponentHelpers::IVehicleStateProvider { -public: - // prevent constructor by default - VehicleStateProvider& operator=(VehicleStateProvider const&); - VehicleStateProvider(VehicleStateProvider const&); - VehicleStateProvider(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/entity/definitions/ActorLocationOffsetSchema.h b/src/mc/entity/definitions/ActorLocationOffsetSchema.h index 87c399d1b7..9408c37890 100644 --- a/src/mc/entity/definitions/ActorLocationOffsetSchema.h +++ b/src/mc/entity/definitions/ActorLocationOffsetSchema.h @@ -6,12 +6,6 @@ #include "mc/entity/definitions/LookedAtDefinition.h" struct ActorLocationOffsetSchema { -public: - // prevent constructor by default - ActorLocationOffsetSchema& operator=(ActorLocationOffsetSchema const&); - ActorLocationOffsetSchema(ActorLocationOffsetSchema const&); - ActorLocationOffsetSchema(); - public: // static variables // NOLINTBEGIN diff --git a/src/mc/entity/definitions/AmphibiousMoveControlDescription.h b/src/mc/entity/definitions/AmphibiousMoveControlDescription.h index 1f8055bea5..963b6d9bf9 100644 --- a/src/mc/entity/definitions/AmphibiousMoveControlDescription.h +++ b/src/mc/entity/definitions/AmphibiousMoveControlDescription.h @@ -6,12 +6,6 @@ #include "mc/entity/definitions/MoveControlDescription.h" struct AmphibiousMoveControlDescription : public ::MoveControlDescription { -public: - // prevent constructor by default - AmphibiousMoveControlDescription& operator=(AmphibiousMoveControlDescription const&); - AmphibiousMoveControlDescription(AmphibiousMoveControlDescription const&); - AmphibiousMoveControlDescription(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/entity/definitions/BlockClimberDefinition.h b/src/mc/entity/definitions/BlockClimberDefinition.h index a8232a5449..cfc65b22b3 100644 --- a/src/mc/entity/definitions/BlockClimberDefinition.h +++ b/src/mc/entity/definitions/BlockClimberDefinition.h @@ -11,12 +11,6 @@ namespace JsonUtil { class EmptyClass; } // clang-format on class BlockClimberDefinition { -public: - // prevent constructor by default - BlockClimberDefinition& operator=(BlockClimberDefinition const&); - BlockClimberDefinition(BlockClimberDefinition const&); - BlockClimberDefinition(); - public: // static functions // NOLINTBEGIN diff --git a/src/mc/entity/definitions/BodyRotationBlockedDefinition.h b/src/mc/entity/definitions/BodyRotationBlockedDefinition.h index 144500adb9..bd81ee61ac 100644 --- a/src/mc/entity/definitions/BodyRotationBlockedDefinition.h +++ b/src/mc/entity/definitions/BodyRotationBlockedDefinition.h @@ -12,12 +12,6 @@ namespace JsonUtil { class EmptyClass; } // clang-format on struct BodyRotationBlockedDefinition { -public: - // prevent constructor by default - BodyRotationBlockedDefinition& operator=(BodyRotationBlockedDefinition const&); - BodyRotationBlockedDefinition(BodyRotationBlockedDefinition const&); - BodyRotationBlockedDefinition(); - public: // member functions // NOLINTBEGIN diff --git a/src/mc/entity/definitions/BurnsInDaylightDefinition.h b/src/mc/entity/definitions/BurnsInDaylightDefinition.h index f12cb7194e..a648c5ccb2 100644 --- a/src/mc/entity/definitions/BurnsInDaylightDefinition.h +++ b/src/mc/entity/definitions/BurnsInDaylightDefinition.h @@ -11,12 +11,6 @@ namespace JsonUtil { class EmptyClass; } // clang-format on class BurnsInDaylightDefinition { -public: - // prevent constructor by default - BurnsInDaylightDefinition& operator=(BurnsInDaylightDefinition const&); - BurnsInDaylightDefinition(BurnsInDaylightDefinition const&); - BurnsInDaylightDefinition(); - public: // static functions // NOLINTBEGIN diff --git a/src/mc/entity/definitions/CanClimbDefinition.h b/src/mc/entity/definitions/CanClimbDefinition.h index b0f3683f42..4133be6f50 100644 --- a/src/mc/entity/definitions/CanClimbDefinition.h +++ b/src/mc/entity/definitions/CanClimbDefinition.h @@ -12,12 +12,6 @@ namespace JsonUtil { class EmptyClass; } // clang-format on struct CanClimbDefinition { -public: - // prevent constructor by default - CanClimbDefinition& operator=(CanClimbDefinition const&); - CanClimbDefinition(CanClimbDefinition const&); - CanClimbDefinition(); - public: // member functions // NOLINTBEGIN diff --git a/src/mc/entity/definitions/CanFlyDefinition.h b/src/mc/entity/definitions/CanFlyDefinition.h index 7eb755ee8c..fadb099cee 100644 --- a/src/mc/entity/definitions/CanFlyDefinition.h +++ b/src/mc/entity/definitions/CanFlyDefinition.h @@ -12,12 +12,6 @@ namespace JsonUtil { class EmptyClass; } // clang-format on struct CanFlyDefinition { -public: - // prevent constructor by default - CanFlyDefinition& operator=(CanFlyDefinition const&); - CanFlyDefinition(CanFlyDefinition const&); - CanFlyDefinition(); - public: // member functions // NOLINTBEGIN diff --git a/src/mc/entity/definitions/CanJoinRaidDefinition.h b/src/mc/entity/definitions/CanJoinRaidDefinition.h index 4758dfd00c..5372b2b55e 100644 --- a/src/mc/entity/definitions/CanJoinRaidDefinition.h +++ b/src/mc/entity/definitions/CanJoinRaidDefinition.h @@ -11,12 +11,6 @@ namespace JsonUtil { class EmptyClass; } // clang-format on struct CanJoinRaidDefinition { -public: - // prevent constructor by default - CanJoinRaidDefinition& operator=(CanJoinRaidDefinition const&); - CanJoinRaidDefinition(CanJoinRaidDefinition const&); - CanJoinRaidDefinition(); - public: // static functions // NOLINTBEGIN diff --git a/src/mc/entity/definitions/CanPowerJumpDefinition.h b/src/mc/entity/definitions/CanPowerJumpDefinition.h index a10edbe0a6..2194068144 100644 --- a/src/mc/entity/definitions/CanPowerJumpDefinition.h +++ b/src/mc/entity/definitions/CanPowerJumpDefinition.h @@ -12,12 +12,6 @@ namespace JsonUtil { class EmptyClass; } // clang-format on struct CanPowerJumpDefinition { -public: - // prevent constructor by default - CanPowerJumpDefinition& operator=(CanPowerJumpDefinition const&); - CanPowerJumpDefinition(CanPowerJumpDefinition const&); - CanPowerJumpDefinition(); - public: // member functions // NOLINTBEGIN diff --git a/src/mc/entity/definitions/CannotBeAttackedDefinition.h b/src/mc/entity/definitions/CannotBeAttackedDefinition.h index 6e5ddf68d3..274dd3a67a 100644 --- a/src/mc/entity/definitions/CannotBeAttackedDefinition.h +++ b/src/mc/entity/definitions/CannotBeAttackedDefinition.h @@ -11,12 +11,6 @@ namespace JsonUtil { class EmptyClass; } // clang-format on struct CannotBeAttackedDefinition { -public: - // prevent constructor by default - CannotBeAttackedDefinition& operator=(CannotBeAttackedDefinition const&); - CannotBeAttackedDefinition(CannotBeAttackedDefinition const&); - CannotBeAttackedDefinition(); - public: // static functions // NOLINTBEGIN diff --git a/src/mc/entity/definitions/Color2Definition.h b/src/mc/entity/definitions/Color2Definition.h index 441b1aaaca..d998337888 100644 --- a/src/mc/entity/definitions/Color2Definition.h +++ b/src/mc/entity/definitions/Color2Definition.h @@ -12,12 +12,6 @@ namespace JsonUtil { class EmptyClass; } // clang-format on struct Color2Definition : public ::ColorDefinition { -public: - // prevent constructor by default - Color2Definition& operator=(Color2Definition const&); - Color2Definition(Color2Definition const&); - Color2Definition(); - public: // static functions // NOLINTBEGIN diff --git a/src/mc/entity/definitions/DimensionBoundDefinition.h b/src/mc/entity/definitions/DimensionBoundDefinition.h index 1295582f7c..b45c47abf7 100644 --- a/src/mc/entity/definitions/DimensionBoundDefinition.h +++ b/src/mc/entity/definitions/DimensionBoundDefinition.h @@ -11,12 +11,6 @@ namespace JsonUtil { class EmptyClass; } // clang-format on struct DimensionBoundDefinition { -public: - // prevent constructor by default - DimensionBoundDefinition& operator=(DimensionBoundDefinition const&); - DimensionBoundDefinition(DimensionBoundDefinition const&); - DimensionBoundDefinition(); - public: // static functions // NOLINTBEGIN diff --git a/src/mc/entity/definitions/DynamicJumpControlDescription.h b/src/mc/entity/definitions/DynamicJumpControlDescription.h index f5a07645e8..8be9d5c545 100644 --- a/src/mc/entity/definitions/DynamicJumpControlDescription.h +++ b/src/mc/entity/definitions/DynamicJumpControlDescription.h @@ -11,12 +11,6 @@ struct DeserializeDataParams; // clang-format on struct DynamicJumpControlDescription : public ::JumpControlDescription { -public: - // prevent constructor by default - DynamicJumpControlDescription& operator=(DynamicJumpControlDescription const&); - DynamicJumpControlDescription(DynamicJumpControlDescription const&); - DynamicJumpControlDescription(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/entity/definitions/FireImmuneDefinition.h b/src/mc/entity/definitions/FireImmuneDefinition.h index e44a758a64..bc9d503a41 100644 --- a/src/mc/entity/definitions/FireImmuneDefinition.h +++ b/src/mc/entity/definitions/FireImmuneDefinition.h @@ -12,12 +12,6 @@ namespace JsonUtil { class EmptyClass; } // clang-format on struct FireImmuneDefinition { -public: - // prevent constructor by default - FireImmuneDefinition& operator=(FireImmuneDefinition const&); - FireImmuneDefinition(FireImmuneDefinition const&); - FireImmuneDefinition(); - public: // member functions // NOLINTBEGIN diff --git a/src/mc/entity/definitions/FloatsInLiquidDefinition.h b/src/mc/entity/definitions/FloatsInLiquidDefinition.h index e35bd3eca9..0597c2d89d 100644 --- a/src/mc/entity/definitions/FloatsInLiquidDefinition.h +++ b/src/mc/entity/definitions/FloatsInLiquidDefinition.h @@ -11,12 +11,6 @@ namespace JsonUtil { class EmptyClass; } // clang-format on struct FloatsInLiquidDefinition { -public: - // prevent constructor by default - FloatsInLiquidDefinition& operator=(FloatsInLiquidDefinition const&); - FloatsInLiquidDefinition(FloatsInLiquidDefinition const&); - FloatsInLiquidDefinition(); - public: // static functions // NOLINTBEGIN diff --git a/src/mc/entity/definitions/GenericMoveControlDescription.h b/src/mc/entity/definitions/GenericMoveControlDescription.h index c9e5fde1b0..62f4462efc 100644 --- a/src/mc/entity/definitions/GenericMoveControlDescription.h +++ b/src/mc/entity/definitions/GenericMoveControlDescription.h @@ -6,12 +6,6 @@ #include "mc/entity/definitions/MoveControlDescription.h" struct GenericMoveControlDescription : public ::MoveControlDescription { -public: - // prevent constructor by default - GenericMoveControlDescription& operator=(GenericMoveControlDescription const&); - GenericMoveControlDescription(GenericMoveControlDescription const&); - GenericMoveControlDescription(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/entity/definitions/IsBabyDefinition.h b/src/mc/entity/definitions/IsBabyDefinition.h index 7361e8a967..738d8ba75a 100644 --- a/src/mc/entity/definitions/IsBabyDefinition.h +++ b/src/mc/entity/definitions/IsBabyDefinition.h @@ -12,12 +12,6 @@ namespace JsonUtil { class EmptyClass; } // clang-format on struct IsBabyDefinition { -public: - // prevent constructor by default - IsBabyDefinition& operator=(IsBabyDefinition const&); - IsBabyDefinition(IsBabyDefinition const&); - IsBabyDefinition(); - public: // member functions // NOLINTBEGIN diff --git a/src/mc/entity/definitions/IsChargedDefinition.h b/src/mc/entity/definitions/IsChargedDefinition.h index 41c745085e..9372a57add 100644 --- a/src/mc/entity/definitions/IsChargedDefinition.h +++ b/src/mc/entity/definitions/IsChargedDefinition.h @@ -12,12 +12,6 @@ namespace JsonUtil { class EmptyClass; } // clang-format on struct IsChargedDefinition { -public: - // prevent constructor by default - IsChargedDefinition& operator=(IsChargedDefinition const&); - IsChargedDefinition(IsChargedDefinition const&); - IsChargedDefinition(); - public: // member functions // NOLINTBEGIN diff --git a/src/mc/entity/definitions/IsChestedDefinition.h b/src/mc/entity/definitions/IsChestedDefinition.h index 9d291d3bb4..e7ba8bfed1 100644 --- a/src/mc/entity/definitions/IsChestedDefinition.h +++ b/src/mc/entity/definitions/IsChestedDefinition.h @@ -12,12 +12,6 @@ namespace JsonUtil { class EmptyClass; } // clang-format on struct IsChestedDefinition { -public: - // prevent constructor by default - IsChestedDefinition& operator=(IsChestedDefinition const&); - IsChestedDefinition(IsChestedDefinition const&); - IsChestedDefinition(); - public: // member functions // NOLINTBEGIN diff --git a/src/mc/entity/definitions/IsHiddenWhenInvisibleDefinition.h b/src/mc/entity/definitions/IsHiddenWhenInvisibleDefinition.h index 992875e7e9..0bfe98b094 100644 --- a/src/mc/entity/definitions/IsHiddenWhenInvisibleDefinition.h +++ b/src/mc/entity/definitions/IsHiddenWhenInvisibleDefinition.h @@ -12,12 +12,6 @@ namespace JsonUtil { class EmptyClass; } // clang-format on struct IsHiddenWhenInvisibleDefinition { -public: - // prevent constructor by default - IsHiddenWhenInvisibleDefinition& operator=(IsHiddenWhenInvisibleDefinition const&); - IsHiddenWhenInvisibleDefinition(IsHiddenWhenInvisibleDefinition const&); - IsHiddenWhenInvisibleDefinition(); - public: // member functions // NOLINTBEGIN diff --git a/src/mc/entity/definitions/IsIgnitedDefinition.h b/src/mc/entity/definitions/IsIgnitedDefinition.h index 40daa2e7f4..e3f5e35bb7 100644 --- a/src/mc/entity/definitions/IsIgnitedDefinition.h +++ b/src/mc/entity/definitions/IsIgnitedDefinition.h @@ -12,12 +12,6 @@ namespace JsonUtil { class EmptyClass; } // clang-format on struct IsIgnitedDefinition { -public: - // prevent constructor by default - IsIgnitedDefinition& operator=(IsIgnitedDefinition const&); - IsIgnitedDefinition(IsIgnitedDefinition const&); - IsIgnitedDefinition(); - public: // member functions // NOLINTBEGIN diff --git a/src/mc/entity/definitions/IsIllagerCaptainDefinition.h b/src/mc/entity/definitions/IsIllagerCaptainDefinition.h index eea596b87b..febb491c3c 100644 --- a/src/mc/entity/definitions/IsIllagerCaptainDefinition.h +++ b/src/mc/entity/definitions/IsIllagerCaptainDefinition.h @@ -12,12 +12,6 @@ namespace JsonUtil { class EmptyClass; } // clang-format on struct IsIllagerCaptainDefinition { -public: - // prevent constructor by default - IsIllagerCaptainDefinition& operator=(IsIllagerCaptainDefinition const&); - IsIllagerCaptainDefinition(IsIllagerCaptainDefinition const&); - IsIllagerCaptainDefinition(); - public: // member functions // NOLINTBEGIN diff --git a/src/mc/entity/definitions/IsPregnantDefinition.h b/src/mc/entity/definitions/IsPregnantDefinition.h index bc50f7e30b..efe0daebad 100644 --- a/src/mc/entity/definitions/IsPregnantDefinition.h +++ b/src/mc/entity/definitions/IsPregnantDefinition.h @@ -12,12 +12,6 @@ namespace JsonUtil { class EmptyClass; } // clang-format on struct IsPregnantDefinition { -public: - // prevent constructor by default - IsPregnantDefinition& operator=(IsPregnantDefinition const&); - IsPregnantDefinition(IsPregnantDefinition const&); - IsPregnantDefinition(); - public: // member functions // NOLINTBEGIN diff --git a/src/mc/entity/definitions/IsSaddledDefinition.h b/src/mc/entity/definitions/IsSaddledDefinition.h index ca2edec7bb..9d06ab47e3 100644 --- a/src/mc/entity/definitions/IsSaddledDefinition.h +++ b/src/mc/entity/definitions/IsSaddledDefinition.h @@ -12,12 +12,6 @@ namespace JsonUtil { class EmptyClass; } // clang-format on struct IsSaddledDefinition { -public: - // prevent constructor by default - IsSaddledDefinition& operator=(IsSaddledDefinition const&); - IsSaddledDefinition(IsSaddledDefinition const&); - IsSaddledDefinition(); - public: // member functions // NOLINTBEGIN diff --git a/src/mc/entity/definitions/IsShakingDefinition.h b/src/mc/entity/definitions/IsShakingDefinition.h index a70b2e33bf..680921480f 100644 --- a/src/mc/entity/definitions/IsShakingDefinition.h +++ b/src/mc/entity/definitions/IsShakingDefinition.h @@ -12,12 +12,6 @@ namespace JsonUtil { class EmptyClass; } // clang-format on struct IsShakingDefinition { -public: - // prevent constructor by default - IsShakingDefinition& operator=(IsShakingDefinition const&); - IsShakingDefinition(IsShakingDefinition const&); - IsShakingDefinition(); - public: // member functions // NOLINTBEGIN diff --git a/src/mc/entity/definitions/IsShearedDefinition.h b/src/mc/entity/definitions/IsShearedDefinition.h index 02512b097f..c6e9f02406 100644 --- a/src/mc/entity/definitions/IsShearedDefinition.h +++ b/src/mc/entity/definitions/IsShearedDefinition.h @@ -12,12 +12,6 @@ namespace JsonUtil { class EmptyClass; } // clang-format on struct IsShearedDefinition { -public: - // prevent constructor by default - IsShearedDefinition& operator=(IsShearedDefinition const&); - IsShearedDefinition(IsShearedDefinition const&); - IsShearedDefinition(); - public: // member functions // NOLINTBEGIN diff --git a/src/mc/entity/definitions/IsStackableDefinition.h b/src/mc/entity/definitions/IsStackableDefinition.h index ad8935717b..3e728b9914 100644 --- a/src/mc/entity/definitions/IsStackableDefinition.h +++ b/src/mc/entity/definitions/IsStackableDefinition.h @@ -12,12 +12,6 @@ namespace JsonUtil { class EmptyClass; } // clang-format on struct IsStackableDefinition { -public: - // prevent constructor by default - IsStackableDefinition& operator=(IsStackableDefinition const&); - IsStackableDefinition(IsStackableDefinition const&); - IsStackableDefinition(); - public: // member functions // NOLINTBEGIN diff --git a/src/mc/entity/definitions/IsStunnedDefinition.h b/src/mc/entity/definitions/IsStunnedDefinition.h index 9c6707c91f..e6d1dd43c9 100644 --- a/src/mc/entity/definitions/IsStunnedDefinition.h +++ b/src/mc/entity/definitions/IsStunnedDefinition.h @@ -12,12 +12,6 @@ namespace JsonUtil { class EmptyClass; } // clang-format on struct IsStunnedDefinition { -public: - // prevent constructor by default - IsStunnedDefinition& operator=(IsStunnedDefinition const&); - IsStunnedDefinition(IsStunnedDefinition const&); - IsStunnedDefinition(); - public: // member functions // NOLINTBEGIN diff --git a/src/mc/entity/definitions/IsTamedDefinition.h b/src/mc/entity/definitions/IsTamedDefinition.h index a8cdc36b1c..bd1dfbb3ec 100644 --- a/src/mc/entity/definitions/IsTamedDefinition.h +++ b/src/mc/entity/definitions/IsTamedDefinition.h @@ -12,12 +12,6 @@ namespace JsonUtil { class EmptyClass; } // clang-format on struct IsTamedDefinition { -public: - // prevent constructor by default - IsTamedDefinition& operator=(IsTamedDefinition const&); - IsTamedDefinition(IsTamedDefinition const&); - IsTamedDefinition(); - public: // member functions // NOLINTBEGIN diff --git a/src/mc/entity/definitions/MoveControlBasicDescription.h b/src/mc/entity/definitions/MoveControlBasicDescription.h index f4763087f9..1623dcb8fa 100644 --- a/src/mc/entity/definitions/MoveControlBasicDescription.h +++ b/src/mc/entity/definitions/MoveControlBasicDescription.h @@ -6,12 +6,6 @@ #include "mc/entity/definitions/MoveControlDescription.h" struct MoveControlBasicDescription : public ::MoveControlDescription { -public: - // prevent constructor by default - MoveControlBasicDescription& operator=(MoveControlBasicDescription const&); - MoveControlBasicDescription(MoveControlBasicDescription const&); - MoveControlBasicDescription(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/entity/definitions/MoveControlDolphinDescription.h b/src/mc/entity/definitions/MoveControlDolphinDescription.h index 9fce9ca36f..2f9bfd4a32 100644 --- a/src/mc/entity/definitions/MoveControlDolphinDescription.h +++ b/src/mc/entity/definitions/MoveControlDolphinDescription.h @@ -6,12 +6,6 @@ #include "mc/entity/definitions/MoveControlDescription.h" struct MoveControlDolphinDescription : public ::MoveControlDescription { -public: - // prevent constructor by default - MoveControlDolphinDescription& operator=(MoveControlDolphinDescription const&); - MoveControlDolphinDescription(MoveControlDolphinDescription const&); - MoveControlDolphinDescription(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/entity/definitions/MoveControlFlyDescription.h b/src/mc/entity/definitions/MoveControlFlyDescription.h index a70663ae08..c12520f3f7 100644 --- a/src/mc/entity/definitions/MoveControlFlyDescription.h +++ b/src/mc/entity/definitions/MoveControlFlyDescription.h @@ -6,12 +6,6 @@ #include "mc/entity/definitions/MoveControlDescription.h" struct MoveControlFlyDescription : public ::MoveControlDescription { -public: - // prevent constructor by default - MoveControlFlyDescription& operator=(MoveControlFlyDescription const&); - MoveControlFlyDescription(MoveControlFlyDescription const&); - MoveControlFlyDescription(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/entity/definitions/MoveControlHoverDescription.h b/src/mc/entity/definitions/MoveControlHoverDescription.h index 1bab5bd664..c75f508f83 100644 --- a/src/mc/entity/definitions/MoveControlHoverDescription.h +++ b/src/mc/entity/definitions/MoveControlHoverDescription.h @@ -6,12 +6,6 @@ #include "mc/entity/definitions/MoveControlDescription.h" struct MoveControlHoverDescription : public ::MoveControlDescription { -public: - // prevent constructor by default - MoveControlHoverDescription& operator=(MoveControlHoverDescription const&); - MoveControlHoverDescription(MoveControlHoverDescription const&); - MoveControlHoverDescription(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/entity/definitions/MoveControlSkipDescription.h b/src/mc/entity/definitions/MoveControlSkipDescription.h index a39a9390cd..8f4f3515d4 100644 --- a/src/mc/entity/definitions/MoveControlSkipDescription.h +++ b/src/mc/entity/definitions/MoveControlSkipDescription.h @@ -6,12 +6,6 @@ #include "mc/entity/definitions/MoveControlDescription.h" struct MoveControlSkipDescription : public ::MoveControlDescription { -public: - // prevent constructor by default - MoveControlSkipDescription& operator=(MoveControlSkipDescription const&); - MoveControlSkipDescription(MoveControlSkipDescription const&); - MoveControlSkipDescription(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/entity/definitions/NavigationClimbDescription.h b/src/mc/entity/definitions/NavigationClimbDescription.h index 20a70ec9a6..4cbba07683 100644 --- a/src/mc/entity/definitions/NavigationClimbDescription.h +++ b/src/mc/entity/definitions/NavigationClimbDescription.h @@ -6,12 +6,6 @@ #include "mc/entity/definitions/NavigationDescription.h" struct NavigationClimbDescription : public ::NavigationDescription { -public: - // prevent constructor by default - NavigationClimbDescription& operator=(NavigationClimbDescription const&); - NavigationClimbDescription(NavigationClimbDescription const&); - NavigationClimbDescription(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/entity/definitions/NavigationFloatDescription.h b/src/mc/entity/definitions/NavigationFloatDescription.h index ebad018deb..1155ce1380 100644 --- a/src/mc/entity/definitions/NavigationFloatDescription.h +++ b/src/mc/entity/definitions/NavigationFloatDescription.h @@ -6,12 +6,6 @@ #include "mc/entity/definitions/NavigationDescription.h" struct NavigationFloatDescription : public ::NavigationDescription { -public: - // prevent constructor by default - NavigationFloatDescription& operator=(NavigationFloatDescription const&); - NavigationFloatDescription(NavigationFloatDescription const&); - NavigationFloatDescription(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/entity/definitions/NavigationFlyDescription.h b/src/mc/entity/definitions/NavigationFlyDescription.h index 23eb7d44ae..da88113260 100644 --- a/src/mc/entity/definitions/NavigationFlyDescription.h +++ b/src/mc/entity/definitions/NavigationFlyDescription.h @@ -6,12 +6,6 @@ #include "mc/entity/definitions/NavigationDescription.h" struct NavigationFlyDescription : public ::NavigationDescription { -public: - // prevent constructor by default - NavigationFlyDescription& operator=(NavigationFlyDescription const&); - NavigationFlyDescription(NavigationFlyDescription const&); - NavigationFlyDescription(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/entity/definitions/NavigationGenericDescription.h b/src/mc/entity/definitions/NavigationGenericDescription.h index dd3f4ee688..6b36c2853c 100644 --- a/src/mc/entity/definitions/NavigationGenericDescription.h +++ b/src/mc/entity/definitions/NavigationGenericDescription.h @@ -6,12 +6,6 @@ #include "mc/entity/definitions/NavigationDescription.h" struct NavigationGenericDescription : public ::NavigationDescription { -public: - // prevent constructor by default - NavigationGenericDescription& operator=(NavigationGenericDescription const&); - NavigationGenericDescription(NavigationGenericDescription const&); - NavigationGenericDescription(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/entity/definitions/NavigationHoverDescription.h b/src/mc/entity/definitions/NavigationHoverDescription.h index 6bea6db21d..ebcb0ff397 100644 --- a/src/mc/entity/definitions/NavigationHoverDescription.h +++ b/src/mc/entity/definitions/NavigationHoverDescription.h @@ -6,12 +6,6 @@ #include "mc/entity/definitions/NavigationDescription.h" struct NavigationHoverDescription : public ::NavigationDescription { -public: - // prevent constructor by default - NavigationHoverDescription& operator=(NavigationHoverDescription const&); - NavigationHoverDescription(NavigationHoverDescription const&); - NavigationHoverDescription(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/entity/definitions/NavigationWalkDescription.h b/src/mc/entity/definitions/NavigationWalkDescription.h index 5ad0882ef2..12f58979d6 100644 --- a/src/mc/entity/definitions/NavigationWalkDescription.h +++ b/src/mc/entity/definitions/NavigationWalkDescription.h @@ -6,12 +6,6 @@ #include "mc/entity/definitions/NavigationDescription.h" struct NavigationWalkDescription : public ::NavigationDescription { -public: - // prevent constructor by default - NavigationWalkDescription& operator=(NavigationWalkDescription const&); - NavigationWalkDescription(NavigationWalkDescription const&); - NavigationWalkDescription(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/entity/definitions/OnDeathDefinition.h b/src/mc/entity/definitions/OnDeathDefinition.h index 91bf0e6635..47076a039c 100644 --- a/src/mc/entity/definitions/OnDeathDefinition.h +++ b/src/mc/entity/definitions/OnDeathDefinition.h @@ -12,12 +12,6 @@ namespace JsonUtil { class EmptyClass; } // clang-format on struct OnDeathDefinition : public ::ActorDefinitionTrigger { -public: - // prevent constructor by default - OnDeathDefinition& operator=(OnDeathDefinition const&); - OnDeathDefinition(OnDeathDefinition const&); - OnDeathDefinition(); - public: // static functions // NOLINTBEGIN diff --git a/src/mc/entity/definitions/OnFriendlyAngerDefinition.h b/src/mc/entity/definitions/OnFriendlyAngerDefinition.h index 3f34eb77cf..56f8d8657d 100644 --- a/src/mc/entity/definitions/OnFriendlyAngerDefinition.h +++ b/src/mc/entity/definitions/OnFriendlyAngerDefinition.h @@ -12,12 +12,6 @@ namespace JsonUtil { class EmptyClass; } // clang-format on struct OnFriendlyAngerDefinition : public ::ActorDefinitionTrigger { -public: - // prevent constructor by default - OnFriendlyAngerDefinition& operator=(OnFriendlyAngerDefinition const&); - OnFriendlyAngerDefinition(OnFriendlyAngerDefinition const&); - OnFriendlyAngerDefinition(); - public: // static functions // NOLINTBEGIN diff --git a/src/mc/entity/definitions/OnHurtByPlayerDefinition.h b/src/mc/entity/definitions/OnHurtByPlayerDefinition.h index 14dadc6388..ab846e7843 100644 --- a/src/mc/entity/definitions/OnHurtByPlayerDefinition.h +++ b/src/mc/entity/definitions/OnHurtByPlayerDefinition.h @@ -12,12 +12,6 @@ namespace JsonUtil { class EmptyClass; } // clang-format on struct OnHurtByPlayerDefinition : public ::ActorDefinitionTrigger { -public: - // prevent constructor by default - OnHurtByPlayerDefinition& operator=(OnHurtByPlayerDefinition const&); - OnHurtByPlayerDefinition(OnHurtByPlayerDefinition const&); - OnHurtByPlayerDefinition(); - public: // static functions // NOLINTBEGIN diff --git a/src/mc/entity/definitions/OnHurtDefinition.h b/src/mc/entity/definitions/OnHurtDefinition.h index da365be437..4ccc823ef6 100644 --- a/src/mc/entity/definitions/OnHurtDefinition.h +++ b/src/mc/entity/definitions/OnHurtDefinition.h @@ -12,12 +12,6 @@ namespace JsonUtil { class EmptyClass; } // clang-format on struct OnHurtDefinition : public ::ActorDefinitionTrigger { -public: - // prevent constructor by default - OnHurtDefinition& operator=(OnHurtDefinition const&); - OnHurtDefinition(OnHurtDefinition const&); - OnHurtDefinition(); - public: // static functions // NOLINTBEGIN diff --git a/src/mc/entity/definitions/OnIgniteDefinition.h b/src/mc/entity/definitions/OnIgniteDefinition.h index 5043e22407..dd84806fc8 100644 --- a/src/mc/entity/definitions/OnIgniteDefinition.h +++ b/src/mc/entity/definitions/OnIgniteDefinition.h @@ -12,12 +12,6 @@ namespace JsonUtil { class EmptyClass; } // clang-format on struct OnIgniteDefinition : public ::ActorDefinitionTrigger { -public: - // prevent constructor by default - OnIgniteDefinition& operator=(OnIgniteDefinition const&); - OnIgniteDefinition(OnIgniteDefinition const&); - OnIgniteDefinition(); - public: // static functions // NOLINTBEGIN diff --git a/src/mc/entity/definitions/OnStartLandingDefinition.h b/src/mc/entity/definitions/OnStartLandingDefinition.h index 35e6be3ca0..ce26a745ed 100644 --- a/src/mc/entity/definitions/OnStartLandingDefinition.h +++ b/src/mc/entity/definitions/OnStartLandingDefinition.h @@ -12,12 +12,6 @@ namespace JsonUtil { class EmptyClass; } // clang-format on struct OnStartLandingDefinition : public ::ActorDefinitionTrigger { -public: - // prevent constructor by default - OnStartLandingDefinition& operator=(OnStartLandingDefinition const&); - OnStartLandingDefinition(OnStartLandingDefinition const&); - OnStartLandingDefinition(); - public: // static functions // NOLINTBEGIN diff --git a/src/mc/entity/definitions/OnStartTakeoffDefinition.h b/src/mc/entity/definitions/OnStartTakeoffDefinition.h index 27dbc3dc8f..85813a4e60 100644 --- a/src/mc/entity/definitions/OnStartTakeoffDefinition.h +++ b/src/mc/entity/definitions/OnStartTakeoffDefinition.h @@ -12,12 +12,6 @@ namespace JsonUtil { class EmptyClass; } // clang-format on struct OnStartTakeoffDefinition : public ::ActorDefinitionTrigger { -public: - // prevent constructor by default - OnStartTakeoffDefinition& operator=(OnStartTakeoffDefinition const&); - OnStartTakeoffDefinition(OnStartTakeoffDefinition const&); - OnStartTakeoffDefinition(); - public: // static functions // NOLINTBEGIN diff --git a/src/mc/entity/definitions/OnTargetAcquiredDefinition.h b/src/mc/entity/definitions/OnTargetAcquiredDefinition.h index 7daa308271..6b231f4512 100644 --- a/src/mc/entity/definitions/OnTargetAcquiredDefinition.h +++ b/src/mc/entity/definitions/OnTargetAcquiredDefinition.h @@ -12,12 +12,6 @@ namespace JsonUtil { class EmptyClass; } // clang-format on struct OnTargetAcquiredDefinition : public ::ActorDefinitionTrigger { -public: - // prevent constructor by default - OnTargetAcquiredDefinition& operator=(OnTargetAcquiredDefinition const&); - OnTargetAcquiredDefinition(OnTargetAcquiredDefinition const&); - OnTargetAcquiredDefinition(); - public: // static functions // NOLINTBEGIN diff --git a/src/mc/entity/definitions/OnTargetEscapeDefinition.h b/src/mc/entity/definitions/OnTargetEscapeDefinition.h index 7f65fcab69..00d9b0239e 100644 --- a/src/mc/entity/definitions/OnTargetEscapeDefinition.h +++ b/src/mc/entity/definitions/OnTargetEscapeDefinition.h @@ -12,12 +12,6 @@ namespace JsonUtil { class EmptyClass; } // clang-format on struct OnTargetEscapeDefinition : public ::ActorDefinitionTrigger { -public: - // prevent constructor by default - OnTargetEscapeDefinition& operator=(OnTargetEscapeDefinition const&); - OnTargetEscapeDefinition(OnTargetEscapeDefinition const&); - OnTargetEscapeDefinition(); - public: // static functions // NOLINTBEGIN diff --git a/src/mc/entity/definitions/OnWakeWithOwnerDefinition.h b/src/mc/entity/definitions/OnWakeWithOwnerDefinition.h index 8f4fd91e8e..dd060f2754 100644 --- a/src/mc/entity/definitions/OnWakeWithOwnerDefinition.h +++ b/src/mc/entity/definitions/OnWakeWithOwnerDefinition.h @@ -12,12 +12,6 @@ namespace JsonUtil { class EmptyClass; } // clang-format on struct OnWakeWithOwnerDefinition : public ::ActorDefinitionTrigger { -public: - // prevent constructor by default - OnWakeWithOwnerDefinition& operator=(OnWakeWithOwnerDefinition const&); - OnWakeWithOwnerDefinition(OnWakeWithOwnerDefinition const&); - OnWakeWithOwnerDefinition(); - public: // static functions // NOLINTBEGIN diff --git a/src/mc/entity/definitions/OutOfControlDefinition.h b/src/mc/entity/definitions/OutOfControlDefinition.h index b7287136bb..fb4b3e51a6 100644 --- a/src/mc/entity/definitions/OutOfControlDefinition.h +++ b/src/mc/entity/definitions/OutOfControlDefinition.h @@ -13,12 +13,6 @@ namespace JsonUtil { class EmptyClass; } // clang-format on class OutOfControlDefinition { -public: - // prevent constructor by default - OutOfControlDefinition& operator=(OutOfControlDefinition const&); - OutOfControlDefinition(OutOfControlDefinition const&); - OutOfControlDefinition(); - public: // member functions // NOLINTBEGIN diff --git a/src/mc/entity/definitions/PersistentDescription.h b/src/mc/entity/definitions/PersistentDescription.h index 6e98684270..adab21851b 100644 --- a/src/mc/entity/definitions/PersistentDescription.h +++ b/src/mc/entity/definitions/PersistentDescription.h @@ -6,12 +6,6 @@ #include "mc/world/actor/ActorComponentDescription.h" struct PersistentDescription : public ::ActorComponentDescription { -public: - // prevent constructor by default - PersistentDescription& operator=(PersistentDescription const&); - PersistentDescription(PersistentDescription const&); - PersistentDescription(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/entity/definitions/TransientDefinition.h b/src/mc/entity/definitions/TransientDefinition.h index e51e8ee0b0..2043241bad 100644 --- a/src/mc/entity/definitions/TransientDefinition.h +++ b/src/mc/entity/definitions/TransientDefinition.h @@ -11,12 +11,6 @@ namespace JsonUtil { class EmptyClass; } // clang-format on struct TransientDefinition { -public: - // prevent constructor by default - TransientDefinition& operator=(TransientDefinition const&); - TransientDefinition(TransientDefinition const&); - TransientDefinition(); - public: // static functions // NOLINTBEGIN diff --git a/src/mc/entity/definitions/VibrationDamperDefinition.h b/src/mc/entity/definitions/VibrationDamperDefinition.h index 84baa8ed93..ae8ca088fe 100644 --- a/src/mc/entity/definitions/VibrationDamperDefinition.h +++ b/src/mc/entity/definitions/VibrationDamperDefinition.h @@ -11,12 +11,6 @@ namespace JsonUtil { class EmptyClass; } // clang-format on struct VibrationDamperDefinition { -public: - // prevent constructor by default - VibrationDamperDefinition& operator=(VibrationDamperDefinition const&); - VibrationDamperDefinition(VibrationDamperDefinition const&); - VibrationDamperDefinition(); - public: // static functions // NOLINTBEGIN diff --git a/src/mc/entity/definitions/WASDControlledDefinition.h b/src/mc/entity/definitions/WASDControlledDefinition.h index a1e790abcb..9241f34c1e 100644 --- a/src/mc/entity/definitions/WASDControlledDefinition.h +++ b/src/mc/entity/definitions/WASDControlledDefinition.h @@ -12,12 +12,6 @@ namespace JsonUtil { class EmptyClass; } // clang-format on struct WASDControlledDefinition { -public: - // prevent constructor by default - WASDControlledDefinition& operator=(WASDControlledDefinition const&); - WASDControlledDefinition(WASDControlledDefinition const&); - WASDControlledDefinition(); - public: // member functions // NOLINTBEGIN diff --git a/src/mc/entity/definitions/WantsJockeyDefinition.h b/src/mc/entity/definitions/WantsJockeyDefinition.h index 2b22097b99..8be2ce346a 100644 --- a/src/mc/entity/definitions/WantsJockeyDefinition.h +++ b/src/mc/entity/definitions/WantsJockeyDefinition.h @@ -11,12 +11,6 @@ namespace JsonUtil { class EmptyClass; } // clang-format on struct WantsJockeyDefinition { -public: - // prevent constructor by default - WantsJockeyDefinition& operator=(WantsJockeyDefinition const&); - WantsJockeyDefinition(WantsJockeyDefinition const&); - WantsJockeyDefinition(); - public: // static functions // NOLINTBEGIN diff --git a/src/mc/entity/factory/EntityComponentFactoryBase.h b/src/mc/entity/factory/EntityComponentFactoryBase.h index a3fbeeb23a..68d9d5a92a 100644 --- a/src/mc/entity/factory/EntityComponentFactoryBase.h +++ b/src/mc/entity/factory/EntityComponentFactoryBase.h @@ -13,12 +13,6 @@ class EntityRegistry; // clang-format on class EntityComponentFactoryBase : public ::Bedrock::EnableNonOwnerReferences { -public: - // prevent constructor by default - EntityComponentFactoryBase& operator=(EntityComponentFactoryBase const&); - EntityComponentFactoryBase(EntityComponentFactoryBase const&); - EntityComponentFactoryBase(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/entity/factory/EntityComponentFactoryCereal.h b/src/mc/entity/factory/EntityComponentFactoryCereal.h index 5457f12f04..a564d2eedd 100644 --- a/src/mc/entity/factory/EntityComponentFactoryCereal.h +++ b/src/mc/entity/factory/EntityComponentFactoryCereal.h @@ -3,10 +3,4 @@ #include "mc/_HeaderOutputPredefine.h" template -class EntityComponentFactoryCereal { -public: - // prevent constructor by default - EntityComponentFactoryCereal& operator=(EntityComponentFactoryCereal const&); - EntityComponentFactoryCereal(EntityComponentFactoryCereal const&); - EntityComponentFactoryCereal(); -}; +class EntityComponentFactoryCereal {}; diff --git a/src/mc/entity/systems/ActorBubbleColumnStateSystem.h b/src/mc/entity/systems/ActorBubbleColumnStateSystem.h index 804ed4908d..0bc8b88bc9 100644 --- a/src/mc/entity/systems/ActorBubbleColumnStateSystem.h +++ b/src/mc/entity/systems/ActorBubbleColumnStateSystem.h @@ -11,12 +11,6 @@ class EntityRegistry; // clang-format on class ActorBubbleColumnStateSystem : public ::ITickingSystem { -public: - // prevent constructor by default - ActorBubbleColumnStateSystem& operator=(ActorBubbleColumnStateSystem const&); - ActorBubbleColumnStateSystem(ActorBubbleColumnStateSystem const&); - ActorBubbleColumnStateSystem(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/entity/systems/ActorDataSyncSystem.h b/src/mc/entity/systems/ActorDataSyncSystem.h index 93661d8a88..f9f850d8a4 100644 --- a/src/mc/entity/systems/ActorDataSyncSystem.h +++ b/src/mc/entity/systems/ActorDataSyncSystem.h @@ -8,12 +8,6 @@ struct TickingSystemWithInfo; // clang-format on class ActorDataSyncSystem { -public: - // prevent constructor by default - ActorDataSyncSystem& operator=(ActorDataSyncSystem const&); - ActorDataSyncSystem(ActorDataSyncSystem const&); - ActorDataSyncSystem(); - public: // static functions // NOLINTBEGIN diff --git a/src/mc/entity/systems/ActorLegacyTickSystem.h b/src/mc/entity/systems/ActorLegacyTickSystem.h index 5e3064b48b..1aaf36bb6b 100644 --- a/src/mc/entity/systems/ActorLegacyTickSystem.h +++ b/src/mc/entity/systems/ActorLegacyTickSystem.h @@ -14,12 +14,6 @@ class EntityRegistry; // clang-format on class ActorLegacyTickSystem : public ::ITickingSystem { -public: - // prevent constructor by default - ActorLegacyTickSystem& operator=(ActorLegacyTickSystem const&); - ActorLegacyTickSystem(ActorLegacyTickSystem const&); - ActorLegacyTickSystem(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/entity/systems/ActorLimitedLifetimeTickSystem.h b/src/mc/entity/systems/ActorLimitedLifetimeTickSystem.h index d2c6bb73e8..73022288a6 100644 --- a/src/mc/entity/systems/ActorLimitedLifetimeTickSystem.h +++ b/src/mc/entity/systems/ActorLimitedLifetimeTickSystem.h @@ -11,12 +11,6 @@ class EntityRegistry; // clang-format on class ActorLimitedLifetimeTickSystem : public ::ITickingSystem { -public: - // prevent constructor by default - ActorLimitedLifetimeTickSystem& operator=(ActorLimitedLifetimeTickSystem const&); - ActorLimitedLifetimeTickSystem(ActorLimitedLifetimeTickSystem const&); - ActorLimitedLifetimeTickSystem(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/entity/systems/ActorMotionSyncSystem.h b/src/mc/entity/systems/ActorMotionSyncSystem.h index 0d69b9b555..3e52e9fa59 100644 --- a/src/mc/entity/systems/ActorMotionSyncSystem.h +++ b/src/mc/entity/systems/ActorMotionSyncSystem.h @@ -11,12 +11,6 @@ class EntityRegistry; // clang-format on class ActorMotionSyncSystem : public ::ITickingSystem { -public: - // prevent constructor by default - ActorMotionSyncSystem& operator=(ActorMotionSyncSystem const&); - ActorMotionSyncSystem(ActorMotionSyncSystem const&); - ActorMotionSyncSystem(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/entity/systems/ActorMoveSystem.h b/src/mc/entity/systems/ActorMoveSystem.h index 845f4b7713..d7c3d40b39 100644 --- a/src/mc/entity/systems/ActorMoveSystem.h +++ b/src/mc/entity/systems/ActorMoveSystem.h @@ -8,12 +8,6 @@ struct TickingSystemWithInfo; // clang-format on class ActorMoveSystem { -public: - // prevent constructor by default - ActorMoveSystem& operator=(ActorMoveSystem const&); - ActorMoveSystem(ActorMoveSystem const&); - ActorMoveSystem(); - public: // static functions // NOLINTBEGIN diff --git a/src/mc/entity/systems/ActorMovementTickFilterSystem.h b/src/mc/entity/systems/ActorMovementTickFilterSystem.h index 4ddef752fd..295f4708cb 100644 --- a/src/mc/entity/systems/ActorMovementTickFilterSystem.h +++ b/src/mc/entity/systems/ActorMovementTickFilterSystem.h @@ -8,12 +8,6 @@ struct TickingSystemWithInfo; // clang-format on struct ActorMovementTickFilterSystem { -public: - // prevent constructor by default - ActorMovementTickFilterSystem& operator=(ActorMovementTickFilterSystem const&); - ActorMovementTickFilterSystem(ActorMovementTickFilterSystem const&); - ActorMovementTickFilterSystem(); - public: // static functions // NOLINTBEGIN diff --git a/src/mc/entity/systems/ActorPostAiStepTickSystem.h b/src/mc/entity/systems/ActorPostAiStepTickSystem.h index 5e1d49e1ab..2b5fe60c9e 100644 --- a/src/mc/entity/systems/ActorPostAiStepTickSystem.h +++ b/src/mc/entity/systems/ActorPostAiStepTickSystem.h @@ -8,12 +8,6 @@ struct TickingSystemWithInfo; // clang-format on struct ActorPostAiStepTickSystem { -public: - // prevent constructor by default - ActorPostAiStepTickSystem& operator=(ActorPostAiStepTickSystem const&); - ActorPostAiStepTickSystem(ActorPostAiStepTickSystem const&); - ActorPostAiStepTickSystem(); - public: // static functions // NOLINTBEGIN diff --git a/src/mc/entity/systems/ActorPostNormalTickSystem.h b/src/mc/entity/systems/ActorPostNormalTickSystem.h index 19ac9da5be..bcb399c74b 100644 --- a/src/mc/entity/systems/ActorPostNormalTickSystem.h +++ b/src/mc/entity/systems/ActorPostNormalTickSystem.h @@ -8,12 +8,6 @@ struct TickingSystemWithInfo; // clang-format on struct ActorPostNormalTickSystem { -public: - // prevent constructor by default - ActorPostNormalTickSystem& operator=(ActorPostNormalTickSystem const&); - ActorPostNormalTickSystem(ActorPostNormalTickSystem const&); - ActorPostNormalTickSystem(); - public: // static functions // NOLINTBEGIN diff --git a/src/mc/entity/systems/ActorRefreshComponentsSystem.h b/src/mc/entity/systems/ActorRefreshComponentsSystem.h index c5fd735af2..c7eb42dff6 100644 --- a/src/mc/entity/systems/ActorRefreshComponentsSystem.h +++ b/src/mc/entity/systems/ActorRefreshComponentsSystem.h @@ -8,12 +8,6 @@ struct TickingSystemWithInfo; // clang-format on struct ActorRefreshComponentsSystem { -public: - // prevent constructor by default - ActorRefreshComponentsSystem& operator=(ActorRefreshComponentsSystem const&); - ActorRefreshComponentsSystem(ActorRefreshComponentsSystem const&); - ActorRefreshComponentsSystem(); - public: // static functions // NOLINTBEGIN diff --git a/src/mc/entity/systems/ActorRemoveSystem.h b/src/mc/entity/systems/ActorRemoveSystem.h index bec114f682..8a4d2272bd 100644 --- a/src/mc/entity/systems/ActorRemoveSystem.h +++ b/src/mc/entity/systems/ActorRemoveSystem.h @@ -2,10 +2,4 @@ #include "mc/_HeaderOutputPredefine.h" -class ActorRemoveSystem { -public: - // prevent constructor by default - ActorRemoveSystem& operator=(ActorRemoveSystem const&); - ActorRemoveSystem(ActorRemoveSystem const&); - ActorRemoveSystem(); -}; +class ActorRemoveSystem {}; diff --git a/src/mc/entity/systems/ActorStopRidingEventSystem.h b/src/mc/entity/systems/ActorStopRidingEventSystem.h index 2dd500d072..01cb4ffbb1 100644 --- a/src/mc/entity/systems/ActorStopRidingEventSystem.h +++ b/src/mc/entity/systems/ActorStopRidingEventSystem.h @@ -8,12 +8,6 @@ struct TickingSystemWithInfo; // clang-format on struct ActorStopRidingEventSystem { -public: - // prevent constructor by default - ActorStopRidingEventSystem& operator=(ActorStopRidingEventSystem const&); - ActorStopRidingEventSystem(ActorStopRidingEventSystem const&); - ActorStopRidingEventSystem(); - public: // static functions // NOLINTBEGIN diff --git a/src/mc/entity/systems/ActorUpdatePostTickPositionDeltaSystem.h b/src/mc/entity/systems/ActorUpdatePostTickPositionDeltaSystem.h index 30ce64159a..72be5c6159 100644 --- a/src/mc/entity/systems/ActorUpdatePostTickPositionDeltaSystem.h +++ b/src/mc/entity/systems/ActorUpdatePostTickPositionDeltaSystem.h @@ -16,12 +16,6 @@ struct TickingSystemWithInfo; // clang-format on class ActorUpdatePostTickPositionDeltaSystem { -public: - // prevent constructor by default - ActorUpdatePostTickPositionDeltaSystem& operator=(ActorUpdatePostTickPositionDeltaSystem const&); - ActorUpdatePostTickPositionDeltaSystem(ActorUpdatePostTickPositionDeltaSystem const&); - ActorUpdatePostTickPositionDeltaSystem(); - public: // static functions // NOLINTBEGIN diff --git a/src/mc/entity/systems/ActorUpdatePreviousPositionSystem.h b/src/mc/entity/systems/ActorUpdatePreviousPositionSystem.h index b7305d8eb9..eac8ba90ad 100644 --- a/src/mc/entity/systems/ActorUpdatePreviousPositionSystem.h +++ b/src/mc/entity/systems/ActorUpdatePreviousPositionSystem.h @@ -8,12 +8,6 @@ struct TickingSystemWithInfo; // clang-format on class ActorUpdatePreviousPositionSystem { -public: - // prevent constructor by default - ActorUpdatePreviousPositionSystem& operator=(ActorUpdatePreviousPositionSystem const&); - ActorUpdatePreviousPositionSystem(ActorUpdatePreviousPositionSystem const&); - ActorUpdatePreviousPositionSystem(); - public: // static functions // NOLINTBEGIN diff --git a/src/mc/entity/systems/ActorUpdateRidingIDSystem.h b/src/mc/entity/systems/ActorUpdateRidingIDSystem.h index c09a9cc4f6..2d0cecd718 100644 --- a/src/mc/entity/systems/ActorUpdateRidingIDSystem.h +++ b/src/mc/entity/systems/ActorUpdateRidingIDSystem.h @@ -8,12 +8,6 @@ struct TickingSystemWithInfo; // clang-format on struct ActorUpdateRidingIDSystem { -public: - // prevent constructor by default - ActorUpdateRidingIDSystem& operator=(ActorUpdateRidingIDSystem const&); - ActorUpdateRidingIDSystem(ActorUpdateRidingIDSystem const&); - ActorUpdateRidingIDSystem(); - public: // static functions // NOLINTBEGIN diff --git a/src/mc/entity/systems/AgeableSystem.h b/src/mc/entity/systems/AgeableSystem.h index 738394622f..6a0e730fe1 100644 --- a/src/mc/entity/systems/AgeableSystem.h +++ b/src/mc/entity/systems/AgeableSystem.h @@ -11,12 +11,6 @@ class EntityRegistry; // clang-format on class AgeableSystem : public ::ITickingSystem { -public: - // prevent constructor by default - AgeableSystem& operator=(AgeableSystem const&); - AgeableSystem(AgeableSystem const&); - AgeableSystem(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/entity/systems/AgentAbilitiesSyncSystem.h b/src/mc/entity/systems/AgentAbilitiesSyncSystem.h index c9a237787d..5fd532c15b 100644 --- a/src/mc/entity/systems/AgentAbilitiesSyncSystem.h +++ b/src/mc/entity/systems/AgentAbilitiesSyncSystem.h @@ -20,12 +20,6 @@ struct TickingSystemWithInfo; // clang-format on class AgentAbilitiesSyncSystem : public ::ITickingSystem { -public: - // prevent constructor by default - AgentAbilitiesSyncSystem& operator=(AgentAbilitiesSyncSystem const&); - AgentAbilitiesSyncSystem(AgentAbilitiesSyncSystem const&); - AgentAbilitiesSyncSystem(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/entity/systems/AgentCommandSystem.h b/src/mc/entity/systems/AgentCommandSystem.h index e1704e993c..fb6863db11 100644 --- a/src/mc/entity/systems/AgentCommandSystem.h +++ b/src/mc/entity/systems/AgentCommandSystem.h @@ -14,12 +14,6 @@ namespace AgentComponents { class CommandCooldown; } // clang-format on class AgentCommandSystem : public ::ITickingSystem { -public: - // prevent constructor by default - AgentCommandSystem& operator=(AgentCommandSystem const&); - AgentCommandSystem(AgentCommandSystem const&); - AgentCommandSystem(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/entity/systems/AgentDestroyCommandSystem.h b/src/mc/entity/systems/AgentDestroyCommandSystem.h index d100747f9b..83a91a765b 100644 --- a/src/mc/entity/systems/AgentDestroyCommandSystem.h +++ b/src/mc/entity/systems/AgentDestroyCommandSystem.h @@ -11,12 +11,6 @@ class EntityRegistry; // clang-format on class AgentDestroyCommandSystem : public ::ITickingSystem { -public: - // prevent constructor by default - AgentDestroyCommandSystem& operator=(AgentDestroyCommandSystem const&); - AgentDestroyCommandSystem(AgentDestroyCommandSystem const&); - AgentDestroyCommandSystem(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/entity/systems/AgentDetectCommandSystem.h b/src/mc/entity/systems/AgentDetectCommandSystem.h index 25a4fd8483..89218dbcde 100644 --- a/src/mc/entity/systems/AgentDetectCommandSystem.h +++ b/src/mc/entity/systems/AgentDetectCommandSystem.h @@ -14,12 +14,6 @@ namespace AgentComponents { class DetectRedstone; } // clang-format on class AgentDetectCommandSystem : public ::ITickingSystem { -public: - // prevent constructor by default - AgentDetectCommandSystem& operator=(AgentDetectCommandSystem const&); - AgentDetectCommandSystem(AgentDetectCommandSystem const&); - AgentDetectCommandSystem(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/entity/systems/AgentInspectCommandSystem.h b/src/mc/entity/systems/AgentInspectCommandSystem.h index 5b81692fae..f0f57eb950 100644 --- a/src/mc/entity/systems/AgentInspectCommandSystem.h +++ b/src/mc/entity/systems/AgentInspectCommandSystem.h @@ -11,12 +11,6 @@ class EntityRegistry; // clang-format on class AgentInspectCommandSystem : public ::ITickingSystem { -public: - // prevent constructor by default - AgentInspectCommandSystem& operator=(AgentInspectCommandSystem const&); - AgentInspectCommandSystem(AgentInspectCommandSystem const&); - AgentInspectCommandSystem(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/entity/systems/AgentInteractCommandSystem.h b/src/mc/entity/systems/AgentInteractCommandSystem.h index a4972a9465..ef7d361707 100644 --- a/src/mc/entity/systems/AgentInteractCommandSystem.h +++ b/src/mc/entity/systems/AgentInteractCommandSystem.h @@ -11,12 +11,6 @@ class EntityRegistry; // clang-format on class AgentInteractCommandSystem : public ::ITickingSystem { -public: - // prevent constructor by default - AgentInteractCommandSystem& operator=(AgentInteractCommandSystem const&); - AgentInteractCommandSystem(AgentInteractCommandSystem const&); - AgentInteractCommandSystem(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/entity/systems/AgentMoveCommandSystem.h b/src/mc/entity/systems/AgentMoveCommandSystem.h index 02ccb61f4b..41d674d20e 100644 --- a/src/mc/entity/systems/AgentMoveCommandSystem.h +++ b/src/mc/entity/systems/AgentMoveCommandSystem.h @@ -14,12 +14,6 @@ namespace AgentComponents { struct ActionDetails; } // clang-format on class AgentMoveCommandSystem : public ::ITickingSystem { -public: - // prevent constructor by default - AgentMoveCommandSystem& operator=(AgentMoveCommandSystem const&); - AgentMoveCommandSystem(AgentMoveCommandSystem const&); - AgentMoveCommandSystem(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/entity/systems/AmbientSoundServerSystem.h b/src/mc/entity/systems/AmbientSoundServerSystem.h index f761a4ab8f..028cfd7253 100644 --- a/src/mc/entity/systems/AmbientSoundServerSystem.h +++ b/src/mc/entity/systems/AmbientSoundServerSystem.h @@ -13,12 +13,6 @@ class EntityRegistry; // clang-format on class AmbientSoundServerSystem : public ::ITickingSystem { -public: - // prevent constructor by default - AmbientSoundServerSystem& operator=(AmbientSoundServerSystem const&); - AmbientSoundServerSystem(AmbientSoundServerSystem const&); - AmbientSoundServerSystem(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/entity/systems/AmbientSoundSystem.h b/src/mc/entity/systems/AmbientSoundSystem.h index 94d566ca8a..d2550b97ff 100644 --- a/src/mc/entity/systems/AmbientSoundSystem.h +++ b/src/mc/entity/systems/AmbientSoundSystem.h @@ -11,12 +11,6 @@ class EntityRegistry; // clang-format on class AmbientSoundSystem : public ::ITickingSystem { -public: - // prevent constructor by default - AmbientSoundSystem& operator=(AmbientSoundSystem const&); - AmbientSoundSystem(AmbientSoundSystem const&); - AmbientSoundSystem(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/entity/systems/AngerLevelSystem.h b/src/mc/entity/systems/AngerLevelSystem.h index 1587ecf6d5..d872fc85fd 100644 --- a/src/mc/entity/systems/AngerLevelSystem.h +++ b/src/mc/entity/systems/AngerLevelSystem.h @@ -11,12 +11,6 @@ class EntityRegistry; // clang-format on class AngerLevelSystem : public ::ITickingSystem { -public: - // prevent constructor by default - AngerLevelSystem& operator=(AngerLevelSystem const&); - AngerLevelSystem(AngerLevelSystem const&); - AngerLevelSystem(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/entity/systems/AngrySystem.h b/src/mc/entity/systems/AngrySystem.h index 0a0ac25b51..0211d0bc3a 100644 --- a/src/mc/entity/systems/AngrySystem.h +++ b/src/mc/entity/systems/AngrySystem.h @@ -13,12 +13,6 @@ class EntityRegistry; // clang-format on class AngrySystem : public ::ITickingSystem { -public: - // prevent constructor by default - AngrySystem& operator=(AngrySystem const&); - AngrySystem(AngrySystem const&); - AngrySystem(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/entity/systems/AnimationEventSystem.h b/src/mc/entity/systems/AnimationEventSystem.h index 1eea088e4c..cae6010449 100644 --- a/src/mc/entity/systems/AnimationEventSystem.h +++ b/src/mc/entity/systems/AnimationEventSystem.h @@ -11,12 +11,6 @@ class EntityRegistry; // clang-format on class AnimationEventSystem : public ::ITickingSystem { -public: - // prevent constructor by default - AnimationEventSystem& operator=(AnimationEventSystem const&); - AnimationEventSystem(AnimationEventSystem const&); - AnimationEventSystem(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/entity/systems/ApplyDashSystem.h b/src/mc/entity/systems/ApplyDashSystem.h index b153cb52c6..248bafa16a 100644 --- a/src/mc/entity/systems/ApplyDashSystem.h +++ b/src/mc/entity/systems/ApplyDashSystem.h @@ -25,12 +25,6 @@ struct TriggerJumpRequestComponent; // clang-format on struct ApplyDashSystem { -public: - // prevent constructor by default - ApplyDashSystem& operator=(ApplyDashSystem const&); - ApplyDashSystem(ApplyDashSystem const&); - ApplyDashSystem(); - public: // static functions // NOLINTBEGIN diff --git a/src/mc/entity/systems/ApplyJumpModifierSystem.h b/src/mc/entity/systems/ApplyJumpModifierSystem.h index 8d8187f4c4..e654ad02e1 100644 --- a/src/mc/entity/systems/ApplyJumpModifierSystem.h +++ b/src/mc/entity/systems/ApplyJumpModifierSystem.h @@ -24,12 +24,6 @@ struct TriggerJumpRequestComponent; // clang-format on struct ApplyJumpModifierSystem { -public: - // prevent constructor by default - ApplyJumpModifierSystem& operator=(ApplyJumpModifierSystem const&); - ApplyJumpModifierSystem(ApplyJumpModifierSystem const&); - ApplyJumpModifierSystem(); - public: // static functions // NOLINTBEGIN diff --git a/src/mc/entity/systems/AreaAttackSystem.h b/src/mc/entity/systems/AreaAttackSystem.h index 83534645a6..6f7a11500b 100644 --- a/src/mc/entity/systems/AreaAttackSystem.h +++ b/src/mc/entity/systems/AreaAttackSystem.h @@ -13,12 +13,6 @@ class EntityRegistry; // clang-format on class AreaAttackSystem : public ::ITickingSystem { -public: - // prevent constructor by default - AreaAttackSystem& operator=(AreaAttackSystem const&); - AreaAttackSystem(AreaAttackSystem const&); - AreaAttackSystem(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/entity/systems/AttackCooldownSystem.h b/src/mc/entity/systems/AttackCooldownSystem.h index fce472dbb8..c085b1e127 100644 --- a/src/mc/entity/systems/AttackCooldownSystem.h +++ b/src/mc/entity/systems/AttackCooldownSystem.h @@ -11,12 +11,6 @@ class EntityRegistry; // clang-format on class AttackCooldownSystem : public ::ITickingSystem { -public: - // prevent constructor by default - AttackCooldownSystem& operator=(AttackCooldownSystem const&); - AttackCooldownSystem(AttackCooldownSystem const&); - AttackCooldownSystem(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/entity/systems/BalloonSystem.h b/src/mc/entity/systems/BalloonSystem.h index 3290918759..334d110740 100644 --- a/src/mc/entity/systems/BalloonSystem.h +++ b/src/mc/entity/systems/BalloonSystem.h @@ -11,12 +11,6 @@ class EntityRegistry; // clang-format on class BalloonSystem : public ::ITickingSystem { -public: - // prevent constructor by default - BalloonSystem& operator=(BalloonSystem const&); - BalloonSystem(BalloonSystem const&); - BalloonSystem(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/entity/systems/BehaviorSystem.h b/src/mc/entity/systems/BehaviorSystem.h index e43fa15134..91fe362524 100644 --- a/src/mc/entity/systems/BehaviorSystem.h +++ b/src/mc/entity/systems/BehaviorSystem.h @@ -11,12 +11,6 @@ class EntityRegistry; // clang-format on class BehaviorSystem : public ::ITickingSystem { -public: - // prevent constructor by default - BehaviorSystem& operator=(BehaviorSystem const&); - BehaviorSystem(BehaviorSystem const&); - BehaviorSystem(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/entity/systems/BlazePreTravelSystem.h b/src/mc/entity/systems/BlazePreTravelSystem.h index 77e0c49fd0..fa85cdffa0 100644 --- a/src/mc/entity/systems/BlazePreTravelSystem.h +++ b/src/mc/entity/systems/BlazePreTravelSystem.h @@ -16,12 +16,6 @@ struct TickingSystemWithInfo; // clang-format on class BlazePreTravelSystem { -public: - // prevent constructor by default - BlazePreTravelSystem& operator=(BlazePreTravelSystem const&); - BlazePreTravelSystem(BlazePreTravelSystem const&); - BlazePreTravelSystem(); - public: // static functions // NOLINTBEGIN diff --git a/src/mc/entity/systems/BlockBreakSensorSystem.h b/src/mc/entity/systems/BlockBreakSensorSystem.h index 70692b9e1f..ec19bb7fbf 100644 --- a/src/mc/entity/systems/BlockBreakSensorSystem.h +++ b/src/mc/entity/systems/BlockBreakSensorSystem.h @@ -11,12 +11,6 @@ class EntityRegistry; // clang-format on class BlockBreakSensorSystem : public ::ITickingSystem { -public: - // prevent constructor by default - BlockBreakSensorSystem& operator=(BlockBreakSensorSystem const&); - BlockBreakSensorSystem(BlockBreakSensorSystem const&); - BlockBreakSensorSystem(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/entity/systems/BlockClimberSystem.h b/src/mc/entity/systems/BlockClimberSystem.h index 49f08dda26..011ecc8a26 100644 --- a/src/mc/entity/systems/BlockClimberSystem.h +++ b/src/mc/entity/systems/BlockClimberSystem.h @@ -11,12 +11,6 @@ struct TickingSystemWithInfo; // clang-format on class BlockClimberSystem { -public: - // prevent constructor by default - BlockClimberSystem& operator=(BlockClimberSystem const&); - BlockClimberSystem(BlockClimberSystem const&); - BlockClimberSystem(); - public: // static functions // NOLINTBEGIN diff --git a/src/mc/entity/systems/BodyControlSystem.h b/src/mc/entity/systems/BodyControlSystem.h index 95d9aaff29..26385d80c5 100644 --- a/src/mc/entity/systems/BodyControlSystem.h +++ b/src/mc/entity/systems/BodyControlSystem.h @@ -11,12 +11,6 @@ class EntityRegistry; // clang-format on class BodyControlSystem : public ::ITickingSystem { -public: - // prevent constructor by default - BodyControlSystem& operator=(BodyControlSystem const&); - BodyControlSystem(BodyControlSystem const&); - BodyControlSystem(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/entity/systems/BoostableSystem.h b/src/mc/entity/systems/BoostableSystem.h index e19e26c9f2..bc783a585d 100644 --- a/src/mc/entity/systems/BoostableSystem.h +++ b/src/mc/entity/systems/BoostableSystem.h @@ -11,12 +11,6 @@ class EntityRegistry; // clang-format on class BoostableSystem : public ::ITickingSystem { -public: - // prevent constructor by default - BoostableSystem& operator=(BoostableSystem const&); - BoostableSystem(BoostableSystem const&); - BoostableSystem(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/entity/systems/BossSystem.h b/src/mc/entity/systems/BossSystem.h index 2289471f17..69ba75360f 100644 --- a/src/mc/entity/systems/BossSystem.h +++ b/src/mc/entity/systems/BossSystem.h @@ -11,12 +11,6 @@ class EntityRegistry; // clang-format on class BossSystem : public ::ITickingSystem { -public: - // prevent constructor by default - BossSystem& operator=(BossSystem const&); - BossSystem(BossSystem const&); - BossSystem(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/entity/systems/BounceEventingSystem.h b/src/mc/entity/systems/BounceEventingSystem.h index 7d4d594a48..4b493daaec 100644 --- a/src/mc/entity/systems/BounceEventingSystem.h +++ b/src/mc/entity/systems/BounceEventingSystem.h @@ -20,12 +20,6 @@ struct TickingSystemWithInfo; // clang-format on class BounceEventingSystem { -public: - // prevent constructor by default - BounceEventingSystem& operator=(BounceEventingSystem const&); - BounceEventingSystem(BounceEventingSystem const&); - BounceEventingSystem(); - public: // static functions // NOLINTBEGIN diff --git a/src/mc/entity/systems/BreakBlocksSystem.h b/src/mc/entity/systems/BreakBlocksSystem.h index 8305e2b4ef..b3fb37a714 100644 --- a/src/mc/entity/systems/BreakBlocksSystem.h +++ b/src/mc/entity/systems/BreakBlocksSystem.h @@ -13,12 +13,6 @@ class EntityRegistry; // clang-format on class BreakBlocksSystem : public ::ITickingSystem { -public: - // prevent constructor by default - BreakBlocksSystem& operator=(BreakBlocksSystem const&); - BreakBlocksSystem(BreakBlocksSystem const&); - BreakBlocksSystem(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/entity/systems/BreakDoorAnnotationSystem.h b/src/mc/entity/systems/BreakDoorAnnotationSystem.h index e488eaede1..dc399628f6 100644 --- a/src/mc/entity/systems/BreakDoorAnnotationSystem.h +++ b/src/mc/entity/systems/BreakDoorAnnotationSystem.h @@ -11,12 +11,6 @@ class EntityRegistry; // clang-format on class BreakDoorAnnotationSystem : public ::ITickingSystem { -public: - // prevent constructor by default - BreakDoorAnnotationSystem& operator=(BreakDoorAnnotationSystem const&); - BreakDoorAnnotationSystem(BreakDoorAnnotationSystem const&); - BreakDoorAnnotationSystem(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/entity/systems/BreathableSystem.h b/src/mc/entity/systems/BreathableSystem.h index f0ed2f4502..0c4fcc8215 100644 --- a/src/mc/entity/systems/BreathableSystem.h +++ b/src/mc/entity/systems/BreathableSystem.h @@ -11,12 +11,6 @@ class EntityRegistry; // clang-format on class BreathableSystem : public ::ITickingSystem { -public: - // prevent constructor by default - BreathableSystem& operator=(BreathableSystem const&); - BreathableSystem(BreathableSystem const&); - BreathableSystem(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/entity/systems/BreedableSystem.h b/src/mc/entity/systems/BreedableSystem.h index 0ee047b239..4254008560 100644 --- a/src/mc/entity/systems/BreedableSystem.h +++ b/src/mc/entity/systems/BreedableSystem.h @@ -11,12 +11,6 @@ class EntityRegistry; // clang-format on class BreedableSystem : public ::ITickingSystem { -public: - // prevent constructor by default - BreedableSystem& operator=(BreedableSystem const&); - BreedableSystem(BreedableSystem const&); - BreedableSystem(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/entity/systems/BribeableSystem.h b/src/mc/entity/systems/BribeableSystem.h index 11e17e6eac..be362f4321 100644 --- a/src/mc/entity/systems/BribeableSystem.h +++ b/src/mc/entity/systems/BribeableSystem.h @@ -11,12 +11,6 @@ class EntityRegistry; // clang-format on class BribeableSystem : public ::ITickingSystem { -public: - // prevent constructor by default - BribeableSystem& operator=(BribeableSystem const&); - BribeableSystem(BribeableSystem const&); - BribeableSystem(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/entity/systems/BurnsInDaylightSystem.h b/src/mc/entity/systems/BurnsInDaylightSystem.h index a5b4f5084f..60170041ae 100644 --- a/src/mc/entity/systems/BurnsInDaylightSystem.h +++ b/src/mc/entity/systems/BurnsInDaylightSystem.h @@ -11,12 +11,6 @@ class EntityRegistry; // clang-format on class BurnsInDaylightSystem : public ::ITickingSystem { -public: - // prevent constructor by default - BurnsInDaylightSystem& operator=(BurnsInDaylightSystem const&); - BurnsInDaylightSystem(BurnsInDaylightSystem const&); - BurnsInDaylightSystem(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/entity/systems/CameraShakeSystem.h b/src/mc/entity/systems/CameraShakeSystem.h index f3d7b247e7..ffcbb06c35 100644 --- a/src/mc/entity/systems/CameraShakeSystem.h +++ b/src/mc/entity/systems/CameraShakeSystem.h @@ -11,12 +11,6 @@ class EntityRegistry; // clang-format on class CameraShakeSystem : public ::ITickingSystem { -public: - // prevent constructor by default - CameraShakeSystem& operator=(CameraShakeSystem const&); - CameraShakeSystem(CameraShakeSystem const&); - CameraShakeSystem(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/entity/systems/CelebrateHuntSystem.h b/src/mc/entity/systems/CelebrateHuntSystem.h index 54dd55f6cf..d6a87e5ada 100644 --- a/src/mc/entity/systems/CelebrateHuntSystem.h +++ b/src/mc/entity/systems/CelebrateHuntSystem.h @@ -11,12 +11,6 @@ class EntityRegistry; // clang-format on class CelebrateHuntSystem : public ::ITickingSystem { -public: - // prevent constructor by default - CelebrateHuntSystem& operator=(CelebrateHuntSystem const&); - CelebrateHuntSystem(CelebrateHuntSystem const&); - CelebrateHuntSystem(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/entity/systems/CheckFallDamageSystem.h b/src/mc/entity/systems/CheckFallDamageSystem.h index dec89608f6..904310dd1f 100644 --- a/src/mc/entity/systems/CheckFallDamageSystem.h +++ b/src/mc/entity/systems/CheckFallDamageSystem.h @@ -8,12 +8,6 @@ struct TickingSystemWithInfo; // clang-format on class CheckFallDamageSystem { -public: - // prevent constructor by default - CheckFallDamageSystem& operator=(CheckFallDamageSystem const&); - CheckFallDamageSystem(CheckFallDamageSystem const&); - CheckFallDamageSystem(); - public: // static functions // NOLINTBEGIN diff --git a/src/mc/entity/systems/CleanUpSingleTickRemovePassengersSystem.h b/src/mc/entity/systems/CleanUpSingleTickRemovePassengersSystem.h index 681aa5565e..6b1fd10518 100644 --- a/src/mc/entity/systems/CleanUpSingleTickRemovePassengersSystem.h +++ b/src/mc/entity/systems/CleanUpSingleTickRemovePassengersSystem.h @@ -8,12 +8,6 @@ struct TickingSystemWithInfo; // clang-format on struct CleanUpSingleTickRemovePassengersSystem { -public: - // prevent constructor by default - CleanUpSingleTickRemovePassengersSystem& operator=(CleanUpSingleTickRemovePassengersSystem const&); - CleanUpSingleTickRemovePassengersSystem(CleanUpSingleTickRemovePassengersSystem const&); - CleanUpSingleTickRemovePassengersSystem(); - public: // static functions // NOLINTBEGIN diff --git a/src/mc/entity/systems/ClientInputUpdateSystem.h b/src/mc/entity/systems/ClientInputUpdateSystem.h index bb1c67e334..0352a76630 100644 --- a/src/mc/entity/systems/ClientInputUpdateSystem.h +++ b/src/mc/entity/systems/ClientInputUpdateSystem.h @@ -19,12 +19,6 @@ class ClientInputUpdateSystem { Right = Up | Count, }; -public: - // prevent constructor by default - ClientInputUpdateSystem& operator=(ClientInputUpdateSystem const&); - ClientInputUpdateSystem(ClientInputUpdateSystem const&); - ClientInputUpdateSystem(); - public: // static functions // NOLINTBEGIN diff --git a/src/mc/entity/systems/ClientInputUpdateSystemInternal.h b/src/mc/entity/systems/ClientInputUpdateSystemInternal.h index 158e9380a2..64722d1e0d 100644 --- a/src/mc/entity/systems/ClientInputUpdateSystemInternal.h +++ b/src/mc/entity/systems/ClientInputUpdateSystemInternal.h @@ -106,12 +106,6 @@ struct ClientInputUpdateSystemInternal ::GlobalRead<::ExternalDataComponent, ::LocalConstBlockSourceFactoryComponent>, ::GlobalWrite<>, ::EntityFactoryT<>>> { -public: - // prevent constructor by default - ClientInputUpdateSystemInternal& operator=(ClientInputUpdateSystemInternal const&); - ClientInputUpdateSystemInternal(ClientInputUpdateSystemInternal const&); - ClientInputUpdateSystemInternal(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/entity/systems/ClientInteractStopRidingSystem.h b/src/mc/entity/systems/ClientInteractStopRidingSystem.h index 021ec7617f..da33b82cfc 100644 --- a/src/mc/entity/systems/ClientInteractStopRidingSystem.h +++ b/src/mc/entity/systems/ClientInteractStopRidingSystem.h @@ -8,12 +8,6 @@ struct TickingSystemWithInfo; // clang-format on struct ClientInteractStopRidingSystem { -public: - // prevent constructor by default - ClientInteractStopRidingSystem& operator=(ClientInteractStopRidingSystem const&); - ClientInteractStopRidingSystem(ClientInteractStopRidingSystem const&); - ClientInteractStopRidingSystem(); - public: // static functions // NOLINTBEGIN diff --git a/src/mc/entity/systems/ClientLoadingProgressTickingSystem.h b/src/mc/entity/systems/ClientLoadingProgressTickingSystem.h index 2f9d3d3f6f..bf45a19b47 100644 --- a/src/mc/entity/systems/ClientLoadingProgressTickingSystem.h +++ b/src/mc/entity/systems/ClientLoadingProgressTickingSystem.h @@ -12,12 +12,6 @@ class EntityRegistry; // clang-format on class ClientLoadingProgressTickingSystem : public ::ITickingSystem { -public: - // prevent constructor by default - ClientLoadingProgressTickingSystem& operator=(ClientLoadingProgressTickingSystem const&); - ClientLoadingProgressTickingSystem(ClientLoadingProgressTickingSystem const&); - ClientLoadingProgressTickingSystem(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/entity/systems/ClientPlayerRewindSystem.h b/src/mc/entity/systems/ClientPlayerRewindSystem.h index 1cde3d1f03..937b7fac80 100644 --- a/src/mc/entity/systems/ClientPlayerRewindSystem.h +++ b/src/mc/entity/systems/ClientPlayerRewindSystem.h @@ -10,12 +10,6 @@ struct TickingSystemWithInfo; // clang-format on class ClientPlayerRewindSystem { -public: - // prevent constructor by default - ClientPlayerRewindSystem& operator=(ClientPlayerRewindSystem const&); - ClientPlayerRewindSystem(ClientPlayerRewindSystem const&); - ClientPlayerRewindSystem(); - public: // static functions // NOLINTBEGIN diff --git a/src/mc/entity/systems/ClientTripodCameraTickingSystem.h b/src/mc/entity/systems/ClientTripodCameraTickingSystem.h index 760aebddff..1394ccbee7 100644 --- a/src/mc/entity/systems/ClientTripodCameraTickingSystem.h +++ b/src/mc/entity/systems/ClientTripodCameraTickingSystem.h @@ -11,12 +11,6 @@ class EntityRegistry; // clang-format on class ClientTripodCameraTickingSystem : public ::ITickingSystem { -public: - // prevent constructor by default - ClientTripodCameraTickingSystem& operator=(ClientTripodCameraTickingSystem const&); - ClientTripodCameraTickingSystem(ClientTripodCameraTickingSystem const&); - ClientTripodCameraTickingSystem(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/entity/systems/CollidableMobNotifierSystem.h b/src/mc/entity/systems/CollidableMobNotifierSystem.h index 1fdf005041..8748f35176 100644 --- a/src/mc/entity/systems/CollidableMobNotifierSystem.h +++ b/src/mc/entity/systems/CollidableMobNotifierSystem.h @@ -27,12 +27,6 @@ struct TickingSystemWithInfo; // clang-format on struct CollidableMobNotifierSystem { -public: - // prevent constructor by default - CollidableMobNotifierSystem& operator=(CollidableMobNotifierSystem const&); - CollidableMobNotifierSystem(CollidableMobNotifierSystem const&); - CollidableMobNotifierSystem(); - public: // static functions // NOLINTBEGIN diff --git a/src/mc/entity/systems/CombatRegenerationSystem.h b/src/mc/entity/systems/CombatRegenerationSystem.h index 45f012c201..d56d6b4222 100644 --- a/src/mc/entity/systems/CombatRegenerationSystem.h +++ b/src/mc/entity/systems/CombatRegenerationSystem.h @@ -11,12 +11,6 @@ class EntityRegistry; // clang-format on class CombatRegenerationSystem : public ::ITickingSystem { -public: - // prevent constructor by default - CombatRegenerationSystem& operator=(CombatRegenerationSystem const&); - CombatRegenerationSystem(CombatRegenerationSystem const&); - CombatRegenerationSystem(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/entity/systems/CommandBlockSystem.h b/src/mc/entity/systems/CommandBlockSystem.h index 54208bf8fa..2f8dbe029b 100644 --- a/src/mc/entity/systems/CommandBlockSystem.h +++ b/src/mc/entity/systems/CommandBlockSystem.h @@ -11,12 +11,6 @@ class EntityRegistry; // clang-format on class CommandBlockSystem : public ::ITickingSystem { -public: - // prevent constructor by default - CommandBlockSystem& operator=(CommandBlockSystem const&); - CommandBlockSystem(CommandBlockSystem const&); - CommandBlockSystem(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/entity/systems/CompareVehiclePositionSystem.h b/src/mc/entity/systems/CompareVehiclePositionSystem.h index f65d8d4a55..ff69ceac24 100644 --- a/src/mc/entity/systems/CompareVehiclePositionSystem.h +++ b/src/mc/entity/systems/CompareVehiclePositionSystem.h @@ -8,12 +8,6 @@ struct TickingSystemWithInfo; // clang-format on struct CompareVehiclePositionSystem { -public: - // prevent constructor by default - CompareVehiclePositionSystem& operator=(CompareVehiclePositionSystem const&); - CompareVehiclePositionSystem(CompareVehiclePositionSystem const&); - CompareVehiclePositionSystem(); - public: // static functions // NOLINTBEGIN diff --git a/src/mc/entity/systems/ControlledByLocalInstanceSystem.h b/src/mc/entity/systems/ControlledByLocalInstanceSystem.h index 17f7b19e35..7baefd7f32 100644 --- a/src/mc/entity/systems/ControlledByLocalInstanceSystem.h +++ b/src/mc/entity/systems/ControlledByLocalInstanceSystem.h @@ -37,12 +37,6 @@ struct ControlledByLocalInstanceSystem { Config(); }; -public: - // prevent constructor by default - ControlledByLocalInstanceSystem& operator=(ControlledByLocalInstanceSystem const&); - ControlledByLocalInstanceSystem(ControlledByLocalInstanceSystem const&); - ControlledByLocalInstanceSystem(); - public: // static functions // NOLINTBEGIN diff --git a/src/mc/entity/systems/CreativePlayerOnFireServerSystem.h b/src/mc/entity/systems/CreativePlayerOnFireServerSystem.h index 12eb455579..e65263f63a 100644 --- a/src/mc/entity/systems/CreativePlayerOnFireServerSystem.h +++ b/src/mc/entity/systems/CreativePlayerOnFireServerSystem.h @@ -8,12 +8,6 @@ struct TickingSystemWithInfo; // clang-format on class CreativePlayerOnFireServerSystem { -public: - // prevent constructor by default - CreativePlayerOnFireServerSystem& operator=(CreativePlayerOnFireServerSystem const&); - CreativePlayerOnFireServerSystem(CreativePlayerOnFireServerSystem const&); - CreativePlayerOnFireServerSystem(); - public: // static functions // NOLINTBEGIN diff --git a/src/mc/entity/systems/CurrentSwimAmountSystem.h b/src/mc/entity/systems/CurrentSwimAmountSystem.h index 094335cc06..a29482c442 100644 --- a/src/mc/entity/systems/CurrentSwimAmountSystem.h +++ b/src/mc/entity/systems/CurrentSwimAmountSystem.h @@ -16,12 +16,6 @@ struct TickingSystemWithInfo; // clang-format on class CurrentSwimAmountSystem { -public: - // prevent constructor by default - CurrentSwimAmountSystem& operator=(CurrentSwimAmountSystem const&); - CurrentSwimAmountSystem(CurrentSwimAmountSystem const&); - CurrentSwimAmountSystem(); - public: // static functions // NOLINTBEGIN diff --git a/src/mc/entity/systems/CurrentlyStandingOnBlockSystemImpl.h b/src/mc/entity/systems/CurrentlyStandingOnBlockSystemImpl.h index eac0431d42..b1cdccc94e 100644 --- a/src/mc/entity/systems/CurrentlyStandingOnBlockSystemImpl.h +++ b/src/mc/entity/systems/CurrentlyStandingOnBlockSystemImpl.h @@ -32,12 +32,6 @@ struct CurrentlyStandingOnBlockSystemImpl ::GlobalRead<::LocalConstBlockSourceFactoryComponent>, ::GlobalWrite<>, ::EntityFactoryT<>>> { -public: - // prevent constructor by default - CurrentlyStandingOnBlockSystemImpl& operator=(CurrentlyStandingOnBlockSystemImpl const&); - CurrentlyStandingOnBlockSystemImpl(CurrentlyStandingOnBlockSystemImpl const&); - CurrentlyStandingOnBlockSystemImpl(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/entity/systems/DamageOverTimeSystem.h b/src/mc/entity/systems/DamageOverTimeSystem.h index 0873f805e4..c1b48dbbde 100644 --- a/src/mc/entity/systems/DamageOverTimeSystem.h +++ b/src/mc/entity/systems/DamageOverTimeSystem.h @@ -11,12 +11,6 @@ class EntityRegistry; // clang-format on class DamageOverTimeSystem : public ::ITickingSystem { -public: - // prevent constructor by default - DamageOverTimeSystem& operator=(DamageOverTimeSystem const&); - DamageOverTimeSystem(DamageOverTimeSystem const&); - DamageOverTimeSystem(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/entity/systems/DanceSystem.h b/src/mc/entity/systems/DanceSystem.h index 9c001fc0c3..3a04367b67 100644 --- a/src/mc/entity/systems/DanceSystem.h +++ b/src/mc/entity/systems/DanceSystem.h @@ -11,12 +11,6 @@ class EntityRegistry; // clang-format on class DanceSystem : public ::ITickingSystem { -public: - // prevent constructor by default - DanceSystem& operator=(DanceSystem const&); - DanceSystem(DanceSystem const&); - DanceSystem(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/entity/systems/DashSystem.h b/src/mc/entity/systems/DashSystem.h index d23d93f013..4022f94543 100644 --- a/src/mc/entity/systems/DashSystem.h +++ b/src/mc/entity/systems/DashSystem.h @@ -17,12 +17,6 @@ struct TickingSystemWithInfo; // clang-format on class DashSystem { -public: - // prevent constructor by default - DashSystem& operator=(DashSystem const&); - DashSystem(DashSystem const&); - DashSystem(); - public: // static functions // NOLINTBEGIN diff --git a/src/mc/entity/systems/DayCycleEventSystem.h b/src/mc/entity/systems/DayCycleEventSystem.h index e83adc0d26..b6d3d52104 100644 --- a/src/mc/entity/systems/DayCycleEventSystem.h +++ b/src/mc/entity/systems/DayCycleEventSystem.h @@ -11,12 +11,6 @@ class EntityRegistry; // clang-format on class DayCycleEventSystem : public ::ITickingSystem { -public: - // prevent constructor by default - DayCycleEventSystem& operator=(DayCycleEventSystem const&); - DayCycleEventSystem(DayCycleEventSystem const&); - DayCycleEventSystem(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/entity/systems/DebugInfoMob.h b/src/mc/entity/systems/DebugInfoMob.h index 0995be7f12..3c2c5e24d3 100644 --- a/src/mc/entity/systems/DebugInfoMob.h +++ b/src/mc/entity/systems/DebugInfoMob.h @@ -6,12 +6,6 @@ #include "mc/world/actor/Mob.h" class DebugInfoMob : public ::Mob { -public: - // prevent constructor by default - DebugInfoMob& operator=(DebugInfoMob const&); - DebugInfoMob(DebugInfoMob const&); - DebugInfoMob(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/entity/systems/DebugInfoPlayer.h b/src/mc/entity/systems/DebugInfoPlayer.h index 9486da7211..628daf2c84 100644 --- a/src/mc/entity/systems/DebugInfoPlayer.h +++ b/src/mc/entity/systems/DebugInfoPlayer.h @@ -6,12 +6,6 @@ #include "mc/world/actor/player/Player.h" class DebugInfoPlayer : public ::Player { -public: - // prevent constructor by default - DebugInfoPlayer& operator=(DebugInfoPlayer const&); - DebugInfoPlayer(DebugInfoPlayer const&); - DebugInfoPlayer(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/entity/systems/DebugInfoSystem.h b/src/mc/entity/systems/DebugInfoSystem.h index e05c13dc03..44c8743665 100644 --- a/src/mc/entity/systems/DebugInfoSystem.h +++ b/src/mc/entity/systems/DebugInfoSystem.h @@ -11,12 +11,6 @@ class EntityRegistry; // clang-format on class DebugInfoSystem : public ::ITickingSystem { -public: - // prevent constructor by default - DebugInfoSystem& operator=(DebugInfoSystem const&); - DebugInfoSystem(DebugInfoSystem const&); - DebugInfoSystem(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/entity/systems/DespawnSystem.h b/src/mc/entity/systems/DespawnSystem.h index bd89b1ed04..f0bfe6917d 100644 --- a/src/mc/entity/systems/DespawnSystem.h +++ b/src/mc/entity/systems/DespawnSystem.h @@ -13,12 +13,6 @@ class EntityRegistry; // clang-format on class DespawnSystem : public ::ITickingSystem { -public: - // prevent constructor by default - DespawnSystem& operator=(DespawnSystem const&); - DespawnSystem(DespawnSystem const&); - DespawnSystem(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/entity/systems/DimensionChunkMoveSystem.h b/src/mc/entity/systems/DimensionChunkMoveSystem.h index 972a8991eb..6c8a11c4eb 100644 --- a/src/mc/entity/systems/DimensionChunkMoveSystem.h +++ b/src/mc/entity/systems/DimensionChunkMoveSystem.h @@ -8,12 +8,6 @@ struct TickingSystemWithInfo; // clang-format on class DimensionChunkMoveSystem { -public: - // prevent constructor by default - DimensionChunkMoveSystem& operator=(DimensionChunkMoveSystem const&); - DimensionChunkMoveSystem(DimensionChunkMoveSystem const&); - DimensionChunkMoveSystem(); - public: // static functions // NOLINTBEGIN diff --git a/src/mc/entity/systems/DimensionStateSystem.h b/src/mc/entity/systems/DimensionStateSystem.h index 6e1178509f..712d8faa9d 100644 --- a/src/mc/entity/systems/DimensionStateSystem.h +++ b/src/mc/entity/systems/DimensionStateSystem.h @@ -12,12 +12,6 @@ class EntityContext; // clang-format on class DimensionStateSystem : public ::ISystem { -public: - // prevent constructor by default - DimensionStateSystem& operator=(DimensionStateSystem const&); - DimensionStateSystem(DimensionStateSystem const&); - DimensionStateSystem(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/entity/systems/DimensionTransitionSystem.h b/src/mc/entity/systems/DimensionTransitionSystem.h index 36c7731bc9..e6d9f7e1d9 100644 --- a/src/mc/entity/systems/DimensionTransitionSystem.h +++ b/src/mc/entity/systems/DimensionTransitionSystem.h @@ -27,12 +27,6 @@ struct VehicleComponent; // clang-format on class DimensionTransitionSystem { -public: - // prevent constructor by default - DimensionTransitionSystem& operator=(DimensionTransitionSystem const&); - DimensionTransitionSystem(DimensionTransitionSystem const&); - DimensionTransitionSystem(); - public: // static functions // NOLINTBEGIN diff --git a/src/mc/entity/systems/DispatcherUpdateSystem.h b/src/mc/entity/systems/DispatcherUpdateSystem.h index 3ad8b48e92..7357168214 100644 --- a/src/mc/entity/systems/DispatcherUpdateSystem.h +++ b/src/mc/entity/systems/DispatcherUpdateSystem.h @@ -11,12 +11,6 @@ class EntityRegistry; // clang-format on struct DispatcherUpdateSystem : public ::ITickingSystem { -public: - // prevent constructor by default - DispatcherUpdateSystem& operator=(DispatcherUpdateSystem const&); - DispatcherUpdateSystem(DispatcherUpdateSystem const&); - DispatcherUpdateSystem(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/entity/systems/DolphinBoostSystem.h b/src/mc/entity/systems/DolphinBoostSystem.h index 2dfc8d11c7..a23ff396f9 100644 --- a/src/mc/entity/systems/DolphinBoostSystem.h +++ b/src/mc/entity/systems/DolphinBoostSystem.h @@ -18,12 +18,6 @@ struct TickingSystemWithInfo; // clang-format on struct DolphinBoostSystem { -public: - // prevent constructor by default - DolphinBoostSystem& operator=(DolphinBoostSystem const&); - DolphinBoostSystem(DolphinBoostSystem const&); - DolphinBoostSystem(); - public: // static functions // NOLINTBEGIN diff --git a/src/mc/entity/systems/DryingOutTimerSystem.h b/src/mc/entity/systems/DryingOutTimerSystem.h index 3c5dc1d663..a91e312cca 100644 --- a/src/mc/entity/systems/DryingOutTimerSystem.h +++ b/src/mc/entity/systems/DryingOutTimerSystem.h @@ -11,12 +11,6 @@ class EntityRegistry; // clang-format on class DryingOutTimerSystem : public ::ITickingSystem { -public: - // prevent constructor by default - DryingOutTimerSystem& operator=(DryingOutTimerSystem const&); - DryingOutTimerSystem(DryingOutTimerSystem const&); - DryingOutTimerSystem(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/entity/systems/DwellerSystem.h b/src/mc/entity/systems/DwellerSystem.h index f8ce5d093f..871a76135a 100644 --- a/src/mc/entity/systems/DwellerSystem.h +++ b/src/mc/entity/systems/DwellerSystem.h @@ -11,12 +11,6 @@ class EntityRegistry; // clang-format on class DwellerSystem : public ::ITickingSystem { -public: - // prevent constructor by default - DwellerSystem& operator=(DwellerSystem const&); - DwellerSystem(DwellerSystem const&); - DwellerSystem(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/entity/systems/EditorTickFilterSystem.h b/src/mc/entity/systems/EditorTickFilterSystem.h index 9490a8b9c7..11bdd750ac 100644 --- a/src/mc/entity/systems/EditorTickFilterSystem.h +++ b/src/mc/entity/systems/EditorTickFilterSystem.h @@ -17,12 +17,6 @@ struct TickingSystemWithInfo; // clang-format on struct EditorTickFilterSystem { -public: - // prevent constructor by default - EditorTickFilterSystem& operator=(EditorTickFilterSystem const&); - EditorTickFilterSystem(EditorTickFilterSystem const&); - EditorTickFilterSystem(); - public: // static functions // NOLINTBEGIN diff --git a/src/mc/entity/systems/EnderManPreAIStepSystem.h b/src/mc/entity/systems/EnderManPreAIStepSystem.h index 24b06e918f..47d6a6020d 100644 --- a/src/mc/entity/systems/EnderManPreAIStepSystem.h +++ b/src/mc/entity/systems/EnderManPreAIStepSystem.h @@ -8,12 +8,6 @@ struct TickingSystemWithInfo; // clang-format on struct EnderManPreAIStepSystem { -public: - // prevent constructor by default - EnderManPreAIStepSystem& operator=(EnderManPreAIStepSystem const&); - EnderManPreAIStepSystem(EnderManPreAIStepSystem const&); - EnderManPreAIStepSystem(); - public: // static functions // NOLINTBEGIN diff --git a/src/mc/entity/systems/EntitySensorSystem.h b/src/mc/entity/systems/EntitySensorSystem.h index 0517c02631..36dda27984 100644 --- a/src/mc/entity/systems/EntitySensorSystem.h +++ b/src/mc/entity/systems/EntitySensorSystem.h @@ -18,12 +18,6 @@ struct TickingSystemWithInfo; // clang-format on class EntitySensorSystem { -public: - // prevent constructor by default - EntitySensorSystem& operator=(EntitySensorSystem const&); - EntitySensorSystem(EntitySensorSystem const&); - EntitySensorSystem(); - public: // static functions // NOLINTBEGIN diff --git a/src/mc/entity/systems/EntityStorageKeySystem.h b/src/mc/entity/systems/EntityStorageKeySystem.h index 57260d6502..39a9053a7b 100644 --- a/src/mc/entity/systems/EntityStorageKeySystem.h +++ b/src/mc/entity/systems/EntityStorageKeySystem.h @@ -11,12 +11,6 @@ class EntityContext; // clang-format on class EntityStorageKeySystem : public ::ISystem { -public: - // prevent constructor by default - EntityStorageKeySystem& operator=(EntityStorageKeySystem const&); - EntityStorageKeySystem(EntityStorageKeySystem const&); - EntityStorageKeySystem(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/entity/systems/EntitySystems.h b/src/mc/entity/systems/EntitySystems.h index 7dea06fc6c..6dab7b3576 100644 --- a/src/mc/entity/systems/EntitySystems.h +++ b/src/mc/entity/systems/EntitySystems.h @@ -35,48 +35,18 @@ class EntitySystems : public ::IEntitySystems, public ::Bedrock::EnableNonOwnerR // clang-format on // EntitySystems inner types define - struct UsedInServerPlayerMovement { - public: - // prevent constructor by default - UsedInServerPlayerMovement& operator=(UsedInServerPlayerMovement const&); - UsedInServerPlayerMovement(UsedInServerPlayerMovement const&); - UsedInServerPlayerMovement(); - }; - - struct UsedInClientMovementCorrections { - public: - // prevent constructor by default - UsedInClientMovementCorrections& operator=(UsedInClientMovementCorrections const&); - UsedInClientMovementCorrections(UsedInClientMovementCorrections const&); - UsedInClientMovementCorrections(); - }; + struct UsedInServerPlayerMovement {}; + + struct UsedInClientMovementCorrections {}; using MovementSystemCategory = ::entt:: type_list<::EntitySystems::UsedInServerPlayerMovement, ::EntitySystems::UsedInClientMovementCorrections>; - struct GameSystemCategory { - public: - // prevent constructor by default - GameSystemCategory& operator=(GameSystemCategory const&); - GameSystemCategory(GameSystemCategory const&); - GameSystemCategory(); - }; - - struct EditorSystemCategory { - public: - // prevent constructor by default - EditorSystemCategory& operator=(EditorSystemCategory const&); - EditorSystemCategory(EditorSystemCategory const&); - EditorSystemCategory(); - }; - - struct RuntimeInitialize { - public: - // prevent constructor by default - RuntimeInitialize& operator=(RuntimeInitialize const&); - RuntimeInitialize(RuntimeInitialize const&); - RuntimeInitialize(); - }; + struct GameSystemCategory {}; + + struct EditorSystemCategory {}; + + struct RuntimeInitialize {}; public: // member variables diff --git a/src/mc/entity/systems/EnvironmentSensorSystem.h b/src/mc/entity/systems/EnvironmentSensorSystem.h index a93a841984..ab8806891e 100644 --- a/src/mc/entity/systems/EnvironmentSensorSystem.h +++ b/src/mc/entity/systems/EnvironmentSensorSystem.h @@ -11,12 +11,6 @@ class EntityRegistry; // clang-format on class EnvironmentSensorSystem : public ::ITickingSystem { -public: - // prevent constructor by default - EnvironmentSensorSystem& operator=(EnvironmentSensorSystem const&); - EnvironmentSensorSystem(EnvironmentSensorSystem const&); - EnvironmentSensorSystem(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/entity/systems/EventingRequestSystem.h b/src/mc/entity/systems/EventingRequestSystem.h index ef8cd2ca9c..0a1afff9f9 100644 --- a/src/mc/entity/systems/EventingRequestSystem.h +++ b/src/mc/entity/systems/EventingRequestSystem.h @@ -14,12 +14,6 @@ struct TickingSystemWithInfo; // clang-format on class EventingRequestSystem { -public: - // prevent constructor by default - EventingRequestSystem& operator=(EventingRequestSystem const&); - EventingRequestSystem(EventingRequestSystem const&); - EventingRequestSystem(); - public: // static functions // NOLINTBEGIN diff --git a/src/mc/entity/systems/ExplodeSystem.h b/src/mc/entity/systems/ExplodeSystem.h index 67aec320fa..a95605283b 100644 --- a/src/mc/entity/systems/ExplodeSystem.h +++ b/src/mc/entity/systems/ExplodeSystem.h @@ -11,12 +11,6 @@ class EntityRegistry; // clang-format on class ExplodeSystem : public ::ITickingSystem { -public: - // prevent constructor by default - ExplodeSystem& operator=(ExplodeSystem const&); - ExplodeSystem(ExplodeSystem const&); - ExplodeSystem(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/entity/systems/EyeOfEnderPreNormalTickSystem.h b/src/mc/entity/systems/EyeOfEnderPreNormalTickSystem.h index e71b3fad97..5ffcec7491 100644 --- a/src/mc/entity/systems/EyeOfEnderPreNormalTickSystem.h +++ b/src/mc/entity/systems/EyeOfEnderPreNormalTickSystem.h @@ -16,12 +16,6 @@ struct TickingSystemWithInfo; // clang-format on class EyeOfEnderPreNormalTickSystem { -public: - // prevent constructor by default - EyeOfEnderPreNormalTickSystem& operator=(EyeOfEnderPreNormalTickSystem const&); - EyeOfEnderPreNormalTickSystem(EyeOfEnderPreNormalTickSystem const&); - EyeOfEnderPreNormalTickSystem(); - public: // static functions // NOLINTBEGIN diff --git a/src/mc/entity/systems/FallingBlockNormalTickSystem.h b/src/mc/entity/systems/FallingBlockNormalTickSystem.h index 7864996a26..78842a9bfe 100644 --- a/src/mc/entity/systems/FallingBlockNormalTickSystem.h +++ b/src/mc/entity/systems/FallingBlockNormalTickSystem.h @@ -17,12 +17,6 @@ struct TickingSystemWithInfo; // clang-format on class FallingBlockNormalTickSystem { -public: - // prevent constructor by default - FallingBlockNormalTickSystem& operator=(FallingBlockNormalTickSystem const&); - FallingBlockNormalTickSystem(FallingBlockNormalTickSystem const&); - FallingBlockNormalTickSystem(); - public: // static functions // NOLINTBEGIN diff --git a/src/mc/entity/systems/FinalizeMoveSystem.h b/src/mc/entity/systems/FinalizeMoveSystem.h index 8d34a07dee..37ee85e1f6 100644 --- a/src/mc/entity/systems/FinalizeMoveSystem.h +++ b/src/mc/entity/systems/FinalizeMoveSystem.h @@ -24,12 +24,6 @@ struct VerticalCollisionFlagComponent; // clang-format on struct FinalizeMoveSystem { -public: - // prevent constructor by default - FinalizeMoveSystem& operator=(FinalizeMoveSystem const&); - FinalizeMoveSystem(FinalizeMoveSystem const&); - FinalizeMoveSystem(); - public: // static functions // NOLINTBEGIN diff --git a/src/mc/entity/systems/FireAnimationTrackerSystem.h b/src/mc/entity/systems/FireAnimationTrackerSystem.h index 3050389c83..106ab7ec7a 100644 --- a/src/mc/entity/systems/FireAnimationTrackerSystem.h +++ b/src/mc/entity/systems/FireAnimationTrackerSystem.h @@ -11,12 +11,6 @@ class EntityRegistry; // clang-format on class FireAnimationTrackerSystem : public ::ITickingSystem { -public: - // prevent constructor by default - FireAnimationTrackerSystem& operator=(FireAnimationTrackerSystem const&); - FireAnimationTrackerSystem(FireAnimationTrackerSystem const&); - FireAnimationTrackerSystem(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/entity/systems/FireEventsWrapper.h b/src/mc/entity/systems/FireEventsWrapper.h index 18cebec459..af2ce458e7 100644 --- a/src/mc/entity/systems/FireEventsWrapper.h +++ b/src/mc/entity/systems/FireEventsWrapper.h @@ -2,10 +2,4 @@ #include "mc/_HeaderOutputPredefine.h" -struct FireEventsWrapper { -public: - // prevent constructor by default - FireEventsWrapper& operator=(FireEventsWrapper const&); - FireEventsWrapper(FireEventsWrapper const&); - FireEventsWrapper(); -}; +struct FireEventsWrapper {}; diff --git a/src/mc/entity/systems/FlagAllPassengersForPositioningSystem.h b/src/mc/entity/systems/FlagAllPassengersForPositioningSystem.h index 807ae9308e..d8c89cd0a9 100644 --- a/src/mc/entity/systems/FlagAllPassengersForPositioningSystem.h +++ b/src/mc/entity/systems/FlagAllPassengersForPositioningSystem.h @@ -8,12 +8,6 @@ struct TickingSystemWithInfo; // clang-format on struct FlagAllPassengersForPositioningSystem { -public: - // prevent constructor by default - FlagAllPassengersForPositioningSystem& operator=(FlagAllPassengersForPositioningSystem const&); - FlagAllPassengersForPositioningSystem(FlagAllPassengersForPositioningSystem const&); - FlagAllPassengersForPositioningSystem(); - public: // static functions // NOLINTBEGIN diff --git a/src/mc/entity/systems/FlagPassengerRemovalSystem.h b/src/mc/entity/systems/FlagPassengerRemovalSystem.h index 25eba21f68..1de0684d49 100644 --- a/src/mc/entity/systems/FlagPassengerRemovalSystem.h +++ b/src/mc/entity/systems/FlagPassengerRemovalSystem.h @@ -8,12 +8,6 @@ struct TickingSystemWithInfo; // clang-format on struct FlagPassengerRemovalSystem { -public: - // prevent constructor by default - FlagPassengerRemovalSystem& operator=(FlagPassengerRemovalSystem const&); - FlagPassengerRemovalSystem(FlagPassengerRemovalSystem const&); - FlagPassengerRemovalSystem(); - public: // static functions // NOLINTBEGIN diff --git a/src/mc/entity/systems/FlagRemotePlayersForTickingSystem.h b/src/mc/entity/systems/FlagRemotePlayersForTickingSystem.h index 1a74b4b8c2..b4f74ffd58 100644 --- a/src/mc/entity/systems/FlagRemotePlayersForTickingSystem.h +++ b/src/mc/entity/systems/FlagRemotePlayersForTickingSystem.h @@ -2,10 +2,4 @@ #include "mc/_HeaderOutputPredefine.h" -struct FlagRemotePlayersForTickingSystem { -public: - // prevent constructor by default - FlagRemotePlayersForTickingSystem& operator=(FlagRemotePlayersForTickingSystem const&); - FlagRemotePlayersForTickingSystem(FlagRemotePlayersForTickingSystem const&); - FlagRemotePlayersForTickingSystem(); -}; +struct FlagRemotePlayersForTickingSystem {}; diff --git a/src/mc/entity/systems/FlockingSystem.h b/src/mc/entity/systems/FlockingSystem.h index e9a8abe09d..12929026cc 100644 --- a/src/mc/entity/systems/FlockingSystem.h +++ b/src/mc/entity/systems/FlockingSystem.h @@ -11,12 +11,6 @@ class EntityRegistry; // clang-format on class FlockingSystem : public ::ITickingSystem { -public: - // prevent constructor by default - FlockingSystem& operator=(FlockingSystem const&); - FlockingSystem(FlockingSystem const&); - FlockingSystem(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/entity/systems/FoodExhaustionSystemImpl.h b/src/mc/entity/systems/FoodExhaustionSystemImpl.h index ad50d4822d..27d8873249 100644 --- a/src/mc/entity/systems/FoodExhaustionSystemImpl.h +++ b/src/mc/entity/systems/FoodExhaustionSystemImpl.h @@ -79,12 +79,6 @@ struct FoodExhaustionSystemImpl : public ::IStrictTickingSystem<::StrictExecutio ::GlobalRead<::LocalConstBlockSourceFactoryComponent, ::ExternalDataComponent>, ::GlobalWrite<>, ::EntityFactoryT<>>> { -public: - // prevent constructor by default - FoodExhaustionSystemImpl& operator=(FoodExhaustionSystemImpl const&); - FoodExhaustionSystemImpl(FoodExhaustionSystemImpl const&); - FoodExhaustionSystemImpl(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/entity/systems/FramewiseActionOrStopSystem.h b/src/mc/entity/systems/FramewiseActionOrStopSystem.h index a78ef697e2..072fc23c63 100644 --- a/src/mc/entity/systems/FramewiseActionOrStopSystem.h +++ b/src/mc/entity/systems/FramewiseActionOrStopSystem.h @@ -10,12 +10,6 @@ struct TickingSystemWithInfo; // clang-format on class FramewiseActionOrStopSystem { -public: - // prevent constructor by default - FramewiseActionOrStopSystem& operator=(FramewiseActionOrStopSystem const&); - FramewiseActionOrStopSystem(FramewiseActionOrStopSystem const&); - FramewiseActionOrStopSystem(); - public: // static functions // NOLINTBEGIN diff --git a/src/mc/entity/systems/FreezingSystem.h b/src/mc/entity/systems/FreezingSystem.h index 736c60ab83..cbe31cf003 100644 --- a/src/mc/entity/systems/FreezingSystem.h +++ b/src/mc/entity/systems/FreezingSystem.h @@ -12,12 +12,6 @@ namespace mce { class UUID; } // clang-format on class FreezingSystem : public ::ITickingSystem { -public: - // prevent constructor by default - FreezingSystem& operator=(FreezingSystem const&); - FreezingSystem(FreezingSystem const&); - FreezingSystem(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/entity/systems/GameEventMovementTrackingSystem.h b/src/mc/entity/systems/GameEventMovementTrackingSystem.h index 5eead1d3c8..5c0ede9f66 100644 --- a/src/mc/entity/systems/GameEventMovementTrackingSystem.h +++ b/src/mc/entity/systems/GameEventMovementTrackingSystem.h @@ -16,12 +16,6 @@ struct RailMovementComponent; // clang-format on class GameEventMovementTrackingSystem : public ::ITickingSystem { -public: - // prevent constructor by default - GameEventMovementTrackingSystem& operator=(GameEventMovementTrackingSystem const&); - GameEventMovementTrackingSystem(GameEventMovementTrackingSystem const&); - GameEventMovementTrackingSystem(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/entity/systems/GlideInputSystem.h b/src/mc/entity/systems/GlideInputSystem.h index 111b3662dd..9f190c1636 100644 --- a/src/mc/entity/systems/GlideInputSystem.h +++ b/src/mc/entity/systems/GlideInputSystem.h @@ -20,12 +20,6 @@ struct TickingSystemWithInfo; // clang-format on class GlideInputSystem { -public: - // prevent constructor by default - GlideInputSystem& operator=(GlideInputSystem const&); - GlideInputSystem(GlideInputSystem const&); - GlideInputSystem(); - public: // static functions // NOLINTBEGIN diff --git a/src/mc/entity/systems/GlobalActorLegacyTickSystem.h b/src/mc/entity/systems/GlobalActorLegacyTickSystem.h index 4ec01d1bc8..3b99e0e47c 100644 --- a/src/mc/entity/systems/GlobalActorLegacyTickSystem.h +++ b/src/mc/entity/systems/GlobalActorLegacyTickSystem.h @@ -11,12 +11,6 @@ class EntityRegistry; // clang-format on class GlobalActorLegacyTickSystem : public ::ITickingSystem { -public: - // prevent constructor by default - GlobalActorLegacyTickSystem& operator=(GlobalActorLegacyTickSystem const&); - GlobalActorLegacyTickSystem(GlobalActorLegacyTickSystem const&); - GlobalActorLegacyTickSystem(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/entity/systems/GlobalTextureGroupStateSystem.h b/src/mc/entity/systems/GlobalTextureGroupStateSystem.h index af4d1ac0d8..b7a06a0c3b 100644 --- a/src/mc/entity/systems/GlobalTextureGroupStateSystem.h +++ b/src/mc/entity/systems/GlobalTextureGroupStateSystem.h @@ -6,12 +6,6 @@ #include "mc/deps/ecs/systems/ISystem.h" class GlobalTextureGroupStateSystem : public ::ISystem { -public: - // prevent constructor by default - GlobalTextureGroupStateSystem& operator=(GlobalTextureGroupStateSystem const&); - GlobalTextureGroupStateSystem(GlobalTextureGroupStateSystem const&); - GlobalTextureGroupStateSystem(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/entity/systems/GoalSelectorSystem.h b/src/mc/entity/systems/GoalSelectorSystem.h index 850c824763..e7f2953023 100644 --- a/src/mc/entity/systems/GoalSelectorSystem.h +++ b/src/mc/entity/systems/GoalSelectorSystem.h @@ -12,12 +12,6 @@ class EntityRegistry; // clang-format on class GoalSelectorSystem : public ::ITickingSystem { -public: - // prevent constructor by default - GoalSelectorSystem& operator=(GoalSelectorSystem const&); - GoalSelectorSystem(GoalSelectorSystem const&); - GoalSelectorSystem(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/entity/systems/GroundTravelTypeSystem.h b/src/mc/entity/systems/GroundTravelTypeSystem.h index 9b82e283f2..b2f5cdf9ac 100644 --- a/src/mc/entity/systems/GroundTravelTypeSystem.h +++ b/src/mc/entity/systems/GroundTravelTypeSystem.h @@ -12,12 +12,6 @@ struct TickingSystemWithInfo; // clang-format on struct GroundTravelTypeSystem { -public: - // prevent constructor by default - GroundTravelTypeSystem& operator=(GroundTravelTypeSystem const&); - GroundTravelTypeSystem(GroundTravelTypeSystem const&); - GroundTravelTypeSystem(); - public: // static functions // NOLINTBEGIN diff --git a/src/mc/entity/systems/GroupSizeSystem.h b/src/mc/entity/systems/GroupSizeSystem.h index f41a5108a5..5fdba03448 100644 --- a/src/mc/entity/systems/GroupSizeSystem.h +++ b/src/mc/entity/systems/GroupSizeSystem.h @@ -13,12 +13,6 @@ struct GroupSizeComponent; // clang-format on class GroupSizeSystem : public ::ITickingSystem { -public: - // prevent constructor by default - GroupSizeSystem& operator=(GroupSizeSystem const&); - GroupSizeSystem(GroupSizeSystem const&); - GroupSizeSystem(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/entity/systems/GrowCropSystem.h b/src/mc/entity/systems/GrowCropSystem.h index 1879a3d54c..e62f886d88 100644 --- a/src/mc/entity/systems/GrowCropSystem.h +++ b/src/mc/entity/systems/GrowCropSystem.h @@ -11,12 +11,6 @@ class EntityRegistry; // clang-format on class GrowCropSystem : public ::ITickingSystem { -public: - // prevent constructor by default - GrowCropSystem& operator=(GrowCropSystem const&); - GrowCropSystem(GrowCropSystem const&); - GrowCropSystem(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/entity/systems/GuardianPreAIStepSystem.h b/src/mc/entity/systems/GuardianPreAIStepSystem.h index 7512cc72c0..06b8b2920f 100644 --- a/src/mc/entity/systems/GuardianPreAIStepSystem.h +++ b/src/mc/entity/systems/GuardianPreAIStepSystem.h @@ -16,12 +16,6 @@ struct TickingSystemWithInfo; // clang-format on class GuardianPreAIStepSystem { -public: - // prevent constructor by default - GuardianPreAIStepSystem& operator=(GuardianPreAIStepSystem const&); - GuardianPreAIStepSystem(GuardianPreAIStepSystem const&); - GuardianPreAIStepSystem(); - public: // static functions // NOLINTBEGIN diff --git a/src/mc/entity/systems/HangingActorMoveSystem.h b/src/mc/entity/systems/HangingActorMoveSystem.h index 7554088c12..2d47d6339c 100644 --- a/src/mc/entity/systems/HangingActorMoveSystem.h +++ b/src/mc/entity/systems/HangingActorMoveSystem.h @@ -8,12 +8,6 @@ struct TickingSystemWithInfo; // clang-format on class HangingActorMoveSystem { -public: - // prevent constructor by default - HangingActorMoveSystem& operator=(HangingActorMoveSystem const&); - HangingActorMoveSystem(HangingActorMoveSystem const&); - HangingActorMoveSystem(); - public: // static functions // NOLINTBEGIN diff --git a/src/mc/entity/systems/HeartbeatClientSystem.h b/src/mc/entity/systems/HeartbeatClientSystem.h index 0e81603c1d..4ecbf621f8 100644 --- a/src/mc/entity/systems/HeartbeatClientSystem.h +++ b/src/mc/entity/systems/HeartbeatClientSystem.h @@ -11,12 +11,6 @@ class EntityRegistry; // clang-format on class HeartbeatClientSystem : public ::ITickingSystem { -public: - // prevent constructor by default - HeartbeatClientSystem& operator=(HeartbeatClientSystem const&); - HeartbeatClientSystem(HeartbeatClientSystem const&); - HeartbeatClientSystem(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/entity/systems/HeartbeatServerSystem.h b/src/mc/entity/systems/HeartbeatServerSystem.h index af650c74b6..3494fc9bd6 100644 --- a/src/mc/entity/systems/HeartbeatServerSystem.h +++ b/src/mc/entity/systems/HeartbeatServerSystem.h @@ -11,12 +11,6 @@ class EntityRegistry; // clang-format on class HeartbeatServerSystem : public ::ITickingSystem { -public: - // prevent constructor by default - HeartbeatServerSystem& operator=(HeartbeatServerSystem const&); - HeartbeatServerSystem(HeartbeatServerSystem const&); - HeartbeatServerSystem(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/entity/systems/HitResultSystem.h b/src/mc/entity/systems/HitResultSystem.h index 595fb7cb86..7911143072 100644 --- a/src/mc/entity/systems/HitResultSystem.h +++ b/src/mc/entity/systems/HitResultSystem.h @@ -11,12 +11,6 @@ class EntityRegistry; // clang-format on struct HitResultSystem : public ::ITickingSystem { -public: - // prevent constructor by default - HitResultSystem& operator=(HitResultSystem const&); - HitResultSystem(HitResultSystem const&); - HitResultSystem(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/entity/systems/HoldBlockSystem.h b/src/mc/entity/systems/HoldBlockSystem.h index 231b459721..d7810caa16 100644 --- a/src/mc/entity/systems/HoldBlockSystem.h +++ b/src/mc/entity/systems/HoldBlockSystem.h @@ -12,12 +12,6 @@ struct ActorDieEvent; // clang-format on class HoldBlockSystem : public ::ITickingSystem { -public: - // prevent constructor by default - HoldBlockSystem& operator=(HoldBlockSystem const&); - HoldBlockSystem(HoldBlockSystem const&); - HoldBlockSystem(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/entity/systems/HomeSystem.h b/src/mc/entity/systems/HomeSystem.h index 1ebb3a4e79..c6fb1a8160 100644 --- a/src/mc/entity/systems/HomeSystem.h +++ b/src/mc/entity/systems/HomeSystem.h @@ -13,12 +13,6 @@ class HomeComponent; // clang-format on class HomeSystem : public ::ITickingSystem { -public: - // prevent constructor by default - HomeSystem& operator=(HomeSystem const&); - HomeSystem(HomeSystem const&); - HomeSystem(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/entity/systems/HopperSystem.h b/src/mc/entity/systems/HopperSystem.h index 6e0a7c9c1d..b165459e13 100644 --- a/src/mc/entity/systems/HopperSystem.h +++ b/src/mc/entity/systems/HopperSystem.h @@ -11,12 +11,6 @@ class EntityRegistry; // clang-format on class HopperSystem : public ::ITickingSystem { -public: - // prevent constructor by default - HopperSystem& operator=(HopperSystem const&); - HopperSystem(HopperSystem const&); - HopperSystem(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/entity/systems/HorsePreTravelSystem.h b/src/mc/entity/systems/HorsePreTravelSystem.h index ba68df4bb8..5f8134c020 100644 --- a/src/mc/entity/systems/HorsePreTravelSystem.h +++ b/src/mc/entity/systems/HorsePreTravelSystem.h @@ -23,12 +23,6 @@ struct VehicleComponent; // clang-format on class HorsePreTravelSystem { -public: - // prevent constructor by default - HorsePreTravelSystem& operator=(HorsePreTravelSystem const&); - HorsePreTravelSystem(HorsePreTravelSystem const&); - HorsePreTravelSystem(); - public: // static functions // NOLINTBEGIN diff --git a/src/mc/entity/systems/HurtOnConditionSystem.h b/src/mc/entity/systems/HurtOnConditionSystem.h index 3ec7f305ed..8d90a4bf3e 100644 --- a/src/mc/entity/systems/HurtOnConditionSystem.h +++ b/src/mc/entity/systems/HurtOnConditionSystem.h @@ -11,12 +11,6 @@ class EntityRegistry; // clang-format on class HurtOnConditionSystem : public ::ITickingSystem { -public: - // prevent constructor by default - HurtOnConditionSystem& operator=(HurtOnConditionSystem const&); - HurtOnConditionSystem(HurtOnConditionSystem const&); - HurtOnConditionSystem(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/entity/systems/IEntitySystems.h b/src/mc/entity/systems/IEntitySystems.h index c623ffa462..765dffa520 100644 --- a/src/mc/entity/systems/IEntitySystems.h +++ b/src/mc/entity/systems/IEntitySystems.h @@ -15,12 +15,6 @@ struct SystemInfo; // clang-format on class IEntitySystems { -public: - // prevent constructor by default - IEntitySystems& operator=(IEntitySystems const&); - IEntitySystems(IEntitySystems const&); - IEntitySystems(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/entity/systems/IllagerBeastPostAIStepSystem.h b/src/mc/entity/systems/IllagerBeastPostAIStepSystem.h index b9ead6f8dc..19d03a7985 100644 --- a/src/mc/entity/systems/IllagerBeastPostAIStepSystem.h +++ b/src/mc/entity/systems/IllagerBeastPostAIStepSystem.h @@ -17,12 +17,6 @@ struct TickingSystemWithInfo; // clang-format on class IllagerBeastPostAIStepSystem { -public: - // prevent constructor by default - IllagerBeastPostAIStepSystem& operator=(IllagerBeastPostAIStepSystem const&); - IllagerBeastPostAIStepSystem(IllagerBeastPostAIStepSystem const&); - IllagerBeastPostAIStepSystem(); - public: // static functions // NOLINTBEGIN diff --git a/src/mc/entity/systems/ImitateMobSoundsSystem.h b/src/mc/entity/systems/ImitateMobSoundsSystem.h index b72619d8ed..92899abd4b 100644 --- a/src/mc/entity/systems/ImitateMobSoundsSystem.h +++ b/src/mc/entity/systems/ImitateMobSoundsSystem.h @@ -11,12 +11,6 @@ class EntityRegistry; // clang-format on class ImitateMobSoundsSystem : public ::ITickingSystem { -public: - // prevent constructor by default - ImitateMobSoundsSystem& operator=(ImitateMobSoundsSystem const&); - ImitateMobSoundsSystem(ImitateMobSoundsSystem const&); - ImitateMobSoundsSystem(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/entity/systems/ImmobileSystem.h b/src/mc/entity/systems/ImmobileSystem.h index 9d9c16021b..e94186d660 100644 --- a/src/mc/entity/systems/ImmobileSystem.h +++ b/src/mc/entity/systems/ImmobileSystem.h @@ -16,12 +16,6 @@ struct TickingSystemWithInfo; // clang-format on class ImmobileSystem { -public: - // prevent constructor by default - ImmobileSystem& operator=(ImmobileSystem const&); - ImmobileSystem(ImmobileSystem const&); - ImmobileSystem(); - public: // static functions // NOLINTBEGIN diff --git a/src/mc/entity/systems/InLavaSensingSystem.h b/src/mc/entity/systems/InLavaSensingSystem.h index f09d072cf3..b08b3806b2 100644 --- a/src/mc/entity/systems/InLavaSensingSystem.h +++ b/src/mc/entity/systems/InLavaSensingSystem.h @@ -15,12 +15,6 @@ struct WasInLavaFlagComponent; // clang-format on struct InLavaSensingSystem { -public: - // prevent constructor by default - InLavaSensingSystem& operator=(InLavaSensingSystem const&); - InLavaSensingSystem(InLavaSensingSystem const&); - InLavaSensingSystem(); - public: // static functions // NOLINTBEGIN diff --git a/src/mc/entity/systems/InWaterSensingSystem.h b/src/mc/entity/systems/InWaterSensingSystem.h index cd2c6e5ef9..8c9a010c98 100644 --- a/src/mc/entity/systems/InWaterSensingSystem.h +++ b/src/mc/entity/systems/InWaterSensingSystem.h @@ -23,12 +23,6 @@ struct WaterSplashEffectRequestComponent; // clang-format on struct InWaterSensingSystem { -public: - // prevent constructor by default - InWaterSensingSystem& operator=(InWaterSensingSystem const&); - InWaterSensingSystem(InWaterSensingSystem const&); - InWaterSensingSystem(); - public: // static functions // NOLINTBEGIN diff --git a/src/mc/entity/systems/InsideBlockNotifierSystem.h b/src/mc/entity/systems/InsideBlockNotifierSystem.h index a3502feba1..ea46efdcc4 100644 --- a/src/mc/entity/systems/InsideBlockNotifierSystem.h +++ b/src/mc/entity/systems/InsideBlockNotifierSystem.h @@ -11,12 +11,6 @@ class EntityRegistry; // clang-format on class InsideBlockNotifierSystem : public ::ITickingSystem { -public: - // prevent constructor by default - InsideBlockNotifierSystem& operator=(InsideBlockNotifierSystem const&); - InsideBlockNotifierSystem(InsideBlockNotifierSystem const&); - InsideBlockNotifierSystem(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/entity/systems/InsideBubbleColumnSystem.h b/src/mc/entity/systems/InsideBubbleColumnSystem.h index b8212d5c49..c2b887b117 100644 --- a/src/mc/entity/systems/InsideBubbleColumnSystem.h +++ b/src/mc/entity/systems/InsideBubbleColumnSystem.h @@ -15,19 +15,7 @@ struct InsideBubbleColumnSystem { // clang-format on // InsideBubbleColumnSystem inner types define - struct SpawnBubblesVisitor { - public: - // prevent constructor by default - SpawnBubblesVisitor& operator=(SpawnBubblesVisitor const&); - SpawnBubblesVisitor(SpawnBubblesVisitor const&); - SpawnBubblesVisitor(); - }; - -public: - // prevent constructor by default - InsideBubbleColumnSystem& operator=(InsideBubbleColumnSystem const&); - InsideBubbleColumnSystem(InsideBubbleColumnSystem const&); - InsideBubbleColumnSystem(); + struct SpawnBubblesVisitor {}; public: // static functions diff --git a/src/mc/entity/systems/InsideEndPortalBlockSystem.h b/src/mc/entity/systems/InsideEndPortalBlockSystem.h index effcf3f071..1a053a8e39 100644 --- a/src/mc/entity/systems/InsideEndPortalBlockSystem.h +++ b/src/mc/entity/systems/InsideEndPortalBlockSystem.h @@ -8,12 +8,6 @@ struct TickingSystemWithInfo; // clang-format on struct InsideEndPortalBlockSystem { -public: - // prevent constructor by default - InsideEndPortalBlockSystem& operator=(InsideEndPortalBlockSystem const&); - InsideEndPortalBlockSystem(InsideEndPortalBlockSystem const&); - InsideEndPortalBlockSystem(); - public: // static functions // NOLINTBEGIN diff --git a/src/mc/entity/systems/InsideGenericBlockSystem.h b/src/mc/entity/systems/InsideGenericBlockSystem.h index 6abd8e2258..23f1d0eeaf 100644 --- a/src/mc/entity/systems/InsideGenericBlockSystem.h +++ b/src/mc/entity/systems/InsideGenericBlockSystem.h @@ -8,12 +8,6 @@ struct TickingSystemWithInfo; // clang-format on struct InsideGenericBlockSystem { -public: - // prevent constructor by default - InsideGenericBlockSystem& operator=(InsideGenericBlockSystem const&); - InsideGenericBlockSystem(InsideGenericBlockSystem const&); - InsideGenericBlockSystem(); - public: // static functions // NOLINTBEGIN diff --git a/src/mc/entity/systems/InsideHoneyBlockSystem.h b/src/mc/entity/systems/InsideHoneyBlockSystem.h index 0586458f59..9d041bee3c 100644 --- a/src/mc/entity/systems/InsideHoneyBlockSystem.h +++ b/src/mc/entity/systems/InsideHoneyBlockSystem.h @@ -8,12 +8,6 @@ struct TickingSystemWithInfo; // clang-format on struct InsideHoneyBlockSystem { -public: - // prevent constructor by default - InsideHoneyBlockSystem& operator=(InsideHoneyBlockSystem const&); - InsideHoneyBlockSystem(InsideHoneyBlockSystem const&); - InsideHoneyBlockSystem(); - public: // static functions // NOLINTBEGIN diff --git a/src/mc/entity/systems/InsideWaterlilyBlockSystem.h b/src/mc/entity/systems/InsideWaterlilyBlockSystem.h index 037bd2fb75..cda50faeba 100644 --- a/src/mc/entity/systems/InsideWaterlilyBlockSystem.h +++ b/src/mc/entity/systems/InsideWaterlilyBlockSystem.h @@ -8,12 +8,6 @@ struct TickingSystemWithInfo; // clang-format on struct InsideWaterlilyBlockSystem { -public: - // prevent constructor by default - InsideWaterlilyBlockSystem& operator=(InsideWaterlilyBlockSystem const&); - InsideWaterlilyBlockSystem(InsideWaterlilyBlockSystem const&); - InsideWaterlilyBlockSystem(); - public: // static functions // NOLINTBEGIN diff --git a/src/mc/entity/systems/InsomniaSystem.h b/src/mc/entity/systems/InsomniaSystem.h index c0e53710e5..89a30a602a 100644 --- a/src/mc/entity/systems/InsomniaSystem.h +++ b/src/mc/entity/systems/InsomniaSystem.h @@ -11,12 +11,6 @@ class EntityRegistry; // clang-format on class InsomniaSystem : public ::ITickingSystem { -public: - // prevent constructor by default - InsomniaSystem& operator=(InsomniaSystem const&); - InsomniaSystem(InsomniaSystem const&); - InsomniaSystem(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/entity/systems/InstantDespawnSystem.h b/src/mc/entity/systems/InstantDespawnSystem.h index 278151f722..cf02b2de47 100644 --- a/src/mc/entity/systems/InstantDespawnSystem.h +++ b/src/mc/entity/systems/InstantDespawnSystem.h @@ -14,12 +14,6 @@ struct TickingSystemWithInfo; // clang-format on class InstantDespawnSystem : public ::ITickingSystem { -public: - // prevent constructor by default - InstantDespawnSystem& operator=(InstantDespawnSystem const&); - InstantDespawnSystem(InstantDespawnSystem const&); - InstantDespawnSystem(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/entity/systems/InteractSystem.h b/src/mc/entity/systems/InteractSystem.h index 5c36438743..e94aca6c25 100644 --- a/src/mc/entity/systems/InteractSystem.h +++ b/src/mc/entity/systems/InteractSystem.h @@ -11,12 +11,6 @@ class EntityRegistry; // clang-format on class InteractSystem : public ::ITickingSystem { -public: - // prevent constructor by default - InteractSystem& operator=(InteractSystem const&); - InteractSystem(InteractSystem const&); - InteractSystem(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/entity/systems/JumpControlSystem.h b/src/mc/entity/systems/JumpControlSystem.h index 70c8b0764c..7035d30d91 100644 --- a/src/mc/entity/systems/JumpControlSystem.h +++ b/src/mc/entity/systems/JumpControlSystem.h @@ -11,12 +11,6 @@ class EntityRegistry; // clang-format on class JumpControlSystem : public ::ITickingSystem { -public: - // prevent constructor by default - JumpControlSystem& operator=(JumpControlSystem const&); - JumpControlSystem(JumpControlSystem const&); - JumpControlSystem(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/entity/systems/JumpEndSystem.h b/src/mc/entity/systems/JumpEndSystem.h index 4d6327f36f..e270f59eed 100644 --- a/src/mc/entity/systems/JumpEndSystem.h +++ b/src/mc/entity/systems/JumpEndSystem.h @@ -27,12 +27,6 @@ struct VehicleComponent; // clang-format on struct JumpEndSystem { -public: - // prevent constructor by default - JumpEndSystem& operator=(JumpEndSystem const&); - JumpEndSystem(JumpEndSystem const&); - JumpEndSystem(); - public: // static functions // NOLINTBEGIN diff --git a/src/mc/entity/systems/JumpInputSystem.h b/src/mc/entity/systems/JumpInputSystem.h index eb4dcd6c2b..aa638226aa 100644 --- a/src/mc/entity/systems/JumpInputSystem.h +++ b/src/mc/entity/systems/JumpInputSystem.h @@ -18,12 +18,6 @@ struct TickingSystemWithInfo; // clang-format on class JumpInputSystem { -public: - // prevent constructor by default - JumpInputSystem& operator=(JumpInputSystem const&); - JumpInputSystem(JumpInputSystem const&); - JumpInputSystem(); - public: // static functions // NOLINTBEGIN diff --git a/src/mc/entity/systems/LadderResetFallDamageSystem.h b/src/mc/entity/systems/LadderResetFallDamageSystem.h index 9d4c8c6ac3..5d02c18251 100644 --- a/src/mc/entity/systems/LadderResetFallDamageSystem.h +++ b/src/mc/entity/systems/LadderResetFallDamageSystem.h @@ -22,12 +22,6 @@ struct TickingSystemWithInfo; // clang-format on class LadderResetFallDamageSystem { -public: - // prevent constructor by default - LadderResetFallDamageSystem& operator=(LadderResetFallDamageSystem const&); - LadderResetFallDamageSystem(LadderResetFallDamageSystem const&); - LadderResetFallDamageSystem(); - public: // static functions // NOLINTBEGIN diff --git a/src/mc/entity/systems/LavaMoveSystem.h b/src/mc/entity/systems/LavaMoveSystem.h index 7b00fab50a..1d74064292 100644 --- a/src/mc/entity/systems/LavaMoveSystem.h +++ b/src/mc/entity/systems/LavaMoveSystem.h @@ -24,12 +24,6 @@ struct TickingSystemWithInfo; // clang-format on class LavaMoveSystem { -public: - // prevent constructor by default - LavaMoveSystem& operator=(LavaMoveSystem const&); - LavaMoveSystem(LavaMoveSystem const&); - LavaMoveSystem(); - public: // static functions // NOLINTBEGIN diff --git a/src/mc/entity/systems/LavaTravelSystem.h b/src/mc/entity/systems/LavaTravelSystem.h index 99827a9543..ab15f15fa5 100644 --- a/src/mc/entity/systems/LavaTravelSystem.h +++ b/src/mc/entity/systems/LavaTravelSystem.h @@ -8,12 +8,6 @@ struct TickingSystemWithInfo; // clang-format on class LavaTravelSystem { -public: - // prevent constructor by default - LavaTravelSystem& operator=(LavaTravelSystem const&); - LavaTravelSystem(LavaTravelSystem const&); - LavaTravelSystem(); - public: // static functions // NOLINTBEGIN diff --git a/src/mc/entity/systems/LeashableSystem.h b/src/mc/entity/systems/LeashableSystem.h index a5a1bd1a54..b759879db0 100644 --- a/src/mc/entity/systems/LeashableSystem.h +++ b/src/mc/entity/systems/LeashableSystem.h @@ -11,12 +11,6 @@ class EntityRegistry; // clang-format on class LeashableSystem : public ::ITickingSystem { -public: - // prevent constructor by default - LeashableSystem& operator=(LeashableSystem const&); - LeashableSystem(LeashableSystem const&); - LeashableSystem(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/entity/systems/LegacyRaidTriggerSystem.h b/src/mc/entity/systems/LegacyRaidTriggerSystem.h index a00c40fd75..3a8b4067bd 100644 --- a/src/mc/entity/systems/LegacyRaidTriggerSystem.h +++ b/src/mc/entity/systems/LegacyRaidTriggerSystem.h @@ -20,12 +20,6 @@ struct VillageManagerComponent; // clang-format on class LegacyRaidTriggerSystem { -public: - // prevent constructor by default - LegacyRaidTriggerSystem& operator=(LegacyRaidTriggerSystem const&); - LegacyRaidTriggerSystem(LegacyRaidTriggerSystem const&); - LegacyRaidTriggerSystem(); - public: // static functions // NOLINTBEGIN diff --git a/src/mc/entity/systems/LiquidPhysicsSystemImpl.h b/src/mc/entity/systems/LiquidPhysicsSystemImpl.h index f0b3dea930..232818f7de 100644 --- a/src/mc/entity/systems/LiquidPhysicsSystemImpl.h +++ b/src/mc/entity/systems/LiquidPhysicsSystemImpl.h @@ -14,12 +14,6 @@ struct StateVectorComponent; // clang-format on struct LiquidPhysicsSystemImpl { -public: - // prevent constructor by default - LiquidPhysicsSystemImpl& operator=(LiquidPhysicsSystemImpl const&); - LiquidPhysicsSystemImpl(LiquidPhysicsSystemImpl const&); - LiquidPhysicsSystemImpl(); - public: // static functions // NOLINTBEGIN diff --git a/src/mc/entity/systems/LiquidSplashSystem.h b/src/mc/entity/systems/LiquidSplashSystem.h index 38068ef75e..9340eb14e8 100644 --- a/src/mc/entity/systems/LiquidSplashSystem.h +++ b/src/mc/entity/systems/LiquidSplashSystem.h @@ -16,12 +16,6 @@ struct WaterSplashEffectRequestComponent; // clang-format on struct LiquidSplashSystem { -public: - // prevent constructor by default - LiquidSplashSystem& operator=(LiquidSplashSystem const&); - LiquidSplashSystem(LiquidSplashSystem const&); - LiquidSplashSystem(); - public: // static functions // NOLINTBEGIN diff --git a/src/mc/entity/systems/LocalPlayerUpdatePositionSystem.h b/src/mc/entity/systems/LocalPlayerUpdatePositionSystem.h index 1f2b9eb79f..4e0b583d1c 100644 --- a/src/mc/entity/systems/LocalPlayerUpdatePositionSystem.h +++ b/src/mc/entity/systems/LocalPlayerUpdatePositionSystem.h @@ -2,10 +2,4 @@ #include "mc/_HeaderOutputPredefine.h" -class LocalPlayerUpdatePositionSystem { -public: - // prevent constructor by default - LocalPlayerUpdatePositionSystem& operator=(LocalPlayerUpdatePositionSystem const&); - LocalPlayerUpdatePositionSystem(LocalPlayerUpdatePositionSystem const&); - LocalPlayerUpdatePositionSystem(); -}; +class LocalPlayerUpdatePositionSystem {}; diff --git a/src/mc/entity/systems/LookControlSystem.h b/src/mc/entity/systems/LookControlSystem.h index b45c7c3ea5..e26a0ccaea 100644 --- a/src/mc/entity/systems/LookControlSystem.h +++ b/src/mc/entity/systems/LookControlSystem.h @@ -11,12 +11,6 @@ class EntityRegistry; // clang-format on class LookControlSystem : public ::ITickingSystem { -public: - // prevent constructor by default - LookControlSystem& operator=(LookControlSystem const&); - LookControlSystem(LookControlSystem const&); - LookControlSystem(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/entity/systems/LootSystem.h b/src/mc/entity/systems/LootSystem.h index 57d907a810..0d25e4a7ce 100644 --- a/src/mc/entity/systems/LootSystem.h +++ b/src/mc/entity/systems/LootSystem.h @@ -11,12 +11,6 @@ class EntityRegistry; // clang-format on class LootSystem : public ::ITickingSystem { -public: - // prevent constructor by default - LootSystem& operator=(LootSystem const&); - LootSystem(LootSystem const&); - LootSystem(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/entity/systems/MinecartCanSnapOnRailSystem.h b/src/mc/entity/systems/MinecartCanSnapOnRailSystem.h index 7849ee9366..e93526b32c 100644 --- a/src/mc/entity/systems/MinecartCanSnapOnRailSystem.h +++ b/src/mc/entity/systems/MinecartCanSnapOnRailSystem.h @@ -19,12 +19,6 @@ struct TickingSystemWithInfo; // clang-format on struct MinecartCanSnapOnRailSystem { -public: - // prevent constructor by default - MinecartCanSnapOnRailSystem& operator=(MinecartCanSnapOnRailSystem const&); - MinecartCanSnapOnRailSystem(MinecartCanSnapOnRailSystem const&); - MinecartCanSnapOnRailSystem(); - public: // static functions // NOLINTBEGIN diff --git a/src/mc/entity/systems/MinecartComeOffRailSystem.h b/src/mc/entity/systems/MinecartComeOffRailSystem.h index 68d2f01d1f..bf07d062cf 100644 --- a/src/mc/entity/systems/MinecartComeOffRailSystem.h +++ b/src/mc/entity/systems/MinecartComeOffRailSystem.h @@ -22,12 +22,6 @@ struct TickingSystemWithInfo; // clang-format on class MinecartComeOffRailSystem { -public: - // prevent constructor by default - MinecartComeOffRailSystem& operator=(MinecartComeOffRailSystem const&); - MinecartComeOffRailSystem(MinecartComeOffRailSystem const&); - MinecartComeOffRailSystem(); - public: // static functions // NOLINTBEGIN diff --git a/src/mc/entity/systems/MinecartMoveAlongRailSystem.h b/src/mc/entity/systems/MinecartMoveAlongRailSystem.h index 06c62102cb..c7899fe65c 100644 --- a/src/mc/entity/systems/MinecartMoveAlongRailSystem.h +++ b/src/mc/entity/systems/MinecartMoveAlongRailSystem.h @@ -29,12 +29,6 @@ struct VehicleComponent; // clang-format on class MinecartMoveAlongRailSystem { -public: - // prevent constructor by default - MinecartMoveAlongRailSystem& operator=(MinecartMoveAlongRailSystem const&); - MinecartMoveAlongRailSystem(MinecartMoveAlongRailSystem const&); - MinecartMoveAlongRailSystem(); - public: // static functions // NOLINTBEGIN diff --git a/src/mc/entity/systems/MinecartPreNormalTickSystem.h b/src/mc/entity/systems/MinecartPreNormalTickSystem.h index cbe7eb45a3..37b6be4fce 100644 --- a/src/mc/entity/systems/MinecartPreNormalTickSystem.h +++ b/src/mc/entity/systems/MinecartPreNormalTickSystem.h @@ -18,12 +18,6 @@ struct TickingSystemWithInfo; // clang-format on class MinecartPreNormalTickSystem { -public: - // prevent constructor by default - MinecartPreNormalTickSystem& operator=(MinecartPreNormalTickSystem const&); - MinecartPreNormalTickSystem(MinecartPreNormalTickSystem const&); - MinecartPreNormalTickSystem(); - public: // static functions // NOLINTBEGIN diff --git a/src/mc/entity/systems/MobEffectSystem.h b/src/mc/entity/systems/MobEffectSystem.h index 27b11b8d2a..58cf160085 100644 --- a/src/mc/entity/systems/MobEffectSystem.h +++ b/src/mc/entity/systems/MobEffectSystem.h @@ -13,12 +13,6 @@ class MobEffectComponent; // clang-format on class MobEffectSystem : public ::ITickingSystem { -public: - // prevent constructor by default - MobEffectSystem& operator=(MobEffectSystem const&); - MobEffectSystem(MobEffectSystem const&); - MobEffectSystem(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/entity/systems/MobIsImmobileFilterSystem.h b/src/mc/entity/systems/MobIsImmobileFilterSystem.h index 19c6324f24..12ae4bd640 100644 --- a/src/mc/entity/systems/MobIsImmobileFilterSystem.h +++ b/src/mc/entity/systems/MobIsImmobileFilterSystem.h @@ -30,12 +30,6 @@ struct VehicleInputIntentComponent; // clang-format on struct MobIsImmobileFilterSystem { -public: - // prevent constructor by default - MobIsImmobileFilterSystem& operator=(MobIsImmobileFilterSystem const&); - MobIsImmobileFilterSystem(MobIsImmobileFilterSystem const&); - MobIsImmobileFilterSystem(); - public: // static functions // NOLINTBEGIN diff --git a/src/mc/entity/systems/MobOnPlayerJumpSystem.h b/src/mc/entity/systems/MobOnPlayerJumpSystem.h index 4ed080923f..c15240025d 100644 --- a/src/mc/entity/systems/MobOnPlayerJumpSystem.h +++ b/src/mc/entity/systems/MobOnPlayerJumpSystem.h @@ -8,12 +8,6 @@ struct TickingSystemWithInfo; // clang-format on struct MobOnPlayerJumpSystem { -public: - // prevent constructor by default - MobOnPlayerJumpSystem& operator=(MobOnPlayerJumpSystem const&); - MobOnPlayerJumpSystem(MobOnPlayerJumpSystem const&); - MobOnPlayerJumpSystem(); - public: // static functions // NOLINTBEGIN diff --git a/src/mc/entity/systems/MobRemovePassengerSystem.h b/src/mc/entity/systems/MobRemovePassengerSystem.h index ce4c0a03b5..1a68b69753 100644 --- a/src/mc/entity/systems/MobRemovePassengerSystem.h +++ b/src/mc/entity/systems/MobRemovePassengerSystem.h @@ -8,12 +8,6 @@ struct TickingSystemWithInfo; // clang-format on struct MobRemovePassengerSystem { -public: - // prevent constructor by default - MobRemovePassengerSystem& operator=(MobRemovePassengerSystem const&); - MobRemovePassengerSystem(MobRemovePassengerSystem const&); - MobRemovePassengerSystem(); - public: // static functions // NOLINTBEGIN diff --git a/src/mc/entity/systems/MobResetPassengerYRotLimitSystem.h b/src/mc/entity/systems/MobResetPassengerYRotLimitSystem.h index 984efcf024..337ba68142 100644 --- a/src/mc/entity/systems/MobResetPassengerYRotLimitSystem.h +++ b/src/mc/entity/systems/MobResetPassengerYRotLimitSystem.h @@ -8,12 +8,6 @@ struct TickingSystemWithInfo; // clang-format on struct MobResetPassengerYRotLimitSystem { -public: - // prevent constructor by default - MobResetPassengerYRotLimitSystem& operator=(MobResetPassengerYRotLimitSystem const&); - MobResetPassengerYRotLimitSystem(MobResetPassengerYRotLimitSystem const&); - MobResetPassengerYRotLimitSystem(); - public: // static functions // NOLINTBEGIN diff --git a/src/mc/entity/systems/MobSetPreviousRotSystem.h b/src/mc/entity/systems/MobSetPreviousRotSystem.h index 554c5b2bcb..bbcf49a4e6 100644 --- a/src/mc/entity/systems/MobSetPreviousRotSystem.h +++ b/src/mc/entity/systems/MobSetPreviousRotSystem.h @@ -12,12 +12,6 @@ struct TickingSystemWithInfo; // clang-format on class MobSetPreviousRotSystem { -public: - // prevent constructor by default - MobSetPreviousRotSystem& operator=(MobSetPreviousRotSystem const&); - MobSetPreviousRotSystem(MobSetPreviousRotSystem const&); - MobSetPreviousRotSystem(); - public: // static functions // NOLINTBEGIN diff --git a/src/mc/entity/systems/MobTravelImmobileFilterSystem.h b/src/mc/entity/systems/MobTravelImmobileFilterSystem.h index dbf9cc1605..a36b8e883e 100644 --- a/src/mc/entity/systems/MobTravelImmobileFilterSystem.h +++ b/src/mc/entity/systems/MobTravelImmobileFilterSystem.h @@ -8,12 +8,6 @@ struct TickingSystemWithInfo; // clang-format on struct MobTravelImmobileFilterSystem { -public: - // prevent constructor by default - MobTravelImmobileFilterSystem& operator=(MobTravelImmobileFilterSystem const&); - MobTravelImmobileFilterSystem(MobTravelImmobileFilterSystem const&); - MobTravelImmobileFilterSystem(); - public: // static functions // NOLINTBEGIN diff --git a/src/mc/entity/systems/MobTravelPlayerOrLocalFilterSystem.h b/src/mc/entity/systems/MobTravelPlayerOrLocalFilterSystem.h index c34b253082..3ac06f068f 100644 --- a/src/mc/entity/systems/MobTravelPlayerOrLocalFilterSystem.h +++ b/src/mc/entity/systems/MobTravelPlayerOrLocalFilterSystem.h @@ -8,12 +8,6 @@ struct TickingSystemWithInfo; // clang-format on struct MobTravelPlayerOrLocalFilterSystem { -public: - // prevent constructor by default - MobTravelPlayerOrLocalFilterSystem& operator=(MobTravelPlayerOrLocalFilterSystem const&); - MobTravelPlayerOrLocalFilterSystem(MobTravelPlayerOrLocalFilterSystem const&); - MobTravelPlayerOrLocalFilterSystem(); - public: // static functions // NOLINTBEGIN diff --git a/src/mc/entity/systems/MobTravelTeleportedFilterSystem.h b/src/mc/entity/systems/MobTravelTeleportedFilterSystem.h index 43515e68e5..53d9e4244b 100644 --- a/src/mc/entity/systems/MobTravelTeleportedFilterSystem.h +++ b/src/mc/entity/systems/MobTravelTeleportedFilterSystem.h @@ -8,12 +8,6 @@ struct TickingSystemWithInfo; // clang-format on struct MobTravelTeleportedFilterSystem { -public: - // prevent constructor by default - MobTravelTeleportedFilterSystem& operator=(MobTravelTeleportedFilterSystem const&); - MobTravelTeleportedFilterSystem(MobTravelTeleportedFilterSystem const&); - MobTravelTeleportedFilterSystem(); - public: // static functions // NOLINTBEGIN diff --git a/src/mc/entity/systems/MobTravelUpdateSpeedsSystem.h b/src/mc/entity/systems/MobTravelUpdateSpeedsSystem.h index 7aafff351d..3257421dc6 100644 --- a/src/mc/entity/systems/MobTravelUpdateSpeedsSystem.h +++ b/src/mc/entity/systems/MobTravelUpdateSpeedsSystem.h @@ -23,12 +23,6 @@ struct VehicleComponent; // clang-format on class MobTravelUpdateSpeedsSystem { -public: - // prevent constructor by default - MobTravelUpdateSpeedsSystem& operator=(MobTravelUpdateSpeedsSystem const&); - MobTravelUpdateSpeedsSystem(MobTravelUpdateSpeedsSystem const&); - MobTravelUpdateSpeedsSystem(); - public: // static functions // NOLINTBEGIN diff --git a/src/mc/entity/systems/MonsterAiStepSystem.h b/src/mc/entity/systems/MonsterAiStepSystem.h index fe97ba6db7..4352b161e4 100644 --- a/src/mc/entity/systems/MonsterAiStepSystem.h +++ b/src/mc/entity/systems/MonsterAiStepSystem.h @@ -45,12 +45,6 @@ struct MonsterAiStepSystem ::GlobalRead<::LocalConstBlockSourceFactoryComponent>, ::GlobalWrite<>, ::EntityFactoryT<>>> { -public: - // prevent constructor by default - MonsterAiStepSystem& operator=(MonsterAiStepSystem const&); - MonsterAiStepSystem(MonsterAiStepSystem const&); - MonsterAiStepSystem(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/entity/systems/MountTamingSystem.h b/src/mc/entity/systems/MountTamingSystem.h index 5b42f0c18d..f3fe6e5faa 100644 --- a/src/mc/entity/systems/MountTamingSystem.h +++ b/src/mc/entity/systems/MountTamingSystem.h @@ -11,12 +11,6 @@ class EntityRegistry; // clang-format on class MountTamingSystem : public ::ITickingSystem { -public: - // prevent constructor by default - MountTamingSystem& operator=(MountTamingSystem const&); - MountTamingSystem(MountTamingSystem const&); - MountTamingSystem(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/entity/systems/MoveControlSystem.h b/src/mc/entity/systems/MoveControlSystem.h index 3d19a5a7b7..6a717ea82b 100644 --- a/src/mc/entity/systems/MoveControlSystem.h +++ b/src/mc/entity/systems/MoveControlSystem.h @@ -11,12 +11,6 @@ class EntityRegistry; // clang-format on class MoveControlSystem : public ::ITickingSystem { -public: - // prevent constructor by default - MoveControlSystem& operator=(MoveControlSystem const&); - MoveControlSystem(MoveControlSystem const&); - MoveControlSystem(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/entity/systems/MoveSpeedCapSystem.h b/src/mc/entity/systems/MoveSpeedCapSystem.h index 434fb73fa2..5c1b7ea427 100644 --- a/src/mc/entity/systems/MoveSpeedCapSystem.h +++ b/src/mc/entity/systems/MoveSpeedCapSystem.h @@ -8,12 +8,6 @@ struct TickingSystemWithInfo; // clang-format on struct MoveSpeedCapSystem { -public: - // prevent constructor by default - MoveSpeedCapSystem& operator=(MoveSpeedCapSystem const&); - MoveSpeedCapSystem(MoveSpeedCapSystem const&); - MoveSpeedCapSystem(); - public: // static functions // NOLINTBEGIN diff --git a/src/mc/entity/systems/MoveTowardsClosestSpaceSystemImpl.h b/src/mc/entity/systems/MoveTowardsClosestSpaceSystemImpl.h index 38208d3bde..8c9e4b7dc9 100644 --- a/src/mc/entity/systems/MoveTowardsClosestSpaceSystemImpl.h +++ b/src/mc/entity/systems/MoveTowardsClosestSpaceSystemImpl.h @@ -84,12 +84,6 @@ struct MoveTowardsClosestSpaceSystemImpl ::GlobalRead<::ExternalDataComponent, ::LocalConstBlockSourceFactoryComponent>, ::GlobalWrite<>, ::EntityFactoryT<>>> { -public: - // prevent constructor by default - MoveTowardsClosestSpaceSystemImpl& operator=(MoveTowardsClosestSpaceSystemImpl const&); - MoveTowardsClosestSpaceSystemImpl(MoveTowardsClosestSpaceSystemImpl const&); - MoveTowardsClosestSpaceSystemImpl(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/entity/systems/MovementInterpolatorSystem.h b/src/mc/entity/systems/MovementInterpolatorSystem.h index 2d064aa160..25b432ca57 100644 --- a/src/mc/entity/systems/MovementInterpolatorSystem.h +++ b/src/mc/entity/systems/MovementInterpolatorSystem.h @@ -8,12 +8,6 @@ struct TickingSystemWithInfo; // clang-format on struct MovementInterpolatorSystem { -public: - // prevent constructor by default - MovementInterpolatorSystem& operator=(MovementInterpolatorSystem const&); - MovementInterpolatorSystem(MovementInterpolatorSystem const&); - MovementInterpolatorSystem(); - public: // static functions // NOLINTBEGIN diff --git a/src/mc/entity/systems/MovementInterpolatorSystemImpl.h b/src/mc/entity/systems/MovementInterpolatorSystemImpl.h index a06f9494a8..63d236edfa 100644 --- a/src/mc/entity/systems/MovementInterpolatorSystemImpl.h +++ b/src/mc/entity/systems/MovementInterpolatorSystemImpl.h @@ -10,12 +10,6 @@ struct StateVectorComponent; // clang-format on struct MovementInterpolatorSystemImpl { -public: - // prevent constructor by default - MovementInterpolatorSystemImpl& operator=(MovementInterpolatorSystemImpl const&); - MovementInterpolatorSystemImpl(MovementInterpolatorSystemImpl const&); - MovementInterpolatorSystemImpl(); - public: // static functions // NOLINTBEGIN diff --git a/src/mc/entity/systems/MovementSoundRequestSystemImpl.h b/src/mc/entity/systems/MovementSoundRequestSystemImpl.h index 9fc8638b94..56f6b00661 100644 --- a/src/mc/entity/systems/MovementSoundRequestSystemImpl.h +++ b/src/mc/entity/systems/MovementSoundRequestSystemImpl.h @@ -44,12 +44,6 @@ struct MovementSoundRequestSystemImpl : public ::IStrictTickingSystem<::StrictEx ::GlobalRead<>, ::GlobalWrite<>, ::EntityFactoryT<>>> { -public: - // prevent constructor by default - MovementSoundRequestSystemImpl& operator=(MovementSoundRequestSystemImpl const&); - MovementSoundRequestSystemImpl(MovementSoundRequestSystemImpl const&); - MovementSoundRequestSystemImpl(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/entity/systems/MovementTickResetTemporaryComponentsSystem.h b/src/mc/entity/systems/MovementTickResetTemporaryComponentsSystem.h index 039d3d4ee9..230e974b68 100644 --- a/src/mc/entity/systems/MovementTickResetTemporaryComponentsSystem.h +++ b/src/mc/entity/systems/MovementTickResetTemporaryComponentsSystem.h @@ -8,12 +8,6 @@ struct TickingSystemWithInfo; // clang-format on struct MovementTickResetTemporaryComponentsSystem { -public: - // prevent constructor by default - MovementTickResetTemporaryComponentsSystem& operator=(MovementTickResetTemporaryComponentsSystem const&); - MovementTickResetTemporaryComponentsSystem(MovementTickResetTemporaryComponentsSystem const&); - MovementTickResetTemporaryComponentsSystem(); - public: // static functions // NOLINTBEGIN diff --git a/src/mc/entity/systems/NavigationSystem.h b/src/mc/entity/systems/NavigationSystem.h index 65b55f99eb..3c256a1ee3 100644 --- a/src/mc/entity/systems/NavigationSystem.h +++ b/src/mc/entity/systems/NavigationSystem.h @@ -11,12 +11,6 @@ class EntityRegistry; // clang-format on class NavigationSystem : public ::ITickingSystem { -public: - // prevent constructor by default - NavigationSystem& operator=(NavigationSystem const&); - NavigationSystem(NavigationSystem const&); - NavigationSystem(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/entity/systems/NavigationTravelSystem.h b/src/mc/entity/systems/NavigationTravelSystem.h index 2db5f9fc95..2d0d8df137 100644 --- a/src/mc/entity/systems/NavigationTravelSystem.h +++ b/src/mc/entity/systems/NavigationTravelSystem.h @@ -16,12 +16,6 @@ struct TickingSystemWithInfo; // clang-format on class NavigationTravelSystem { -public: - // prevent constructor by default - NavigationTravelSystem& operator=(NavigationTravelSystem const&); - NavigationTravelSystem(NavigationTravelSystem const&); - NavigationTravelSystem(); - public: // static functions // NOLINTBEGIN diff --git a/src/mc/entity/systems/NoClipOrNoBlockMoveFilterSystem.h b/src/mc/entity/systems/NoClipOrNoBlockMoveFilterSystem.h index 8ab8a3845f..bb8ef6e570 100644 --- a/src/mc/entity/systems/NoClipOrNoBlockMoveFilterSystem.h +++ b/src/mc/entity/systems/NoClipOrNoBlockMoveFilterSystem.h @@ -19,12 +19,6 @@ struct TickingSystemWithInfo; // clang-format on struct NoClipOrNoBlockMoveFilterSystem { -public: - // prevent constructor by default - NoClipOrNoBlockMoveFilterSystem& operator=(NoClipOrNoBlockMoveFilterSystem const&); - NoClipOrNoBlockMoveFilterSystem(NoClipOrNoBlockMoveFilterSystem const&); - NoClipOrNoBlockMoveFilterSystem(); - public: // static functions // NOLINTBEGIN diff --git a/src/mc/entity/systems/NoPermanentSkip.h b/src/mc/entity/systems/NoPermanentSkip.h index 9d4bdd4604..1fa717e575 100644 --- a/src/mc/entity/systems/NoPermanentSkip.h +++ b/src/mc/entity/systems/NoPermanentSkip.h @@ -2,10 +2,4 @@ #include "mc/_HeaderOutputPredefine.h" -struct NoPermanentSkip { -public: - // prevent constructor by default - NoPermanentSkip& operator=(NoPermanentSkip const&); - NoPermanentSkip(NoPermanentSkip const&); - NoPermanentSkip(); -}; +struct NoPermanentSkip {}; diff --git a/src/mc/entity/systems/NormalTickFilterSystem.h b/src/mc/entity/systems/NormalTickFilterSystem.h index 439ed171b4..d06eaff543 100644 --- a/src/mc/entity/systems/NormalTickFilterSystem.h +++ b/src/mc/entity/systems/NormalTickFilterSystem.h @@ -21,12 +21,6 @@ struct TickingSystemWithInfo; // clang-format on struct NormalTickFilterSystem { -public: - // prevent constructor by default - NormalTickFilterSystem& operator=(NormalTickFilterSystem const&); - NormalTickFilterSystem(NormalTickFilterSystem const&); - NormalTickFilterSystem(); - public: // static functions // NOLINTBEGIN diff --git a/src/mc/entity/systems/NpcSystem.h b/src/mc/entity/systems/NpcSystem.h index 9d83dd7998..6cefdce259 100644 --- a/src/mc/entity/systems/NpcSystem.h +++ b/src/mc/entity/systems/NpcSystem.h @@ -13,12 +13,6 @@ namespace NpcComponents { struct LeaveMenuCountdown; } // clang-format on class NpcSystem : public ::ITickingSystem { -public: - // prevent constructor by default - NpcSystem& operator=(NpcSystem const&); - NpcSystem(NpcSystem const&); - NpcSystem(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/entity/systems/OfferFlowerTickSystem.h b/src/mc/entity/systems/OfferFlowerTickSystem.h index 077b7e0180..fa8aefa6b7 100644 --- a/src/mc/entity/systems/OfferFlowerTickSystem.h +++ b/src/mc/entity/systems/OfferFlowerTickSystem.h @@ -15,12 +15,6 @@ struct TickingSystemWithInfo; // clang-format on class OfferFlowerTickSystem { -public: - // prevent constructor by default - OfferFlowerTickSystem& operator=(OfferFlowerTickSystem const&); - OfferFlowerTickSystem(OfferFlowerTickSystem const&); - OfferFlowerTickSystem(); - public: // static functions // NOLINTBEGIN diff --git a/src/mc/entity/systems/OnFireClientSystem.h b/src/mc/entity/systems/OnFireClientSystem.h index 442a181cc1..cec85759f4 100644 --- a/src/mc/entity/systems/OnFireClientSystem.h +++ b/src/mc/entity/systems/OnFireClientSystem.h @@ -11,12 +11,6 @@ class EntityRegistry; // clang-format on class OnFireClientSystem : public ::OnFireSystem { -public: - // prevent constructor by default - OnFireClientSystem& operator=(OnFireClientSystem const&); - OnFireClientSystem(OnFireClientSystem const&); - OnFireClientSystem(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/entity/systems/OnFireServerSystem.h b/src/mc/entity/systems/OnFireServerSystem.h index 05ccba2fca..d824902d3f 100644 --- a/src/mc/entity/systems/OnFireServerSystem.h +++ b/src/mc/entity/systems/OnFireServerSystem.h @@ -18,12 +18,6 @@ struct OnFireComponent; // clang-format on class OnFireServerSystem : public ::OnFireSystem { -public: - // prevent constructor by default - OnFireServerSystem& operator=(OnFireServerSystem const&); - OnFireServerSystem(OnFireServerSystem const&); - OnFireServerSystem(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/entity/systems/OnFireSystem.h b/src/mc/entity/systems/OnFireSystem.h index e899745949..bdae45e188 100644 --- a/src/mc/entity/systems/OnFireSystem.h +++ b/src/mc/entity/systems/OnFireSystem.h @@ -11,12 +11,6 @@ class Actor; // clang-format on class OnFireSystem : public ::ITickingSystem { -public: - // prevent constructor by default - OnFireSystem& operator=(OnFireSystem const&); - OnFireSystem(OnFireSystem const&); - OnFireSystem(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/entity/systems/OpenDoorAnnotationSystem.h b/src/mc/entity/systems/OpenDoorAnnotationSystem.h index ef45097a8d..ef86b4214d 100644 --- a/src/mc/entity/systems/OpenDoorAnnotationSystem.h +++ b/src/mc/entity/systems/OpenDoorAnnotationSystem.h @@ -11,12 +11,6 @@ class EntityRegistry; // clang-format on class OpenDoorAnnotationSystem : public ::ITickingSystem { -public: - // prevent constructor by default - OpenDoorAnnotationSystem& operator=(OpenDoorAnnotationSystem const&); - OpenDoorAnnotationSystem(OpenDoorAnnotationSystem const&); - OpenDoorAnnotationSystem(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/entity/systems/OutOfWorldSystem.h b/src/mc/entity/systems/OutOfWorldSystem.h index 0801628a74..e5b0e7a7e5 100644 --- a/src/mc/entity/systems/OutOfWorldSystem.h +++ b/src/mc/entity/systems/OutOfWorldSystem.h @@ -11,12 +11,6 @@ class EntityRegistry; // clang-format on class OutOfWorldSystem : public ::ITickingSystem { -public: - // prevent constructor by default - OutOfWorldSystem& operator=(OutOfWorldSystem const&); - OutOfWorldSystem(OutOfWorldSystem const&); - OutOfWorldSystem(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/entity/systems/ParticleEventRequestSystem.h b/src/mc/entity/systems/ParticleEventRequestSystem.h index 6631264536..e15f57a421 100644 --- a/src/mc/entity/systems/ParticleEventRequestSystem.h +++ b/src/mc/entity/systems/ParticleEventRequestSystem.h @@ -2,10 +2,4 @@ #include "mc/_HeaderOutputPredefine.h" -struct ParticleEventRequestSystem { -public: - // prevent constructor by default - ParticleEventRequestSystem& operator=(ParticleEventRequestSystem const&); - ParticleEventRequestSystem(ParticleEventRequestSystem const&); - ParticleEventRequestSystem(); -}; +struct ParticleEventRequestSystem {}; diff --git a/src/mc/entity/systems/PassengerFreezeMovementSystem.h b/src/mc/entity/systems/PassengerFreezeMovementSystem.h index 54053a7dc8..d5a876cb34 100644 --- a/src/mc/entity/systems/PassengerFreezeMovementSystem.h +++ b/src/mc/entity/systems/PassengerFreezeMovementSystem.h @@ -16,12 +16,6 @@ struct TickingSystemWithInfo; // clang-format on class PassengerFreezeMovementSystem { -public: - // prevent constructor by default - PassengerFreezeMovementSystem& operator=(PassengerFreezeMovementSystem const&); - PassengerFreezeMovementSystem(PassengerFreezeMovementSystem const&); - PassengerFreezeMovementSystem(); - public: // static functions // NOLINTBEGIN diff --git a/src/mc/entity/systems/PassengerTickSystem.h b/src/mc/entity/systems/PassengerTickSystem.h index 96a5b9d0b9..1de294f7c0 100644 --- a/src/mc/entity/systems/PassengerTickSystem.h +++ b/src/mc/entity/systems/PassengerTickSystem.h @@ -8,12 +8,6 @@ struct TickingSystemWithInfo; // clang-format on struct PassengerTickSystem { -public: - // prevent constructor by default - PassengerTickSystem& operator=(PassengerTickSystem const&); - PassengerTickSystem(PassengerTickSystem const&); - PassengerTickSystem(); - public: // static functions // NOLINTBEGIN diff --git a/src/mc/entity/systems/PeekSystem.h b/src/mc/entity/systems/PeekSystem.h index dfd379b3a9..7a933235af 100644 --- a/src/mc/entity/systems/PeekSystem.h +++ b/src/mc/entity/systems/PeekSystem.h @@ -11,12 +11,6 @@ class EntityRegistry; // clang-format on class PeekSystem : public ::ITickingSystem { -public: - // prevent constructor by default - PeekSystem& operator=(PeekSystem const&); - PeekSystem(PeekSystem const&); - PeekSystem(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/entity/systems/PendingRemovePassengersSystem.h b/src/mc/entity/systems/PendingRemovePassengersSystem.h index 5ed0afc30c..157c76d36b 100644 --- a/src/mc/entity/systems/PendingRemovePassengersSystem.h +++ b/src/mc/entity/systems/PendingRemovePassengersSystem.h @@ -8,12 +8,6 @@ struct TickingSystemWithInfo; // clang-format on struct PendingRemovePassengersSystem { -public: - // prevent constructor by default - PendingRemovePassengersSystem& operator=(PendingRemovePassengersSystem const&); - PendingRemovePassengersSystem(PendingRemovePassengersSystem const&); - PendingRemovePassengersSystem(); - public: // static functions // NOLINTBEGIN diff --git a/src/mc/entity/systems/PersonaEmoteInputSystem.h b/src/mc/entity/systems/PersonaEmoteInputSystem.h index 01ce7a1ba2..b352207497 100644 --- a/src/mc/entity/systems/PersonaEmoteInputSystem.h +++ b/src/mc/entity/systems/PersonaEmoteInputSystem.h @@ -18,12 +18,6 @@ struct TickingSystemWithInfo; // clang-format on class PersonaEmoteInputSystem { -public: - // prevent constructor by default - PersonaEmoteInputSystem& operator=(PersonaEmoteInputSystem const&); - PersonaEmoteInputSystem(PersonaEmoteInputSystem const&); - PersonaEmoteInputSystem(); - public: // static functions // NOLINTBEGIN diff --git a/src/mc/entity/systems/PlayerBoundingBoxStateUpdateSystem.h b/src/mc/entity/systems/PlayerBoundingBoxStateUpdateSystem.h index 3288f90b93..0765799f64 100644 --- a/src/mc/entity/systems/PlayerBoundingBoxStateUpdateSystem.h +++ b/src/mc/entity/systems/PlayerBoundingBoxStateUpdateSystem.h @@ -80,12 +80,6 @@ class PlayerBoundingBoxStateUpdateSystem ::GlobalRead<::ExternalDataComponent, ::LocalConstBlockSourceFactoryComponent>, ::GlobalWrite<>, ::EntityFactoryT<>>> { -public: - // prevent constructor by default - PlayerBoundingBoxStateUpdateSystem& operator=(PlayerBoundingBoxStateUpdateSystem const&); - PlayerBoundingBoxStateUpdateSystem(PlayerBoundingBoxStateUpdateSystem const&); - PlayerBoundingBoxStateUpdateSystem(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/entity/systems/PlayerInteractionSystem.h b/src/mc/entity/systems/PlayerInteractionSystem.h index ad453d646b..fcfa4453f1 100644 --- a/src/mc/entity/systems/PlayerInteractionSystem.h +++ b/src/mc/entity/systems/PlayerInteractionSystem.h @@ -18,12 +18,6 @@ class PlayerInteractionSystem { // PlayerInteractionSystem inner types define struct InteractionMappingBase { - public: - // prevent constructor by default - InteractionMappingBase& operator=(InteractionMappingBase const&); - InteractionMappingBase(InteractionMappingBase const&); - InteractionMappingBase(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/entity/systems/PlayerMoveSystems.h b/src/mc/entity/systems/PlayerMoveSystems.h index 3f84ff8768..7e22580c9b 100644 --- a/src/mc/entity/systems/PlayerMoveSystems.h +++ b/src/mc/entity/systems/PlayerMoveSystems.h @@ -8,12 +8,6 @@ struct TickingSystemWithInfo; // clang-format on struct PlayerMoveSystems { -public: - // prevent constructor by default - PlayerMoveSystems& operator=(PlayerMoveSystems const&); - PlayerMoveSystems(PlayerMoveSystems const&); - PlayerMoveSystems(); - public: // static functions // NOLINTBEGIN diff --git a/src/mc/entity/systems/PlayerMovementRateSystem.h b/src/mc/entity/systems/PlayerMovementRateSystem.h index 656fdce063..ce81ab9fc9 100644 --- a/src/mc/entity/systems/PlayerMovementRateSystem.h +++ b/src/mc/entity/systems/PlayerMovementRateSystem.h @@ -11,12 +11,6 @@ class EntityRegistry; // clang-format on class PlayerMovementRateSystem : public ::ITickingSystem { -public: - // prevent constructor by default - PlayerMovementRateSystem& operator=(PlayerMovementRateSystem const&); - PlayerMovementRateSystem(PlayerMovementRateSystem const&); - PlayerMovementRateSystem(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/entity/systems/PlayerMovementStatsEventSystem.h b/src/mc/entity/systems/PlayerMovementStatsEventSystem.h index 900c8fb12f..ef8d1c7d79 100644 --- a/src/mc/entity/systems/PlayerMovementStatsEventSystem.h +++ b/src/mc/entity/systems/PlayerMovementStatsEventSystem.h @@ -15,12 +15,6 @@ struct TickingSystemWithInfo; // clang-format on class PlayerMovementStatsEventSystem { -public: - // prevent constructor by default - PlayerMovementStatsEventSystem& operator=(PlayerMovementStatsEventSystem const&); - PlayerMovementStatsEventSystem(PlayerMovementStatsEventSystem const&); - PlayerMovementStatsEventSystem(); - public: // static functions // NOLINTBEGIN diff --git a/src/mc/entity/systems/PlayerResetMovementSpeedSystem.h b/src/mc/entity/systems/PlayerResetMovementSpeedSystem.h index 893578adcb..9d671e10ea 100644 --- a/src/mc/entity/systems/PlayerResetMovementSpeedSystem.h +++ b/src/mc/entity/systems/PlayerResetMovementSpeedSystem.h @@ -8,12 +8,6 @@ struct TickingSystemWithInfo; // clang-format on struct PlayerResetMovementSpeedSystem { -public: - // prevent constructor by default - PlayerResetMovementSpeedSystem& operator=(PlayerResetMovementSpeedSystem const&); - PlayerResetMovementSpeedSystem(PlayerResetMovementSpeedSystem const&); - PlayerResetMovementSpeedSystem(); - public: // static functions // NOLINTBEGIN diff --git a/src/mc/entity/systems/PlayerTickSystem.h b/src/mc/entity/systems/PlayerTickSystem.h index 76fc4e4f7d..01655790f4 100644 --- a/src/mc/entity/systems/PlayerTickSystem.h +++ b/src/mc/entity/systems/PlayerTickSystem.h @@ -9,12 +9,6 @@ struct TickingSystemWithInfo; // clang-format on struct PlayerTickSystem { -public: - // prevent constructor by default - PlayerTickSystem& operator=(PlayerTickSystem const&); - PlayerTickSystem(PlayerTickSystem const&); - PlayerTickSystem(); - public: // static functions // NOLINTBEGIN diff --git a/src/mc/entity/systems/PopulateGlobalPassengersToPositionListSystem.h b/src/mc/entity/systems/PopulateGlobalPassengersToPositionListSystem.h index 69637dabc5..7c30455019 100644 --- a/src/mc/entity/systems/PopulateGlobalPassengersToPositionListSystem.h +++ b/src/mc/entity/systems/PopulateGlobalPassengersToPositionListSystem.h @@ -20,12 +20,6 @@ struct VehicleComponent; // clang-format on struct PopulateGlobalPassengersToPositionListSystem { -public: - // prevent constructor by default - PopulateGlobalPassengersToPositionListSystem& operator=(PopulateGlobalPassengersToPositionListSystem const&); - PopulateGlobalPassengersToPositionListSystem(PopulateGlobalPassengersToPositionListSystem const&); - PopulateGlobalPassengersToPositionListSystem(); - public: // static functions // NOLINTBEGIN diff --git a/src/mc/entity/systems/PostAIUpdateSystem.h b/src/mc/entity/systems/PostAIUpdateSystem.h index d043b3bd41..4f0c8a9465 100644 --- a/src/mc/entity/systems/PostAIUpdateSystem.h +++ b/src/mc/entity/systems/PostAIUpdateSystem.h @@ -23,12 +23,6 @@ struct WasOnGroundFlagComponent; // clang-format on class PostAIUpdateSystem { -public: - // prevent constructor by default - PostAIUpdateSystem& operator=(PostAIUpdateSystem const&); - PostAIUpdateSystem(PostAIUpdateSystem const&); - PostAIUpdateSystem(); - public: // static functions // NOLINTBEGIN diff --git a/src/mc/entity/systems/PostEntityDismountGameEventSystem.h b/src/mc/entity/systems/PostEntityDismountGameEventSystem.h index 1148f9fd88..36feb98b62 100644 --- a/src/mc/entity/systems/PostEntityDismountGameEventSystem.h +++ b/src/mc/entity/systems/PostEntityDismountGameEventSystem.h @@ -8,12 +8,6 @@ struct TickingSystemWithInfo; // clang-format on struct PostEntityDismountGameEventSystem { -public: - // prevent constructor by default - PostEntityDismountGameEventSystem& operator=(PostEntityDismountGameEventSystem const&); - PostEntityDismountGameEventSystem(PostEntityDismountGameEventSystem const&); - PostEntityDismountGameEventSystem(); - public: // static functions // NOLINTBEGIN diff --git a/src/mc/entity/systems/ProcessPlayerActionPacketSystem.h b/src/mc/entity/systems/ProcessPlayerActionPacketSystem.h index 28e812a9c6..550b975241 100644 --- a/src/mc/entity/systems/ProcessPlayerActionPacketSystem.h +++ b/src/mc/entity/systems/ProcessPlayerActionPacketSystem.h @@ -10,12 +10,6 @@ struct TickingSystemWithInfo; // clang-format on class ProcessPlayerActionPacketSystem { -public: - // prevent constructor by default - ProcessPlayerActionPacketSystem& operator=(ProcessPlayerActionPacketSystem const&); - ProcessPlayerActionPacketSystem(ProcessPlayerActionPacketSystem const&); - ProcessPlayerActionPacketSystem(); - public: // static functions // NOLINTBEGIN diff --git a/src/mc/entity/systems/ProjectileSystem.h b/src/mc/entity/systems/ProjectileSystem.h index 29a6f2d549..97c8911612 100644 --- a/src/mc/entity/systems/ProjectileSystem.h +++ b/src/mc/entity/systems/ProjectileSystem.h @@ -13,12 +13,6 @@ class ProjectileComponent; // clang-format on class ProjectileSystem : public ::ITickingSystem { -public: - // prevent constructor by default - ProjectileSystem& operator=(ProjectileSystem const&); - ProjectileSystem(ProjectileSystem const&); - ProjectileSystem(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/entity/systems/PushActorsSystem.h b/src/mc/entity/systems/PushActorsSystem.h index 3aac584f03..bc14e357aa 100644 --- a/src/mc/entity/systems/PushActorsSystem.h +++ b/src/mc/entity/systems/PushActorsSystem.h @@ -9,12 +9,6 @@ struct TickingSystemWithInfo; // clang-format on struct PushActorsSystem { -public: - // prevent constructor by default - PushActorsSystem& operator=(PushActorsSystem const&); - PushActorsSystem(PushActorsSystem const&); - PushActorsSystem(); - public: // static functions // NOLINTBEGIN diff --git a/src/mc/entity/systems/RaidBossSystem.h b/src/mc/entity/systems/RaidBossSystem.h index a75c11141b..a70ca3883e 100644 --- a/src/mc/entity/systems/RaidBossSystem.h +++ b/src/mc/entity/systems/RaidBossSystem.h @@ -11,12 +11,6 @@ class EntityRegistry; // clang-format on class RaidBossSystem : public ::ITickingSystem { -public: - // prevent constructor by default - RaidBossSystem& operator=(RaidBossSystem const&); - RaidBossSystem(RaidBossSystem const&); - RaidBossSystem(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/entity/systems/RaidTriggerSystem.h b/src/mc/entity/systems/RaidTriggerSystem.h index 783afa34ce..52072ae7a4 100644 --- a/src/mc/entity/systems/RaidTriggerSystem.h +++ b/src/mc/entity/systems/RaidTriggerSystem.h @@ -20,12 +20,6 @@ struct VillageManagerComponent; // clang-format on class RaidTriggerSystem { -public: - // prevent constructor by default - RaidTriggerSystem& operator=(RaidTriggerSystem const&); - RaidTriggerSystem(RaidTriggerSystem const&); - RaidTriggerSystem(); - public: // static functions // NOLINTBEGIN diff --git a/src/mc/entity/systems/RailActivatorSystem.h b/src/mc/entity/systems/RailActivatorSystem.h index 23d449a170..85d1852fc1 100644 --- a/src/mc/entity/systems/RailActivatorSystem.h +++ b/src/mc/entity/systems/RailActivatorSystem.h @@ -14,12 +14,6 @@ class RailActivatorComponent; // clang-format on class RailActivatorSystem : public ::ITickingSystem { -public: - // prevent constructor by default - RailActivatorSystem& operator=(RailActivatorSystem const&); - RailActivatorSystem(RailActivatorSystem const&); - RailActivatorSystem(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/entity/systems/RecipeUnlockingSystem.h b/src/mc/entity/systems/RecipeUnlockingSystem.h index 3ca4867968..1ae0901c72 100644 --- a/src/mc/entity/systems/RecipeUnlockingSystem.h +++ b/src/mc/entity/systems/RecipeUnlockingSystem.h @@ -42,12 +42,6 @@ class RecipeUnlockingSystem { InventoryChangedData(); }; -public: - // prevent constructor by default - RecipeUnlockingSystem& operator=(RecipeUnlockingSystem const&); - RecipeUnlockingSystem(RecipeUnlockingSystem const&); - RecipeUnlockingSystem(); - public: // static functions // NOLINTBEGIN diff --git a/src/mc/entity/systems/RemovePassengersSystem.h b/src/mc/entity/systems/RemovePassengersSystem.h index 19da6076d4..69c5b56d23 100644 --- a/src/mc/entity/systems/RemovePassengersSystem.h +++ b/src/mc/entity/systems/RemovePassengersSystem.h @@ -8,12 +8,6 @@ struct TickingSystemWithInfo; // clang-format on struct RemovePassengersSystem { -public: - // prevent constructor by default - RemovePassengersSystem& operator=(RemovePassengersSystem const&); - RemovePassengersSystem(RemovePassengersSystem const&); - RemovePassengersSystem(); - public: // static functions // NOLINTBEGIN diff --git a/src/mc/entity/systems/RemovePassengersTooLargeForVehicleSystem.h b/src/mc/entity/systems/RemovePassengersTooLargeForVehicleSystem.h index 68315da9e8..ce22dba331 100644 --- a/src/mc/entity/systems/RemovePassengersTooLargeForVehicleSystem.h +++ b/src/mc/entity/systems/RemovePassengersTooLargeForVehicleSystem.h @@ -21,12 +21,6 @@ struct TickingSystemWithInfo; // clang-format on class RemovePassengersTooLargeForVehicleSystem { -public: - // prevent constructor by default - RemovePassengersTooLargeForVehicleSystem& operator=(RemovePassengersTooLargeForVehicleSystem const&); - RemovePassengersTooLargeForVehicleSystem(RemovePassengersTooLargeForVehicleSystem const&); - RemovePassengersTooLargeForVehicleSystem(); - public: // static functions // NOLINTBEGIN diff --git a/src/mc/entity/systems/RemovePassengersWithoutSeatSystem.h b/src/mc/entity/systems/RemovePassengersWithoutSeatSystem.h index 0b4e7e735a..ccca721aa2 100644 --- a/src/mc/entity/systems/RemovePassengersWithoutSeatSystem.h +++ b/src/mc/entity/systems/RemovePassengersWithoutSeatSystem.h @@ -18,12 +18,6 @@ struct VehicleComponent; // clang-format on class RemovePassengersWithoutSeatSystem { -public: - // prevent constructor by default - RemovePassengersWithoutSeatSystem& operator=(RemovePassengersWithoutSeatSystem const&); - RemovePassengersWithoutSeatSystem(RemovePassengersWithoutSeatSystem const&); - RemovePassengersWithoutSeatSystem(); - public: // static functions // NOLINTBEGIN diff --git a/src/mc/entity/systems/RenderingRidingOffsetSystem.h b/src/mc/entity/systems/RenderingRidingOffsetSystem.h index 44f212fcf7..fa43ed2e58 100644 --- a/src/mc/entity/systems/RenderingRidingOffsetSystem.h +++ b/src/mc/entity/systems/RenderingRidingOffsetSystem.h @@ -9,12 +9,6 @@ struct PassengerRenderingRidingOffsetComponent; // clang-format on class RenderingRidingOffsetSystem { -public: - // prevent constructor by default - RenderingRidingOffsetSystem& operator=(RenderingRidingOffsetSystem const&); - RenderingRidingOffsetSystem(RenderingRidingOffsetSystem const&); - RenderingRidingOffsetSystem(); - public: // static functions // NOLINTBEGIN diff --git a/src/mc/entity/systems/ResetActionStopSystem.h b/src/mc/entity/systems/ResetActionStopSystem.h index 2c4cf94b0b..f07a7050a2 100644 --- a/src/mc/entity/systems/ResetActionStopSystem.h +++ b/src/mc/entity/systems/ResetActionStopSystem.h @@ -16,12 +16,6 @@ struct TickingSystemWithInfo; // clang-format on class ResetActionStopSystem { -public: - // prevent constructor by default - ResetActionStopSystem& operator=(ResetActionStopSystem const&); - ResetActionStopSystem(ResetActionStopSystem const&); - ResetActionStopSystem(); - public: // static functions // NOLINTBEGIN diff --git a/src/mc/entity/systems/ResetFrictionModifierSystem.h b/src/mc/entity/systems/ResetFrictionModifierSystem.h index d3951e7ee8..b8f3f7e241 100644 --- a/src/mc/entity/systems/ResetFrictionModifierSystem.h +++ b/src/mc/entity/systems/ResetFrictionModifierSystem.h @@ -16,12 +16,6 @@ struct TickingSystemWithInfo; // clang-format on class ResetFrictionModifierSystem { -public: - // prevent constructor by default - ResetFrictionModifierSystem& operator=(ResetFrictionModifierSystem const&); - ResetFrictionModifierSystem(ResetFrictionModifierSystem const&); - ResetFrictionModifierSystem(); - public: // static functions // NOLINTBEGIN diff --git a/src/mc/entity/systems/ResetJumpRidingScaleSystem.h b/src/mc/entity/systems/ResetJumpRidingScaleSystem.h index c7f5111104..d7ce72cb2e 100644 --- a/src/mc/entity/systems/ResetJumpRidingScaleSystem.h +++ b/src/mc/entity/systems/ResetJumpRidingScaleSystem.h @@ -11,12 +11,6 @@ struct VanillaClientGameplayComponent; // clang-format on class ResetJumpRidingScaleSystem { -public: - // prevent constructor by default - ResetJumpRidingScaleSystem& operator=(ResetJumpRidingScaleSystem const&); - ResetJumpRidingScaleSystem(ResetJumpRidingScaleSystem const&); - ResetJumpRidingScaleSystem(); - public: // static functions // NOLINTBEGIN diff --git a/src/mc/entity/systems/ResetMoveDirectionJumpPendingSystem.h b/src/mc/entity/systems/ResetMoveDirectionJumpPendingSystem.h index 46324e35c2..3155644ef8 100644 --- a/src/mc/entity/systems/ResetMoveDirectionJumpPendingSystem.h +++ b/src/mc/entity/systems/ResetMoveDirectionJumpPendingSystem.h @@ -21,12 +21,6 @@ struct VehicleComponent; // clang-format on class ResetMoveDirectionJumpPendingSystem { -public: - // prevent constructor by default - ResetMoveDirectionJumpPendingSystem& operator=(ResetMoveDirectionJumpPendingSystem const&); - ResetMoveDirectionJumpPendingSystem(ResetMoveDirectionJumpPendingSystem const&); - ResetMoveDirectionJumpPendingSystem(); - public: // static functions // NOLINTBEGIN diff --git a/src/mc/entity/systems/ResetPositionModeSystem.h b/src/mc/entity/systems/ResetPositionModeSystem.h index 5d2c560874..78735b7908 100644 --- a/src/mc/entity/systems/ResetPositionModeSystem.h +++ b/src/mc/entity/systems/ResetPositionModeSystem.h @@ -15,12 +15,6 @@ struct TickingSystemWithInfo; // clang-format on class ResetPositionModeSystem { -public: - // prevent constructor by default - ResetPositionModeSystem& operator=(ResetPositionModeSystem const&); - ResetPositionModeSystem(ResetPositionModeSystem const&); - ResetPositionModeSystem(); - public: // static functions // NOLINTBEGIN diff --git a/src/mc/entity/systems/RotateAndSetVelocitySystem.h b/src/mc/entity/systems/RotateAndSetVelocitySystem.h index b251e00f9c..dfbe46200d 100644 --- a/src/mc/entity/systems/RotateAndSetVelocitySystem.h +++ b/src/mc/entity/systems/RotateAndSetVelocitySystem.h @@ -12,12 +12,6 @@ struct VRMoveAdjustAngleComponent; // clang-format on struct RotateAndSetVelocitySystem { -public: - // prevent constructor by default - RotateAndSetVelocitySystem& operator=(RotateAndSetVelocitySystem const&); - RotateAndSetVelocitySystem(RotateAndSetVelocitySystem const&); - RotateAndSetVelocitySystem(); - public: // static functions // NOLINTBEGIN diff --git a/src/mc/entity/systems/SaveSurroundingChunksSystem.h b/src/mc/entity/systems/SaveSurroundingChunksSystem.h index b8a21905e8..e716f2fb6e 100644 --- a/src/mc/entity/systems/SaveSurroundingChunksSystem.h +++ b/src/mc/entity/systems/SaveSurroundingChunksSystem.h @@ -12,12 +12,6 @@ class EntityRegistry; // clang-format on class SaveSurroundingChunksSystem : public ::ITickingSystem { -public: - // prevent constructor by default - SaveSurroundingChunksSystem& operator=(SaveSurroundingChunksSystem const&); - SaveSurroundingChunksSystem(SaveSurroundingChunksSystem const&); - SaveSurroundingChunksSystem(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/entity/systems/ScaffoldingIntentSystem.h b/src/mc/entity/systems/ScaffoldingIntentSystem.h index d2015d9346..486321e016 100644 --- a/src/mc/entity/systems/ScaffoldingIntentSystem.h +++ b/src/mc/entity/systems/ScaffoldingIntentSystem.h @@ -8,12 +8,6 @@ struct TickingSystemWithInfo; // clang-format on class ScaffoldingIntentSystem { -public: - // prevent constructor by default - ScaffoldingIntentSystem& operator=(ScaffoldingIntentSystem const&); - ScaffoldingIntentSystem(ScaffoldingIntentSystem const&); - ScaffoldingIntentSystem(); - public: // static functions // NOLINTBEGIN diff --git a/src/mc/entity/systems/SchedulerSystem.h b/src/mc/entity/systems/SchedulerSystem.h index e0e6512566..0d2291afbe 100644 --- a/src/mc/entity/systems/SchedulerSystem.h +++ b/src/mc/entity/systems/SchedulerSystem.h @@ -11,12 +11,6 @@ class EntityRegistry; // clang-format on class SchedulerSystem : public ::ITickingSystem { -public: - // prevent constructor by default - SchedulerSystem& operator=(SchedulerSystem const&); - SchedulerSystem(SchedulerSystem const&); - SchedulerSystem(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/entity/systems/SendLinkPacketOfPassengersSystem.h b/src/mc/entity/systems/SendLinkPacketOfPassengersSystem.h index 7f59893260..42ae637a41 100644 --- a/src/mc/entity/systems/SendLinkPacketOfPassengersSystem.h +++ b/src/mc/entity/systems/SendLinkPacketOfPassengersSystem.h @@ -8,12 +8,6 @@ struct TickingSystemWithInfo; // clang-format on struct SendLinkPacketOfPassengersSystem { -public: - // prevent constructor by default - SendLinkPacketOfPassengersSystem& operator=(SendLinkPacketOfPassengersSystem const&); - SendLinkPacketOfPassengersSystem(SendLinkPacketOfPassengersSystem const&); - SendLinkPacketOfPassengersSystem(); - public: // static functions // NOLINTBEGIN diff --git a/src/mc/entity/systems/SendPacketsSystem.h b/src/mc/entity/systems/SendPacketsSystem.h index c334a4475f..1abcbd8413 100644 --- a/src/mc/entity/systems/SendPacketsSystem.h +++ b/src/mc/entity/systems/SendPacketsSystem.h @@ -8,12 +8,6 @@ struct TickingSystemWithInfo; // clang-format on struct SendPacketsSystem { -public: - // prevent constructor by default - SendPacketsSystem& operator=(SendPacketsSystem const&); - SendPacketsSystem(SendPacketsSystem const&); - SendPacketsSystem(); - public: // static functions // NOLINTBEGIN diff --git a/src/mc/entity/systems/SendPassengerJumpPacketSystem.h b/src/mc/entity/systems/SendPassengerJumpPacketSystem.h index b856260942..cf895fc920 100644 --- a/src/mc/entity/systems/SendPassengerJumpPacketSystem.h +++ b/src/mc/entity/systems/SendPassengerJumpPacketSystem.h @@ -8,12 +8,6 @@ struct TickingSystemWithInfo; // clang-format on class SendPassengerJumpPacketSystem { -public: - // prevent constructor by default - SendPassengerJumpPacketSystem& operator=(SendPassengerJumpPacketSystem const&); - SendPassengerJumpPacketSystem(SendPassengerJumpPacketSystem const&); - SendPassengerJumpPacketSystem(); - public: // static functions // NOLINTBEGIN diff --git a/src/mc/entity/systems/SendPlayerAuthInputReceivedEventSystem.h b/src/mc/entity/systems/SendPlayerAuthInputReceivedEventSystem.h index 0a677c8191..d5fa8c059b 100644 --- a/src/mc/entity/systems/SendPlayerAuthInputReceivedEventSystem.h +++ b/src/mc/entity/systems/SendPlayerAuthInputReceivedEventSystem.h @@ -11,12 +11,6 @@ struct TickingSystemWithInfo; // clang-format on class SendPlayerAuthInputReceivedEventSystem { -public: - // prevent constructor by default - SendPlayerAuthInputReceivedEventSystem& operator=(SendPlayerAuthInputReceivedEventSystem const&); - SendPlayerAuthInputReceivedEventSystem(SendPlayerAuthInputReceivedEventSystem const&); - SendPlayerAuthInputReceivedEventSystem(); - public: // static functions // NOLINTBEGIN diff --git a/src/mc/entity/systems/SendPlayerInputPacketSystem.h b/src/mc/entity/systems/SendPlayerInputPacketSystem.h index c0be3eb03f..70964d173d 100644 --- a/src/mc/entity/systems/SendPlayerInputPacketSystem.h +++ b/src/mc/entity/systems/SendPlayerInputPacketSystem.h @@ -2,10 +2,4 @@ #include "mc/_HeaderOutputPredefine.h" -struct SendPlayerInputPacketSystem { -public: - // prevent constructor by default - SendPlayerInputPacketSystem& operator=(SendPlayerInputPacketSystem const&); - SendPlayerInputPacketSystem(SendPlayerInputPacketSystem const&); - SendPlayerInputPacketSystem(); -}; +struct SendPlayerInputPacketSystem {}; diff --git a/src/mc/entity/systems/SensingSystem.h b/src/mc/entity/systems/SensingSystem.h index 7d45785a00..614e3992dd 100644 --- a/src/mc/entity/systems/SensingSystem.h +++ b/src/mc/entity/systems/SensingSystem.h @@ -11,12 +11,6 @@ class EntityRegistry; // clang-format on class SensingSystem : public ::ITickingSystem { -public: - // prevent constructor by default - SensingSystem& operator=(SensingSystem const&); - SensingSystem(SensingSystem const&); - SensingSystem(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/entity/systems/ServerAnimationSystem.h b/src/mc/entity/systems/ServerAnimationSystem.h index c4508756e9..c15a6c622f 100644 --- a/src/mc/entity/systems/ServerAnimationSystem.h +++ b/src/mc/entity/systems/ServerAnimationSystem.h @@ -8,12 +8,6 @@ struct TickingSystemWithInfo; // clang-format on class ServerAnimationSystem { -public: - // prevent constructor by default - ServerAnimationSystem& operator=(ServerAnimationSystem const&); - ServerAnimationSystem(ServerAnimationSystem const&); - ServerAnimationSystem(); - public: // static functions // NOLINTBEGIN diff --git a/src/mc/entity/systems/ServerMoveInputHandlerSystem.h b/src/mc/entity/systems/ServerMoveInputHandlerSystem.h index e14b4696f3..e849ca19cb 100644 --- a/src/mc/entity/systems/ServerMoveInputHandlerSystem.h +++ b/src/mc/entity/systems/ServerMoveInputHandlerSystem.h @@ -10,12 +10,6 @@ struct TickingSystemWithInfo; // clang-format on struct ServerMoveInputHandlerSystem { -public: - // prevent constructor by default - ServerMoveInputHandlerSystem& operator=(ServerMoveInputHandlerSystem const&); - ServerMoveInputHandlerSystem(ServerMoveInputHandlerSystem const&); - ServerMoveInputHandlerSystem(); - public: // static functions // NOLINTBEGIN diff --git a/src/mc/entity/systems/ServerPlayerBroadcastMoveSystem.h b/src/mc/entity/systems/ServerPlayerBroadcastMoveSystem.h index 8ee113adb4..302ed839d7 100644 --- a/src/mc/entity/systems/ServerPlayerBroadcastMoveSystem.h +++ b/src/mc/entity/systems/ServerPlayerBroadcastMoveSystem.h @@ -8,12 +8,6 @@ struct TickingSystemWithInfo; // clang-format on struct ServerPlayerBroadcastMoveSystem { -public: - // prevent constructor by default - ServerPlayerBroadcastMoveSystem& operator=(ServerPlayerBroadcastMoveSystem const&); - ServerPlayerBroadcastMoveSystem(ServerPlayerBroadcastMoveSystem const&); - ServerPlayerBroadcastMoveSystem(); - public: // static functions // NOLINTBEGIN diff --git a/src/mc/entity/systems/ServerPlayerFallDamageSystem.h b/src/mc/entity/systems/ServerPlayerFallDamageSystem.h index 73cd8b32f1..f0f40fc046 100644 --- a/src/mc/entity/systems/ServerPlayerFallDamageSystem.h +++ b/src/mc/entity/systems/ServerPlayerFallDamageSystem.h @@ -25,12 +25,6 @@ struct WasOnGroundFlagComponent; // clang-format on class ServerPlayerFallDamageSystem { -public: - // prevent constructor by default - ServerPlayerFallDamageSystem& operator=(ServerPlayerFallDamageSystem const&); - ServerPlayerFallDamageSystem(ServerPlayerFallDamageSystem const&); - ServerPlayerFallDamageSystem(); - public: // static functions // NOLINTBEGIN diff --git a/src/mc/entity/systems/ServerPlayerMovementSystem.h b/src/mc/entity/systems/ServerPlayerMovementSystem.h index 7956af2329..cefddd2f7b 100644 --- a/src/mc/entity/systems/ServerPlayerMovementSystem.h +++ b/src/mc/entity/systems/ServerPlayerMovementSystem.h @@ -8,12 +8,6 @@ struct TickingSystemWithInfo; // clang-format on struct ServerPlayerMovementSystem { -public: - // prevent constructor by default - ServerPlayerMovementSystem& operator=(ServerPlayerMovementSystem const&); - ServerPlayerMovementSystem(ServerPlayerMovementSystem const&); - ServerPlayerMovementSystem(); - public: // static functions // NOLINTBEGIN diff --git a/src/mc/entity/systems/ServerScriptInputSystem.h b/src/mc/entity/systems/ServerScriptInputSystem.h index f773232b76..876e33d145 100644 --- a/src/mc/entity/systems/ServerScriptInputSystem.h +++ b/src/mc/entity/systems/ServerScriptInputSystem.h @@ -10,12 +10,6 @@ struct TickingSystemWithInfo; // clang-format on struct ServerScriptInputSystem { -public: - // prevent constructor by default - ServerScriptInputSystem& operator=(ServerScriptInputSystem const&); - ServerScriptInputSystem(ServerScriptInputSystem const&); - ServerScriptInputSystem(); - public: // static functions // NOLINTBEGIN diff --git a/src/mc/entity/systems/ServerTripodCameraTickingSystem.h b/src/mc/entity/systems/ServerTripodCameraTickingSystem.h index 672e4aced5..d96cd6a3b0 100644 --- a/src/mc/entity/systems/ServerTripodCameraTickingSystem.h +++ b/src/mc/entity/systems/ServerTripodCameraTickingSystem.h @@ -11,12 +11,6 @@ class EntityRegistry; // clang-format on class ServerTripodCameraTickingSystem : public ::ITickingSystem { -public: - // prevent constructor by default - ServerTripodCameraTickingSystem& operator=(ServerTripodCameraTickingSystem const&); - ServerTripodCameraTickingSystem(ServerTripodCameraTickingSystem const&); - ServerTripodCameraTickingSystem(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/entity/systems/SetActorLinkPacketSystem.h b/src/mc/entity/systems/SetActorLinkPacketSystem.h index 0b21eafc4b..a9890d8c91 100644 --- a/src/mc/entity/systems/SetActorLinkPacketSystem.h +++ b/src/mc/entity/systems/SetActorLinkPacketSystem.h @@ -8,12 +8,6 @@ struct TickingSystemWithInfo; // clang-format on struct SetActorLinkPacketSystem { -public: - // prevent constructor by default - SetActorLinkPacketSystem& operator=(SetActorLinkPacketSystem const&); - SetActorLinkPacketSystem(SetActorLinkPacketSystem const&); - SetActorLinkPacketSystem(); - public: // static functions // NOLINTBEGIN diff --git a/src/mc/entity/systems/SetPreviousPosRotSystem.h b/src/mc/entity/systems/SetPreviousPosRotSystem.h index ae40b3850f..82a818eb2c 100644 --- a/src/mc/entity/systems/SetPreviousPosRotSystem.h +++ b/src/mc/entity/systems/SetPreviousPosRotSystem.h @@ -14,12 +14,6 @@ struct StateVectorComponent; // clang-format on struct SetPreviousPosRotSystem { -public: - // prevent constructor by default - SetPreviousPosRotSystem& operator=(SetPreviousPosRotSystem const&); - SetPreviousPosRotSystem(SetPreviousPosRotSystem const&); - SetPreviousPosRotSystem(); - public: // static functions // NOLINTBEGIN diff --git a/src/mc/entity/systems/SetPreviousPositionSystem.h b/src/mc/entity/systems/SetPreviousPositionSystem.h index 3733377818..3b7467ada2 100644 --- a/src/mc/entity/systems/SetPreviousPositionSystem.h +++ b/src/mc/entity/systems/SetPreviousPositionSystem.h @@ -16,12 +16,6 @@ struct TickingSystemWithInfo; // clang-format on class SetPreviousPositionSystem { -public: - // prevent constructor by default - SetPreviousPositionSystem& operator=(SetPreviousPositionSystem const&); - SetPreviousPositionSystem(SetPreviousPositionSystem const&); - SetPreviousPositionSystem(); - public: // static functions // NOLINTBEGIN diff --git a/src/mc/entity/systems/SetPreviousWalkDistSystem.h b/src/mc/entity/systems/SetPreviousWalkDistSystem.h index cf9325ea0c..4f9b56da6f 100644 --- a/src/mc/entity/systems/SetPreviousWalkDistSystem.h +++ b/src/mc/entity/systems/SetPreviousWalkDistSystem.h @@ -15,12 +15,6 @@ struct WalkDistComponent; // clang-format on class SetPreviousWalkDistSystem { -public: - // prevent constructor by default - SetPreviousWalkDistSystem& operator=(SetPreviousWalkDistSystem const&); - SetPreviousWalkDistSystem(SetPreviousWalkDistSystem const&); - SetPreviousWalkDistSystem(); - public: // static functions // NOLINTBEGIN diff --git a/src/mc/entity/systems/SheepPreAIStepSystem.h b/src/mc/entity/systems/SheepPreAIStepSystem.h index dc16bc5e51..27e4ffa4d8 100644 --- a/src/mc/entity/systems/SheepPreAIStepSystem.h +++ b/src/mc/entity/systems/SheepPreAIStepSystem.h @@ -16,12 +16,6 @@ struct TickingSystemWithInfo; // clang-format on class SheepPreAIStepSystem { -public: - // prevent constructor by default - SheepPreAIStepSystem& operator=(SheepPreAIStepSystem const&); - SheepPreAIStepSystem(SheepPreAIStepSystem const&); - SheepPreAIStepSystem(); - public: // static functions // NOLINTBEGIN diff --git a/src/mc/entity/systems/ShulkerPostAiStepSystem.h b/src/mc/entity/systems/ShulkerPostAiStepSystem.h index 7091f44d17..499c07c20c 100644 --- a/src/mc/entity/systems/ShulkerPostAiStepSystem.h +++ b/src/mc/entity/systems/ShulkerPostAiStepSystem.h @@ -12,12 +12,6 @@ struct TickingSystemWithInfo; // clang-format on class ShulkerPostAiStepSystem { -public: - // prevent constructor by default - ShulkerPostAiStepSystem& operator=(ShulkerPostAiStepSystem const&); - ShulkerPostAiStepSystem(ShulkerPostAiStepSystem const&); - ShulkerPostAiStepSystem(); - public: // static functions // NOLINTBEGIN diff --git a/src/mc/entity/systems/SimulatedPlayerPostAIStepSystem.h b/src/mc/entity/systems/SimulatedPlayerPostAIStepSystem.h index 2379cc2528..fd5fe54e1d 100644 --- a/src/mc/entity/systems/SimulatedPlayerPostAIStepSystem.h +++ b/src/mc/entity/systems/SimulatedPlayerPostAIStepSystem.h @@ -16,12 +16,6 @@ struct TickingSystemWithInfo; // clang-format on class SimulatedPlayerPostAIStepSystem { -public: - // prevent constructor by default - SimulatedPlayerPostAIStepSystem& operator=(SimulatedPlayerPostAIStepSystem const&); - SimulatedPlayerPostAIStepSystem(SimulatedPlayerPostAIStepSystem const&); - SimulatedPlayerPostAIStepSystem(); - public: // static functions // NOLINTBEGIN diff --git a/src/mc/entity/systems/SimulatedPlayerPreAIStepSystem.h b/src/mc/entity/systems/SimulatedPlayerPreAIStepSystem.h index f575aaae9c..5191eee41b 100644 --- a/src/mc/entity/systems/SimulatedPlayerPreAIStepSystem.h +++ b/src/mc/entity/systems/SimulatedPlayerPreAIStepSystem.h @@ -16,12 +16,6 @@ struct TickingSystemWithInfo; // clang-format on class SimulatedPlayerPreAIStepSystem { -public: - // prevent constructor by default - SimulatedPlayerPreAIStepSystem& operator=(SimulatedPlayerPreAIStepSystem const&); - SimulatedPlayerPreAIStepSystem(SimulatedPlayerPreAIStepSystem const&); - SimulatedPlayerPreAIStepSystem(); - public: // static functions // NOLINTBEGIN diff --git a/src/mc/entity/systems/SlimePreNormalTickSystem.h b/src/mc/entity/systems/SlimePreNormalTickSystem.h index b263ab862a..990db744e5 100644 --- a/src/mc/entity/systems/SlimePreNormalTickSystem.h +++ b/src/mc/entity/systems/SlimePreNormalTickSystem.h @@ -20,12 +20,6 @@ struct TickingSystemWithInfo; // clang-format on class SlimePreNormalTickSystem { -public: - // prevent constructor by default - SlimePreNormalTickSystem& operator=(SlimePreNormalTickSystem const&); - SlimePreNormalTickSystem(SlimePreNormalTickSystem const&); - SlimePreNormalTickSystem(); - public: // static functions // NOLINTBEGIN diff --git a/src/mc/entity/systems/SneakingSystem.h b/src/mc/entity/systems/SneakingSystem.h index 51aa45f1b3..07056e61fe 100644 --- a/src/mc/entity/systems/SneakingSystem.h +++ b/src/mc/entity/systems/SneakingSystem.h @@ -31,12 +31,6 @@ class SneakingSystem : public ::IStrictTickingSystem<::StrictExecutionContext< ::GlobalRead<>, ::GlobalWrite<>, ::EntityFactoryT<>>> { -public: - // prevent constructor by default - SneakingSystem& operator=(SneakingSystem const&); - SneakingSystem(SneakingSystem const&); - SneakingSystem(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/entity/systems/SoulSpeedAttributeSystem.h b/src/mc/entity/systems/SoulSpeedAttributeSystem.h index 8a8f1006aa..1f24546a42 100644 --- a/src/mc/entity/systems/SoulSpeedAttributeSystem.h +++ b/src/mc/entity/systems/SoulSpeedAttributeSystem.h @@ -10,12 +10,6 @@ struct TickingSystemWithInfo; // clang-format on struct SoulSpeedAttributeSystem { -public: - // prevent constructor by default - SoulSpeedAttributeSystem& operator=(SoulSpeedAttributeSystem const&); - SoulSpeedAttributeSystem(SoulSpeedAttributeSystem const&); - SoulSpeedAttributeSystem(); - public: // static functions // NOLINTBEGIN diff --git a/src/mc/entity/systems/SoundEventSystemImpl.h b/src/mc/entity/systems/SoundEventSystemImpl.h index a9404a840c..2005ba6398 100644 --- a/src/mc/entity/systems/SoundEventSystemImpl.h +++ b/src/mc/entity/systems/SoundEventSystemImpl.h @@ -59,12 +59,6 @@ struct SoundEventSystemImpl : public ::IStrictTickingSystem<::StrictExecutionCon ::GlobalRead<>, ::GlobalWrite<>, ::EntityFactoryT<>>> { -public: - // prevent constructor by default - SoundEventSystemImpl& operator=(SoundEventSystemImpl const&); - SoundEventSystemImpl(SoundEventSystemImpl const&); - SoundEventSystemImpl(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/entity/systems/SpawnActorSystem.h b/src/mc/entity/systems/SpawnActorSystem.h index 543fef848f..9f61fdb3d9 100644 --- a/src/mc/entity/systems/SpawnActorSystem.h +++ b/src/mc/entity/systems/SpawnActorSystem.h @@ -11,12 +11,6 @@ class EntityRegistry; // clang-format on class SpawnActorSystem : public ::ITickingSystem { -public: - // prevent constructor by default - SpawnActorSystem& operator=(SpawnActorSystem const&); - SpawnActorSystem(SpawnActorSystem const&); - SpawnActorSystem(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/entity/systems/SquidPreAiStepSystem.h b/src/mc/entity/systems/SquidPreAiStepSystem.h index a18a7e7549..3be75d5deb 100644 --- a/src/mc/entity/systems/SquidPreAiStepSystem.h +++ b/src/mc/entity/systems/SquidPreAiStepSystem.h @@ -16,12 +16,6 @@ struct TickingSystemWithInfo; // clang-format on class SquidPreAiStepSystem { -public: - // prevent constructor by default - SquidPreAiStepSystem& operator=(SquidPreAiStepSystem const&); - SquidPreAiStepSystem(SquidPreAiStepSystem const&); - SquidPreAiStepSystem(); - public: // static functions // NOLINTBEGIN diff --git a/src/mc/entity/systems/StandingVehiclePostPositionPassengerSystem.h b/src/mc/entity/systems/StandingVehiclePostPositionPassengerSystem.h index c5902f66a1..c227d19bff 100644 --- a/src/mc/entity/systems/StandingVehiclePostPositionPassengerSystem.h +++ b/src/mc/entity/systems/StandingVehiclePostPositionPassengerSystem.h @@ -21,12 +21,6 @@ struct VehicleComponent; // clang-format on struct StandingVehiclePostPositionPassengerSystem { -public: - // prevent constructor by default - StandingVehiclePostPositionPassengerSystem& operator=(StandingVehiclePostPositionPassengerSystem const&); - StandingVehiclePostPositionPassengerSystem(StandingVehiclePostPositionPassengerSystem const&); - StandingVehiclePostPositionPassengerSystem(); - public: // static functions // NOLINTBEGIN diff --git a/src/mc/entity/systems/StartGlidingActionSystem.h b/src/mc/entity/systems/StartGlidingActionSystem.h index 159b7a813f..3dd447ef09 100644 --- a/src/mc/entity/systems/StartGlidingActionSystem.h +++ b/src/mc/entity/systems/StartGlidingActionSystem.h @@ -8,12 +8,6 @@ struct TickingSystemWithInfo; // clang-format on struct StartGlidingActionSystem { -public: - // prevent constructor by default - StartGlidingActionSystem& operator=(StartGlidingActionSystem const&); - StartGlidingActionSystem(StartGlidingActionSystem const&); - StartGlidingActionSystem(); - public: // static functions // NOLINTBEGIN diff --git a/src/mc/entity/systems/StartGlidingIntentSystem.h b/src/mc/entity/systems/StartGlidingIntentSystem.h index e4ef6faea5..175a855c0c 100644 --- a/src/mc/entity/systems/StartGlidingIntentSystem.h +++ b/src/mc/entity/systems/StartGlidingIntentSystem.h @@ -8,12 +8,6 @@ struct TickingSystemWithInfo; // clang-format on struct StartGlidingIntentSystem { -public: - // prevent constructor by default - StartGlidingIntentSystem& operator=(StartGlidingIntentSystem const&); - StartGlidingIntentSystem(StartGlidingIntentSystem const&); - StartGlidingIntentSystem(); - public: // static functions // NOLINTBEGIN diff --git a/src/mc/entity/systems/StopGlidingActionSystem.h b/src/mc/entity/systems/StopGlidingActionSystem.h index 6668e1a6ad..95fba4d605 100644 --- a/src/mc/entity/systems/StopGlidingActionSystem.h +++ b/src/mc/entity/systems/StopGlidingActionSystem.h @@ -8,12 +8,6 @@ struct TickingSystemWithInfo; // clang-format on struct StopGlidingActionSystem { -public: - // prevent constructor by default - StopGlidingActionSystem& operator=(StopGlidingActionSystem const&); - StopGlidingActionSystem(StopGlidingActionSystem const&); - StopGlidingActionSystem(); - public: // static functions // NOLINTBEGIN diff --git a/src/mc/entity/systems/StopGlidingIntentSystem.h b/src/mc/entity/systems/StopGlidingIntentSystem.h index f4d1da75e3..2fc0d19876 100644 --- a/src/mc/entity/systems/StopGlidingIntentSystem.h +++ b/src/mc/entity/systems/StopGlidingIntentSystem.h @@ -8,12 +8,6 @@ struct TickingSystemWithInfo; // clang-format on struct StopGlidingIntentSystem { -public: - // prevent constructor by default - StopGlidingIntentSystem& operator=(StopGlidingIntentSystem const&); - StopGlidingIntentSystem(StopGlidingIntentSystem const&); - StopGlidingIntentSystem(); - public: // static functions // NOLINTBEGIN diff --git a/src/mc/entity/systems/StoreAbilitiesForPlayerInputSystem.h b/src/mc/entity/systems/StoreAbilitiesForPlayerInputSystem.h index 82757bf2d9..e7098a2f98 100644 --- a/src/mc/entity/systems/StoreAbilitiesForPlayerInputSystem.h +++ b/src/mc/entity/systems/StoreAbilitiesForPlayerInputSystem.h @@ -8,12 +8,6 @@ struct TickingSystemWithInfo; // clang-format on struct StoreAbilitiesForPlayerInputSystem { -public: - // prevent constructor by default - StoreAbilitiesForPlayerInputSystem& operator=(StoreAbilitiesForPlayerInputSystem const&); - StoreAbilitiesForPlayerInputSystem(StoreAbilitiesForPlayerInputSystem const&); - StoreAbilitiesForPlayerInputSystem(); - public: // static functions // NOLINTBEGIN diff --git a/src/mc/entity/systems/StorePreviousRideStatsSystem.h b/src/mc/entity/systems/StorePreviousRideStatsSystem.h index e6945b2d34..bfac4a7988 100644 --- a/src/mc/entity/systems/StorePreviousRideStatsSystem.h +++ b/src/mc/entity/systems/StorePreviousRideStatsSystem.h @@ -18,12 +18,6 @@ struct VanillaClientGameplayComponent; // clang-format on class StorePreviousRideStatsSystem { -public: - // prevent constructor by default - StorePreviousRideStatsSystem& operator=(StorePreviousRideStatsSystem const&); - StorePreviousRideStatsSystem(StorePreviousRideStatsSystem const&); - StorePreviousRideStatsSystem(); - public: // static functions // NOLINTBEGIN diff --git a/src/mc/entity/systems/SwimControlSystem.h b/src/mc/entity/systems/SwimControlSystem.h index d87b1ea4d1..d0f5af6b80 100644 --- a/src/mc/entity/systems/SwimControlSystem.h +++ b/src/mc/entity/systems/SwimControlSystem.h @@ -8,12 +8,6 @@ struct TickingSystemWithInfo; // clang-format on struct SwimControlSystem { -public: - // prevent constructor by default - SwimControlSystem& operator=(SwimControlSystem const&); - SwimControlSystem(SwimControlSystem const&); - SwimControlSystem(); - public: // static functions // NOLINTBEGIN diff --git a/src/mc/entity/systems/SwimControlSystemImpl.h b/src/mc/entity/systems/SwimControlSystemImpl.h index ee8b2a6ca8..64d1187460 100644 --- a/src/mc/entity/systems/SwimControlSystemImpl.h +++ b/src/mc/entity/systems/SwimControlSystemImpl.h @@ -42,12 +42,6 @@ struct SwimControlSystemImpl ::GlobalRead<>, ::GlobalWrite<>, ::EntityFactoryT<>>> { -public: - // prevent constructor by default - SwimControlSystemImpl& operator=(SwimControlSystemImpl const&); - SwimControlSystemImpl(SwimControlSystemImpl const&); - SwimControlSystemImpl(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/entity/systems/SystemCategory.h b/src/mc/entity/systems/SystemCategory.h index 70e027e1fe..942a69718b 100644 --- a/src/mc/entity/systems/SystemCategory.h +++ b/src/mc/entity/systems/SystemCategory.h @@ -2,10 +2,4 @@ #include "mc/_HeaderOutputPredefine.h" -struct SystemCategory { -public: - // prevent constructor by default - SystemCategory& operator=(SystemCategory const&); - SystemCategory(SystemCategory const&); - SystemCategory(); -}; +struct SystemCategory {}; diff --git a/src/mc/entity/systems/TargetNearbySystem.h b/src/mc/entity/systems/TargetNearbySystem.h index 98b7dc2723..5f9a13d99a 100644 --- a/src/mc/entity/systems/TargetNearbySystem.h +++ b/src/mc/entity/systems/TargetNearbySystem.h @@ -11,12 +11,6 @@ class EntityRegistry; // clang-format on class TargetNearbySystem : public ::ITickingSystem { -public: - // prevent constructor by default - TargetNearbySystem& operator=(TargetNearbySystem const&); - TargetNearbySystem(TargetNearbySystem const&); - TargetNearbySystem(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/entity/systems/TeleportInterpolatorResetSystem.h b/src/mc/entity/systems/TeleportInterpolatorResetSystem.h index 55286abbd9..6a57d56034 100644 --- a/src/mc/entity/systems/TeleportInterpolatorResetSystem.h +++ b/src/mc/entity/systems/TeleportInterpolatorResetSystem.h @@ -20,12 +20,6 @@ struct TickingSystemWithInfo; // clang-format on class TeleportInterpolatorResetSystem { -public: - // prevent constructor by default - TeleportInterpolatorResetSystem& operator=(TeleportInterpolatorResetSystem const&); - TeleportInterpolatorResetSystem(TeleportInterpolatorResetSystem const&); - TeleportInterpolatorResetSystem(); - public: // static functions // NOLINTBEGIN diff --git a/src/mc/entity/systems/TeleportPositionModeEventSystem.h b/src/mc/entity/systems/TeleportPositionModeEventSystem.h index c1c6cc75d9..28ae429303 100644 --- a/src/mc/entity/systems/TeleportPositionModeEventSystem.h +++ b/src/mc/entity/systems/TeleportPositionModeEventSystem.h @@ -17,12 +17,6 @@ struct TickingSystemWithInfo; // clang-format on class TeleportPositionModeEventSystem { -public: - // prevent constructor by default - TeleportPositionModeEventSystem& operator=(TeleportPositionModeEventSystem const&); - TeleportPositionModeEventSystem(TeleportPositionModeEventSystem const&); - TeleportPositionModeEventSystem(); - public: // static functions // NOLINTBEGIN diff --git a/src/mc/entity/systems/TeleportSystem.h b/src/mc/entity/systems/TeleportSystem.h index dc81542f47..f66d677ad9 100644 --- a/src/mc/entity/systems/TeleportSystem.h +++ b/src/mc/entity/systems/TeleportSystem.h @@ -11,12 +11,6 @@ class EntityRegistry; // clang-format on class TeleportSystem : public ::ITickingSystem { -public: - // prevent constructor by default - TeleportSystem& operator=(TeleportSystem const&); - TeleportSystem(TeleportSystem const&); - TeleportSystem(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/entity/systems/ThrownTridentNormalTickSystem.h b/src/mc/entity/systems/ThrownTridentNormalTickSystem.h index 9d0d0aa704..7e6a7fb8cc 100644 --- a/src/mc/entity/systems/ThrownTridentNormalTickSystem.h +++ b/src/mc/entity/systems/ThrownTridentNormalTickSystem.h @@ -8,12 +8,6 @@ struct TickingSystemWithInfo; // clang-format on struct ThrownTridentNormalTickSystem { -public: - // prevent constructor by default - ThrownTridentNormalTickSystem& operator=(ThrownTridentNormalTickSystem const&); - ThrownTridentNormalTickSystem(ThrownTridentNormalTickSystem const&); - ThrownTridentNormalTickSystem(); - public: // static functions // NOLINTBEGIN diff --git a/src/mc/entity/systems/TimerSystem.h b/src/mc/entity/systems/TimerSystem.h index 52344bc60d..aa1477d120 100644 --- a/src/mc/entity/systems/TimerSystem.h +++ b/src/mc/entity/systems/TimerSystem.h @@ -11,12 +11,6 @@ class EntityRegistry; // clang-format on class TimerSystem : public ::ITickingSystem { -public: - // prevent constructor by default - TimerSystem& operator=(TimerSystem const&); - TimerSystem(TimerSystem const&); - TimerSystem(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/entity/systems/TradeableSystem.h b/src/mc/entity/systems/TradeableSystem.h index c4bf74416f..ce2084d53a 100644 --- a/src/mc/entity/systems/TradeableSystem.h +++ b/src/mc/entity/systems/TradeableSystem.h @@ -11,12 +11,6 @@ class EntityRegistry; // clang-format on class TradeableSystem : public ::ITickingSystem { -public: - // prevent constructor by default - TradeableSystem& operator=(TradeableSystem const&); - TradeableSystem(TradeableSystem const&); - TradeableSystem(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/entity/systems/TrailSystem.h b/src/mc/entity/systems/TrailSystem.h index e5f649859d..c89344f9db 100644 --- a/src/mc/entity/systems/TrailSystem.h +++ b/src/mc/entity/systems/TrailSystem.h @@ -34,12 +34,6 @@ class TrailSystem : public ::ITickingSystem { BlockPositions(); }; -public: - // prevent constructor by default - TrailSystem& operator=(TrailSystem const&); - TrailSystem(TrailSystem const&); - TrailSystem(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/entity/systems/TransformationSystem.h b/src/mc/entity/systems/TransformationSystem.h index b79e82041d..4e98fa01ba 100644 --- a/src/mc/entity/systems/TransformationSystem.h +++ b/src/mc/entity/systems/TransformationSystem.h @@ -11,12 +11,6 @@ class EntityRegistry; // clang-format on class TransformationSystem : public ::ITickingSystem { -public: - // prevent constructor by default - TransformationSystem& operator=(TransformationSystem const&); - TransformationSystem(TransformationSystem const&); - TransformationSystem(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/entity/systems/TravelMoveRequestSystem.h b/src/mc/entity/systems/TravelMoveRequestSystem.h index 0ef1efa6c0..f74a8f7d8f 100644 --- a/src/mc/entity/systems/TravelMoveRequestSystem.h +++ b/src/mc/entity/systems/TravelMoveRequestSystem.h @@ -8,12 +8,6 @@ struct TickingSystemWithInfo; // clang-format on struct TravelMoveRequestSystem { -public: - // prevent constructor by default - TravelMoveRequestSystem& operator=(TravelMoveRequestSystem const&); - TravelMoveRequestSystem(TravelMoveRequestSystem const&); - TravelMoveRequestSystem(); - public: // static functions // NOLINTBEGIN diff --git a/src/mc/entity/systems/TravelTypeSensingSystem.h b/src/mc/entity/systems/TravelTypeSensingSystem.h index 24d22f14b4..ddc941c0f1 100644 --- a/src/mc/entity/systems/TravelTypeSensingSystem.h +++ b/src/mc/entity/systems/TravelTypeSensingSystem.h @@ -30,12 +30,6 @@ struct WaterTravelFlagComponent; // clang-format on struct TravelTypeSensingSystem { -public: - // prevent constructor by default - TravelTypeSensingSystem& operator=(TravelTypeSensingSystem const&); - TravelTypeSensingSystem(TravelTypeSensingSystem const&); - TravelTypeSensingSystem(); - public: // static functions // NOLINTBEGIN diff --git a/src/mc/entity/systems/TriggerJumpSystem.h b/src/mc/entity/systems/TriggerJumpSystem.h index 97186d1ab5..c48d055d38 100644 --- a/src/mc/entity/systems/TriggerJumpSystem.h +++ b/src/mc/entity/systems/TriggerJumpSystem.h @@ -26,12 +26,6 @@ struct WasInWaterFlagComponent; // clang-format on struct TriggerJumpSystem { -public: - // prevent constructor by default - TriggerJumpSystem& operator=(TriggerJumpSystem const&); - TriggerJumpSystem(TriggerJumpSystem const&); - TriggerJumpSystem(); - public: // static functions // NOLINTBEGIN diff --git a/src/mc/entity/systems/TripodCameraTakePictureSystem.h b/src/mc/entity/systems/TripodCameraTakePictureSystem.h index bd86be0057..a45a58db6f 100644 --- a/src/mc/entity/systems/TripodCameraTakePictureSystem.h +++ b/src/mc/entity/systems/TripodCameraTakePictureSystem.h @@ -11,12 +11,6 @@ class EntityRegistry; // clang-format on class TripodCameraTakePictureSystem : public ::ITickingSystem { -public: - // prevent constructor by default - TripodCameraTakePictureSystem& operator=(TripodCameraTakePictureSystem const&); - TripodCameraTakePictureSystem(TripodCameraTakePictureSystem const&); - TripodCameraTakePictureSystem(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/entity/systems/TryExitVehicleSystem.h b/src/mc/entity/systems/TryExitVehicleSystem.h index d8aa4d0d25..28beb03f4d 100644 --- a/src/mc/entity/systems/TryExitVehicleSystem.h +++ b/src/mc/entity/systems/TryExitVehicleSystem.h @@ -26,12 +26,6 @@ struct VehicleComponent; // clang-format on class TryExitVehicleSystem { -public: - // prevent constructor by default - TryExitVehicleSystem& operator=(TryExitVehicleSystem const&); - TryExitVehicleSystem(TryExitVehicleSystem const&); - TryExitVehicleSystem(); - public: // static functions // NOLINTBEGIN diff --git a/src/mc/entity/systems/UnderWaterSensingSystem.h b/src/mc/entity/systems/UnderWaterSensingSystem.h index 40d2dd4e94..e5f42ae3e7 100644 --- a/src/mc/entity/systems/UnderWaterSensingSystem.h +++ b/src/mc/entity/systems/UnderWaterSensingSystem.h @@ -72,12 +72,6 @@ struct UnderWaterSensingSystem : public ::IStrictTickingSystem<::StrictExecution ::GlobalRead<::LocalConstBlockSourceFactoryComponent>, ::GlobalWrite<>, ::EntityFactoryT<>>> { -public: - // prevent constructor by default - UnderWaterSensingSystem& operator=(UnderWaterSensingSystem const&); - UnderWaterSensingSystem(UnderWaterSensingSystem const&); - UnderWaterSensingSystem(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/entity/systems/UpdateAISystem.h b/src/mc/entity/systems/UpdateAISystem.h index f118b9abd3..d06b60724f 100644 --- a/src/mc/entity/systems/UpdateAISystem.h +++ b/src/mc/entity/systems/UpdateAISystem.h @@ -8,12 +8,6 @@ struct TickingSystemWithInfo; // clang-format on class UpdateAISystem { -public: - // prevent constructor by default - UpdateAISystem& operator=(UpdateAISystem const&); - UpdateAISystem(UpdateAISystem const&); - UpdateAISystem(); - public: // static functions // NOLINTBEGIN diff --git a/src/mc/entity/systems/UpdateAttributesSystem.h b/src/mc/entity/systems/UpdateAttributesSystem.h index a0ac85b334..d1ab18258a 100644 --- a/src/mc/entity/systems/UpdateAttributesSystem.h +++ b/src/mc/entity/systems/UpdateAttributesSystem.h @@ -9,12 +9,6 @@ struct TickingSystemWithInfo; // clang-format on struct UpdateAttributesSystem { -public: - // prevent constructor by default - UpdateAttributesSystem& operator=(UpdateAttributesSystem const&); - UpdateAttributesSystem(UpdateAttributesSystem const&); - UpdateAttributesSystem(); - public: // static functions // NOLINTBEGIN diff --git a/src/mc/entity/systems/UpdateBoundingBoxSystem.h b/src/mc/entity/systems/UpdateBoundingBoxSystem.h index 9064de9f65..b4b3d778c5 100644 --- a/src/mc/entity/systems/UpdateBoundingBoxSystem.h +++ b/src/mc/entity/systems/UpdateBoundingBoxSystem.h @@ -10,12 +10,6 @@ struct TickingSystemWithInfo; // clang-format on class UpdateBoundingBoxSystem { -public: - // prevent constructor by default - UpdateBoundingBoxSystem& operator=(UpdateBoundingBoxSystem const&); - UpdateBoundingBoxSystem(UpdateBoundingBoxSystem const&); - UpdateBoundingBoxSystem(); - public: // static functions // NOLINTBEGIN diff --git a/src/mc/entity/systems/UpdateRenderPosSystem.h b/src/mc/entity/systems/UpdateRenderPosSystem.h index 41c6a4e954..e424f8e577 100644 --- a/src/mc/entity/systems/UpdateRenderPosSystem.h +++ b/src/mc/entity/systems/UpdateRenderPosSystem.h @@ -16,12 +16,6 @@ struct TickingSystemWithInfo; // clang-format on class UpdateRenderPosSystem { -public: - // prevent constructor by default - UpdateRenderPosSystem& operator=(UpdateRenderPosSystem const&); - UpdateRenderPosSystem(UpdateRenderPosSystem const&); - UpdateRenderPosSystem(); - public: // static functions // NOLINTBEGIN diff --git a/src/mc/entity/systems/UpdateServerPlayerInputSystem.h b/src/mc/entity/systems/UpdateServerPlayerInputSystem.h index 1bfc09b41d..208a326767 100644 --- a/src/mc/entity/systems/UpdateServerPlayerInputSystem.h +++ b/src/mc/entity/systems/UpdateServerPlayerInputSystem.h @@ -8,12 +8,6 @@ struct TickingSystemWithInfo; // clang-format on struct UpdateServerPlayerInputSystem { -public: - // prevent constructor by default - UpdateServerPlayerInputSystem& operator=(UpdateServerPlayerInputSystem const&); - UpdateServerPlayerInputSystem(UpdateServerPlayerInputSystem const&); - UpdateServerPlayerInputSystem(); - public: // static functions // NOLINTBEGIN diff --git a/src/mc/entity/systems/UpdateWaterStateRequestSystem.h b/src/mc/entity/systems/UpdateWaterStateRequestSystem.h index 4ac45b7e90..61e0889a17 100644 --- a/src/mc/entity/systems/UpdateWaterStateRequestSystem.h +++ b/src/mc/entity/systems/UpdateWaterStateRequestSystem.h @@ -8,12 +8,6 @@ struct TickingSystemWithInfo; // clang-format on class UpdateWaterStateRequestSystem { -public: - // prevent constructor by default - UpdateWaterStateRequestSystem& operator=(UpdateWaterStateRequestSystem const&); - UpdateWaterStateRequestSystem(UpdateWaterStateRequestSystem const&); - UpdateWaterStateRequestSystem(); - public: // static functions // NOLINTBEGIN diff --git a/src/mc/entity/systems/VRBobControlSystem.h b/src/mc/entity/systems/VRBobControlSystem.h index 633462d7cd..07be407444 100644 --- a/src/mc/entity/systems/VRBobControlSystem.h +++ b/src/mc/entity/systems/VRBobControlSystem.h @@ -22,12 +22,6 @@ struct WasInWaterFlagComponent; // clang-format on struct VRBobControlSystem { -public: - // prevent constructor by default - VRBobControlSystem& operator=(VRBobControlSystem const&); - VRBobControlSystem(VRBobControlSystem const&); - VRBobControlSystem(); - public: // static functions // NOLINTBEGIN diff --git a/src/mc/entity/systems/VRFlyTravelSystem.h b/src/mc/entity/systems/VRFlyTravelSystem.h index e47c74dab6..d2ed306eea 100644 --- a/src/mc/entity/systems/VRFlyTravelSystem.h +++ b/src/mc/entity/systems/VRFlyTravelSystem.h @@ -8,12 +8,6 @@ struct TickingSystemWithInfo; // clang-format on struct VRFlyTravelSystem { -public: - // prevent constructor by default - VRFlyTravelSystem& operator=(VRFlyTravelSystem const&); - VRFlyTravelSystem(VRFlyTravelSystem const&); - VRFlyTravelSystem(); - public: // static functions // NOLINTBEGIN diff --git a/src/mc/entity/systems/ValidateClientPlayerActionSystem.h b/src/mc/entity/systems/ValidateClientPlayerActionSystem.h index d59d00b8ae..61ba4c4734 100644 --- a/src/mc/entity/systems/ValidateClientPlayerActionSystem.h +++ b/src/mc/entity/systems/ValidateClientPlayerActionSystem.h @@ -8,12 +8,6 @@ class EntitySystems; // clang-format on struct ValidateClientPlayerActionSystem { -public: - // prevent constructor by default - ValidateClientPlayerActionSystem& operator=(ValidateClientPlayerActionSystem const&); - ValidateClientPlayerActionSystem(ValidateClientPlayerActionSystem const&); - ValidateClientPlayerActionSystem(); - public: // static functions // NOLINTBEGIN diff --git a/src/mc/entity/systems/VariableMaxAutoStepSystem.h b/src/mc/entity/systems/VariableMaxAutoStepSystem.h index 93ac691e9a..4b12b31a16 100644 --- a/src/mc/entity/systems/VariableMaxAutoStepSystem.h +++ b/src/mc/entity/systems/VariableMaxAutoStepSystem.h @@ -8,12 +8,6 @@ struct TickingSystemWithInfo; // clang-format on class VariableMaxAutoStepSystem { -public: - // prevent constructor by default - VariableMaxAutoStepSystem& operator=(VariableMaxAutoStepSystem const&); - VariableMaxAutoStepSystem(VariableMaxAutoStepSystem const&); - VariableMaxAutoStepSystem(); - public: // static functions // NOLINTBEGIN diff --git a/src/mc/entity/systems/VehicleClientPositionPassengerSystem.h b/src/mc/entity/systems/VehicleClientPositionPassengerSystem.h index 0dcc21df3e..f6dd6e7c39 100644 --- a/src/mc/entity/systems/VehicleClientPositionPassengerSystem.h +++ b/src/mc/entity/systems/VehicleClientPositionPassengerSystem.h @@ -8,12 +8,6 @@ struct TickingSystemWithInfo; // clang-format on struct VehicleClientPositionPassengerSystem { -public: - // prevent constructor by default - VehicleClientPositionPassengerSystem& operator=(VehicleClientPositionPassengerSystem const&); - VehicleClientPositionPassengerSystem(VehicleClientPositionPassengerSystem const&); - VehicleClientPositionPassengerSystem(); - public: // static functions // NOLINTBEGIN diff --git a/src/mc/entity/systems/VehicleInputSwitchRequestSystem.h b/src/mc/entity/systems/VehicleInputSwitchRequestSystem.h index 407afc0fe7..43ab47405f 100644 --- a/src/mc/entity/systems/VehicleInputSwitchRequestSystem.h +++ b/src/mc/entity/systems/VehicleInputSwitchRequestSystem.h @@ -8,12 +8,6 @@ struct TickingSystemWithInfo; // clang-format on struct VehicleInputSwitchRequestSystem { -public: - // prevent constructor by default - VehicleInputSwitchRequestSystem& operator=(VehicleInputSwitchRequestSystem const&); - VehicleInputSwitchRequestSystem(VehicleInputSwitchRequestSystem const&); - VehicleInputSwitchRequestSystem(); - public: // static functions // NOLINTBEGIN diff --git a/src/mc/entity/systems/VehicleServerMolangSeatPositionSystem.h b/src/mc/entity/systems/VehicleServerMolangSeatPositionSystem.h index 2120238a4f..92bf2833c8 100644 --- a/src/mc/entity/systems/VehicleServerMolangSeatPositionSystem.h +++ b/src/mc/entity/systems/VehicleServerMolangSeatPositionSystem.h @@ -17,12 +17,6 @@ struct VehicleComponent; // clang-format on class VehicleServerMolangSeatPositionSystem { -public: - // prevent constructor by default - VehicleServerMolangSeatPositionSystem& operator=(VehicleServerMolangSeatPositionSystem const&); - VehicleServerMolangSeatPositionSystem(VehicleServerMolangSeatPositionSystem const&); - VehicleServerMolangSeatPositionSystem(); - public: // static functions // NOLINTBEGIN diff --git a/src/mc/entity/systems/VehicleServerPositionPassengerSystem.h b/src/mc/entity/systems/VehicleServerPositionPassengerSystem.h index ed76b2118c..d6175071ea 100644 --- a/src/mc/entity/systems/VehicleServerPositionPassengerSystem.h +++ b/src/mc/entity/systems/VehicleServerPositionPassengerSystem.h @@ -27,12 +27,6 @@ struct VehicleComponent; // clang-format on class VehicleServerPositionPassengerSystem { -public: - // prevent constructor by default - VehicleServerPositionPassengerSystem& operator=(VehicleServerPositionPassengerSystem const&); - VehicleServerPositionPassengerSystem(VehicleServerPositionPassengerSystem const&); - VehicleServerPositionPassengerSystem(); - public: // static functions // NOLINTBEGIN diff --git a/src/mc/entity/systems/VehicleServerSeatPositionSystem.h b/src/mc/entity/systems/VehicleServerSeatPositionSystem.h index ec7f05ee9d..66a423b9b8 100644 --- a/src/mc/entity/systems/VehicleServerSeatPositionSystem.h +++ b/src/mc/entity/systems/VehicleServerSeatPositionSystem.h @@ -24,12 +24,6 @@ struct VehicleComponent; // clang-format on class VehicleServerSeatPositionSystem { -public: - // prevent constructor by default - VehicleServerSeatPositionSystem& operator=(VehicleServerSeatPositionSystem const&); - VehicleServerSeatPositionSystem(VehicleServerSeatPositionSystem const&); - VehicleServerSeatPositionSystem(); - public: // static functions // NOLINTBEGIN diff --git a/src/mc/entity/systems/VerticalCollisionSystem.h b/src/mc/entity/systems/VerticalCollisionSystem.h index 7660551aca..f7781a7165 100644 --- a/src/mc/entity/systems/VerticalCollisionSystem.h +++ b/src/mc/entity/systems/VerticalCollisionSystem.h @@ -45,12 +45,6 @@ class VerticalCollisionSystem ::GlobalRead<::LocalConstBlockSourceFactoryComponent>, ::GlobalWrite<>, ::EntityFactoryT<>>> { -public: - // prevent constructor by default - VerticalCollisionSystem& operator=(VerticalCollisionSystem const&); - VerticalCollisionSystem(VerticalCollisionSystem const&); - VerticalCollisionSystem(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/entity/systems/VibrationListenerSystem.h b/src/mc/entity/systems/VibrationListenerSystem.h index e097b9798d..1d57a8994c 100644 --- a/src/mc/entity/systems/VibrationListenerSystem.h +++ b/src/mc/entity/systems/VibrationListenerSystem.h @@ -11,12 +11,6 @@ class EntityRegistry; // clang-format on class VibrationListenerSystem : public ::ITickingSystem { -public: - // prevent constructor by default - VibrationListenerSystem& operator=(VibrationListenerSystem const&); - VibrationListenerSystem(VibrationListenerSystem const&); - VibrationListenerSystem(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/entity/systems/VillagerV2PreTravelSystem.h b/src/mc/entity/systems/VillagerV2PreTravelSystem.h index 3af565495a..640b287ff1 100644 --- a/src/mc/entity/systems/VillagerV2PreTravelSystem.h +++ b/src/mc/entity/systems/VillagerV2PreTravelSystem.h @@ -18,12 +18,6 @@ struct VillagerV2FlagComponent; // clang-format on struct VillagerV2PreTravelSystem { -public: - // prevent constructor by default - VillagerV2PreTravelSystem& operator=(VillagerV2PreTravelSystem const&); - VillagerV2PreTravelSystem(VillagerV2PreTravelSystem const&); - VillagerV2PreTravelSystem(); - public: // static functions // NOLINTBEGIN diff --git a/src/mc/entity/systems/WardenSpawnTrackerSystem.h b/src/mc/entity/systems/WardenSpawnTrackerSystem.h index af8fd51ac0..b11e4a88e1 100644 --- a/src/mc/entity/systems/WardenSpawnTrackerSystem.h +++ b/src/mc/entity/systems/WardenSpawnTrackerSystem.h @@ -14,12 +14,6 @@ class Player; // clang-format on class WardenSpawnTrackerSystem : public ::ITickingSystem, public ::LevelEventListener { -public: - // prevent constructor by default - WardenSpawnTrackerSystem& operator=(WardenSpawnTrackerSystem const&); - WardenSpawnTrackerSystem(WardenSpawnTrackerSystem const&); - WardenSpawnTrackerSystem(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/entity/systems/WaterAnimalPreAIStepSystem.h b/src/mc/entity/systems/WaterAnimalPreAIStepSystem.h index 305409ac50..20cb8b12de 100644 --- a/src/mc/entity/systems/WaterAnimalPreAIStepSystem.h +++ b/src/mc/entity/systems/WaterAnimalPreAIStepSystem.h @@ -16,12 +16,6 @@ struct WaterAnimalFlagComponent; // clang-format on class WaterAnimalPreAIStepSystem { -public: - // prevent constructor by default - WaterAnimalPreAIStepSystem& operator=(WaterAnimalPreAIStepSystem const&); - WaterAnimalPreAIStepSystem(WaterAnimalPreAIStepSystem const&); - WaterAnimalPreAIStepSystem(); - public: // static functions // NOLINTBEGIN diff --git a/src/mc/entity/systems/WaterMoveSystem.h b/src/mc/entity/systems/WaterMoveSystem.h index 8cd186d0f2..57f6538e68 100644 --- a/src/mc/entity/systems/WaterMoveSystem.h +++ b/src/mc/entity/systems/WaterMoveSystem.h @@ -8,12 +8,6 @@ struct TickingSystemWithInfo; // clang-format on class WaterMoveSystem { -public: - // prevent constructor by default - WaterMoveSystem& operator=(WaterMoveSystem const&); - WaterMoveSystem(WaterMoveSystem const&); - WaterMoveSystem(); - public: // static functions // NOLINTBEGIN diff --git a/src/mc/entity/systems/WaterSinkInputSystem.h b/src/mc/entity/systems/WaterSinkInputSystem.h index f2f74b62e9..46b8e67140 100644 --- a/src/mc/entity/systems/WaterSinkInputSystem.h +++ b/src/mc/entity/systems/WaterSinkInputSystem.h @@ -19,12 +19,6 @@ struct WasInWaterFlagComponent; // clang-format on class WaterSinkInputSystem { -public: - // prevent constructor by default - WaterSinkInputSystem& operator=(WaterSinkInputSystem const&); - WaterSinkInputSystem(WaterSinkInputSystem const&); - WaterSinkInputSystem(); - public: // static functions // NOLINTBEGIN diff --git a/src/mc/entity/systems/WaterTravelSystem.h b/src/mc/entity/systems/WaterTravelSystem.h index 8c63b9c6c9..182d9f2b7d 100644 --- a/src/mc/entity/systems/WaterTravelSystem.h +++ b/src/mc/entity/systems/WaterTravelSystem.h @@ -24,12 +24,6 @@ struct WaterWalkSpeedEnchantComponent; // clang-format on class WaterTravelSystem { -public: - // prevent constructor by default - WaterTravelSystem& operator=(WaterTravelSystem const&); - WaterTravelSystem(WaterTravelSystem const&); - WaterTravelSystem(); - public: // static functions // NOLINTBEGIN diff --git a/src/mc/entity/systems/WitchPreAIStepSystem.h b/src/mc/entity/systems/WitchPreAIStepSystem.h index 0849de3be5..bc369eaedd 100644 --- a/src/mc/entity/systems/WitchPreAIStepSystem.h +++ b/src/mc/entity/systems/WitchPreAIStepSystem.h @@ -16,12 +16,6 @@ struct WitchFlagComponent; // clang-format on class WitchPreAIStepSystem { -public: - // prevent constructor by default - WitchPreAIStepSystem& operator=(WitchPreAIStepSystem const&); - WitchPreAIStepSystem(WitchPreAIStepSystem const&); - WitchPreAIStepSystem(); - public: // static functions // NOLINTBEGIN diff --git a/src/mc/entity/systems/WitherBossPreAIStepSystem.h b/src/mc/entity/systems/WitherBossPreAIStepSystem.h index 31e3207c2e..6195e69444 100644 --- a/src/mc/entity/systems/WitherBossPreAIStepSystem.h +++ b/src/mc/entity/systems/WitherBossPreAIStepSystem.h @@ -18,12 +18,6 @@ struct WitherBossPreAIStepResultComponent; // clang-format on class WitherBossPreAIStepSystem { -public: - // prevent constructor by default - WitherBossPreAIStepSystem& operator=(WitherBossPreAIStepSystem const&); - WitherBossPreAIStepSystem(WitherBossPreAIStepSystem const&); - WitherBossPreAIStepSystem(); - public: // static functions // NOLINTBEGIN diff --git a/src/mc/entity/systems/agent/AgentAnimationSystem.h b/src/mc/entity/systems/agent/AgentAnimationSystem.h index 064544d9a3..b904e8ac00 100644 --- a/src/mc/entity/systems/agent/AgentAnimationSystem.h +++ b/src/mc/entity/systems/agent/AgentAnimationSystem.h @@ -11,12 +11,6 @@ class EntityRegistry; // clang-format on class AgentAnimationSystem : public ::ITickingSystem { -public: - // prevent constructor by default - AgentAnimationSystem& operator=(AgentAnimationSystem const&); - AgentAnimationSystem(AgentAnimationSystem const&); - AgentAnimationSystem(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/entity/systems/block_collisions_system/BlockCollisionResolutionVectorComponent.h b/src/mc/entity/systems/block_collisions_system/BlockCollisionResolutionVectorComponent.h index 2c204f4538..53bd849535 100644 --- a/src/mc/entity/systems/block_collisions_system/BlockCollisionResolutionVectorComponent.h +++ b/src/mc/entity/systems/block_collisions_system/BlockCollisionResolutionVectorComponent.h @@ -7,12 +7,6 @@ namespace BlockCollisionsSystem { -struct BlockCollisionResolutionVectorComponent : public ::Vec3Component { -public: - // prevent constructor by default - BlockCollisionResolutionVectorComponent& operator=(BlockCollisionResolutionVectorComponent const&); - BlockCollisionResolutionVectorComponent(BlockCollisionResolutionVectorComponent const&); - BlockCollisionResolutionVectorComponent(); -}; +struct BlockCollisionResolutionVectorComponent : public ::Vec3Component {}; } // namespace BlockCollisionsSystem diff --git a/src/mc/entity/systems/camera/aimassist/CameraAimAssistCachePositionDataSystem.h b/src/mc/entity/systems/camera/aimassist/CameraAimAssistCachePositionDataSystem.h index 85f3bb766a..1c81028b6b 100644 --- a/src/mc/entity/systems/camera/aimassist/CameraAimAssistCachePositionDataSystem.h +++ b/src/mc/entity/systems/camera/aimassist/CameraAimAssistCachePositionDataSystem.h @@ -64,12 +64,6 @@ class CameraAimAssistCachePositionDataSystem : public ::IStrictTickingSystem<::S ::GlobalRead<>, ::GlobalWrite<>, ::EntityFactoryT<>>> { -public: - // prevent constructor by default - CameraAimAssistCachePositionDataSystem& operator=(CameraAimAssistCachePositionDataSystem const&); - CameraAimAssistCachePositionDataSystem(CameraAimAssistCachePositionDataSystem const&); - CameraAimAssistCachePositionDataSystem(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/entity/systems/client_rewind/AccumulateSystem.h b/src/mc/entity/systems/client_rewind/AccumulateSystem.h index f2d8c4df3c..3eb79b4f26 100644 --- a/src/mc/entity/systems/client_rewind/AccumulateSystem.h +++ b/src/mc/entity/systems/client_rewind/AccumulateSystem.h @@ -42,12 +42,6 @@ struct AccumulateSystem : public ::IStrictTickingSystem<::StrictExecutionContext ::GlobalRead<>, ::GlobalWrite<>, ::EntityFactoryT<>>> { -public: - // prevent constructor by default - AccumulateSystem& operator=(AccumulateSystem const&); - AccumulateSystem(AccumulateSystem const&); - AccumulateSystem(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/entity/systems/client_rewind/ApplySystem.h b/src/mc/entity/systems/client_rewind/ApplySystem.h index 1d0a9dbbb3..e93da41906 100644 --- a/src/mc/entity/systems/client_rewind/ApplySystem.h +++ b/src/mc/entity/systems/client_rewind/ApplySystem.h @@ -44,12 +44,6 @@ struct ApplySystem : public ::IStrictTickingSystem<::StrictExecutionContext< ::GlobalRead<>, ::GlobalWrite<>, ::EntityFactoryT<>>> { -public: - // prevent constructor by default - ApplySystem& operator=(ApplySystem const&); - ApplySystem(ApplySystem const&); - ApplySystem(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/entity/systems/client_rewind/DiscardSystem.h b/src/mc/entity/systems/client_rewind/DiscardSystem.h index d97c57bb5e..97385a3f1e 100644 --- a/src/mc/entity/systems/client_rewind/DiscardSystem.h +++ b/src/mc/entity/systems/client_rewind/DiscardSystem.h @@ -42,12 +42,6 @@ struct DiscardSystem : public ::IStrictTickingSystem<::StrictExecutionContext< ::GlobalRead<>, ::GlobalWrite<>, ::EntityFactoryT<>>> { -public: - // prevent constructor by default - DiscardSystem& operator=(DiscardSystem const&); - DiscardSystem(DiscardSystem const&); - DiscardSystem(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/entity/systems/client_rewind/PublishSystem.h b/src/mc/entity/systems/client_rewind/PublishSystem.h index fd06b84df6..b3cf972e4a 100644 --- a/src/mc/entity/systems/client_rewind/PublishSystem.h +++ b/src/mc/entity/systems/client_rewind/PublishSystem.h @@ -41,12 +41,6 @@ struct PublishSystem : public ::IStrictTickingSystem<::StrictExecutionContext< ::GlobalRead<>, ::GlobalWrite<>, ::EntityFactoryT<>>> { -public: - // prevent constructor by default - PublishSystem& operator=(PublishSystem const&); - PublishSystem(PublishSystem const&); - PublishSystem(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/entity/systems/events/TextboxTextSystem.h b/src/mc/entity/systems/events/TextboxTextSystem.h index bf9613b22a..7b87f0e2ba 100644 --- a/src/mc/entity/systems/events/TextboxTextSystem.h +++ b/src/mc/entity/systems/events/TextboxTextSystem.h @@ -11,12 +11,6 @@ class EntityRegistry; // clang-format on class TextboxTextSystem : public ::ITickingSystem { -public: - // prevent constructor by default - TextboxTextSystem& operator=(TextboxTextSystem const&); - TextboxTextSystem(TextboxTextSystem const&); - TextboxTextSystem(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/entity/systems/initialization/MarkEquippableMobForUpgradeToBodySlotSystem.h b/src/mc/entity/systems/initialization/MarkEquippableMobForUpgradeToBodySlotSystem.h index 00571348f0..23b743bb09 100644 --- a/src/mc/entity/systems/initialization/MarkEquippableMobForUpgradeToBodySlotSystem.h +++ b/src/mc/entity/systems/initialization/MarkEquippableMobForUpgradeToBodySlotSystem.h @@ -19,12 +19,6 @@ struct TickingSystemWithInfo; // clang-format on class MarkEquippableMobForUpgradeToBodySlotSystem { -public: - // prevent constructor by default - MarkEquippableMobForUpgradeToBodySlotSystem& operator=(MarkEquippableMobForUpgradeToBodySlotSystem const&); - MarkEquippableMobForUpgradeToBodySlotSystem(MarkEquippableMobForUpgradeToBodySlotSystem const&); - MarkEquippableMobForUpgradeToBodySlotSystem(); - public: // static functions // NOLINTBEGIN diff --git a/src/mc/entity/systems/initialization/MarkWolfForUpgradeToBodySlotSystem.h b/src/mc/entity/systems/initialization/MarkWolfForUpgradeToBodySlotSystem.h index be9ba1ddae..db984cfa1b 100644 --- a/src/mc/entity/systems/initialization/MarkWolfForUpgradeToBodySlotSystem.h +++ b/src/mc/entity/systems/initialization/MarkWolfForUpgradeToBodySlotSystem.h @@ -19,12 +19,6 @@ struct WolfFlagComponent; // clang-format on class MarkWolfForUpgradeToBodySlotSystem { -public: - // prevent constructor by default - MarkWolfForUpgradeToBodySlotSystem& operator=(MarkWolfForUpgradeToBodySlotSystem const&); - MarkWolfForUpgradeToBodySlotSystem(MarkWolfForUpgradeToBodySlotSystem const&); - MarkWolfForUpgradeToBodySlotSystem(); - public: // static functions // NOLINTBEGIN diff --git a/src/mc/entity/systems/initialization/PreventMobEjectionFromLegacyVehicleSystem.h b/src/mc/entity/systems/initialization/PreventMobEjectionFromLegacyVehicleSystem.h index 8f0f033e74..cba6326502 100644 --- a/src/mc/entity/systems/initialization/PreventMobEjectionFromLegacyVehicleSystem.h +++ b/src/mc/entity/systems/initialization/PreventMobEjectionFromLegacyVehicleSystem.h @@ -19,12 +19,6 @@ struct TickingSystemWithInfo; // clang-format on class PreventMobEjectionFromLegacyVehicleSystem { -public: - // prevent constructor by default - PreventMobEjectionFromLegacyVehicleSystem& operator=(PreventMobEjectionFromLegacyVehicleSystem const&); - PreventMobEjectionFromLegacyVehicleSystem(PreventMobEjectionFromLegacyVehicleSystem const&); - PreventMobEjectionFromLegacyVehicleSystem(); - public: // static functions // NOLINTBEGIN diff --git a/src/mc/entity/systems/initialization/UpgradeToBodySlotSystem.h b/src/mc/entity/systems/initialization/UpgradeToBodySlotSystem.h index dfabde005e..de8b1d3ddb 100644 --- a/src/mc/entity/systems/initialization/UpgradeToBodySlotSystem.h +++ b/src/mc/entity/systems/initialization/UpgradeToBodySlotSystem.h @@ -17,12 +17,6 @@ struct TickingSystemWithInfo; // clang-format on class UpgradeToBodySlotSystem { -public: - // prevent constructor by default - UpgradeToBodySlotSystem& operator=(UpgradeToBodySlotSystem const&); - UpgradeToBodySlotSystem(UpgradeToBodySlotSystem const&); - UpgradeToBodySlotSystem(); - public: // static functions // NOLINTBEGIN diff --git a/src/mc/entity/systems/mob_jump_from_ground_system_impl/JumpFromGroundSystem.h b/src/mc/entity/systems/mob_jump_from_ground_system_impl/JumpFromGroundSystem.h index 5eea53c2de..4eefc3dc53 100644 --- a/src/mc/entity/systems/mob_jump_from_ground_system_impl/JumpFromGroundSystem.h +++ b/src/mc/entity/systems/mob_jump_from_ground_system_impl/JumpFromGroundSystem.h @@ -95,12 +95,6 @@ struct JumpFromGroundSystem : public ::IStrictTickingSystem<::StrictExecutionCon ::GlobalRead<::ExternalDataComponent, ::LocalConstBlockSourceFactoryComponent>, ::GlobalWrite<>, ::EntityFactoryT<>>> { -public: - // prevent constructor by default - JumpFromGroundSystem& operator=(JumpFromGroundSystem const&); - JumpFromGroundSystem(JumpFromGroundSystem const&); - JumpFromGroundSystem(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/entity/systems/move_collision_system/System.h b/src/mc/entity/systems/move_collision_system/System.h index 5f7fc4b526..4679375228 100644 --- a/src/mc/entity/systems/move_collision_system/System.h +++ b/src/mc/entity/systems/move_collision_system/System.h @@ -140,12 +140,6 @@ struct System : public ::IStrictTickingSystem<::StrictExecutionContext< // NOLINTEND }; -public: - // prevent constructor by default - System& operator=(System const&); - System(System const&); - System(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/entity/systems/player_move_systems_impl/LocalPlayerFilterAutoJumpInternal.h b/src/mc/entity/systems/player_move_systems_impl/LocalPlayerFilterAutoJumpInternal.h index c99d947b6d..752f4a32ae 100644 --- a/src/mc/entity/systems/player_move_systems_impl/LocalPlayerFilterAutoJumpInternal.h +++ b/src/mc/entity/systems/player_move_systems_impl/LocalPlayerFilterAutoJumpInternal.h @@ -92,12 +92,6 @@ struct LocalPlayerFilterAutoJumpInternal ::GlobalRead<::ExternalDataComponent, ::LocalConstBlockSourceFactoryComponent>, ::GlobalWrite<>, ::EntityFactoryT<>>> { -public: - // prevent constructor by default - LocalPlayerFilterAutoJumpInternal& operator=(LocalPlayerFilterAutoJumpInternal const&); - LocalPlayerFilterAutoJumpInternal(LocalPlayerFilterAutoJumpInternal const&); - LocalPlayerFilterAutoJumpInternal(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/entity/systems/server_stand_in_cauldron_system/SystemImpl.h b/src/mc/entity/systems/server_stand_in_cauldron_system/SystemImpl.h index 91322e9da1..0906e96f90 100644 --- a/src/mc/entity/systems/server_stand_in_cauldron_system/SystemImpl.h +++ b/src/mc/entity/systems/server_stand_in_cauldron_system/SystemImpl.h @@ -30,12 +30,6 @@ class SystemImpl : public ::IStrictTickingSystem<::StrictExecutionContext< ::GlobalRead<>, ::GlobalWrite<>, ::EntityFactoryT<>>> { -public: - // prevent constructor by default - SystemImpl& operator=(SystemImpl const&); - SystemImpl(SystemImpl const&); - SystemImpl(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/entity/utilities/ExternalDataInterface.h b/src/mc/entity/utilities/ExternalDataInterface.h index fa26a0a90d..a70568e2d1 100644 --- a/src/mc/entity/utilities/ExternalDataInterface.h +++ b/src/mc/entity/utilities/ExternalDataInterface.h @@ -14,12 +14,6 @@ struct AdventureSettings; // clang-format on struct ExternalDataInterface { -public: - // prevent constructor by default - ExternalDataInterface& operator=(ExternalDataInterface const&); - ExternalDataInterface(ExternalDataInterface const&); - ExternalDataInterface(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/entity/utilities/GetCollisionShapeEntityProxy.h b/src/mc/entity/utilities/GetCollisionShapeEntityProxy.h index a0b9c931fa..e6a8725597 100644 --- a/src/mc/entity/utilities/GetCollisionShapeEntityProxy.h +++ b/src/mc/entity/utilities/GetCollisionShapeEntityProxy.h @@ -3,10 +3,4 @@ #include "mc/_HeaderOutputPredefine.h" template -class GetCollisionShapeEntityProxy { -public: - // prevent constructor by default - GetCollisionShapeEntityProxy& operator=(GetCollisionShapeEntityProxy const&); - GetCollisionShapeEntityProxy(GetCollisionShapeEntityProxy const&); - GetCollisionShapeEntityProxy(); -}; +class GetCollisionShapeEntityProxy {}; diff --git a/src/mc/entity/utilities/InterpolatedRidingPositionCalculationHelper.h b/src/mc/entity/utilities/InterpolatedRidingPositionCalculationHelper.h index 48956c9f0b..d8426880d3 100644 --- a/src/mc/entity/utilities/InterpolatedRidingPositionCalculationHelper.h +++ b/src/mc/entity/utilities/InterpolatedRidingPositionCalculationHelper.h @@ -20,12 +20,6 @@ struct StateVectorComponent; // clang-format on struct InterpolatedRidingPositionCalculationHelper { -public: - // prevent constructor by default - InterpolatedRidingPositionCalculationHelper& operator=(InterpolatedRidingPositionCalculationHelper const&); - InterpolatedRidingPositionCalculationHelper(InterpolatedRidingPositionCalculationHelper const&); - InterpolatedRidingPositionCalculationHelper(); - public: // static functions // NOLINTBEGIN diff --git a/src/mc/entity/utilities/PositionPassengerUtility.h b/src/mc/entity/utilities/PositionPassengerUtility.h index 9a332ac732..4606f1e471 100644 --- a/src/mc/entity/utilities/PositionPassengerUtility.h +++ b/src/mc/entity/utilities/PositionPassengerUtility.h @@ -10,12 +10,6 @@ struct ActorDataSeatOffsetComponent; // clang-format on struct PositionPassengerUtility { -public: - // prevent constructor by default - PositionPassengerUtility& operator=(PositionPassengerUtility const&); - PositionPassengerUtility(PositionPassengerUtility const&); - PositionPassengerUtility(); - public: // static functions // NOLINTBEGIN diff --git a/src/mc/entity/utilities/RailMovementUtility.h b/src/mc/entity/utilities/RailMovementUtility.h index 1471644225..6a9b5b7c45 100644 --- a/src/mc/entity/utilities/RailMovementUtility.h +++ b/src/mc/entity/utilities/RailMovementUtility.h @@ -50,12 +50,6 @@ class RailMovementUtility { RailExits(); }; -public: - // prevent constructor by default - RailMovementUtility& operator=(RailMovementUtility const&); - RailMovementUtility(RailMovementUtility const&); - RailMovementUtility(); - public: // static functions // NOLINTBEGIN diff --git a/src/mc/entity/utilities/SeatDescriptionUtility.h b/src/mc/entity/utilities/SeatDescriptionUtility.h index ef591ee29c..ac3f193e91 100644 --- a/src/mc/entity/utilities/SeatDescriptionUtility.h +++ b/src/mc/entity/utilities/SeatDescriptionUtility.h @@ -14,12 +14,6 @@ struct VehicleComponent; // clang-format on struct SeatDescriptionUtility { -public: - // prevent constructor by default - SeatDescriptionUtility& operator=(SeatDescriptionUtility const&); - SeatDescriptionUtility(SeatDescriptionUtility const&); - SeatDescriptionUtility(); - public: // static functions // NOLINTBEGIN diff --git a/src/mc/entity/utilities/SpatialQueryUtility.h b/src/mc/entity/utilities/SpatialQueryUtility.h index 645b0f22a7..896ff7dde0 100644 --- a/src/mc/entity/utilities/SpatialQueryUtility.h +++ b/src/mc/entity/utilities/SpatialQueryUtility.h @@ -22,12 +22,6 @@ struct FallingBlockFlagComponent; // clang-format on struct SpatialQueryUtility { -public: - // prevent constructor by default - SpatialQueryUtility& operator=(SpatialQueryUtility const&); - SpatialQueryUtility(SpatialQueryUtility const&); - SpatialQueryUtility(); - public: // static functions // NOLINTBEGIN diff --git a/src/mc/entity/utilities/UpdateEntityAfterFallOnEntityProxyBase.h b/src/mc/entity/utilities/UpdateEntityAfterFallOnEntityProxyBase.h index 043888546c..f42aa6e754 100644 --- a/src/mc/entity/utilities/UpdateEntityAfterFallOnEntityProxyBase.h +++ b/src/mc/entity/utilities/UpdateEntityAfterFallOnEntityProxyBase.h @@ -8,12 +8,6 @@ class Vec3; // clang-format on struct UpdateEntityAfterFallOnEntityProxyBase { -public: - // prevent constructor by default - UpdateEntityAfterFallOnEntityProxyBase& operator=(UpdateEntityAfterFallOnEntityProxyBase const&); - UpdateEntityAfterFallOnEntityProxyBase(UpdateEntityAfterFallOnEntityProxyBase const&); - UpdateEntityAfterFallOnEntityProxyBase(); - public: // static variables // NOLINTBEGIN diff --git a/src/mc/entity/utilities/actor_data/ActorDataControllingSeatIndexOperations.h b/src/mc/entity/utilities/actor_data/ActorDataControllingSeatIndexOperations.h index ca414695ae..2189702775 100644 --- a/src/mc/entity/utilities/actor_data/ActorDataControllingSeatIndexOperations.h +++ b/src/mc/entity/utilities/actor_data/ActorDataControllingSeatIndexOperations.h @@ -15,12 +15,6 @@ namespace ActorData { struct ActorDataControllingSeatIndexOperations : public ::ActorData:: - ActorDataSimpleOperations<::ReplayStateValueDiff, ::ActorDataControllingSeatIndexComponent, schar> { -public: - // prevent constructor by default - ActorDataControllingSeatIndexOperations& operator=(ActorDataControllingSeatIndexOperations const&); - ActorDataControllingSeatIndexOperations(ActorDataControllingSeatIndexOperations const&); - ActorDataControllingSeatIndexOperations(); -}; + ActorDataSimpleOperations<::ReplayStateValueDiff, ::ActorDataControllingSeatIndexComponent, schar> {}; } // namespace ActorData diff --git a/src/mc/entity/utilities/actor_data/ActorDataJumpDurationOperations.h b/src/mc/entity/utilities/actor_data/ActorDataJumpDurationOperations.h index a9a12ccf0e..d044d4b737 100644 --- a/src/mc/entity/utilities/actor_data/ActorDataJumpDurationOperations.h +++ b/src/mc/entity/utilities/actor_data/ActorDataJumpDurationOperations.h @@ -15,12 +15,6 @@ namespace ActorData { struct ActorDataJumpDurationOperations : public ::ActorData:: - ActorDataSimpleOperations<::ReplayStateValueDiff, ::ActorDataJumpDurationComponent, schar> { -public: - // prevent constructor by default - ActorDataJumpDurationOperations& operator=(ActorDataJumpDurationOperations const&); - ActorDataJumpDurationOperations(ActorDataJumpDurationOperations const&); - ActorDataJumpDurationOperations(); -}; + ActorDataSimpleOperations<::ReplayStateValueDiff, ::ActorDataJumpDurationComponent, schar> {}; } // namespace ActorData diff --git a/src/mc/entity/utilities/actor_data/ActorDataSeatOffsetOperations.h b/src/mc/entity/utilities/actor_data/ActorDataSeatOffsetOperations.h index dc44b57934..678dead942 100644 --- a/src/mc/entity/utilities/actor_data/ActorDataSeatOffsetOperations.h +++ b/src/mc/entity/utilities/actor_data/ActorDataSeatOffsetOperations.h @@ -16,12 +16,6 @@ namespace ActorData { struct ActorDataSeatOffsetOperations : public ::ActorData:: - ActorDataSimpleOperations<::ReplayStateValueDiff<::Vec3>, ::ActorDataSeatOffsetComponent, ::Vec3> { -public: - // prevent constructor by default - ActorDataSeatOffsetOperations& operator=(ActorDataSeatOffsetOperations const&); - ActorDataSeatOffsetOperations(ActorDataSeatOffsetOperations const&); - ActorDataSeatOffsetOperations(); -}; + ActorDataSimpleOperations<::ReplayStateValueDiff<::Vec3>, ::ActorDataSeatOffsetComponent, ::Vec3> {}; } // namespace ActorData diff --git a/src/mc/entity/utilities/actor_data/ActorDataSimpleOperations.h b/src/mc/entity/utilities/actor_data/ActorDataSimpleOperations.h index d5ff580002..a9b5e34f90 100644 --- a/src/mc/entity/utilities/actor_data/ActorDataSimpleOperations.h +++ b/src/mc/entity/utilities/actor_data/ActorDataSimpleOperations.h @@ -5,12 +5,6 @@ namespace ActorData { template -struct ActorDataSimpleOperations { -public: - // prevent constructor by default - ActorDataSimpleOperations& operator=(ActorDataSimpleOperations const&); - ActorDataSimpleOperations(ActorDataSimpleOperations const&); - ActorDataSimpleOperations(); -}; +struct ActorDataSimpleOperations {}; } // namespace ActorData diff --git a/src/mc/entity/utilities/actor_data/ComponentOperationsCommon.h b/src/mc/entity/utilities/actor_data/ComponentOperationsCommon.h index 36fb97885a..815e67e206 100644 --- a/src/mc/entity/utilities/actor_data/ComponentOperationsCommon.h +++ b/src/mc/entity/utilities/actor_data/ComponentOperationsCommon.h @@ -4,12 +4,6 @@ namespace ActorData { -struct ComponentOperationsCommon { -public: - // prevent constructor by default - ComponentOperationsCommon& operator=(ComponentOperationsCommon const&); - ComponentOperationsCommon(ComponentOperationsCommon const&); - ComponentOperationsCommon(); -}; +struct ComponentOperationsCommon {}; } // namespace ActorData diff --git a/src/mc/events/IConnectionEventing.h b/src/mc/events/IConnectionEventing.h index 4c5fa664d6..f4173e5f67 100644 --- a/src/mc/events/IConnectionEventing.h +++ b/src/mc/events/IConnectionEventing.h @@ -33,12 +33,6 @@ class IConnectionEventing { Canceled = 5, }; -public: - // prevent constructor by default - IConnectionEventing& operator=(IConnectionEventing const&); - IConnectionEventing(IConnectionEventing const&); - IConnectionEventing(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/events/IEventListener.h b/src/mc/events/IEventListener.h index 5f4ec126a1..8c6a717d04 100644 --- a/src/mc/events/IEventListener.h +++ b/src/mc/events/IEventListener.h @@ -14,12 +14,6 @@ namespace Social::Events { class Event; } namespace Social::Events { class IEventListener { -public: - // prevent constructor by default - IEventListener& operator=(IEventListener const&); - IEventListener(IEventListener const&); - IEventListener(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/events/IMinecraftEventing.h b/src/mc/events/IMinecraftEventing.h index 3182c7e65c..d19b90c167 100644 --- a/src/mc/events/IMinecraftEventing.h +++ b/src/mc/events/IMinecraftEventing.h @@ -436,12 +436,6 @@ class IMinecraftEventing : public ::Bedrock::EnableNonOwnerReferences, LoggedInWithMSAButPlatformProfile = 6, }; -public: - // prevent constructor by default - IMinecraftEventing& operator=(IMinecraftEventing const&); - IMinecraftEventing(IMinecraftEventing const&); - IMinecraftEventing(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/events/IPackTelemetry.h b/src/mc/events/IPackTelemetry.h index e5a28f3a1c..7c66f5c403 100644 --- a/src/mc/events/IPackTelemetry.h +++ b/src/mc/events/IPackTelemetry.h @@ -9,12 +9,6 @@ class PackReport; // clang-format on class IPackTelemetry { -public: - // prevent constructor by default - IPackTelemetry& operator=(IPackTelemetry const&); - IPackTelemetry(IPackTelemetry const&); - IPackTelemetry(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/events/IScreenChangedEventing.h b/src/mc/events/IScreenChangedEventing.h index 33bef84072..ea22371b09 100644 --- a/src/mc/events/IScreenChangedEventing.h +++ b/src/mc/events/IScreenChangedEventing.h @@ -3,12 +3,6 @@ #include "mc/_HeaderOutputPredefine.h" class IScreenChangedEventing { -public: - // prevent constructor by default - IScreenChangedEventing& operator=(IScreenChangedEventing const&); - IScreenChangedEventing(IScreenChangedEventing const&); - IScreenChangedEventing(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/events/IUIEventTelemetry.h b/src/mc/events/IUIEventTelemetry.h index ddab228534..e5520a86fd 100644 --- a/src/mc/events/IUIEventTelemetry.h +++ b/src/mc/events/IUIEventTelemetry.h @@ -3,12 +3,6 @@ #include "mc/_HeaderOutputPredefine.h" class IUIEventTelemetry { -public: - // prevent constructor by default - IUIEventTelemetry& operator=(IUIEventTelemetry const&); - IUIEventTelemetry(IUIEventTelemetry const&); - IUIEventTelemetry(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/events/OneDSEventHelper.h b/src/mc/events/OneDSEventHelper.h index 2c9448268e..5aa96e1d0b 100644 --- a/src/mc/events/OneDSEventHelper.h +++ b/src/mc/events/OneDSEventHelper.h @@ -5,11 +5,6 @@ namespace Social::Events { class OneDSEventHelper { -public: - // prevent constructor by default - OneDSEventHelper& operator=(OneDSEventHelper const&); - OneDSEventHelper(OneDSEventHelper const&); - public: // member functions // NOLINTBEGIN diff --git a/src/mc/events/PlayStreamEventListener.h b/src/mc/events/PlayStreamEventListener.h index 51af400525..6504aea4b0 100644 --- a/src/mc/events/PlayStreamEventListener.h +++ b/src/mc/events/PlayStreamEventListener.h @@ -13,12 +13,6 @@ namespace Social::Events { class Event; } namespace Social::Events { class PlayStreamEventListener : public ::Social::Events::AggregationEventListener { -public: - // prevent constructor by default - PlayStreamEventListener& operator=(PlayStreamEventListener const&); - PlayStreamEventListener(PlayStreamEventListener const&); - PlayStreamEventListener(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/events/TextProcessingEventOriginEnumHasher.h b/src/mc/events/TextProcessingEventOriginEnumHasher.h index 66fe017028..ec310b1684 100644 --- a/src/mc/events/TextProcessingEventOriginEnumHasher.h +++ b/src/mc/events/TextProcessingEventOriginEnumHasher.h @@ -2,10 +2,4 @@ #include "mc/_HeaderOutputPredefine.h" -struct TextProcessingEventOriginEnumHasher { -public: - // prevent constructor by default - TextProcessingEventOriginEnumHasher& operator=(TextProcessingEventOriginEnumHasher const&); - TextProcessingEventOriginEnumHasher(TextProcessingEventOriginEnumHasher const&); - TextProcessingEventOriginEnumHasher(); -}; +struct TextProcessingEventOriginEnumHasher {}; diff --git a/src/mc/events/XboxLiveTelemetry.h b/src/mc/events/XboxLiveTelemetry.h index 1e5764b869..6256db46a8 100644 --- a/src/mc/events/XboxLiveTelemetry.h +++ b/src/mc/events/XboxLiveTelemetry.h @@ -13,12 +13,6 @@ namespace Social::Events { class Event; } namespace Social::Events { class XboxLiveTelemetry : public ::Social::Events::AggregationEventListener { -public: - // prevent constructor by default - XboxLiveTelemetry& operator=(XboxLiveTelemetry const&); - XboxLiveTelemetry(XboxLiveTelemetry const&); - XboxLiveTelemetry(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/external/absl/AnyInvocable.h b/src/mc/external/absl/AnyInvocable.h index 9b1a9cbe0e..1cbac20808 100644 --- a/src/mc/external/absl/AnyInvocable.h +++ b/src/mc/external/absl/AnyInvocable.h @@ -5,12 +5,6 @@ namespace absl { template -class AnyInvocable { -public: - // prevent constructor by default - AnyInvocable& operator=(AnyInvocable const&); - AnyInvocable(AnyInvocable const&); - AnyInvocable(); -}; +class AnyInvocable {}; } // namespace absl diff --git a/src/mc/external/absl/ConversionConstruct.h b/src/mc/external/absl/ConversionConstruct.h index 2109f84e3c..921c6ad844 100644 --- a/src/mc/external/absl/ConversionConstruct.h +++ b/src/mc/external/absl/ConversionConstruct.h @@ -4,12 +4,6 @@ namespace absl::internal_any_invocable { -struct ConversionConstruct { -public: - // prevent constructor by default - ConversionConstruct& operator=(ConversionConstruct const&); - ConversionConstruct(ConversionConstruct const&); - ConversionConstruct(); -}; +struct ConversionConstruct {}; } // namespace absl::internal_any_invocable diff --git a/src/mc/external/absl/InlinedVector.h b/src/mc/external/absl/InlinedVector.h index 4e366efe2d..8f77214838 100644 --- a/src/mc/external/absl/InlinedVector.h +++ b/src/mc/external/absl/InlinedVector.h @@ -5,12 +5,6 @@ namespace absl { template -class InlinedVector { -public: - // prevent constructor by default - InlinedVector& operator=(InlinedVector const&); - InlinedVector(InlinedVector const&); - InlinedVector(); -}; +class InlinedVector {}; } // namespace absl diff --git a/src/mc/external/bgfx/Encoder.h b/src/mc/external/bgfx/Encoder.h index f1513fe831..81c51eb33f 100644 --- a/src/mc/external/bgfx/Encoder.h +++ b/src/mc/external/bgfx/Encoder.h @@ -4,12 +4,6 @@ namespace bgfx { -struct Encoder { -public: - // prevent constructor by default - Encoder& operator=(Encoder const&); - Encoder(Encoder const&); - Encoder(); -}; +struct Encoder {}; } // namespace bgfx diff --git a/src/mc/external/cereal/Schema.h b/src/mc/external/cereal/Schema.h index a7ff01a987..8e9ff4f309 100644 --- a/src/mc/external/cereal/Schema.h +++ b/src/mc/external/cereal/Schema.h @@ -4,12 +4,6 @@ namespace cereal { -struct Schema { -public: - // prevent constructor by default - Schema& operator=(Schema const&); - Schema(Schema const&); - Schema(); -}; +struct Schema {}; } // namespace cereal diff --git a/src/mc/external/cereal/StringViewHash.h b/src/mc/external/cereal/StringViewHash.h index 9a35f46c12..9d86a3b3b4 100644 --- a/src/mc/external/cereal/StringViewHash.h +++ b/src/mc/external/cereal/StringViewHash.h @@ -4,12 +4,6 @@ namespace cereal::util::internal { -struct StringViewHash : public ::std::hash<::std::string_view> { -public: - // prevent constructor by default - StringViewHash& operator=(StringViewHash const&); - StringViewHash(StringViewHash const&); - StringViewHash(); -}; +struct StringViewHash : public ::std::hash<::std::string_view> {}; } // namespace cereal::util::internal diff --git a/src/mc/external/cricket/ActiveIceControllerFactoryArgs.h b/src/mc/external/cricket/ActiveIceControllerFactoryArgs.h index a5bcde05a9..57f39bd402 100644 --- a/src/mc/external/cricket/ActiveIceControllerFactoryArgs.h +++ b/src/mc/external/cricket/ActiveIceControllerFactoryArgs.h @@ -5,12 +5,6 @@ namespace cricket { struct ActiveIceControllerFactoryArgs { -public: - // prevent constructor by default - ActiveIceControllerFactoryArgs& operator=(ActiveIceControllerFactoryArgs const&); - ActiveIceControllerFactoryArgs(ActiveIceControllerFactoryArgs const&); - ActiveIceControllerFactoryArgs(); - public: // member functions // NOLINTBEGIN diff --git a/src/mc/external/cricket/ActiveIceControllerFactoryInterface.h b/src/mc/external/cricket/ActiveIceControllerFactoryInterface.h index a8a71b11a1..9a4027a315 100644 --- a/src/mc/external/cricket/ActiveIceControllerFactoryInterface.h +++ b/src/mc/external/cricket/ActiveIceControllerFactoryInterface.h @@ -4,12 +4,6 @@ namespace cricket { -class ActiveIceControllerFactoryInterface { -public: - // prevent constructor by default - ActiveIceControllerFactoryInterface& operator=(ActiveIceControllerFactoryInterface const&); - ActiveIceControllerFactoryInterface(ActiveIceControllerFactoryInterface const&); - ActiveIceControllerFactoryInterface(); -}; +class ActiveIceControllerFactoryInterface {}; } // namespace cricket diff --git a/src/mc/external/cricket/AllocationSequence.h b/src/mc/external/cricket/AllocationSequence.h index 0afc5b6842..7de47919da 100644 --- a/src/mc/external/cricket/AllocationSequence.h +++ b/src/mc/external/cricket/AllocationSequence.h @@ -16,12 +16,6 @@ namespace rtc { class ReceivedPacket; } namespace cricket { class AllocationSequence { -public: - // prevent constructor by default - AllocationSequence& operator=(AllocationSequence const&); - AllocationSequence(AllocationSequence const&); - AllocationSequence(); - public: // member functions // NOLINTBEGIN diff --git a/src/mc/external/cricket/AsyncStunTCPSocket.h b/src/mc/external/cricket/AsyncStunTCPSocket.h index 248b212202..7bf433cbc0 100644 --- a/src/mc/external/cricket/AsyncStunTCPSocket.h +++ b/src/mc/external/cricket/AsyncStunTCPSocket.h @@ -10,12 +10,6 @@ namespace rtc { class Socket; } namespace cricket { class AsyncStunTCPSocket { -public: - // prevent constructor by default - AsyncStunTCPSocket& operator=(AsyncStunTCPSocket const&); - AsyncStunTCPSocket(AsyncStunTCPSocket const&); - AsyncStunTCPSocket(); - public: // member functions // NOLINTBEGIN diff --git a/src/mc/external/cricket/AudioContentDescription.h b/src/mc/external/cricket/AudioContentDescription.h index c81ed2ab6b..dab6ed7188 100644 --- a/src/mc/external/cricket/AudioContentDescription.h +++ b/src/mc/external/cricket/AudioContentDescription.h @@ -9,12 +9,6 @@ namespace cricket { class AudioContentDescription : public ::cricket::RtpMediaContentDescription { -public: - // prevent constructor by default - AudioContentDescription& operator=(AudioContentDescription const&); - AudioContentDescription(AudioContentDescription const&); - AudioContentDescription(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/external/cricket/AudioReceiverParameters.h b/src/mc/external/cricket/AudioReceiverParameters.h index 19c1b51dc9..3e9ed669f3 100644 --- a/src/mc/external/cricket/AudioReceiverParameters.h +++ b/src/mc/external/cricket/AudioReceiverParameters.h @@ -8,12 +8,6 @@ namespace cricket { struct AudioReceiverParameters : public ::cricket::MediaChannelParameters { -public: - // prevent constructor by default - AudioReceiverParameters& operator=(AudioReceiverParameters const&); - AudioReceiverParameters(AudioReceiverParameters const&); - AudioReceiverParameters(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/external/cricket/AudioSource.h b/src/mc/external/cricket/AudioSource.h index ed24ab72a3..b979236168 100644 --- a/src/mc/external/cricket/AudioSource.h +++ b/src/mc/external/cricket/AudioSource.h @@ -4,12 +4,6 @@ namespace cricket { -class AudioSource { -public: - // prevent constructor by default - AudioSource& operator=(AudioSource const&); - AudioSource(AudioSource const&); - AudioSource(); -}; +class AudioSource {}; } // namespace cricket diff --git a/src/mc/external/cricket/BaseChannel.h b/src/mc/external/cricket/BaseChannel.h index 3677c87ef4..ab93622359 100644 --- a/src/mc/external/cricket/BaseChannel.h +++ b/src/mc/external/cricket/BaseChannel.h @@ -25,12 +25,6 @@ namespace webrtc { struct RtpExtension; } namespace cricket { class BaseChannel { -public: - // prevent constructor by default - BaseChannel& operator=(BaseChannel const&); - BaseChannel(BaseChannel const&); - BaseChannel(); - public: // member functions // NOLINTBEGIN diff --git a/src/mc/external/cricket/BasicIceController.h b/src/mc/external/cricket/BasicIceController.h index 6fee53f65b..caae04942d 100644 --- a/src/mc/external/cricket/BasicIceController.h +++ b/src/mc/external/cricket/BasicIceController.h @@ -17,12 +17,6 @@ namespace rtc { class Network; } namespace cricket { class BasicIceController { -public: - // prevent constructor by default - BasicIceController& operator=(BasicIceController const&); - BasicIceController(BasicIceController const&); - BasicIceController(); - public: // member functions // NOLINTBEGIN diff --git a/src/mc/external/cricket/BasicPortAllocator.h b/src/mc/external/cricket/BasicPortAllocator.h index 5d61e7a2b2..e5b8f55ba8 100644 --- a/src/mc/external/cricket/BasicPortAllocator.h +++ b/src/mc/external/cricket/BasicPortAllocator.h @@ -14,12 +14,6 @@ namespace webrtc { class TurnCustomizer; } namespace cricket { class BasicPortAllocator { -public: - // prevent constructor by default - BasicPortAllocator& operator=(BasicPortAllocator const&); - BasicPortAllocator(BasicPortAllocator const&); - BasicPortAllocator(); - public: // member functions // NOLINTBEGIN diff --git a/src/mc/external/cricket/BasicPortAllocatorSession.h b/src/mc/external/cricket/BasicPortAllocatorSession.h index 0c4af7e060..0bbbc5707e 100644 --- a/src/mc/external/cricket/BasicPortAllocatorSession.h +++ b/src/mc/external/cricket/BasicPortAllocatorSession.h @@ -27,19 +27,7 @@ class BasicPortAllocatorSession { // clang-format on // BasicPortAllocatorSession inner types define - class PortData { - public: - // prevent constructor by default - PortData& operator=(PortData const&); - PortData(PortData const&); - PortData(); - }; - -public: - // prevent constructor by default - BasicPortAllocatorSession& operator=(BasicPortAllocatorSession const&); - BasicPortAllocatorSession(BasicPortAllocatorSession const&); - BasicPortAllocatorSession(); + class PortData {}; public: // member functions diff --git a/src/mc/external/cricket/CandidatePairInterface.h b/src/mc/external/cricket/CandidatePairInterface.h index 3ce8cea52d..0cb7521ebf 100644 --- a/src/mc/external/cricket/CandidatePairInterface.h +++ b/src/mc/external/cricket/CandidatePairInterface.h @@ -10,12 +10,6 @@ namespace cricket { class Candidate; } namespace cricket { class CandidatePairInterface { -public: - // prevent constructor by default - CandidatePairInterface& operator=(CandidatePairInterface const&); - CandidatePairInterface(CandidatePairInterface const&); - CandidatePairInterface(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/external/cricket/ChannelInterface.h b/src/mc/external/cricket/ChannelInterface.h index 74ee9c3022..77579d5aa4 100644 --- a/src/mc/external/cricket/ChannelInterface.h +++ b/src/mc/external/cricket/ChannelInterface.h @@ -4,12 +4,6 @@ namespace cricket { -class ChannelInterface { -public: - // prevent constructor by default - ChannelInterface& operator=(ChannelInterface const&); - ChannelInterface(ChannelInterface const&); - ChannelInterface(); -}; +class ChannelInterface {}; } // namespace cricket diff --git a/src/mc/external/cricket/Connection.h b/src/mc/external/cricket/Connection.h index bb461fb3d8..86979489ba 100644 --- a/src/mc/external/cricket/Connection.h +++ b/src/mc/external/cricket/Connection.h @@ -80,12 +80,6 @@ class Connection : public ::cricket::CandidatePairInterface { }; class ConnectionRequest { - public: - // prevent constructor by default - ConnectionRequest& operator=(ConnectionRequest const&); - ConnectionRequest(ConnectionRequest const&); - ConnectionRequest(); - public: // member functions // NOLINTBEGIN diff --git a/src/mc/external/cricket/CreateRelayPortArgs.h b/src/mc/external/cricket/CreateRelayPortArgs.h index 01dc274bc7..41b11fafe5 100644 --- a/src/mc/external/cricket/CreateRelayPortArgs.h +++ b/src/mc/external/cricket/CreateRelayPortArgs.h @@ -5,12 +5,6 @@ namespace cricket { struct CreateRelayPortArgs { -public: - // prevent constructor by default - CreateRelayPortArgs& operator=(CreateRelayPortArgs const&); - CreateRelayPortArgs(CreateRelayPortArgs const&); - CreateRelayPortArgs(); - public: // member functions // NOLINTBEGIN diff --git a/src/mc/external/cricket/DtlsTransport.h b/src/mc/external/cricket/DtlsTransport.h index 3f6fc9b4c6..e866e57333 100644 --- a/src/mc/external/cricket/DtlsTransport.h +++ b/src/mc/external/cricket/DtlsTransport.h @@ -22,12 +22,6 @@ namespace webrtc { struct CryptoOptions; } namespace cricket { class DtlsTransport { -public: - // prevent constructor by default - DtlsTransport& operator=(DtlsTransport const&); - DtlsTransport(DtlsTransport const&); - DtlsTransport(); - public: // member functions // NOLINTBEGIN diff --git a/src/mc/external/cricket/DtlsTransportInternal.h b/src/mc/external/cricket/DtlsTransportInternal.h index 7fd3b04c47..fbdbe83e86 100644 --- a/src/mc/external/cricket/DtlsTransportInternal.h +++ b/src/mc/external/cricket/DtlsTransportInternal.h @@ -5,11 +5,6 @@ namespace cricket { class DtlsTransportInternal { -public: - // prevent constructor by default - DtlsTransportInternal& operator=(DtlsTransportInternal const&); - DtlsTransportInternal(DtlsTransportInternal const&); - public: // member functions // NOLINTBEGIN diff --git a/src/mc/external/cricket/IceAgentInterface.h b/src/mc/external/cricket/IceAgentInterface.h index ed6c9ddfc6..eabc100ae1 100644 --- a/src/mc/external/cricket/IceAgentInterface.h +++ b/src/mc/external/cricket/IceAgentInterface.h @@ -4,12 +4,6 @@ namespace cricket { -class IceAgentInterface { -public: - // prevent constructor by default - IceAgentInterface& operator=(IceAgentInterface const&); - IceAgentInterface(IceAgentInterface const&); - IceAgentInterface(); -}; +class IceAgentInterface {}; } // namespace cricket diff --git a/src/mc/external/cricket/IceConfig.h b/src/mc/external/cricket/IceConfig.h index a0601dd5e0..435b7c2d66 100644 --- a/src/mc/external/cricket/IceConfig.h +++ b/src/mc/external/cricket/IceConfig.h @@ -8,11 +8,6 @@ namespace cricket { struct IceConfig { -public: - // prevent constructor by default - IceConfig& operator=(IceConfig const&); - IceConfig(IceConfig const&); - public: // member functions // NOLINTBEGIN diff --git a/src/mc/external/cricket/IceControllerFactoryArgs.h b/src/mc/external/cricket/IceControllerFactoryArgs.h index 4c602da325..2d8ad26196 100644 --- a/src/mc/external/cricket/IceControllerFactoryArgs.h +++ b/src/mc/external/cricket/IceControllerFactoryArgs.h @@ -5,12 +5,6 @@ namespace cricket { struct IceControllerFactoryArgs { -public: - // prevent constructor by default - IceControllerFactoryArgs& operator=(IceControllerFactoryArgs const&); - IceControllerFactoryArgs(IceControllerFactoryArgs const&); - IceControllerFactoryArgs(); - public: // member functions // NOLINTBEGIN diff --git a/src/mc/external/cricket/IceControllerFactoryInterface.h b/src/mc/external/cricket/IceControllerFactoryInterface.h index 50f7dba526..15c33a8609 100644 --- a/src/mc/external/cricket/IceControllerFactoryInterface.h +++ b/src/mc/external/cricket/IceControllerFactoryInterface.h @@ -4,12 +4,6 @@ namespace cricket { -class IceControllerFactoryInterface { -public: - // prevent constructor by default - IceControllerFactoryInterface& operator=(IceControllerFactoryInterface const&); - IceControllerFactoryInterface(IceControllerFactoryInterface const&); - IceControllerFactoryInterface(); -}; +class IceControllerFactoryInterface {}; } // namespace cricket diff --git a/src/mc/external/cricket/IceCredentialsIterator.h b/src/mc/external/cricket/IceCredentialsIterator.h index 567d94505f..b3bbfe21e3 100644 --- a/src/mc/external/cricket/IceCredentialsIterator.h +++ b/src/mc/external/cricket/IceCredentialsIterator.h @@ -10,12 +10,6 @@ namespace cricket { struct IceParameters; } namespace cricket { class IceCredentialsIterator { -public: - // prevent constructor by default - IceCredentialsIterator& operator=(IceCredentialsIterator const&); - IceCredentialsIterator(IceCredentialsIterator const&); - IceCredentialsIterator(); - public: // member functions // NOLINTBEGIN diff --git a/src/mc/external/cricket/IceMessage.h b/src/mc/external/cricket/IceMessage.h index a0f0af2a64..a60f5cfa2c 100644 --- a/src/mc/external/cricket/IceMessage.h +++ b/src/mc/external/cricket/IceMessage.h @@ -9,12 +9,6 @@ namespace cricket { class IceMessage : public ::cricket::StunMessage { -public: - // prevent constructor by default - IceMessage& operator=(IceMessage const&); - IceMessage(IceMessage const&); - IceMessage(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/external/cricket/IceTransportInternal.h b/src/mc/external/cricket/IceTransportInternal.h index e7693e1cb3..ac672d8cec 100644 --- a/src/mc/external/cricket/IceTransportInternal.h +++ b/src/mc/external/cricket/IceTransportInternal.h @@ -5,11 +5,6 @@ namespace cricket { class IceTransportInternal { -public: - // prevent constructor by default - IceTransportInternal& operator=(IceTransportInternal const&); - IceTransportInternal(IceTransportInternal const&); - public: // member functions // NOLINTBEGIN diff --git a/src/mc/external/cricket/IceTransportStats.h b/src/mc/external/cricket/IceTransportStats.h index aae865354e..82c92206a4 100644 --- a/src/mc/external/cricket/IceTransportStats.h +++ b/src/mc/external/cricket/IceTransportStats.h @@ -5,11 +5,6 @@ namespace cricket { struct IceTransportStats { -public: - // prevent constructor by default - IceTransportStats& operator=(IceTransportStats const&); - IceTransportStats(); - public: // member functions // NOLINTBEGIN diff --git a/src/mc/external/cricket/JsepTransport.h b/src/mc/external/cricket/JsepTransport.h index 3b57ca7025..7b81b2c19b 100644 --- a/src/mc/external/cricket/JsepTransport.h +++ b/src/mc/external/cricket/JsepTransport.h @@ -30,12 +30,6 @@ namespace webrtc { class SrtpTransport; } namespace cricket { class JsepTransport { -public: - // prevent constructor by default - JsepTransport& operator=(JsepTransport const&); - JsepTransport(JsepTransport const&); - JsepTransport(); - public: // member functions // NOLINTBEGIN diff --git a/src/mc/external/cricket/JsepTransportDescription.h b/src/mc/external/cricket/JsepTransportDescription.h index d7b206f731..9a2f7ff88f 100644 --- a/src/mc/external/cricket/JsepTransportDescription.h +++ b/src/mc/external/cricket/JsepTransportDescription.h @@ -10,11 +10,6 @@ namespace cricket { struct TransportDescription; } namespace cricket { struct JsepTransportDescription { -public: - // prevent constructor by default - JsepTransportDescription& operator=(JsepTransportDescription const&); - JsepTransportDescription(); - public: // member functions // NOLINTBEGIN diff --git a/src/mc/external/cricket/MediaChannelNetworkInterface.h b/src/mc/external/cricket/MediaChannelNetworkInterface.h index 7f77777ed5..c1237d15db 100644 --- a/src/mc/external/cricket/MediaChannelNetworkInterface.h +++ b/src/mc/external/cricket/MediaChannelNetworkInterface.h @@ -21,12 +21,6 @@ class MediaChannelNetworkInterface { Rtcp = 1, }; -public: - // prevent constructor by default - MediaChannelNetworkInterface& operator=(MediaChannelNetworkInterface const&); - MediaChannelNetworkInterface(MediaChannelNetworkInterface const&); - MediaChannelNetworkInterface(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/external/cricket/MediaDescriptionOptions.h b/src/mc/external/cricket/MediaDescriptionOptions.h index 4a4ba945e2..f27699d199 100644 --- a/src/mc/external/cricket/MediaDescriptionOptions.h +++ b/src/mc/external/cricket/MediaDescriptionOptions.h @@ -11,11 +11,6 @@ namespace cricket { struct RidDescription; } namespace cricket { struct MediaDescriptionOptions { -public: - // prevent constructor by default - MediaDescriptionOptions& operator=(MediaDescriptionOptions const&); - MediaDescriptionOptions(); - public: // member functions // NOLINTBEGIN diff --git a/src/mc/external/cricket/MediaEngineInterface.h b/src/mc/external/cricket/MediaEngineInterface.h index 1b7788983f..5893da0e8e 100644 --- a/src/mc/external/cricket/MediaEngineInterface.h +++ b/src/mc/external/cricket/MediaEngineInterface.h @@ -11,12 +11,6 @@ namespace cricket { class VoiceEngineInterface; } namespace cricket { class MediaEngineInterface { -public: - // prevent constructor by default - MediaEngineInterface& operator=(MediaEngineInterface const&); - MediaEngineInterface(MediaEngineInterface const&); - MediaEngineInterface(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/external/cricket/MediaReceiveChannelInterface.h b/src/mc/external/cricket/MediaReceiveChannelInterface.h index ef551b0ab7..81c38916a7 100644 --- a/src/mc/external/cricket/MediaReceiveChannelInterface.h +++ b/src/mc/external/cricket/MediaReceiveChannelInterface.h @@ -20,12 +20,6 @@ namespace webrtc { class RtpPacketReceived; } namespace cricket { class MediaReceiveChannelInterface { -public: - // prevent constructor by default - MediaReceiveChannelInterface& operator=(MediaReceiveChannelInterface const&); - MediaReceiveChannelInterface(MediaReceiveChannelInterface const&); - MediaReceiveChannelInterface(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/external/cricket/MediaSendChannelInterface.h b/src/mc/external/cricket/MediaSendChannelInterface.h index 4ff0537533..a87f934a2a 100644 --- a/src/mc/external/cricket/MediaSendChannelInterface.h +++ b/src/mc/external/cricket/MediaSendChannelInterface.h @@ -26,12 +26,6 @@ namespace webrtc { struct RtpParameters; } namespace cricket { class MediaSendChannelInterface { -public: - // prevent constructor by default - MediaSendChannelInterface& operator=(MediaSendChannelInterface const&); - MediaSendChannelInterface(MediaSendChannelInterface const&); - MediaSendChannelInterface(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/external/cricket/MediaSessionDescriptionFactory.h b/src/mc/external/cricket/MediaSessionDescriptionFactory.h index 30814d8d81..ebb9d9b387 100644 --- a/src/mc/external/cricket/MediaSessionDescriptionFactory.h +++ b/src/mc/external/cricket/MediaSessionDescriptionFactory.h @@ -36,12 +36,6 @@ struct MediaSessionDescriptionFactory { // MediaSessionDescriptionFactory inner types define struct AudioVideoRtpHeaderExtensions { - public: - // prevent constructor by default - AudioVideoRtpHeaderExtensions& operator=(AudioVideoRtpHeaderExtensions const&); - AudioVideoRtpHeaderExtensions(AudioVideoRtpHeaderExtensions const&); - AudioVideoRtpHeaderExtensions(); - public: // member functions // NOLINTBEGIN @@ -55,12 +49,6 @@ struct MediaSessionDescriptionFactory { // NOLINTEND }; -public: - // prevent constructor by default - MediaSessionDescriptionFactory& operator=(MediaSessionDescriptionFactory const&); - MediaSessionDescriptionFactory(MediaSessionDescriptionFactory const&); - MediaSessionDescriptionFactory(); - public: // member functions // NOLINTBEGIN diff --git a/src/mc/external/cricket/MediaSessionOptions.h b/src/mc/external/cricket/MediaSessionOptions.h index 9394c8832c..6e44f58869 100644 --- a/src/mc/external/cricket/MediaSessionOptions.h +++ b/src/mc/external/cricket/MediaSessionOptions.h @@ -5,10 +5,6 @@ namespace cricket { struct MediaSessionOptions { -public: - // prevent constructor by default - MediaSessionOptions& operator=(MediaSessionOptions const&); - public: // member functions // NOLINTBEGIN diff --git a/src/mc/external/cricket/P2PTransportChannel.h b/src/mc/external/cricket/P2PTransportChannel.h index 2f5e7e168c..0a4718caf7 100644 --- a/src/mc/external/cricket/P2PTransportChannel.h +++ b/src/mc/external/cricket/P2PTransportChannel.h @@ -50,12 +50,6 @@ class P2PTransportChannel { // P2PTransportChannel inner types define struct CandidateAndResolver { - public: - // prevent constructor by default - CandidateAndResolver& operator=(CandidateAndResolver const&); - CandidateAndResolver(CandidateAndResolver const&); - CandidateAndResolver(); - public: // member functions // NOLINTBEGIN @@ -78,12 +72,6 @@ class P2PTransportChannel { // NOLINTEND }; -public: - // prevent constructor by default - P2PTransportChannel& operator=(P2PTransportChannel const&); - P2PTransportChannel(P2PTransportChannel const&); - P2PTransportChannel(); - public: // member functions // NOLINTBEGIN diff --git a/src/mc/external/cricket/PingResult.h b/src/mc/external/cricket/PingResult.h index c6ca50a398..694b763733 100644 --- a/src/mc/external/cricket/PingResult.h +++ b/src/mc/external/cricket/PingResult.h @@ -4,12 +4,6 @@ namespace cricket::IceControllerInterface { -struct PingResult { -public: - // prevent constructor by default - PingResult& operator=(PingResult const&); - PingResult(PingResult const&); - PingResult(); -}; +struct PingResult {}; } // namespace cricket::IceControllerInterface diff --git a/src/mc/external/cricket/PortConfiguration.h b/src/mc/external/cricket/PortConfiguration.h index 0fbdae4f4b..dae4cecd2a 100644 --- a/src/mc/external/cricket/PortConfiguration.h +++ b/src/mc/external/cricket/PortConfiguration.h @@ -15,12 +15,6 @@ namespace webrtc { class FieldTrialsView; } namespace cricket { struct PortConfiguration { -public: - // prevent constructor by default - PortConfiguration& operator=(PortConfiguration const&); - PortConfiguration(PortConfiguration const&); - PortConfiguration(); - public: // member functions // NOLINTBEGIN diff --git a/src/mc/external/cricket/ProxyConnection.h b/src/mc/external/cricket/ProxyConnection.h index 14e6462dea..f52fadb961 100644 --- a/src/mc/external/cricket/ProxyConnection.h +++ b/src/mc/external/cricket/ProxyConnection.h @@ -14,12 +14,6 @@ namespace cricket { class PortInterface; } namespace cricket { class ProxyConnection { -public: - // prevent constructor by default - ProxyConnection& operator=(ProxyConnection const&); - ProxyConnection(ProxyConnection const&); - ProxyConnection(); - public: // member functions // NOLINTBEGIN diff --git a/src/mc/external/cricket/RelayPortFactoryInterface.h b/src/mc/external/cricket/RelayPortFactoryInterface.h index 73374dcbdd..354331a80d 100644 --- a/src/mc/external/cricket/RelayPortFactoryInterface.h +++ b/src/mc/external/cricket/RelayPortFactoryInterface.h @@ -4,12 +4,6 @@ namespace cricket { -class RelayPortFactoryInterface { -public: - // prevent constructor by default - RelayPortFactoryInterface& operator=(RelayPortFactoryInterface const&); - RelayPortFactoryInterface(RelayPortFactoryInterface const&); - RelayPortFactoryInterface(); -}; +class RelayPortFactoryInterface {}; } // namespace cricket diff --git a/src/mc/external/cricket/RemoteCandidate.h b/src/mc/external/cricket/RemoteCandidate.h index db790dba54..dfe501e07c 100644 --- a/src/mc/external/cricket/RemoteCandidate.h +++ b/src/mc/external/cricket/RemoteCandidate.h @@ -5,12 +5,6 @@ namespace cricket { class RemoteCandidate { -public: - // prevent constructor by default - RemoteCandidate& operator=(RemoteCandidate const&); - RemoteCandidate(RemoteCandidate const&); - RemoteCandidate(); - public: // member functions // NOLINTBEGIN diff --git a/src/mc/external/cricket/RtcpMuxFilter.h b/src/mc/external/cricket/RtcpMuxFilter.h index ce411b99e5..9bd300a4b5 100644 --- a/src/mc/external/cricket/RtcpMuxFilter.h +++ b/src/mc/external/cricket/RtcpMuxFilter.h @@ -8,11 +8,6 @@ namespace cricket { struct RtcpMuxFilter { -public: - // prevent constructor by default - RtcpMuxFilter& operator=(RtcpMuxFilter const&); - RtcpMuxFilter(RtcpMuxFilter const&); - public: // member functions // NOLINTBEGIN diff --git a/src/mc/external/cricket/RtpHeaderExtensionQueryInterface.h b/src/mc/external/cricket/RtpHeaderExtensionQueryInterface.h index 5301b89cb6..c8912f356f 100644 --- a/src/mc/external/cricket/RtpHeaderExtensionQueryInterface.h +++ b/src/mc/external/cricket/RtpHeaderExtensionQueryInterface.h @@ -10,12 +10,6 @@ namespace webrtc { struct RtpHeaderExtensionCapability; } namespace cricket { class RtpHeaderExtensionQueryInterface { -public: - // prevent constructor by default - RtpHeaderExtensionQueryInterface& operator=(RtpHeaderExtensionQueryInterface const&); - RtpHeaderExtensionQueryInterface(RtpHeaderExtensionQueryInterface const&); - RtpHeaderExtensionQueryInterface(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/external/cricket/RtpMediaContentDescription.h b/src/mc/external/cricket/RtpMediaContentDescription.h index b41bd639f7..5b27341e35 100644 --- a/src/mc/external/cricket/RtpMediaContentDescription.h +++ b/src/mc/external/cricket/RtpMediaContentDescription.h @@ -8,12 +8,6 @@ namespace cricket { class RtpMediaContentDescription : public ::cricket::MediaContentDescription { -public: - // prevent constructor by default - RtpMediaContentDescription& operator=(RtpMediaContentDescription const&); - RtpMediaContentDescription(RtpMediaContentDescription const&); - RtpMediaContentDescription(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/external/cricket/SctpTransportFactory.h b/src/mc/external/cricket/SctpTransportFactory.h index 75a13750ac..2f82340000 100644 --- a/src/mc/external/cricket/SctpTransportFactory.h +++ b/src/mc/external/cricket/SctpTransportFactory.h @@ -10,12 +10,6 @@ namespace rtc { class Thread; } namespace cricket { class SctpTransportFactory { -public: - // prevent constructor by default - SctpTransportFactory& operator=(SctpTransportFactory const&); - SctpTransportFactory(SctpTransportFactory const&); - SctpTransportFactory(); - public: // member functions // NOLINTBEGIN diff --git a/src/mc/external/cricket/SctpTransportInternal.h b/src/mc/external/cricket/SctpTransportInternal.h index 1a89da0dbe..07d5783c89 100644 --- a/src/mc/external/cricket/SctpTransportInternal.h +++ b/src/mc/external/cricket/SctpTransportInternal.h @@ -4,12 +4,6 @@ namespace cricket { -class SctpTransportInternal { -public: - // prevent constructor by default - SctpTransportInternal& operator=(SctpTransportInternal const&); - SctpTransportInternal(SctpTransportInternal const&); - SctpTransportInternal(); -}; +class SctpTransportInternal {}; } // namespace cricket diff --git a/src/mc/external/cricket/SenderOptions.h b/src/mc/external/cricket/SenderOptions.h index 5afdf50f74..9b1eeb3b3f 100644 --- a/src/mc/external/cricket/SenderOptions.h +++ b/src/mc/external/cricket/SenderOptions.h @@ -5,11 +5,6 @@ namespace cricket { struct SenderOptions { -public: - // prevent constructor by default - SenderOptions& operator=(SenderOptions const&); - SenderOptions(); - public: // member functions // NOLINTBEGIN diff --git a/src/mc/external/cricket/SrtpSession.h b/src/mc/external/cricket/SrtpSession.h index eeb03d03e7..ae46d1439b 100644 --- a/src/mc/external/cricket/SrtpSession.h +++ b/src/mc/external/cricket/SrtpSession.h @@ -11,12 +11,6 @@ namespace webrtc { class FieldTrialsView; } namespace cricket { class SrtpSession { -public: - // prevent constructor by default - SrtpSession& operator=(SrtpSession const&); - SrtpSession(SrtpSession const&); - SrtpSession(); - public: // member functions // NOLINTBEGIN diff --git a/src/mc/external/cricket/StreamInterfaceChannel.h b/src/mc/external/cricket/StreamInterfaceChannel.h index 0c7a7b32f2..5b1b0133bb 100644 --- a/src/mc/external/cricket/StreamInterfaceChannel.h +++ b/src/mc/external/cricket/StreamInterfaceChannel.h @@ -10,12 +10,6 @@ namespace cricket { class IceTransportInternal; } namespace cricket { class StreamInterfaceChannel { -public: - // prevent constructor by default - StreamInterfaceChannel& operator=(StreamInterfaceChannel const&); - StreamInterfaceChannel(StreamInterfaceChannel const&); - StreamInterfaceChannel(); - public: // member functions // NOLINTBEGIN diff --git a/src/mc/external/cricket/StunBindingRequest.h b/src/mc/external/cricket/StunBindingRequest.h index 01098a26fd..c8e8e8e9c2 100644 --- a/src/mc/external/cricket/StunBindingRequest.h +++ b/src/mc/external/cricket/StunBindingRequest.h @@ -11,12 +11,6 @@ namespace rtc { class SocketAddress; } namespace cricket { class StunBindingRequest { -public: - // prevent constructor by default - StunBindingRequest& operator=(StunBindingRequest const&); - StunBindingRequest(StunBindingRequest const&); - StunBindingRequest(); - public: // member functions // NOLINTBEGIN diff --git a/src/mc/external/cricket/StunDictionaryView.h b/src/mc/external/cricket/StunDictionaryView.h index f5cb93fc5d..89ab90784a 100644 --- a/src/mc/external/cricket/StunDictionaryView.h +++ b/src/mc/external/cricket/StunDictionaryView.h @@ -16,11 +16,6 @@ namespace cricket { class StunUInt64Attribute; } namespace cricket { class StunDictionaryView { -public: - // prevent constructor by default - StunDictionaryView& operator=(StunDictionaryView const&); - StunDictionaryView(StunDictionaryView const&); - public: // member functions // NOLINTBEGIN diff --git a/src/mc/external/cricket/StunDictionaryWriter.h b/src/mc/external/cricket/StunDictionaryWriter.h index 7cc7d61f0f..ff7a4f3b39 100644 --- a/src/mc/external/cricket/StunDictionaryWriter.h +++ b/src/mc/external/cricket/StunDictionaryWriter.h @@ -11,12 +11,6 @@ namespace cricket { class StunUInt64Attribute; } namespace cricket { class StunDictionaryWriter { -public: - // prevent constructor by default - StunDictionaryWriter& operator=(StunDictionaryWriter const&); - StunDictionaryWriter(StunDictionaryWriter const&); - StunDictionaryWriter(); - public: // member functions // NOLINTBEGIN diff --git a/src/mc/external/cricket/StunPort.h b/src/mc/external/cricket/StunPort.h index 8adb9ee7a3..a695a630d9 100644 --- a/src/mc/external/cricket/StunPort.h +++ b/src/mc/external/cricket/StunPort.h @@ -14,12 +14,6 @@ namespace webrtc { class FieldTrialsView; } namespace cricket { class StunPort { -public: - // prevent constructor by default - StunPort& operator=(StunPort const&); - StunPort(StunPort const&); - StunPort(); - public: // member functions // NOLINTBEGIN diff --git a/src/mc/external/cricket/StunXorAddressAttribute.h b/src/mc/external/cricket/StunXorAddressAttribute.h index c9564ccefe..9e3e734e9d 100644 --- a/src/mc/external/cricket/StunXorAddressAttribute.h +++ b/src/mc/external/cricket/StunXorAddressAttribute.h @@ -12,12 +12,6 @@ namespace rtc { class SocketAddress; } namespace cricket { class StunXorAddressAttribute { -public: - // prevent constructor by default - StunXorAddressAttribute& operator=(StunXorAddressAttribute const&); - StunXorAddressAttribute(StunXorAddressAttribute const&); - StunXorAddressAttribute(); - public: // member functions // NOLINTBEGIN diff --git a/src/mc/external/cricket/SwitchResult.h b/src/mc/external/cricket/SwitchResult.h index 5a9709cb18..0df0408ebe 100644 --- a/src/mc/external/cricket/SwitchResult.h +++ b/src/mc/external/cricket/SwitchResult.h @@ -5,11 +5,6 @@ namespace cricket::IceControllerInterface { struct SwitchResult { -public: - // prevent constructor by default - SwitchResult& operator=(SwitchResult const&); - SwitchResult(); - public: // member functions // NOLINTBEGIN diff --git a/src/mc/external/cricket/TCPConnection.h b/src/mc/external/cricket/TCPConnection.h index bd0fae1c12..4e52f7e9cc 100644 --- a/src/mc/external/cricket/TCPConnection.h +++ b/src/mc/external/cricket/TCPConnection.h @@ -17,12 +17,6 @@ namespace rtc { class ReceivedPacket; } namespace cricket { class TCPConnection { -public: - // prevent constructor by default - TCPConnection& operator=(TCPConnection const&); - TCPConnection(TCPConnection const&); - TCPConnection(); - public: // member functions // NOLINTBEGIN diff --git a/src/mc/external/cricket/TCPPort.h b/src/mc/external/cricket/TCPPort.h index d0b7220832..e861032691 100644 --- a/src/mc/external/cricket/TCPPort.h +++ b/src/mc/external/cricket/TCPPort.h @@ -25,12 +25,6 @@ class TCPPort { // TCPPort inner types define struct Incoming { - public: - // prevent constructor by default - Incoming& operator=(Incoming const&); - Incoming(Incoming const&); - Incoming(); - public: // member functions // NOLINTBEGIN @@ -44,12 +38,6 @@ class TCPPort { // NOLINTEND }; -public: - // prevent constructor by default - TCPPort& operator=(TCPPort const&); - TCPPort(TCPPort const&); - TCPPort(); - public: // member functions // NOLINTBEGIN diff --git a/src/mc/external/cricket/TransportChannelStats.h b/src/mc/external/cricket/TransportChannelStats.h index ce914a8fa6..d5473111ce 100644 --- a/src/mc/external/cricket/TransportChannelStats.h +++ b/src/mc/external/cricket/TransportChannelStats.h @@ -5,10 +5,6 @@ namespace cricket { struct TransportChannelStats { -public: - // prevent constructor by default - TransportChannelStats& operator=(TransportChannelStats const&); - public: // member functions // NOLINTBEGIN diff --git a/src/mc/external/cricket/TransportDescriptionFactory.h b/src/mc/external/cricket/TransportDescriptionFactory.h index 66f1f10d00..2d4f589198 100644 --- a/src/mc/external/cricket/TransportDescriptionFactory.h +++ b/src/mc/external/cricket/TransportDescriptionFactory.h @@ -16,12 +16,6 @@ namespace webrtc { class FieldTrialsView; } namespace cricket { class TransportDescriptionFactory { -public: - // prevent constructor by default - TransportDescriptionFactory& operator=(TransportDescriptionFactory const&); - TransportDescriptionFactory(TransportDescriptionFactory const&); - TransportDescriptionFactory(); - public: // member functions // NOLINTBEGIN diff --git a/src/mc/external/cricket/TransportOptions.h b/src/mc/external/cricket/TransportOptions.h index 1ed55cd6f5..131d198b1d 100644 --- a/src/mc/external/cricket/TransportOptions.h +++ b/src/mc/external/cricket/TransportOptions.h @@ -4,12 +4,6 @@ namespace cricket { -struct TransportOptions { -public: - // prevent constructor by default - TransportOptions& operator=(TransportOptions const&); - TransportOptions(TransportOptions const&); - TransportOptions(); -}; +struct TransportOptions {}; } // namespace cricket diff --git a/src/mc/external/cricket/TransportStats.h b/src/mc/external/cricket/TransportStats.h index de87940715..7c17b1fc0f 100644 --- a/src/mc/external/cricket/TransportStats.h +++ b/src/mc/external/cricket/TransportStats.h @@ -5,12 +5,6 @@ namespace cricket { struct TransportStats { -public: - // prevent constructor by default - TransportStats& operator=(TransportStats const&); - TransportStats(TransportStats const&); - TransportStats(); - public: // member functions // NOLINTBEGIN diff --git a/src/mc/external/cricket/TurnAllocateRequest.h b/src/mc/external/cricket/TurnAllocateRequest.h index 3a8ed7a6d7..f0921f2219 100644 --- a/src/mc/external/cricket/TurnAllocateRequest.h +++ b/src/mc/external/cricket/TurnAllocateRequest.h @@ -11,12 +11,6 @@ namespace cricket { class TurnPort; } namespace cricket { class TurnAllocateRequest { -public: - // prevent constructor by default - TurnAllocateRequest& operator=(TurnAllocateRequest const&); - TurnAllocateRequest(TurnAllocateRequest const&); - TurnAllocateRequest(); - public: // member functions // NOLINTBEGIN diff --git a/src/mc/external/cricket/TurnChannelBindRequest.h b/src/mc/external/cricket/TurnChannelBindRequest.h index 05ba497695..5bfbb749e3 100644 --- a/src/mc/external/cricket/TurnChannelBindRequest.h +++ b/src/mc/external/cricket/TurnChannelBindRequest.h @@ -12,12 +12,6 @@ namespace rtc { class SocketAddress; } namespace cricket { class TurnChannelBindRequest { -public: - // prevent constructor by default - TurnChannelBindRequest& operator=(TurnChannelBindRequest const&); - TurnChannelBindRequest(TurnChannelBindRequest const&); - TurnChannelBindRequest(); - public: // member functions // NOLINTBEGIN diff --git a/src/mc/external/cricket/TurnCreatePermissionRequest.h b/src/mc/external/cricket/TurnCreatePermissionRequest.h index 587d6ddddd..f96a1b325f 100644 --- a/src/mc/external/cricket/TurnCreatePermissionRequest.h +++ b/src/mc/external/cricket/TurnCreatePermissionRequest.h @@ -12,12 +12,6 @@ namespace rtc { class SocketAddress; } namespace cricket { class TurnCreatePermissionRequest { -public: - // prevent constructor by default - TurnCreatePermissionRequest& operator=(TurnCreatePermissionRequest const&); - TurnCreatePermissionRequest(TurnCreatePermissionRequest const&); - TurnCreatePermissionRequest(); - public: // member functions // NOLINTBEGIN diff --git a/src/mc/external/cricket/TurnEntry.h b/src/mc/external/cricket/TurnEntry.h index bd27a88d0f..b97cd6490f 100644 --- a/src/mc/external/cricket/TurnEntry.h +++ b/src/mc/external/cricket/TurnEntry.h @@ -17,12 +17,6 @@ namespace webrtc { class PendingTaskSafetyFlag; } namespace cricket { class TurnEntry { -public: - // prevent constructor by default - TurnEntry& operator=(TurnEntry const&); - TurnEntry(TurnEntry const&); - TurnEntry(); - public: // member functions // NOLINTBEGIN diff --git a/src/mc/external/cricket/TurnPort.h b/src/mc/external/cricket/TurnPort.h index d14f88e5e1..ab5534b786 100644 --- a/src/mc/external/cricket/TurnPort.h +++ b/src/mc/external/cricket/TurnPort.h @@ -29,12 +29,6 @@ namespace webrtc { class TurnCustomizer; } namespace cricket { class TurnPort { -public: - // prevent constructor by default - TurnPort& operator=(TurnPort const&); - TurnPort(TurnPort const&); - TurnPort(); - public: // member functions // NOLINTBEGIN diff --git a/src/mc/external/cricket/TurnRefreshRequest.h b/src/mc/external/cricket/TurnRefreshRequest.h index bf663858be..da260d396d 100644 --- a/src/mc/external/cricket/TurnRefreshRequest.h +++ b/src/mc/external/cricket/TurnRefreshRequest.h @@ -10,12 +10,6 @@ namespace cricket { class TurnPort; } namespace cricket { class TurnRefreshRequest { -public: - // prevent constructor by default - TurnRefreshRequest& operator=(TurnRefreshRequest const&); - TurnRefreshRequest(TurnRefreshRequest const&); - TurnRefreshRequest(); - public: // member functions // NOLINTBEGIN diff --git a/src/mc/external/cricket/UDPPort.h b/src/mc/external/cricket/UDPPort.h index 4a52ad6b0e..bd020f7781 100644 --- a/src/mc/external/cricket/UDPPort.h +++ b/src/mc/external/cricket/UDPPort.h @@ -28,12 +28,6 @@ class UDPPort { // UDPPort inner types define class AddressResolver { - public: - // prevent constructor by default - AddressResolver& operator=(AddressResolver const&); - AddressResolver(AddressResolver const&); - AddressResolver(); - public: // member functions // NOLINTBEGIN @@ -51,12 +45,6 @@ class UDPPort { // NOLINTEND }; -public: - // prevent constructor by default - UDPPort& operator=(UDPPort const&); - UDPPort(UDPPort const&); - UDPPort(); - public: // member functions // NOLINTBEGIN diff --git a/src/mc/external/cricket/UsedPayloadTypes.h b/src/mc/external/cricket/UsedPayloadTypes.h index fa1e9e61f8..bc418601a8 100644 --- a/src/mc/external/cricket/UsedPayloadTypes.h +++ b/src/mc/external/cricket/UsedPayloadTypes.h @@ -4,12 +4,6 @@ namespace cricket { -class UsedPayloadTypes { -public: - // prevent constructor by default - UsedPayloadTypes& operator=(UsedPayloadTypes const&); - UsedPayloadTypes(UsedPayloadTypes const&); - UsedPayloadTypes(); -}; +class UsedPayloadTypes {}; } // namespace cricket diff --git a/src/mc/external/cricket/VideoChannel.h b/src/mc/external/cricket/VideoChannel.h index fdad3010af..68e79a5684 100644 --- a/src/mc/external/cricket/VideoChannel.h +++ b/src/mc/external/cricket/VideoChannel.h @@ -15,12 +15,6 @@ namespace webrtc { struct CryptoOptions; } namespace cricket { class VideoChannel { -public: - // prevent constructor by default - VideoChannel& operator=(VideoChannel const&); - VideoChannel(VideoChannel const&); - VideoChannel(); - public: // member functions // NOLINTBEGIN diff --git a/src/mc/external/cricket/VideoContentDescription.h b/src/mc/external/cricket/VideoContentDescription.h index 008349603a..35a0a7fddd 100644 --- a/src/mc/external/cricket/VideoContentDescription.h +++ b/src/mc/external/cricket/VideoContentDescription.h @@ -9,12 +9,6 @@ namespace cricket { class VideoContentDescription : public ::cricket::RtpMediaContentDescription { -public: - // prevent constructor by default - VideoContentDescription& operator=(VideoContentDescription const&); - VideoContentDescription(VideoContentDescription const&); - VideoContentDescription(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/external/cricket/VideoEngineInterface.h b/src/mc/external/cricket/VideoEngineInterface.h index 05c60f1852..0fafd67f62 100644 --- a/src/mc/external/cricket/VideoEngineInterface.h +++ b/src/mc/external/cricket/VideoEngineInterface.h @@ -20,12 +20,6 @@ namespace webrtc { struct CryptoOptions; } namespace cricket { class VideoEngineInterface : public ::cricket::RtpHeaderExtensionQueryInterface { -public: - // prevent constructor by default - VideoEngineInterface& operator=(VideoEngineInterface const&); - VideoEngineInterface(VideoEngineInterface const&); - VideoEngineInterface(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/external/cricket/VideoFormat.h b/src/mc/external/cricket/VideoFormat.h index f69178e29c..1989e674bf 100644 --- a/src/mc/external/cricket/VideoFormat.h +++ b/src/mc/external/cricket/VideoFormat.h @@ -7,12 +7,6 @@ namespace cricket { -struct VideoFormat : public ::cricket::VideoFormatPod { -public: - // prevent constructor by default - VideoFormat& operator=(VideoFormat const&); - VideoFormat(VideoFormat const&); - VideoFormat(); -}; +struct VideoFormat : public ::cricket::VideoFormatPod {}; } // namespace cricket diff --git a/src/mc/external/cricket/VideoMediaReceiveChannelInterface.h b/src/mc/external/cricket/VideoMediaReceiveChannelInterface.h index 7db51f2d92..90c276b648 100644 --- a/src/mc/external/cricket/VideoMediaReceiveChannelInterface.h +++ b/src/mc/external/cricket/VideoMediaReceiveChannelInterface.h @@ -21,12 +21,6 @@ namespace webrtc { struct RtpParameters; } namespace cricket { class VideoMediaReceiveChannelInterface : public ::cricket::MediaReceiveChannelInterface { -public: - // prevent constructor by default - VideoMediaReceiveChannelInterface& operator=(VideoMediaReceiveChannelInterface const&); - VideoMediaReceiveChannelInterface(VideoMediaReceiveChannelInterface const&); - VideoMediaReceiveChannelInterface(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/external/cricket/VideoMediaSendChannelInterface.h b/src/mc/external/cricket/VideoMediaSendChannelInterface.h index f7ff4f97f2..12a0693627 100644 --- a/src/mc/external/cricket/VideoMediaSendChannelInterface.h +++ b/src/mc/external/cricket/VideoMediaSendChannelInterface.h @@ -19,12 +19,6 @@ namespace webrtc { class VideoFrame; } namespace cricket { class VideoMediaSendChannelInterface : public ::cricket::MediaSendChannelInterface { -public: - // prevent constructor by default - VideoMediaSendChannelInterface& operator=(VideoMediaSendChannelInterface const&); - VideoMediaSendChannelInterface(VideoMediaSendChannelInterface const&); - VideoMediaSendChannelInterface(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/external/cricket/VideoReceiverParameters.h b/src/mc/external/cricket/VideoReceiverParameters.h index 7ee9b8125e..9a98e307e8 100644 --- a/src/mc/external/cricket/VideoReceiverParameters.h +++ b/src/mc/external/cricket/VideoReceiverParameters.h @@ -8,12 +8,6 @@ namespace cricket { struct VideoReceiverParameters : public ::cricket::MediaChannelParameters { -public: - // prevent constructor by default - VideoReceiverParameters& operator=(VideoReceiverParameters const&); - VideoReceiverParameters(VideoReceiverParameters const&); - VideoReceiverParameters(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/external/cricket/VoiceChannel.h b/src/mc/external/cricket/VoiceChannel.h index a516577e28..b06d0b41c6 100644 --- a/src/mc/external/cricket/VoiceChannel.h +++ b/src/mc/external/cricket/VoiceChannel.h @@ -15,12 +15,6 @@ namespace webrtc { struct CryptoOptions; } namespace cricket { class VoiceChannel { -public: - // prevent constructor by default - VoiceChannel& operator=(VoiceChannel const&); - VoiceChannel(VoiceChannel const&); - VoiceChannel(); - public: // member functions // NOLINTBEGIN diff --git a/src/mc/external/cricket/VoiceEngineInterface.h b/src/mc/external/cricket/VoiceEngineInterface.h index 1ae6d0c040..347aee1855 100644 --- a/src/mc/external/cricket/VoiceEngineInterface.h +++ b/src/mc/external/cricket/VoiceEngineInterface.h @@ -24,12 +24,6 @@ namespace webrtc { struct CryptoOptions; } namespace cricket { class VoiceEngineInterface : public ::cricket::RtpHeaderExtensionQueryInterface { -public: - // prevent constructor by default - VoiceEngineInterface& operator=(VoiceEngineInterface const&); - VoiceEngineInterface(VoiceEngineInterface const&); - VoiceEngineInterface(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/external/cricket/VoiceMediaReceiveChannelInterface.h b/src/mc/external/cricket/VoiceMediaReceiveChannelInterface.h index d9c87b477e..eb8a4c5b84 100644 --- a/src/mc/external/cricket/VoiceMediaReceiveChannelInterface.h +++ b/src/mc/external/cricket/VoiceMediaReceiveChannelInterface.h @@ -17,12 +17,6 @@ namespace webrtc { struct RtpParameters; } namespace cricket { class VoiceMediaReceiveChannelInterface : public ::cricket::MediaReceiveChannelInterface { -public: - // prevent constructor by default - VoiceMediaReceiveChannelInterface& operator=(VoiceMediaReceiveChannelInterface const&); - VoiceMediaReceiveChannelInterface(VoiceMediaReceiveChannelInterface const&); - VoiceMediaReceiveChannelInterface(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/external/cricket/VoiceMediaSendChannelInterface.h b/src/mc/external/cricket/VoiceMediaSendChannelInterface.h index 0b4907c408..28a34158f7 100644 --- a/src/mc/external/cricket/VoiceMediaSendChannelInterface.h +++ b/src/mc/external/cricket/VoiceMediaSendChannelInterface.h @@ -16,12 +16,6 @@ namespace cricket { struct VoiceMediaSendInfo; } namespace cricket { class VoiceMediaSendChannelInterface : public ::cricket::MediaSendChannelInterface { -public: - // prevent constructor by default - VoiceMediaSendChannelInterface& operator=(VoiceMediaSendChannelInterface const&); - VoiceMediaSendChannelInterface(VoiceMediaSendChannelInterface const&); - VoiceMediaSendChannelInterface(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/external/cricket/WrappingActiveIceController.h b/src/mc/external/cricket/WrappingActiveIceController.h index 24c0f7a024..23b61a8cd7 100644 --- a/src/mc/external/cricket/WrappingActiveIceController.h +++ b/src/mc/external/cricket/WrappingActiveIceController.h @@ -17,12 +17,6 @@ namespace cricket::IceControllerInterface { struct SwitchResult; } namespace cricket { class WrappingActiveIceController { -public: - // prevent constructor by default - WrappingActiveIceController& operator=(WrappingActiveIceController const&); - WrappingActiveIceController(WrappingActiveIceController const&); - WrappingActiveIceController(); - public: // member functions // NOLINTBEGIN diff --git a/src/mc/external/dcsctp/AbortChunk.h b/src/mc/external/dcsctp/AbortChunk.h index 980bb2690f..0a93c56a37 100644 --- a/src/mc/external/dcsctp/AbortChunk.h +++ b/src/mc/external/dcsctp/AbortChunk.h @@ -10,12 +10,6 @@ namespace dcsctp { class Parameters; } namespace dcsctp { class AbortChunk { -public: - // prevent constructor by default - AbortChunk& operator=(AbortChunk const&); - AbortChunk(AbortChunk const&); - AbortChunk(); - public: // member functions // NOLINTBEGIN diff --git a/src/mc/external/dcsctp/AnyDataChunk.h b/src/mc/external/dcsctp/AnyDataChunk.h index 1d06aebff1..c011a145f7 100644 --- a/src/mc/external/dcsctp/AnyDataChunk.h +++ b/src/mc/external/dcsctp/AnyDataChunk.h @@ -14,12 +14,6 @@ namespace dcsctp { struct Data; } namespace dcsctp { class AnyDataChunk { -public: - // prevent constructor by default - AnyDataChunk& operator=(AnyDataChunk const&); - AnyDataChunk(AnyDataChunk const&); - AnyDataChunk(); - public: // member functions // NOLINTBEGIN diff --git a/src/mc/external/dcsctp/AnyForwardTsnChunk.h b/src/mc/external/dcsctp/AnyForwardTsnChunk.h index 87a8f8d256..6b907d9d48 100644 --- a/src/mc/external/dcsctp/AnyForwardTsnChunk.h +++ b/src/mc/external/dcsctp/AnyForwardTsnChunk.h @@ -20,19 +20,7 @@ class AnyForwardTsnChunk { // clang-format on // AnyForwardTsnChunk inner types define - struct SkippedStream { - public: - // prevent constructor by default - SkippedStream& operator=(SkippedStream const&); - SkippedStream(SkippedStream const&); - SkippedStream(); - }; - -public: - // prevent constructor by default - AnyForwardTsnChunk& operator=(AnyForwardTsnChunk const&); - AnyForwardTsnChunk(AnyForwardTsnChunk const&); - AnyForwardTsnChunk(); + struct SkippedStream {}; public: // member functions diff --git a/src/mc/external/dcsctp/CallbackDeferrer.h b/src/mc/external/dcsctp/CallbackDeferrer.h index 0d6b811fd5..3dfe1882e0 100644 --- a/src/mc/external/dcsctp/CallbackDeferrer.h +++ b/src/mc/external/dcsctp/CallbackDeferrer.h @@ -15,12 +15,6 @@ class CallbackDeferrer { // CallbackDeferrer inner types define struct Error { - public: - // prevent constructor by default - Error& operator=(Error const&); - Error(Error const&); - Error(); - public: // member functions // NOLINTBEGIN @@ -35,12 +29,6 @@ class CallbackDeferrer { }; struct ScopedDeferrer { - public: - // prevent constructor by default - ScopedDeferrer& operator=(ScopedDeferrer const&); - ScopedDeferrer(ScopedDeferrer const&); - ScopedDeferrer(); - public: // member functions // NOLINTBEGIN @@ -55,12 +43,6 @@ class CallbackDeferrer { }; struct StreamReset { - public: - // prevent constructor by default - StreamReset& operator=(StreamReset const&); - StreamReset(StreamReset const&); - StreamReset(); - public: // member functions // NOLINTBEGIN @@ -74,12 +56,6 @@ class CallbackDeferrer { // NOLINTEND }; -public: - // prevent constructor by default - CallbackDeferrer& operator=(CallbackDeferrer const&); - CallbackDeferrer(CallbackDeferrer const&); - CallbackDeferrer(); - public: // member functions // NOLINTBEGIN diff --git a/src/mc/external/dcsctp/Capabilities.h b/src/mc/external/dcsctp/Capabilities.h index ff89eb02e5..b79d976b8e 100644 --- a/src/mc/external/dcsctp/Capabilities.h +++ b/src/mc/external/dcsctp/Capabilities.h @@ -4,12 +4,6 @@ namespace dcsctp { -struct Capabilities { -public: - // prevent constructor by default - Capabilities& operator=(Capabilities const&); - Capabilities(Capabilities const&); - Capabilities(); -}; +struct Capabilities {}; } // namespace dcsctp diff --git a/src/mc/external/dcsctp/Chunk.h b/src/mc/external/dcsctp/Chunk.h index 085ea97c87..b4b10dfbde 100644 --- a/src/mc/external/dcsctp/Chunk.h +++ b/src/mc/external/dcsctp/Chunk.h @@ -4,12 +4,6 @@ namespace dcsctp { -class Chunk { -public: - // prevent constructor by default - Chunk& operator=(Chunk const&); - Chunk(Chunk const&); - Chunk(); -}; +class Chunk {}; } // namespace dcsctp diff --git a/src/mc/external/dcsctp/ChunkValidators.h b/src/mc/external/dcsctp/ChunkValidators.h index fbab1d0647..94d7b0a569 100644 --- a/src/mc/external/dcsctp/ChunkValidators.h +++ b/src/mc/external/dcsctp/ChunkValidators.h @@ -10,12 +10,6 @@ namespace dcsctp { class SackChunk; } namespace dcsctp { struct ChunkValidators { -public: - // prevent constructor by default - ChunkValidators& operator=(ChunkValidators const&); - ChunkValidators(ChunkValidators const&); - ChunkValidators(); - public: // static functions // NOLINTBEGIN diff --git a/src/mc/external/dcsctp/CommonHeader.h b/src/mc/external/dcsctp/CommonHeader.h index 07825214d7..98ea2ce0ec 100644 --- a/src/mc/external/dcsctp/CommonHeader.h +++ b/src/mc/external/dcsctp/CommonHeader.h @@ -4,12 +4,6 @@ namespace dcsctp { -struct CommonHeader { -public: - // prevent constructor by default - CommonHeader& operator=(CommonHeader const&); - CommonHeader(CommonHeader const&); - CommonHeader(); -}; +struct CommonHeader {}; } // namespace dcsctp diff --git a/src/mc/external/dcsctp/Context.h b/src/mc/external/dcsctp/Context.h index f74b247719..34556a297d 100644 --- a/src/mc/external/dcsctp/Context.h +++ b/src/mc/external/dcsctp/Context.h @@ -4,12 +4,6 @@ namespace dcsctp { -class Context { -public: - // prevent constructor by default - Context& operator=(Context const&); - Context(Context const&); - Context(); -}; +class Context {}; } // namespace dcsctp diff --git a/src/mc/external/dcsctp/CookieAckChunk.h b/src/mc/external/dcsctp/CookieAckChunk.h index 26950f495a..668ab2e1b7 100644 --- a/src/mc/external/dcsctp/CookieAckChunk.h +++ b/src/mc/external/dcsctp/CookieAckChunk.h @@ -5,12 +5,6 @@ namespace dcsctp { class CookieAckChunk { -public: - // prevent constructor by default - CookieAckChunk& operator=(CookieAckChunk const&); - CookieAckChunk(CookieAckChunk const&); - CookieAckChunk(); - public: // static functions // NOLINTBEGIN diff --git a/src/mc/external/dcsctp/CookieEchoChunk.h b/src/mc/external/dcsctp/CookieEchoChunk.h index 7a73b1a0ed..b91a5050b2 100644 --- a/src/mc/external/dcsctp/CookieEchoChunk.h +++ b/src/mc/external/dcsctp/CookieEchoChunk.h @@ -5,12 +5,6 @@ namespace dcsctp { class CookieEchoChunk { -public: - // prevent constructor by default - CookieEchoChunk& operator=(CookieEchoChunk const&); - CookieEchoChunk(CookieEchoChunk const&); - CookieEchoChunk(); - public: // static functions // NOLINTBEGIN diff --git a/src/mc/external/dcsctp/CookieReceivedWhileShuttingDownCause.h b/src/mc/external/dcsctp/CookieReceivedWhileShuttingDownCause.h index 5e72281d52..ac6390d1dc 100644 --- a/src/mc/external/dcsctp/CookieReceivedWhileShuttingDownCause.h +++ b/src/mc/external/dcsctp/CookieReceivedWhileShuttingDownCause.h @@ -5,12 +5,6 @@ namespace dcsctp { class CookieReceivedWhileShuttingDownCause { -public: - // prevent constructor by default - CookieReceivedWhileShuttingDownCause& operator=(CookieReceivedWhileShuttingDownCause const&); - CookieReceivedWhileShuttingDownCause(CookieReceivedWhileShuttingDownCause const&); - CookieReceivedWhileShuttingDownCause(); - public: // static functions // NOLINTBEGIN diff --git a/src/mc/external/dcsctp/Data.h b/src/mc/external/dcsctp/Data.h index 6f24148961..ed4cc0983e 100644 --- a/src/mc/external/dcsctp/Data.h +++ b/src/mc/external/dcsctp/Data.h @@ -20,12 +20,6 @@ namespace dcsctp { class StreamIDTag; } namespace dcsctp { struct Data { -public: - // prevent constructor by default - Data& operator=(Data const&); - Data(Data const&); - Data(); - public: // member functions // NOLINTBEGIN diff --git a/src/mc/external/dcsctp/DataChunk.h b/src/mc/external/dcsctp/DataChunk.h index 016675ed42..f60455c20c 100644 --- a/src/mc/external/dcsctp/DataChunk.h +++ b/src/mc/external/dcsctp/DataChunk.h @@ -5,12 +5,6 @@ namespace dcsctp { class DataChunk { -public: - // prevent constructor by default - DataChunk& operator=(DataChunk const&); - DataChunk(DataChunk const&); - DataChunk(); - public: // static functions // NOLINTBEGIN diff --git a/src/mc/external/dcsctp/DataTracker.h b/src/mc/external/dcsctp/DataTracker.h index 2d1f53adc4..2d1506cb67 100644 --- a/src/mc/external/dcsctp/DataTracker.h +++ b/src/mc/external/dcsctp/DataTracker.h @@ -29,12 +29,6 @@ class DataTracker { enum class AckState : uint {}; struct AdditionalTsnBlocks { - public: - // prevent constructor by default - AdditionalTsnBlocks& operator=(AdditionalTsnBlocks const&); - AdditionalTsnBlocks(AdditionalTsnBlocks const&); - AdditionalTsnBlocks(); - public: // member functions // NOLINTBEGIN @@ -54,12 +48,6 @@ class DataTracker { // NOLINTEND }; -public: - // prevent constructor by default - DataTracker& operator=(DataTracker const&); - DataTracker(DataTracker const&); - DataTracker(); - public: // member functions // NOLINTBEGIN diff --git a/src/mc/external/dcsctp/DcSctpMessage.h b/src/mc/external/dcsctp/DcSctpMessage.h index 6e44d2b104..a266327916 100644 --- a/src/mc/external/dcsctp/DcSctpMessage.h +++ b/src/mc/external/dcsctp/DcSctpMessage.h @@ -5,12 +5,6 @@ namespace dcsctp { class DcSctpMessage { -public: - // prevent constructor by default - DcSctpMessage& operator=(DcSctpMessage const&); - DcSctpMessage(DcSctpMessage const&); - DcSctpMessage(); - public: // member functions // NOLINTBEGIN diff --git a/src/mc/external/dcsctp/DcSctpOptions.h b/src/mc/external/dcsctp/DcSctpOptions.h index c70f5cf07d..6ca5b38241 100644 --- a/src/mc/external/dcsctp/DcSctpOptions.h +++ b/src/mc/external/dcsctp/DcSctpOptions.h @@ -4,12 +4,6 @@ namespace dcsctp { -struct DcSctpOptions { -public: - // prevent constructor by default - DcSctpOptions& operator=(DcSctpOptions const&); - DcSctpOptions(DcSctpOptions const&); - DcSctpOptions(); -}; +struct DcSctpOptions {}; } // namespace dcsctp diff --git a/src/mc/external/dcsctp/DcSctpSocket.h b/src/mc/external/dcsctp/DcSctpSocket.h index aed6174362..bec7e98214 100644 --- a/src/mc/external/dcsctp/DcSctpSocket.h +++ b/src/mc/external/dcsctp/DcSctpSocket.h @@ -35,12 +35,6 @@ class DcSctpSocket { // DcSctpSocket inner types define enum class State : uint {}; -public: - // prevent constructor by default - DcSctpSocket& operator=(DcSctpSocket const&); - DcSctpSocket(DcSctpSocket const&); - DcSctpSocket(); - public: // member functions // NOLINTBEGIN diff --git a/src/mc/external/dcsctp/DcSctpSocketCallbacks.h b/src/mc/external/dcsctp/DcSctpSocketCallbacks.h index 5c2737a4cb..649663fdb5 100644 --- a/src/mc/external/dcsctp/DcSctpSocketCallbacks.h +++ b/src/mc/external/dcsctp/DcSctpSocketCallbacks.h @@ -4,12 +4,6 @@ namespace dcsctp { -class DcSctpSocketCallbacks { -public: - // prevent constructor by default - DcSctpSocketCallbacks& operator=(DcSctpSocketCallbacks const&); - DcSctpSocketCallbacks(DcSctpSocketCallbacks const&); - DcSctpSocketCallbacks(); -}; +class DcSctpSocketCallbacks {}; } // namespace dcsctp diff --git a/src/mc/external/dcsctp/DcSctpSocketFactory.h b/src/mc/external/dcsctp/DcSctpSocketFactory.h index b68c82b697..738db46d64 100644 --- a/src/mc/external/dcsctp/DcSctpSocketFactory.h +++ b/src/mc/external/dcsctp/DcSctpSocketFactory.h @@ -4,12 +4,6 @@ namespace dcsctp { -class DcSctpSocketFactory { -public: - // prevent constructor by default - DcSctpSocketFactory& operator=(DcSctpSocketFactory const&); - DcSctpSocketFactory(DcSctpSocketFactory const&); - DcSctpSocketFactory(); -}; +class DcSctpSocketFactory {}; } // namespace dcsctp diff --git a/src/mc/external/dcsctp/DcSctpSocketHandoverState.h b/src/mc/external/dcsctp/DcSctpSocketHandoverState.h index 7368188cbc..5d1c3cb7c5 100644 --- a/src/mc/external/dcsctp/DcSctpSocketHandoverState.h +++ b/src/mc/external/dcsctp/DcSctpSocketHandoverState.h @@ -13,21 +13,9 @@ struct DcSctpSocketHandoverState { // clang-format on // DcSctpSocketHandoverState inner types define - struct OutgoingStream { - public: - // prevent constructor by default - OutgoingStream& operator=(OutgoingStream const&); - OutgoingStream(OutgoingStream const&); - OutgoingStream(); - }; + struct OutgoingStream {}; struct Receive { - public: - // prevent constructor by default - Receive& operator=(Receive const&); - Receive(Receive const&); - Receive(); - public: // member functions // NOLINTBEGIN @@ -41,12 +29,6 @@ struct DcSctpSocketHandoverState { // NOLINTEND }; -public: - // prevent constructor by default - DcSctpSocketHandoverState& operator=(DcSctpSocketHandoverState const&); - DcSctpSocketHandoverState(DcSctpSocketHandoverState const&); - DcSctpSocketHandoverState(); - public: // member functions // NOLINTBEGIN diff --git a/src/mc/external/dcsctp/DurationMs.h b/src/mc/external/dcsctp/DurationMs.h index b9d9f7e5b1..00d8df4272 100644 --- a/src/mc/external/dcsctp/DurationMs.h +++ b/src/mc/external/dcsctp/DurationMs.h @@ -10,12 +10,6 @@ namespace webrtc { class TimeDelta; } namespace dcsctp { class DurationMs { -public: - // prevent constructor by default - DurationMs& operator=(DurationMs const&); - DurationMs(DurationMs const&); - DurationMs(); - public: // member functions // NOLINTBEGIN diff --git a/src/mc/external/dcsctp/ErrorChunk.h b/src/mc/external/dcsctp/ErrorChunk.h index 6443b945cf..ea8fb4a5cf 100644 --- a/src/mc/external/dcsctp/ErrorChunk.h +++ b/src/mc/external/dcsctp/ErrorChunk.h @@ -10,12 +10,6 @@ namespace dcsctp { class Parameters; } namespace dcsctp { class ErrorChunk { -public: - // prevent constructor by default - ErrorChunk& operator=(ErrorChunk const&); - ErrorChunk(ErrorChunk const&); - ErrorChunk(); - public: // member functions // NOLINTBEGIN diff --git a/src/mc/external/dcsctp/FSNTag.h b/src/mc/external/dcsctp/FSNTag.h index 6c34785355..f79177baa6 100644 --- a/src/mc/external/dcsctp/FSNTag.h +++ b/src/mc/external/dcsctp/FSNTag.h @@ -4,12 +4,6 @@ namespace dcsctp { -class FSNTag { -public: - // prevent constructor by default - FSNTag& operator=(FSNTag const&); - FSNTag(FSNTag const&); - FSNTag(); -}; +class FSNTag {}; } // namespace dcsctp diff --git a/src/mc/external/dcsctp/ForwardTsnChunk.h b/src/mc/external/dcsctp/ForwardTsnChunk.h index 8dfea26946..85c2d561ba 100644 --- a/src/mc/external/dcsctp/ForwardTsnChunk.h +++ b/src/mc/external/dcsctp/ForwardTsnChunk.h @@ -5,12 +5,6 @@ namespace dcsctp { class ForwardTsnChunk { -public: - // prevent constructor by default - ForwardTsnChunk& operator=(ForwardTsnChunk const&); - ForwardTsnChunk(ForwardTsnChunk const&); - ForwardTsnChunk(); - public: // static functions // NOLINTBEGIN diff --git a/src/mc/external/dcsctp/ForwardTsnSupportedParameter.h b/src/mc/external/dcsctp/ForwardTsnSupportedParameter.h index cea49b490f..f7f43e72de 100644 --- a/src/mc/external/dcsctp/ForwardTsnSupportedParameter.h +++ b/src/mc/external/dcsctp/ForwardTsnSupportedParameter.h @@ -5,12 +5,6 @@ namespace dcsctp { class ForwardTsnSupportedParameter { -public: - // prevent constructor by default - ForwardTsnSupportedParameter& operator=(ForwardTsnSupportedParameter const&); - ForwardTsnSupportedParameter(ForwardTsnSupportedParameter const&); - ForwardTsnSupportedParameter(); - public: // static functions // NOLINTBEGIN diff --git a/src/mc/external/dcsctp/HandoverReadinessStatus.h b/src/mc/external/dcsctp/HandoverReadinessStatus.h index b3f1488322..6905f59188 100644 --- a/src/mc/external/dcsctp/HandoverReadinessStatus.h +++ b/src/mc/external/dcsctp/HandoverReadinessStatus.h @@ -4,12 +4,6 @@ namespace dcsctp { -class HandoverReadinessStatus { -public: - // prevent constructor by default - HandoverReadinessStatus& operator=(HandoverReadinessStatus const&); - HandoverReadinessStatus(HandoverReadinessStatus const&); - HandoverReadinessStatus(); -}; +class HandoverReadinessStatus {}; } // namespace dcsctp diff --git a/src/mc/external/dcsctp/HeartbeatAckChunk.h b/src/mc/external/dcsctp/HeartbeatAckChunk.h index d4d7db1683..be57ae21a2 100644 --- a/src/mc/external/dcsctp/HeartbeatAckChunk.h +++ b/src/mc/external/dcsctp/HeartbeatAckChunk.h @@ -5,12 +5,6 @@ namespace dcsctp { class HeartbeatAckChunk { -public: - // prevent constructor by default - HeartbeatAckChunk& operator=(HeartbeatAckChunk const&); - HeartbeatAckChunk(HeartbeatAckChunk const&); - HeartbeatAckChunk(); - public: // static functions // NOLINTBEGIN diff --git a/src/mc/external/dcsctp/HeartbeatHandler.h b/src/mc/external/dcsctp/HeartbeatHandler.h index 94477c3706..985fe32aa3 100644 --- a/src/mc/external/dcsctp/HeartbeatHandler.h +++ b/src/mc/external/dcsctp/HeartbeatHandler.h @@ -15,12 +15,6 @@ namespace webrtc { class TimeDelta; } namespace dcsctp { class HeartbeatHandler { -public: - // prevent constructor by default - HeartbeatHandler& operator=(HeartbeatHandler const&); - HeartbeatHandler(HeartbeatHandler const&); - HeartbeatHandler(); - public: // member functions // NOLINTBEGIN diff --git a/src/mc/external/dcsctp/HeartbeatInfo.h b/src/mc/external/dcsctp/HeartbeatInfo.h index 07d5b9f716..f5ac923eea 100644 --- a/src/mc/external/dcsctp/HeartbeatInfo.h +++ b/src/mc/external/dcsctp/HeartbeatInfo.h @@ -5,12 +5,6 @@ namespace dcsctp { struct HeartbeatInfo { -public: - // prevent constructor by default - HeartbeatInfo& operator=(HeartbeatInfo const&); - HeartbeatInfo(HeartbeatInfo const&); - HeartbeatInfo(); - public: // member functions // NOLINTBEGIN diff --git a/src/mc/external/dcsctp/HeartbeatInfoParameter.h b/src/mc/external/dcsctp/HeartbeatInfoParameter.h index 7fe5a18b22..2dee239380 100644 --- a/src/mc/external/dcsctp/HeartbeatInfoParameter.h +++ b/src/mc/external/dcsctp/HeartbeatInfoParameter.h @@ -5,12 +5,6 @@ namespace dcsctp { class HeartbeatInfoParameter { -public: - // prevent constructor by default - HeartbeatInfoParameter& operator=(HeartbeatInfoParameter const&); - HeartbeatInfoParameter(HeartbeatInfoParameter const&); - HeartbeatInfoParameter(); - public: // static functions // NOLINTBEGIN diff --git a/src/mc/external/dcsctp/HeartbeatRequestChunk.h b/src/mc/external/dcsctp/HeartbeatRequestChunk.h index c05510057a..ea9814d70a 100644 --- a/src/mc/external/dcsctp/HeartbeatRequestChunk.h +++ b/src/mc/external/dcsctp/HeartbeatRequestChunk.h @@ -5,12 +5,6 @@ namespace dcsctp { class HeartbeatRequestChunk { -public: - // prevent constructor by default - HeartbeatRequestChunk& operator=(HeartbeatRequestChunk const&); - HeartbeatRequestChunk(HeartbeatRequestChunk const&); - HeartbeatRequestChunk(); - public: // static functions // NOLINTBEGIN diff --git a/src/mc/external/dcsctp/IDataChunk.h b/src/mc/external/dcsctp/IDataChunk.h index a4f65bfcba..c8e6af81d2 100644 --- a/src/mc/external/dcsctp/IDataChunk.h +++ b/src/mc/external/dcsctp/IDataChunk.h @@ -5,12 +5,6 @@ namespace dcsctp { class IDataChunk { -public: - // prevent constructor by default - IDataChunk& operator=(IDataChunk const&); - IDataChunk(IDataChunk const&); - IDataChunk(); - public: // static functions // NOLINTBEGIN diff --git a/src/mc/external/dcsctp/IForwardTsnChunk.h b/src/mc/external/dcsctp/IForwardTsnChunk.h index fe2f72d59a..01abf87d43 100644 --- a/src/mc/external/dcsctp/IForwardTsnChunk.h +++ b/src/mc/external/dcsctp/IForwardTsnChunk.h @@ -5,12 +5,6 @@ namespace dcsctp { class IForwardTsnChunk { -public: - // prevent constructor by default - IForwardTsnChunk& operator=(IForwardTsnChunk const&); - IForwardTsnChunk(IForwardTsnChunk const&); - IForwardTsnChunk(); - public: // static functions // NOLINTBEGIN diff --git a/src/mc/external/dcsctp/ImmediateAckFlagTag.h b/src/mc/external/dcsctp/ImmediateAckFlagTag.h index 45d2b21f37..5123a30e30 100644 --- a/src/mc/external/dcsctp/ImmediateAckFlagTag.h +++ b/src/mc/external/dcsctp/ImmediateAckFlagTag.h @@ -4,12 +4,6 @@ namespace dcsctp { -class ImmediateAckFlagTag { -public: - // prevent constructor by default - ImmediateAckFlagTag& operator=(ImmediateAckFlagTag const&); - ImmediateAckFlagTag(ImmediateAckFlagTag const&); - ImmediateAckFlagTag(); -}; +class ImmediateAckFlagTag {}; } // namespace dcsctp diff --git a/src/mc/external/dcsctp/IncomingSSNResetRequestParameter.h b/src/mc/external/dcsctp/IncomingSSNResetRequestParameter.h index b709617ca5..35abf71232 100644 --- a/src/mc/external/dcsctp/IncomingSSNResetRequestParameter.h +++ b/src/mc/external/dcsctp/IncomingSSNResetRequestParameter.h @@ -5,12 +5,6 @@ namespace dcsctp { class IncomingSSNResetRequestParameter { -public: - // prevent constructor by default - IncomingSSNResetRequestParameter& operator=(IncomingSSNResetRequestParameter const&); - IncomingSSNResetRequestParameter(IncomingSSNResetRequestParameter const&); - IncomingSSNResetRequestParameter(); - public: // static functions // NOLINTBEGIN diff --git a/src/mc/external/dcsctp/InitAckChunk.h b/src/mc/external/dcsctp/InitAckChunk.h index 28b914d94a..29f7934030 100644 --- a/src/mc/external/dcsctp/InitAckChunk.h +++ b/src/mc/external/dcsctp/InitAckChunk.h @@ -5,12 +5,6 @@ namespace dcsctp { class InitAckChunk { -public: - // prevent constructor by default - InitAckChunk& operator=(InitAckChunk const&); - InitAckChunk(InitAckChunk const&); - InitAckChunk(); - public: // static functions // NOLINTBEGIN diff --git a/src/mc/external/dcsctp/InitChunk.h b/src/mc/external/dcsctp/InitChunk.h index 5f40b79511..af04bb254d 100644 --- a/src/mc/external/dcsctp/InitChunk.h +++ b/src/mc/external/dcsctp/InitChunk.h @@ -5,12 +5,6 @@ namespace dcsctp { class InitChunk { -public: - // prevent constructor by default - InitChunk& operator=(InitChunk const&); - InitChunk(InitChunk const&); - InitChunk(); - public: // static functions // NOLINTBEGIN diff --git a/src/mc/external/dcsctp/InterleavedReassemblyStreams.h b/src/mc/external/dcsctp/InterleavedReassemblyStreams.h index 97370995b0..7d5faaaa49 100644 --- a/src/mc/external/dcsctp/InterleavedReassemblyStreams.h +++ b/src/mc/external/dcsctp/InterleavedReassemblyStreams.h @@ -27,21 +27,9 @@ class InterleavedReassemblyStreams { // clang-format on // InterleavedReassemblyStreams inner types define - struct FullStreamId { - public: - // prevent constructor by default - FullStreamId& operator=(FullStreamId const&); - FullStreamId(FullStreamId const&); - FullStreamId(); - }; + struct FullStreamId {}; class Stream { - public: - // prevent constructor by default - Stream& operator=(Stream const&); - Stream(Stream const&); - Stream(); - public: // member functions // NOLINTBEGIN @@ -75,12 +63,6 @@ class InterleavedReassemblyStreams { // NOLINTEND }; -public: - // prevent constructor by default - InterleavedReassemblyStreams& operator=(InterleavedReassemblyStreams const&); - InterleavedReassemblyStreams(InterleavedReassemblyStreams const&); - InterleavedReassemblyStreams(); - public: // member functions // NOLINTBEGIN diff --git a/src/mc/external/dcsctp/InvalidMandatoryParameterCause.h b/src/mc/external/dcsctp/InvalidMandatoryParameterCause.h index 84cb4c6eed..f47aca957e 100644 --- a/src/mc/external/dcsctp/InvalidMandatoryParameterCause.h +++ b/src/mc/external/dcsctp/InvalidMandatoryParameterCause.h @@ -5,12 +5,6 @@ namespace dcsctp { class InvalidMandatoryParameterCause { -public: - // prevent constructor by default - InvalidMandatoryParameterCause& operator=(InvalidMandatoryParameterCause const&); - InvalidMandatoryParameterCause(InvalidMandatoryParameterCause const&); - InvalidMandatoryParameterCause(); - public: // static functions // NOLINTBEGIN diff --git a/src/mc/external/dcsctp/InvalidStreamIdentifierCause.h b/src/mc/external/dcsctp/InvalidStreamIdentifierCause.h index d7b378b724..bddbb84ecc 100644 --- a/src/mc/external/dcsctp/InvalidStreamIdentifierCause.h +++ b/src/mc/external/dcsctp/InvalidStreamIdentifierCause.h @@ -5,12 +5,6 @@ namespace dcsctp { class InvalidStreamIdentifierCause { -public: - // prevent constructor by default - InvalidStreamIdentifierCause& operator=(InvalidStreamIdentifierCause const&); - InvalidStreamIdentifierCause(InvalidStreamIdentifierCause const&); - InvalidStreamIdentifierCause(); - public: // static functions // NOLINTBEGIN diff --git a/src/mc/external/dcsctp/IsBeginningTag.h b/src/mc/external/dcsctp/IsBeginningTag.h index fdc6d39913..b575a0958c 100644 --- a/src/mc/external/dcsctp/IsBeginningTag.h +++ b/src/mc/external/dcsctp/IsBeginningTag.h @@ -4,12 +4,6 @@ namespace dcsctp { -class IsBeginningTag { -public: - // prevent constructor by default - IsBeginningTag& operator=(IsBeginningTag const&); - IsBeginningTag(IsBeginningTag const&); - IsBeginningTag(); -}; +class IsBeginningTag {}; } // namespace dcsctp diff --git a/src/mc/external/dcsctp/IsEndTag.h b/src/mc/external/dcsctp/IsEndTag.h index 605f2ad60a..8de16c32d3 100644 --- a/src/mc/external/dcsctp/IsEndTag.h +++ b/src/mc/external/dcsctp/IsEndTag.h @@ -4,12 +4,6 @@ namespace dcsctp { -class IsEndTag { -public: - // prevent constructor by default - IsEndTag& operator=(IsEndTag const&); - IsEndTag(IsEndTag const&); - IsEndTag(); -}; +class IsEndTag {}; } // namespace dcsctp diff --git a/src/mc/external/dcsctp/IsUnorderedTag.h b/src/mc/external/dcsctp/IsUnorderedTag.h index c110193534..e4536a18bf 100644 --- a/src/mc/external/dcsctp/IsUnorderedTag.h +++ b/src/mc/external/dcsctp/IsUnorderedTag.h @@ -4,12 +4,6 @@ namespace dcsctp { -class IsUnorderedTag { -public: - // prevent constructor by default - IsUnorderedTag& operator=(IsUnorderedTag const&); - IsUnorderedTag(IsUnorderedTag const&); - IsUnorderedTag(); -}; +class IsUnorderedTag {}; } // namespace dcsctp diff --git a/src/mc/external/dcsctp/LifecycleId.h b/src/mc/external/dcsctp/LifecycleId.h index 0837793c52..a83638ee6a 100644 --- a/src/mc/external/dcsctp/LifecycleId.h +++ b/src/mc/external/dcsctp/LifecycleId.h @@ -4,12 +4,6 @@ namespace dcsctp { -class LifecycleId { -public: - // prevent constructor by default - LifecycleId& operator=(LifecycleId const&); - LifecycleId(LifecycleId const&); - LifecycleId(); -}; +class LifecycleId {}; } // namespace dcsctp diff --git a/src/mc/external/dcsctp/MIDTag.h b/src/mc/external/dcsctp/MIDTag.h index b4408d7e2e..e7e4fea7ff 100644 --- a/src/mc/external/dcsctp/MIDTag.h +++ b/src/mc/external/dcsctp/MIDTag.h @@ -4,12 +4,6 @@ namespace dcsctp { -class MIDTag { -public: - // prevent constructor by default - MIDTag& operator=(MIDTag const&); - MIDTag(MIDTag const&); - MIDTag(); -}; +class MIDTag {}; } // namespace dcsctp diff --git a/src/mc/external/dcsctp/MaxRetransmits.h b/src/mc/external/dcsctp/MaxRetransmits.h index fbff38d20b..14e6a47f98 100644 --- a/src/mc/external/dcsctp/MaxRetransmits.h +++ b/src/mc/external/dcsctp/MaxRetransmits.h @@ -4,12 +4,6 @@ namespace dcsctp { -class MaxRetransmits { -public: - // prevent constructor by default - MaxRetransmits& operator=(MaxRetransmits const&); - MaxRetransmits(MaxRetransmits const&); - MaxRetransmits(); -}; +class MaxRetransmits {}; } // namespace dcsctp diff --git a/src/mc/external/dcsctp/MissingMandatoryParameterCause.h b/src/mc/external/dcsctp/MissingMandatoryParameterCause.h index bd178a01b5..74e60655b7 100644 --- a/src/mc/external/dcsctp/MissingMandatoryParameterCause.h +++ b/src/mc/external/dcsctp/MissingMandatoryParameterCause.h @@ -5,12 +5,6 @@ namespace dcsctp { class MissingMandatoryParameterCause { -public: - // prevent constructor by default - MissingMandatoryParameterCause& operator=(MissingMandatoryParameterCause const&); - MissingMandatoryParameterCause(MissingMandatoryParameterCause const&); - MissingMandatoryParameterCause(); - public: // static functions // NOLINTBEGIN diff --git a/src/mc/external/dcsctp/NoUserDataCause.h b/src/mc/external/dcsctp/NoUserDataCause.h index 95abc3212c..4a8db7d2dd 100644 --- a/src/mc/external/dcsctp/NoUserDataCause.h +++ b/src/mc/external/dcsctp/NoUserDataCause.h @@ -5,12 +5,6 @@ namespace dcsctp { class NoUserDataCause { -public: - // prevent constructor by default - NoUserDataCause& operator=(NoUserDataCause const&); - NoUserDataCause(NoUserDataCause const&); - NoUserDataCause(); - public: // static functions // NOLINTBEGIN diff --git a/src/mc/external/dcsctp/OutOfResourceErrorCause.h b/src/mc/external/dcsctp/OutOfResourceErrorCause.h index 0d93378336..525217402d 100644 --- a/src/mc/external/dcsctp/OutOfResourceErrorCause.h +++ b/src/mc/external/dcsctp/OutOfResourceErrorCause.h @@ -5,12 +5,6 @@ namespace dcsctp { class OutOfResourceErrorCause { -public: - // prevent constructor by default - OutOfResourceErrorCause& operator=(OutOfResourceErrorCause const&); - OutOfResourceErrorCause(OutOfResourceErrorCause const&); - OutOfResourceErrorCause(); - public: // static functions // NOLINTBEGIN diff --git a/src/mc/external/dcsctp/OutgoingMessageIdTag.h b/src/mc/external/dcsctp/OutgoingMessageIdTag.h index a618813fbf..6a33abff77 100644 --- a/src/mc/external/dcsctp/OutgoingMessageIdTag.h +++ b/src/mc/external/dcsctp/OutgoingMessageIdTag.h @@ -4,12 +4,6 @@ namespace dcsctp { -class OutgoingMessageIdTag { -public: - // prevent constructor by default - OutgoingMessageIdTag& operator=(OutgoingMessageIdTag const&); - OutgoingMessageIdTag(OutgoingMessageIdTag const&); - OutgoingMessageIdTag(); -}; +class OutgoingMessageIdTag {}; } // namespace dcsctp diff --git a/src/mc/external/dcsctp/OutgoingSSNResetRequestParameter.h b/src/mc/external/dcsctp/OutgoingSSNResetRequestParameter.h index 0eb88f734f..4beefcdd99 100644 --- a/src/mc/external/dcsctp/OutgoingSSNResetRequestParameter.h +++ b/src/mc/external/dcsctp/OutgoingSSNResetRequestParameter.h @@ -5,12 +5,6 @@ namespace dcsctp { class OutgoingSSNResetRequestParameter { -public: - // prevent constructor by default - OutgoingSSNResetRequestParameter& operator=(OutgoingSSNResetRequestParameter const&); - OutgoingSSNResetRequestParameter(OutgoingSSNResetRequestParameter const&); - OutgoingSSNResetRequestParameter(); - public: // static functions // NOLINTBEGIN diff --git a/src/mc/external/dcsctp/OutstandingData.h b/src/mc/external/dcsctp/OutstandingData.h index f3427529d1..304d4e2349 100644 --- a/src/mc/external/dcsctp/OutstandingData.h +++ b/src/mc/external/dcsctp/OutstandingData.h @@ -33,12 +33,6 @@ struct OutstandingData { // OutstandingData inner types define struct AckInfo { - public: - // prevent constructor by default - AckInfo& operator=(AckInfo const&); - AckInfo(AckInfo const&); - AckInfo(); - public: // member functions // NOLINTBEGIN @@ -57,12 +51,6 @@ struct OutstandingData { // Item inner types define enum class NackAction : uint {}; - public: - // prevent constructor by default - Item& operator=(Item const&); - Item(Item const&); - Item(); - public: // member functions // NOLINTBEGIN @@ -100,12 +88,6 @@ struct OutstandingData { // NOLINTEND }; -public: - // prevent constructor by default - OutstandingData& operator=(OutstandingData const&); - OutstandingData(OutstandingData const&); - OutstandingData(); - public: // member functions // NOLINTBEGIN diff --git a/src/mc/external/dcsctp/PPIDTag.h b/src/mc/external/dcsctp/PPIDTag.h index 1c8f1bc679..00ddf6e296 100644 --- a/src/mc/external/dcsctp/PPIDTag.h +++ b/src/mc/external/dcsctp/PPIDTag.h @@ -4,12 +4,6 @@ namespace dcsctp { -class PPIDTag { -public: - // prevent constructor by default - PPIDTag& operator=(PPIDTag const&); - PPIDTag(PPIDTag const&); - PPIDTag(); -}; +class PPIDTag {}; } // namespace dcsctp diff --git a/src/mc/external/dcsctp/PacketObserver.h b/src/mc/external/dcsctp/PacketObserver.h index 33872ba98d..2f9662c619 100644 --- a/src/mc/external/dcsctp/PacketObserver.h +++ b/src/mc/external/dcsctp/PacketObserver.h @@ -4,12 +4,6 @@ namespace dcsctp { -class PacketObserver { -public: - // prevent constructor by default - PacketObserver& operator=(PacketObserver const&); - PacketObserver(PacketObserver const&); - PacketObserver(); -}; +class PacketObserver {}; } // namespace dcsctp diff --git a/src/mc/external/dcsctp/PacketSender.h b/src/mc/external/dcsctp/PacketSender.h index a115fe3458..14a484ed41 100644 --- a/src/mc/external/dcsctp/PacketSender.h +++ b/src/mc/external/dcsctp/PacketSender.h @@ -14,12 +14,6 @@ namespace dcsctp { class DcSctpSocketCallbacks; } namespace dcsctp { class PacketSender { -public: - // prevent constructor by default - PacketSender& operator=(PacketSender const&); - PacketSender(PacketSender const&); - PacketSender(); - public: // member functions // NOLINTBEGIN diff --git a/src/mc/external/dcsctp/Parameter.h b/src/mc/external/dcsctp/Parameter.h index 56c54cb631..97b6454bc2 100644 --- a/src/mc/external/dcsctp/Parameter.h +++ b/src/mc/external/dcsctp/Parameter.h @@ -4,12 +4,6 @@ namespace dcsctp { -class Parameter { -public: - // prevent constructor by default - Parameter& operator=(Parameter const&); - Parameter(Parameter const&); - Parameter(); -}; +class Parameter {}; } // namespace dcsctp diff --git a/src/mc/external/dcsctp/ParameterDescriptor.h b/src/mc/external/dcsctp/ParameterDescriptor.h index 68b2e9746a..11ec5df064 100644 --- a/src/mc/external/dcsctp/ParameterDescriptor.h +++ b/src/mc/external/dcsctp/ParameterDescriptor.h @@ -4,12 +4,6 @@ namespace dcsctp { -struct ParameterDescriptor { -public: - // prevent constructor by default - ParameterDescriptor& operator=(ParameterDescriptor const&); - ParameterDescriptor(ParameterDescriptor const&); - ParameterDescriptor(); -}; +struct ParameterDescriptor {}; } // namespace dcsctp diff --git a/src/mc/external/dcsctp/Parameters.h b/src/mc/external/dcsctp/Parameters.h index d1728e9fd3..68450e87bd 100644 --- a/src/mc/external/dcsctp/Parameters.h +++ b/src/mc/external/dcsctp/Parameters.h @@ -19,12 +19,6 @@ class Parameters { // Parameters inner types define class Builder { - public: - // prevent constructor by default - Builder& operator=(Builder const&); - Builder(Builder const&); - Builder(); - public: // member functions // NOLINTBEGIN @@ -40,12 +34,6 @@ class Parameters { // NOLINTEND }; -public: - // prevent constructor by default - Parameters& operator=(Parameters const&); - Parameters(Parameters const&); - Parameters(); - public: // member functions // NOLINTBEGIN diff --git a/src/mc/external/dcsctp/ProtocolViolationCause.h b/src/mc/external/dcsctp/ProtocolViolationCause.h index 11766018b9..34f5d34839 100644 --- a/src/mc/external/dcsctp/ProtocolViolationCause.h +++ b/src/mc/external/dcsctp/ProtocolViolationCause.h @@ -5,12 +5,6 @@ namespace dcsctp { class ProtocolViolationCause { -public: - // prevent constructor by default - ProtocolViolationCause& operator=(ProtocolViolationCause const&); - ProtocolViolationCause(ProtocolViolationCause const&); - ProtocolViolationCause(); - public: // static functions // NOLINTBEGIN diff --git a/src/mc/external/dcsctp/RRSendQueue.h b/src/mc/external/dcsctp/RRSendQueue.h index 20f2423d6e..0f3c358d66 100644 --- a/src/mc/external/dcsctp/RRSendQueue.h +++ b/src/mc/external/dcsctp/RRSendQueue.h @@ -32,13 +32,7 @@ class RRSendQueue { // clang-format on // RRSendQueue inner types define - struct MessageAttributes { - public: - // prevent constructor by default - MessageAttributes& operator=(MessageAttributes const&); - MessageAttributes(MessageAttributes const&); - MessageAttributes(); - }; + struct MessageAttributes {}; class OutgoingStream { public: @@ -49,12 +43,6 @@ class RRSendQueue { // OutgoingStream inner types define struct Item { - public: - // prevent constructor by default - Item& operator=(Item const&); - Item(Item const&); - Item(); - public: // member functions // NOLINTBEGIN @@ -76,12 +64,6 @@ class RRSendQueue { // NOLINTEND }; - public: - // prevent constructor by default - OutgoingStream& operator=(OutgoingStream const&); - OutgoingStream(OutgoingStream const&); - OutgoingStream(); - public: // member functions // NOLINTBEGIN @@ -118,12 +100,6 @@ class RRSendQueue { }; struct ThresholdWatcher { - public: - // prevent constructor by default - ThresholdWatcher& operator=(ThresholdWatcher const&); - ThresholdWatcher(ThresholdWatcher const&); - ThresholdWatcher(); - public: // member functions // NOLINTBEGIN @@ -149,12 +125,6 @@ class RRSendQueue { // NOLINTEND }; -public: - // prevent constructor by default - RRSendQueue& operator=(RRSendQueue const&); - RRSendQueue(RRSendQueue const&); - RRSendQueue(); - public: // member functions // NOLINTBEGIN diff --git a/src/mc/external/dcsctp/ReConfigChunk.h b/src/mc/external/dcsctp/ReConfigChunk.h index f623245fe9..ec6f69496f 100644 --- a/src/mc/external/dcsctp/ReConfigChunk.h +++ b/src/mc/external/dcsctp/ReConfigChunk.h @@ -10,12 +10,6 @@ namespace dcsctp { class Parameters; } namespace dcsctp { class ReConfigChunk { -public: - // prevent constructor by default - ReConfigChunk& operator=(ReConfigChunk const&); - ReConfigChunk(ReConfigChunk const&); - ReConfigChunk(); - public: // member functions // NOLINTBEGIN diff --git a/src/mc/external/dcsctp/ReassemblyQueue.h b/src/mc/external/dcsctp/ReassemblyQueue.h index 9792cbb09a..ea5f241018 100644 --- a/src/mc/external/dcsctp/ReassemblyQueue.h +++ b/src/mc/external/dcsctp/ReassemblyQueue.h @@ -20,12 +20,6 @@ namespace dcsctp { struct DcSctpSocketHandoverState; } namespace dcsctp { class ReassemblyQueue { -public: - // prevent constructor by default - ReassemblyQueue& operator=(ReassemblyQueue const&); - ReassemblyQueue(ReassemblyQueue const&); - ReassemblyQueue(); - public: // member functions // NOLINTBEGIN diff --git a/src/mc/external/dcsctp/ReconfigRequestSNTag.h b/src/mc/external/dcsctp/ReconfigRequestSNTag.h index f62d3e1fbd..6b52d5b79d 100644 --- a/src/mc/external/dcsctp/ReconfigRequestSNTag.h +++ b/src/mc/external/dcsctp/ReconfigRequestSNTag.h @@ -4,12 +4,6 @@ namespace dcsctp { -class ReconfigRequestSNTag { -public: - // prevent constructor by default - ReconfigRequestSNTag& operator=(ReconfigRequestSNTag const&); - ReconfigRequestSNTag(ReconfigRequestSNTag const&); - ReconfigRequestSNTag(); -}; +class ReconfigRequestSNTag {}; } // namespace dcsctp diff --git a/src/mc/external/dcsctp/ReconfigurationResponseParameter.h b/src/mc/external/dcsctp/ReconfigurationResponseParameter.h index 1756c4b5ce..860911b21c 100644 --- a/src/mc/external/dcsctp/ReconfigurationResponseParameter.h +++ b/src/mc/external/dcsctp/ReconfigurationResponseParameter.h @@ -9,12 +9,6 @@ class ReconfigurationResponseParameter { // ReconfigurationResponseParameter inner types define enum class Result : uint {}; -public: - // prevent constructor by default - ReconfigurationResponseParameter& operator=(ReconfigurationResponseParameter const&); - ReconfigurationResponseParameter(ReconfigurationResponseParameter const&); - ReconfigurationResponseParameter(); - public: // static functions // NOLINTBEGIN diff --git a/src/mc/external/dcsctp/RestartOfAnAssociationWithNewAddressesCause.h b/src/mc/external/dcsctp/RestartOfAnAssociationWithNewAddressesCause.h index 63446f8704..2d2f495383 100644 --- a/src/mc/external/dcsctp/RestartOfAnAssociationWithNewAddressesCause.h +++ b/src/mc/external/dcsctp/RestartOfAnAssociationWithNewAddressesCause.h @@ -5,12 +5,6 @@ namespace dcsctp { class RestartOfAnAssociationWithNewAddressesCause { -public: - // prevent constructor by default - RestartOfAnAssociationWithNewAddressesCause& operator=(RestartOfAnAssociationWithNewAddressesCause const&); - RestartOfAnAssociationWithNewAddressesCause(RestartOfAnAssociationWithNewAddressesCause const&); - RestartOfAnAssociationWithNewAddressesCause(); - public: // static functions // NOLINTBEGIN diff --git a/src/mc/external/dcsctp/RetransmissionErrorCounter.h b/src/mc/external/dcsctp/RetransmissionErrorCounter.h index 2af10af6e5..c732db2027 100644 --- a/src/mc/external/dcsctp/RetransmissionErrorCounter.h +++ b/src/mc/external/dcsctp/RetransmissionErrorCounter.h @@ -5,12 +5,6 @@ namespace dcsctp { struct RetransmissionErrorCounter { -public: - // prevent constructor by default - RetransmissionErrorCounter& operator=(RetransmissionErrorCounter const&); - RetransmissionErrorCounter(RetransmissionErrorCounter const&); - RetransmissionErrorCounter(); - public: // member functions // NOLINTBEGIN diff --git a/src/mc/external/dcsctp/RetransmissionQueue.h b/src/mc/external/dcsctp/RetransmissionQueue.h index a8bbb74575..f19c267cc2 100644 --- a/src/mc/external/dcsctp/RetransmissionQueue.h +++ b/src/mc/external/dcsctp/RetransmissionQueue.h @@ -25,12 +25,6 @@ namespace webrtc { class Timestamp; } namespace dcsctp { class RetransmissionQueue { -public: - // prevent constructor by default - RetransmissionQueue& operator=(RetransmissionQueue const&); - RetransmissionQueue(RetransmissionQueue const&); - RetransmissionQueue(); - public: // member functions // NOLINTBEGIN diff --git a/src/mc/external/dcsctp/RetransmissionTimeout.h b/src/mc/external/dcsctp/RetransmissionTimeout.h index e896fed678..69c15a893a 100644 --- a/src/mc/external/dcsctp/RetransmissionTimeout.h +++ b/src/mc/external/dcsctp/RetransmissionTimeout.h @@ -11,12 +11,6 @@ namespace webrtc { class TimeDelta; } namespace dcsctp { struct RetransmissionTimeout { -public: - // prevent constructor by default - RetransmissionTimeout& operator=(RetransmissionTimeout const&); - RetransmissionTimeout(RetransmissionTimeout const&); - RetransmissionTimeout(); - public: // member functions // NOLINTBEGIN diff --git a/src/mc/external/dcsctp/SSNTag.h b/src/mc/external/dcsctp/SSNTag.h index e07f63c8a7..7f990684d4 100644 --- a/src/mc/external/dcsctp/SSNTag.h +++ b/src/mc/external/dcsctp/SSNTag.h @@ -4,12 +4,6 @@ namespace dcsctp { -class SSNTag { -public: - // prevent constructor by default - SSNTag& operator=(SSNTag const&); - SSNTag(SSNTag const&); - SSNTag(); -}; +class SSNTag {}; } // namespace dcsctp diff --git a/src/mc/external/dcsctp/SackChunk.h b/src/mc/external/dcsctp/SackChunk.h index 8751be7c7f..8f3c99ead5 100644 --- a/src/mc/external/dcsctp/SackChunk.h +++ b/src/mc/external/dcsctp/SackChunk.h @@ -20,19 +20,7 @@ class SackChunk { // clang-format on // SackChunk inner types define - struct GapAckBlock { - public: - // prevent constructor by default - GapAckBlock& operator=(GapAckBlock const&); - GapAckBlock(GapAckBlock const&); - GapAckBlock(); - }; - -public: - // prevent constructor by default - SackChunk& operator=(SackChunk const&); - SackChunk(SackChunk const&); - SackChunk(); + struct GapAckBlock {}; public: // member functions diff --git a/src/mc/external/dcsctp/SctpPacket.h b/src/mc/external/dcsctp/SctpPacket.h index 4638793475..d3ab4c487e 100644 --- a/src/mc/external/dcsctp/SctpPacket.h +++ b/src/mc/external/dcsctp/SctpPacket.h @@ -24,12 +24,6 @@ class SctpPacket { // SctpPacket inner types define class Builder { - public: - // prevent constructor by default - Builder& operator=(Builder const&); - Builder(Builder const&); - Builder(); - public: // member functions // NOLINTBEGIN @@ -57,19 +51,7 @@ class SctpPacket { // NOLINTEND }; - struct ChunkDescriptor { - public: - // prevent constructor by default - ChunkDescriptor& operator=(ChunkDescriptor const&); - ChunkDescriptor(ChunkDescriptor const&); - ChunkDescriptor(); - }; - -public: - // prevent constructor by default - SctpPacket& operator=(SctpPacket const&); - SctpPacket(SctpPacket const&); - SctpPacket(); + struct ChunkDescriptor {}; public: // member functions diff --git a/src/mc/external/dcsctp/SendOptions.h b/src/mc/external/dcsctp/SendOptions.h index 43ccf47dca..4e46095197 100644 --- a/src/mc/external/dcsctp/SendOptions.h +++ b/src/mc/external/dcsctp/SendOptions.h @@ -4,12 +4,6 @@ namespace dcsctp { -struct SendOptions { -public: - // prevent constructor by default - SendOptions& operator=(SendOptions const&); - SendOptions(SendOptions const&); - SendOptions(); -}; +struct SendOptions {}; } // namespace dcsctp diff --git a/src/mc/external/dcsctp/SendQueue.h b/src/mc/external/dcsctp/SendQueue.h index 5e364f843c..9729f5b7fb 100644 --- a/src/mc/external/dcsctp/SendQueue.h +++ b/src/mc/external/dcsctp/SendQueue.h @@ -22,12 +22,6 @@ class SendQueue { // SendQueue inner types define struct DataToSend { - public: - // prevent constructor by default - DataToSend& operator=(DataToSend const&); - DataToSend(DataToSend const&); - DataToSend(); - public: // member functions // NOLINTBEGIN @@ -48,12 +42,6 @@ class SendQueue { MCAPI void $dtor(); // NOLINTEND }; - -public: - // prevent constructor by default - SendQueue& operator=(SendQueue const&); - SendQueue(SendQueue const&); - SendQueue(); }; } // namespace dcsctp diff --git a/src/mc/external/dcsctp/ShutdownAckChunk.h b/src/mc/external/dcsctp/ShutdownAckChunk.h index e032d4fa52..6c04174750 100644 --- a/src/mc/external/dcsctp/ShutdownAckChunk.h +++ b/src/mc/external/dcsctp/ShutdownAckChunk.h @@ -5,12 +5,6 @@ namespace dcsctp { class ShutdownAckChunk { -public: - // prevent constructor by default - ShutdownAckChunk& operator=(ShutdownAckChunk const&); - ShutdownAckChunk(ShutdownAckChunk const&); - ShutdownAckChunk(); - public: // static functions // NOLINTBEGIN diff --git a/src/mc/external/dcsctp/ShutdownChunk.h b/src/mc/external/dcsctp/ShutdownChunk.h index 5521ac7086..d6c03be2c1 100644 --- a/src/mc/external/dcsctp/ShutdownChunk.h +++ b/src/mc/external/dcsctp/ShutdownChunk.h @@ -5,12 +5,6 @@ namespace dcsctp { class ShutdownChunk { -public: - // prevent constructor by default - ShutdownChunk& operator=(ShutdownChunk const&); - ShutdownChunk(ShutdownChunk const&); - ShutdownChunk(); - public: // static functions // NOLINTBEGIN diff --git a/src/mc/external/dcsctp/ShutdownCompleteChunk.h b/src/mc/external/dcsctp/ShutdownCompleteChunk.h index e043cfe89f..1292a61323 100644 --- a/src/mc/external/dcsctp/ShutdownCompleteChunk.h +++ b/src/mc/external/dcsctp/ShutdownCompleteChunk.h @@ -5,12 +5,6 @@ namespace dcsctp { class ShutdownCompleteChunk { -public: - // prevent constructor by default - ShutdownCompleteChunk& operator=(ShutdownCompleteChunk const&); - ShutdownCompleteChunk(ShutdownCompleteChunk const&); - ShutdownCompleteChunk(); - public: // static functions // NOLINTBEGIN diff --git a/src/mc/external/dcsctp/StaleCookieErrorCause.h b/src/mc/external/dcsctp/StaleCookieErrorCause.h index 4ab0aec898..6cac116b67 100644 --- a/src/mc/external/dcsctp/StaleCookieErrorCause.h +++ b/src/mc/external/dcsctp/StaleCookieErrorCause.h @@ -5,12 +5,6 @@ namespace dcsctp { class StaleCookieErrorCause { -public: - // prevent constructor by default - StaleCookieErrorCause& operator=(StaleCookieErrorCause const&); - StaleCookieErrorCause(StaleCookieErrorCause const&); - StaleCookieErrorCause(); - public: // static functions // NOLINTBEGIN diff --git a/src/mc/external/dcsctp/StateCookie.h b/src/mc/external/dcsctp/StateCookie.h index 2f5751f2d5..904af753b6 100644 --- a/src/mc/external/dcsctp/StateCookie.h +++ b/src/mc/external/dcsctp/StateCookie.h @@ -5,12 +5,6 @@ namespace dcsctp { class StateCookie { -public: - // prevent constructor by default - StateCookie& operator=(StateCookie const&); - StateCookie(StateCookie const&); - StateCookie(); - public: // member functions // NOLINTBEGIN diff --git a/src/mc/external/dcsctp/StateCookieParameter.h b/src/mc/external/dcsctp/StateCookieParameter.h index e2ec5d515b..91843c6110 100644 --- a/src/mc/external/dcsctp/StateCookieParameter.h +++ b/src/mc/external/dcsctp/StateCookieParameter.h @@ -5,12 +5,6 @@ namespace dcsctp { class StateCookieParameter { -public: - // prevent constructor by default - StateCookieParameter& operator=(StateCookieParameter const&); - StateCookieParameter(StateCookieParameter const&); - StateCookieParameter(); - public: // static functions // NOLINTBEGIN diff --git a/src/mc/external/dcsctp/StreamIDTag.h b/src/mc/external/dcsctp/StreamIDTag.h index d2697e942f..d5ee02e8c4 100644 --- a/src/mc/external/dcsctp/StreamIDTag.h +++ b/src/mc/external/dcsctp/StreamIDTag.h @@ -4,12 +4,6 @@ namespace dcsctp { -class StreamIDTag { -public: - // prevent constructor by default - StreamIDTag& operator=(StreamIDTag const&); - StreamIDTag(StreamIDTag const&); - StreamIDTag(); -}; +class StreamIDTag {}; } // namespace dcsctp diff --git a/src/mc/external/dcsctp/StreamPriorityTag.h b/src/mc/external/dcsctp/StreamPriorityTag.h index d40fea60d3..3d24f4e386 100644 --- a/src/mc/external/dcsctp/StreamPriorityTag.h +++ b/src/mc/external/dcsctp/StreamPriorityTag.h @@ -4,12 +4,6 @@ namespace dcsctp { -class StreamPriorityTag { -public: - // prevent constructor by default - StreamPriorityTag& operator=(StreamPriorityTag const&); - StreamPriorityTag(StreamPriorityTag const&); - StreamPriorityTag(); -}; +class StreamPriorityTag {}; } // namespace dcsctp diff --git a/src/mc/external/dcsctp/StreamResetHandler.h b/src/mc/external/dcsctp/StreamResetHandler.h index 3a806732c4..deda4c5013 100644 --- a/src/mc/external/dcsctp/StreamResetHandler.h +++ b/src/mc/external/dcsctp/StreamResetHandler.h @@ -26,12 +26,6 @@ namespace webrtc { class TimeDelta; } namespace dcsctp { class StreamResetHandler { -public: - // prevent constructor by default - StreamResetHandler& operator=(StreamResetHandler const&); - StreamResetHandler(StreamResetHandler const&); - StreamResetHandler(); - public: // member functions // NOLINTBEGIN diff --git a/src/mc/external/dcsctp/StreamScheduler.h b/src/mc/external/dcsctp/StreamScheduler.h index f868a0c42a..7f51574daa 100644 --- a/src/mc/external/dcsctp/StreamScheduler.h +++ b/src/mc/external/dcsctp/StreamScheduler.h @@ -24,12 +24,6 @@ class StreamScheduler { // StreamScheduler inner types define class Stream { - public: - // prevent constructor by default - Stream& operator=(Stream const&); - Stream(Stream const&); - Stream(); - public: // member functions // NOLINTBEGIN @@ -49,19 +43,7 @@ class StreamScheduler { // NOLINTEND }; - class VirtualTime { - public: - // prevent constructor by default - VirtualTime& operator=(VirtualTime const&); - VirtualTime(VirtualTime const&); - VirtualTime(); - }; - -public: - // prevent constructor by default - StreamScheduler& operator=(StreamScheduler const&); - StreamScheduler(StreamScheduler const&); - StreamScheduler(); + class VirtualTime {}; public: // member functions diff --git a/src/mc/external/dcsctp/SupportedExtensionsParameter.h b/src/mc/external/dcsctp/SupportedExtensionsParameter.h index b1341aefbb..9ec27dfc08 100644 --- a/src/mc/external/dcsctp/SupportedExtensionsParameter.h +++ b/src/mc/external/dcsctp/SupportedExtensionsParameter.h @@ -5,12 +5,6 @@ namespace dcsctp { class SupportedExtensionsParameter { -public: - // prevent constructor by default - SupportedExtensionsParameter& operator=(SupportedExtensionsParameter const&); - SupportedExtensionsParameter(SupportedExtensionsParameter const&); - SupportedExtensionsParameter(); - public: // static functions // NOLINTBEGIN diff --git a/src/mc/external/dcsctp/TSNTag.h b/src/mc/external/dcsctp/TSNTag.h index a2027352fb..ea0de387d6 100644 --- a/src/mc/external/dcsctp/TSNTag.h +++ b/src/mc/external/dcsctp/TSNTag.h @@ -4,12 +4,6 @@ namespace dcsctp { -class TSNTag { -public: - // prevent constructor by default - TSNTag& operator=(TSNTag const&); - TSNTag(TSNTag const&); - TSNTag(); -}; +class TSNTag {}; } // namespace dcsctp diff --git a/src/mc/external/dcsctp/TaskQueueTimeoutFactory.h b/src/mc/external/dcsctp/TaskQueueTimeoutFactory.h index ac6d7b4180..1808e9dc4a 100644 --- a/src/mc/external/dcsctp/TaskQueueTimeoutFactory.h +++ b/src/mc/external/dcsctp/TaskQueueTimeoutFactory.h @@ -16,12 +16,6 @@ class TaskQueueTimeoutFactory { // TaskQueueTimeoutFactory inner types define class TaskQueueTimeout { - public: - // prevent constructor by default - TaskQueueTimeout& operator=(TaskQueueTimeout const&); - TaskQueueTimeout(TaskQueueTimeout const&); - TaskQueueTimeout(); - public: // member functions // NOLINTBEGIN @@ -41,12 +35,6 @@ class TaskQueueTimeoutFactory { // NOLINTEND }; -public: - // prevent constructor by default - TaskQueueTimeoutFactory& operator=(TaskQueueTimeoutFactory const&); - TaskQueueTimeoutFactory(TaskQueueTimeoutFactory const&); - TaskQueueTimeoutFactory(); - public: // member functions // NOLINTBEGIN diff --git a/src/mc/external/dcsctp/TextPcapPacketObserver.h b/src/mc/external/dcsctp/TextPcapPacketObserver.h index 8a0bdb5cbb..0693b35a67 100644 --- a/src/mc/external/dcsctp/TextPcapPacketObserver.h +++ b/src/mc/external/dcsctp/TextPcapPacketObserver.h @@ -10,12 +10,6 @@ namespace dcsctp { class TimeMs; } namespace dcsctp { class TextPcapPacketObserver { -public: - // prevent constructor by default - TextPcapPacketObserver& operator=(TextPcapPacketObserver const&); - TextPcapPacketObserver(TextPcapPacketObserver const&); - TextPcapPacketObserver(); - public: // static functions // NOLINTBEGIN diff --git a/src/mc/external/dcsctp/TieTagTag.h b/src/mc/external/dcsctp/TieTagTag.h index db840ce673..8156eb719c 100644 --- a/src/mc/external/dcsctp/TieTagTag.h +++ b/src/mc/external/dcsctp/TieTagTag.h @@ -4,12 +4,6 @@ namespace dcsctp { -class TieTagTag { -public: - // prevent constructor by default - TieTagTag& operator=(TieTagTag const&); - TieTagTag(TieTagTag const&); - TieTagTag(); -}; +class TieTagTag {}; } // namespace dcsctp diff --git a/src/mc/external/dcsctp/TimeMs.h b/src/mc/external/dcsctp/TimeMs.h index ad3f409b19..08504dc46f 100644 --- a/src/mc/external/dcsctp/TimeMs.h +++ b/src/mc/external/dcsctp/TimeMs.h @@ -4,12 +4,6 @@ namespace dcsctp { -class TimeMs { -public: - // prevent constructor by default - TimeMs& operator=(TimeMs const&); - TimeMs(TimeMs const&); - TimeMs(); -}; +class TimeMs {}; } // namespace dcsctp diff --git a/src/mc/external/dcsctp/Timeout.h b/src/mc/external/dcsctp/Timeout.h index 4886d8be75..aeb2a1ab66 100644 --- a/src/mc/external/dcsctp/Timeout.h +++ b/src/mc/external/dcsctp/Timeout.h @@ -4,12 +4,6 @@ namespace dcsctp { -class Timeout { -public: - // prevent constructor by default - Timeout& operator=(Timeout const&); - Timeout(Timeout const&); - Timeout(); -}; +class Timeout {}; } // namespace dcsctp diff --git a/src/mc/external/dcsctp/TimeoutTag.h b/src/mc/external/dcsctp/TimeoutTag.h index cb0357a49c..765458b73f 100644 --- a/src/mc/external/dcsctp/TimeoutTag.h +++ b/src/mc/external/dcsctp/TimeoutTag.h @@ -4,12 +4,6 @@ namespace dcsctp { -class TimeoutTag { -public: - // prevent constructor by default - TimeoutTag& operator=(TimeoutTag const&); - TimeoutTag(TimeoutTag const&); - TimeoutTag(); -}; +class TimeoutTag {}; } // namespace dcsctp diff --git a/src/mc/external/dcsctp/Timer.h b/src/mc/external/dcsctp/Timer.h index 4d64ef9053..eeda3885d3 100644 --- a/src/mc/external/dcsctp/Timer.h +++ b/src/mc/external/dcsctp/Timer.h @@ -17,12 +17,6 @@ namespace webrtc { class TimeDelta; } namespace dcsctp { class Timer { -public: - // prevent constructor by default - Timer& operator=(Timer const&); - Timer(Timer const&); - Timer(); - public: // member functions // NOLINTBEGIN diff --git a/src/mc/external/dcsctp/TimerGenerationTag.h b/src/mc/external/dcsctp/TimerGenerationTag.h index d8e8c25ca6..8e163eda73 100644 --- a/src/mc/external/dcsctp/TimerGenerationTag.h +++ b/src/mc/external/dcsctp/TimerGenerationTag.h @@ -4,12 +4,6 @@ namespace dcsctp { -class TimerGenerationTag { -public: - // prevent constructor by default - TimerGenerationTag& operator=(TimerGenerationTag const&); - TimerGenerationTag(TimerGenerationTag const&); - TimerGenerationTag(); -}; +class TimerGenerationTag {}; } // namespace dcsctp diff --git a/src/mc/external/dcsctp/TimerIDTag.h b/src/mc/external/dcsctp/TimerIDTag.h index 584a95accd..f80d44a673 100644 --- a/src/mc/external/dcsctp/TimerIDTag.h +++ b/src/mc/external/dcsctp/TimerIDTag.h @@ -4,12 +4,6 @@ namespace dcsctp { -class TimerIDTag { -public: - // prevent constructor by default - TimerIDTag& operator=(TimerIDTag const&); - TimerIDTag(TimerIDTag const&); - TimerIDTag(); -}; +class TimerIDTag {}; } // namespace dcsctp diff --git a/src/mc/external/dcsctp/TimerManager.h b/src/mc/external/dcsctp/TimerManager.h index ad0f94b2d3..634fc083a2 100644 --- a/src/mc/external/dcsctp/TimerManager.h +++ b/src/mc/external/dcsctp/TimerManager.h @@ -16,12 +16,6 @@ namespace webrtc { class TimeDelta; } namespace dcsctp { class TimerManager { -public: - // prevent constructor by default - TimerManager& operator=(TimerManager const&); - TimerManager(TimerManager const&); - TimerManager(); - public: // member functions // NOLINTBEGIN diff --git a/src/mc/external/dcsctp/TimerOptions.h b/src/mc/external/dcsctp/TimerOptions.h index 9dba5aa678..da7f81e6c1 100644 --- a/src/mc/external/dcsctp/TimerOptions.h +++ b/src/mc/external/dcsctp/TimerOptions.h @@ -4,12 +4,6 @@ namespace dcsctp { -struct TimerOptions { -public: - // prevent constructor by default - TimerOptions& operator=(TimerOptions const&); - TimerOptions(TimerOptions const&); - TimerOptions(); -}; +struct TimerOptions {}; } // namespace dcsctp diff --git a/src/mc/external/dcsctp/TraditionalReassemblyStreams.h b/src/mc/external/dcsctp/TraditionalReassemblyStreams.h index 28e4000c9b..1a555848d5 100644 --- a/src/mc/external/dcsctp/TraditionalReassemblyStreams.h +++ b/src/mc/external/dcsctp/TraditionalReassemblyStreams.h @@ -27,12 +27,6 @@ class TraditionalReassemblyStreams { // TraditionalReassemblyStreams inner types define class OrderedStream { - public: - // prevent constructor by default - OrderedStream& operator=(OrderedStream const&); - OrderedStream(OrderedStream const&); - OrderedStream(); - public: // member functions // NOLINTBEGIN @@ -61,12 +55,6 @@ class TraditionalReassemblyStreams { }; struct StreamBase { - public: - // prevent constructor by default - StreamBase& operator=(StreamBase const&); - StreamBase(StreamBase const&); - StreamBase(); - public: // member functions // NOLINTBEGIN @@ -81,12 +69,6 @@ class TraditionalReassemblyStreams { }; class UnorderedStream { - public: - // prevent constructor by default - UnorderedStream& operator=(UnorderedStream const&); - UnorderedStream(UnorderedStream const&); - UnorderedStream(); - public: // member functions // NOLINTBEGIN @@ -101,12 +83,6 @@ class TraditionalReassemblyStreams { // NOLINTEND }; -public: - // prevent constructor by default - TraditionalReassemblyStreams& operator=(TraditionalReassemblyStreams const&); - TraditionalReassemblyStreams(TraditionalReassemblyStreams const&); - TraditionalReassemblyStreams(); - public: // member functions // NOLINTBEGIN diff --git a/src/mc/external/dcsctp/TransmissionControlBlock.h b/src/mc/external/dcsctp/TransmissionControlBlock.h index 6d4b9035de..735347d0f3 100644 --- a/src/mc/external/dcsctp/TransmissionControlBlock.h +++ b/src/mc/external/dcsctp/TransmissionControlBlock.h @@ -26,12 +26,6 @@ namespace webrtc { class Timestamp; } namespace dcsctp { class TransmissionControlBlock { -public: - // prevent constructor by default - TransmissionControlBlock& operator=(TransmissionControlBlock const&); - TransmissionControlBlock(TransmissionControlBlock const&); - TransmissionControlBlock(); - public: // member functions // NOLINTBEGIN diff --git a/src/mc/external/dcsctp/UnrecognizedChunkTypeCause.h b/src/mc/external/dcsctp/UnrecognizedChunkTypeCause.h index a849508bf5..bf4b119367 100644 --- a/src/mc/external/dcsctp/UnrecognizedChunkTypeCause.h +++ b/src/mc/external/dcsctp/UnrecognizedChunkTypeCause.h @@ -5,12 +5,6 @@ namespace dcsctp { class UnrecognizedChunkTypeCause { -public: - // prevent constructor by default - UnrecognizedChunkTypeCause& operator=(UnrecognizedChunkTypeCause const&); - UnrecognizedChunkTypeCause(UnrecognizedChunkTypeCause const&); - UnrecognizedChunkTypeCause(); - public: // static functions // NOLINTBEGIN diff --git a/src/mc/external/dcsctp/UnrecognizedParametersCause.h b/src/mc/external/dcsctp/UnrecognizedParametersCause.h index 59e9376ef0..7ce7bf5baf 100644 --- a/src/mc/external/dcsctp/UnrecognizedParametersCause.h +++ b/src/mc/external/dcsctp/UnrecognizedParametersCause.h @@ -5,12 +5,6 @@ namespace dcsctp { class UnrecognizedParametersCause { -public: - // prevent constructor by default - UnrecognizedParametersCause& operator=(UnrecognizedParametersCause const&); - UnrecognizedParametersCause(UnrecognizedParametersCause const&); - UnrecognizedParametersCause(); - public: // static functions // NOLINTBEGIN diff --git a/src/mc/external/dcsctp/UnresolvableAddressCause.h b/src/mc/external/dcsctp/UnresolvableAddressCause.h index 3634d68edc..4e90d63f64 100644 --- a/src/mc/external/dcsctp/UnresolvableAddressCause.h +++ b/src/mc/external/dcsctp/UnresolvableAddressCause.h @@ -5,12 +5,6 @@ namespace dcsctp { class UnresolvableAddressCause { -public: - // prevent constructor by default - UnresolvableAddressCause& operator=(UnresolvableAddressCause const&); - UnresolvableAddressCause(UnresolvableAddressCause const&); - UnresolvableAddressCause(); - public: // static functions // NOLINTBEGIN diff --git a/src/mc/external/dcsctp/UnwrappedSequenceNumber.h b/src/mc/external/dcsctp/UnwrappedSequenceNumber.h index cc2714c5e9..7b4136ca3e 100644 --- a/src/mc/external/dcsctp/UnwrappedSequenceNumber.h +++ b/src/mc/external/dcsctp/UnwrappedSequenceNumber.h @@ -5,12 +5,6 @@ namespace dcsctp { template -class UnwrappedSequenceNumber { -public: - // prevent constructor by default - UnwrappedSequenceNumber& operator=(UnwrappedSequenceNumber const&); - UnwrappedSequenceNumber(UnwrappedSequenceNumber const&); - UnwrappedSequenceNumber(); -}; +class UnwrappedSequenceNumber {}; } // namespace dcsctp diff --git a/src/mc/external/dcsctp/UserInitiatedAbortCause.h b/src/mc/external/dcsctp/UserInitiatedAbortCause.h index f417597272..0547e3e673 100644 --- a/src/mc/external/dcsctp/UserInitiatedAbortCause.h +++ b/src/mc/external/dcsctp/UserInitiatedAbortCause.h @@ -5,12 +5,6 @@ namespace dcsctp { class UserInitiatedAbortCause { -public: - // prevent constructor by default - UserInitiatedAbortCause& operator=(UserInitiatedAbortCause const&); - UserInitiatedAbortCause(UserInitiatedAbortCause const&); - UserInitiatedAbortCause(); - public: // static functions // NOLINTBEGIN diff --git a/src/mc/external/dcsctp/VerificationTagTag.h b/src/mc/external/dcsctp/VerificationTagTag.h index 51e82746c0..2c02c759a4 100644 --- a/src/mc/external/dcsctp/VerificationTagTag.h +++ b/src/mc/external/dcsctp/VerificationTagTag.h @@ -4,12 +4,6 @@ namespace dcsctp { -class VerificationTagTag { -public: - // prevent constructor by default - VerificationTagTag& operator=(VerificationTagTag const&); - VerificationTagTag(VerificationTagTag const&); - VerificationTagTag(); -}; +class VerificationTagTag {}; } // namespace dcsctp diff --git a/src/mc/external/dcsctp/ZeroChecksumAcceptableChunkParameter.h b/src/mc/external/dcsctp/ZeroChecksumAcceptableChunkParameter.h index b86e62931e..28b69577d2 100644 --- a/src/mc/external/dcsctp/ZeroChecksumAcceptableChunkParameter.h +++ b/src/mc/external/dcsctp/ZeroChecksumAcceptableChunkParameter.h @@ -5,12 +5,6 @@ namespace dcsctp { class ZeroChecksumAcceptableChunkParameter { -public: - // prevent constructor by default - ZeroChecksumAcceptableChunkParameter& operator=(ZeroChecksumAcceptableChunkParameter const&); - ZeroChecksumAcceptableChunkParameter(ZeroChecksumAcceptableChunkParameter const&); - ZeroChecksumAcceptableChunkParameter(); - public: // static functions // NOLINTBEGIN diff --git a/src/mc/external/lib_http_client/HC_CALL.h b/src/mc/external/lib_http_client/HC_CALL.h index 03abbd96a2..27ef74731b 100644 --- a/src/mc/external/lib_http_client/HC_CALL.h +++ b/src/mc/external/lib_http_client/HC_CALL.h @@ -14,12 +14,6 @@ struct XAsyncProviderData; // clang-format on struct HC_CALL { -public: - // prevent constructor by default - HC_CALL& operator=(HC_CALL const&); - HC_CALL(HC_CALL const&); - HC_CALL(); - public: // member functions // NOLINTBEGIN diff --git a/src/mc/external/lib_http_client/HC_PERFORM_ENV.h b/src/mc/external/lib_http_client/HC_PERFORM_ENV.h index cbabd77928..0ea4fe00df 100644 --- a/src/mc/external/lib_http_client/HC_PERFORM_ENV.h +++ b/src/mc/external/lib_http_client/HC_PERFORM_ENV.h @@ -21,12 +21,6 @@ struct XAsyncProviderData; // clang-format on struct HC_PERFORM_ENV { -public: - // prevent constructor by default - HC_PERFORM_ENV& operator=(HC_PERFORM_ENV const&); - HC_PERFORM_ENV(HC_PERFORM_ENV const&); - HC_PERFORM_ENV(); - public: // member functions // NOLINTBEGIN diff --git a/src/mc/external/lib_http_client/HC_WEBSOCKET_OBSERVER.h b/src/mc/external/lib_http_client/HC_WEBSOCKET_OBSERVER.h index 0a230d79ad..fdc148cbaf 100644 --- a/src/mc/external/lib_http_client/HC_WEBSOCKET_OBSERVER.h +++ b/src/mc/external/lib_http_client/HC_WEBSOCKET_OBSERVER.h @@ -12,12 +12,6 @@ namespace xbox::httpclient { class WebSocket; } // clang-format on struct HC_WEBSOCKET_OBSERVER { -public: - // prevent constructor by default - HC_WEBSOCKET_OBSERVER& operator=(HC_WEBSOCKET_OBSERVER const&); - HC_WEBSOCKET_OBSERVER(HC_WEBSOCKET_OBSERVER const&); - HC_WEBSOCKET_OBSERVER(); - public: // static functions // NOLINTBEGIN diff --git a/src/mc/external/lib_http_client/HeaderCompare.h b/src/mc/external/lib_http_client/HeaderCompare.h index 9bac46504e..03f39e3762 100644 --- a/src/mc/external/lib_http_client/HeaderCompare.h +++ b/src/mc/external/lib_http_client/HeaderCompare.h @@ -8,12 +8,6 @@ namespace xbox::httpclient { struct HeaderCompare { -public: - // prevent constructor by default - HeaderCompare& operator=(HeaderCompare const&); - HeaderCompare(HeaderCompare const&); - HeaderCompare(); - public: // member functions // NOLINTBEGIN diff --git a/src/mc/external/lib_http_client/HttpPerformInfo.h b/src/mc/external/lib_http_client/HttpPerformInfo.h index 942710d323..87005d98e0 100644 --- a/src/mc/external/lib_http_client/HttpPerformInfo.h +++ b/src/mc/external/lib_http_client/HttpPerformInfo.h @@ -2,10 +2,4 @@ #include "mc/_HeaderOutputPredefine.h" -struct HttpPerformInfo { -public: - // prevent constructor by default - HttpPerformInfo& operator=(HttpPerformInfo const&); - HttpPerformInfo(HttpPerformInfo const&); - HttpPerformInfo(); -}; +struct HttpPerformInfo {}; diff --git a/src/mc/external/lib_http_client/Uri.h b/src/mc/external/lib_http_client/Uri.h index 4472454eee..7071e27644 100644 --- a/src/mc/external/lib_http_client/Uri.h +++ b/src/mc/external/lib_http_client/Uri.h @@ -8,10 +8,6 @@ namespace xbox::httpclient { class Uri { -public: - // prevent constructor by default - Uri& operator=(Uri const&); - public: // member functions // NOLINTBEGIN diff --git a/src/mc/external/lib_http_client/WebSocket.h b/src/mc/external/lib_http_client/WebSocket.h index 6b5cf79eda..aaa60fc951 100644 --- a/src/mc/external/lib_http_client/WebSocket.h +++ b/src/mc/external/lib_http_client/WebSocket.h @@ -29,12 +29,6 @@ class WebSocket { // WebSocket inner types define struct ConnectContext { - public: - // prevent constructor by default - ConnectContext& operator=(ConnectContext const&); - ConnectContext(ConnectContext const&); - ConnectContext(); - public: // member functions // NOLINTBEGIN @@ -48,12 +42,6 @@ class WebSocket { // NOLINTEND }; -public: - // prevent constructor by default - WebSocket& operator=(WebSocket const&); - WebSocket(WebSocket const&); - WebSocket(); - public: // member functions // NOLINTBEGIN diff --git a/src/mc/external/lib_http_client/WebSocketPerformInfo.h b/src/mc/external/lib_http_client/WebSocketPerformInfo.h index 7292de6767..5658458d36 100644 --- a/src/mc/external/lib_http_client/WebSocketPerformInfo.h +++ b/src/mc/external/lib_http_client/WebSocketPerformInfo.h @@ -2,10 +2,4 @@ #include "mc/_HeaderOutputPredefine.h" -struct WebSocketPerformInfo { -public: - // prevent constructor by default - WebSocketPerformInfo& operator=(WebSocketPerformInfo const&); - WebSocketPerformInfo(WebSocketPerformInfo const&); - WebSocketPerformInfo(); -}; +struct WebSocketPerformInfo {}; diff --git a/src/mc/external/lib_http_client/WinHttpCallbackContext.h b/src/mc/external/lib_http_client/WinHttpCallbackContext.h index 3a6fa70046..37bcd024f2 100644 --- a/src/mc/external/lib_http_client/WinHttpCallbackContext.h +++ b/src/mc/external/lib_http_client/WinHttpCallbackContext.h @@ -4,12 +4,6 @@ namespace xbox::httpclient { -struct WinHttpCallbackContext { -public: - // prevent constructor by default - WinHttpCallbackContext& operator=(WinHttpCallbackContext const&); - WinHttpCallbackContext(WinHttpCallbackContext const&); - WinHttpCallbackContext(); -}; +struct WinHttpCallbackContext {}; } // namespace xbox::httpclient diff --git a/src/mc/external/lib_http_client/WinHttpConnection.h b/src/mc/external/lib_http_client/WinHttpConnection.h index cd9484852e..b60b75157d 100644 --- a/src/mc/external/lib_http_client/WinHttpConnection.h +++ b/src/mc/external/lib_http_client/WinHttpConnection.h @@ -28,19 +28,7 @@ class WinHttpConnection { // clang-format on // WinHttpConnection inner types define - struct WebSocketSendContext { - public: - // prevent constructor by default - WebSocketSendContext& operator=(WebSocketSendContext const&); - WebSocketSendContext(WebSocketSendContext const&); - WebSocketSendContext(); - }; - -public: - // prevent constructor by default - WinHttpConnection& operator=(WinHttpConnection const&); - WinHttpConnection(WinHttpConnection const&); - WinHttpConnection(); + struct WebSocketSendContext {}; public: // member functions diff --git a/src/mc/external/lib_http_client/WinHttpProvider.h b/src/mc/external/lib_http_client/WinHttpProvider.h index 6bfc8eb038..a5758574fd 100644 --- a/src/mc/external/lib_http_client/WinHttpProvider.h +++ b/src/mc/external/lib_http_client/WinHttpProvider.h @@ -21,12 +21,6 @@ namespace xbox::httpclient { struct WinHttpWebSocketExports; } namespace xbox::httpclient { class WinHttpProvider { -public: - // prevent constructor by default - WinHttpProvider& operator=(WinHttpProvider const&); - WinHttpProvider(WinHttpProvider const&); - WinHttpProvider(); - public: // member functions // NOLINTBEGIN diff --git a/src/mc/external/lib_http_client/WinHttpWebSocketExports.h b/src/mc/external/lib_http_client/WinHttpWebSocketExports.h index 5944d416d3..adb231c20a 100644 --- a/src/mc/external/lib_http_client/WinHttpWebSocketExports.h +++ b/src/mc/external/lib_http_client/WinHttpWebSocketExports.h @@ -4,12 +4,6 @@ namespace xbox::httpclient { -struct WinHttpWebSocketExports { -public: - // prevent constructor by default - WinHttpWebSocketExports& operator=(WinHttpWebSocketExports const&); - WinHttpWebSocketExports(WinHttpWebSocketExports const&); - WinHttpWebSocketExports(); -}; +struct WinHttpWebSocketExports {}; } // namespace xbox::httpclient diff --git a/src/mc/external/lib_http_client/XPlatSecurityInformation.h b/src/mc/external/lib_http_client/XPlatSecurityInformation.h index d9d57b4f89..577e5eaba4 100644 --- a/src/mc/external/lib_http_client/XPlatSecurityInformation.h +++ b/src/mc/external/lib_http_client/XPlatSecurityInformation.h @@ -4,12 +4,6 @@ namespace xbox::httpclient { -struct XPlatSecurityInformation { -public: - // prevent constructor by default - XPlatSecurityInformation& operator=(XPlatSecurityInformation const&); - XPlatSecurityInformation(XPlatSecurityInformation const&); - XPlatSecurityInformation(); -}; +struct XPlatSecurityInformation {}; } // namespace xbox::httpclient diff --git a/src/mc/external/lib_http_client/http_alloc_deleter.h b/src/mc/external/lib_http_client/http_alloc_deleter.h index 044aff75db..d51828a8a7 100644 --- a/src/mc/external/lib_http_client/http_alloc_deleter.h +++ b/src/mc/external/lib_http_client/http_alloc_deleter.h @@ -3,10 +3,4 @@ #include "mc/_HeaderOutputPredefine.h" template -struct http_alloc_deleter { -public: - // prevent constructor by default - http_alloc_deleter& operator=(http_alloc_deleter const&); - http_alloc_deleter(http_alloc_deleter const&); - http_alloc_deleter(); -}; +struct http_alloc_deleter {}; diff --git a/src/mc/external/lib_http_client/http_memory.h b/src/mc/external/lib_http_client/http_memory.h index 2664e96dcd..469fd7c5d3 100644 --- a/src/mc/external/lib_http_client/http_memory.h +++ b/src/mc/external/lib_http_client/http_memory.h @@ -5,12 +5,6 @@ namespace xbox::httpclient { struct http_memory { -public: - // prevent constructor by default - http_memory& operator=(http_memory const&); - http_memory(http_memory const&); - http_memory(); - public: // static functions // NOLINTBEGIN diff --git a/src/mc/external/lib_http_client/http_memory_buffer.h b/src/mc/external/lib_http_client/http_memory_buffer.h index 90959bdde3..deb95519a3 100644 --- a/src/mc/external/lib_http_client/http_memory_buffer.h +++ b/src/mc/external/lib_http_client/http_memory_buffer.h @@ -5,12 +5,6 @@ namespace xbox::httpclient { struct http_memory_buffer { -public: - // prevent constructor by default - http_memory_buffer& operator=(http_memory_buffer const&); - http_memory_buffer(http_memory_buffer const&); - http_memory_buffer(); - public: // member functions // NOLINTBEGIN diff --git a/src/mc/external/lib_http_client/http_retry_after_api_state.h b/src/mc/external/lib_http_client/http_retry_after_api_state.h index 084fe2df05..3b59a71388 100644 --- a/src/mc/external/lib_http_client/http_retry_after_api_state.h +++ b/src/mc/external/lib_http_client/http_retry_after_api_state.h @@ -4,12 +4,6 @@ namespace xbox::httpclient { -struct http_retry_after_api_state { -public: - // prevent constructor by default - http_retry_after_api_state& operator=(http_retry_after_api_state const&); - http_retry_after_api_state(http_retry_after_api_state const&); - http_retry_after_api_state(); -}; +struct http_retry_after_api_state {}; } // namespace xbox::httpclient diff --git a/src/mc/external/lib_http_client/http_singleton.h b/src/mc/external/lib_http_client/http_singleton.h index 3bb86992c9..cb004ca835 100644 --- a/src/mc/external/lib_http_client/http_singleton.h +++ b/src/mc/external/lib_http_client/http_singleton.h @@ -21,12 +21,6 @@ struct http_singleton { // http_singleton inner types define enum class singleton_access_mode : uint {}; -public: - // prevent constructor by default - http_singleton& operator=(http_singleton const&); - http_singleton(http_singleton const&); - http_singleton(); - public: // member functions // NOLINTBEGIN diff --git a/src/mc/external/lib_http_client/http_stl_allocator.h b/src/mc/external/lib_http_client/http_stl_allocator.h index 6dc6646ad3..0922985a5b 100644 --- a/src/mc/external/lib_http_client/http_stl_allocator.h +++ b/src/mc/external/lib_http_client/http_stl_allocator.h @@ -3,10 +3,4 @@ #include "mc/_HeaderOutputPredefine.h" template -class http_stl_allocator { -public: - // prevent constructor by default - http_stl_allocator& operator=(http_stl_allocator const&); - http_stl_allocator(http_stl_allocator const&); - http_stl_allocator(); -}; +class http_stl_allocator {}; diff --git a/src/mc/external/lib_http_client/shared_ptr_cache.h b/src/mc/external/lib_http_client/shared_ptr_cache.h index 5b5fb28c4d..9f791d9b7a 100644 --- a/src/mc/external/lib_http_client/shared_ptr_cache.h +++ b/src/mc/external/lib_http_client/shared_ptr_cache.h @@ -5,12 +5,6 @@ namespace xbox::httpclient { struct shared_ptr_cache { -public: - // prevent constructor by default - shared_ptr_cache& operator=(shared_ptr_cache const&); - shared_ptr_cache(shared_ptr_cache const&); - shared_ptr_cache(); - public: // static functions // NOLINTBEGIN diff --git a/src/mc/external/lib_http_client/websocket_message_buffer.h b/src/mc/external/lib_http_client/websocket_message_buffer.h index f9d9c33988..be0d676d88 100644 --- a/src/mc/external/lib_http_client/websocket_message_buffer.h +++ b/src/mc/external/lib_http_client/websocket_message_buffer.h @@ -5,12 +5,6 @@ namespace xbox::httpclient { struct websocket_message_buffer { -public: - // prevent constructor by default - websocket_message_buffer& operator=(websocket_message_buffer const&); - websocket_message_buffer(websocket_message_buffer const&); - websocket_message_buffer(); - public: // member functions // NOLINTBEGIN diff --git a/src/mc/external/lib_http_client/win32_cs.h b/src/mc/external/lib_http_client/win32_cs.h index adb66528b6..cc69d0cfcc 100644 --- a/src/mc/external/lib_http_client/win32_cs.h +++ b/src/mc/external/lib_http_client/win32_cs.h @@ -5,12 +5,6 @@ namespace xbox::httpclient { struct win32_cs { -public: - // prevent constructor by default - win32_cs& operator=(win32_cs const&); - win32_cs(win32_cs const&); - win32_cs(); - public: // member functions // NOLINTBEGIN diff --git a/src/mc/external/lib_http_client/win32_cs_autolock.h b/src/mc/external/lib_http_client/win32_cs_autolock.h index 648819f09d..7d88fef9d5 100644 --- a/src/mc/external/lib_http_client/win32_cs_autolock.h +++ b/src/mc/external/lib_http_client/win32_cs_autolock.h @@ -5,12 +5,6 @@ namespace xbox::httpclient { struct win32_cs_autolock { -public: - // prevent constructor by default - win32_cs_autolock& operator=(win32_cs_autolock const&); - win32_cs_autolock(win32_cs_autolock const&); - win32_cs_autolock(); - public: // member functions // NOLINTBEGIN diff --git a/src/mc/external/libsrtp/srtp_auth_t.h b/src/mc/external/libsrtp/srtp_auth_t.h index 3490e89640..0b19cee503 100644 --- a/src/mc/external/libsrtp/srtp_auth_t.h +++ b/src/mc/external/libsrtp/srtp_auth_t.h @@ -2,10 +2,4 @@ #include "mc/_HeaderOutputPredefine.h" -struct srtp_auth_t { -public: - // prevent constructor by default - srtp_auth_t& operator=(srtp_auth_t const&); - srtp_auth_t(srtp_auth_t const&); - srtp_auth_t(); -}; +struct srtp_auth_t {}; diff --git a/src/mc/external/libsrtp/srtp_event_data_t.h b/src/mc/external/libsrtp/srtp_event_data_t.h index 02365e5828..4c0c9598d2 100644 --- a/src/mc/external/libsrtp/srtp_event_data_t.h +++ b/src/mc/external/libsrtp/srtp_event_data_t.h @@ -2,10 +2,4 @@ #include "mc/_HeaderOutputPredefine.h" -struct srtp_event_data_t { -public: - // prevent constructor by default - srtp_event_data_t& operator=(srtp_event_data_t const&); - srtp_event_data_t(srtp_event_data_t const&); - srtp_event_data_t(); -}; +struct srtp_event_data_t {}; diff --git a/src/mc/external/playfab/IPlayFabEmitEventRequest.h b/src/mc/external/playfab/IPlayFabEmitEventRequest.h index a0ec2a9a76..e8c291cb4c 100644 --- a/src/mc/external/playfab/IPlayFabEmitEventRequest.h +++ b/src/mc/external/playfab/IPlayFabEmitEventRequest.h @@ -5,12 +5,6 @@ namespace PlayFab { class IPlayFabEmitEventRequest { -public: - // prevent constructor by default - IPlayFabEmitEventRequest& operator=(IPlayFabEmitEventRequest const&); - IPlayFabEmitEventRequest(IPlayFabEmitEventRequest const&); - IPlayFabEmitEventRequest(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/external/playfab/IPlayFabEmitEventResponse.h b/src/mc/external/playfab/IPlayFabEmitEventResponse.h index eb52c1cc22..e5af6935f8 100644 --- a/src/mc/external/playfab/IPlayFabEmitEventResponse.h +++ b/src/mc/external/playfab/IPlayFabEmitEventResponse.h @@ -5,12 +5,6 @@ namespace PlayFab { class IPlayFabEmitEventResponse { -public: - // prevent constructor by default - IPlayFabEmitEventResponse& operator=(IPlayFabEmitEventResponse const&); - IPlayFabEmitEventResponse(IPlayFabEmitEventResponse const&); - IPlayFabEmitEventResponse(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/external/playfab/IPlayFabEvent.h b/src/mc/external/playfab/IPlayFabEvent.h index 5eb52b8230..4780bb84dd 100644 --- a/src/mc/external/playfab/IPlayFabEvent.h +++ b/src/mc/external/playfab/IPlayFabEvent.h @@ -5,12 +5,6 @@ namespace PlayFab { class IPlayFabEvent { -public: - // prevent constructor by default - IPlayFabEvent& operator=(IPlayFabEvent const&); - IPlayFabEvent(IPlayFabEvent const&); - IPlayFabEvent(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/external/playfab/IPlayFabEventPipeline.h b/src/mc/external/playfab/IPlayFabEventPipeline.h index 0ae31d2e6c..5a37783384 100644 --- a/src/mc/external/playfab/IPlayFabEventPipeline.h +++ b/src/mc/external/playfab/IPlayFabEventPipeline.h @@ -10,12 +10,6 @@ namespace PlayFab { class IPlayFabEmitEventRequest; } namespace PlayFab { class IPlayFabEventPipeline { -public: - // prevent constructor by default - IPlayFabEventPipeline& operator=(IPlayFabEventPipeline const&); - IPlayFabEventPipeline(IPlayFabEventPipeline const&); - IPlayFabEventPipeline(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/external/playfab/PlayFabBaseModel.h b/src/mc/external/playfab/PlayFabBaseModel.h index 5c65b29d60..b36bafb355 100644 --- a/src/mc/external/playfab/PlayFabBaseModel.h +++ b/src/mc/external/playfab/PlayFabBaseModel.h @@ -10,12 +10,6 @@ namespace Json { class Value; } namespace PlayFab { struct PlayFabBaseModel { -public: - // prevent constructor by default - PlayFabBaseModel& operator=(PlayFabBaseModel const&); - PlayFabBaseModel(PlayFabBaseModel const&); - PlayFabBaseModel(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/external/playfab/client_models/AddGenericIDResult.h b/src/mc/external/playfab/client_models/AddGenericIDResult.h index 1a7ce40d1b..340b5f3dc5 100644 --- a/src/mc/external/playfab/client_models/AddGenericIDResult.h +++ b/src/mc/external/playfab/client_models/AddGenericIDResult.h @@ -13,12 +13,6 @@ namespace Json { class Value; } namespace PlayFab::ClientModels { struct AddGenericIDResult : public ::PlayFab::PlayFabResultCommon { -public: - // prevent constructor by default - AddGenericIDResult& operator=(AddGenericIDResult const&); - AddGenericIDResult(AddGenericIDResult const&); - AddGenericIDResult(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/external/playfab/client_models/AddOrUpdateContactEmailResult.h b/src/mc/external/playfab/client_models/AddOrUpdateContactEmailResult.h index d68a9ac54f..f21f675efd 100644 --- a/src/mc/external/playfab/client_models/AddOrUpdateContactEmailResult.h +++ b/src/mc/external/playfab/client_models/AddOrUpdateContactEmailResult.h @@ -13,12 +13,6 @@ namespace Json { class Value; } namespace PlayFab::ClientModels { struct AddOrUpdateContactEmailResult : public ::PlayFab::PlayFabResultCommon { -public: - // prevent constructor by default - AddOrUpdateContactEmailResult& operator=(AddOrUpdateContactEmailResult const&); - AddOrUpdateContactEmailResult(AddOrUpdateContactEmailResult const&); - AddOrUpdateContactEmailResult(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/external/playfab/client_models/AddSharedGroupMembersResult.h b/src/mc/external/playfab/client_models/AddSharedGroupMembersResult.h index 1e5c43dfdc..28aa376910 100644 --- a/src/mc/external/playfab/client_models/AddSharedGroupMembersResult.h +++ b/src/mc/external/playfab/client_models/AddSharedGroupMembersResult.h @@ -13,12 +13,6 @@ namespace Json { class Value; } namespace PlayFab::ClientModels { struct AddSharedGroupMembersResult : public ::PlayFab::PlayFabResultCommon { -public: - // prevent constructor by default - AddSharedGroupMembersResult& operator=(AddSharedGroupMembersResult const&); - AddSharedGroupMembersResult(AddSharedGroupMembersResult const&); - AddSharedGroupMembersResult(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/external/playfab/client_models/AndroidDevicePushNotificationRegistrationResult.h b/src/mc/external/playfab/client_models/AndroidDevicePushNotificationRegistrationResult.h index f8819a9cf4..a433828c3b 100644 --- a/src/mc/external/playfab/client_models/AndroidDevicePushNotificationRegistrationResult.h +++ b/src/mc/external/playfab/client_models/AndroidDevicePushNotificationRegistrationResult.h @@ -13,12 +13,6 @@ namespace Json { class Value; } namespace PlayFab::ClientModels { struct AndroidDevicePushNotificationRegistrationResult : public ::PlayFab::PlayFabResultCommon { -public: - // prevent constructor by default - AndroidDevicePushNotificationRegistrationResult& operator=(AndroidDevicePushNotificationRegistrationResult const&); - AndroidDevicePushNotificationRegistrationResult(AndroidDevicePushNotificationRegistrationResult const&); - AndroidDevicePushNotificationRegistrationResult(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/external/playfab/client_models/AttributeInstallResult.h b/src/mc/external/playfab/client_models/AttributeInstallResult.h index 9902cb8cbf..9d63d80ea5 100644 --- a/src/mc/external/playfab/client_models/AttributeInstallResult.h +++ b/src/mc/external/playfab/client_models/AttributeInstallResult.h @@ -13,12 +13,6 @@ namespace Json { class Value; } namespace PlayFab::ClientModels { struct AttributeInstallResult : public ::PlayFab::PlayFabResultCommon { -public: - // prevent constructor by default - AttributeInstallResult& operator=(AttributeInstallResult const&); - AttributeInstallResult(AttributeInstallResult const&); - AttributeInstallResult(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/external/playfab/client_models/EmptyResponse.h b/src/mc/external/playfab/client_models/EmptyResponse.h index 1adba065a5..7126ec76da 100644 --- a/src/mc/external/playfab/client_models/EmptyResponse.h +++ b/src/mc/external/playfab/client_models/EmptyResponse.h @@ -13,12 +13,6 @@ namespace Json { class Value; } namespace PlayFab::ClientModels { struct EmptyResponse : public ::PlayFab::PlayFabResultCommon { -public: - // prevent constructor by default - EmptyResponse& operator=(EmptyResponse const&); - EmptyResponse(EmptyResponse const&); - EmptyResponse(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/external/playfab/client_models/EmptyResult.h b/src/mc/external/playfab/client_models/EmptyResult.h index 6a0c2fb5f0..b3dac433b5 100644 --- a/src/mc/external/playfab/client_models/EmptyResult.h +++ b/src/mc/external/playfab/client_models/EmptyResult.h @@ -13,12 +13,6 @@ namespace Json { class Value; } namespace PlayFab::ClientModels { struct EmptyResult : public ::PlayFab::PlayFabResultCommon { -public: - // prevent constructor by default - EmptyResult& operator=(EmptyResult const&); - EmptyResult(EmptyResult const&); - EmptyResult(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/external/playfab/client_models/GetPlayerSegmentsRequest.h b/src/mc/external/playfab/client_models/GetPlayerSegmentsRequest.h index 8f486054f5..fd8ae73cfc 100644 --- a/src/mc/external/playfab/client_models/GetPlayerSegmentsRequest.h +++ b/src/mc/external/playfab/client_models/GetPlayerSegmentsRequest.h @@ -13,12 +13,6 @@ namespace Json { class Value; } namespace PlayFab::ClientModels { struct GetPlayerSegmentsRequest : public ::PlayFab::PlayFabRequestCommon { -public: - // prevent constructor by default - GetPlayerSegmentsRequest& operator=(GetPlayerSegmentsRequest const&); - GetPlayerSegmentsRequest(GetPlayerSegmentsRequest const&); - GetPlayerSegmentsRequest(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/external/playfab/client_models/GetTimeRequest.h b/src/mc/external/playfab/client_models/GetTimeRequest.h index d8f5852fd6..4e626a0ef0 100644 --- a/src/mc/external/playfab/client_models/GetTimeRequest.h +++ b/src/mc/external/playfab/client_models/GetTimeRequest.h @@ -13,12 +13,6 @@ namespace Json { class Value; } namespace PlayFab::ClientModels { struct GetTimeRequest : public ::PlayFab::PlayFabRequestCommon { -public: - // prevent constructor by default - GetTimeRequest& operator=(GetTimeRequest const&); - GetTimeRequest(GetTimeRequest const&); - GetTimeRequest(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/external/playfab/client_models/GetUserInventoryRequest.h b/src/mc/external/playfab/client_models/GetUserInventoryRequest.h index a6f76c5e6b..7d6a8bda9f 100644 --- a/src/mc/external/playfab/client_models/GetUserInventoryRequest.h +++ b/src/mc/external/playfab/client_models/GetUserInventoryRequest.h @@ -13,12 +13,6 @@ namespace Json { class Value; } namespace PlayFab::ClientModels { struct GetUserInventoryRequest : public ::PlayFab::PlayFabRequestCommon { -public: - // prevent constructor by default - GetUserInventoryRequest& operator=(GetUserInventoryRequest const&); - GetUserInventoryRequest(GetUserInventoryRequest const&); - GetUserInventoryRequest(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/external/playfab/client_models/LinkAndroidDeviceIDResult.h b/src/mc/external/playfab/client_models/LinkAndroidDeviceIDResult.h index 64efe308e1..aaac4303d2 100644 --- a/src/mc/external/playfab/client_models/LinkAndroidDeviceIDResult.h +++ b/src/mc/external/playfab/client_models/LinkAndroidDeviceIDResult.h @@ -13,12 +13,6 @@ namespace Json { class Value; } namespace PlayFab::ClientModels { struct LinkAndroidDeviceIDResult : public ::PlayFab::PlayFabResultCommon { -public: - // prevent constructor by default - LinkAndroidDeviceIDResult& operator=(LinkAndroidDeviceIDResult const&); - LinkAndroidDeviceIDResult(LinkAndroidDeviceIDResult const&); - LinkAndroidDeviceIDResult(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/external/playfab/client_models/LinkCustomIDResult.h b/src/mc/external/playfab/client_models/LinkCustomIDResult.h index 4b575cd591..1b301c4971 100644 --- a/src/mc/external/playfab/client_models/LinkCustomIDResult.h +++ b/src/mc/external/playfab/client_models/LinkCustomIDResult.h @@ -13,12 +13,6 @@ namespace Json { class Value; } namespace PlayFab::ClientModels { struct LinkCustomIDResult : public ::PlayFab::PlayFabResultCommon { -public: - // prevent constructor by default - LinkCustomIDResult& operator=(LinkCustomIDResult const&); - LinkCustomIDResult(LinkCustomIDResult const&); - LinkCustomIDResult(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/external/playfab/client_models/LinkFacebookAccountResult.h b/src/mc/external/playfab/client_models/LinkFacebookAccountResult.h index dd7704bd4c..720754a285 100644 --- a/src/mc/external/playfab/client_models/LinkFacebookAccountResult.h +++ b/src/mc/external/playfab/client_models/LinkFacebookAccountResult.h @@ -13,12 +13,6 @@ namespace Json { class Value; } namespace PlayFab::ClientModels { struct LinkFacebookAccountResult : public ::PlayFab::PlayFabResultCommon { -public: - // prevent constructor by default - LinkFacebookAccountResult& operator=(LinkFacebookAccountResult const&); - LinkFacebookAccountResult(LinkFacebookAccountResult const&); - LinkFacebookAccountResult(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/external/playfab/client_models/LinkFacebookInstantGamesIdResult.h b/src/mc/external/playfab/client_models/LinkFacebookInstantGamesIdResult.h index 381a9ca984..89f9526dcd 100644 --- a/src/mc/external/playfab/client_models/LinkFacebookInstantGamesIdResult.h +++ b/src/mc/external/playfab/client_models/LinkFacebookInstantGamesIdResult.h @@ -13,12 +13,6 @@ namespace Json { class Value; } namespace PlayFab::ClientModels { struct LinkFacebookInstantGamesIdResult : public ::PlayFab::PlayFabResultCommon { -public: - // prevent constructor by default - LinkFacebookInstantGamesIdResult& operator=(LinkFacebookInstantGamesIdResult const&); - LinkFacebookInstantGamesIdResult(LinkFacebookInstantGamesIdResult const&); - LinkFacebookInstantGamesIdResult(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/external/playfab/client_models/LinkGameCenterAccountResult.h b/src/mc/external/playfab/client_models/LinkGameCenterAccountResult.h index 48164cce80..34cfe08cea 100644 --- a/src/mc/external/playfab/client_models/LinkGameCenterAccountResult.h +++ b/src/mc/external/playfab/client_models/LinkGameCenterAccountResult.h @@ -13,12 +13,6 @@ namespace Json { class Value; } namespace PlayFab::ClientModels { struct LinkGameCenterAccountResult : public ::PlayFab::PlayFabResultCommon { -public: - // prevent constructor by default - LinkGameCenterAccountResult& operator=(LinkGameCenterAccountResult const&); - LinkGameCenterAccountResult(LinkGameCenterAccountResult const&); - LinkGameCenterAccountResult(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/external/playfab/client_models/LinkGoogleAccountResult.h b/src/mc/external/playfab/client_models/LinkGoogleAccountResult.h index 6c747181c4..02c21630c1 100644 --- a/src/mc/external/playfab/client_models/LinkGoogleAccountResult.h +++ b/src/mc/external/playfab/client_models/LinkGoogleAccountResult.h @@ -13,12 +13,6 @@ namespace Json { class Value; } namespace PlayFab::ClientModels { struct LinkGoogleAccountResult : public ::PlayFab::PlayFabResultCommon { -public: - // prevent constructor by default - LinkGoogleAccountResult& operator=(LinkGoogleAccountResult const&); - LinkGoogleAccountResult(LinkGoogleAccountResult const&); - LinkGoogleAccountResult(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/external/playfab/client_models/LinkIOSDeviceIDResult.h b/src/mc/external/playfab/client_models/LinkIOSDeviceIDResult.h index ea70201ca3..57d0602c10 100644 --- a/src/mc/external/playfab/client_models/LinkIOSDeviceIDResult.h +++ b/src/mc/external/playfab/client_models/LinkIOSDeviceIDResult.h @@ -13,12 +13,6 @@ namespace Json { class Value; } namespace PlayFab::ClientModels { struct LinkIOSDeviceIDResult : public ::PlayFab::PlayFabResultCommon { -public: - // prevent constructor by default - LinkIOSDeviceIDResult& operator=(LinkIOSDeviceIDResult const&); - LinkIOSDeviceIDResult(LinkIOSDeviceIDResult const&); - LinkIOSDeviceIDResult(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/external/playfab/client_models/LinkKongregateAccountResult.h b/src/mc/external/playfab/client_models/LinkKongregateAccountResult.h index af1034cba3..ca1b040781 100644 --- a/src/mc/external/playfab/client_models/LinkKongregateAccountResult.h +++ b/src/mc/external/playfab/client_models/LinkKongregateAccountResult.h @@ -13,12 +13,6 @@ namespace Json { class Value; } namespace PlayFab::ClientModels { struct LinkKongregateAccountResult : public ::PlayFab::PlayFabResultCommon { -public: - // prevent constructor by default - LinkKongregateAccountResult& operator=(LinkKongregateAccountResult const&); - LinkKongregateAccountResult(LinkKongregateAccountResult const&); - LinkKongregateAccountResult(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/external/playfab/client_models/LinkNintendoSwitchDeviceIdResult.h b/src/mc/external/playfab/client_models/LinkNintendoSwitchDeviceIdResult.h index 097c67d078..bd22f59b45 100644 --- a/src/mc/external/playfab/client_models/LinkNintendoSwitchDeviceIdResult.h +++ b/src/mc/external/playfab/client_models/LinkNintendoSwitchDeviceIdResult.h @@ -13,12 +13,6 @@ namespace Json { class Value; } namespace PlayFab::ClientModels { struct LinkNintendoSwitchDeviceIdResult : public ::PlayFab::PlayFabResultCommon { -public: - // prevent constructor by default - LinkNintendoSwitchDeviceIdResult& operator=(LinkNintendoSwitchDeviceIdResult const&); - LinkNintendoSwitchDeviceIdResult(LinkNintendoSwitchDeviceIdResult const&); - LinkNintendoSwitchDeviceIdResult(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/external/playfab/client_models/LinkPSNAccountResult.h b/src/mc/external/playfab/client_models/LinkPSNAccountResult.h index 33677fcb16..290d12369b 100644 --- a/src/mc/external/playfab/client_models/LinkPSNAccountResult.h +++ b/src/mc/external/playfab/client_models/LinkPSNAccountResult.h @@ -13,12 +13,6 @@ namespace Json { class Value; } namespace PlayFab::ClientModels { struct LinkPSNAccountResult : public ::PlayFab::PlayFabResultCommon { -public: - // prevent constructor by default - LinkPSNAccountResult& operator=(LinkPSNAccountResult const&); - LinkPSNAccountResult(LinkPSNAccountResult const&); - LinkPSNAccountResult(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/external/playfab/client_models/LinkSteamAccountResult.h b/src/mc/external/playfab/client_models/LinkSteamAccountResult.h index ca0c158ef0..7529c49ea4 100644 --- a/src/mc/external/playfab/client_models/LinkSteamAccountResult.h +++ b/src/mc/external/playfab/client_models/LinkSteamAccountResult.h @@ -13,12 +13,6 @@ namespace Json { class Value; } namespace PlayFab::ClientModels { struct LinkSteamAccountResult : public ::PlayFab::PlayFabResultCommon { -public: - // prevent constructor by default - LinkSteamAccountResult& operator=(LinkSteamAccountResult const&); - LinkSteamAccountResult(LinkSteamAccountResult const&); - LinkSteamAccountResult(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/external/playfab/client_models/LinkTwitchAccountResult.h b/src/mc/external/playfab/client_models/LinkTwitchAccountResult.h index 41547499ef..1e56a40b4e 100644 --- a/src/mc/external/playfab/client_models/LinkTwitchAccountResult.h +++ b/src/mc/external/playfab/client_models/LinkTwitchAccountResult.h @@ -13,12 +13,6 @@ namespace Json { class Value; } namespace PlayFab::ClientModels { struct LinkTwitchAccountResult : public ::PlayFab::PlayFabResultCommon { -public: - // prevent constructor by default - LinkTwitchAccountResult& operator=(LinkTwitchAccountResult const&); - LinkTwitchAccountResult(LinkTwitchAccountResult const&); - LinkTwitchAccountResult(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/external/playfab/client_models/LinkWindowsHelloAccountResponse.h b/src/mc/external/playfab/client_models/LinkWindowsHelloAccountResponse.h index d7d9b5933b..38c617a381 100644 --- a/src/mc/external/playfab/client_models/LinkWindowsHelloAccountResponse.h +++ b/src/mc/external/playfab/client_models/LinkWindowsHelloAccountResponse.h @@ -13,12 +13,6 @@ namespace Json { class Value; } namespace PlayFab::ClientModels { struct LinkWindowsHelloAccountResponse : public ::PlayFab::PlayFabResultCommon { -public: - // prevent constructor by default - LinkWindowsHelloAccountResponse& operator=(LinkWindowsHelloAccountResponse const&); - LinkWindowsHelloAccountResponse(LinkWindowsHelloAccountResponse const&); - LinkWindowsHelloAccountResponse(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/external/playfab/client_models/LinkXboxAccountResult.h b/src/mc/external/playfab/client_models/LinkXboxAccountResult.h index 5641fe5a07..84f8e7b758 100644 --- a/src/mc/external/playfab/client_models/LinkXboxAccountResult.h +++ b/src/mc/external/playfab/client_models/LinkXboxAccountResult.h @@ -13,12 +13,6 @@ namespace Json { class Value; } namespace PlayFab::ClientModels { struct LinkXboxAccountResult : public ::PlayFab::PlayFabResultCommon { -public: - // prevent constructor by default - LinkXboxAccountResult& operator=(LinkXboxAccountResult const&); - LinkXboxAccountResult(LinkXboxAccountResult const&); - LinkXboxAccountResult(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/external/playfab/client_models/RegisterForIOSPushNotificationResult.h b/src/mc/external/playfab/client_models/RegisterForIOSPushNotificationResult.h index 43f0b8113c..36f729d69e 100644 --- a/src/mc/external/playfab/client_models/RegisterForIOSPushNotificationResult.h +++ b/src/mc/external/playfab/client_models/RegisterForIOSPushNotificationResult.h @@ -13,12 +13,6 @@ namespace Json { class Value; } namespace PlayFab::ClientModels { struct RegisterForIOSPushNotificationResult : public ::PlayFab::PlayFabResultCommon { -public: - // prevent constructor by default - RegisterForIOSPushNotificationResult& operator=(RegisterForIOSPushNotificationResult const&); - RegisterForIOSPushNotificationResult(RegisterForIOSPushNotificationResult const&); - RegisterForIOSPushNotificationResult(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/external/playfab/client_models/RemoveContactEmailRequest.h b/src/mc/external/playfab/client_models/RemoveContactEmailRequest.h index df0bd32b35..19a5b36949 100644 --- a/src/mc/external/playfab/client_models/RemoveContactEmailRequest.h +++ b/src/mc/external/playfab/client_models/RemoveContactEmailRequest.h @@ -13,12 +13,6 @@ namespace Json { class Value; } namespace PlayFab::ClientModels { struct RemoveContactEmailRequest : public ::PlayFab::PlayFabRequestCommon { -public: - // prevent constructor by default - RemoveContactEmailRequest& operator=(RemoveContactEmailRequest const&); - RemoveContactEmailRequest(RemoveContactEmailRequest const&); - RemoveContactEmailRequest(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/external/playfab/client_models/RemoveContactEmailResult.h b/src/mc/external/playfab/client_models/RemoveContactEmailResult.h index e7a81567ae..83235edc48 100644 --- a/src/mc/external/playfab/client_models/RemoveContactEmailResult.h +++ b/src/mc/external/playfab/client_models/RemoveContactEmailResult.h @@ -13,12 +13,6 @@ namespace Json { class Value; } namespace PlayFab::ClientModels { struct RemoveContactEmailResult : public ::PlayFab::PlayFabResultCommon { -public: - // prevent constructor by default - RemoveContactEmailResult& operator=(RemoveContactEmailResult const&); - RemoveContactEmailResult(RemoveContactEmailResult const&); - RemoveContactEmailResult(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/external/playfab/client_models/RemoveFriendResult.h b/src/mc/external/playfab/client_models/RemoveFriendResult.h index aa50b11b03..532ae40f33 100644 --- a/src/mc/external/playfab/client_models/RemoveFriendResult.h +++ b/src/mc/external/playfab/client_models/RemoveFriendResult.h @@ -13,12 +13,6 @@ namespace Json { class Value; } namespace PlayFab::ClientModels { struct RemoveFriendResult : public ::PlayFab::PlayFabResultCommon { -public: - // prevent constructor by default - RemoveFriendResult& operator=(RemoveFriendResult const&); - RemoveFriendResult(RemoveFriendResult const&); - RemoveFriendResult(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/external/playfab/client_models/RemoveGenericIDResult.h b/src/mc/external/playfab/client_models/RemoveGenericIDResult.h index 5c58d4f408..b26a16d82f 100644 --- a/src/mc/external/playfab/client_models/RemoveGenericIDResult.h +++ b/src/mc/external/playfab/client_models/RemoveGenericIDResult.h @@ -13,12 +13,6 @@ namespace Json { class Value; } namespace PlayFab::ClientModels { struct RemoveGenericIDResult : public ::PlayFab::PlayFabResultCommon { -public: - // prevent constructor by default - RemoveGenericIDResult& operator=(RemoveGenericIDResult const&); - RemoveGenericIDResult(RemoveGenericIDResult const&); - RemoveGenericIDResult(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/external/playfab/client_models/RemoveSharedGroupMembersResult.h b/src/mc/external/playfab/client_models/RemoveSharedGroupMembersResult.h index 86db2cd021..8554d82b80 100644 --- a/src/mc/external/playfab/client_models/RemoveSharedGroupMembersResult.h +++ b/src/mc/external/playfab/client_models/RemoveSharedGroupMembersResult.h @@ -13,12 +13,6 @@ namespace Json { class Value; } namespace PlayFab::ClientModels { struct RemoveSharedGroupMembersResult : public ::PlayFab::PlayFabResultCommon { -public: - // prevent constructor by default - RemoveSharedGroupMembersResult& operator=(RemoveSharedGroupMembersResult const&); - RemoveSharedGroupMembersResult(RemoveSharedGroupMembersResult const&); - RemoveSharedGroupMembersResult(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/external/playfab/client_models/RestoreIOSPurchasesResult.h b/src/mc/external/playfab/client_models/RestoreIOSPurchasesResult.h index fb214338e4..b3592de7f9 100644 --- a/src/mc/external/playfab/client_models/RestoreIOSPurchasesResult.h +++ b/src/mc/external/playfab/client_models/RestoreIOSPurchasesResult.h @@ -13,12 +13,6 @@ namespace Json { class Value; } namespace PlayFab::ClientModels { struct RestoreIOSPurchasesResult : public ::PlayFab::PlayFabResultCommon { -public: - // prevent constructor by default - RestoreIOSPurchasesResult& operator=(RestoreIOSPurchasesResult const&); - RestoreIOSPurchasesResult(RestoreIOSPurchasesResult const&); - RestoreIOSPurchasesResult(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/external/playfab/client_models/SendAccountRecoveryEmailResult.h b/src/mc/external/playfab/client_models/SendAccountRecoveryEmailResult.h index 03d83adc8f..659aea5e8c 100644 --- a/src/mc/external/playfab/client_models/SendAccountRecoveryEmailResult.h +++ b/src/mc/external/playfab/client_models/SendAccountRecoveryEmailResult.h @@ -13,12 +13,6 @@ namespace Json { class Value; } namespace PlayFab::ClientModels { struct SendAccountRecoveryEmailResult : public ::PlayFab::PlayFabResultCommon { -public: - // prevent constructor by default - SendAccountRecoveryEmailResult& operator=(SendAccountRecoveryEmailResult const&); - SendAccountRecoveryEmailResult(SendAccountRecoveryEmailResult const&); - SendAccountRecoveryEmailResult(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/external/playfab/client_models/SetFriendTagsResult.h b/src/mc/external/playfab/client_models/SetFriendTagsResult.h index 02ade31f7d..409357728c 100644 --- a/src/mc/external/playfab/client_models/SetFriendTagsResult.h +++ b/src/mc/external/playfab/client_models/SetFriendTagsResult.h @@ -13,12 +13,6 @@ namespace Json { class Value; } namespace PlayFab::ClientModels { struct SetFriendTagsResult : public ::PlayFab::PlayFabResultCommon { -public: - // prevent constructor by default - SetFriendTagsResult& operator=(SetFriendTagsResult const&); - SetFriendTagsResult(SetFriendTagsResult const&); - SetFriendTagsResult(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/external/playfab/client_models/SetPlayerSecretResult.h b/src/mc/external/playfab/client_models/SetPlayerSecretResult.h index e8b92253f7..b25b4f28d2 100644 --- a/src/mc/external/playfab/client_models/SetPlayerSecretResult.h +++ b/src/mc/external/playfab/client_models/SetPlayerSecretResult.h @@ -13,12 +13,6 @@ namespace Json { class Value; } namespace PlayFab::ClientModels { struct SetPlayerSecretResult : public ::PlayFab::PlayFabResultCommon { -public: - // prevent constructor by default - SetPlayerSecretResult& operator=(SetPlayerSecretResult const&); - SetPlayerSecretResult(SetPlayerSecretResult const&); - SetPlayerSecretResult(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/external/playfab/client_models/UnlinkAndroidDeviceIDResult.h b/src/mc/external/playfab/client_models/UnlinkAndroidDeviceIDResult.h index 75d6f37e65..80016bcefb 100644 --- a/src/mc/external/playfab/client_models/UnlinkAndroidDeviceIDResult.h +++ b/src/mc/external/playfab/client_models/UnlinkAndroidDeviceIDResult.h @@ -13,12 +13,6 @@ namespace Json { class Value; } namespace PlayFab::ClientModels { struct UnlinkAndroidDeviceIDResult : public ::PlayFab::PlayFabResultCommon { -public: - // prevent constructor by default - UnlinkAndroidDeviceIDResult& operator=(UnlinkAndroidDeviceIDResult const&); - UnlinkAndroidDeviceIDResult(UnlinkAndroidDeviceIDResult const&); - UnlinkAndroidDeviceIDResult(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/external/playfab/client_models/UnlinkCustomIDResult.h b/src/mc/external/playfab/client_models/UnlinkCustomIDResult.h index 9c43fa307a..02cd3fe4af 100644 --- a/src/mc/external/playfab/client_models/UnlinkCustomIDResult.h +++ b/src/mc/external/playfab/client_models/UnlinkCustomIDResult.h @@ -13,12 +13,6 @@ namespace Json { class Value; } namespace PlayFab::ClientModels { struct UnlinkCustomIDResult : public ::PlayFab::PlayFabResultCommon { -public: - // prevent constructor by default - UnlinkCustomIDResult& operator=(UnlinkCustomIDResult const&); - UnlinkCustomIDResult(UnlinkCustomIDResult const&); - UnlinkCustomIDResult(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/external/playfab/client_models/UnlinkFacebookAccountRequest.h b/src/mc/external/playfab/client_models/UnlinkFacebookAccountRequest.h index 7a094688e1..fc3c3bfa7a 100644 --- a/src/mc/external/playfab/client_models/UnlinkFacebookAccountRequest.h +++ b/src/mc/external/playfab/client_models/UnlinkFacebookAccountRequest.h @@ -13,12 +13,6 @@ namespace Json { class Value; } namespace PlayFab::ClientModels { struct UnlinkFacebookAccountRequest : public ::PlayFab::PlayFabRequestCommon { -public: - // prevent constructor by default - UnlinkFacebookAccountRequest& operator=(UnlinkFacebookAccountRequest const&); - UnlinkFacebookAccountRequest(UnlinkFacebookAccountRequest const&); - UnlinkFacebookAccountRequest(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/external/playfab/client_models/UnlinkFacebookAccountResult.h b/src/mc/external/playfab/client_models/UnlinkFacebookAccountResult.h index a4e8a251f1..98dbd69336 100644 --- a/src/mc/external/playfab/client_models/UnlinkFacebookAccountResult.h +++ b/src/mc/external/playfab/client_models/UnlinkFacebookAccountResult.h @@ -13,12 +13,6 @@ namespace Json { class Value; } namespace PlayFab::ClientModels { struct UnlinkFacebookAccountResult : public ::PlayFab::PlayFabResultCommon { -public: - // prevent constructor by default - UnlinkFacebookAccountResult& operator=(UnlinkFacebookAccountResult const&); - UnlinkFacebookAccountResult(UnlinkFacebookAccountResult const&); - UnlinkFacebookAccountResult(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/external/playfab/client_models/UnlinkFacebookInstantGamesIdResult.h b/src/mc/external/playfab/client_models/UnlinkFacebookInstantGamesIdResult.h index 0fb5c7784a..6422cc2a4a 100644 --- a/src/mc/external/playfab/client_models/UnlinkFacebookInstantGamesIdResult.h +++ b/src/mc/external/playfab/client_models/UnlinkFacebookInstantGamesIdResult.h @@ -13,12 +13,6 @@ namespace Json { class Value; } namespace PlayFab::ClientModels { struct UnlinkFacebookInstantGamesIdResult : public ::PlayFab::PlayFabResultCommon { -public: - // prevent constructor by default - UnlinkFacebookInstantGamesIdResult& operator=(UnlinkFacebookInstantGamesIdResult const&); - UnlinkFacebookInstantGamesIdResult(UnlinkFacebookInstantGamesIdResult const&); - UnlinkFacebookInstantGamesIdResult(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/external/playfab/client_models/UnlinkGameCenterAccountRequest.h b/src/mc/external/playfab/client_models/UnlinkGameCenterAccountRequest.h index 36369531c6..0fc4a9a2c2 100644 --- a/src/mc/external/playfab/client_models/UnlinkGameCenterAccountRequest.h +++ b/src/mc/external/playfab/client_models/UnlinkGameCenterAccountRequest.h @@ -13,12 +13,6 @@ namespace Json { class Value; } namespace PlayFab::ClientModels { struct UnlinkGameCenterAccountRequest : public ::PlayFab::PlayFabRequestCommon { -public: - // prevent constructor by default - UnlinkGameCenterAccountRequest& operator=(UnlinkGameCenterAccountRequest const&); - UnlinkGameCenterAccountRequest(UnlinkGameCenterAccountRequest const&); - UnlinkGameCenterAccountRequest(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/external/playfab/client_models/UnlinkGameCenterAccountResult.h b/src/mc/external/playfab/client_models/UnlinkGameCenterAccountResult.h index 3090da7282..8321a96a79 100644 --- a/src/mc/external/playfab/client_models/UnlinkGameCenterAccountResult.h +++ b/src/mc/external/playfab/client_models/UnlinkGameCenterAccountResult.h @@ -13,12 +13,6 @@ namespace Json { class Value; } namespace PlayFab::ClientModels { struct UnlinkGameCenterAccountResult : public ::PlayFab::PlayFabResultCommon { -public: - // prevent constructor by default - UnlinkGameCenterAccountResult& operator=(UnlinkGameCenterAccountResult const&); - UnlinkGameCenterAccountResult(UnlinkGameCenterAccountResult const&); - UnlinkGameCenterAccountResult(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/external/playfab/client_models/UnlinkGoogleAccountRequest.h b/src/mc/external/playfab/client_models/UnlinkGoogleAccountRequest.h index 784afc2b2a..c76c5ffd23 100644 --- a/src/mc/external/playfab/client_models/UnlinkGoogleAccountRequest.h +++ b/src/mc/external/playfab/client_models/UnlinkGoogleAccountRequest.h @@ -13,12 +13,6 @@ namespace Json { class Value; } namespace PlayFab::ClientModels { struct UnlinkGoogleAccountRequest : public ::PlayFab::PlayFabRequestCommon { -public: - // prevent constructor by default - UnlinkGoogleAccountRequest& operator=(UnlinkGoogleAccountRequest const&); - UnlinkGoogleAccountRequest(UnlinkGoogleAccountRequest const&); - UnlinkGoogleAccountRequest(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/external/playfab/client_models/UnlinkGoogleAccountResult.h b/src/mc/external/playfab/client_models/UnlinkGoogleAccountResult.h index 4e33f654ce..c9c611f3b4 100644 --- a/src/mc/external/playfab/client_models/UnlinkGoogleAccountResult.h +++ b/src/mc/external/playfab/client_models/UnlinkGoogleAccountResult.h @@ -13,12 +13,6 @@ namespace Json { class Value; } namespace PlayFab::ClientModels { struct UnlinkGoogleAccountResult : public ::PlayFab::PlayFabResultCommon { -public: - // prevent constructor by default - UnlinkGoogleAccountResult& operator=(UnlinkGoogleAccountResult const&); - UnlinkGoogleAccountResult(UnlinkGoogleAccountResult const&); - UnlinkGoogleAccountResult(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/external/playfab/client_models/UnlinkIOSDeviceIDResult.h b/src/mc/external/playfab/client_models/UnlinkIOSDeviceIDResult.h index cdbe77e13f..d71144c66b 100644 --- a/src/mc/external/playfab/client_models/UnlinkIOSDeviceIDResult.h +++ b/src/mc/external/playfab/client_models/UnlinkIOSDeviceIDResult.h @@ -13,12 +13,6 @@ namespace Json { class Value; } namespace PlayFab::ClientModels { struct UnlinkIOSDeviceIDResult : public ::PlayFab::PlayFabResultCommon { -public: - // prevent constructor by default - UnlinkIOSDeviceIDResult& operator=(UnlinkIOSDeviceIDResult const&); - UnlinkIOSDeviceIDResult(UnlinkIOSDeviceIDResult const&); - UnlinkIOSDeviceIDResult(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/external/playfab/client_models/UnlinkKongregateAccountRequest.h b/src/mc/external/playfab/client_models/UnlinkKongregateAccountRequest.h index 29e58cfee2..8d7e20c240 100644 --- a/src/mc/external/playfab/client_models/UnlinkKongregateAccountRequest.h +++ b/src/mc/external/playfab/client_models/UnlinkKongregateAccountRequest.h @@ -13,12 +13,6 @@ namespace Json { class Value; } namespace PlayFab::ClientModels { struct UnlinkKongregateAccountRequest : public ::PlayFab::PlayFabRequestCommon { -public: - // prevent constructor by default - UnlinkKongregateAccountRequest& operator=(UnlinkKongregateAccountRequest const&); - UnlinkKongregateAccountRequest(UnlinkKongregateAccountRequest const&); - UnlinkKongregateAccountRequest(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/external/playfab/client_models/UnlinkKongregateAccountResult.h b/src/mc/external/playfab/client_models/UnlinkKongregateAccountResult.h index ef6cab048e..0c348c0742 100644 --- a/src/mc/external/playfab/client_models/UnlinkKongregateAccountResult.h +++ b/src/mc/external/playfab/client_models/UnlinkKongregateAccountResult.h @@ -13,12 +13,6 @@ namespace Json { class Value; } namespace PlayFab::ClientModels { struct UnlinkKongregateAccountResult : public ::PlayFab::PlayFabResultCommon { -public: - // prevent constructor by default - UnlinkKongregateAccountResult& operator=(UnlinkKongregateAccountResult const&); - UnlinkKongregateAccountResult(UnlinkKongregateAccountResult const&); - UnlinkKongregateAccountResult(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/external/playfab/client_models/UnlinkNintendoSwitchDeviceIdResult.h b/src/mc/external/playfab/client_models/UnlinkNintendoSwitchDeviceIdResult.h index 74ee0df3aa..07979d3336 100644 --- a/src/mc/external/playfab/client_models/UnlinkNintendoSwitchDeviceIdResult.h +++ b/src/mc/external/playfab/client_models/UnlinkNintendoSwitchDeviceIdResult.h @@ -13,12 +13,6 @@ namespace Json { class Value; } namespace PlayFab::ClientModels { struct UnlinkNintendoSwitchDeviceIdResult : public ::PlayFab::PlayFabResultCommon { -public: - // prevent constructor by default - UnlinkNintendoSwitchDeviceIdResult& operator=(UnlinkNintendoSwitchDeviceIdResult const&); - UnlinkNintendoSwitchDeviceIdResult(UnlinkNintendoSwitchDeviceIdResult const&); - UnlinkNintendoSwitchDeviceIdResult(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/external/playfab/client_models/UnlinkPSNAccountRequest.h b/src/mc/external/playfab/client_models/UnlinkPSNAccountRequest.h index a6e6322f57..701c4193bb 100644 --- a/src/mc/external/playfab/client_models/UnlinkPSNAccountRequest.h +++ b/src/mc/external/playfab/client_models/UnlinkPSNAccountRequest.h @@ -13,12 +13,6 @@ namespace Json { class Value; } namespace PlayFab::ClientModels { struct UnlinkPSNAccountRequest : public ::PlayFab::PlayFabRequestCommon { -public: - // prevent constructor by default - UnlinkPSNAccountRequest& operator=(UnlinkPSNAccountRequest const&); - UnlinkPSNAccountRequest(UnlinkPSNAccountRequest const&); - UnlinkPSNAccountRequest(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/external/playfab/client_models/UnlinkPSNAccountResult.h b/src/mc/external/playfab/client_models/UnlinkPSNAccountResult.h index b19917fe6e..2c064dd742 100644 --- a/src/mc/external/playfab/client_models/UnlinkPSNAccountResult.h +++ b/src/mc/external/playfab/client_models/UnlinkPSNAccountResult.h @@ -13,12 +13,6 @@ namespace Json { class Value; } namespace PlayFab::ClientModels { struct UnlinkPSNAccountResult : public ::PlayFab::PlayFabResultCommon { -public: - // prevent constructor by default - UnlinkPSNAccountResult& operator=(UnlinkPSNAccountResult const&); - UnlinkPSNAccountResult(UnlinkPSNAccountResult const&); - UnlinkPSNAccountResult(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/external/playfab/client_models/UnlinkSteamAccountRequest.h b/src/mc/external/playfab/client_models/UnlinkSteamAccountRequest.h index 22ce3c8e6a..1926681556 100644 --- a/src/mc/external/playfab/client_models/UnlinkSteamAccountRequest.h +++ b/src/mc/external/playfab/client_models/UnlinkSteamAccountRequest.h @@ -13,12 +13,6 @@ namespace Json { class Value; } namespace PlayFab::ClientModels { struct UnlinkSteamAccountRequest : public ::PlayFab::PlayFabRequestCommon { -public: - // prevent constructor by default - UnlinkSteamAccountRequest& operator=(UnlinkSteamAccountRequest const&); - UnlinkSteamAccountRequest(UnlinkSteamAccountRequest const&); - UnlinkSteamAccountRequest(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/external/playfab/client_models/UnlinkSteamAccountResult.h b/src/mc/external/playfab/client_models/UnlinkSteamAccountResult.h index f00005c7c6..f3ed4bd393 100644 --- a/src/mc/external/playfab/client_models/UnlinkSteamAccountResult.h +++ b/src/mc/external/playfab/client_models/UnlinkSteamAccountResult.h @@ -13,12 +13,6 @@ namespace Json { class Value; } namespace PlayFab::ClientModels { struct UnlinkSteamAccountResult : public ::PlayFab::PlayFabResultCommon { -public: - // prevent constructor by default - UnlinkSteamAccountResult& operator=(UnlinkSteamAccountResult const&); - UnlinkSteamAccountResult(UnlinkSteamAccountResult const&); - UnlinkSteamAccountResult(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/external/playfab/client_models/UnlinkTwitchAccountRequest.h b/src/mc/external/playfab/client_models/UnlinkTwitchAccountRequest.h index 6b693b8ebe..ac1186b60c 100644 --- a/src/mc/external/playfab/client_models/UnlinkTwitchAccountRequest.h +++ b/src/mc/external/playfab/client_models/UnlinkTwitchAccountRequest.h @@ -13,12 +13,6 @@ namespace Json { class Value; } namespace PlayFab::ClientModels { struct UnlinkTwitchAccountRequest : public ::PlayFab::PlayFabRequestCommon { -public: - // prevent constructor by default - UnlinkTwitchAccountRequest& operator=(UnlinkTwitchAccountRequest const&); - UnlinkTwitchAccountRequest(UnlinkTwitchAccountRequest const&); - UnlinkTwitchAccountRequest(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/external/playfab/client_models/UnlinkTwitchAccountResult.h b/src/mc/external/playfab/client_models/UnlinkTwitchAccountResult.h index 5f45622977..49b6fb8d20 100644 --- a/src/mc/external/playfab/client_models/UnlinkTwitchAccountResult.h +++ b/src/mc/external/playfab/client_models/UnlinkTwitchAccountResult.h @@ -13,12 +13,6 @@ namespace Json { class Value; } namespace PlayFab::ClientModels { struct UnlinkTwitchAccountResult : public ::PlayFab::PlayFabResultCommon { -public: - // prevent constructor by default - UnlinkTwitchAccountResult& operator=(UnlinkTwitchAccountResult const&); - UnlinkTwitchAccountResult(UnlinkTwitchAccountResult const&); - UnlinkTwitchAccountResult(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/external/playfab/client_models/UnlinkWindowsHelloAccountResponse.h b/src/mc/external/playfab/client_models/UnlinkWindowsHelloAccountResponse.h index 4ab9cb4583..d5c03cc628 100644 --- a/src/mc/external/playfab/client_models/UnlinkWindowsHelloAccountResponse.h +++ b/src/mc/external/playfab/client_models/UnlinkWindowsHelloAccountResponse.h @@ -13,12 +13,6 @@ namespace Json { class Value; } namespace PlayFab::ClientModels { struct UnlinkWindowsHelloAccountResponse : public ::PlayFab::PlayFabResultCommon { -public: - // prevent constructor by default - UnlinkWindowsHelloAccountResponse& operator=(UnlinkWindowsHelloAccountResponse const&); - UnlinkWindowsHelloAccountResponse(UnlinkWindowsHelloAccountResponse const&); - UnlinkWindowsHelloAccountResponse(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/external/playfab/client_models/UnlinkXboxAccountResult.h b/src/mc/external/playfab/client_models/UnlinkXboxAccountResult.h index d704d32eb0..ad28c5452c 100644 --- a/src/mc/external/playfab/client_models/UnlinkXboxAccountResult.h +++ b/src/mc/external/playfab/client_models/UnlinkXboxAccountResult.h @@ -13,12 +13,6 @@ namespace Json { class Value; } namespace PlayFab::ClientModels { struct UnlinkXboxAccountResult : public ::PlayFab::PlayFabResultCommon { -public: - // prevent constructor by default - UnlinkXboxAccountResult& operator=(UnlinkXboxAccountResult const&); - UnlinkXboxAccountResult(UnlinkXboxAccountResult const&); - UnlinkXboxAccountResult(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/external/playfab/client_models/UpdateCharacterStatisticsResult.h b/src/mc/external/playfab/client_models/UpdateCharacterStatisticsResult.h index a69669a501..43810a2fac 100644 --- a/src/mc/external/playfab/client_models/UpdateCharacterStatisticsResult.h +++ b/src/mc/external/playfab/client_models/UpdateCharacterStatisticsResult.h @@ -13,12 +13,6 @@ namespace Json { class Value; } namespace PlayFab::ClientModels { struct UpdateCharacterStatisticsResult : public ::PlayFab::PlayFabResultCommon { -public: - // prevent constructor by default - UpdateCharacterStatisticsResult& operator=(UpdateCharacterStatisticsResult const&); - UpdateCharacterStatisticsResult(UpdateCharacterStatisticsResult const&); - UpdateCharacterStatisticsResult(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/external/playfab/client_models/UpdatePlayerStatisticsResult.h b/src/mc/external/playfab/client_models/UpdatePlayerStatisticsResult.h index 9c04ac0419..cdf1d7e978 100644 --- a/src/mc/external/playfab/client_models/UpdatePlayerStatisticsResult.h +++ b/src/mc/external/playfab/client_models/UpdatePlayerStatisticsResult.h @@ -13,12 +13,6 @@ namespace Json { class Value; } namespace PlayFab::ClientModels { struct UpdatePlayerStatisticsResult : public ::PlayFab::PlayFabResultCommon { -public: - // prevent constructor by default - UpdatePlayerStatisticsResult& operator=(UpdatePlayerStatisticsResult const&); - UpdatePlayerStatisticsResult(UpdatePlayerStatisticsResult const&); - UpdatePlayerStatisticsResult(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/external/playfab/client_models/UpdateSharedGroupDataResult.h b/src/mc/external/playfab/client_models/UpdateSharedGroupDataResult.h index 5428761cbe..42f79f4998 100644 --- a/src/mc/external/playfab/client_models/UpdateSharedGroupDataResult.h +++ b/src/mc/external/playfab/client_models/UpdateSharedGroupDataResult.h @@ -13,12 +13,6 @@ namespace Json { class Value; } namespace PlayFab::ClientModels { struct UpdateSharedGroupDataResult : public ::PlayFab::PlayFabResultCommon { -public: - // prevent constructor by default - UpdateSharedGroupDataResult& operator=(UpdateSharedGroupDataResult const&); - UpdateSharedGroupDataResult(UpdateSharedGroupDataResult const&); - UpdateSharedGroupDataResult(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/external/playfab/client_models/ValidateAmazonReceiptResult.h b/src/mc/external/playfab/client_models/ValidateAmazonReceiptResult.h index 9653f9fdae..33d5dc3158 100644 --- a/src/mc/external/playfab/client_models/ValidateAmazonReceiptResult.h +++ b/src/mc/external/playfab/client_models/ValidateAmazonReceiptResult.h @@ -13,12 +13,6 @@ namespace Json { class Value; } namespace PlayFab::ClientModels { struct ValidateAmazonReceiptResult : public ::PlayFab::PlayFabResultCommon { -public: - // prevent constructor by default - ValidateAmazonReceiptResult& operator=(ValidateAmazonReceiptResult const&); - ValidateAmazonReceiptResult(ValidateAmazonReceiptResult const&); - ValidateAmazonReceiptResult(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/external/playfab/client_models/ValidateGooglePlayPurchaseResult.h b/src/mc/external/playfab/client_models/ValidateGooglePlayPurchaseResult.h index 901002097e..461a81a76c 100644 --- a/src/mc/external/playfab/client_models/ValidateGooglePlayPurchaseResult.h +++ b/src/mc/external/playfab/client_models/ValidateGooglePlayPurchaseResult.h @@ -13,12 +13,6 @@ namespace Json { class Value; } namespace PlayFab::ClientModels { struct ValidateGooglePlayPurchaseResult : public ::PlayFab::PlayFabResultCommon { -public: - // prevent constructor by default - ValidateGooglePlayPurchaseResult& operator=(ValidateGooglePlayPurchaseResult const&); - ValidateGooglePlayPurchaseResult(ValidateGooglePlayPurchaseResult const&); - ValidateGooglePlayPurchaseResult(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/external/playfab/client_models/ValidateIOSReceiptResult.h b/src/mc/external/playfab/client_models/ValidateIOSReceiptResult.h index 2b6b94a0f7..ab20f0c60d 100644 --- a/src/mc/external/playfab/client_models/ValidateIOSReceiptResult.h +++ b/src/mc/external/playfab/client_models/ValidateIOSReceiptResult.h @@ -13,12 +13,6 @@ namespace Json { class Value; } namespace PlayFab::ClientModels { struct ValidateIOSReceiptResult : public ::PlayFab::PlayFabResultCommon { -public: - // prevent constructor by default - ValidateIOSReceiptResult& operator=(ValidateIOSReceiptResult const&); - ValidateIOSReceiptResult(ValidateIOSReceiptResult const&); - ValidateIOSReceiptResult(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/external/playfab/client_models/ValidateWindowsReceiptResult.h b/src/mc/external/playfab/client_models/ValidateWindowsReceiptResult.h index b3aff1168a..d5d9567aea 100644 --- a/src/mc/external/playfab/client_models/ValidateWindowsReceiptResult.h +++ b/src/mc/external/playfab/client_models/ValidateWindowsReceiptResult.h @@ -13,12 +13,6 @@ namespace Json { class Value; } namespace PlayFab::ClientModels { struct ValidateWindowsReceiptResult : public ::PlayFab::PlayFabResultCommon { -public: - // prevent constructor by default - ValidateWindowsReceiptResult& operator=(ValidateWindowsReceiptResult const&); - ValidateWindowsReceiptResult(ValidateWindowsReceiptResult const&); - ValidateWindowsReceiptResult(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/external/playfab/events_models/TelemetryIngestionConfigRequest.h b/src/mc/external/playfab/events_models/TelemetryIngestionConfigRequest.h index 96ea010e00..edc66e6217 100644 --- a/src/mc/external/playfab/events_models/TelemetryIngestionConfigRequest.h +++ b/src/mc/external/playfab/events_models/TelemetryIngestionConfigRequest.h @@ -13,12 +13,6 @@ namespace Json { class Value; } namespace PlayFab::EventsModels { struct TelemetryIngestionConfigRequest : public ::PlayFab::PlayFabRequestCommon { -public: - // prevent constructor by default - TelemetryIngestionConfigRequest& operator=(TelemetryIngestionConfigRequest const&); - TelemetryIngestionConfigRequest(TelemetryIngestionConfigRequest const&); - TelemetryIngestionConfigRequest(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/external/render_dragon/externals/astc_codec/base/InplaceT.h b/src/mc/external/render_dragon/externals/astc_codec/base/InplaceT.h index 46b9195eba..359d04d354 100644 --- a/src/mc/external/render_dragon/externals/astc_codec/base/InplaceT.h +++ b/src/mc/external/render_dragon/externals/astc_codec/base/InplaceT.h @@ -4,12 +4,6 @@ namespace astc_codec::base { -struct InplaceT { -public: - // prevent constructor by default - InplaceT& operator=(InplaceT const&); - InplaceT(InplaceT const&); - InplaceT(); -}; +struct InplaceT {}; } // namespace astc_codec::base diff --git a/src/mc/external/render_dragon/externals/astc_codec/base/NulloptT.h b/src/mc/external/render_dragon/externals/astc_codec/base/NulloptT.h index 2fb2f62e02..6057ee0c4f 100644 --- a/src/mc/external/render_dragon/externals/astc_codec/base/NulloptT.h +++ b/src/mc/external/render_dragon/externals/astc_codec/base/NulloptT.h @@ -4,12 +4,6 @@ namespace astc_codec::base { -struct NulloptT { -public: - // prevent constructor by default - NulloptT& operator=(NulloptT const&); - NulloptT(NulloptT const&); - NulloptT(); -}; +struct NulloptT {}; } // namespace astc_codec::base diff --git a/src/mc/external/render_dragon/externals/astc_codec/decoder/IntegerSequenceDecoder.h b/src/mc/external/render_dragon/externals/astc_codec/decoder/IntegerSequenceDecoder.h index 1f54aee6c2..84dd89644c 100644 --- a/src/mc/external/render_dragon/externals/astc_codec/decoder/IntegerSequenceDecoder.h +++ b/src/mc/external/render_dragon/externals/astc_codec/decoder/IntegerSequenceDecoder.h @@ -7,12 +7,6 @@ namespace astc_codec { -class IntegerSequenceDecoder : public ::astc_codec::IntegerSequenceCodec { -public: - // prevent constructor by default - IntegerSequenceDecoder& operator=(IntegerSequenceDecoder const&); - IntegerSequenceDecoder(IntegerSequenceDecoder const&); - IntegerSequenceDecoder(); -}; +class IntegerSequenceDecoder : public ::astc_codec::IntegerSequenceCodec {}; } // namespace astc_codec diff --git a/src/mc/external/render_dragon/frame_renderer/CommandContext.h b/src/mc/external/render_dragon/frame_renderer/CommandContext.h index f1215fbc3f..2f69dc6a83 100644 --- a/src/mc/external/render_dragon/frame_renderer/CommandContext.h +++ b/src/mc/external/render_dragon/frame_renderer/CommandContext.h @@ -4,12 +4,6 @@ namespace dragon::framerenderer { -class CommandContext { -public: - // prevent constructor by default - CommandContext& operator=(CommandContext const&); - CommandContext(CommandContext const&); - CommandContext(); -}; +class CommandContext {}; } // namespace dragon::framerenderer diff --git a/src/mc/external/render_dragon/frame_renderer/RenderContext.h b/src/mc/external/render_dragon/frame_renderer/RenderContext.h index 3c74ba9036..859983a275 100644 --- a/src/mc/external/render_dragon/frame_renderer/RenderContext.h +++ b/src/mc/external/render_dragon/frame_renderer/RenderContext.h @@ -10,12 +10,6 @@ namespace dragon::framerenderer { class CommandContext; } namespace dragon::framerenderer { -class RenderContext { -public: - // prevent constructor by default - RenderContext& operator=(RenderContext const&); - RenderContext(RenderContext const&); - RenderContext(); -}; +class RenderContext {}; } // namespace dragon::framerenderer diff --git a/src/mc/external/render_dragon/resources/ImageDescription.h b/src/mc/external/render_dragon/resources/ImageDescription.h index c464ec22a6..a6af6b2009 100644 --- a/src/mc/external/render_dragon/resources/ImageDescription.h +++ b/src/mc/external/render_dragon/resources/ImageDescription.h @@ -7,12 +7,6 @@ namespace dragon { -struct ImageDescription : public ::cg::ImageDescription { -public: - // prevent constructor by default - ImageDescription& operator=(ImageDescription const&); - ImageDescription(ImageDescription const&); - ImageDescription(); -}; +struct ImageDescription : public ::cg::ImageDescription {}; } // namespace dragon diff --git a/src/mc/external/render_dragon/resources/ImageDescriptionIdentifier.h b/src/mc/external/render_dragon/resources/ImageDescriptionIdentifier.h index a3bf20d699..9571ee075c 100644 --- a/src/mc/external/render_dragon/resources/ImageDescriptionIdentifier.h +++ b/src/mc/external/render_dragon/resources/ImageDescriptionIdentifier.h @@ -4,12 +4,6 @@ namespace dragon { -struct ImageDescriptionIdentifier { -public: - // prevent constructor by default - ImageDescriptionIdentifier& operator=(ImageDescriptionIdentifier const&); - ImageDescriptionIdentifier(ImageDescriptionIdentifier const&); - ImageDescriptionIdentifier(); -}; +struct ImageDescriptionIdentifier {}; } // namespace dragon diff --git a/src/mc/external/render_dragon/resources/TextureUsage.h b/src/mc/external/render_dragon/resources/TextureUsage.h index 8e47b780a7..27c77e4cd6 100644 --- a/src/mc/external/render_dragon/resources/TextureUsage.h +++ b/src/mc/external/render_dragon/resources/TextureUsage.h @@ -4,12 +4,6 @@ namespace dragon { -class TextureUsage : public ::std::bitset<4> { -public: - // prevent constructor by default - TextureUsage& operator=(TextureUsage const&); - TextureUsage(TextureUsage const&); - TextureUsage(); -}; +class TextureUsage : public ::std::bitset<4> {}; } // namespace dragon diff --git a/src/mc/external/render_dragon/tasks/GraphicsTasks.h b/src/mc/external/render_dragon/tasks/GraphicsTasks.h index 7a7a1188e7..73c48f58a2 100644 --- a/src/mc/external/render_dragon/tasks/GraphicsTasks.h +++ b/src/mc/external/render_dragon/tasks/GraphicsTasks.h @@ -49,13 +49,7 @@ class GraphicsTasks { InitBgfx(); }; - struct InitBegin : public ::dragon::tasks::GraphicsTasks::InitBgfx { - public: - // prevent constructor by default - InitBegin& operator=(InitBegin const&); - InitBegin(InitBegin const&); - InitBegin(); - }; + struct InitBegin : public ::dragon::tasks::GraphicsTasks::InitBgfx {}; struct InitPending : public ::dragon::tasks::GraphicsTasks::InitBgfx { public: @@ -72,13 +66,7 @@ class GraphicsTasks { InitPending(); }; - struct InitFinalize { - public: - // prevent constructor by default - InitFinalize& operator=(InitFinalize const&); - InitFinalize(InitFinalize const&); - InitFinalize(); - }; + struct InitFinalize {}; struct InitEnd { public: @@ -99,13 +87,7 @@ class GraphicsTasks { ::dragon::tasks::GraphicsTasks::InitBegin, ::dragon::tasks::GraphicsTasks::InitPending, ::dragon::tasks::GraphicsTasks::InitFinalize, - ::dragon::tasks::GraphicsTasks::InitEnd> { - public: - // prevent constructor by default - InitializationState& operator=(InitializationState const&); - InitializationState(InitializationState const&); - InitializationState(); - }; + ::dragon::tasks::GraphicsTasks::InitEnd> {}; public: // member variables diff --git a/src/mc/external/rtc/AsyncSSLSocket.h b/src/mc/external/rtc/AsyncSSLSocket.h index 2d6c2ca8b8..eea03cee8b 100644 --- a/src/mc/external/rtc/AsyncSSLSocket.h +++ b/src/mc/external/rtc/AsyncSSLSocket.h @@ -10,12 +10,6 @@ namespace rtc { class Socket; } namespace rtc { class AsyncSSLSocket { -public: - // prevent constructor by default - AsyncSSLSocket& operator=(AsyncSSLSocket const&); - AsyncSSLSocket(AsyncSSLSocket const&); - AsyncSSLSocket(); - public: // member functions // NOLINTBEGIN diff --git a/src/mc/external/rtc/AsyncTCPSocket.h b/src/mc/external/rtc/AsyncTCPSocket.h index f3a28d5a72..2fd6ffb9e5 100644 --- a/src/mc/external/rtc/AsyncTCPSocket.h +++ b/src/mc/external/rtc/AsyncTCPSocket.h @@ -14,12 +14,6 @@ namespace rtc { struct PacketOptions; } namespace rtc { class AsyncTCPSocket : public ::rtc::AsyncTCPSocketBase { -public: - // prevent constructor by default - AsyncTCPSocket& operator=(AsyncTCPSocket const&); - AsyncTCPSocket(AsyncTCPSocket const&); - AsyncTCPSocket(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/external/rtc/Base64.h b/src/mc/external/rtc/Base64.h index f0556bb11b..110789439a 100644 --- a/src/mc/external/rtc/Base64.h +++ b/src/mc/external/rtc/Base64.h @@ -5,12 +5,6 @@ namespace rtc { struct Base64 { -public: - // prevent constructor by default - Base64& operator=(Base64 const&); - Base64(Base64 const&); - Base64(); - public: // static functions // NOLINTBEGIN diff --git a/src/mc/external/rtc/BitBufferWriter.h b/src/mc/external/rtc/BitBufferWriter.h index 3b6a7f1266..eb5c787661 100644 --- a/src/mc/external/rtc/BitBufferWriter.h +++ b/src/mc/external/rtc/BitBufferWriter.h @@ -5,12 +5,6 @@ namespace rtc { struct BitBufferWriter { -public: - // prevent constructor by default - BitBufferWriter& operator=(BitBufferWriter const&); - BitBufferWriter(BitBufferWriter const&); - BitBufferWriter(); - public: // member functions // NOLINTBEGIN diff --git a/src/mc/external/rtc/BufferQueue.h b/src/mc/external/rtc/BufferQueue.h index 0b3dd85071..ca8729174e 100644 --- a/src/mc/external/rtc/BufferQueue.h +++ b/src/mc/external/rtc/BufferQueue.h @@ -5,12 +5,6 @@ namespace rtc { struct BufferQueue { -public: - // prevent constructor by default - BufferQueue& operator=(BufferQueue const&); - BufferQueue(BufferQueue const&); - BufferQueue(); - public: // member functions // NOLINTBEGIN diff --git a/src/mc/external/rtc/BufferT.h b/src/mc/external/rtc/BufferT.h index a3933d0023..689d100b19 100644 --- a/src/mc/external/rtc/BufferT.h +++ b/src/mc/external/rtc/BufferT.h @@ -5,12 +5,6 @@ namespace rtc { template -class BufferT { -public: - // prevent constructor by default - BufferT& operator=(BufferT const&); - BufferT(BufferT const&); - BufferT(); -}; +class BufferT {}; } // namespace rtc diff --git a/src/mc/external/rtc/BufferedReadAdapter.h b/src/mc/external/rtc/BufferedReadAdapter.h index c67a6c9693..3b40d03f6d 100644 --- a/src/mc/external/rtc/BufferedReadAdapter.h +++ b/src/mc/external/rtc/BufferedReadAdapter.h @@ -10,12 +10,6 @@ namespace rtc { class Socket; } namespace rtc { class BufferedReadAdapter { -public: - // prevent constructor by default - BufferedReadAdapter& operator=(BufferedReadAdapter const&); - BufferedReadAdapter(BufferedReadAdapter const&); - BufferedReadAdapter(); - public: // member functions // NOLINTBEGIN diff --git a/src/mc/external/rtc/ByteBufferWriter.h b/src/mc/external/rtc/ByteBufferWriter.h index a53578e077..1bb8cacf0c 100644 --- a/src/mc/external/rtc/ByteBufferWriter.h +++ b/src/mc/external/rtc/ByteBufferWriter.h @@ -9,11 +9,6 @@ namespace rtc { class ByteBufferWriter : public ::rtc::ByteBufferWriterT<::rtc::BufferT> { -public: - // prevent constructor by default - ByteBufferWriter& operator=(ByteBufferWriter const&); - ByteBufferWriter(ByteBufferWriter const&); - public: // member functions // NOLINTBEGIN diff --git a/src/mc/external/rtc/ByteBufferWriterT.h b/src/mc/external/rtc/ByteBufferWriterT.h index e383e948a3..27bbd2a5e4 100644 --- a/src/mc/external/rtc/ByteBufferWriterT.h +++ b/src/mc/external/rtc/ByteBufferWriterT.h @@ -5,12 +5,6 @@ namespace rtc { template -class ByteBufferWriterT { -public: - // prevent constructor by default - ByteBufferWriterT& operator=(ByteBufferWriterT const&); - ByteBufferWriterT(ByteBufferWriterT const&); - ByteBufferWriterT(); -}; +class ByteBufferWriterT {}; } // namespace rtc diff --git a/src/mc/external/rtc/ClockInterface.h b/src/mc/external/rtc/ClockInterface.h index b2ad070828..76ac6b9d8b 100644 --- a/src/mc/external/rtc/ClockInterface.h +++ b/src/mc/external/rtc/ClockInterface.h @@ -5,12 +5,6 @@ namespace rtc { class ClockInterface { -public: - // prevent constructor by default - ClockInterface& operator=(ClockInterface const&); - ClockInterface(ClockInterface const&); - ClockInterface(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/external/rtc/CritScope.h b/src/mc/external/rtc/CritScope.h index ad1889bb4c..3341e61c2f 100644 --- a/src/mc/external/rtc/CritScope.h +++ b/src/mc/external/rtc/CritScope.h @@ -10,12 +10,6 @@ namespace rtc { class RecursiveCriticalSection; } namespace rtc { struct CritScope { -public: - // prevent constructor by default - CritScope& operator=(CritScope const&); - CritScope(CritScope const&); - CritScope(); - public: // member functions // NOLINTBEGIN diff --git a/src/mc/external/rtc/DefaultLocalAddressProvider.h b/src/mc/external/rtc/DefaultLocalAddressProvider.h index bea893efa4..5b4c5409c1 100644 --- a/src/mc/external/rtc/DefaultLocalAddressProvider.h +++ b/src/mc/external/rtc/DefaultLocalAddressProvider.h @@ -10,12 +10,6 @@ namespace rtc { class IPAddress; } namespace rtc { class DefaultLocalAddressProvider { -public: - // prevent constructor by default - DefaultLocalAddressProvider& operator=(DefaultLocalAddressProvider const&); - DefaultLocalAddressProvider(DefaultLocalAddressProvider const&); - DefaultLocalAddressProvider(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/external/rtc/Dispatcher.h b/src/mc/external/rtc/Dispatcher.h index 496c671dce..96a8f994df 100644 --- a/src/mc/external/rtc/Dispatcher.h +++ b/src/mc/external/rtc/Dispatcher.h @@ -5,12 +5,6 @@ namespace rtc { class Dispatcher { -public: - // prevent constructor by default - Dispatcher& operator=(Dispatcher const&); - Dispatcher(Dispatcher const&); - Dispatcher(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/external/rtc/EqOp.h b/src/mc/external/rtc/EqOp.h index b8904acae2..57fcf2022a 100644 --- a/src/mc/external/rtc/EqOp.h +++ b/src/mc/external/rtc/EqOp.h @@ -4,12 +4,6 @@ namespace rtc::safe_cmp_impl { -struct EqOp { -public: - // prevent constructor by default - EqOp& operator=(EqOp const&); - EqOp(EqOp const&); - EqOp(); -}; +struct EqOp {}; } // namespace rtc::safe_cmp_impl diff --git a/src/mc/external/rtc/ExpFilter.h b/src/mc/external/rtc/ExpFilter.h index da7a88022b..90f38a7669 100644 --- a/src/mc/external/rtc/ExpFilter.h +++ b/src/mc/external/rtc/ExpFilter.h @@ -5,12 +5,6 @@ namespace rtc { struct ExpFilter { -public: - // prevent constructor by default - ExpFilter& operator=(ExpFilter const&); - ExpFilter(ExpFilter const&); - ExpFilter(); - public: // member functions // NOLINTBEGIN diff --git a/src/mc/external/rtc/FinalRefCountedObject.h b/src/mc/external/rtc/FinalRefCountedObject.h index 74d3479eda..4d23eb0e87 100644 --- a/src/mc/external/rtc/FinalRefCountedObject.h +++ b/src/mc/external/rtc/FinalRefCountedObject.h @@ -5,12 +5,6 @@ namespace rtc { template -class FinalRefCountedObject { -public: - // prevent constructor by default - FinalRefCountedObject& operator=(FinalRefCountedObject const&); - FinalRefCountedObject(FinalRefCountedObject const&); - FinalRefCountedObject(); -}; +class FinalRefCountedObject {}; } // namespace rtc diff --git a/src/mc/external/rtc/FunctionView.h b/src/mc/external/rtc/FunctionView.h index 8ba1ad8e32..21c2d9cd47 100644 --- a/src/mc/external/rtc/FunctionView.h +++ b/src/mc/external/rtc/FunctionView.h @@ -5,12 +5,6 @@ namespace rtc { template -class FunctionView { -public: - // prevent constructor by default - FunctionView& operator=(FunctionView const&); - FunctionView(FunctionView const&); - FunctionView(); -}; +class FunctionView {}; } // namespace rtc diff --git a/src/mc/external/rtc/GeOp.h b/src/mc/external/rtc/GeOp.h index 358f8c2544..0baafa9d13 100644 --- a/src/mc/external/rtc/GeOp.h +++ b/src/mc/external/rtc/GeOp.h @@ -4,12 +4,6 @@ namespace rtc::safe_cmp_impl { -struct GeOp { -public: - // prevent constructor by default - GeOp& operator=(GeOp const&); - GeOp(GeOp const&); - GeOp(); -}; +struct GeOp {}; } // namespace rtc::safe_cmp_impl diff --git a/src/mc/external/rtc/GtOp.h b/src/mc/external/rtc/GtOp.h index ae16f9a2ba..5847d24a39 100644 --- a/src/mc/external/rtc/GtOp.h +++ b/src/mc/external/rtc/GtOp.h @@ -4,12 +4,6 @@ namespace rtc::safe_cmp_impl { -struct GtOp { -public: - // prevent constructor by default - GtOp& operator=(GtOp const&); - GtOp(GtOp const&); - GtOp(); -}; +struct GtOp {}; } // namespace rtc::safe_cmp_impl diff --git a/src/mc/external/rtc/LeOp.h b/src/mc/external/rtc/LeOp.h index bd67ab8ce3..87c6bee573 100644 --- a/src/mc/external/rtc/LeOp.h +++ b/src/mc/external/rtc/LeOp.h @@ -4,12 +4,6 @@ namespace rtc::safe_cmp_impl { -struct LeOp { -public: - // prevent constructor by default - LeOp& operator=(LeOp const&); - LeOp(LeOp const&); - LeOp(); -}; +struct LeOp {}; } // namespace rtc::safe_cmp_impl diff --git a/src/mc/external/rtc/LtOp.h b/src/mc/external/rtc/LtOp.h index 02e4818c77..211e7f5929 100644 --- a/src/mc/external/rtc/LtOp.h +++ b/src/mc/external/rtc/LtOp.h @@ -4,12 +4,6 @@ namespace rtc::safe_cmp_impl { -struct LtOp { -public: - // prevent constructor by default - LtOp& operator=(LtOp const&); - LtOp(LtOp const&); - LtOp(); -}; +struct LtOp {}; } // namespace rtc::safe_cmp_impl diff --git a/src/mc/external/rtc/MdnsResponderProvider.h b/src/mc/external/rtc/MdnsResponderProvider.h index 4dc218afdf..e593fe1c91 100644 --- a/src/mc/external/rtc/MdnsResponderProvider.h +++ b/src/mc/external/rtc/MdnsResponderProvider.h @@ -10,12 +10,6 @@ namespace webrtc { class MdnsResponderInterface; } namespace rtc { class MdnsResponderProvider { -public: - // prevent constructor by default - MdnsResponderProvider& operator=(MdnsResponderProvider const&); - MdnsResponderProvider(MdnsResponderProvider const&); - MdnsResponderProvider(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/external/rtc/MessageDigest.h b/src/mc/external/rtc/MessageDigest.h index 15493aedb8..e8525f3a28 100644 --- a/src/mc/external/rtc/MessageDigest.h +++ b/src/mc/external/rtc/MessageDigest.h @@ -4,12 +4,6 @@ namespace rtc { -class MessageDigest { -public: - // prevent constructor by default - MessageDigest& operator=(MessageDigest const&); - MessageDigest(MessageDigest const&); - MessageDigest(); -}; +class MessageDigest {}; } // namespace rtc diff --git a/src/mc/external/rtc/MessageDigestFactory.h b/src/mc/external/rtc/MessageDigestFactory.h index b83dc708db..28bcfda41d 100644 --- a/src/mc/external/rtc/MessageDigestFactory.h +++ b/src/mc/external/rtc/MessageDigestFactory.h @@ -10,12 +10,6 @@ namespace rtc { class MessageDigest; } namespace rtc { struct MessageDigestFactory { -public: - // prevent constructor by default - MessageDigestFactory& operator=(MessageDigestFactory const&); - MessageDigestFactory(MessageDigestFactory const&); - MessageDigestFactory(); - public: // static functions // NOLINTBEGIN diff --git a/src/mc/external/rtc/NetworkBinderInterface.h b/src/mc/external/rtc/NetworkBinderInterface.h index 94e98e4fe8..1a1fa75271 100644 --- a/src/mc/external/rtc/NetworkBinderInterface.h +++ b/src/mc/external/rtc/NetworkBinderInterface.h @@ -13,12 +13,6 @@ namespace rtc { class IPAddress; } namespace rtc { class NetworkBinderInterface { -public: - // prevent constructor by default - NetworkBinderInterface& operator=(NetworkBinderInterface const&); - NetworkBinderInterface(NetworkBinderInterface const&); - NetworkBinderInterface(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/external/rtc/NetworkMonitorFactory.h b/src/mc/external/rtc/NetworkMonitorFactory.h index 95adb63b3f..431b2b7ae5 100644 --- a/src/mc/external/rtc/NetworkMonitorFactory.h +++ b/src/mc/external/rtc/NetworkMonitorFactory.h @@ -11,12 +11,6 @@ namespace webrtc { class FieldTrialsView; } namespace rtc { class NetworkMonitorFactory { -public: - // prevent constructor by default - NetworkMonitorFactory& operator=(NetworkMonitorFactory const&); - NetworkMonitorFactory(NetworkMonitorFactory const&); - NetworkMonitorFactory(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/external/rtc/OperationsChain.h b/src/mc/external/rtc/OperationsChain.h index f3666ef0ae..d2edc99878 100644 --- a/src/mc/external/rtc/OperationsChain.h +++ b/src/mc/external/rtc/OperationsChain.h @@ -16,12 +16,6 @@ class OperationsChain { // OperationsChain inner types define class CallbackHandle { - public: - // prevent constructor by default - CallbackHandle& operator=(CallbackHandle const&); - CallbackHandle(CallbackHandle const&); - CallbackHandle(); - public: // member functions // NOLINTBEGIN @@ -45,11 +39,6 @@ class OperationsChain { // NOLINTEND }; -public: - // prevent constructor by default - OperationsChain& operator=(OperationsChain const&); - OperationsChain(OperationsChain const&); - public: // member functions // NOLINTBEGIN diff --git a/src/mc/external/rtc/PacketSocketFactory.h b/src/mc/external/rtc/PacketSocketFactory.h index 85ab1d1aab..2ac121ad3a 100644 --- a/src/mc/external/rtc/PacketSocketFactory.h +++ b/src/mc/external/rtc/PacketSocketFactory.h @@ -26,12 +26,6 @@ class PacketSocketFactory { TlsInsecure = 1 << 3, }; -public: - // prevent constructor by default - PacketSocketFactory& operator=(PacketSocketFactory const&); - PacketSocketFactory(PacketSocketFactory const&); - PacketSocketFactory(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/external/rtc/PacketTransportInternal.h b/src/mc/external/rtc/PacketTransportInternal.h index 220c3dd177..41bd991885 100644 --- a/src/mc/external/rtc/PacketTransportInternal.h +++ b/src/mc/external/rtc/PacketTransportInternal.h @@ -13,11 +13,6 @@ namespace rtc { class ReceivedPacket; } namespace rtc { class PacketTransportInternal { -public: - // prevent constructor by default - PacketTransportInternal& operator=(PacketTransportInternal const&); - PacketTransportInternal(PacketTransportInternal const&); - public: // member functions // NOLINTBEGIN diff --git a/src/mc/external/rtc/PlatformThread.h b/src/mc/external/rtc/PlatformThread.h index 419f828c54..01d3e248d1 100644 --- a/src/mc/external/rtc/PlatformThread.h +++ b/src/mc/external/rtc/PlatformThread.h @@ -10,12 +10,6 @@ namespace rtc { struct ThreadAttributes; } namespace rtc { class PlatformThread { -public: - // prevent constructor by default - PlatformThread& operator=(PlatformThread const&); - PlatformThread(PlatformThread const&); - PlatformThread(); - public: // member functions // NOLINTBEGIN diff --git a/src/mc/external/rtc/ProxyInfo.h b/src/mc/external/rtc/ProxyInfo.h index 8f3cd8680e..9072a5def8 100644 --- a/src/mc/external/rtc/ProxyInfo.h +++ b/src/mc/external/rtc/ProxyInfo.h @@ -4,12 +4,6 @@ namespace rtc { -struct ProxyInfo { -public: - // prevent constructor by default - ProxyInfo& operator=(ProxyInfo const&); - ProxyInfo(ProxyInfo const&); - ProxyInfo(); -}; +struct ProxyInfo {}; } // namespace rtc diff --git a/src/mc/external/rtc/RTCCertificateGeneratorInterface.h b/src/mc/external/rtc/RTCCertificateGeneratorInterface.h index ce8f62e826..06202ac250 100644 --- a/src/mc/external/rtc/RTCCertificateGeneratorInterface.h +++ b/src/mc/external/rtc/RTCCertificateGeneratorInterface.h @@ -15,12 +15,6 @@ namespace rtc { class RTCCertificate; } namespace rtc { class RTCCertificateGeneratorInterface { -public: - // prevent constructor by default - RTCCertificateGeneratorInterface& operator=(RTCCertificateGeneratorInterface const&); - RTCCertificateGeneratorInterface(RTCCertificateGeneratorInterface const&); - RTCCertificateGeneratorInterface(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/external/rtc/RaceChecker.h b/src/mc/external/rtc/RaceChecker.h index f7318445b9..0e48561555 100644 --- a/src/mc/external/rtc/RaceChecker.h +++ b/src/mc/external/rtc/RaceChecker.h @@ -5,11 +5,6 @@ namespace rtc { class RaceChecker { -public: - // prevent constructor by default - RaceChecker& operator=(RaceChecker const&); - RaceChecker(RaceChecker const&); - public: // member functions // NOLINTBEGIN diff --git a/src/mc/external/rtc/RaceCheckerScope.h b/src/mc/external/rtc/RaceCheckerScope.h index c864f1eacf..8e4cc9b3be 100644 --- a/src/mc/external/rtc/RaceCheckerScope.h +++ b/src/mc/external/rtc/RaceCheckerScope.h @@ -10,12 +10,6 @@ namespace rtc { class RaceChecker; } namespace rtc::internal { struct RaceCheckerScope { -public: - // prevent constructor by default - RaceCheckerScope& operator=(RaceCheckerScope const&); - RaceCheckerScope(RaceCheckerScope const&); - RaceCheckerScope(); - public: // member functions // NOLINTBEGIN diff --git a/src/mc/external/rtc/RandomGenerator.h b/src/mc/external/rtc/RandomGenerator.h index e07c4bd352..848662b544 100644 --- a/src/mc/external/rtc/RandomGenerator.h +++ b/src/mc/external/rtc/RandomGenerator.h @@ -5,12 +5,6 @@ namespace rtc { class RandomGenerator { -public: - // prevent constructor by default - RandomGenerator& operator=(RandomGenerator const&); - RandomGenerator(RandomGenerator const&); - RandomGenerator(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/external/rtc/RefCountedNonVirtual.h b/src/mc/external/rtc/RefCountedNonVirtual.h index 7af0590fda..800df849ee 100644 --- a/src/mc/external/rtc/RefCountedNonVirtual.h +++ b/src/mc/external/rtc/RefCountedNonVirtual.h @@ -5,12 +5,6 @@ namespace rtc { template -class RefCountedNonVirtual { -public: - // prevent constructor by default - RefCountedNonVirtual& operator=(RefCountedNonVirtual const&); - RefCountedNonVirtual(RefCountedNonVirtual const&); - RefCountedNonVirtual(); -}; +class RefCountedNonVirtual {}; } // namespace rtc diff --git a/src/mc/external/rtc/RefCountedObject.h b/src/mc/external/rtc/RefCountedObject.h index 4271241158..87826ac74f 100644 --- a/src/mc/external/rtc/RefCountedObject.h +++ b/src/mc/external/rtc/RefCountedObject.h @@ -5,12 +5,6 @@ namespace rtc { template -class RefCountedObject { -public: - // prevent constructor by default - RefCountedObject& operator=(RefCountedObject const&); - RefCountedObject(RefCountedObject const&); - RefCountedObject(); -}; +class RefCountedObject {}; } // namespace rtc diff --git a/src/mc/external/rtc/SSLAdapter.h b/src/mc/external/rtc/SSLAdapter.h index efd3e703fb..3cf643c481 100644 --- a/src/mc/external/rtc/SSLAdapter.h +++ b/src/mc/external/rtc/SSLAdapter.h @@ -18,12 +18,6 @@ namespace rtc { class SocketAddress; } namespace rtc { class SSLAdapter : public ::rtc::AsyncSocketAdapter { -public: - // prevent constructor by default - SSLAdapter& operator=(SSLAdapter const&); - SSLAdapter(SSLAdapter const&); - SSLAdapter(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/external/rtc/SSLAdapterFactory.h b/src/mc/external/rtc/SSLAdapterFactory.h index ec6539a2d0..44d2de1a22 100644 --- a/src/mc/external/rtc/SSLAdapterFactory.h +++ b/src/mc/external/rtc/SSLAdapterFactory.h @@ -17,12 +17,6 @@ namespace rtc { class Socket; } namespace rtc { class SSLAdapterFactory { -public: - // prevent constructor by default - SSLAdapterFactory& operator=(SSLAdapterFactory const&); - SSLAdapterFactory(SSLAdapterFactory const&); - SSLAdapterFactory(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/external/rtc/SSLCertificate.h b/src/mc/external/rtc/SSLCertificate.h index 7ee61aebb3..d91cb9974e 100644 --- a/src/mc/external/rtc/SSLCertificate.h +++ b/src/mc/external/rtc/SSLCertificate.h @@ -13,12 +13,6 @@ namespace rtc { struct SSLCertificateStats; } namespace rtc { class SSLCertificate { -public: - // prevent constructor by default - SSLCertificate& operator=(SSLCertificate const&); - SSLCertificate(SSLCertificate const&); - SSLCertificate(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/external/rtc/SSLCertificateStats.h b/src/mc/external/rtc/SSLCertificateStats.h index 90c715623d..99002c9879 100644 --- a/src/mc/external/rtc/SSLCertificateStats.h +++ b/src/mc/external/rtc/SSLCertificateStats.h @@ -5,12 +5,6 @@ namespace rtc { struct SSLCertificateStats { -public: - // prevent constructor by default - SSLCertificateStats& operator=(SSLCertificateStats const&); - SSLCertificateStats(SSLCertificateStats const&); - SSLCertificateStats(); - public: // member functions // NOLINTBEGIN diff --git a/src/mc/external/rtc/SSLCertificateVerifier.h b/src/mc/external/rtc/SSLCertificateVerifier.h index f2de1a3c66..ece3f23af9 100644 --- a/src/mc/external/rtc/SSLCertificateVerifier.h +++ b/src/mc/external/rtc/SSLCertificateVerifier.h @@ -10,12 +10,6 @@ namespace rtc { class SSLCertificate; } namespace rtc { class SSLCertificateVerifier { -public: - // prevent constructor by default - SSLCertificateVerifier& operator=(SSLCertificateVerifier const&); - SSLCertificateVerifier(SSLCertificateVerifier const&); - SSLCertificateVerifier(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/external/rtc/SSLIdentity.h b/src/mc/external/rtc/SSLIdentity.h index bbfb34e8f4..8d82ebe8df 100644 --- a/src/mc/external/rtc/SSLIdentity.h +++ b/src/mc/external/rtc/SSLIdentity.h @@ -12,12 +12,6 @@ namespace rtc { class SSLCertificate; } namespace rtc { class SSLIdentity { -public: - // prevent constructor by default - SSLIdentity& operator=(SSLIdentity const&); - SSLIdentity(SSLIdentity const&); - SSLIdentity(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/external/rtc/ScopedAllowBaseSyncPrimitives.h b/src/mc/external/rtc/ScopedAllowBaseSyncPrimitives.h index 2ad2354dca..dce8a26b85 100644 --- a/src/mc/external/rtc/ScopedAllowBaseSyncPrimitives.h +++ b/src/mc/external/rtc/ScopedAllowBaseSyncPrimitives.h @@ -4,12 +4,6 @@ namespace rtc { -class ScopedAllowBaseSyncPrimitives { -public: - // prevent constructor by default - ScopedAllowBaseSyncPrimitives& operator=(ScopedAllowBaseSyncPrimitives const&); - ScopedAllowBaseSyncPrimitives(ScopedAllowBaseSyncPrimitives const&); - ScopedAllowBaseSyncPrimitives(); -}; +class ScopedAllowBaseSyncPrimitives {}; } // namespace rtc diff --git a/src/mc/external/rtc/ScopedAllowBaseSyncPrimitivesForTesting.h b/src/mc/external/rtc/ScopedAllowBaseSyncPrimitivesForTesting.h index b8377c94cb..0595e792db 100644 --- a/src/mc/external/rtc/ScopedAllowBaseSyncPrimitivesForTesting.h +++ b/src/mc/external/rtc/ScopedAllowBaseSyncPrimitivesForTesting.h @@ -4,12 +4,6 @@ namespace rtc { -class ScopedAllowBaseSyncPrimitivesForTesting { -public: - // prevent constructor by default - ScopedAllowBaseSyncPrimitivesForTesting& operator=(ScopedAllowBaseSyncPrimitivesForTesting const&); - ScopedAllowBaseSyncPrimitivesForTesting(ScopedAllowBaseSyncPrimitivesForTesting const&); - ScopedAllowBaseSyncPrimitivesForTesting(); -}; +class ScopedAllowBaseSyncPrimitivesForTesting {}; } // namespace rtc diff --git a/src/mc/external/rtc/ScopedYieldPolicy.h b/src/mc/external/rtc/ScopedYieldPolicy.h index 923488e6a5..fb870dfae9 100644 --- a/src/mc/external/rtc/ScopedYieldPolicy.h +++ b/src/mc/external/rtc/ScopedYieldPolicy.h @@ -5,12 +5,6 @@ namespace rtc { struct ScopedYieldPolicy { -public: - // prevent constructor by default - ScopedYieldPolicy& operator=(ScopedYieldPolicy const&); - ScopedYieldPolicy(ScopedYieldPolicy const&); - ScopedYieldPolicy(); - public: // static functions // NOLINTBEGIN diff --git a/src/mc/external/rtc/SocketDispatcher.h b/src/mc/external/rtc/SocketDispatcher.h index 8dc87c5916..1822e642e5 100644 --- a/src/mc/external/rtc/SocketDispatcher.h +++ b/src/mc/external/rtc/SocketDispatcher.h @@ -10,12 +10,6 @@ namespace rtc { class PhysicalSocketServer; } namespace rtc { class SocketDispatcher { -public: - // prevent constructor by default - SocketDispatcher& operator=(SocketDispatcher const&); - SocketDispatcher(SocketDispatcher const&); - SocketDispatcher(); - public: // member functions // NOLINTBEGIN diff --git a/src/mc/external/rtc/SocketFactory.h b/src/mc/external/rtc/SocketFactory.h index d8ce000afb..c523cf60cd 100644 --- a/src/mc/external/rtc/SocketFactory.h +++ b/src/mc/external/rtc/SocketFactory.h @@ -10,12 +10,6 @@ namespace rtc { class Socket; } namespace rtc { class SocketFactory { -public: - // prevent constructor by default - SocketFactory& operator=(SocketFactory const&); - SocketFactory(SocketFactory const&); - SocketFactory(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/external/rtc/ThreadAttributes.h b/src/mc/external/rtc/ThreadAttributes.h index 6c3519ee04..f1a0bf99e4 100644 --- a/src/mc/external/rtc/ThreadAttributes.h +++ b/src/mc/external/rtc/ThreadAttributes.h @@ -4,12 +4,6 @@ namespace rtc { -struct ThreadAttributes { -public: - // prevent constructor by default - ThreadAttributes& operator=(ThreadAttributes const&); - ThreadAttributes(ThreadAttributes const&); - ThreadAttributes(); -}; +struct ThreadAttributes {}; } // namespace rtc diff --git a/src/mc/external/rtc/VideoBroadcaster.h b/src/mc/external/rtc/VideoBroadcaster.h index c2af6bdd26..76a0909768 100644 --- a/src/mc/external/rtc/VideoBroadcaster.h +++ b/src/mc/external/rtc/VideoBroadcaster.h @@ -13,11 +13,6 @@ namespace webrtc { class VideoFrameBuffer; } namespace rtc { class VideoBroadcaster { -public: - // prevent constructor by default - VideoBroadcaster& operator=(VideoBroadcaster const&); - VideoBroadcaster(VideoBroadcaster const&); - public: // member functions // NOLINTBEGIN diff --git a/src/mc/external/rtc/VideoSinkInterface.h b/src/mc/external/rtc/VideoSinkInterface.h index 523d267464..18000570a7 100644 --- a/src/mc/external/rtc/VideoSinkInterface.h +++ b/src/mc/external/rtc/VideoSinkInterface.h @@ -5,12 +5,6 @@ namespace rtc { template -class VideoSinkInterface { -public: - // prevent constructor by default - VideoSinkInterface& operator=(VideoSinkInterface const&); - VideoSinkInterface(VideoSinkInterface const&); - VideoSinkInterface(); -}; +class VideoSinkInterface {}; } // namespace rtc diff --git a/src/mc/external/rtc/VideoSourceBase.h b/src/mc/external/rtc/VideoSourceBase.h index 314e06e932..4b0cde36fb 100644 --- a/src/mc/external/rtc/VideoSourceBase.h +++ b/src/mc/external/rtc/VideoSourceBase.h @@ -21,12 +21,6 @@ class VideoSourceBase { // VideoSourceBase inner types define struct SinkPair { - public: - // prevent constructor by default - SinkPair& operator=(SinkPair const&); - SinkPair(SinkPair const&); - SinkPair(); - public: // member functions // NOLINTBEGIN @@ -40,11 +34,6 @@ class VideoSourceBase { // NOLINTEND }; -public: - // prevent constructor by default - VideoSourceBase& operator=(VideoSourceBase const&); - VideoSourceBase(VideoSourceBase const&); - public: // member functions // NOLINTBEGIN diff --git a/src/mc/external/rtc/VideoSourceBaseGuarded.h b/src/mc/external/rtc/VideoSourceBaseGuarded.h index e2c4e88a96..3095ebf421 100644 --- a/src/mc/external/rtc/VideoSourceBaseGuarded.h +++ b/src/mc/external/rtc/VideoSourceBaseGuarded.h @@ -21,12 +21,6 @@ class VideoSourceBaseGuarded { // VideoSourceBaseGuarded inner types define struct SinkPair { - public: - // prevent constructor by default - SinkPair& operator=(SinkPair const&); - SinkPair(SinkPair const&); - SinkPair(); - public: // member functions // NOLINTBEGIN @@ -40,11 +34,6 @@ class VideoSourceBaseGuarded { // NOLINTEND }; -public: - // prevent constructor by default - VideoSourceBaseGuarded& operator=(VideoSourceBaseGuarded const&); - VideoSourceBaseGuarded(VideoSourceBaseGuarded const&); - public: // member functions // NOLINTBEGIN diff --git a/src/mc/external/rtc/VideoSourceInterface.h b/src/mc/external/rtc/VideoSourceInterface.h index d3190174c1..8f2989f645 100644 --- a/src/mc/external/rtc/VideoSourceInterface.h +++ b/src/mc/external/rtc/VideoSourceInterface.h @@ -5,12 +5,6 @@ namespace rtc { template -class VideoSourceInterface { -public: - // prevent constructor by default - VideoSourceInterface& operator=(VideoSourceInterface const&); - VideoSourceInterface(VideoSourceInterface const&); - VideoSourceInterface(); -}; +class VideoSourceInterface {}; } // namespace rtc diff --git a/src/mc/external/rtc/WeakPtr.h b/src/mc/external/rtc/WeakPtr.h index 41111fc201..3563c396fc 100644 --- a/src/mc/external/rtc/WeakPtr.h +++ b/src/mc/external/rtc/WeakPtr.h @@ -5,12 +5,6 @@ namespace rtc { template -class WeakPtr { -public: - // prevent constructor by default - WeakPtr& operator=(WeakPtr const&); - WeakPtr(WeakPtr const&); - WeakPtr(); -}; +class WeakPtr {}; } // namespace rtc diff --git a/src/mc/external/scripting/binding_factory/CommonModuleFactory.h b/src/mc/external/scripting/binding_factory/CommonModuleFactory.h index 0732848044..043c20adbb 100644 --- a/src/mc/external/scripting/binding_factory/CommonModuleFactory.h +++ b/src/mc/external/scripting/binding_factory/CommonModuleFactory.h @@ -15,12 +15,6 @@ namespace Scripting { struct UUID; } namespace Scripting { class CommonModuleFactory : public ::Scripting::GenericModuleBindingFactory { -public: - // prevent constructor by default - CommonModuleFactory& operator=(CommonModuleFactory const&); - CommonModuleFactory(CommonModuleFactory const&); - CommonModuleFactory(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/external/scripting/binding_factory/IModuleBindingFactory.h b/src/mc/external/scripting/binding_factory/IModuleBindingFactory.h index 6d8fae15e9..ffc28424da 100644 --- a/src/mc/external/scripting/binding_factory/IModuleBindingFactory.h +++ b/src/mc/external/scripting/binding_factory/IModuleBindingFactory.h @@ -14,12 +14,6 @@ namespace Scripting { struct Version; } namespace Scripting { class IModuleBindingFactory { -public: - // prevent constructor by default - IModuleBindingFactory& operator=(IModuleBindingFactory const&); - IModuleBindingFactory(IModuleBindingFactory const&); - IModuleBindingFactory(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/external/scripting/binding_type/ArgumentBindingBuilderValidator.h b/src/mc/external/scripting/binding_type/ArgumentBindingBuilderValidator.h index c1e9bfbdee..5915979bd6 100644 --- a/src/mc/external/scripting/binding_type/ArgumentBindingBuilderValidator.h +++ b/src/mc/external/scripting/binding_type/ArgumentBindingBuilderValidator.h @@ -4,12 +4,6 @@ namespace Scripting { -struct ArgumentBindingBuilderValidator { -public: - // prevent constructor by default - ArgumentBindingBuilderValidator& operator=(ArgumentBindingBuilderValidator const&); - ArgumentBindingBuilderValidator(ArgumentBindingBuilderValidator const&); - ArgumentBindingBuilderValidator(); -}; +struct ArgumentBindingBuilderValidator {}; } // namespace Scripting diff --git a/src/mc/external/scripting/binding_type/ClassBindingBuilder.h b/src/mc/external/scripting/binding_type/ClassBindingBuilder.h index 3731f16a8e..d6ef6f86b3 100644 --- a/src/mc/external/scripting/binding_type/ClassBindingBuilder.h +++ b/src/mc/external/scripting/binding_type/ClassBindingBuilder.h @@ -5,12 +5,6 @@ namespace Scripting { template -class ClassBindingBuilder { -public: - // prevent constructor by default - ClassBindingBuilder& operator=(ClassBindingBuilder const&); - ClassBindingBuilder(ClassBindingBuilder const&); - ClassBindingBuilder(); -}; +class ClassBindingBuilder {}; } // namespace Scripting diff --git a/src/mc/external/scripting/binding_type/ClassBindingBuilderReadOnly.h b/src/mc/external/scripting/binding_type/ClassBindingBuilderReadOnly.h index 66dd4e51af..9181b11093 100644 --- a/src/mc/external/scripting/binding_type/ClassBindingBuilderReadOnly.h +++ b/src/mc/external/scripting/binding_type/ClassBindingBuilderReadOnly.h @@ -5,12 +5,6 @@ namespace Scripting { template -class ClassBindingBuilderReadOnly { -public: - // prevent constructor by default - ClassBindingBuilderReadOnly& operator=(ClassBindingBuilderReadOnly const&); - ClassBindingBuilderReadOnly(ClassBindingBuilderReadOnly const&); - ClassBindingBuilderReadOnly(); -}; +class ClassBindingBuilderReadOnly {}; } // namespace Scripting diff --git a/src/mc/external/scripting/binding_type/EnumBindingBuilder.h b/src/mc/external/scripting/binding_type/EnumBindingBuilder.h index 2ecd2032e1..d1d9f7b54f 100644 --- a/src/mc/external/scripting/binding_type/EnumBindingBuilder.h +++ b/src/mc/external/scripting/binding_type/EnumBindingBuilder.h @@ -5,12 +5,6 @@ namespace Scripting { template -class EnumBindingBuilder { -public: - // prevent constructor by default - EnumBindingBuilder& operator=(EnumBindingBuilder const&); - EnumBindingBuilder(EnumBindingBuilder const&); - EnumBindingBuilder(); -}; +class EnumBindingBuilder {}; } // namespace Scripting diff --git a/src/mc/external/scripting/binding_type/EqualPropertyBinding.h b/src/mc/external/scripting/binding_type/EqualPropertyBinding.h index 2ab33aefa0..adf47525cc 100644 --- a/src/mc/external/scripting/binding_type/EqualPropertyBinding.h +++ b/src/mc/external/scripting/binding_type/EqualPropertyBinding.h @@ -4,12 +4,6 @@ namespace Scripting { -struct EqualPropertyBinding { -public: - // prevent constructor by default - EqualPropertyBinding& operator=(EqualPropertyBinding const&); - EqualPropertyBinding(EqualPropertyBinding const&); - EqualPropertyBinding(); -}; +struct EqualPropertyBinding {}; } // namespace Scripting diff --git a/src/mc/external/scripting/binding_type/ErrorBindingBuilder.h b/src/mc/external/scripting/binding_type/ErrorBindingBuilder.h index 224be8496e..501d9e7c55 100644 --- a/src/mc/external/scripting/binding_type/ErrorBindingBuilder.h +++ b/src/mc/external/scripting/binding_type/ErrorBindingBuilder.h @@ -5,12 +5,6 @@ namespace Scripting { template -class ErrorBindingBuilder { -public: - // prevent constructor by default - ErrorBindingBuilder& operator=(ErrorBindingBuilder const&); - ErrorBindingBuilder(ErrorBindingBuilder const&); - ErrorBindingBuilder(); -}; +class ErrorBindingBuilder {}; } // namespace Scripting diff --git a/src/mc/external/scripting/binding_type/HashPropertyBinding.h b/src/mc/external/scripting/binding_type/HashPropertyBinding.h index 5290c0ffd9..3f8a312a6a 100644 --- a/src/mc/external/scripting/binding_type/HashPropertyBinding.h +++ b/src/mc/external/scripting/binding_type/HashPropertyBinding.h @@ -4,12 +4,6 @@ namespace Scripting { -struct HashPropertyBinding { -public: - // prevent constructor by default - HashPropertyBinding& operator=(HashPropertyBinding const&); - HashPropertyBinding(HashPropertyBinding const&); - HashPropertyBinding(); -}; +struct HashPropertyBinding {}; } // namespace Scripting diff --git a/src/mc/external/scripting/binding_type/InterfaceBindingBuilder.h b/src/mc/external/scripting/binding_type/InterfaceBindingBuilder.h index 1cbd58b371..cc7d2ed662 100644 --- a/src/mc/external/scripting/binding_type/InterfaceBindingBuilder.h +++ b/src/mc/external/scripting/binding_type/InterfaceBindingBuilder.h @@ -5,12 +5,6 @@ namespace Scripting { template -class InterfaceBindingBuilder { -public: - // prevent constructor by default - InterfaceBindingBuilder& operator=(InterfaceBindingBuilder const&); - InterfaceBindingBuilder(InterfaceBindingBuilder const&); - InterfaceBindingBuilder(); -}; +class InterfaceBindingBuilder {}; } // namespace Scripting diff --git a/src/mc/external/scripting/lifetime_registry/ClosureType.h b/src/mc/external/scripting/lifetime_registry/ClosureType.h index 7e249e92d2..b7086cb046 100644 --- a/src/mc/external/scripting/lifetime_registry/ClosureType.h +++ b/src/mc/external/scripting/lifetime_registry/ClosureType.h @@ -4,12 +4,6 @@ namespace Scripting { -struct ClosureType { -public: - // prevent constructor by default - ClosureType& operator=(ClosureType const&); - ClosureType(ClosureType const&); - ClosureType(); -}; +struct ClosureType {}; } // namespace Scripting diff --git a/src/mc/external/scripting/lifetime_registry/DataBufferHandleType.h b/src/mc/external/scripting/lifetime_registry/DataBufferHandleType.h index 479945d803..46304fc016 100644 --- a/src/mc/external/scripting/lifetime_registry/DataBufferHandleType.h +++ b/src/mc/external/scripting/lifetime_registry/DataBufferHandleType.h @@ -4,12 +4,6 @@ namespace Scripting { -struct DataBufferHandleType { -public: - // prevent constructor by default - DataBufferHandleType& operator=(DataBufferHandleType const&); - DataBufferHandleType(DataBufferHandleType const&); - DataBufferHandleType(); -}; +struct DataBufferHandleType {}; } // namespace Scripting diff --git a/src/mc/external/scripting/lifetime_registry/FutureType.h b/src/mc/external/scripting/lifetime_registry/FutureType.h index 696b86b285..33c89439ff 100644 --- a/src/mc/external/scripting/lifetime_registry/FutureType.h +++ b/src/mc/external/scripting/lifetime_registry/FutureType.h @@ -4,12 +4,6 @@ namespace Scripting { -struct FutureType { -public: - // prevent constructor by default - FutureType& operator=(FutureType const&); - FutureType(FutureType const&); - FutureType(); -}; +struct FutureType {}; } // namespace Scripting diff --git a/src/mc/external/scripting/lifetime_registry/GeneratorIteratorType.h b/src/mc/external/scripting/lifetime_registry/GeneratorIteratorType.h index 3febd0a74e..c205f29458 100644 --- a/src/mc/external/scripting/lifetime_registry/GeneratorIteratorType.h +++ b/src/mc/external/scripting/lifetime_registry/GeneratorIteratorType.h @@ -4,12 +4,6 @@ namespace Scripting { -struct GeneratorIteratorType { -public: - // prevent constructor by default - GeneratorIteratorType& operator=(GeneratorIteratorType const&); - GeneratorIteratorType(GeneratorIteratorType const&); - GeneratorIteratorType(); -}; +struct GeneratorIteratorType {}; } // namespace Scripting diff --git a/src/mc/external/scripting/lifetime_registry/GeneratorType.h b/src/mc/external/scripting/lifetime_registry/GeneratorType.h index 848e012c28..dfcd500e4c 100644 --- a/src/mc/external/scripting/lifetime_registry/GeneratorType.h +++ b/src/mc/external/scripting/lifetime_registry/GeneratorType.h @@ -4,12 +4,6 @@ namespace Scripting { -struct GeneratorType { -public: - // prevent constructor by default - GeneratorType& operator=(GeneratorType const&); - GeneratorType(GeneratorType const&); - GeneratorType(); -}; +struct GeneratorType {}; } // namespace Scripting diff --git a/src/mc/external/scripting/lifetime_registry/ILifetimeScopeListener.h b/src/mc/external/scripting/lifetime_registry/ILifetimeScopeListener.h index ca4e686a78..bb0921665c 100644 --- a/src/mc/external/scripting/lifetime_registry/ILifetimeScopeListener.h +++ b/src/mc/external/scripting/lifetime_registry/ILifetimeScopeListener.h @@ -11,12 +11,6 @@ namespace Scripting { struct ObjectHandle; } namespace Scripting { class ILifetimeScopeListener { -public: - // prevent constructor by default - ILifetimeScopeListener& operator=(ILifetimeScopeListener const&); - ILifetimeScopeListener(ILifetimeScopeListener const&); - ILifetimeScopeListener(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/external/scripting/lifetime_registry/ObjectRegistryUtilities.h b/src/mc/external/scripting/lifetime_registry/ObjectRegistryUtilities.h index 7c31e4daa1..caad9cedb3 100644 --- a/src/mc/external/scripting/lifetime_registry/ObjectRegistryUtilities.h +++ b/src/mc/external/scripting/lifetime_registry/ObjectRegistryUtilities.h @@ -4,12 +4,6 @@ namespace Scripting::internal { -struct ObjectRegistryUtilities { -public: - // prevent constructor by default - ObjectRegistryUtilities& operator=(ObjectRegistryUtilities const&); - ObjectRegistryUtilities(ObjectRegistryUtilities const&); - ObjectRegistryUtilities(); -}; +struct ObjectRegistryUtilities {}; } // namespace Scripting::internal diff --git a/src/mc/external/scripting/lifetime_registry/PromiseType.h b/src/mc/external/scripting/lifetime_registry/PromiseType.h index 1ac0993687..8ce0d6cc6f 100644 --- a/src/mc/external/scripting/lifetime_registry/PromiseType.h +++ b/src/mc/external/scripting/lifetime_registry/PromiseType.h @@ -4,12 +4,6 @@ namespace Scripting { -struct PromiseType { -public: - // prevent constructor by default - PromiseType& operator=(PromiseType const&); - PromiseType(PromiseType const&); - PromiseType(); -}; +struct PromiseType {}; } // namespace Scripting diff --git a/src/mc/external/scripting/lifetime_registry/StrongTypedObjectHandle.h b/src/mc/external/scripting/lifetime_registry/StrongTypedObjectHandle.h index 0531d709ee..22f0591c9c 100644 --- a/src/mc/external/scripting/lifetime_registry/StrongTypedObjectHandle.h +++ b/src/mc/external/scripting/lifetime_registry/StrongTypedObjectHandle.h @@ -5,12 +5,6 @@ namespace Scripting { template -class StrongTypedObjectHandle { -public: - // prevent constructor by default - StrongTypedObjectHandle& operator=(StrongTypedObjectHandle const&); - StrongTypedObjectHandle(StrongTypedObjectHandle const&); - StrongTypedObjectHandle(); -}; +class StrongTypedObjectHandle {}; } // namespace Scripting diff --git a/src/mc/external/scripting/lifetime_registry/TypedObjectHandle.h b/src/mc/external/scripting/lifetime_registry/TypedObjectHandle.h index f6d71fbd71..747db0697d 100644 --- a/src/mc/external/scripting/lifetime_registry/TypedObjectHandle.h +++ b/src/mc/external/scripting/lifetime_registry/TypedObjectHandle.h @@ -5,12 +5,6 @@ namespace Scripting { template -struct TypedObjectHandle { -public: - // prevent constructor by default - TypedObjectHandle& operator=(TypedObjectHandle const&); - TypedObjectHandle(TypedObjectHandle const&); - TypedObjectHandle(); -}; +struct TypedObjectHandle {}; } // namespace Scripting diff --git a/src/mc/external/scripting/lifetime_registry/WeakFromThisBase.h b/src/mc/external/scripting/lifetime_registry/WeakFromThisBase.h index c502e92da0..6cc2ad88e4 100644 --- a/src/mc/external/scripting/lifetime_registry/WeakFromThisBase.h +++ b/src/mc/external/scripting/lifetime_registry/WeakFromThisBase.h @@ -4,12 +4,6 @@ namespace Scripting { -class WeakFromThisBase { -public: - // prevent constructor by default - WeakFromThisBase& operator=(WeakFromThisBase const&); - WeakFromThisBase(WeakFromThisBase const&); - WeakFromThisBase(); -}; +class WeakFromThisBase {}; } // namespace Scripting diff --git a/src/mc/external/scripting/lifetime_registry/WeakHandleFromThis.h b/src/mc/external/scripting/lifetime_registry/WeakHandleFromThis.h index 400caef2b9..73475cecfb 100644 --- a/src/mc/external/scripting/lifetime_registry/WeakHandleFromThis.h +++ b/src/mc/external/scripting/lifetime_registry/WeakHandleFromThis.h @@ -5,12 +5,6 @@ namespace Scripting { template -class WeakHandleFromThis { -public: - // prevent constructor by default - WeakHandleFromThis& operator=(WeakHandleFromThis const&); - WeakHandleFromThis(WeakHandleFromThis const&); - WeakHandleFromThis(); -}; +class WeakHandleFromThis {}; } // namespace Scripting diff --git a/src/mc/external/scripting/lifetime_registry/WeakTypedObjectHandle.h b/src/mc/external/scripting/lifetime_registry/WeakTypedObjectHandle.h index 888f31644c..4a4072cdbe 100644 --- a/src/mc/external/scripting/lifetime_registry/WeakTypedObjectHandle.h +++ b/src/mc/external/scripting/lifetime_registry/WeakTypedObjectHandle.h @@ -5,12 +5,6 @@ namespace Scripting { template -class WeakTypedObjectHandle { -public: - // prevent constructor by default - WeakTypedObjectHandle& operator=(WeakTypedObjectHandle const&); - WeakTypedObjectHandle(WeakTypedObjectHandle const&); - WeakTypedObjectHandle(); -}; +class WeakTypedObjectHandle {}; } // namespace Scripting diff --git a/src/mc/external/scripting/quickjs/bindings/ClassRegistry.h b/src/mc/external/scripting/quickjs/bindings/ClassRegistry.h index d8245184fa..23ab38df10 100644 --- a/src/mc/external/scripting/quickjs/bindings/ClassRegistry.h +++ b/src/mc/external/scripting/quickjs/bindings/ClassRegistry.h @@ -30,13 +30,7 @@ class ClassRegistry { // clang-format on // ClassRegistry inner types define - struct TypeHash { - public: - // prevent constructor by default - TypeHash& operator=(TypeHash const&); - TypeHash(TypeHash const&); - TypeHash(); - }; + struct TypeHash {}; public: // member variables diff --git a/src/mc/external/scripting/reflection/IPropertyGetter.h b/src/mc/external/scripting/reflection/IPropertyGetter.h index 8fa32dc6df..8aea21e136 100644 --- a/src/mc/external/scripting/reflection/IPropertyGetter.h +++ b/src/mc/external/scripting/reflection/IPropertyGetter.h @@ -8,12 +8,6 @@ namespace Scripting::Reflection { class IPropertyGetter { -public: - // prevent constructor by default - IPropertyGetter& operator=(IPropertyGetter const&); - IPropertyGetter(IPropertyGetter const&); - IPropertyGetter(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/external/scripting/runtime/EngineError.h b/src/mc/external/scripting/runtime/EngineError.h index 0beadb010f..a6108dc702 100644 --- a/src/mc/external/scripting/runtime/EngineError.h +++ b/src/mc/external/scripting/runtime/EngineError.h @@ -8,11 +8,6 @@ namespace Scripting { struct EngineError : public ::Scripting::Error { -public: - // prevent constructor by default - EngineError& operator=(EngineError const&); - EngineError(EngineError const&); - public: // member functions // NOLINTBEGIN diff --git a/src/mc/external/scripting/runtime/IDebuggerController.h b/src/mc/external/scripting/runtime/IDebuggerController.h index ad63eafc76..f6b4c699b9 100644 --- a/src/mc/external/scripting/runtime/IDebuggerController.h +++ b/src/mc/external/scripting/runtime/IDebuggerController.h @@ -5,12 +5,6 @@ namespace Scripting { class IDebuggerController { -public: - // prevent constructor by default - IDebuggerController& operator=(IDebuggerController const&); - IDebuggerController(IDebuggerController const&); - IDebuggerController(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/external/scripting/runtime/IDebuggerTransport.h b/src/mc/external/scripting/runtime/IDebuggerTransport.h index 26bc5d2627..5c7626a144 100644 --- a/src/mc/external/scripting/runtime/IDebuggerTransport.h +++ b/src/mc/external/scripting/runtime/IDebuggerTransport.h @@ -5,12 +5,6 @@ namespace Scripting { class IDebuggerTransport { -public: - // prevent constructor by default - IDebuggerTransport& operator=(IDebuggerTransport const&); - IDebuggerTransport(IDebuggerTransport const&); - IDebuggerTransport(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/external/scripting/runtime/IDependencyLoader.h b/src/mc/external/scripting/runtime/IDependencyLoader.h index 4c08982f7a..ba1c3df322 100644 --- a/src/mc/external/scripting/runtime/IDependencyLoader.h +++ b/src/mc/external/scripting/runtime/IDependencyLoader.h @@ -11,12 +11,6 @@ namespace Scripting { struct ScriptData; } namespace Scripting { class IDependencyLoader { -public: - // prevent constructor by default - IDependencyLoader& operator=(IDependencyLoader const&); - IDependencyLoader(IDependencyLoader const&); - IDependencyLoader(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/external/scripting/runtime/IPayload.h b/src/mc/external/scripting/runtime/IPayload.h index acbb71aac4..8820d5db6f 100644 --- a/src/mc/external/scripting/runtime/IPayload.h +++ b/src/mc/external/scripting/runtime/IPayload.h @@ -16,12 +16,6 @@ namespace Scripting { struct ContextId; } namespace Scripting { class IPayload { -public: - // prevent constructor by default - IPayload& operator=(IPayload const&); - IPayload(IPayload const&); - IPayload(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/external/scripting/runtime/IPrinter.h b/src/mc/external/scripting/runtime/IPrinter.h index b24795f587..1c6a09bef7 100644 --- a/src/mc/external/scripting/runtime/IPrinter.h +++ b/src/mc/external/scripting/runtime/IPrinter.h @@ -10,12 +10,6 @@ namespace Scripting { struct ContextId; } namespace Scripting { class IPrinter { -public: - // prevent constructor by default - IPrinter& operator=(IPrinter const&); - IPrinter(IPrinter const&); - IPrinter(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/external/scripting/runtime/IRuntime.h b/src/mc/external/scripting/runtime/IRuntime.h index 7cb0bf2555..ca8ac96554 100644 --- a/src/mc/external/scripting/runtime/IRuntime.h +++ b/src/mc/external/scripting/runtime/IRuntime.h @@ -34,12 +34,6 @@ namespace Scripting { struct WatchdogSettings; } namespace Scripting { class IRuntime { -public: - // prevent constructor by default - IRuntime& operator=(IRuntime const&); - IRuntime(IRuntime const&); - IRuntime(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/external/scripting/runtime/Result.h b/src/mc/external/scripting/runtime/Result.h index 1796f658c6..57eb14cd65 100644 --- a/src/mc/external/scripting/runtime/Result.h +++ b/src/mc/external/scripting/runtime/Result.h @@ -5,12 +5,6 @@ namespace Scripting { template -class Result { -public: - // prevent constructor by default - Result& operator=(Result const&); - Result(Result const&); - Result(); -}; +class Result {}; } // namespace Scripting diff --git a/src/mc/external/scripting/runtime/Result_deprecated.h b/src/mc/external/scripting/runtime/Result_deprecated.h index a1de8c1411..ea7a8825ed 100644 --- a/src/mc/external/scripting/runtime/Result_deprecated.h +++ b/src/mc/external/scripting/runtime/Result_deprecated.h @@ -5,12 +5,6 @@ namespace Scripting { template -class Result_deprecated { -public: - // prevent constructor by default - Result_deprecated& operator=(Result_deprecated const&); - Result_deprecated(Result_deprecated const&); - Result_deprecated(); -}; +class Result_deprecated {}; } // namespace Scripting diff --git a/src/mc/external/scripting/runtime/RuntimeConditionError.h b/src/mc/external/scripting/runtime/RuntimeConditionError.h index 10fd640918..59481da5a2 100644 --- a/src/mc/external/scripting/runtime/RuntimeConditionError.h +++ b/src/mc/external/scripting/runtime/RuntimeConditionError.h @@ -13,12 +13,6 @@ namespace Scripting { class RuntimeConditions; } namespace Scripting { struct RuntimeConditionError : public ::Scripting::Error { -public: - // prevent constructor by default - RuntimeConditionError& operator=(RuntimeConditionError const&); - RuntimeConditionError(RuntimeConditionError const&); - RuntimeConditionError(); - public: // member functions // NOLINTBEGIN diff --git a/src/mc/external/scripting/runtime/StringBasedRuntime.h b/src/mc/external/scripting/runtime/StringBasedRuntime.h index 68ff08aed0..7eb11e6c84 100644 --- a/src/mc/external/scripting/runtime/StringBasedRuntime.h +++ b/src/mc/external/scripting/runtime/StringBasedRuntime.h @@ -16,12 +16,6 @@ namespace Scripting { struct ContextId; } namespace Scripting { class StringBasedRuntime : public ::Scripting::IRuntime { -public: - // prevent constructor by default - StringBasedRuntime& operator=(StringBasedRuntime const&); - StringBasedRuntime(StringBasedRuntime const&); - StringBasedRuntime(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/external/scripting/script_engine/Closure.h b/src/mc/external/scripting/script_engine/Closure.h index 8cf484c218..a15cd0fa46 100644 --- a/src/mc/external/scripting/script_engine/Closure.h +++ b/src/mc/external/scripting/script_engine/Closure.h @@ -5,12 +5,6 @@ namespace Scripting { template -class Closure { -public: - // prevent constructor by default - Closure& operator=(Closure const&); - Closure(Closure const&); - Closure(); -}; +class Closure {}; } // namespace Scripting diff --git a/src/mc/external/scripting/script_engine/Generator.h b/src/mc/external/scripting/script_engine/Generator.h index 6f883b311b..a881c0da12 100644 --- a/src/mc/external/scripting/script_engine/Generator.h +++ b/src/mc/external/scripting/script_engine/Generator.h @@ -5,12 +5,6 @@ namespace Scripting { template -class Generator { -public: - // prevent constructor by default - Generator& operator=(Generator const&); - Generator(Generator const&); - Generator(); -}; +class Generator {}; } // namespace Scripting diff --git a/src/mc/external/scripting/script_engine/IObjectFactory.h b/src/mc/external/scripting/script_engine/IObjectFactory.h index 525bd4f9e3..d847d790fd 100644 --- a/src/mc/external/scripting/script_engine/IObjectFactory.h +++ b/src/mc/external/scripting/script_engine/IObjectFactory.h @@ -14,12 +14,6 @@ namespace Scripting { struct PromiseType; } namespace Scripting { class IObjectFactory { -public: - // prevent constructor by default - IObjectFactory& operator=(IObjectFactory const&); - IObjectFactory(IObjectFactory const&); - IObjectFactory(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/external/scripting/script_engine/IObjectInspector.h b/src/mc/external/scripting/script_engine/IObjectInspector.h index 90446ff267..d5028a92f0 100644 --- a/src/mc/external/scripting/script_engine/IObjectInspector.h +++ b/src/mc/external/scripting/script_engine/IObjectInspector.h @@ -11,12 +11,6 @@ namespace Scripting { struct ObjectHandle; } namespace Scripting { class IObjectInspector { -public: - // prevent constructor by default - IObjectInspector& operator=(IObjectInspector const&); - IObjectInspector(IObjectInspector const&); - IObjectInspector(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/external/scripting/script_engine/Promise.h b/src/mc/external/scripting/script_engine/Promise.h index 95d69100de..6f6aae8e2d 100644 --- a/src/mc/external/scripting/script_engine/Promise.h +++ b/src/mc/external/scripting/script_engine/Promise.h @@ -5,12 +5,6 @@ namespace Scripting { template -class Promise { -public: - // prevent constructor by default - Promise& operator=(Promise const&); - Promise(Promise const&); - Promise(); -}; +class Promise {}; } // namespace Scripting diff --git a/src/mc/external/sigslot/has_slots.h b/src/mc/external/sigslot/has_slots.h index f3200debdd..e035b1cfae 100644 --- a/src/mc/external/sigslot/has_slots.h +++ b/src/mc/external/sigslot/has_slots.h @@ -5,12 +5,6 @@ namespace sigslot { template -class has_slots { -public: - // prevent constructor by default - has_slots& operator=(has_slots const&); - has_slots(has_slots const&); - has_slots(); -}; +class has_slots {}; } // namespace sigslot diff --git a/src/mc/external/sigslot/multi_threaded_global.h b/src/mc/external/sigslot/multi_threaded_global.h index 480af51871..a3e1501da1 100644 --- a/src/mc/external/sigslot/multi_threaded_global.h +++ b/src/mc/external/sigslot/multi_threaded_global.h @@ -4,12 +4,6 @@ namespace sigslot { -class multi_threaded_global { -public: - // prevent constructor by default - multi_threaded_global& operator=(multi_threaded_global const&); - multi_threaded_global(multi_threaded_global const&); - multi_threaded_global(); -}; +class multi_threaded_global {}; } // namespace sigslot diff --git a/src/mc/external/sigslot/single_threaded.h b/src/mc/external/sigslot/single_threaded.h index e2d4a92bf9..0c965c4c4d 100644 --- a/src/mc/external/sigslot/single_threaded.h +++ b/src/mc/external/sigslot/single_threaded.h @@ -4,12 +4,6 @@ namespace sigslot { -class single_threaded { -public: - // prevent constructor by default - single_threaded& operator=(single_threaded const&); - single_threaded(single_threaded const&); - single_threaded(); -}; +class single_threaded {}; } // namespace sigslot diff --git a/src/mc/external/splitfat/ConfigParamsBase.h b/src/mc/external/splitfat/ConfigParamsBase.h index 31eb15b5f0..a3ad258b65 100644 --- a/src/mc/external/splitfat/ConfigParamsBase.h +++ b/src/mc/external/splitfat/ConfigParamsBase.h @@ -5,12 +5,6 @@ namespace SFAT { class ConfigParamsBase { -public: - // prevent constructor by default - ConfigParamsBase& operator=(ConfigParamsBase const&); - ConfigParamsBase(ConfigParamsBase const&); - ConfigParamsBase(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/external/splitfat/ConfigurationParameters.h b/src/mc/external/splitfat/ConfigurationParameters.h index 2c81c517d8..7b99d44eb6 100644 --- a/src/mc/external/splitfat/ConfigurationParameters.h +++ b/src/mc/external/splitfat/ConfigurationParameters.h @@ -8,12 +8,6 @@ namespace SFAT { class ConfigurationParameters : public ::SFAT::ConfigParamsBase { -public: - // prevent constructor by default - ConfigurationParameters& operator=(ConfigurationParameters const&); - ConfigurationParameters(ConfigurationParameters const&); - ConfigurationParameters(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/external/splitfat/FileStorageBase.h b/src/mc/external/splitfat/FileStorageBase.h index 3c33e2f08d..66ef615e3b 100644 --- a/src/mc/external/splitfat/FileStorageBase.h +++ b/src/mc/external/splitfat/FileStorageBase.h @@ -14,12 +14,6 @@ namespace SFAT { struct FileDescriptorRecord; } namespace SFAT { class FileStorageBase { -public: - // prevent constructor by default - FileStorageBase& operator=(FileStorageBase const&); - FileStorageBase(FileStorageBase const&); - FileStorageBase(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/external/splitfat/utils/CRC16.h b/src/mc/external/splitfat/utils/CRC16.h index 1d2464c204..6643725467 100644 --- a/src/mc/external/splitfat/utils/CRC16.h +++ b/src/mc/external/splitfat/utils/CRC16.h @@ -5,12 +5,6 @@ namespace SFAT { class CRC16 { -public: - // prevent constructor by default - CRC16& operator=(CRC16 const&); - CRC16(CRC16 const&); - CRC16(); - public: // static variables // NOLINTBEGIN diff --git a/src/mc/external/splitfat/utils/CRC24.h b/src/mc/external/splitfat/utils/CRC24.h index c4a651c2a3..a8374b6e67 100644 --- a/src/mc/external/splitfat/utils/CRC24.h +++ b/src/mc/external/splitfat/utils/CRC24.h @@ -5,12 +5,6 @@ namespace SFAT { class CRC24 { -public: - // prevent constructor by default - CRC24& operator=(CRC24 const&); - CRC24(CRC24 const&); - CRC24(); - public: // static variables // NOLINTBEGIN diff --git a/src/mc/external/splitfat/utils/CRC32.h b/src/mc/external/splitfat/utils/CRC32.h index 0456521e88..c2af77abbe 100644 --- a/src/mc/external/splitfat/utils/CRC32.h +++ b/src/mc/external/splitfat/utils/CRC32.h @@ -5,12 +5,6 @@ namespace SFAT { class CRC32 { -public: - // prevent constructor by default - CRC32& operator=(CRC32 const&); - CRC32(CRC32 const&); - CRC32(); - public: // static variables // NOLINTBEGIN diff --git a/src/mc/external/webrtc/AbsoluteCaptureTimeExtension.h b/src/mc/external/webrtc/AbsoluteCaptureTimeExtension.h index ffd71c96f0..5248ca7880 100644 --- a/src/mc/external/webrtc/AbsoluteCaptureTimeExtension.h +++ b/src/mc/external/webrtc/AbsoluteCaptureTimeExtension.h @@ -10,12 +10,6 @@ namespace webrtc { struct AbsoluteCaptureTime; } namespace webrtc { class AbsoluteCaptureTimeExtension { -public: - // prevent constructor by default - AbsoluteCaptureTimeExtension& operator=(AbsoluteCaptureTimeExtension const&); - AbsoluteCaptureTimeExtension(AbsoluteCaptureTimeExtension const&); - AbsoluteCaptureTimeExtension(); - public: // static functions // NOLINTBEGIN diff --git a/src/mc/external/webrtc/AbsoluteCaptureTimeInterpolator.h b/src/mc/external/webrtc/AbsoluteCaptureTimeInterpolator.h index eb5aaed1dd..5f44484264 100644 --- a/src/mc/external/webrtc/AbsoluteCaptureTimeInterpolator.h +++ b/src/mc/external/webrtc/AbsoluteCaptureTimeInterpolator.h @@ -5,12 +5,6 @@ namespace webrtc { struct AbsoluteCaptureTimeInterpolator { -public: - // prevent constructor by default - AbsoluteCaptureTimeInterpolator& operator=(AbsoluteCaptureTimeInterpolator const&); - AbsoluteCaptureTimeInterpolator(AbsoluteCaptureTimeInterpolator const&); - AbsoluteCaptureTimeInterpolator(); - public: // static functions // NOLINTBEGIN diff --git a/src/mc/external/webrtc/AbsoluteCaptureTimeSender.h b/src/mc/external/webrtc/AbsoluteCaptureTimeSender.h index 85e30d0bf9..7118cab024 100644 --- a/src/mc/external/webrtc/AbsoluteCaptureTimeSender.h +++ b/src/mc/external/webrtc/AbsoluteCaptureTimeSender.h @@ -13,12 +13,6 @@ namespace webrtc { struct AbsoluteCaptureTime; } namespace webrtc { struct AbsoluteCaptureTimeSender { -public: - // prevent constructor by default - AbsoluteCaptureTimeSender& operator=(AbsoluteCaptureTimeSender const&); - AbsoluteCaptureTimeSender(AbsoluteCaptureTimeSender const&); - AbsoluteCaptureTimeSender(); - public: // member functions // NOLINTBEGIN diff --git a/src/mc/external/webrtc/AbsoluteSendTime.h b/src/mc/external/webrtc/AbsoluteSendTime.h index 53fccf364f..e17e1e74a7 100644 --- a/src/mc/external/webrtc/AbsoluteSendTime.h +++ b/src/mc/external/webrtc/AbsoluteSendTime.h @@ -5,12 +5,6 @@ namespace webrtc { class AbsoluteSendTime { -public: - // prevent constructor by default - AbsoluteSendTime& operator=(AbsoluteSendTime const&); - AbsoluteSendTime(AbsoluteSendTime const&); - AbsoluteSendTime(); - public: // static functions // NOLINTBEGIN diff --git a/src/mc/external/webrtc/AcknowledgedBitrateEstimator.h b/src/mc/external/webrtc/AcknowledgedBitrateEstimator.h index 8be3596b20..1663e45443 100644 --- a/src/mc/external/webrtc/AcknowledgedBitrateEstimator.h +++ b/src/mc/external/webrtc/AcknowledgedBitrateEstimator.h @@ -11,12 +11,6 @@ namespace webrtc { class FieldTrialsView; } namespace webrtc { class AcknowledgedBitrateEstimator { -public: - // prevent constructor by default - AcknowledgedBitrateEstimator& operator=(AcknowledgedBitrateEstimator const&); - AcknowledgedBitrateEstimator(AcknowledgedBitrateEstimator const&); - AcknowledgedBitrateEstimator(); - public: // member functions // NOLINTBEGIN diff --git a/src/mc/external/webrtc/AcknowledgedBitrateEstimatorInterface.h b/src/mc/external/webrtc/AcknowledgedBitrateEstimatorInterface.h index 31a13f41c0..38b5ff0f1d 100644 --- a/src/mc/external/webrtc/AcknowledgedBitrateEstimatorInterface.h +++ b/src/mc/external/webrtc/AcknowledgedBitrateEstimatorInterface.h @@ -10,12 +10,6 @@ namespace webrtc { class FieldTrialsView; } namespace webrtc { class AcknowledgedBitrateEstimatorInterface { -public: - // prevent constructor by default - AcknowledgedBitrateEstimatorInterface& operator=(AcknowledgedBitrateEstimatorInterface const&); - AcknowledgedBitrateEstimatorInterface(AcknowledgedBitrateEstimatorInterface const&); - AcknowledgedBitrateEstimatorInterface(); - public: // static functions // NOLINTBEGIN diff --git a/src/mc/external/webrtc/ActiveDecodeTargetsHelper.h b/src/mc/external/webrtc/ActiveDecodeTargetsHelper.h index 882d4910ca..466a2f82ea 100644 --- a/src/mc/external/webrtc/ActiveDecodeTargetsHelper.h +++ b/src/mc/external/webrtc/ActiveDecodeTargetsHelper.h @@ -5,12 +5,6 @@ namespace webrtc { struct ActiveDecodeTargetsHelper { -public: - // prevent constructor by default - ActiveDecodeTargetsHelper& operator=(ActiveDecodeTargetsHelper const&); - ActiveDecodeTargetsHelper(ActiveDecodeTargetsHelper const&); - ActiveDecodeTargetsHelper(); - public: // member functions // NOLINTBEGIN diff --git a/src/mc/external/webrtc/AecDump.h b/src/mc/external/webrtc/AecDump.h index 32b143b240..125dad2f84 100644 --- a/src/mc/external/webrtc/AecDump.h +++ b/src/mc/external/webrtc/AecDump.h @@ -4,12 +4,6 @@ namespace webrtc { -class AecDump { -public: - // prevent constructor by default - AecDump& operator=(AecDump const&); - AecDump(AecDump const&); - AecDump(); -}; +class AecDump {}; } // namespace webrtc diff --git a/src/mc/external/webrtc/AimdRateControl.h b/src/mc/external/webrtc/AimdRateControl.h index 460c4df49c..e0de43c8b3 100644 --- a/src/mc/external/webrtc/AimdRateControl.h +++ b/src/mc/external/webrtc/AimdRateControl.h @@ -15,12 +15,6 @@ namespace webrtc { struct RateControlInput; } namespace webrtc { struct AimdRateControl { -public: - // prevent constructor by default - AimdRateControl& operator=(AimdRateControl const&); - AimdRateControl(AimdRateControl const&); - AimdRateControl(); - public: // member functions // NOLINTBEGIN diff --git a/src/mc/external/webrtc/AlrDetector.h b/src/mc/external/webrtc/AlrDetector.h index 1f780e15c7..22da8acb80 100644 --- a/src/mc/external/webrtc/AlrDetector.h +++ b/src/mc/external/webrtc/AlrDetector.h @@ -12,12 +12,6 @@ namespace webrtc { struct AlrDetectorConfig; } namespace webrtc { class AlrDetector { -public: - // prevent constructor by default - AlrDetector& operator=(AlrDetector const&); - AlrDetector(AlrDetector const&); - AlrDetector(); - public: // member functions // NOLINTBEGIN diff --git a/src/mc/external/webrtc/AlrDetectorConfig.h b/src/mc/external/webrtc/AlrDetectorConfig.h index 701ddeb093..f7816a7ff4 100644 --- a/src/mc/external/webrtc/AlrDetectorConfig.h +++ b/src/mc/external/webrtc/AlrDetectorConfig.h @@ -10,12 +10,6 @@ namespace webrtc { class StructParametersParser; } namespace webrtc { struct AlrDetectorConfig { -public: - // prevent constructor by default - AlrDetectorConfig& operator=(AlrDetectorConfig const&); - AlrDetectorConfig(AlrDetectorConfig const&); - AlrDetectorConfig(); - public: // member functions // NOLINTBEGIN diff --git a/src/mc/external/webrtc/AlrExperimentSettings.h b/src/mc/external/webrtc/AlrExperimentSettings.h index ac1912d107..627c6e3648 100644 --- a/src/mc/external/webrtc/AlrExperimentSettings.h +++ b/src/mc/external/webrtc/AlrExperimentSettings.h @@ -10,12 +10,6 @@ namespace webrtc { class FieldTrialsView; } namespace webrtc { struct AlrExperimentSettings { -public: - // prevent constructor by default - AlrExperimentSettings& operator=(AlrExperimentSettings const&); - AlrExperimentSettings(AlrExperimentSettings const&); - AlrExperimentSettings(); - public: // static functions // NOLINTBEGIN diff --git a/src/mc/external/webrtc/AsyncDnsResolver.h b/src/mc/external/webrtc/AsyncDnsResolver.h index a083a7b579..f155031d7b 100644 --- a/src/mc/external/webrtc/AsyncDnsResolver.h +++ b/src/mc/external/webrtc/AsyncDnsResolver.h @@ -5,11 +5,6 @@ namespace webrtc { class AsyncDnsResolver { -public: - // prevent constructor by default - AsyncDnsResolver& operator=(AsyncDnsResolver const&); - AsyncDnsResolver(AsyncDnsResolver const&); - public: // member functions // NOLINTBEGIN diff --git a/src/mc/external/webrtc/AsyncDnsResolverFactoryInterface.h b/src/mc/external/webrtc/AsyncDnsResolverFactoryInterface.h index c41f79d39f..823cd1b368 100644 --- a/src/mc/external/webrtc/AsyncDnsResolverFactoryInterface.h +++ b/src/mc/external/webrtc/AsyncDnsResolverFactoryInterface.h @@ -14,12 +14,6 @@ namespace webrtc { class AsyncDnsResolverInterface; } namespace webrtc { class AsyncDnsResolverFactoryInterface { -public: - // prevent constructor by default - AsyncDnsResolverFactoryInterface& operator=(AsyncDnsResolverFactoryInterface const&); - AsyncDnsResolverFactoryInterface(AsyncDnsResolverFactoryInterface const&); - AsyncDnsResolverFactoryInterface(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/external/webrtc/AsyncDnsResolverInterface.h b/src/mc/external/webrtc/AsyncDnsResolverInterface.h index 78bdc58322..ac16a0e477 100644 --- a/src/mc/external/webrtc/AsyncDnsResolverInterface.h +++ b/src/mc/external/webrtc/AsyncDnsResolverInterface.h @@ -14,12 +14,6 @@ namespace webrtc { class AsyncDnsResolverResult; } namespace webrtc { class AsyncDnsResolverInterface { -public: - // prevent constructor by default - AsyncDnsResolverInterface& operator=(AsyncDnsResolverInterface const&); - AsyncDnsResolverInterface(AsyncDnsResolverInterface const&); - AsyncDnsResolverInterface(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/external/webrtc/AsyncDnsResolverResult.h b/src/mc/external/webrtc/AsyncDnsResolverResult.h index 74d81fcde9..4f3eea755d 100644 --- a/src/mc/external/webrtc/AsyncDnsResolverResult.h +++ b/src/mc/external/webrtc/AsyncDnsResolverResult.h @@ -10,12 +10,6 @@ namespace rtc { class SocketAddress; } namespace webrtc { class AsyncDnsResolverResult { -public: - // prevent constructor by default - AsyncDnsResolverResult& operator=(AsyncDnsResolverResult const&); - AsyncDnsResolverResult(AsyncDnsResolverResult const&); - AsyncDnsResolverResult(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/external/webrtc/AttributeInit.h b/src/mc/external/webrtc/AttributeInit.h index 83af5f4dd9..d45f18422c 100644 --- a/src/mc/external/webrtc/AttributeInit.h +++ b/src/mc/external/webrtc/AttributeInit.h @@ -5,12 +5,6 @@ namespace webrtc { struct AttributeInit { -public: - // prevent constructor by default - AttributeInit& operator=(AttributeInit const&); - AttributeInit(AttributeInit const&); - AttributeInit(); - public: // member functions // NOLINTBEGIN diff --git a/src/mc/external/webrtc/AudioBuffer.h b/src/mc/external/webrtc/AudioBuffer.h index 3283a17ac0..519614bf7a 100644 --- a/src/mc/external/webrtc/AudioBuffer.h +++ b/src/mc/external/webrtc/AudioBuffer.h @@ -4,12 +4,6 @@ namespace webrtc { -class AudioBuffer { -public: - // prevent constructor by default - AudioBuffer& operator=(AudioBuffer const&); - AudioBuffer(AudioBuffer const&); - AudioBuffer(); -}; +class AudioBuffer {}; } // namespace webrtc diff --git a/src/mc/external/webrtc/AudioDecoder.h b/src/mc/external/webrtc/AudioDecoder.h index 6d15404667..c3b9c2d931 100644 --- a/src/mc/external/webrtc/AudioDecoder.h +++ b/src/mc/external/webrtc/AudioDecoder.h @@ -4,12 +4,6 @@ namespace webrtc { -class AudioDecoder { -public: - // prevent constructor by default - AudioDecoder& operator=(AudioDecoder const&); - AudioDecoder(AudioDecoder const&); - AudioDecoder(); -}; +class AudioDecoder {}; } // namespace webrtc diff --git a/src/mc/external/webrtc/AudioDecoderFactory.h b/src/mc/external/webrtc/AudioDecoderFactory.h index 09f131b436..26db4aea8b 100644 --- a/src/mc/external/webrtc/AudioDecoderFactory.h +++ b/src/mc/external/webrtc/AudioDecoderFactory.h @@ -16,12 +16,6 @@ namespace webrtc { struct SdpAudioFormat; } namespace webrtc { class AudioDecoderFactory : public ::webrtc::RefCountInterface { -public: - // prevent constructor by default - AudioDecoderFactory& operator=(AudioDecoderFactory const&); - AudioDecoderFactory(AudioDecoderFactory const&); - AudioDecoderFactory(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/external/webrtc/AudioDeviceModule.h b/src/mc/external/webrtc/AudioDeviceModule.h index 72117237df..1c431f4dac 100644 --- a/src/mc/external/webrtc/AudioDeviceModule.h +++ b/src/mc/external/webrtc/AudioDeviceModule.h @@ -57,12 +57,6 @@ class AudioDeviceModule : public ::webrtc::RefCountInterface { Stats(); }; -public: - // prevent constructor by default - AudioDeviceModule& operator=(AudioDeviceModule const&); - AudioDeviceModule(AudioDeviceModule const&); - AudioDeviceModule(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/external/webrtc/AudioEncoder.h b/src/mc/external/webrtc/AudioEncoder.h index a1ab6fb0f7..6b3420d3ef 100644 --- a/src/mc/external/webrtc/AudioEncoder.h +++ b/src/mc/external/webrtc/AudioEncoder.h @@ -74,12 +74,6 @@ class AudioEncoder { KAudio = 1, }; -public: - // prevent constructor by default - AudioEncoder& operator=(AudioEncoder const&); - AudioEncoder(AudioEncoder const&); - AudioEncoder(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/external/webrtc/AudioEncoderFactory.h b/src/mc/external/webrtc/AudioEncoderFactory.h index 13d52e7a32..760dae896d 100644 --- a/src/mc/external/webrtc/AudioEncoderFactory.h +++ b/src/mc/external/webrtc/AudioEncoderFactory.h @@ -17,12 +17,6 @@ namespace webrtc { struct SdpAudioFormat; } namespace webrtc { class AudioEncoderFactory : public ::webrtc::RefCountInterface { -public: - // prevent constructor by default - AudioEncoderFactory& operator=(AudioEncoderFactory const&); - AudioEncoderFactory(AudioEncoderFactory const&); - AudioEncoderFactory(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/external/webrtc/AudioFrameProcessor.h b/src/mc/external/webrtc/AudioFrameProcessor.h index feb2a8d6e2..6246b76e65 100644 --- a/src/mc/external/webrtc/AudioFrameProcessor.h +++ b/src/mc/external/webrtc/AudioFrameProcessor.h @@ -10,12 +10,6 @@ namespace webrtc { class AudioFrame; } namespace webrtc { class AudioFrameProcessor { -public: - // prevent constructor by default - AudioFrameProcessor& operator=(AudioFrameProcessor const&); - AudioFrameProcessor(AudioFrameProcessor const&); - AudioFrameProcessor(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/external/webrtc/AudioLevelExtension.h b/src/mc/external/webrtc/AudioLevelExtension.h index cca8e1fad7..f9e3c4ae6a 100644 --- a/src/mc/external/webrtc/AudioLevelExtension.h +++ b/src/mc/external/webrtc/AudioLevelExtension.h @@ -9,12 +9,6 @@ namespace webrtc { class AudioLevel; } namespace webrtc { -class AudioLevelExtension { -public: - // prevent constructor by default - AudioLevelExtension& operator=(AudioLevelExtension const&); - AudioLevelExtension(AudioLevelExtension const&); - AudioLevelExtension(); -}; +class AudioLevelExtension {}; } // namespace webrtc diff --git a/src/mc/external/webrtc/AudioMixer.h b/src/mc/external/webrtc/AudioMixer.h index c26c8445ee..3bece7cc5c 100644 --- a/src/mc/external/webrtc/AudioMixer.h +++ b/src/mc/external/webrtc/AudioMixer.h @@ -29,12 +29,6 @@ class AudioMixer : public ::webrtc::RefCountInterface { KError = 2, }; - public: - // prevent constructor by default - Source& operator=(Source const&); - Source(Source const&); - Source(); - public: // virtual functions // NOLINTBEGIN @@ -64,12 +58,6 @@ class AudioMixer : public ::webrtc::RefCountInterface { // NOLINTEND }; -public: - // prevent constructor by default - AudioMixer& operator=(AudioMixer const&); - AudioMixer(AudioMixer const&); - AudioMixer(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/external/webrtc/AudioProcessing.h b/src/mc/external/webrtc/AudioProcessing.h index 9b8e998d4c..00e7b96600 100644 --- a/src/mc/external/webrtc/AudioProcessing.h +++ b/src/mc/external/webrtc/AudioProcessing.h @@ -457,12 +457,6 @@ class AudioProcessing : public ::webrtc::RefCountInterface { KSampleRate48kHz = 48000, }; -public: - // prevent constructor by default - AudioProcessing& operator=(AudioProcessing const&); - AudioProcessing(AudioProcessing const&); - AudioProcessing(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/external/webrtc/AudioProcessorInterface.h b/src/mc/external/webrtc/AudioProcessorInterface.h index a68a7759b4..0e85dd8173 100644 --- a/src/mc/external/webrtc/AudioProcessorInterface.h +++ b/src/mc/external/webrtc/AudioProcessorInterface.h @@ -13,12 +13,6 @@ class AudioProcessorInterface { // AudioProcessorInterface inner types define struct AudioProcessorStatistics { - public: - // prevent constructor by default - AudioProcessorStatistics& operator=(AudioProcessorStatistics const&); - AudioProcessorStatistics(AudioProcessorStatistics const&); - AudioProcessorStatistics(); - public: // member functions // NOLINTBEGIN @@ -31,12 +25,6 @@ class AudioProcessorInterface { MCAPI void $dtor(); // NOLINTEND }; - -public: - // prevent constructor by default - AudioProcessorInterface& operator=(AudioProcessorInterface const&); - AudioProcessorInterface(AudioProcessorInterface const&); - AudioProcessorInterface(); }; } // namespace webrtc diff --git a/src/mc/external/webrtc/AudioReceiveStreamInterface.h b/src/mc/external/webrtc/AudioReceiveStreamInterface.h index 3e27c3e2c2..f8c175a063 100644 --- a/src/mc/external/webrtc/AudioReceiveStreamInterface.h +++ b/src/mc/external/webrtc/AudioReceiveStreamInterface.h @@ -141,12 +141,6 @@ class AudioReceiveStreamInterface : public ::webrtc::MediaReceiveStreamInterface Config(); }; -public: - // prevent constructor by default - AudioReceiveStreamInterface& operator=(AudioReceiveStreamInterface const&); - AudioReceiveStreamInterface(AudioReceiveStreamInterface const&); - AudioReceiveStreamInterface(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/external/webrtc/AudioRtpReceiver.h b/src/mc/external/webrtc/AudioRtpReceiver.h index 7df1ffe228..35210acd94 100644 --- a/src/mc/external/webrtc/AudioRtpReceiver.h +++ b/src/mc/external/webrtc/AudioRtpReceiver.h @@ -16,12 +16,6 @@ namespace webrtc { class MediaStreamInterface; } namespace webrtc { class AudioRtpReceiver { -public: - // prevent constructor by default - AudioRtpReceiver& operator=(AudioRtpReceiver const&); - AudioRtpReceiver(AudioRtpReceiver const&); - AudioRtpReceiver(); - public: // member functions // NOLINTBEGIN diff --git a/src/mc/external/webrtc/AudioRtpSender.h b/src/mc/external/webrtc/AudioRtpSender.h index af24040aaa..9c69845e15 100644 --- a/src/mc/external/webrtc/AudioRtpSender.h +++ b/src/mc/external/webrtc/AudioRtpSender.h @@ -15,12 +15,6 @@ namespace webrtc { class LegacyStatsCollectorInterface; } namespace webrtc { class AudioRtpSender { -public: - // prevent constructor by default - AudioRtpSender& operator=(AudioRtpSender const&); - AudioRtpSender(AudioRtpSender const&); - AudioRtpSender(); - public: // member functions // NOLINTBEGIN diff --git a/src/mc/external/webrtc/AudioSendStream.h b/src/mc/external/webrtc/AudioSendStream.h index 0114bc4988..f928d950c2 100644 --- a/src/mc/external/webrtc/AudioSendStream.h +++ b/src/mc/external/webrtc/AudioSendStream.h @@ -132,12 +132,6 @@ class AudioSendStream : public ::webrtc::AudioSender { Config(); }; -public: - // prevent constructor by default - AudioSendStream& operator=(AudioSendStream const&); - AudioSendStream(AudioSendStream const&); - AudioSendStream(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/external/webrtc/AudioSender.h b/src/mc/external/webrtc/AudioSender.h index c0c94936db..d3c4562c94 100644 --- a/src/mc/external/webrtc/AudioSender.h +++ b/src/mc/external/webrtc/AudioSender.h @@ -10,12 +10,6 @@ namespace webrtc { class AudioFrame; } namespace webrtc { class AudioSender { -public: - // prevent constructor by default - AudioSender& operator=(AudioSender const&); - AudioSender(AudioSender const&); - AudioSender(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/external/webrtc/AudioSinkInterface.h b/src/mc/external/webrtc/AudioSinkInterface.h index d28a3b9749..3c9cc81d5c 100644 --- a/src/mc/external/webrtc/AudioSinkInterface.h +++ b/src/mc/external/webrtc/AudioSinkInterface.h @@ -30,12 +30,6 @@ class AudioSinkInterface { Data(); }; -public: - // prevent constructor by default - AudioSinkInterface& operator=(AudioSinkInterface const&); - AudioSinkInterface(AudioSinkInterface const&); - AudioSinkInterface(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/external/webrtc/AudioSourceInterface.h b/src/mc/external/webrtc/AudioSourceInterface.h index 9b36503d39..d14fc958d4 100644 --- a/src/mc/external/webrtc/AudioSourceInterface.h +++ b/src/mc/external/webrtc/AudioSourceInterface.h @@ -22,12 +22,6 @@ class AudioSourceInterface : public ::webrtc::MediaSourceInterface { // AudioSourceInterface inner types define class AudioObserver { - public: - // prevent constructor by default - AudioObserver& operator=(AudioObserver const&); - AudioObserver(AudioObserver const&); - AudioObserver(); - public: // virtual functions // NOLINTBEGIN @@ -57,12 +51,6 @@ class AudioSourceInterface : public ::webrtc::MediaSourceInterface { // NOLINTEND }; -public: - // prevent constructor by default - AudioSourceInterface& operator=(AudioSourceInterface const&); - AudioSourceInterface(AudioSourceInterface const&); - AudioSourceInterface(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/external/webrtc/AudioState.h b/src/mc/external/webrtc/AudioState.h index 3f8bec1cab..861668959a 100644 --- a/src/mc/external/webrtc/AudioState.h +++ b/src/mc/external/webrtc/AudioState.h @@ -38,12 +38,6 @@ class AudioState : public ::webrtc::RefCountInterface { Config(); }; -public: - // prevent constructor by default - AudioState& operator=(AudioState const&); - AudioState(AudioState const&); - AudioState(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/external/webrtc/AudioTrack.h b/src/mc/external/webrtc/AudioTrack.h index b7c8aec352..319e2f939a 100644 --- a/src/mc/external/webrtc/AudioTrack.h +++ b/src/mc/external/webrtc/AudioTrack.h @@ -13,12 +13,6 @@ namespace webrtc { class AudioSourceInterface; } namespace webrtc { class AudioTrack { -public: - // prevent constructor by default - AudioTrack& operator=(AudioTrack const&); - AudioTrack(AudioTrack const&); - AudioTrack(); - public: // member functions // NOLINTBEGIN diff --git a/src/mc/external/webrtc/AudioTrackInterface.h b/src/mc/external/webrtc/AudioTrackInterface.h index 90ca08893e..89ce728361 100644 --- a/src/mc/external/webrtc/AudioTrackInterface.h +++ b/src/mc/external/webrtc/AudioTrackInterface.h @@ -16,12 +16,6 @@ namespace webrtc { class AudioTrackSinkInterface; } namespace webrtc { class AudioTrackInterface : public ::webrtc::MediaStreamTrackInterface { -public: - // prevent constructor by default - AudioTrackInterface& operator=(AudioTrackInterface const&); - AudioTrackInterface(AudioTrackInterface const&); - AudioTrackInterface(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/external/webrtc/AudioTrackSinkInterface.h b/src/mc/external/webrtc/AudioTrackSinkInterface.h index d9ee1d6a92..300816f6a8 100644 --- a/src/mc/external/webrtc/AudioTrackSinkInterface.h +++ b/src/mc/external/webrtc/AudioTrackSinkInterface.h @@ -5,12 +5,6 @@ namespace webrtc { class AudioTrackSinkInterface { -public: - // prevent constructor by default - AudioTrackSinkInterface& operator=(AudioTrackSinkInterface const&); - AudioTrackSinkInterface(AudioTrackSinkInterface const&); - AudioTrackSinkInterface(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/external/webrtc/AudioTransport.h b/src/mc/external/webrtc/AudioTransport.h index 325c7d1b7d..54cc1eb0ac 100644 --- a/src/mc/external/webrtc/AudioTransport.h +++ b/src/mc/external/webrtc/AudioTransport.h @@ -5,12 +5,6 @@ namespace webrtc { class AudioTransport { -public: - // prevent constructor by default - AudioTransport& operator=(AudioTransport const&); - AudioTransport(AudioTransport const&); - AudioTransport(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/external/webrtc/BaseRtpStringExtension.h b/src/mc/external/webrtc/BaseRtpStringExtension.h index a85fa14562..7522056d57 100644 --- a/src/mc/external/webrtc/BaseRtpStringExtension.h +++ b/src/mc/external/webrtc/BaseRtpStringExtension.h @@ -5,12 +5,6 @@ namespace webrtc { class BaseRtpStringExtension { -public: - // prevent constructor by default - BaseRtpStringExtension& operator=(BaseRtpStringExtension const&); - BaseRtpStringExtension(BaseRtpStringExtension const&); - BaseRtpStringExtension(); - public: // static functions // NOLINTBEGIN diff --git a/src/mc/external/webrtc/BasicRegatheringController.h b/src/mc/external/webrtc/BasicRegatheringController.h index 06f2268eed..d405971af1 100644 --- a/src/mc/external/webrtc/BasicRegatheringController.h +++ b/src/mc/external/webrtc/BasicRegatheringController.h @@ -20,19 +20,7 @@ class BasicRegatheringController { // clang-format on // BasicRegatheringController inner types define - struct Config { - public: - // prevent constructor by default - Config& operator=(Config const&); - Config(Config const&); - Config(); - }; - -public: - // prevent constructor by default - BasicRegatheringController& operator=(BasicRegatheringController const&); - BasicRegatheringController(BasicRegatheringController const&); - BasicRegatheringController(); + struct Config {}; public: // member functions diff --git a/src/mc/external/webrtc/BiplanarYuv8Buffer.h b/src/mc/external/webrtc/BiplanarYuv8Buffer.h index 1eb461503a..d2d73d8158 100644 --- a/src/mc/external/webrtc/BiplanarYuv8Buffer.h +++ b/src/mc/external/webrtc/BiplanarYuv8Buffer.h @@ -8,12 +8,6 @@ namespace webrtc { class BiplanarYuv8Buffer : public ::webrtc::BiplanarYuvBuffer { -public: - // prevent constructor by default - BiplanarYuv8Buffer& operator=(BiplanarYuv8Buffer const&); - BiplanarYuv8Buffer(BiplanarYuv8Buffer const&); - BiplanarYuv8Buffer(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/external/webrtc/BiplanarYuvBuffer.h b/src/mc/external/webrtc/BiplanarYuvBuffer.h index 271b2fdcab..d81616244e 100644 --- a/src/mc/external/webrtc/BiplanarYuvBuffer.h +++ b/src/mc/external/webrtc/BiplanarYuvBuffer.h @@ -8,12 +8,6 @@ namespace webrtc { class BiplanarYuvBuffer : public ::webrtc::VideoFrameBuffer { -public: - // prevent constructor by default - BiplanarYuvBuffer& operator=(BiplanarYuvBuffer const&); - BiplanarYuvBuffer(BiplanarYuvBuffer const&); - BiplanarYuvBuffer(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/external/webrtc/BitrateEstimator.h b/src/mc/external/webrtc/BitrateEstimator.h index dfc7b312f9..22572f4dd9 100644 --- a/src/mc/external/webrtc/BitrateEstimator.h +++ b/src/mc/external/webrtc/BitrateEstimator.h @@ -11,12 +11,6 @@ namespace webrtc { class FieldTrialsView; } namespace webrtc { class BitrateEstimator { -public: - // prevent constructor by default - BitrateEstimator& operator=(BitrateEstimator const&); - BitrateEstimator(BitrateEstimator const&); - BitrateEstimator(); - public: // member functions // NOLINTBEGIN diff --git a/src/mc/external/webrtc/BitrateProber.h b/src/mc/external/webrtc/BitrateProber.h index d2697e67e4..236e0e94a8 100644 --- a/src/mc/external/webrtc/BitrateProber.h +++ b/src/mc/external/webrtc/BitrateProber.h @@ -21,19 +21,7 @@ struct BitrateProber { // clang-format on // BitrateProber inner types define - struct ProbeCluster { - public: - // prevent constructor by default - ProbeCluster& operator=(ProbeCluster const&); - ProbeCluster(ProbeCluster const&); - ProbeCluster(); - }; - -public: - // prevent constructor by default - BitrateProber& operator=(BitrateProber const&); - BitrateProber(BitrateProber const&); - BitrateProber(); + struct ProbeCluster {}; public: // member functions diff --git a/src/mc/external/webrtc/BitrateProberConfig.h b/src/mc/external/webrtc/BitrateProberConfig.h index 84fd432e8a..f75ed39843 100644 --- a/src/mc/external/webrtc/BitrateProberConfig.h +++ b/src/mc/external/webrtc/BitrateProberConfig.h @@ -10,12 +10,6 @@ namespace webrtc { class FieldTrialsView; } namespace webrtc { struct BitrateProberConfig { -public: - // prevent constructor by default - BitrateProberConfig& operator=(BitrateProberConfig const&); - BitrateProberConfig(BitrateProberConfig const&); - BitrateProberConfig(); - public: // member functions // NOLINTBEGIN diff --git a/src/mc/external/webrtc/BitrateStatisticsObserver.h b/src/mc/external/webrtc/BitrateStatisticsObserver.h index 207e506695..c92a5b82cb 100644 --- a/src/mc/external/webrtc/BitrateStatisticsObserver.h +++ b/src/mc/external/webrtc/BitrateStatisticsObserver.h @@ -5,12 +5,6 @@ namespace webrtc { class BitrateStatisticsObserver { -public: - // prevent constructor by default - BitrateStatisticsObserver& operator=(BitrateStatisticsObserver const&); - BitrateStatisticsObserver(BitrateStatisticsObserver const&); - BitrateStatisticsObserver(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/external/webrtc/BitrateTracker.h b/src/mc/external/webrtc/BitrateTracker.h index c013a43077..2a8ce33586 100644 --- a/src/mc/external/webrtc/BitrateTracker.h +++ b/src/mc/external/webrtc/BitrateTracker.h @@ -12,12 +12,6 @@ namespace webrtc { class Timestamp; } namespace webrtc { class BitrateTracker { -public: - // prevent constructor by default - BitrateTracker& operator=(BitrateTracker const&); - BitrateTracker(BitrateTracker const&); - BitrateTracker(); - public: // member functions // NOLINTBEGIN diff --git a/src/mc/external/webrtc/BundleManager.h b/src/mc/external/webrtc/BundleManager.h index f66c6b6042..33dc6acf0d 100644 --- a/src/mc/external/webrtc/BundleManager.h +++ b/src/mc/external/webrtc/BundleManager.h @@ -14,12 +14,6 @@ namespace cricket { class SessionDescription; } namespace webrtc { struct BundleManager { -public: - // prevent constructor by default - BundleManager& operator=(BundleManager const&); - BundleManager(BundleManager const&); - BundleManager(); - public: // member functions // NOLINTBEGIN diff --git a/src/mc/external/webrtc/BweSeparateAudioPacketsSettings.h b/src/mc/external/webrtc/BweSeparateAudioPacketsSettings.h index 71d9fba811..34d3c16031 100644 --- a/src/mc/external/webrtc/BweSeparateAudioPacketsSettings.h +++ b/src/mc/external/webrtc/BweSeparateAudioPacketsSettings.h @@ -11,12 +11,6 @@ namespace webrtc { class StructParametersParser; } namespace webrtc { struct BweSeparateAudioPacketsSettings { -public: - // prevent constructor by default - BweSeparateAudioPacketsSettings& operator=(BweSeparateAudioPacketsSettings const&); - BweSeparateAudioPacketsSettings(BweSeparateAudioPacketsSettings const&); - BweSeparateAudioPacketsSettings(); - public: // member functions // NOLINTBEGIN diff --git a/src/mc/external/webrtc/Bye.h b/src/mc/external/webrtc/Bye.h index c385086eae..d399116fb2 100644 --- a/src/mc/external/webrtc/Bye.h +++ b/src/mc/external/webrtc/Bye.h @@ -10,11 +10,6 @@ namespace webrtc::rtcp { class CommonHeader; } namespace webrtc::rtcp { class Bye { -public: - // prevent constructor by default - Bye& operator=(Bye const&); - Bye(Bye const&); - public: // member functions // NOLINTBEGIN diff --git a/src/mc/external/webrtc/Call.h b/src/mc/external/webrtc/Call.h index 7b5a6aa469..f264c1f8ca 100644 --- a/src/mc/external/webrtc/Call.h +++ b/src/mc/external/webrtc/Call.h @@ -58,12 +58,6 @@ class Call { Stats(); }; -public: - // prevent constructor by default - Call& operator=(Call const&); - Call(Call const&); - Call(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/external/webrtc/ChainDiffCalculator.h b/src/mc/external/webrtc/ChainDiffCalculator.h index 2eb3e8de8a..47114941ab 100644 --- a/src/mc/external/webrtc/ChainDiffCalculator.h +++ b/src/mc/external/webrtc/ChainDiffCalculator.h @@ -8,12 +8,6 @@ namespace webrtc { struct ChainDiffCalculator { -public: - // prevent constructor by default - ChainDiffCalculator& operator=(ChainDiffCalculator const&); - ChainDiffCalculator(ChainDiffCalculator const&); - ChainDiffCalculator(); - public: // member functions // NOLINTBEGIN diff --git a/src/mc/external/webrtc/Clock.h b/src/mc/external/webrtc/Clock.h index edc4e175d9..f4b67cd2e1 100644 --- a/src/mc/external/webrtc/Clock.h +++ b/src/mc/external/webrtc/Clock.h @@ -11,12 +11,6 @@ namespace webrtc { class Timestamp; } namespace webrtc { class Clock { -public: - // prevent constructor by default - Clock& operator=(Clock const&); - Clock(Clock const&); - Clock(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/external/webrtc/ColorSpaceExtension.h b/src/mc/external/webrtc/ColorSpaceExtension.h index fde5b418e6..3105081794 100644 --- a/src/mc/external/webrtc/ColorSpaceExtension.h +++ b/src/mc/external/webrtc/ColorSpaceExtension.h @@ -15,12 +15,6 @@ namespace webrtc { struct HdrMetadata; } namespace webrtc { class ColorSpaceExtension { -public: - // prevent constructor by default - ColorSpaceExtension& operator=(ColorSpaceExtension const&); - ColorSpaceExtension(ColorSpaceExtension const&); - ColorSpaceExtension(); - public: // static functions // NOLINTBEGIN diff --git a/src/mc/external/webrtc/CommonHeader.h b/src/mc/external/webrtc/CommonHeader.h index ed563a4bc5..7b79c7b911 100644 --- a/src/mc/external/webrtc/CommonHeader.h +++ b/src/mc/external/webrtc/CommonHeader.h @@ -5,12 +5,6 @@ namespace webrtc::rtcp { class CommonHeader { -public: - // prevent constructor by default - CommonHeader& operator=(CommonHeader const&); - CommonHeader(CommonHeader const&); - CommonHeader(); - public: // member functions // NOLINTBEGIN diff --git a/src/mc/external/webrtc/CongestionControlHandler.h b/src/mc/external/webrtc/CongestionControlHandler.h index efd9216826..ce2ebad25b 100644 --- a/src/mc/external/webrtc/CongestionControlHandler.h +++ b/src/mc/external/webrtc/CongestionControlHandler.h @@ -11,12 +11,6 @@ namespace webrtc { struct TargetTransferRate; } namespace webrtc { class CongestionControlHandler { -public: - // prevent constructor by default - CongestionControlHandler& operator=(CongestionControlHandler const&); - CongestionControlHandler(CongestionControlHandler const&); - CongestionControlHandler(); - public: // member functions // NOLINTBEGIN diff --git a/src/mc/external/webrtc/CongestionWindowConfig.h b/src/mc/external/webrtc/CongestionWindowConfig.h index e0272e32aa..9c90bdf375 100644 --- a/src/mc/external/webrtc/CongestionWindowConfig.h +++ b/src/mc/external/webrtc/CongestionWindowConfig.h @@ -10,12 +10,6 @@ namespace webrtc { class StructParametersParser; } namespace webrtc { struct CongestionWindowConfig { -public: - // prevent constructor by default - CongestionWindowConfig& operator=(CongestionWindowConfig const&); - CongestionWindowConfig(CongestionWindowConfig const&); - CongestionWindowConfig(); - public: // member functions // NOLINTBEGIN diff --git a/src/mc/external/webrtc/CongestionWindowPushbackController.h b/src/mc/external/webrtc/CongestionWindowPushbackController.h index c60ffd7c80..3903d1006f 100644 --- a/src/mc/external/webrtc/CongestionWindowPushbackController.h +++ b/src/mc/external/webrtc/CongestionWindowPushbackController.h @@ -11,12 +11,6 @@ namespace webrtc { class FieldTrialsView; } namespace webrtc { class CongestionWindowPushbackController { -public: - // prevent constructor by default - CongestionWindowPushbackController& operator=(CongestionWindowPushbackController const&); - CongestionWindowPushbackController(CongestionWindowPushbackController const&); - CongestionWindowPushbackController(); - public: // member functions // NOLINTBEGIN diff --git a/src/mc/external/webrtc/CreateSessionDescriptionObserver.h b/src/mc/external/webrtc/CreateSessionDescriptionObserver.h index 74fd8c4f04..a8a3bc54be 100644 --- a/src/mc/external/webrtc/CreateSessionDescriptionObserver.h +++ b/src/mc/external/webrtc/CreateSessionDescriptionObserver.h @@ -14,12 +14,6 @@ namespace webrtc { class SessionDescriptionInterface; } namespace webrtc { class CreateSessionDescriptionObserver : public ::webrtc::RefCountInterface { -public: - // prevent constructor by default - CreateSessionDescriptionObserver& operator=(CreateSessionDescriptionObserver const&); - CreateSessionDescriptionObserver(CreateSessionDescriptionObserver const&); - CreateSessionDescriptionObserver(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/external/webrtc/CsrcAudioLevel.h b/src/mc/external/webrtc/CsrcAudioLevel.h index 6a4171db3b..bcb71db9ff 100644 --- a/src/mc/external/webrtc/CsrcAudioLevel.h +++ b/src/mc/external/webrtc/CsrcAudioLevel.h @@ -4,12 +4,6 @@ namespace webrtc { -class CsrcAudioLevel { -public: - // prevent constructor by default - CsrcAudioLevel& operator=(CsrcAudioLevel const&); - CsrcAudioLevel(CsrcAudioLevel const&); - CsrcAudioLevel(); -}; +class CsrcAudioLevel {}; } // namespace webrtc diff --git a/src/mc/external/webrtc/CustomAudioAnalyzer.h b/src/mc/external/webrtc/CustomAudioAnalyzer.h index 7de9a3fd1b..069cf9b912 100644 --- a/src/mc/external/webrtc/CustomAudioAnalyzer.h +++ b/src/mc/external/webrtc/CustomAudioAnalyzer.h @@ -10,12 +10,6 @@ namespace webrtc { class AudioBuffer; } namespace webrtc { class CustomAudioAnalyzer { -public: - // prevent constructor by default - CustomAudioAnalyzer& operator=(CustomAudioAnalyzer const&); - CustomAudioAnalyzer(CustomAudioAnalyzer const&); - CustomAudioAnalyzer(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/external/webrtc/CustomProcessing.h b/src/mc/external/webrtc/CustomProcessing.h index 0d9ca573f3..9664c33e9e 100644 --- a/src/mc/external/webrtc/CustomProcessing.h +++ b/src/mc/external/webrtc/CustomProcessing.h @@ -13,12 +13,6 @@ namespace webrtc { class AudioBuffer; } namespace webrtc { class CustomProcessing { -public: - // prevent constructor by default - CustomProcessing& operator=(CustomProcessing const&); - CustomProcessing(CustomProcessing const&); - CustomProcessing(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/external/webrtc/DataChannelController.h b/src/mc/external/webrtc/DataChannelController.h index 51b734080a..c68cc7eb5d 100644 --- a/src/mc/external/webrtc/DataChannelController.h +++ b/src/mc/external/webrtc/DataChannelController.h @@ -24,12 +24,6 @@ namespace webrtc { struct InternalDataChannelInit; } namespace webrtc { class DataChannelController { -public: - // prevent constructor by default - DataChannelController& operator=(DataChannelController const&); - DataChannelController(DataChannelController const&); - DataChannelController(); - public: // member functions // NOLINTBEGIN diff --git a/src/mc/external/webrtc/DataChannelInterface.h b/src/mc/external/webrtc/DataChannelInterface.h index c1dfbf7045..49edbbf962 100644 --- a/src/mc/external/webrtc/DataChannelInterface.h +++ b/src/mc/external/webrtc/DataChannelInterface.h @@ -26,12 +26,6 @@ class DataChannelInterface : public ::webrtc::RefCountInterface { KClosed = 3, }; -public: - // prevent constructor by default - DataChannelInterface& operator=(DataChannelInterface const&); - DataChannelInterface(DataChannelInterface const&); - DataChannelInterface(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/external/webrtc/DataChannelObserver.h b/src/mc/external/webrtc/DataChannelObserver.h index e71f080b0a..22c8376644 100644 --- a/src/mc/external/webrtc/DataChannelObserver.h +++ b/src/mc/external/webrtc/DataChannelObserver.h @@ -10,12 +10,6 @@ namespace webrtc { struct DataBuffer; } namespace webrtc { class DataChannelObserver { -public: - // prevent constructor by default - DataChannelObserver& operator=(DataChannelObserver const&); - DataChannelObserver(DataChannelObserver const&); - DataChannelObserver(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/external/webrtc/DataChannelSink.h b/src/mc/external/webrtc/DataChannelSink.h index 3f950da26d..c4419a858f 100644 --- a/src/mc/external/webrtc/DataChannelSink.h +++ b/src/mc/external/webrtc/DataChannelSink.h @@ -14,12 +14,6 @@ namespace webrtc { class RTCError; } namespace webrtc { class DataChannelSink { -public: - // prevent constructor by default - DataChannelSink& operator=(DataChannelSink const&); - DataChannelSink(DataChannelSink const&); - DataChannelSink(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/external/webrtc/DataChannelStats.h b/src/mc/external/webrtc/DataChannelStats.h index 892a31d094..67ab7bcb8f 100644 --- a/src/mc/external/webrtc/DataChannelStats.h +++ b/src/mc/external/webrtc/DataChannelStats.h @@ -5,12 +5,6 @@ namespace webrtc { struct DataChannelStats { -public: - // prevent constructor by default - DataChannelStats& operator=(DataChannelStats const&); - DataChannelStats(DataChannelStats const&); - DataChannelStats(); - public: // member functions // NOLINTBEGIN diff --git a/src/mc/external/webrtc/DataChannelTransportInterface.h b/src/mc/external/webrtc/DataChannelTransportInterface.h index 2fc996fbbd..008393a867 100644 --- a/src/mc/external/webrtc/DataChannelTransportInterface.h +++ b/src/mc/external/webrtc/DataChannelTransportInterface.h @@ -4,12 +4,6 @@ namespace webrtc { -class DataChannelTransportInterface { -public: - // prevent constructor by default - DataChannelTransportInterface& operator=(DataChannelTransportInterface const&); - DataChannelTransportInterface(DataChannelTransportInterface const&); - DataChannelTransportInterface(); -}; +class DataChannelTransportInterface {}; } // namespace webrtc diff --git a/src/mc/external/webrtc/DataRate.h b/src/mc/external/webrtc/DataRate.h index f6ee60f47d..d82c305207 100644 --- a/src/mc/external/webrtc/DataRate.h +++ b/src/mc/external/webrtc/DataRate.h @@ -7,12 +7,6 @@ namespace webrtc { -class DataRate : public ::webrtc::rtc_units_impl::RelativeUnit<::webrtc::DataRate> { -public: - // prevent constructor by default - DataRate& operator=(DataRate const&); - DataRate(DataRate const&); - DataRate(); -}; +class DataRate : public ::webrtc::rtc_units_impl::RelativeUnit<::webrtc::DataRate> {}; } // namespace webrtc diff --git a/src/mc/external/webrtc/DataSize.h b/src/mc/external/webrtc/DataSize.h index a3aa5035fe..9a60c70cf1 100644 --- a/src/mc/external/webrtc/DataSize.h +++ b/src/mc/external/webrtc/DataSize.h @@ -7,12 +7,6 @@ namespace webrtc { -class DataSize : public ::webrtc::rtc_units_impl::RelativeUnit<::webrtc::DataSize> { -public: - // prevent constructor by default - DataSize& operator=(DataSize const&); - DataSize(DataSize const&); - DataSize(); -}; +class DataSize : public ::webrtc::rtc_units_impl::RelativeUnit<::webrtc::DataSize> {}; } // namespace webrtc diff --git a/src/mc/external/webrtc/DcSctpTransport.h b/src/mc/external/webrtc/DcSctpTransport.h index b9985d6a34..0e3caf546f 100644 --- a/src/mc/external/webrtc/DcSctpTransport.h +++ b/src/mc/external/webrtc/DcSctpTransport.h @@ -14,12 +14,6 @@ namespace webrtc { class Environment; } namespace webrtc { class DcSctpTransport { -public: - // prevent constructor by default - DcSctpTransport& operator=(DcSctpTransport const&); - DcSctpTransport(DcSctpTransport const&); - DcSctpTransport(); - public: // member functions // NOLINTBEGIN diff --git a/src/mc/external/webrtc/DecodedImageCallback.h b/src/mc/external/webrtc/DecodedImageCallback.h index 69d08f75ed..246a6cae8b 100644 --- a/src/mc/external/webrtc/DecodedImageCallback.h +++ b/src/mc/external/webrtc/DecodedImageCallback.h @@ -10,12 +10,6 @@ namespace webrtc { class VideoFrame; } namespace webrtc { class DecodedImageCallback { -public: - // prevent constructor by default - DecodedImageCallback& operator=(DecodedImageCallback const&); - DecodedImageCallback(DecodedImageCallback const&); - DecodedImageCallback(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/external/webrtc/DefaultIceTransport.h b/src/mc/external/webrtc/DefaultIceTransport.h index 70b7005ef9..8d5f6f4c9b 100644 --- a/src/mc/external/webrtc/DefaultIceTransport.h +++ b/src/mc/external/webrtc/DefaultIceTransport.h @@ -10,12 +10,6 @@ namespace cricket { class P2PTransportChannel; } namespace webrtc { class DefaultIceTransport { -public: - // prevent constructor by default - DefaultIceTransport& operator=(DefaultIceTransport const&); - DefaultIceTransport(DefaultIceTransport const&); - DefaultIceTransport(); - public: // member functions // NOLINTBEGIN diff --git a/src/mc/external/webrtc/DelayBasedBwe.h b/src/mc/external/webrtc/DelayBasedBwe.h index f0c9872b21..4e92c54352 100644 --- a/src/mc/external/webrtc/DelayBasedBwe.h +++ b/src/mc/external/webrtc/DelayBasedBwe.h @@ -26,11 +26,6 @@ class DelayBasedBwe { // DelayBasedBwe inner types define struct Result { - public: - // prevent constructor by default - Result& operator=(Result const&); - Result(Result const&); - public: // member functions // NOLINTBEGIN @@ -44,12 +39,6 @@ class DelayBasedBwe { // NOLINTEND }; -public: - // prevent constructor by default - DelayBasedBwe& operator=(DelayBasedBwe const&); - DelayBasedBwe(DelayBasedBwe const&); - DelayBasedBwe(); - public: // member functions // NOLINTBEGIN diff --git a/src/mc/external/webrtc/DependencyDescriptor.h b/src/mc/external/webrtc/DependencyDescriptor.h index ff545f3051..09e3e21c00 100644 --- a/src/mc/external/webrtc/DependencyDescriptor.h +++ b/src/mc/external/webrtc/DependencyDescriptor.h @@ -5,12 +5,6 @@ namespace webrtc { struct DependencyDescriptor { -public: - // prevent constructor by default - DependencyDescriptor& operator=(DependencyDescriptor const&); - DependencyDescriptor(DependencyDescriptor const&); - DependencyDescriptor(); - public: // member functions // NOLINTBEGIN diff --git a/src/mc/external/webrtc/Dlrr.h b/src/mc/external/webrtc/Dlrr.h index 0b33e8e422..efb5b8a58c 100644 --- a/src/mc/external/webrtc/Dlrr.h +++ b/src/mc/external/webrtc/Dlrr.h @@ -5,11 +5,6 @@ namespace webrtc::rtcp { struct Dlrr { -public: - // prevent constructor by default - Dlrr& operator=(Dlrr const&); - Dlrr(Dlrr const&); - public: // member functions // NOLINTBEGIN diff --git a/src/mc/external/webrtc/DtlsSrtpTransport.h b/src/mc/external/webrtc/DtlsSrtpTransport.h index 284533b13c..3143f72cb7 100644 --- a/src/mc/external/webrtc/DtlsSrtpTransport.h +++ b/src/mc/external/webrtc/DtlsSrtpTransport.h @@ -15,12 +15,6 @@ namespace webrtc { class FieldTrialsView; } namespace webrtc { class DtlsSrtpTransport { -public: - // prevent constructor by default - DtlsSrtpTransport& operator=(DtlsSrtpTransport const&); - DtlsSrtpTransport(DtlsSrtpTransport const&); - DtlsSrtpTransport(); - public: // member functions // NOLINTBEGIN diff --git a/src/mc/external/webrtc/DtlsTransport.h b/src/mc/external/webrtc/DtlsTransport.h index 9afdfe53b2..1cd86280b4 100644 --- a/src/mc/external/webrtc/DtlsTransport.h +++ b/src/mc/external/webrtc/DtlsTransport.h @@ -14,12 +14,6 @@ namespace webrtc { class DtlsTransportInformation; } namespace webrtc { class DtlsTransport { -public: - // prevent constructor by default - DtlsTransport& operator=(DtlsTransport const&); - DtlsTransport(DtlsTransport const&); - DtlsTransport(); - public: // member functions // NOLINTBEGIN diff --git a/src/mc/external/webrtc/DtlsTransportInterface.h b/src/mc/external/webrtc/DtlsTransportInterface.h index c462f18248..4f19ad6f0c 100644 --- a/src/mc/external/webrtc/DtlsTransportInterface.h +++ b/src/mc/external/webrtc/DtlsTransportInterface.h @@ -16,12 +16,6 @@ namespace webrtc { class IceTransportInterface; } namespace webrtc { class DtlsTransportInterface : public ::webrtc::RefCountInterface { -public: - // prevent constructor by default - DtlsTransportInterface& operator=(DtlsTransportInterface const&); - DtlsTransportInterface(DtlsTransportInterface const&); - DtlsTransportInterface(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/external/webrtc/DtlsTransportObserverInterface.h b/src/mc/external/webrtc/DtlsTransportObserverInterface.h index fc06072905..d4c0d90fe4 100644 --- a/src/mc/external/webrtc/DtlsTransportObserverInterface.h +++ b/src/mc/external/webrtc/DtlsTransportObserverInterface.h @@ -11,12 +11,6 @@ namespace webrtc { class RTCError; } namespace webrtc { class DtlsTransportObserverInterface { -public: - // prevent constructor by default - DtlsTransportObserverInterface& operator=(DtlsTransportObserverInterface const&); - DtlsTransportObserverInterface(DtlsTransportObserverInterface const&); - DtlsTransportObserverInterface(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/external/webrtc/DtmfProviderInterface.h b/src/mc/external/webrtc/DtmfProviderInterface.h index b02a4e6056..3a7b2c2bb0 100644 --- a/src/mc/external/webrtc/DtmfProviderInterface.h +++ b/src/mc/external/webrtc/DtmfProviderInterface.h @@ -4,12 +4,6 @@ namespace webrtc { -class DtmfProviderInterface { -public: - // prevent constructor by default - DtmfProviderInterface& operator=(DtmfProviderInterface const&); - DtmfProviderInterface(DtmfProviderInterface const&); - DtmfProviderInterface(); -}; +class DtmfProviderInterface {}; } // namespace webrtc diff --git a/src/mc/external/webrtc/DtmfSender.h b/src/mc/external/webrtc/DtmfSender.h index 9d183c5e5f..42d9d16ee7 100644 --- a/src/mc/external/webrtc/DtmfSender.h +++ b/src/mc/external/webrtc/DtmfSender.h @@ -14,12 +14,6 @@ namespace webrtc { class TaskQueueBase; } namespace webrtc { class DtmfSender { -public: - // prevent constructor by default - DtmfSender& operator=(DtmfSender const&); - DtmfSender(DtmfSender const&); - DtmfSender(); - public: // member functions // NOLINTBEGIN diff --git a/src/mc/external/webrtc/DtmfSenderInterface.h b/src/mc/external/webrtc/DtmfSenderInterface.h index e77dd691ef..25a36db9fa 100644 --- a/src/mc/external/webrtc/DtmfSenderInterface.h +++ b/src/mc/external/webrtc/DtmfSenderInterface.h @@ -13,12 +13,6 @@ namespace webrtc { class DtmfSenderObserverInterface; } namespace webrtc { class DtmfSenderInterface : public ::webrtc::RefCountInterface { -public: - // prevent constructor by default - DtmfSenderInterface& operator=(DtmfSenderInterface const&); - DtmfSenderInterface(DtmfSenderInterface const&); - DtmfSenderInterface(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/external/webrtc/DtmfSenderObserverInterface.h b/src/mc/external/webrtc/DtmfSenderObserverInterface.h index 42e0aa9cba..734d20acb8 100644 --- a/src/mc/external/webrtc/DtmfSenderObserverInterface.h +++ b/src/mc/external/webrtc/DtmfSenderObserverInterface.h @@ -5,12 +5,6 @@ namespace webrtc { class DtmfSenderObserverInterface { -public: - // prevent constructor by default - DtmfSenderObserverInterface& operator=(DtmfSenderObserverInterface const&); - DtmfSenderObserverInterface(DtmfSenderObserverInterface const&); - DtmfSenderObserverInterface(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/external/webrtc/EchoControl.h b/src/mc/external/webrtc/EchoControl.h index 3810c3ade6..ed03bb72d3 100644 --- a/src/mc/external/webrtc/EchoControl.h +++ b/src/mc/external/webrtc/EchoControl.h @@ -33,12 +33,6 @@ class EchoControl { Metrics(); }; -public: - // prevent constructor by default - EchoControl& operator=(EchoControl const&); - EchoControl(EchoControl const&); - EchoControl(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/external/webrtc/EchoControlFactory.h b/src/mc/external/webrtc/EchoControlFactory.h index 44b3050599..99e1f80185 100644 --- a/src/mc/external/webrtc/EchoControlFactory.h +++ b/src/mc/external/webrtc/EchoControlFactory.h @@ -10,12 +10,6 @@ namespace webrtc { class EchoControl; } namespace webrtc { class EchoControlFactory { -public: - // prevent constructor by default - EchoControlFactory& operator=(EchoControlFactory const&); - EchoControlFactory(EchoControlFactory const&); - EchoControlFactory(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/external/webrtc/EchoDetector.h b/src/mc/external/webrtc/EchoDetector.h index 1371495c9d..024d497024 100644 --- a/src/mc/external/webrtc/EchoDetector.h +++ b/src/mc/external/webrtc/EchoDetector.h @@ -30,12 +30,6 @@ class EchoDetector : public ::webrtc::RefCountInterface { Metrics(); }; -public: - // prevent constructor by default - EchoDetector& operator=(EchoDetector const&); - EchoDetector(EchoDetector const&); - EchoDetector(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/external/webrtc/EncodedImageBufferInterface.h b/src/mc/external/webrtc/EncodedImageBufferInterface.h index 0cee40b1cc..50a520f1d4 100644 --- a/src/mc/external/webrtc/EncodedImageBufferInterface.h +++ b/src/mc/external/webrtc/EncodedImageBufferInterface.h @@ -8,12 +8,6 @@ namespace webrtc { class EncodedImageBufferInterface : public ::webrtc::RefCountInterface { -public: - // prevent constructor by default - EncodedImageBufferInterface& operator=(EncodedImageBufferInterface const&); - EncodedImageBufferInterface(EncodedImageBufferInterface const&); - EncodedImageBufferInterface(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/external/webrtc/EncodedImageCallback.h b/src/mc/external/webrtc/EncodedImageCallback.h index c0e015bb62..16ef55bcda 100644 --- a/src/mc/external/webrtc/EncodedImageCallback.h +++ b/src/mc/external/webrtc/EncodedImageCallback.h @@ -46,12 +46,6 @@ class EncodedImageCallback { KDroppedByEncoder = 1, }; -public: - // prevent constructor by default - EncodedImageCallback& operator=(EncodedImageCallback const&); - EncodedImageCallback(EncodedImageCallback const&); - EncodedImageCallback(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/external/webrtc/EncoderSwitchRequestCallback.h b/src/mc/external/webrtc/EncoderSwitchRequestCallback.h index 745395122f..6beaf9b513 100644 --- a/src/mc/external/webrtc/EncoderSwitchRequestCallback.h +++ b/src/mc/external/webrtc/EncoderSwitchRequestCallback.h @@ -10,12 +10,6 @@ namespace webrtc { struct SdpVideoFormat; } namespace webrtc { class EncoderSwitchRequestCallback { -public: - // prevent constructor by default - EncoderSwitchRequestCallback& operator=(EncoderSwitchRequestCallback const&); - EncoderSwitchRequestCallback(EncoderSwitchRequestCallback const&); - EncoderSwitchRequestCallback(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/external/webrtc/EnvironmentFactory.h b/src/mc/external/webrtc/EnvironmentFactory.h index 1e7565af57..54958ca6cc 100644 --- a/src/mc/external/webrtc/EnvironmentFactory.h +++ b/src/mc/external/webrtc/EnvironmentFactory.h @@ -13,12 +13,6 @@ namespace webrtc { class TaskQueueFactory; } namespace webrtc { class EnvironmentFactory { -public: - // prevent constructor by default - EnvironmentFactory& operator=(EnvironmentFactory const&); - EnvironmentFactory(EnvironmentFactory const&); - EnvironmentFactory(); - public: // member functions // NOLINTBEGIN diff --git a/src/mc/external/webrtc/EventTracer.h b/src/mc/external/webrtc/EventTracer.h index 6ddc6ba851..a67f806758 100644 --- a/src/mc/external/webrtc/EventTracer.h +++ b/src/mc/external/webrtc/EventTracer.h @@ -5,12 +5,6 @@ namespace webrtc { struct EventTracer { -public: - // prevent constructor by default - EventTracer& operator=(EventTracer const&); - EventTracer(EventTracer const&); - EventTracer(); - public: // static functions // NOLINTBEGIN diff --git a/src/mc/external/webrtc/ExtendedReports.h b/src/mc/external/webrtc/ExtendedReports.h index 5f976bf21a..604643bf00 100644 --- a/src/mc/external/webrtc/ExtendedReports.h +++ b/src/mc/external/webrtc/ExtendedReports.h @@ -13,11 +13,6 @@ namespace webrtc::rtcp { struct ReceiveTimeInfo; } namespace webrtc::rtcp { class ExtendedReports { -public: - // prevent constructor by default - ExtendedReports& operator=(ExtendedReports const&); - ExtendedReports(ExtendedReports const&); - public: // member functions // NOLINTBEGIN diff --git a/src/mc/external/webrtc/FecController.h b/src/mc/external/webrtc/FecController.h index d7f98a5ddf..b976a9cae0 100644 --- a/src/mc/external/webrtc/FecController.h +++ b/src/mc/external/webrtc/FecController.h @@ -13,12 +13,6 @@ namespace webrtc { class VCMProtectionCallback; } namespace webrtc { class FecController { -public: - // prevent constructor by default - FecController& operator=(FecController const&); - FecController(FecController const&); - FecController(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/external/webrtc/FecControllerFactoryInterface.h b/src/mc/external/webrtc/FecControllerFactoryInterface.h index 5f8026403e..2b1becaf06 100644 --- a/src/mc/external/webrtc/FecControllerFactoryInterface.h +++ b/src/mc/external/webrtc/FecControllerFactoryInterface.h @@ -11,12 +11,6 @@ namespace webrtc { class FecController; } namespace webrtc { class FecControllerFactoryInterface { -public: - // prevent constructor by default - FecControllerFactoryInterface& operator=(FecControllerFactoryInterface const&); - FecControllerFactoryInterface(FecControllerFactoryInterface const&); - FecControllerFactoryInterface(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/external/webrtc/FecControllerOverride.h b/src/mc/external/webrtc/FecControllerOverride.h index 1b07164c1f..62db2e672e 100644 --- a/src/mc/external/webrtc/FecControllerOverride.h +++ b/src/mc/external/webrtc/FecControllerOverride.h @@ -5,12 +5,6 @@ namespace webrtc { class FecControllerOverride { -public: - // prevent constructor by default - FecControllerOverride& operator=(FecControllerOverride const&); - FecControllerOverride(FecControllerOverride const&); - FecControllerOverride(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/external/webrtc/FecHeaderReader.h b/src/mc/external/webrtc/FecHeaderReader.h index f88b962125..7522ed7aa0 100644 --- a/src/mc/external/webrtc/FecHeaderReader.h +++ b/src/mc/external/webrtc/FecHeaderReader.h @@ -5,12 +5,6 @@ namespace webrtc { class FecHeaderReader { -public: - // prevent constructor by default - FecHeaderReader& operator=(FecHeaderReader const&); - FecHeaderReader(FecHeaderReader const&); - FecHeaderReader(); - public: // member functions // NOLINTBEGIN diff --git a/src/mc/external/webrtc/FecHeaderWriter.h b/src/mc/external/webrtc/FecHeaderWriter.h index 45cd58b576..158f0d319d 100644 --- a/src/mc/external/webrtc/FecHeaderWriter.h +++ b/src/mc/external/webrtc/FecHeaderWriter.h @@ -5,12 +5,6 @@ namespace webrtc { class FecHeaderWriter { -public: - // prevent constructor by default - FecHeaderWriter& operator=(FecHeaderWriter const&); - FecHeaderWriter(FecHeaderWriter const&); - FecHeaderWriter(); - public: // member functions // NOLINTBEGIN diff --git a/src/mc/external/webrtc/FieldTrialFlag.h b/src/mc/external/webrtc/FieldTrialFlag.h index 8437e45302..6710427c77 100644 --- a/src/mc/external/webrtc/FieldTrialFlag.h +++ b/src/mc/external/webrtc/FieldTrialFlag.h @@ -5,12 +5,6 @@ namespace webrtc { class FieldTrialFlag { -public: - // prevent constructor by default - FieldTrialFlag& operator=(FieldTrialFlag const&); - FieldTrialFlag(FieldTrialFlag const&); - FieldTrialFlag(); - public: // member functions // NOLINTBEGIN diff --git a/src/mc/external/webrtc/FieldTrialListBase.h b/src/mc/external/webrtc/FieldTrialListBase.h index 3bfd26bdac..5a2da36fb4 100644 --- a/src/mc/external/webrtc/FieldTrialListBase.h +++ b/src/mc/external/webrtc/FieldTrialListBase.h @@ -5,12 +5,6 @@ namespace webrtc { class FieldTrialListBase { -public: - // prevent constructor by default - FieldTrialListBase& operator=(FieldTrialListBase const&); - FieldTrialListBase(FieldTrialListBase const&); - FieldTrialListBase(); - public: // member functions // NOLINTBEGIN diff --git a/src/mc/external/webrtc/FieldTrialParameterInterface.h b/src/mc/external/webrtc/FieldTrialParameterInterface.h index 0468843c15..c4d6fd1c43 100644 --- a/src/mc/external/webrtc/FieldTrialParameterInterface.h +++ b/src/mc/external/webrtc/FieldTrialParameterInterface.h @@ -5,12 +5,6 @@ namespace webrtc { class FieldTrialParameterInterface { -public: - // prevent constructor by default - FieldTrialParameterInterface& operator=(FieldTrialParameterInterface const&); - FieldTrialParameterInterface(FieldTrialParameterInterface const&); - FieldTrialParameterInterface(); - public: // member functions // NOLINTBEGIN diff --git a/src/mc/external/webrtc/FieldTrialsView.h b/src/mc/external/webrtc/FieldTrialsView.h index 454418040d..6e8688b7c2 100644 --- a/src/mc/external/webrtc/FieldTrialsView.h +++ b/src/mc/external/webrtc/FieldTrialsView.h @@ -5,12 +5,6 @@ namespace webrtc { class FieldTrialsView { -public: - // prevent constructor by default - FieldTrialsView& operator=(FieldTrialsView const&); - FieldTrialsView(FieldTrialsView const&); - FieldTrialsView(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/external/webrtc/Fir.h b/src/mc/external/webrtc/Fir.h index 6c622ab9ee..aa6f3e8190 100644 --- a/src/mc/external/webrtc/Fir.h +++ b/src/mc/external/webrtc/Fir.h @@ -10,11 +10,6 @@ namespace webrtc::rtcp { class CommonHeader; } namespace webrtc::rtcp { class Fir { -public: - // prevent constructor by default - Fir& operator=(Fir const&); - Fir(Fir const&); - public: // member functions // NOLINTBEGIN diff --git a/src/mc/external/webrtc/Flexfec03HeaderReader.h b/src/mc/external/webrtc/Flexfec03HeaderReader.h index de96d6f436..517c69a8f9 100644 --- a/src/mc/external/webrtc/Flexfec03HeaderReader.h +++ b/src/mc/external/webrtc/Flexfec03HeaderReader.h @@ -5,11 +5,6 @@ namespace webrtc { class Flexfec03HeaderReader { -public: - // prevent constructor by default - Flexfec03HeaderReader& operator=(Flexfec03HeaderReader const&); - Flexfec03HeaderReader(Flexfec03HeaderReader const&); - public: // member functions // NOLINTBEGIN diff --git a/src/mc/external/webrtc/Flexfec03HeaderWriter.h b/src/mc/external/webrtc/Flexfec03HeaderWriter.h index 0f014a4ef6..34487a30d6 100644 --- a/src/mc/external/webrtc/Flexfec03HeaderWriter.h +++ b/src/mc/external/webrtc/Flexfec03HeaderWriter.h @@ -5,11 +5,6 @@ namespace webrtc { class Flexfec03HeaderWriter { -public: - // prevent constructor by default - Flexfec03HeaderWriter& operator=(Flexfec03HeaderWriter const&); - Flexfec03HeaderWriter(Flexfec03HeaderWriter const&); - public: // member functions // NOLINTBEGIN diff --git a/src/mc/external/webrtc/FlexfecReceiveStream.h b/src/mc/external/webrtc/FlexfecReceiveStream.h index c64ecce969..81313a7218 100644 --- a/src/mc/external/webrtc/FlexfecReceiveStream.h +++ b/src/mc/external/webrtc/FlexfecReceiveStream.h @@ -40,12 +40,6 @@ class FlexfecReceiveStream : public ::webrtc::RtpPacketSinkInterface, public ::w Config(); }; -public: - // prevent constructor by default - FlexfecReceiveStream& operator=(FlexfecReceiveStream const&); - FlexfecReceiveStream(FlexfecReceiveStream const&); - FlexfecReceiveStream(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/external/webrtc/FlexfecSender.h b/src/mc/external/webrtc/FlexfecSender.h index 89ae1b270c..c87515644b 100644 --- a/src/mc/external/webrtc/FlexfecSender.h +++ b/src/mc/external/webrtc/FlexfecSender.h @@ -13,12 +13,6 @@ namespace webrtc { struct RtpState; } namespace webrtc { class FlexfecSender { -public: - // prevent constructor by default - FlexfecSender& operator=(FlexfecSender const&); - FlexfecSender(FlexfecSender const&); - FlexfecSender(); - public: // member functions // NOLINTBEGIN diff --git a/src/mc/external/webrtc/ForwardErrorCorrection.h b/src/mc/external/webrtc/ForwardErrorCorrection.h index a49939405f..a175db7ce5 100644 --- a/src/mc/external/webrtc/ForwardErrorCorrection.h +++ b/src/mc/external/webrtc/ForwardErrorCorrection.h @@ -24,11 +24,6 @@ class ForwardErrorCorrection { // ForwardErrorCorrection inner types define class Packet { - public: - // prevent constructor by default - Packet& operator=(Packet const&); - Packet(Packet const&); - public: // member functions // NOLINTBEGIN @@ -49,12 +44,6 @@ class ForwardErrorCorrection { }; class ProtectedPacket { - public: - // prevent constructor by default - ProtectedPacket& operator=(ProtectedPacket const&); - ProtectedPacket(ProtectedPacket const&); - ProtectedPacket(); - public: // member functions // NOLINTBEGIN @@ -69,12 +58,6 @@ class ForwardErrorCorrection { }; class ReceivedFecPacket { - public: - // prevent constructor by default - ReceivedFecPacket& operator=(ReceivedFecPacket const&); - ReceivedFecPacket(ReceivedFecPacket const&); - ReceivedFecPacket(); - public: // member functions // NOLINTBEGIN @@ -88,12 +71,6 @@ class ForwardErrorCorrection { // NOLINTEND }; -public: - // prevent constructor by default - ForwardErrorCorrection& operator=(ForwardErrorCorrection const&); - ForwardErrorCorrection(ForwardErrorCorrection const&); - ForwardErrorCorrection(); - public: // member functions // NOLINTBEGIN diff --git a/src/mc/external/webrtc/FrameCountObserver.h b/src/mc/external/webrtc/FrameCountObserver.h index 4a8839da14..e8d3e3dd2f 100644 --- a/src/mc/external/webrtc/FrameCountObserver.h +++ b/src/mc/external/webrtc/FrameCountObserver.h @@ -10,12 +10,6 @@ namespace webrtc { struct FrameCounts; } namespace webrtc { class FrameCountObserver { -public: - // prevent constructor by default - FrameCountObserver& operator=(FrameCountObserver const&); - FrameCountObserver(FrameCountObserver const&); - FrameCountObserver(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/external/webrtc/FrameDecryptorInterface.h b/src/mc/external/webrtc/FrameDecryptorInterface.h index 04317022b6..7f5e54f8ba 100644 --- a/src/mc/external/webrtc/FrameDecryptorInterface.h +++ b/src/mc/external/webrtc/FrameDecryptorInterface.h @@ -38,12 +38,6 @@ class FrameDecryptorInterface : public ::webrtc::RefCountInterface { Result(); }; -public: - // prevent constructor by default - FrameDecryptorInterface& operator=(FrameDecryptorInterface const&); - FrameDecryptorInterface(FrameDecryptorInterface const&); - FrameDecryptorInterface(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/external/webrtc/FrameDependenciesCalculator.h b/src/mc/external/webrtc/FrameDependenciesCalculator.h index b2fbf28f84..78d46c1a9e 100644 --- a/src/mc/external/webrtc/FrameDependenciesCalculator.h +++ b/src/mc/external/webrtc/FrameDependenciesCalculator.h @@ -13,12 +13,6 @@ namespace webrtc { struct CodecBufferUsage; } namespace webrtc { struct FrameDependenciesCalculator { -public: - // prevent constructor by default - FrameDependenciesCalculator& operator=(FrameDependenciesCalculator const&); - FrameDependenciesCalculator(FrameDependenciesCalculator const&); - FrameDependenciesCalculator(); - public: // member functions // NOLINTBEGIN diff --git a/src/mc/external/webrtc/FrameEncryptorInterface.h b/src/mc/external/webrtc/FrameEncryptorInterface.h index ffe6e5487c..ee85c89958 100644 --- a/src/mc/external/webrtc/FrameEncryptorInterface.h +++ b/src/mc/external/webrtc/FrameEncryptorInterface.h @@ -9,12 +9,6 @@ namespace webrtc { class FrameEncryptorInterface : public ::webrtc::RefCountInterface { -public: - // prevent constructor by default - FrameEncryptorInterface& operator=(FrameEncryptorInterface const&); - FrameEncryptorInterface(FrameEncryptorInterface const&); - FrameEncryptorInterface(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/external/webrtc/FrameTransformerInterface.h b/src/mc/external/webrtc/FrameTransformerInterface.h index 68409a5e7c..8227bbdc40 100644 --- a/src/mc/external/webrtc/FrameTransformerInterface.h +++ b/src/mc/external/webrtc/FrameTransformerInterface.h @@ -15,12 +15,6 @@ namespace webrtc { class TransformedFrameCallback; } namespace webrtc { class FrameTransformerInterface : public ::webrtc::RefCountInterface { -public: - // prevent constructor by default - FrameTransformerInterface& operator=(FrameTransformerInterface const&); - FrameTransformerInterface(FrameTransformerInterface const&); - FrameTransformerInterface(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/external/webrtc/Frequency.h b/src/mc/external/webrtc/Frequency.h index acaaaad332..e8866bd6d5 100644 --- a/src/mc/external/webrtc/Frequency.h +++ b/src/mc/external/webrtc/Frequency.h @@ -7,12 +7,6 @@ namespace webrtc { -class Frequency : public ::webrtc::rtc_units_impl::RelativeUnit<::webrtc::Frequency> { -public: - // prevent constructor by default - Frequency& operator=(Frequency const&); - Frequency(Frequency const&); - Frequency(); -}; +class Frequency : public ::webrtc::rtc_units_impl::RelativeUnit<::webrtc::Frequency> {}; } // namespace webrtc diff --git a/src/mc/external/webrtc/FrequencyTracker.h b/src/mc/external/webrtc/FrequencyTracker.h index c874347afc..02b9bb1df7 100644 --- a/src/mc/external/webrtc/FrequencyTracker.h +++ b/src/mc/external/webrtc/FrequencyTracker.h @@ -12,12 +12,6 @@ namespace webrtc { class Timestamp; } namespace webrtc { struct FrequencyTracker { -public: - // prevent constructor by default - FrequencyTracker& operator=(FrequencyTracker const&); - FrequencyTracker(FrequencyTracker const&); - FrequencyTracker(); - public: // member functions // NOLINTBEGIN diff --git a/src/mc/external/webrtc/GetFirst.h b/src/mc/external/webrtc/GetFirst.h index 32ee6818a7..990c733bf7 100644 --- a/src/mc/external/webrtc/GetFirst.h +++ b/src/mc/external/webrtc/GetFirst.h @@ -4,12 +4,6 @@ namespace webrtc::flat_containers_internal { -struct GetFirst { -public: - // prevent constructor by default - GetFirst& operator=(GetFirst const&); - GetFirst(GetFirst const&); - GetFirst(); -}; +struct GetFirst {}; } // namespace webrtc::flat_containers_internal diff --git a/src/mc/external/webrtc/GoogCcConfig.h b/src/mc/external/webrtc/GoogCcConfig.h index 3e48fb164b..9d2190bb29 100644 --- a/src/mc/external/webrtc/GoogCcConfig.h +++ b/src/mc/external/webrtc/GoogCcConfig.h @@ -5,12 +5,6 @@ namespace webrtc { struct GoogCcConfig { -public: - // prevent constructor by default - GoogCcConfig& operator=(GoogCcConfig const&); - GoogCcConfig(GoogCcConfig const&); - GoogCcConfig(); - public: // member functions // NOLINTBEGIN diff --git a/src/mc/external/webrtc/GoogCcNetworkController.h b/src/mc/external/webrtc/GoogCcNetworkController.h index fd9602d786..dd3ec0bb01 100644 --- a/src/mc/external/webrtc/GoogCcNetworkController.h +++ b/src/mc/external/webrtc/GoogCcNetworkController.h @@ -16,12 +16,6 @@ namespace webrtc { struct TargetRateConstraints; } namespace webrtc { class GoogCcNetworkController { -public: - // prevent constructor by default - GoogCcNetworkController& operator=(GoogCcNetworkController const&); - GoogCcNetworkController(GoogCcNetworkController const&); - GoogCcNetworkController(); - public: // member functions // NOLINTBEGIN diff --git a/src/mc/external/webrtc/GoogCcNetworkControllerFactory.h b/src/mc/external/webrtc/GoogCcNetworkControllerFactory.h index 5bbd65be76..9fc655a070 100644 --- a/src/mc/external/webrtc/GoogCcNetworkControllerFactory.h +++ b/src/mc/external/webrtc/GoogCcNetworkControllerFactory.h @@ -10,12 +10,6 @@ namespace webrtc { class NetworkStatePredictorFactoryInterface; } namespace webrtc { class GoogCcNetworkControllerFactory { -public: - // prevent constructor by default - GoogCcNetworkControllerFactory& operator=(GoogCcNetworkControllerFactory const&); - GoogCcNetworkControllerFactory(GoogCcNetworkControllerFactory const&); - GoogCcNetworkControllerFactory(); - public: // member functions // NOLINTBEGIN diff --git a/src/mc/external/webrtc/H264ProfileLevelId.h b/src/mc/external/webrtc/H264ProfileLevelId.h index 1daa6438e1..14c749d3d1 100644 --- a/src/mc/external/webrtc/H264ProfileLevelId.h +++ b/src/mc/external/webrtc/H264ProfileLevelId.h @@ -4,12 +4,6 @@ namespace webrtc { -struct H264ProfileLevelId { -public: - // prevent constructor by default - H264ProfileLevelId& operator=(H264ProfileLevelId const&); - H264ProfileLevelId(H264ProfileLevelId const&); - H264ProfileLevelId(); -}; +struct H264ProfileLevelId {}; } // namespace webrtc diff --git a/src/mc/external/webrtc/Histogram.h b/src/mc/external/webrtc/Histogram.h index 8b85a7c5ff..fcdb6e3066 100644 --- a/src/mc/external/webrtc/Histogram.h +++ b/src/mc/external/webrtc/Histogram.h @@ -4,12 +4,6 @@ namespace webrtc::metrics { -class Histogram { -public: - // prevent constructor by default - Histogram& operator=(Histogram const&); - Histogram(Histogram const&); - Histogram(); -}; +class Histogram {}; } // namespace webrtc::metrics diff --git a/src/mc/external/webrtc/I010BufferInterface.h b/src/mc/external/webrtc/I010BufferInterface.h index 417c9de8d7..a7802f08ac 100644 --- a/src/mc/external/webrtc/I010BufferInterface.h +++ b/src/mc/external/webrtc/I010BufferInterface.h @@ -9,12 +9,6 @@ namespace webrtc { class I010BufferInterface : public ::webrtc::PlanarYuv16BBuffer { -public: - // prevent constructor by default - I010BufferInterface& operator=(I010BufferInterface const&); - I010BufferInterface(I010BufferInterface const&); - I010BufferInterface(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/external/webrtc/I210BufferInterface.h b/src/mc/external/webrtc/I210BufferInterface.h index 55f4c14bcf..bc69c3d2d9 100644 --- a/src/mc/external/webrtc/I210BufferInterface.h +++ b/src/mc/external/webrtc/I210BufferInterface.h @@ -9,12 +9,6 @@ namespace webrtc { class I210BufferInterface : public ::webrtc::PlanarYuv16BBuffer { -public: - // prevent constructor by default - I210BufferInterface& operator=(I210BufferInterface const&); - I210BufferInterface(I210BufferInterface const&); - I210BufferInterface(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/external/webrtc/I410BufferInterface.h b/src/mc/external/webrtc/I410BufferInterface.h index cd9e8bc8a4..ea639f5498 100644 --- a/src/mc/external/webrtc/I410BufferInterface.h +++ b/src/mc/external/webrtc/I410BufferInterface.h @@ -9,12 +9,6 @@ namespace webrtc { class I410BufferInterface : public ::webrtc::PlanarYuv16BBuffer { -public: - // prevent constructor by default - I410BufferInterface& operator=(I410BufferInterface const&); - I410BufferInterface(I410BufferInterface const&); - I410BufferInterface(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/external/webrtc/I420ABufferInterface.h b/src/mc/external/webrtc/I420ABufferInterface.h index 84dbf77ff5..86870c75e2 100644 --- a/src/mc/external/webrtc/I420ABufferInterface.h +++ b/src/mc/external/webrtc/I420ABufferInterface.h @@ -9,12 +9,6 @@ namespace webrtc { class I420ABufferInterface : public ::webrtc::I420BufferInterface { -public: - // prevent constructor by default - I420ABufferInterface& operator=(I420ABufferInterface const&); - I420ABufferInterface(I420ABufferInterface const&); - I420ABufferInterface(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/external/webrtc/I420Buffer.h b/src/mc/external/webrtc/I420Buffer.h index cdcb6800cc..e53ae4f71f 100644 --- a/src/mc/external/webrtc/I420Buffer.h +++ b/src/mc/external/webrtc/I420Buffer.h @@ -13,12 +13,6 @@ namespace webrtc { class I420BufferInterface; } namespace webrtc { class I420Buffer { -public: - // prevent constructor by default - I420Buffer& operator=(I420Buffer const&); - I420Buffer(I420Buffer const&); - I420Buffer(); - public: // member functions // NOLINTBEGIN diff --git a/src/mc/external/webrtc/I420BufferInterface.h b/src/mc/external/webrtc/I420BufferInterface.h index 2156dfa3e8..4ec0fd6f96 100644 --- a/src/mc/external/webrtc/I420BufferInterface.h +++ b/src/mc/external/webrtc/I420BufferInterface.h @@ -10,12 +10,6 @@ namespace webrtc { class I420BufferInterface : public ::webrtc::PlanarYuv8Buffer { -public: - // prevent constructor by default - I420BufferInterface& operator=(I420BufferInterface const&); - I420BufferInterface(I420BufferInterface const&); - I420BufferInterface(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/external/webrtc/I422BufferInterface.h b/src/mc/external/webrtc/I422BufferInterface.h index f02f2216fc..45880350a1 100644 --- a/src/mc/external/webrtc/I422BufferInterface.h +++ b/src/mc/external/webrtc/I422BufferInterface.h @@ -15,12 +15,6 @@ namespace webrtc { class VideoFrameBuffer; } namespace webrtc { class I422BufferInterface : public ::webrtc::PlanarYuv8Buffer { -public: - // prevent constructor by default - I422BufferInterface& operator=(I422BufferInterface const&); - I422BufferInterface(I422BufferInterface const&); - I422BufferInterface(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/external/webrtc/I444BufferInterface.h b/src/mc/external/webrtc/I444BufferInterface.h index 9109b5d7da..23729b18fe 100644 --- a/src/mc/external/webrtc/I444BufferInterface.h +++ b/src/mc/external/webrtc/I444BufferInterface.h @@ -15,12 +15,6 @@ namespace webrtc { class VideoFrameBuffer; } namespace webrtc { class I444BufferInterface : public ::webrtc::PlanarYuv8Buffer { -public: - // prevent constructor by default - I444BufferInterface& operator=(I444BufferInterface const&); - I444BufferInterface(I444BufferInterface const&); - I444BufferInterface(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/external/webrtc/IceCandidateCollection.h b/src/mc/external/webrtc/IceCandidateCollection.h index d848e0b68d..078ea3e52c 100644 --- a/src/mc/external/webrtc/IceCandidateCollection.h +++ b/src/mc/external/webrtc/IceCandidateCollection.h @@ -10,12 +10,6 @@ namespace webrtc { class IceCandidateInterface; } namespace webrtc { class IceCandidateCollection { -public: - // prevent constructor by default - IceCandidateCollection& operator=(IceCandidateCollection const&); - IceCandidateCollection(IceCandidateCollection const&); - IceCandidateCollection(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/external/webrtc/IceCandidateInterface.h b/src/mc/external/webrtc/IceCandidateInterface.h index d1aa821f10..db5676462c 100644 --- a/src/mc/external/webrtc/IceCandidateInterface.h +++ b/src/mc/external/webrtc/IceCandidateInterface.h @@ -10,12 +10,6 @@ namespace cricket { class Candidate; } namespace webrtc { class IceCandidateInterface { -public: - // prevent constructor by default - IceCandidateInterface& operator=(IceCandidateInterface const&); - IceCandidateInterface(IceCandidateInterface const&); - IceCandidateInterface(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/external/webrtc/IceTransportInterface.h b/src/mc/external/webrtc/IceTransportInterface.h index f36de881eb..be31b1f6bf 100644 --- a/src/mc/external/webrtc/IceTransportInterface.h +++ b/src/mc/external/webrtc/IceTransportInterface.h @@ -4,12 +4,6 @@ namespace webrtc { -class IceTransportInterface { -public: - // prevent constructor by default - IceTransportInterface& operator=(IceTransportInterface const&); - IceTransportInterface(IceTransportInterface const&); - IceTransportInterface(); -}; +class IceTransportInterface {}; } // namespace webrtc diff --git a/src/mc/external/webrtc/IceTransportWithPointer.h b/src/mc/external/webrtc/IceTransportWithPointer.h index 42c2810a31..d1900a57da 100644 --- a/src/mc/external/webrtc/IceTransportWithPointer.h +++ b/src/mc/external/webrtc/IceTransportWithPointer.h @@ -5,12 +5,6 @@ namespace webrtc { class IceTransportWithPointer { -public: - // prevent constructor by default - IceTransportWithPointer& operator=(IceTransportWithPointer const&); - IceTransportWithPointer(IceTransportWithPointer const&); - IceTransportWithPointer(); - public: // member functions // NOLINTBEGIN diff --git a/src/mc/external/webrtc/InFlightBytesTracker.h b/src/mc/external/webrtc/InFlightBytesTracker.h index 44a4bf111d..f9b2b1472e 100644 --- a/src/mc/external/webrtc/InFlightBytesTracker.h +++ b/src/mc/external/webrtc/InFlightBytesTracker.h @@ -20,12 +20,6 @@ struct InFlightBytesTracker { // InFlightBytesTracker inner types define struct NetworkRouteComparator { - public: - // prevent constructor by default - NetworkRouteComparator& operator=(NetworkRouteComparator const&); - NetworkRouteComparator(NetworkRouteComparator const&); - NetworkRouteComparator(); - public: // member functions // NOLINTBEGIN @@ -33,12 +27,6 @@ struct InFlightBytesTracker { // NOLINTEND }; -public: - // prevent constructor by default - InFlightBytesTracker& operator=(InFlightBytesTracker const&); - InFlightBytesTracker(InFlightBytesTracker const&); - InFlightBytesTracker(); - public: // member functions // NOLINTBEGIN diff --git a/src/mc/external/webrtc/InbandComfortNoiseExtension.h b/src/mc/external/webrtc/InbandComfortNoiseExtension.h index 3025cf7dcd..ad0520b743 100644 --- a/src/mc/external/webrtc/InbandComfortNoiseExtension.h +++ b/src/mc/external/webrtc/InbandComfortNoiseExtension.h @@ -4,12 +4,6 @@ namespace webrtc { -class InbandComfortNoiseExtension { -public: - // prevent constructor by default - InbandComfortNoiseExtension& operator=(InbandComfortNoiseExtension const&); - InbandComfortNoiseExtension(InbandComfortNoiseExtension const&); - InbandComfortNoiseExtension(); -}; +class InbandComfortNoiseExtension {}; } // namespace webrtc diff --git a/src/mc/external/webrtc/InterArrivalDelta.h b/src/mc/external/webrtc/InterArrivalDelta.h index 90eee2a6e6..003a76cc39 100644 --- a/src/mc/external/webrtc/InterArrivalDelta.h +++ b/src/mc/external/webrtc/InterArrivalDelta.h @@ -11,12 +11,6 @@ namespace webrtc { class Timestamp; } namespace webrtc { class InterArrivalDelta { -public: - // prevent constructor by default - InterArrivalDelta& operator=(InterArrivalDelta const&); - InterArrivalDelta(InterArrivalDelta const&); - InterArrivalDelta(); - public: // member functions // NOLINTBEGIN diff --git a/src/mc/external/webrtc/InternalDataChannelInit.h b/src/mc/external/webrtc/InternalDataChannelInit.h index d0300056aa..ef4ef52deb 100644 --- a/src/mc/external/webrtc/InternalDataChannelInit.h +++ b/src/mc/external/webrtc/InternalDataChannelInit.h @@ -10,12 +10,6 @@ namespace webrtc { struct DataChannelInit; } namespace webrtc { struct InternalDataChannelInit { -public: - // prevent constructor by default - InternalDataChannelInit& operator=(InternalDataChannelInit const&); - InternalDataChannelInit(InternalDataChannelInit const&); - InternalDataChannelInit(); - public: // member functions // NOLINTBEGIN diff --git a/src/mc/external/webrtc/IntervalBudget.h b/src/mc/external/webrtc/IntervalBudget.h index 54b1f95f39..6ed2820e27 100644 --- a/src/mc/external/webrtc/IntervalBudget.h +++ b/src/mc/external/webrtc/IntervalBudget.h @@ -5,12 +5,6 @@ namespace webrtc { struct IntervalBudget { -public: - // prevent constructor by default - IntervalBudget& operator=(IntervalBudget const&); - IntervalBudget(IntervalBudget const&); - IntervalBudget(); - public: // member functions // NOLINTBEGIN diff --git a/src/mc/external/webrtc/JitterBufferDelay.h b/src/mc/external/webrtc/JitterBufferDelay.h index 7184468cf4..de7b19974a 100644 --- a/src/mc/external/webrtc/JitterBufferDelay.h +++ b/src/mc/external/webrtc/JitterBufferDelay.h @@ -5,12 +5,6 @@ namespace webrtc { struct JitterBufferDelay { -public: - // prevent constructor by default - JitterBufferDelay& operator=(JitterBufferDelay const&); - JitterBufferDelay(JitterBufferDelay const&); - JitterBufferDelay(); - public: // member functions // NOLINTBEGIN diff --git a/src/mc/external/webrtc/JsepCandidateCollection.h b/src/mc/external/webrtc/JsepCandidateCollection.h index d3f8de8e1a..7dc7fc2594 100644 --- a/src/mc/external/webrtc/JsepCandidateCollection.h +++ b/src/mc/external/webrtc/JsepCandidateCollection.h @@ -10,11 +10,6 @@ namespace cricket { class Candidate; } namespace webrtc { class JsepCandidateCollection { -public: - // prevent constructor by default - JsepCandidateCollection& operator=(JsepCandidateCollection const&); - JsepCandidateCollection(JsepCandidateCollection const&); - public: // member functions // NOLINTBEGIN diff --git a/src/mc/external/webrtc/JsepIceCandidate.h b/src/mc/external/webrtc/JsepIceCandidate.h index 8e488b8024..0afd9be354 100644 --- a/src/mc/external/webrtc/JsepIceCandidate.h +++ b/src/mc/external/webrtc/JsepIceCandidate.h @@ -11,12 +11,6 @@ namespace webrtc { struct SdpParseError; } namespace webrtc { class JsepIceCandidate { -public: - // prevent constructor by default - JsepIceCandidate& operator=(JsepIceCandidate const&); - JsepIceCandidate(JsepIceCandidate const&); - JsepIceCandidate(); - public: // member functions // NOLINTBEGIN diff --git a/src/mc/external/webrtc/JsepSessionDescription.h b/src/mc/external/webrtc/JsepSessionDescription.h index b975d637de..301978efb2 100644 --- a/src/mc/external/webrtc/JsepSessionDescription.h +++ b/src/mc/external/webrtc/JsepSessionDescription.h @@ -15,12 +15,6 @@ namespace webrtc { class IceCandidateInterface; } namespace webrtc { class JsepSessionDescription { -public: - // prevent constructor by default - JsepSessionDescription& operator=(JsepSessionDescription const&); - JsepSessionDescription(JsepSessionDescription const&); - JsepSessionDescription(); - public: // member functions // NOLINTBEGIN diff --git a/src/mc/external/webrtc/JsepTransportCollection.h b/src/mc/external/webrtc/JsepTransportCollection.h index 9d2b38da70..b22009f81e 100644 --- a/src/mc/external/webrtc/JsepTransportCollection.h +++ b/src/mc/external/webrtc/JsepTransportCollection.h @@ -10,12 +10,6 @@ namespace cricket { class JsepTransport; } namespace webrtc { struct JsepTransportCollection { -public: - // prevent constructor by default - JsepTransportCollection& operator=(JsepTransportCollection const&); - JsepTransportCollection(JsepTransportCollection const&); - JsepTransportCollection(); - public: // member functions // NOLINTBEGIN diff --git a/src/mc/external/webrtc/JsepTransportController.h b/src/mc/external/webrtc/JsepTransportController.h index 1f2337d3a1..6543d29240 100644 --- a/src/mc/external/webrtc/JsepTransportController.h +++ b/src/mc/external/webrtc/JsepTransportController.h @@ -54,12 +54,6 @@ class JsepTransportController { // JsepTransportController inner types define struct Config { - public: - // prevent constructor by default - Config& operator=(Config const&); - Config(Config const&); - Config(); - public: // member functions // NOLINTBEGIN @@ -73,12 +67,6 @@ class JsepTransportController { // NOLINTEND }; -public: - // prevent constructor by default - JsepTransportController& operator=(JsepTransportController const&); - JsepTransportController(JsepTransportController const&); - JsepTransportController(); - public: // member functions // NOLINTBEGIN diff --git a/src/mc/external/webrtc/LegacyStatsCollector.h b/src/mc/external/webrtc/LegacyStatsCollector.h index 98a39e3603..873144337d 100644 --- a/src/mc/external/webrtc/LegacyStatsCollector.h +++ b/src/mc/external/webrtc/LegacyStatsCollector.h @@ -35,11 +35,6 @@ class LegacyStatsCollector { // LegacyStatsCollector inner types define struct SessionStats { - public: - // prevent constructor by default - SessionStats& operator=(SessionStats const&); - SessionStats(SessionStats const&); - public: // member functions // NOLINTBEGIN @@ -62,12 +57,6 @@ class LegacyStatsCollector { }; struct TransportStats { - public: - // prevent constructor by default - TransportStats& operator=(TransportStats const&); - TransportStats(TransportStats const&); - TransportStats(); - public: // member functions // NOLINTBEGIN @@ -81,12 +70,6 @@ class LegacyStatsCollector { // NOLINTEND }; -public: - // prevent constructor by default - LegacyStatsCollector& operator=(LegacyStatsCollector const&); - LegacyStatsCollector(LegacyStatsCollector const&); - LegacyStatsCollector(); - public: // member functions // NOLINTBEGIN diff --git a/src/mc/external/webrtc/LegacyStatsCollectorInterface.h b/src/mc/external/webrtc/LegacyStatsCollectorInterface.h index 3baa4af2d4..3e33403db8 100644 --- a/src/mc/external/webrtc/LegacyStatsCollectorInterface.h +++ b/src/mc/external/webrtc/LegacyStatsCollectorInterface.h @@ -4,12 +4,6 @@ namespace webrtc { -class LegacyStatsCollectorInterface { -public: - // prevent constructor by default - LegacyStatsCollectorInterface& operator=(LegacyStatsCollectorInterface const&); - LegacyStatsCollectorInterface(LegacyStatsCollectorInterface const&); - LegacyStatsCollectorInterface(); -}; +class LegacyStatsCollectorInterface {}; } // namespace webrtc diff --git a/src/mc/external/webrtc/LinkCapacityEstimator.h b/src/mc/external/webrtc/LinkCapacityEstimator.h index 5b8d759852..7a46b6f07a 100644 --- a/src/mc/external/webrtc/LinkCapacityEstimator.h +++ b/src/mc/external/webrtc/LinkCapacityEstimator.h @@ -10,11 +10,6 @@ namespace webrtc { class DataRate; } namespace webrtc { struct LinkCapacityEstimator { -public: - // prevent constructor by default - LinkCapacityEstimator& operator=(LinkCapacityEstimator const&); - LinkCapacityEstimator(LinkCapacityEstimator const&); - public: // member functions // NOLINTBEGIN diff --git a/src/mc/external/webrtc/LinkCapacityTracker.h b/src/mc/external/webrtc/LinkCapacityTracker.h index c8120fb417..02c3195829 100644 --- a/src/mc/external/webrtc/LinkCapacityTracker.h +++ b/src/mc/external/webrtc/LinkCapacityTracker.h @@ -11,11 +11,6 @@ namespace webrtc { class Timestamp; } namespace webrtc { struct LinkCapacityTracker { -public: - // prevent constructor by default - LinkCapacityTracker& operator=(LinkCapacityTracker const&); - LinkCapacityTracker(LinkCapacityTracker const&); - public: // member functions // NOLINTBEGIN diff --git a/src/mc/external/webrtc/LocalAudioSinkAdapter.h b/src/mc/external/webrtc/LocalAudioSinkAdapter.h index 4256990764..58dc4976a2 100644 --- a/src/mc/external/webrtc/LocalAudioSinkAdapter.h +++ b/src/mc/external/webrtc/LocalAudioSinkAdapter.h @@ -5,11 +5,6 @@ namespace webrtc { class LocalAudioSinkAdapter { -public: - // prevent constructor by default - LocalAudioSinkAdapter& operator=(LocalAudioSinkAdapter const&); - LocalAudioSinkAdapter(LocalAudioSinkAdapter const&); - public: // member functions // NOLINTBEGIN diff --git a/src/mc/external/webrtc/LocalAudioSource.h b/src/mc/external/webrtc/LocalAudioSource.h index 70c516c8e9..d95ed8f14e 100644 --- a/src/mc/external/webrtc/LocalAudioSource.h +++ b/src/mc/external/webrtc/LocalAudioSource.h @@ -13,12 +13,6 @@ namespace cricket { struct AudioOptions; } namespace webrtc { class LocalAudioSource { -public: - // prevent constructor by default - LocalAudioSource& operator=(LocalAudioSource const&); - LocalAudioSource(LocalAudioSource const&); - LocalAudioSource(); - public: // member functions // NOLINTBEGIN diff --git a/src/mc/external/webrtc/Location.h b/src/mc/external/webrtc/Location.h index 59ac59b6be..0b41a74f66 100644 --- a/src/mc/external/webrtc/Location.h +++ b/src/mc/external/webrtc/Location.h @@ -4,12 +4,6 @@ namespace webrtc { -class Location { -public: - // prevent constructor by default - Location& operator=(Location const&); - Location(Location const&); - Location(); -}; +class Location {}; } // namespace webrtc diff --git a/src/mc/external/webrtc/LossBasedBandwidthEstimation.h b/src/mc/external/webrtc/LossBasedBandwidthEstimation.h index f33f340314..7fb94b7241 100644 --- a/src/mc/external/webrtc/LossBasedBandwidthEstimation.h +++ b/src/mc/external/webrtc/LossBasedBandwidthEstimation.h @@ -14,12 +14,6 @@ namespace webrtc { struct PacketResult; } namespace webrtc { struct LossBasedBandwidthEstimation { -public: - // prevent constructor by default - LossBasedBandwidthEstimation& operator=(LossBasedBandwidthEstimation const&); - LossBasedBandwidthEstimation(LossBasedBandwidthEstimation const&); - LossBasedBandwidthEstimation(); - public: // member functions // NOLINTBEGIN diff --git a/src/mc/external/webrtc/LossBasedBweV2.h b/src/mc/external/webrtc/LossBasedBweV2.h index 312e7457f6..740721234e 100644 --- a/src/mc/external/webrtc/LossBasedBweV2.h +++ b/src/mc/external/webrtc/LossBasedBweV2.h @@ -22,20 +22,9 @@ class LossBasedBweV2 { // clang-format on // LossBasedBweV2 inner types define - struct ChannelParameters { - public: - // prevent constructor by default - ChannelParameters& operator=(ChannelParameters const&); - ChannelParameters(ChannelParameters const&); - ChannelParameters(); - }; + struct ChannelParameters {}; struct Config { - public: - // prevent constructor by default - Config& operator=(Config const&); - Config(Config const&); - public: // member functions // NOLINTBEGIN @@ -53,27 +42,9 @@ class LossBasedBweV2 { // NOLINTEND }; - struct Derivatives { - public: - // prevent constructor by default - Derivatives& operator=(Derivatives const&); - Derivatives(Derivatives const&); - Derivatives(); - }; - - struct Result { - public: - // prevent constructor by default - Result& operator=(Result const&); - Result(Result const&); - Result(); - }; + struct Derivatives {}; -public: - // prevent constructor by default - LossBasedBweV2& operator=(LossBasedBweV2 const&); - LossBasedBweV2(LossBasedBweV2 const&); - LossBasedBweV2(); + struct Result {}; public: // member functions diff --git a/src/mc/external/webrtc/LossBasedControlConfig.h b/src/mc/external/webrtc/LossBasedControlConfig.h index 75a48c70d7..ff3fb49f13 100644 --- a/src/mc/external/webrtc/LossBasedControlConfig.h +++ b/src/mc/external/webrtc/LossBasedControlConfig.h @@ -10,12 +10,6 @@ namespace webrtc { class FieldTrialsView; } namespace webrtc { struct LossBasedControlConfig { -public: - // prevent constructor by default - LossBasedControlConfig& operator=(LossBasedControlConfig const&); - LossBasedControlConfig(LossBasedControlConfig const&); - LossBasedControlConfig(); - public: // member functions // NOLINTBEGIN diff --git a/src/mc/external/webrtc/LossNotification.h b/src/mc/external/webrtc/LossNotification.h index 1a81db0296..dcff505307 100644 --- a/src/mc/external/webrtc/LossNotification.h +++ b/src/mc/external/webrtc/LossNotification.h @@ -10,11 +10,6 @@ namespace webrtc::rtcp { class CommonHeader; } namespace webrtc::rtcp { class LossNotification { -public: - // prevent constructor by default - LossNotification& operator=(LossNotification const&); - LossNotification(LossNotification const&); - public: // member functions // NOLINTBEGIN diff --git a/src/mc/external/webrtc/MdnsResponderInterface.h b/src/mc/external/webrtc/MdnsResponderInterface.h index 5d1cbeb8a7..79e61784b3 100644 --- a/src/mc/external/webrtc/MdnsResponderInterface.h +++ b/src/mc/external/webrtc/MdnsResponderInterface.h @@ -10,12 +10,6 @@ namespace rtc { class IPAddress; } namespace webrtc { class MdnsResponderInterface { -public: - // prevent constructor by default - MdnsResponderInterface& operator=(MdnsResponderInterface const&); - MdnsResponderInterface(MdnsResponderInterface const&); - MdnsResponderInterface(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/external/webrtc/MediaReceiveStreamInterface.h b/src/mc/external/webrtc/MediaReceiveStreamInterface.h index 5e4c96d47f..7134f19cbf 100644 --- a/src/mc/external/webrtc/MediaReceiveStreamInterface.h +++ b/src/mc/external/webrtc/MediaReceiveStreamInterface.h @@ -16,12 +16,6 @@ namespace webrtc { class RtpSource; } namespace webrtc { class MediaReceiveStreamInterface : public ::webrtc::ReceiveStreamInterface { -public: - // prevent constructor by default - MediaReceiveStreamInterface& operator=(MediaReceiveStreamInterface const&); - MediaReceiveStreamInterface(MediaReceiveStreamInterface const&); - MediaReceiveStreamInterface(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/external/webrtc/MediaSourceInterface.h b/src/mc/external/webrtc/MediaSourceInterface.h index 4425309b1b..34eac939f6 100644 --- a/src/mc/external/webrtc/MediaSourceInterface.h +++ b/src/mc/external/webrtc/MediaSourceInterface.h @@ -18,12 +18,6 @@ class MediaSourceInterface : public ::webrtc::RefCountInterface, public ::webrtc KMuted = 3, }; -public: - // prevent constructor by default - MediaSourceInterface& operator=(MediaSourceInterface const&); - MediaSourceInterface(MediaSourceInterface const&); - MediaSourceInterface(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/external/webrtc/MediaStream.h b/src/mc/external/webrtc/MediaStream.h index 0fb4288c02..c325635d76 100644 --- a/src/mc/external/webrtc/MediaStream.h +++ b/src/mc/external/webrtc/MediaStream.h @@ -8,12 +8,6 @@ namespace webrtc { class MediaStream { -public: - // prevent constructor by default - MediaStream& operator=(MediaStream const&); - MediaStream(MediaStream const&); - MediaStream(); - public: // member functions // NOLINTBEGIN diff --git a/src/mc/external/webrtc/MediaStreamInterface.h b/src/mc/external/webrtc/MediaStreamInterface.h index 2b3dc8bb46..2ad16296dc 100644 --- a/src/mc/external/webrtc/MediaStreamInterface.h +++ b/src/mc/external/webrtc/MediaStreamInterface.h @@ -16,12 +16,6 @@ namespace webrtc { class VideoTrackInterface; } namespace webrtc { class MediaStreamInterface : public ::webrtc::RefCountInterface, public ::webrtc::NotifierInterface { -public: - // prevent constructor by default - MediaStreamInterface& operator=(MediaStreamInterface const&); - MediaStreamInterface(MediaStreamInterface const&); - MediaStreamInterface(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/external/webrtc/MediaStreamObserver.h b/src/mc/external/webrtc/MediaStreamObserver.h index e1c1a635f7..fcc060b9a4 100644 --- a/src/mc/external/webrtc/MediaStreamObserver.h +++ b/src/mc/external/webrtc/MediaStreamObserver.h @@ -12,12 +12,6 @@ namespace webrtc { class VideoTrackInterface; } namespace webrtc { class MediaStreamObserver { -public: - // prevent constructor by default - MediaStreamObserver& operator=(MediaStreamObserver const&); - MediaStreamObserver(MediaStreamObserver const&); - MediaStreamObserver(); - public: // member functions // NOLINTBEGIN diff --git a/src/mc/external/webrtc/MediaStreamTrackInterface.h b/src/mc/external/webrtc/MediaStreamTrackInterface.h index cbf07351ef..7f27cf1eed 100644 --- a/src/mc/external/webrtc/MediaStreamTrackInterface.h +++ b/src/mc/external/webrtc/MediaStreamTrackInterface.h @@ -16,12 +16,6 @@ class MediaStreamTrackInterface : public ::webrtc::RefCountInterface, public ::w KEnded = 1, }; -public: - // prevent constructor by default - MediaStreamTrackInterface& operator=(MediaStreamTrackInterface const&); - MediaStreamTrackInterface(MediaStreamTrackInterface const&); - MediaStreamTrackInterface(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/external/webrtc/MemberParameter.h b/src/mc/external/webrtc/MemberParameter.h index fe85e4bf36..3e5eb5ff8d 100644 --- a/src/mc/external/webrtc/MemberParameter.h +++ b/src/mc/external/webrtc/MemberParameter.h @@ -4,12 +4,6 @@ namespace webrtc::struct_parser_impl { -struct MemberParameter { -public: - // prevent constructor by default - MemberParameter& operator=(MemberParameter const&); - MemberParameter(MemberParameter const&); - MemberParameter(); -}; +struct MemberParameter {}; } // namespace webrtc::struct_parser_impl diff --git a/src/mc/external/webrtc/Metronome.h b/src/mc/external/webrtc/Metronome.h index 9ca8da366d..1a58a6d6ea 100644 --- a/src/mc/external/webrtc/Metronome.h +++ b/src/mc/external/webrtc/Metronome.h @@ -13,12 +13,6 @@ namespace webrtc { class TimeDelta; } namespace webrtc { class Metronome { -public: - // prevent constructor by default - Metronome& operator=(Metronome const&); - Metronome(Metronome const&); - Metronome(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/external/webrtc/ModuleRtpRtcpImpl2.h b/src/mc/external/webrtc/ModuleRtpRtcpImpl2.h index da852f1e7b..8fde970e96 100644 --- a/src/mc/external/webrtc/ModuleRtpRtcpImpl2.h +++ b/src/mc/external/webrtc/ModuleRtpRtcpImpl2.h @@ -24,12 +24,6 @@ class ModuleRtpRtcpImpl2 { // ModuleRtpRtcpImpl2 inner types define struct RtpSenderContext { - public: - // prevent constructor by default - RtpSenderContext& operator=(RtpSenderContext const&); - RtpSenderContext(RtpSenderContext const&); - RtpSenderContext(); - public: // member functions // NOLINTBEGIN @@ -43,12 +37,6 @@ class ModuleRtpRtcpImpl2 { // NOLINTEND }; -public: - // prevent constructor by default - ModuleRtpRtcpImpl2& operator=(ModuleRtpRtcpImpl2 const&); - ModuleRtpRtcpImpl2(ModuleRtpRtcpImpl2 const&); - ModuleRtpRtcpImpl2(); - public: // member functions // NOLINTBEGIN diff --git a/src/mc/external/webrtc/NV12BufferInterface.h b/src/mc/external/webrtc/NV12BufferInterface.h index ffb22aa469..3c9242a2b8 100644 --- a/src/mc/external/webrtc/NV12BufferInterface.h +++ b/src/mc/external/webrtc/NV12BufferInterface.h @@ -15,12 +15,6 @@ namespace webrtc { class VideoFrameBuffer; } namespace webrtc { class NV12BufferInterface : public ::webrtc::BiplanarYuv8Buffer { -public: - // prevent constructor by default - NV12BufferInterface& operator=(NV12BufferInterface const&); - NV12BufferInterface(NV12BufferInterface const&); - NV12BufferInterface(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/external/webrtc/Nack.h b/src/mc/external/webrtc/Nack.h index cf409fef84..c9fdce6b62 100644 --- a/src/mc/external/webrtc/Nack.h +++ b/src/mc/external/webrtc/Nack.h @@ -10,11 +10,6 @@ namespace webrtc::rtcp { class CommonHeader; } namespace webrtc::rtcp { class Nack { -public: - // prevent constructor by default - Nack& operator=(Nack const&); - Nack(Nack const&); - public: // member functions // NOLINTBEGIN diff --git a/src/mc/external/webrtc/NaluIndex.h b/src/mc/external/webrtc/NaluIndex.h index a444cc9ff5..3b80766fd6 100644 --- a/src/mc/external/webrtc/NaluIndex.h +++ b/src/mc/external/webrtc/NaluIndex.h @@ -4,12 +4,6 @@ namespace webrtc::H264 { -struct NaluIndex { -public: - // prevent constructor by default - NaluIndex& operator=(NaluIndex const&); - NaluIndex(NaluIndex const&); - NaluIndex(); -}; +struct NaluIndex {}; } // namespace webrtc::H264 diff --git a/src/mc/external/webrtc/NetEq.h b/src/mc/external/webrtc/NetEq.h index 2f4426c133..e0b23f7df4 100644 --- a/src/mc/external/webrtc/NetEq.h +++ b/src/mc/external/webrtc/NetEq.h @@ -98,12 +98,6 @@ class NetEq { DecoderFormat(); }; -public: - // prevent constructor by default - NetEq& operator=(NetEq const&); - NetEq(NetEq const&); - NetEq(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/external/webrtc/NetEqFactory.h b/src/mc/external/webrtc/NetEqFactory.h index e60d972619..8f0a28260b 100644 --- a/src/mc/external/webrtc/NetEqFactory.h +++ b/src/mc/external/webrtc/NetEqFactory.h @@ -16,12 +16,6 @@ namespace webrtc { class NetEq; } namespace webrtc { class NetEqFactory { -public: - // prevent constructor by default - NetEqFactory& operator=(NetEqFactory const&); - NetEqFactory(NetEqFactory const&); - NetEqFactory(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/external/webrtc/NetworkAvailability.h b/src/mc/external/webrtc/NetworkAvailability.h index aeec58d331..58f9367150 100644 --- a/src/mc/external/webrtc/NetworkAvailability.h +++ b/src/mc/external/webrtc/NetworkAvailability.h @@ -4,12 +4,6 @@ namespace webrtc { -struct NetworkAvailability { -public: - // prevent constructor by default - NetworkAvailability& operator=(NetworkAvailability const&); - NetworkAvailability(NetworkAvailability const&); - NetworkAvailability(); -}; +struct NetworkAvailability {}; } // namespace webrtc diff --git a/src/mc/external/webrtc/NetworkControllerFactoryInterface.h b/src/mc/external/webrtc/NetworkControllerFactoryInterface.h index d48cf4b8bb..ae06aa500b 100644 --- a/src/mc/external/webrtc/NetworkControllerFactoryInterface.h +++ b/src/mc/external/webrtc/NetworkControllerFactoryInterface.h @@ -12,12 +12,6 @@ namespace webrtc { struct NetworkControllerConfig; } namespace webrtc { class NetworkControllerFactoryInterface { -public: - // prevent constructor by default - NetworkControllerFactoryInterface& operator=(NetworkControllerFactoryInterface const&); - NetworkControllerFactoryInterface(NetworkControllerFactoryInterface const&); - NetworkControllerFactoryInterface(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/external/webrtc/NetworkControllerInterface.h b/src/mc/external/webrtc/NetworkControllerInterface.h index 539375dd4f..fc39237a55 100644 --- a/src/mc/external/webrtc/NetworkControllerInterface.h +++ b/src/mc/external/webrtc/NetworkControllerInterface.h @@ -4,12 +4,6 @@ namespace webrtc { -class NetworkControllerInterface { -public: - // prevent constructor by default - NetworkControllerInterface& operator=(NetworkControllerInterface const&); - NetworkControllerInterface(NetworkControllerInterface const&); - NetworkControllerInterface(); -}; +class NetworkControllerInterface {}; } // namespace webrtc diff --git a/src/mc/external/webrtc/NetworkLinkRtcpObserver.h b/src/mc/external/webrtc/NetworkLinkRtcpObserver.h index 99b0d6b910..66ea1b0002 100644 --- a/src/mc/external/webrtc/NetworkLinkRtcpObserver.h +++ b/src/mc/external/webrtc/NetworkLinkRtcpObserver.h @@ -14,12 +14,6 @@ namespace webrtc::rtcp { class TransportFeedback; } namespace webrtc { class NetworkLinkRtcpObserver { -public: - // prevent constructor by default - NetworkLinkRtcpObserver& operator=(NetworkLinkRtcpObserver const&); - NetworkLinkRtcpObserver(NetworkLinkRtcpObserver const&); - NetworkLinkRtcpObserver(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/external/webrtc/NetworkStateEstimateObserver.h b/src/mc/external/webrtc/NetworkStateEstimateObserver.h index 256d1f42fe..5168104507 100644 --- a/src/mc/external/webrtc/NetworkStateEstimateObserver.h +++ b/src/mc/external/webrtc/NetworkStateEstimateObserver.h @@ -10,12 +10,6 @@ namespace webrtc { struct NetworkStateEstimate; } namespace webrtc { class NetworkStateEstimateObserver { -public: - // prevent constructor by default - NetworkStateEstimateObserver& operator=(NetworkStateEstimateObserver const&); - NetworkStateEstimateObserver(NetworkStateEstimateObserver const&); - NetworkStateEstimateObserver(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/external/webrtc/NetworkStateEstimator.h b/src/mc/external/webrtc/NetworkStateEstimator.h index b657336289..2aee668f52 100644 --- a/src/mc/external/webrtc/NetworkStateEstimator.h +++ b/src/mc/external/webrtc/NetworkStateEstimator.h @@ -13,12 +13,6 @@ namespace webrtc { struct TransportPacketsFeedback; } namespace webrtc { class NetworkStateEstimator { -public: - // prevent constructor by default - NetworkStateEstimator& operator=(NetworkStateEstimator const&); - NetworkStateEstimator(NetworkStateEstimator const&); - NetworkStateEstimator(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/external/webrtc/NetworkStatePredictor.h b/src/mc/external/webrtc/NetworkStatePredictor.h index 2ff7d504d0..626784c4cb 100644 --- a/src/mc/external/webrtc/NetworkStatePredictor.h +++ b/src/mc/external/webrtc/NetworkStatePredictor.h @@ -8,12 +8,6 @@ namespace webrtc { class NetworkStatePredictor { -public: - // prevent constructor by default - NetworkStatePredictor& operator=(NetworkStatePredictor const&); - NetworkStatePredictor(NetworkStatePredictor const&); - NetworkStatePredictor(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/external/webrtc/NetworkStatePredictorFactoryInterface.h b/src/mc/external/webrtc/NetworkStatePredictorFactoryInterface.h index 02fb3a6039..43c5a57dd1 100644 --- a/src/mc/external/webrtc/NetworkStatePredictorFactoryInterface.h +++ b/src/mc/external/webrtc/NetworkStatePredictorFactoryInterface.h @@ -10,12 +10,6 @@ namespace webrtc { class NetworkStatePredictor; } namespace webrtc { class NetworkStatePredictorFactoryInterface { -public: - // prevent constructor by default - NetworkStatePredictorFactoryInterface& operator=(NetworkStatePredictorFactoryInterface const&); - NetworkStatePredictorFactoryInterface(NetworkStatePredictorFactoryInterface const&); - NetworkStatePredictorFactoryInterface(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/external/webrtc/NotifierInterface.h b/src/mc/external/webrtc/NotifierInterface.h index 92cd012784..ce23a4e60d 100644 --- a/src/mc/external/webrtc/NotifierInterface.h +++ b/src/mc/external/webrtc/NotifierInterface.h @@ -10,12 +10,6 @@ namespace webrtc { class ObserverInterface; } namespace webrtc { class NotifierInterface { -public: - // prevent constructor by default - NotifierInterface& operator=(NotifierInterface const&); - NotifierInterface(NotifierInterface const&); - NotifierInterface(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/external/webrtc/ObserverInterface.h b/src/mc/external/webrtc/ObserverInterface.h index bd935e8678..8eccb59c7b 100644 --- a/src/mc/external/webrtc/ObserverInterface.h +++ b/src/mc/external/webrtc/ObserverInterface.h @@ -5,12 +5,6 @@ namespace webrtc { class ObserverInterface { -public: - // prevent constructor by default - ObserverInterface& operator=(ObserverInterface const&); - ObserverInterface(ObserverInterface const&); - ObserverInterface(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/external/webrtc/OneTimeEvent.h b/src/mc/external/webrtc/OneTimeEvent.h index 0441f48836..dc115b71a2 100644 --- a/src/mc/external/webrtc/OneTimeEvent.h +++ b/src/mc/external/webrtc/OneTimeEvent.h @@ -5,12 +5,6 @@ namespace webrtc { struct OneTimeEvent { -public: - // prevent constructor by default - OneTimeEvent& operator=(OneTimeEvent const&); - OneTimeEvent(OneTimeEvent const&); - OneTimeEvent(); - public: // member functions // NOLINTBEGIN diff --git a/src/mc/external/webrtc/PacingController.h b/src/mc/external/webrtc/PacingController.h index d03597eb52..e2f9d44488 100644 --- a/src/mc/external/webrtc/PacingController.h +++ b/src/mc/external/webrtc/PacingController.h @@ -29,27 +29,9 @@ struct PacingController { // clang-format on // PacingController inner types define - struct Configuration { - public: - // prevent constructor by default - Configuration& operator=(Configuration const&); - Configuration(Configuration const&); - Configuration(); - }; - - class PacketSender { - public: - // prevent constructor by default - PacketSender& operator=(PacketSender const&); - PacketSender(PacketSender const&); - PacketSender(); - }; + struct Configuration {}; -public: - // prevent constructor by default - PacingController& operator=(PacingController const&); - PacingController(PacingController const&); - PacingController(); + class PacketSender {}; public: // member functions diff --git a/src/mc/external/webrtc/PacketFeedback.h b/src/mc/external/webrtc/PacketFeedback.h index 7ea23f2221..3f30b794ef 100644 --- a/src/mc/external/webrtc/PacketFeedback.h +++ b/src/mc/external/webrtc/PacketFeedback.h @@ -4,12 +4,6 @@ namespace webrtc { -struct PacketFeedback { -public: - // prevent constructor by default - PacketFeedback& operator=(PacketFeedback const&); - PacketFeedback(PacketFeedback const&); - PacketFeedback(); -}; +struct PacketFeedback {}; } // namespace webrtc diff --git a/src/mc/external/webrtc/PacketMaskTable.h b/src/mc/external/webrtc/PacketMaskTable.h index 23c558056a..f887c5d995 100644 --- a/src/mc/external/webrtc/PacketMaskTable.h +++ b/src/mc/external/webrtc/PacketMaskTable.h @@ -8,12 +8,6 @@ namespace webrtc::internal { class PacketMaskTable { -public: - // prevent constructor by default - PacketMaskTable& operator=(PacketMaskTable const&); - PacketMaskTable(PacketMaskTable const&); - PacketMaskTable(); - public: // member functions // NOLINTBEGIN diff --git a/src/mc/external/webrtc/PacketQueue.h b/src/mc/external/webrtc/PacketQueue.h index 98382292eb..5a751592f8 100644 --- a/src/mc/external/webrtc/PacketQueue.h +++ b/src/mc/external/webrtc/PacketQueue.h @@ -10,12 +10,6 @@ namespace webrtc { struct DataBuffer; } namespace webrtc { struct PacketQueue { -public: - // prevent constructor by default - PacketQueue& operator=(PacketQueue const&); - PacketQueue(PacketQueue const&); - PacketQueue(); - public: // member functions // NOLINTBEGIN diff --git a/src/mc/external/webrtc/PacketQueueTTL.h b/src/mc/external/webrtc/PacketQueueTTL.h index 3ff8864ccb..f365a0af66 100644 --- a/src/mc/external/webrtc/PacketQueueTTL.h +++ b/src/mc/external/webrtc/PacketQueueTTL.h @@ -4,12 +4,6 @@ namespace webrtc { -struct PacketQueueTTL { -public: - // prevent constructor by default - PacketQueueTTL& operator=(PacketQueueTTL const&); - PacketQueueTTL(PacketQueueTTL const&); - PacketQueueTTL(); -}; +struct PacketQueueTTL {}; } // namespace webrtc diff --git a/src/mc/external/webrtc/PacketReceiver.h b/src/mc/external/webrtc/PacketReceiver.h index 3c0c1a569c..1ef0b9cd3c 100644 --- a/src/mc/external/webrtc/PacketReceiver.h +++ b/src/mc/external/webrtc/PacketReceiver.h @@ -15,12 +15,6 @@ namespace webrtc { class RtpPacketReceived; } namespace webrtc { class PacketReceiver { -public: - // prevent constructor by default - PacketReceiver& operator=(PacketReceiver const&); - PacketReceiver(PacketReceiver const&); - PacketReceiver(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/external/webrtc/PacketResult.h b/src/mc/external/webrtc/PacketResult.h index e13c3708ed..9e2882091b 100644 --- a/src/mc/external/webrtc/PacketResult.h +++ b/src/mc/external/webrtc/PacketResult.h @@ -13,12 +13,6 @@ struct PacketResult { // PacketResult inner types define class ReceiveTimeOrder { - public: - // prevent constructor by default - ReceiveTimeOrder& operator=(ReceiveTimeOrder const&); - ReceiveTimeOrder(ReceiveTimeOrder const&); - ReceiveTimeOrder(); - public: // member functions // NOLINTBEGIN diff --git a/src/mc/external/webrtc/PacketRouter.h b/src/mc/external/webrtc/PacketRouter.h index e274bb886d..f02af26088 100644 --- a/src/mc/external/webrtc/PacketRouter.h +++ b/src/mc/external/webrtc/PacketRouter.h @@ -16,11 +16,6 @@ namespace webrtc { struct PacedPacketInfo; } namespace webrtc { class PacketRouter { -public: - // prevent constructor by default - PacketRouter& operator=(PacketRouter const&); - PacketRouter(PacketRouter const&); - public: // member functions // NOLINTBEGIN diff --git a/src/mc/external/webrtc/PacketSequencer.h b/src/mc/external/webrtc/PacketSequencer.h index 0340f91e1a..a6e0f085df 100644 --- a/src/mc/external/webrtc/PacketSequencer.h +++ b/src/mc/external/webrtc/PacketSequencer.h @@ -12,12 +12,6 @@ namespace webrtc { struct RtpState; } namespace webrtc { class PacketSequencer { -public: - // prevent constructor by default - PacketSequencer& operator=(PacketSequencer const&); - PacketSequencer(PacketSequencer const&); - PacketSequencer(); - public: // member functions // NOLINTBEGIN diff --git a/src/mc/external/webrtc/PeerConnection.h b/src/mc/external/webrtc/PeerConnection.h index f143823f7c..91321dfb27 100644 --- a/src/mc/external/webrtc/PeerConnection.h +++ b/src/mc/external/webrtc/PeerConnection.h @@ -49,19 +49,7 @@ class PeerConnection { // clang-format on // PeerConnection inner types define - struct InitializePortAllocatorResult { - public: - // prevent constructor by default - InitializePortAllocatorResult& operator=(InitializePortAllocatorResult const&); - InitializePortAllocatorResult(InitializePortAllocatorResult const&); - InitializePortAllocatorResult(); - }; - -public: - // prevent constructor by default - PeerConnection& operator=(PeerConnection const&); - PeerConnection(PeerConnection const&); - PeerConnection(); + struct InitializePortAllocatorResult {}; public: // member functions diff --git a/src/mc/external/webrtc/PeerConnectionFactoryInterface.h b/src/mc/external/webrtc/PeerConnectionFactoryInterface.h index b338dc829e..c76923c576 100644 --- a/src/mc/external/webrtc/PeerConnectionFactoryInterface.h +++ b/src/mc/external/webrtc/PeerConnectionFactoryInterface.h @@ -65,12 +65,6 @@ class PeerConnectionFactoryInterface : public ::webrtc::RefCountInterface { // NOLINTEND }; -public: - // prevent constructor by default - PeerConnectionFactoryInterface& operator=(PeerConnectionFactoryInterface const&); - PeerConnectionFactoryInterface(PeerConnectionFactoryInterface const&); - PeerConnectionFactoryInterface(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/external/webrtc/PeerConnectionInterface.h b/src/mc/external/webrtc/PeerConnectionInterface.h index fd40f14818..59f9f9cacd 100644 --- a/src/mc/external/webrtc/PeerConnectionInterface.h +++ b/src/mc/external/webrtc/PeerConnectionInterface.h @@ -302,12 +302,6 @@ class PeerConnectionInterface : public ::webrtc::RefCountInterface { KStatsOutputLevelDebug = 1, }; -public: - // prevent constructor by default - PeerConnectionInterface& operator=(PeerConnectionInterface const&); - PeerConnectionInterface(PeerConnectionInterface const&); - PeerConnectionInterface(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/external/webrtc/PeerConnectionInternal.h b/src/mc/external/webrtc/PeerConnectionInternal.h index 3f2fc4e592..03b4494e78 100644 --- a/src/mc/external/webrtc/PeerConnectionInternal.h +++ b/src/mc/external/webrtc/PeerConnectionInternal.h @@ -4,12 +4,6 @@ namespace webrtc { -class PeerConnectionInternal { -public: - // prevent constructor by default - PeerConnectionInternal& operator=(PeerConnectionInternal const&); - PeerConnectionInternal(PeerConnectionInternal const&); - PeerConnectionInternal(); -}; +class PeerConnectionInternal {}; } // namespace webrtc diff --git a/src/mc/external/webrtc/PeerConnectionMessageHandler.h b/src/mc/external/webrtc/PeerConnectionMessageHandler.h index 0dc13525ba..2b7fcc9eaf 100644 --- a/src/mc/external/webrtc/PeerConnectionMessageHandler.h +++ b/src/mc/external/webrtc/PeerConnectionMessageHandler.h @@ -15,12 +15,6 @@ namespace webrtc { class StatsObserver; } namespace webrtc { class PeerConnectionMessageHandler { -public: - // prevent constructor by default - PeerConnectionMessageHandler& operator=(PeerConnectionMessageHandler const&); - PeerConnectionMessageHandler(PeerConnectionMessageHandler const&); - PeerConnectionMessageHandler(); - public: // member functions // NOLINTBEGIN diff --git a/src/mc/external/webrtc/PeerConnectionObserver.h b/src/mc/external/webrtc/PeerConnectionObserver.h index 3e6a0ea957..80a45fad1c 100644 --- a/src/mc/external/webrtc/PeerConnectionObserver.h +++ b/src/mc/external/webrtc/PeerConnectionObserver.h @@ -20,12 +20,6 @@ namespace webrtc { class RtpTransceiverInterface; } namespace webrtc { class PeerConnectionObserver { -public: - // prevent constructor by default - PeerConnectionObserver& operator=(PeerConnectionObserver const&); - PeerConnectionObserver(PeerConnectionObserver const&); - PeerConnectionObserver(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/external/webrtc/PeerConnectionSdpMethods.h b/src/mc/external/webrtc/PeerConnectionSdpMethods.h index 12715f4f31..aa33909e94 100644 --- a/src/mc/external/webrtc/PeerConnectionSdpMethods.h +++ b/src/mc/external/webrtc/PeerConnectionSdpMethods.h @@ -4,12 +4,6 @@ namespace webrtc { -class PeerConnectionSdpMethods { -public: - // prevent constructor by default - PeerConnectionSdpMethods& operator=(PeerConnectionSdpMethods const&); - PeerConnectionSdpMethods(PeerConnectionSdpMethods const&); - PeerConnectionSdpMethods(); -}; +class PeerConnectionSdpMethods {}; } // namespace webrtc diff --git a/src/mc/external/webrtc/PlanarYuv16BBuffer.h b/src/mc/external/webrtc/PlanarYuv16BBuffer.h index edc39266aa..b5a6b9ece7 100644 --- a/src/mc/external/webrtc/PlanarYuv16BBuffer.h +++ b/src/mc/external/webrtc/PlanarYuv16BBuffer.h @@ -8,12 +8,6 @@ namespace webrtc { class PlanarYuv16BBuffer : public ::webrtc::PlanarYuvBuffer { -public: - // prevent constructor by default - PlanarYuv16BBuffer& operator=(PlanarYuv16BBuffer const&); - PlanarYuv16BBuffer(PlanarYuv16BBuffer const&); - PlanarYuv16BBuffer(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/external/webrtc/PlanarYuv8Buffer.h b/src/mc/external/webrtc/PlanarYuv8Buffer.h index 1b7eed67a9..bcde8e4eab 100644 --- a/src/mc/external/webrtc/PlanarYuv8Buffer.h +++ b/src/mc/external/webrtc/PlanarYuv8Buffer.h @@ -8,12 +8,6 @@ namespace webrtc { class PlanarYuv8Buffer : public ::webrtc::PlanarYuvBuffer { -public: - // prevent constructor by default - PlanarYuv8Buffer& operator=(PlanarYuv8Buffer const&); - PlanarYuv8Buffer(PlanarYuv8Buffer const&); - PlanarYuv8Buffer(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/external/webrtc/PlanarYuvBuffer.h b/src/mc/external/webrtc/PlanarYuvBuffer.h index 793a8b1262..732880b633 100644 --- a/src/mc/external/webrtc/PlanarYuvBuffer.h +++ b/src/mc/external/webrtc/PlanarYuvBuffer.h @@ -8,12 +8,6 @@ namespace webrtc { class PlanarYuvBuffer : public ::webrtc::VideoFrameBuffer { -public: - // prevent constructor by default - PlanarYuvBuffer& operator=(PlanarYuvBuffer const&); - PlanarYuvBuffer(PlanarYuvBuffer const&); - PlanarYuvBuffer(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/external/webrtc/PlayoutDelayLimits.h b/src/mc/external/webrtc/PlayoutDelayLimits.h index 91af7e18d0..3a0aa2fdad 100644 --- a/src/mc/external/webrtc/PlayoutDelayLimits.h +++ b/src/mc/external/webrtc/PlayoutDelayLimits.h @@ -10,12 +10,6 @@ namespace webrtc { class VideoPlayoutDelay; } namespace webrtc { class PlayoutDelayLimits { -public: - // prevent constructor by default - PlayoutDelayLimits& operator=(PlayoutDelayLimits const&); - PlayoutDelayLimits(PlayoutDelayLimits const&); - PlayoutDelayLimits(); - public: // static functions // NOLINTBEGIN diff --git a/src/mc/external/webrtc/Pli.h b/src/mc/external/webrtc/Pli.h index 8c70554da3..1c23ceb6fe 100644 --- a/src/mc/external/webrtc/Pli.h +++ b/src/mc/external/webrtc/Pli.h @@ -10,11 +10,6 @@ namespace webrtc::rtcp { class CommonHeader; } namespace webrtc::rtcp { class Pli { -public: - // prevent constructor by default - Pli& operator=(Pli const&); - Pli(Pli const&); - public: // member functions // NOLINTBEGIN diff --git a/src/mc/external/webrtc/PrioritizedPacketQueue.h b/src/mc/external/webrtc/PrioritizedPacketQueue.h index ae18a64ca1..85162050ce 100644 --- a/src/mc/external/webrtc/PrioritizedPacketQueue.h +++ b/src/mc/external/webrtc/PrioritizedPacketQueue.h @@ -27,12 +27,6 @@ struct PrioritizedPacketQueue { // PrioritizedPacketQueue inner types define class QueuedPacket { - public: - // prevent constructor by default - QueuedPacket& operator=(QueuedPacket const&); - QueuedPacket(QueuedPacket const&); - QueuedPacket(); - public: // member functions // NOLINTBEGIN @@ -49,12 +43,6 @@ struct PrioritizedPacketQueue { }; class StreamQueue { - public: - // prevent constructor by default - StreamQueue& operator=(StreamQueue const&); - StreamQueue(StreamQueue const&); - StreamQueue(); - public: // member functions // NOLINTBEGIN @@ -82,12 +70,6 @@ struct PrioritizedPacketQueue { // NOLINTEND }; -public: - // prevent constructor by default - PrioritizedPacketQueue& operator=(PrioritizedPacketQueue const&); - PrioritizedPacketQueue(PrioritizedPacketQueue const&); - PrioritizedPacketQueue(); - public: // member functions // NOLINTBEGIN diff --git a/src/mc/external/webrtc/ProbeBitrateEstimator.h b/src/mc/external/webrtc/ProbeBitrateEstimator.h index be103def53..2de0865dfa 100644 --- a/src/mc/external/webrtc/ProbeBitrateEstimator.h +++ b/src/mc/external/webrtc/ProbeBitrateEstimator.h @@ -13,12 +13,6 @@ namespace webrtc { struct PacketResult; } namespace webrtc { class ProbeBitrateEstimator { -public: - // prevent constructor by default - ProbeBitrateEstimator& operator=(ProbeBitrateEstimator const&); - ProbeBitrateEstimator(ProbeBitrateEstimator const&); - ProbeBitrateEstimator(); - public: // member functions // NOLINTBEGIN diff --git a/src/mc/external/webrtc/ProbeController.h b/src/mc/external/webrtc/ProbeController.h index f495dee8bb..c78bb3fcdb 100644 --- a/src/mc/external/webrtc/ProbeController.h +++ b/src/mc/external/webrtc/ProbeController.h @@ -19,12 +19,6 @@ namespace webrtc { struct ProbeClusterConfig; } namespace webrtc { class ProbeController { -public: - // prevent constructor by default - ProbeController& operator=(ProbeController const&); - ProbeController(ProbeController const&); - ProbeController(); - public: // member functions // NOLINTBEGIN diff --git a/src/mc/external/webrtc/ProbeControllerConfig.h b/src/mc/external/webrtc/ProbeControllerConfig.h index 7c771af664..b56a5af868 100644 --- a/src/mc/external/webrtc/ProbeControllerConfig.h +++ b/src/mc/external/webrtc/ProbeControllerConfig.h @@ -10,12 +10,6 @@ namespace webrtc { class FieldTrialsView; } namespace webrtc { struct ProbeControllerConfig { -public: - // prevent constructor by default - ProbeControllerConfig& operator=(ProbeControllerConfig const&); - ProbeControllerConfig(ProbeControllerConfig const&); - ProbeControllerConfig(); - public: // member functions // NOLINTBEGIN diff --git a/src/mc/external/webrtc/Psfb.h b/src/mc/external/webrtc/Psfb.h index c7d89923a5..2fd817af4b 100644 --- a/src/mc/external/webrtc/Psfb.h +++ b/src/mc/external/webrtc/Psfb.h @@ -5,12 +5,6 @@ namespace webrtc::rtcp { class Psfb { -public: - // prevent constructor by default - Psfb& operator=(Psfb const&); - Psfb(Psfb const&); - Psfb(); - public: // member functions // NOLINTBEGIN diff --git a/src/mc/external/webrtc/RTCAudioPlayoutStats.h b/src/mc/external/webrtc/RTCAudioPlayoutStats.h index fff4e61635..6cdee4b169 100644 --- a/src/mc/external/webrtc/RTCAudioPlayoutStats.h +++ b/src/mc/external/webrtc/RTCAudioPlayoutStats.h @@ -10,12 +10,6 @@ namespace webrtc { class Timestamp; } namespace webrtc { class RTCAudioPlayoutStats { -public: - // prevent constructor by default - RTCAudioPlayoutStats& operator=(RTCAudioPlayoutStats const&); - RTCAudioPlayoutStats(RTCAudioPlayoutStats const&); - RTCAudioPlayoutStats(); - public: // member functions // NOLINTBEGIN diff --git a/src/mc/external/webrtc/RTCAudioSourceStats.h b/src/mc/external/webrtc/RTCAudioSourceStats.h index 01331e8337..6fb53e3f73 100644 --- a/src/mc/external/webrtc/RTCAudioSourceStats.h +++ b/src/mc/external/webrtc/RTCAudioSourceStats.h @@ -10,12 +10,6 @@ namespace webrtc { class Timestamp; } namespace webrtc { class RTCAudioSourceStats { -public: - // prevent constructor by default - RTCAudioSourceStats& operator=(RTCAudioSourceStats const&); - RTCAudioSourceStats(RTCAudioSourceStats const&); - RTCAudioSourceStats(); - public: // member functions // NOLINTBEGIN diff --git a/src/mc/external/webrtc/RTCCertificateStats.h b/src/mc/external/webrtc/RTCCertificateStats.h index 92ae2e4603..cebfd3d289 100644 --- a/src/mc/external/webrtc/RTCCertificateStats.h +++ b/src/mc/external/webrtc/RTCCertificateStats.h @@ -10,12 +10,6 @@ namespace webrtc { class Timestamp; } namespace webrtc { class RTCCertificateStats { -public: - // prevent constructor by default - RTCCertificateStats& operator=(RTCCertificateStats const&); - RTCCertificateStats(RTCCertificateStats const&); - RTCCertificateStats(); - public: // member functions // NOLINTBEGIN diff --git a/src/mc/external/webrtc/RTCCodecStats.h b/src/mc/external/webrtc/RTCCodecStats.h index d7cf20ed5e..9367d7b3a0 100644 --- a/src/mc/external/webrtc/RTCCodecStats.h +++ b/src/mc/external/webrtc/RTCCodecStats.h @@ -10,12 +10,6 @@ namespace webrtc { class Timestamp; } namespace webrtc { class RTCCodecStats { -public: - // prevent constructor by default - RTCCodecStats& operator=(RTCCodecStats const&); - RTCCodecStats(RTCCodecStats const&); - RTCCodecStats(); - public: // member functions // NOLINTBEGIN diff --git a/src/mc/external/webrtc/RTCDataChannelStats.h b/src/mc/external/webrtc/RTCDataChannelStats.h index 13ea2b737b..7c8dbd0de6 100644 --- a/src/mc/external/webrtc/RTCDataChannelStats.h +++ b/src/mc/external/webrtc/RTCDataChannelStats.h @@ -10,12 +10,6 @@ namespace webrtc { class Timestamp; } namespace webrtc { class RTCDataChannelStats { -public: - // prevent constructor by default - RTCDataChannelStats& operator=(RTCDataChannelStats const&); - RTCDataChannelStats(RTCDataChannelStats const&); - RTCDataChannelStats(); - public: // member functions // NOLINTBEGIN diff --git a/src/mc/external/webrtc/RTCErrorOr.h b/src/mc/external/webrtc/RTCErrorOr.h index 95a2c4ff4f..5608bdf2ed 100644 --- a/src/mc/external/webrtc/RTCErrorOr.h +++ b/src/mc/external/webrtc/RTCErrorOr.h @@ -5,12 +5,6 @@ namespace webrtc { template -class RTCErrorOr { -public: - // prevent constructor by default - RTCErrorOr& operator=(RTCErrorOr const&); - RTCErrorOr(RTCErrorOr const&); - RTCErrorOr(); -}; +class RTCErrorOr {}; } // namespace webrtc diff --git a/src/mc/external/webrtc/RTCIceCandidatePairStats.h b/src/mc/external/webrtc/RTCIceCandidatePairStats.h index 5ed1cd46e4..b368fb8ae9 100644 --- a/src/mc/external/webrtc/RTCIceCandidatePairStats.h +++ b/src/mc/external/webrtc/RTCIceCandidatePairStats.h @@ -10,12 +10,6 @@ namespace webrtc { class Timestamp; } namespace webrtc { class RTCIceCandidatePairStats { -public: - // prevent constructor by default - RTCIceCandidatePairStats& operator=(RTCIceCandidatePairStats const&); - RTCIceCandidatePairStats(RTCIceCandidatePairStats const&); - RTCIceCandidatePairStats(); - public: // member functions // NOLINTBEGIN diff --git a/src/mc/external/webrtc/RTCIceCandidateStats.h b/src/mc/external/webrtc/RTCIceCandidateStats.h index 207037812b..300978fa49 100644 --- a/src/mc/external/webrtc/RTCIceCandidateStats.h +++ b/src/mc/external/webrtc/RTCIceCandidateStats.h @@ -10,11 +10,6 @@ namespace webrtc { class Timestamp; } namespace webrtc { class RTCIceCandidateStats { -public: - // prevent constructor by default - RTCIceCandidateStats& operator=(RTCIceCandidateStats const&); - RTCIceCandidateStats(); - public: // member functions // NOLINTBEGIN diff --git a/src/mc/external/webrtc/RTCInboundRtpStreamStats.h b/src/mc/external/webrtc/RTCInboundRtpStreamStats.h index 080c720c5e..ebcc717b3c 100644 --- a/src/mc/external/webrtc/RTCInboundRtpStreamStats.h +++ b/src/mc/external/webrtc/RTCInboundRtpStreamStats.h @@ -10,11 +10,6 @@ namespace webrtc { class Timestamp; } namespace webrtc { class RTCInboundRtpStreamStats { -public: - // prevent constructor by default - RTCInboundRtpStreamStats& operator=(RTCInboundRtpStreamStats const&); - RTCInboundRtpStreamStats(); - public: // member functions // NOLINTBEGIN diff --git a/src/mc/external/webrtc/RTCLocalIceCandidateStats.h b/src/mc/external/webrtc/RTCLocalIceCandidateStats.h index 6dd26a771f..a6919a00ca 100644 --- a/src/mc/external/webrtc/RTCLocalIceCandidateStats.h +++ b/src/mc/external/webrtc/RTCLocalIceCandidateStats.h @@ -10,12 +10,6 @@ namespace webrtc { class Timestamp; } namespace webrtc { class RTCLocalIceCandidateStats { -public: - // prevent constructor by default - RTCLocalIceCandidateStats& operator=(RTCLocalIceCandidateStats const&); - RTCLocalIceCandidateStats(RTCLocalIceCandidateStats const&); - RTCLocalIceCandidateStats(); - public: // member functions // NOLINTBEGIN diff --git a/src/mc/external/webrtc/RTCMediaSourceStats.h b/src/mc/external/webrtc/RTCMediaSourceStats.h index e1a9afebf2..537e813db6 100644 --- a/src/mc/external/webrtc/RTCMediaSourceStats.h +++ b/src/mc/external/webrtc/RTCMediaSourceStats.h @@ -10,11 +10,6 @@ namespace webrtc { class Timestamp; } namespace webrtc { class RTCMediaSourceStats { -public: - // prevent constructor by default - RTCMediaSourceStats& operator=(RTCMediaSourceStats const&); - RTCMediaSourceStats(); - public: // member functions // NOLINTBEGIN diff --git a/src/mc/external/webrtc/RTCOutboundRtpStreamStats.h b/src/mc/external/webrtc/RTCOutboundRtpStreamStats.h index 8c06938a8d..3fb383666d 100644 --- a/src/mc/external/webrtc/RTCOutboundRtpStreamStats.h +++ b/src/mc/external/webrtc/RTCOutboundRtpStreamStats.h @@ -10,11 +10,6 @@ namespace webrtc { class Timestamp; } namespace webrtc { class RTCOutboundRtpStreamStats { -public: - // prevent constructor by default - RTCOutboundRtpStreamStats& operator=(RTCOutboundRtpStreamStats const&); - RTCOutboundRtpStreamStats(); - public: // member functions // NOLINTBEGIN diff --git a/src/mc/external/webrtc/RTCPReceiver.h b/src/mc/external/webrtc/RTCPReceiver.h index 16ceea27c2..6662f9b77e 100644 --- a/src/mc/external/webrtc/RTCPReceiver.h +++ b/src/mc/external/webrtc/RTCPReceiver.h @@ -33,21 +33,9 @@ struct RTCPReceiver { // clang-format on // RTCPReceiver inner types define - class NonSenderRttStats { - public: - // prevent constructor by default - NonSenderRttStats& operator=(NonSenderRttStats const&); - NonSenderRttStats(NonSenderRttStats const&); - NonSenderRttStats(); - }; + class NonSenderRttStats {}; struct PacketInformation { - public: - // prevent constructor by default - PacketInformation& operator=(PacketInformation const&); - PacketInformation(PacketInformation const&); - PacketInformation(); - public: // member functions // NOLINTBEGIN @@ -62,12 +50,6 @@ struct RTCPReceiver { }; struct RegisteredSsrcs { - public: - // prevent constructor by default - RegisteredSsrcs& operator=(RegisteredSsrcs const&); - RegisteredSsrcs(RegisteredSsrcs const&); - RegisteredSsrcs(); - public: // member functions // NOLINTBEGIN @@ -96,12 +78,6 @@ struct RTCPReceiver { }; class RttStats { - public: - // prevent constructor by default - RttStats& operator=(RttStats const&); - RttStats(RttStats const&); - RttStats(); - public: // member functions // NOLINTBEGIN @@ -110,12 +86,6 @@ struct RTCPReceiver { }; struct TmmbrInformation { - public: - // prevent constructor by default - TmmbrInformation& operator=(TmmbrInformation const&); - TmmbrInformation(TmmbrInformation const&); - TmmbrInformation(); - public: // member functions // NOLINTBEGIN @@ -137,12 +107,6 @@ struct RTCPReceiver { // NOLINTEND }; -public: - // prevent constructor by default - RTCPReceiver& operator=(RTCPReceiver const&); - RTCPReceiver(RTCPReceiver const&); - RTCPReceiver(); - public: // member functions // NOLINTBEGIN diff --git a/src/mc/external/webrtc/RTCPSender.h b/src/mc/external/webrtc/RTCPSender.h index 668ec9aabc..0671985214 100644 --- a/src/mc/external/webrtc/RTCPSender.h +++ b/src/mc/external/webrtc/RTCPSender.h @@ -33,12 +33,6 @@ class RTCPSender { // RTCPSender inner types define struct Configuration { - public: - // prevent constructor by default - Configuration& operator=(Configuration const&); - Configuration(Configuration const&); - Configuration(); - public: // member functions // NOLINTBEGIN @@ -60,11 +54,6 @@ class RTCPSender { }; struct FeedbackState { - public: - // prevent constructor by default - FeedbackState& operator=(FeedbackState const&); - FeedbackState(FeedbackState const&); - public: // member functions // NOLINTBEGIN @@ -87,12 +76,6 @@ class RTCPSender { }; class PacketSender { - public: - // prevent constructor by default - PacketSender& operator=(PacketSender const&); - PacketSender(PacketSender const&); - PacketSender(); - public: // member functions // NOLINTBEGIN @@ -114,19 +97,7 @@ class RTCPSender { // NOLINTEND }; - class RtcpContext { - public: - // prevent constructor by default - RtcpContext& operator=(RtcpContext const&); - RtcpContext(RtcpContext const&); - RtcpContext(); - }; - -public: - // prevent constructor by default - RTCPSender& operator=(RTCPSender const&); - RTCPSender(RTCPSender const&); - RTCPSender(); + class RtcpContext {}; public: // member functions diff --git a/src/mc/external/webrtc/RTCPeerConnectionStats.h b/src/mc/external/webrtc/RTCPeerConnectionStats.h index f568c35a3a..69572d975d 100644 --- a/src/mc/external/webrtc/RTCPeerConnectionStats.h +++ b/src/mc/external/webrtc/RTCPeerConnectionStats.h @@ -10,12 +10,6 @@ namespace webrtc { class Timestamp; } namespace webrtc { class RTCPeerConnectionStats { -public: - // prevent constructor by default - RTCPeerConnectionStats& operator=(RTCPeerConnectionStats const&); - RTCPeerConnectionStats(RTCPeerConnectionStats const&); - RTCPeerConnectionStats(); - public: // member functions // NOLINTBEGIN diff --git a/src/mc/external/webrtc/RTCReceivedRtpStreamStats.h b/src/mc/external/webrtc/RTCReceivedRtpStreamStats.h index 8c77cef3e7..0dbd442710 100644 --- a/src/mc/external/webrtc/RTCReceivedRtpStreamStats.h +++ b/src/mc/external/webrtc/RTCReceivedRtpStreamStats.h @@ -10,12 +10,6 @@ namespace webrtc { class Timestamp; } namespace webrtc { class RTCReceivedRtpStreamStats { -public: - // prevent constructor by default - RTCReceivedRtpStreamStats& operator=(RTCReceivedRtpStreamStats const&); - RTCReceivedRtpStreamStats(RTCReceivedRtpStreamStats const&); - RTCReceivedRtpStreamStats(); - public: // member functions // NOLINTBEGIN diff --git a/src/mc/external/webrtc/RTCRemoteIceCandidateStats.h b/src/mc/external/webrtc/RTCRemoteIceCandidateStats.h index d431404ba5..0f22528c3d 100644 --- a/src/mc/external/webrtc/RTCRemoteIceCandidateStats.h +++ b/src/mc/external/webrtc/RTCRemoteIceCandidateStats.h @@ -10,12 +10,6 @@ namespace webrtc { class Timestamp; } namespace webrtc { class RTCRemoteIceCandidateStats { -public: - // prevent constructor by default - RTCRemoteIceCandidateStats& operator=(RTCRemoteIceCandidateStats const&); - RTCRemoteIceCandidateStats(RTCRemoteIceCandidateStats const&); - RTCRemoteIceCandidateStats(); - public: // member functions // NOLINTBEGIN diff --git a/src/mc/external/webrtc/RTCRemoteInboundRtpStreamStats.h b/src/mc/external/webrtc/RTCRemoteInboundRtpStreamStats.h index efeb252d10..96b9eb3b9f 100644 --- a/src/mc/external/webrtc/RTCRemoteInboundRtpStreamStats.h +++ b/src/mc/external/webrtc/RTCRemoteInboundRtpStreamStats.h @@ -10,12 +10,6 @@ namespace webrtc { class Timestamp; } namespace webrtc { class RTCRemoteInboundRtpStreamStats { -public: - // prevent constructor by default - RTCRemoteInboundRtpStreamStats& operator=(RTCRemoteInboundRtpStreamStats const&); - RTCRemoteInboundRtpStreamStats(RTCRemoteInboundRtpStreamStats const&); - RTCRemoteInboundRtpStreamStats(); - public: // member functions // NOLINTBEGIN diff --git a/src/mc/external/webrtc/RTCRemoteOutboundRtpStreamStats.h b/src/mc/external/webrtc/RTCRemoteOutboundRtpStreamStats.h index c34f309ed5..25f1e85462 100644 --- a/src/mc/external/webrtc/RTCRemoteOutboundRtpStreamStats.h +++ b/src/mc/external/webrtc/RTCRemoteOutboundRtpStreamStats.h @@ -10,12 +10,6 @@ namespace webrtc { class Timestamp; } namespace webrtc { class RTCRemoteOutboundRtpStreamStats { -public: - // prevent constructor by default - RTCRemoteOutboundRtpStreamStats& operator=(RTCRemoteOutboundRtpStreamStats const&); - RTCRemoteOutboundRtpStreamStats(RTCRemoteOutboundRtpStreamStats const&); - RTCRemoteOutboundRtpStreamStats(); - public: // member functions // NOLINTBEGIN diff --git a/src/mc/external/webrtc/RTCRtpStreamStats.h b/src/mc/external/webrtc/RTCRtpStreamStats.h index 66ab53b93a..9f5bbb65c9 100644 --- a/src/mc/external/webrtc/RTCRtpStreamStats.h +++ b/src/mc/external/webrtc/RTCRtpStreamStats.h @@ -10,11 +10,6 @@ namespace webrtc { class Timestamp; } namespace webrtc { class RTCRtpStreamStats { -public: - // prevent constructor by default - RTCRtpStreamStats& operator=(RTCRtpStreamStats const&); - RTCRtpStreamStats(); - public: // member functions // NOLINTBEGIN diff --git a/src/mc/external/webrtc/RTCSentRtpStreamStats.h b/src/mc/external/webrtc/RTCSentRtpStreamStats.h index 14790eb690..01bebd5bee 100644 --- a/src/mc/external/webrtc/RTCSentRtpStreamStats.h +++ b/src/mc/external/webrtc/RTCSentRtpStreamStats.h @@ -10,12 +10,6 @@ namespace webrtc { class Timestamp; } namespace webrtc { class RTCSentRtpStreamStats { -public: - // prevent constructor by default - RTCSentRtpStreamStats& operator=(RTCSentRtpStreamStats const&); - RTCSentRtpStreamStats(RTCSentRtpStreamStats const&); - RTCSentRtpStreamStats(); - public: // member functions // NOLINTBEGIN diff --git a/src/mc/external/webrtc/RTCStatsCollector.h b/src/mc/external/webrtc/RTCStatsCollector.h index 09c989a083..109adf114f 100644 --- a/src/mc/external/webrtc/RTCStatsCollector.h +++ b/src/mc/external/webrtc/RTCStatsCollector.h @@ -32,12 +32,6 @@ class RTCStatsCollector { // RTCStatsCollector inner types define struct CertificateStatsPair { - public: - // prevent constructor by default - CertificateStatsPair& operator=(CertificateStatsPair const&); - CertificateStatsPair(CertificateStatsPair const&); - CertificateStatsPair(); - public: // member functions // NOLINTBEGIN @@ -54,12 +48,6 @@ class RTCStatsCollector { }; struct InternalRecord { - public: - // prevent constructor by default - InternalRecord& operator=(InternalRecord const&); - InternalRecord(InternalRecord const&); - InternalRecord(); - public: // member functions // NOLINTBEGIN @@ -78,12 +66,6 @@ class RTCStatsCollector { // RequestInfo inner types define enum class FilterMode : uint {}; - public: - // prevent constructor by default - RequestInfo& operator=(RequestInfo const&); - RequestInfo(RequestInfo const&); - RequestInfo(); - public: // member functions // NOLINTBEGIN @@ -124,11 +106,6 @@ class RTCStatsCollector { }; struct RtpTransceiverStatsInfo { - public: - // prevent constructor by default - RtpTransceiverStatsInfo& operator=(RtpTransceiverStatsInfo const&); - RtpTransceiverStatsInfo(); - public: // member functions // NOLINTBEGIN @@ -146,12 +123,6 @@ class RTCStatsCollector { // NOLINTEND }; -public: - // prevent constructor by default - RTCStatsCollector& operator=(RTCStatsCollector const&); - RTCStatsCollector(RTCStatsCollector const&); - RTCStatsCollector(); - public: // member functions // NOLINTBEGIN diff --git a/src/mc/external/webrtc/RTCStatsCollectorCallback.h b/src/mc/external/webrtc/RTCStatsCollectorCallback.h index 910a6d6cda..62a48718b9 100644 --- a/src/mc/external/webrtc/RTCStatsCollectorCallback.h +++ b/src/mc/external/webrtc/RTCStatsCollectorCallback.h @@ -14,12 +14,6 @@ namespace webrtc { class RTCStatsReport; } namespace webrtc { class RTCStatsCollectorCallback : public ::webrtc::RefCountInterface { -public: - // prevent constructor by default - RTCStatsCollectorCallback& operator=(RTCStatsCollectorCallback const&); - RTCStatsCollectorCallback(RTCStatsCollectorCallback const&); - RTCStatsCollectorCallback(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/external/webrtc/RTCTransportStats.h b/src/mc/external/webrtc/RTCTransportStats.h index f5ba5b950f..2917476764 100644 --- a/src/mc/external/webrtc/RTCTransportStats.h +++ b/src/mc/external/webrtc/RTCTransportStats.h @@ -10,11 +10,6 @@ namespace webrtc { class Timestamp; } namespace webrtc { class RTCTransportStats { -public: - // prevent constructor by default - RTCTransportStats& operator=(RTCTransportStats const&); - RTCTransportStats(); - public: // member functions // NOLINTBEGIN diff --git a/src/mc/external/webrtc/RTCVideoSourceStats.h b/src/mc/external/webrtc/RTCVideoSourceStats.h index ba18907e84..7116d74c43 100644 --- a/src/mc/external/webrtc/RTCVideoSourceStats.h +++ b/src/mc/external/webrtc/RTCVideoSourceStats.h @@ -10,12 +10,6 @@ namespace webrtc { class Timestamp; } namespace webrtc { class RTCVideoSourceStats { -public: - // prevent constructor by default - RTCVideoSourceStats& operator=(RTCVideoSourceStats const&); - RTCVideoSourceStats(RTCVideoSourceStats const&); - RTCVideoSourceStats(); - public: // member functions // NOLINTBEGIN diff --git a/src/mc/external/webrtc/RTPSender.h b/src/mc/external/webrtc/RTPSender.h index 628779312d..9a85a7863d 100644 --- a/src/mc/external/webrtc/RTPSender.h +++ b/src/mc/external/webrtc/RTPSender.h @@ -17,12 +17,6 @@ namespace webrtc { struct RtpState; } namespace webrtc { class RTPSender { -public: - // prevent constructor by default - RTPSender& operator=(RTPSender const&); - RTPSender(RTPSender const&); - RTPSender(); - public: // member functions // NOLINTBEGIN diff --git a/src/mc/external/webrtc/RTPSenderVideo.h b/src/mc/external/webrtc/RTPSenderVideo.h index 43791d3ffe..98d881e2c8 100644 --- a/src/mc/external/webrtc/RTPSenderVideo.h +++ b/src/mc/external/webrtc/RTPSenderVideo.h @@ -27,12 +27,6 @@ class RTPSenderVideo { // RTPSenderVideo inner types define struct Config { - public: - // prevent constructor by default - Config& operator=(Config const&); - Config(Config const&); - Config(); - public: // member functions // NOLINTBEGIN @@ -46,12 +40,6 @@ class RTPSenderVideo { // NOLINTEND }; -public: - // prevent constructor by default - RTPSenderVideo& operator=(RTPSenderVideo const&); - RTPSenderVideo(RTPSenderVideo const&); - RTPSenderVideo(); - public: // member functions // NOLINTBEGIN diff --git a/src/mc/external/webrtc/RTPSenderVideoFrameTransformerDelegate.h b/src/mc/external/webrtc/RTPSenderVideoFrameTransformerDelegate.h index 99a0e79fa3..1a70085089 100644 --- a/src/mc/external/webrtc/RTPSenderVideoFrameTransformerDelegate.h +++ b/src/mc/external/webrtc/RTPSenderVideoFrameTransformerDelegate.h @@ -22,12 +22,6 @@ namespace webrtc { struct VideoLayersAllocation; } namespace webrtc { class RTPSenderVideoFrameTransformerDelegate { -public: - // prevent constructor by default - RTPSenderVideoFrameTransformerDelegate& operator=(RTPSenderVideoFrameTransformerDelegate const&); - RTPSenderVideoFrameTransformerDelegate(RTPSenderVideoFrameTransformerDelegate const&); - RTPSenderVideoFrameTransformerDelegate(); - public: // member functions // NOLINTBEGIN diff --git a/src/mc/external/webrtc/RTPVideoFrameSenderInterface.h b/src/mc/external/webrtc/RTPVideoFrameSenderInterface.h index da83ff82d3..7464b65c76 100644 --- a/src/mc/external/webrtc/RTPVideoFrameSenderInterface.h +++ b/src/mc/external/webrtc/RTPVideoFrameSenderInterface.h @@ -4,12 +4,6 @@ namespace webrtc { -class RTPVideoFrameSenderInterface { -public: - // prevent constructor by default - RTPVideoFrameSenderInterface& operator=(RTPVideoFrameSenderInterface const&); - RTPVideoFrameSenderInterface(RTPVideoFrameSenderInterface const&); - RTPVideoFrameSenderInterface(); -}; +class RTPVideoFrameSenderInterface {}; } // namespace webrtc diff --git a/src/mc/external/webrtc/Random.h b/src/mc/external/webrtc/Random.h index bcbb986c3d..820f45dfcb 100644 --- a/src/mc/external/webrtc/Random.h +++ b/src/mc/external/webrtc/Random.h @@ -5,12 +5,6 @@ namespace webrtc { struct Random { -public: - // prevent constructor by default - Random& operator=(Random const&); - Random(Random const&); - Random(); - public: // member functions // NOLINTBEGIN diff --git a/src/mc/external/webrtc/RapidResyncRequest.h b/src/mc/external/webrtc/RapidResyncRequest.h index 57605d7568..ad633530c3 100644 --- a/src/mc/external/webrtc/RapidResyncRequest.h +++ b/src/mc/external/webrtc/RapidResyncRequest.h @@ -10,12 +10,6 @@ namespace webrtc::rtcp { class CommonHeader; } namespace webrtc::rtcp { class RapidResyncRequest { -public: - // prevent constructor by default - RapidResyncRequest& operator=(RapidResyncRequest const&); - RapidResyncRequest(RapidResyncRequest const&); - RapidResyncRequest(); - public: // member functions // NOLINTBEGIN diff --git a/src/mc/external/webrtc/RateControlInput.h b/src/mc/external/webrtc/RateControlInput.h index deba9190bf..69680b3aa3 100644 --- a/src/mc/external/webrtc/RateControlInput.h +++ b/src/mc/external/webrtc/RateControlInput.h @@ -13,12 +13,6 @@ namespace webrtc { class DataRate; } namespace webrtc { struct RateControlInput { -public: - // prevent constructor by default - RateControlInput& operator=(RateControlInput const&); - RateControlInput(RateControlInput const&); - RateControlInput(); - public: // member functions // NOLINTBEGIN diff --git a/src/mc/external/webrtc/RateControlSettings.h b/src/mc/external/webrtc/RateControlSettings.h index 7017def922..2eeb9d5931 100644 --- a/src/mc/external/webrtc/RateControlSettings.h +++ b/src/mc/external/webrtc/RateControlSettings.h @@ -11,12 +11,6 @@ namespace webrtc { class FieldTrialsView; } namespace webrtc { class RateControlSettings { -public: - // prevent constructor by default - RateControlSettings& operator=(RateControlSettings const&); - RateControlSettings(RateControlSettings const&); - RateControlSettings(); - public: // member functions // NOLINTBEGIN diff --git a/src/mc/external/webrtc/RateLimiter.h b/src/mc/external/webrtc/RateLimiter.h index d9d5e83a1a..faf10303ad 100644 --- a/src/mc/external/webrtc/RateLimiter.h +++ b/src/mc/external/webrtc/RateLimiter.h @@ -10,12 +10,6 @@ namespace webrtc { class Clock; } namespace webrtc { class RateLimiter { -public: - // prevent constructor by default - RateLimiter& operator=(RateLimiter const&); - RateLimiter(RateLimiter const&); - RateLimiter(); - public: // member functions // NOLINTBEGIN diff --git a/src/mc/external/webrtc/RateStatistics.h b/src/mc/external/webrtc/RateStatistics.h index 6817a782d0..137e2daa47 100644 --- a/src/mc/external/webrtc/RateStatistics.h +++ b/src/mc/external/webrtc/RateStatistics.h @@ -13,12 +13,6 @@ class RateStatistics { // RateStatistics inner types define struct Bucket { - public: - // prevent constructor by default - Bucket& operator=(Bucket const&); - Bucket(Bucket const&); - Bucket(); - public: // member functions // NOLINTBEGIN @@ -32,11 +26,6 @@ class RateStatistics { // NOLINTEND }; -public: - // prevent constructor by default - RateStatistics& operator=(RateStatistics const&); - RateStatistics(); - public: // member functions // NOLINTBEGIN diff --git a/src/mc/external/webrtc/ReceiveStatistics.h b/src/mc/external/webrtc/ReceiveStatistics.h index c662d75038..17bdb8b961 100644 --- a/src/mc/external/webrtc/ReceiveStatistics.h +++ b/src/mc/external/webrtc/ReceiveStatistics.h @@ -14,12 +14,6 @@ namespace webrtc { class StreamStatistician; } namespace webrtc { class ReceiveStatistics : public ::webrtc::ReceiveStatisticsProvider, public ::webrtc::RtpPacketSinkInterface { -public: - // prevent constructor by default - ReceiveStatistics& operator=(ReceiveStatistics const&); - ReceiveStatistics(ReceiveStatistics const&); - ReceiveStatistics(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/external/webrtc/ReceiveStatisticsProvider.h b/src/mc/external/webrtc/ReceiveStatisticsProvider.h index 7e9bd715a6..96b3503d54 100644 --- a/src/mc/external/webrtc/ReceiveStatisticsProvider.h +++ b/src/mc/external/webrtc/ReceiveStatisticsProvider.h @@ -10,12 +10,6 @@ namespace webrtc::rtcp { class ReportBlock; } namespace webrtc { class ReceiveStatisticsProvider { -public: - // prevent constructor by default - ReceiveStatisticsProvider& operator=(ReceiveStatisticsProvider const&); - ReceiveStatisticsProvider(ReceiveStatisticsProvider const&); - ReceiveStatisticsProvider(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/external/webrtc/ReceiveStreamInterface.h b/src/mc/external/webrtc/ReceiveStreamInterface.h index bade571db3..2522c45e14 100644 --- a/src/mc/external/webrtc/ReceiveStreamInterface.h +++ b/src/mc/external/webrtc/ReceiveStreamInterface.h @@ -27,12 +27,6 @@ class ReceiveStreamInterface { ReceiveStreamRtpConfig(); }; -public: - // prevent constructor by default - ReceiveStreamInterface& operator=(ReceiveStreamInterface const&); - ReceiveStreamInterface(ReceiveStreamInterface const&); - ReceiveStreamInterface(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/external/webrtc/ReceiveTimeInfo.h b/src/mc/external/webrtc/ReceiveTimeInfo.h index 6e725a55ef..ea1a0ace40 100644 --- a/src/mc/external/webrtc/ReceiveTimeInfo.h +++ b/src/mc/external/webrtc/ReceiveTimeInfo.h @@ -4,12 +4,6 @@ namespace webrtc::rtcp { -struct ReceiveTimeInfo { -public: - // prevent constructor by default - ReceiveTimeInfo& operator=(ReceiveTimeInfo const&); - ReceiveTimeInfo(ReceiveTimeInfo const&); - ReceiveTimeInfo(); -}; +struct ReceiveTimeInfo {}; } // namespace webrtc::rtcp diff --git a/src/mc/external/webrtc/ReceiverReport.h b/src/mc/external/webrtc/ReceiverReport.h index 781a539df9..68c0f7ad95 100644 --- a/src/mc/external/webrtc/ReceiverReport.h +++ b/src/mc/external/webrtc/ReceiverReport.h @@ -11,11 +11,6 @@ namespace webrtc::rtcp { class ReportBlock; } namespace webrtc::rtcp { class ReceiverReport { -public: - // prevent constructor by default - ReceiverReport& operator=(ReceiverReport const&); - ReceiverReport(ReceiverReport const&); - public: // member functions // NOLINTBEGIN diff --git a/src/mc/external/webrtc/RecordableEncodedFrame.h b/src/mc/external/webrtc/RecordableEncodedFrame.h index fd8af23bf6..65b50f50da 100644 --- a/src/mc/external/webrtc/RecordableEncodedFrame.h +++ b/src/mc/external/webrtc/RecordableEncodedFrame.h @@ -38,12 +38,6 @@ class RecordableEncodedFrame { EncodedResolution(); }; -public: - // prevent constructor by default - RecordableEncodedFrame& operator=(RecordableEncodedFrame const&); - RecordableEncodedFrame(RecordableEncodedFrame const&); - RecordableEncodedFrame(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/external/webrtc/RefCountInterface.h b/src/mc/external/webrtc/RefCountInterface.h index 9ffccf54fa..b00c8576b7 100644 --- a/src/mc/external/webrtc/RefCountInterface.h +++ b/src/mc/external/webrtc/RefCountInterface.h @@ -8,12 +8,6 @@ namespace webrtc { class RefCountInterface { -public: - // prevent constructor by default - RefCountInterface& operator=(RefCountInterface const&); - RefCountInterface(RefCountInterface const&); - RefCountInterface(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/external/webrtc/RelativeUnit.h b/src/mc/external/webrtc/RelativeUnit.h index 7532ca6aa1..e88e0f264d 100644 --- a/src/mc/external/webrtc/RelativeUnit.h +++ b/src/mc/external/webrtc/RelativeUnit.h @@ -5,12 +5,6 @@ namespace webrtc::rtc_units_impl { template -class RelativeUnit { -public: - // prevent constructor by default - RelativeUnit& operator=(RelativeUnit const&); - RelativeUnit(RelativeUnit const&); - RelativeUnit(); -}; +class RelativeUnit {}; } // namespace webrtc::rtc_units_impl diff --git a/src/mc/external/webrtc/Remb.h b/src/mc/external/webrtc/Remb.h index f99867ec2c..f506934aeb 100644 --- a/src/mc/external/webrtc/Remb.h +++ b/src/mc/external/webrtc/Remb.h @@ -10,11 +10,6 @@ namespace webrtc::rtcp { class CommonHeader; } namespace webrtc::rtcp { class Remb { -public: - // prevent constructor by default - Remb& operator=(Remb const&); - Remb(Remb const&); - public: // member functions // NOLINTBEGIN diff --git a/src/mc/external/webrtc/RemoteAudioSource.h b/src/mc/external/webrtc/RemoteAudioSource.h index 1f57a96256..10b0024f18 100644 --- a/src/mc/external/webrtc/RemoteAudioSource.h +++ b/src/mc/external/webrtc/RemoteAudioSource.h @@ -19,12 +19,6 @@ class RemoteAudioSource { // RemoteAudioSource inner types define enum class OnAudioChannelGoneAction : uint {}; -public: - // prevent constructor by default - RemoteAudioSource& operator=(RemoteAudioSource const&); - RemoteAudioSource(RemoteAudioSource const&); - RemoteAudioSource(); - public: // member functions // NOLINTBEGIN diff --git a/src/mc/external/webrtc/RemoteEstimateSerializer.h b/src/mc/external/webrtc/RemoteEstimateSerializer.h index 5ff707b0a8..75208ed9c6 100644 --- a/src/mc/external/webrtc/RemoteEstimateSerializer.h +++ b/src/mc/external/webrtc/RemoteEstimateSerializer.h @@ -13,12 +13,6 @@ namespace webrtc { struct NetworkStateEstimate; } namespace webrtc::rtcp { class RemoteEstimateSerializer { -public: - // prevent constructor by default - RemoteEstimateSerializer& operator=(RemoteEstimateSerializer const&); - RemoteEstimateSerializer(RemoteEstimateSerializer const&); - RemoteEstimateSerializer(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/external/webrtc/RepairedRtpStreamId.h b/src/mc/external/webrtc/RepairedRtpStreamId.h index eba3eda66e..b5999eee2b 100644 --- a/src/mc/external/webrtc/RepairedRtpStreamId.h +++ b/src/mc/external/webrtc/RepairedRtpStreamId.h @@ -7,12 +7,6 @@ namespace webrtc { -class RepairedRtpStreamId : public ::webrtc::BaseRtpStringExtension { -public: - // prevent constructor by default - RepairedRtpStreamId& operator=(RepairedRtpStreamId const&); - RepairedRtpStreamId(RepairedRtpStreamId const&); - RepairedRtpStreamId(); -}; +class RepairedRtpStreamId : public ::webrtc::BaseRtpStringExtension {}; } // namespace webrtc diff --git a/src/mc/external/webrtc/RepeatingTaskHandle.h b/src/mc/external/webrtc/RepeatingTaskHandle.h index 8b4be44a12..4607031d53 100644 --- a/src/mc/external/webrtc/RepeatingTaskHandle.h +++ b/src/mc/external/webrtc/RepeatingTaskHandle.h @@ -17,12 +17,6 @@ namespace webrtc { class TimeDelta; } namespace webrtc { class RepeatingTaskHandle { -public: - // prevent constructor by default - RepeatingTaskHandle& operator=(RepeatingTaskHandle const&); - RepeatingTaskHandle(RepeatingTaskHandle const&); - RepeatingTaskHandle(); - public: // member functions // NOLINTBEGIN diff --git a/src/mc/external/webrtc/ReportBlockDataObserver.h b/src/mc/external/webrtc/ReportBlockDataObserver.h index 646ef56ba9..cab0b7b05c 100644 --- a/src/mc/external/webrtc/ReportBlockDataObserver.h +++ b/src/mc/external/webrtc/ReportBlockDataObserver.h @@ -10,12 +10,6 @@ namespace webrtc { class ReportBlockData; } namespace webrtc { class ReportBlockDataObserver { -public: - // prevent constructor by default - ReportBlockDataObserver& operator=(ReportBlockDataObserver const&); - ReportBlockDataObserver(ReportBlockDataObserver const&); - ReportBlockDataObserver(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/external/webrtc/Resource.h b/src/mc/external/webrtc/Resource.h index 78087bace9..04a15bd9e4 100644 --- a/src/mc/external/webrtc/Resource.h +++ b/src/mc/external/webrtc/Resource.h @@ -4,12 +4,6 @@ namespace webrtc { -class Resource { -public: - // prevent constructor by default - Resource& operator=(Resource const&); - Resource(Resource const&); - Resource(); -}; +class Resource {}; } // namespace webrtc diff --git a/src/mc/external/webrtc/RobustThroughputEstimator.h b/src/mc/external/webrtc/RobustThroughputEstimator.h index af925dcbbc..84c467cd9f 100644 --- a/src/mc/external/webrtc/RobustThroughputEstimator.h +++ b/src/mc/external/webrtc/RobustThroughputEstimator.h @@ -10,12 +10,6 @@ namespace webrtc { struct RobustThroughputEstimatorSettings; } namespace webrtc { class RobustThroughputEstimator { -public: - // prevent constructor by default - RobustThroughputEstimator& operator=(RobustThroughputEstimator const&); - RobustThroughputEstimator(RobustThroughputEstimator const&); - RobustThroughputEstimator(); - public: // member functions // NOLINTBEGIN diff --git a/src/mc/external/webrtc/RobustThroughputEstimatorSettings.h b/src/mc/external/webrtc/RobustThroughputEstimatorSettings.h index 805eab5dcb..ed20b4217e 100644 --- a/src/mc/external/webrtc/RobustThroughputEstimatorSettings.h +++ b/src/mc/external/webrtc/RobustThroughputEstimatorSettings.h @@ -11,12 +11,6 @@ namespace webrtc { class StructParametersParser; } namespace webrtc { struct RobustThroughputEstimatorSettings { -public: - // prevent constructor by default - RobustThroughputEstimatorSettings& operator=(RobustThroughputEstimatorSettings const&); - RobustThroughputEstimatorSettings(RobustThroughputEstimatorSettings const&); - RobustThroughputEstimatorSettings(); - public: // member functions // NOLINTBEGIN diff --git a/src/mc/external/webrtc/Rrtr.h b/src/mc/external/webrtc/Rrtr.h index 0b2c4a36d8..7819b64602 100644 --- a/src/mc/external/webrtc/Rrtr.h +++ b/src/mc/external/webrtc/Rrtr.h @@ -5,12 +5,6 @@ namespace webrtc::rtcp { class Rrtr { -public: - // prevent constructor by default - Rrtr& operator=(Rrtr const&); - Rrtr(Rrtr const&); - Rrtr(); - public: // member functions // NOLINTBEGIN diff --git a/src/mc/external/webrtc/RtcEventAlrState.h b/src/mc/external/webrtc/RtcEventAlrState.h index 4fa99ee107..f3b63b32f2 100644 --- a/src/mc/external/webrtc/RtcEventAlrState.h +++ b/src/mc/external/webrtc/RtcEventAlrState.h @@ -5,12 +5,6 @@ namespace webrtc { class RtcEventAlrState { -public: - // prevent constructor by default - RtcEventAlrState& operator=(RtcEventAlrState const&); - RtcEventAlrState(RtcEventAlrState const&); - RtcEventAlrState(); - public: // member functions // NOLINTBEGIN diff --git a/src/mc/external/webrtc/RtcEventBweUpdateDelayBased.h b/src/mc/external/webrtc/RtcEventBweUpdateDelayBased.h index 8d9f34ecd7..30884208ce 100644 --- a/src/mc/external/webrtc/RtcEventBweUpdateDelayBased.h +++ b/src/mc/external/webrtc/RtcEventBweUpdateDelayBased.h @@ -8,12 +8,6 @@ namespace webrtc { class RtcEventBweUpdateDelayBased { -public: - // prevent constructor by default - RtcEventBweUpdateDelayBased& operator=(RtcEventBweUpdateDelayBased const&); - RtcEventBweUpdateDelayBased(RtcEventBweUpdateDelayBased const&); - RtcEventBweUpdateDelayBased(); - public: // member functions // NOLINTBEGIN diff --git a/src/mc/external/webrtc/RtcEventBweUpdateLossBased.h b/src/mc/external/webrtc/RtcEventBweUpdateLossBased.h index 1c7fdc1c2a..d5341bd96c 100644 --- a/src/mc/external/webrtc/RtcEventBweUpdateLossBased.h +++ b/src/mc/external/webrtc/RtcEventBweUpdateLossBased.h @@ -5,12 +5,6 @@ namespace webrtc { class RtcEventBweUpdateLossBased { -public: - // prevent constructor by default - RtcEventBweUpdateLossBased& operator=(RtcEventBweUpdateLossBased const&); - RtcEventBweUpdateLossBased(RtcEventBweUpdateLossBased const&); - RtcEventBweUpdateLossBased(); - public: // member functions // NOLINTBEGIN diff --git a/src/mc/external/webrtc/RtcEventDtlsTransportState.h b/src/mc/external/webrtc/RtcEventDtlsTransportState.h index 173f89ad59..4cd8d07c7f 100644 --- a/src/mc/external/webrtc/RtcEventDtlsTransportState.h +++ b/src/mc/external/webrtc/RtcEventDtlsTransportState.h @@ -8,12 +8,6 @@ namespace webrtc { class RtcEventDtlsTransportState { -public: - // prevent constructor by default - RtcEventDtlsTransportState& operator=(RtcEventDtlsTransportState const&); - RtcEventDtlsTransportState(RtcEventDtlsTransportState const&); - RtcEventDtlsTransportState(); - public: // member functions // NOLINTBEGIN diff --git a/src/mc/external/webrtc/RtcEventDtlsWritableState.h b/src/mc/external/webrtc/RtcEventDtlsWritableState.h index 2266bccec1..94824859b9 100644 --- a/src/mc/external/webrtc/RtcEventDtlsWritableState.h +++ b/src/mc/external/webrtc/RtcEventDtlsWritableState.h @@ -5,12 +5,6 @@ namespace webrtc { class RtcEventDtlsWritableState { -public: - // prevent constructor by default - RtcEventDtlsWritableState& operator=(RtcEventDtlsWritableState const&); - RtcEventDtlsWritableState(RtcEventDtlsWritableState const&); - RtcEventDtlsWritableState(); - public: // member functions // NOLINTBEGIN diff --git a/src/mc/external/webrtc/RtcEventLog.h b/src/mc/external/webrtc/RtcEventLog.h index 5206f122c0..df4ba90cb6 100644 --- a/src/mc/external/webrtc/RtcEventLog.h +++ b/src/mc/external/webrtc/RtcEventLog.h @@ -27,12 +27,6 @@ class RtcEventLog { KUnlimitedOutput = 0, }; -public: - // prevent constructor by default - RtcEventLog& operator=(RtcEventLog const&); - RtcEventLog(RtcEventLog const&); - RtcEventLog(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/external/webrtc/RtcEventLogNull.h b/src/mc/external/webrtc/RtcEventLogNull.h index 9e680d9807..36e1f7587d 100644 --- a/src/mc/external/webrtc/RtcEventLogNull.h +++ b/src/mc/external/webrtc/RtcEventLogNull.h @@ -14,12 +14,6 @@ namespace webrtc { class RtcEventLogOutput; } namespace webrtc { class RtcEventLogNull : public ::webrtc::RtcEventLog { -public: - // prevent constructor by default - RtcEventLogNull& operator=(RtcEventLogNull const&); - RtcEventLogNull(RtcEventLogNull const&); - RtcEventLogNull(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/external/webrtc/RtcEventLogOutput.h b/src/mc/external/webrtc/RtcEventLogOutput.h index 51396329de..c261fa277f 100644 --- a/src/mc/external/webrtc/RtcEventLogOutput.h +++ b/src/mc/external/webrtc/RtcEventLogOutput.h @@ -5,12 +5,6 @@ namespace webrtc { class RtcEventLogOutput { -public: - // prevent constructor by default - RtcEventLogOutput& operator=(RtcEventLogOutput const&); - RtcEventLogOutput(RtcEventLogOutput const&); - RtcEventLogOutput(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/external/webrtc/RtcEventProbeClusterCreated.h b/src/mc/external/webrtc/RtcEventProbeClusterCreated.h index 3433313377..5f137fc8dc 100644 --- a/src/mc/external/webrtc/RtcEventProbeClusterCreated.h +++ b/src/mc/external/webrtc/RtcEventProbeClusterCreated.h @@ -5,12 +5,6 @@ namespace webrtc { class RtcEventProbeClusterCreated { -public: - // prevent constructor by default - RtcEventProbeClusterCreated& operator=(RtcEventProbeClusterCreated const&); - RtcEventProbeClusterCreated(RtcEventProbeClusterCreated const&); - RtcEventProbeClusterCreated(); - public: // member functions // NOLINTBEGIN diff --git a/src/mc/external/webrtc/RtcEventProbeResultFailure.h b/src/mc/external/webrtc/RtcEventProbeResultFailure.h index bca5f976ab..39d037458e 100644 --- a/src/mc/external/webrtc/RtcEventProbeResultFailure.h +++ b/src/mc/external/webrtc/RtcEventProbeResultFailure.h @@ -8,12 +8,6 @@ namespace webrtc { class RtcEventProbeResultFailure { -public: - // prevent constructor by default - RtcEventProbeResultFailure& operator=(RtcEventProbeResultFailure const&); - RtcEventProbeResultFailure(RtcEventProbeResultFailure const&); - RtcEventProbeResultFailure(); - public: // member functions // NOLINTBEGIN diff --git a/src/mc/external/webrtc/RtcEventProbeResultSuccess.h b/src/mc/external/webrtc/RtcEventProbeResultSuccess.h index a71d48775a..6803275ec1 100644 --- a/src/mc/external/webrtc/RtcEventProbeResultSuccess.h +++ b/src/mc/external/webrtc/RtcEventProbeResultSuccess.h @@ -5,12 +5,6 @@ namespace webrtc { class RtcEventProbeResultSuccess { -public: - // prevent constructor by default - RtcEventProbeResultSuccess& operator=(RtcEventProbeResultSuccess const&); - RtcEventProbeResultSuccess(RtcEventProbeResultSuccess const&); - RtcEventProbeResultSuccess(); - public: // member functions // NOLINTBEGIN diff --git a/src/mc/external/webrtc/RtcEventRouteChange.h b/src/mc/external/webrtc/RtcEventRouteChange.h index 24c27d6259..2220f468b1 100644 --- a/src/mc/external/webrtc/RtcEventRouteChange.h +++ b/src/mc/external/webrtc/RtcEventRouteChange.h @@ -5,12 +5,6 @@ namespace webrtc { class RtcEventRouteChange { -public: - // prevent constructor by default - RtcEventRouteChange& operator=(RtcEventRouteChange const&); - RtcEventRouteChange(RtcEventRouteChange const&); - RtcEventRouteChange(); - public: // member functions // NOLINTBEGIN diff --git a/src/mc/external/webrtc/RtcEventRtcpPacketOutgoing.h b/src/mc/external/webrtc/RtcEventRtcpPacketOutgoing.h index 02271ed8ed..d061d8ad33 100644 --- a/src/mc/external/webrtc/RtcEventRtcpPacketOutgoing.h +++ b/src/mc/external/webrtc/RtcEventRtcpPacketOutgoing.h @@ -5,12 +5,6 @@ namespace webrtc { class RtcEventRtcpPacketOutgoing { -public: - // prevent constructor by default - RtcEventRtcpPacketOutgoing& operator=(RtcEventRtcpPacketOutgoing const&); - RtcEventRtcpPacketOutgoing(RtcEventRtcpPacketOutgoing const&); - RtcEventRtcpPacketOutgoing(); - public: // member functions // NOLINTBEGIN diff --git a/src/mc/external/webrtc/RtcEventRtpPacketOutgoing.h b/src/mc/external/webrtc/RtcEventRtpPacketOutgoing.h index 11fbacb032..bf71312751 100644 --- a/src/mc/external/webrtc/RtcEventRtpPacketOutgoing.h +++ b/src/mc/external/webrtc/RtcEventRtpPacketOutgoing.h @@ -10,12 +10,6 @@ namespace webrtc { class RtpPacketToSend; } namespace webrtc { class RtcEventRtpPacketOutgoing { -public: - // prevent constructor by default - RtcEventRtpPacketOutgoing& operator=(RtcEventRtpPacketOutgoing const&); - RtcEventRtpPacketOutgoing(RtcEventRtpPacketOutgoing const&); - RtcEventRtpPacketOutgoing(); - public: // member functions // NOLINTBEGIN diff --git a/src/mc/external/webrtc/RtcpFeedbackSenderInterface.h b/src/mc/external/webrtc/RtcpFeedbackSenderInterface.h index 5f38de87e8..993e0655ac 100644 --- a/src/mc/external/webrtc/RtcpFeedbackSenderInterface.h +++ b/src/mc/external/webrtc/RtcpFeedbackSenderInterface.h @@ -4,12 +4,6 @@ namespace webrtc { -class RtcpFeedbackSenderInterface { -public: - // prevent constructor by default - RtcpFeedbackSenderInterface& operator=(RtcpFeedbackSenderInterface const&); - RtcpFeedbackSenderInterface(RtcpFeedbackSenderInterface const&); - RtcpFeedbackSenderInterface(); -}; +class RtcpFeedbackSenderInterface {}; } // namespace webrtc diff --git a/src/mc/external/webrtc/RtcpIntraFrameObserver.h b/src/mc/external/webrtc/RtcpIntraFrameObserver.h index 586b84737f..b06c8ce266 100644 --- a/src/mc/external/webrtc/RtcpIntraFrameObserver.h +++ b/src/mc/external/webrtc/RtcpIntraFrameObserver.h @@ -5,12 +5,6 @@ namespace webrtc { class RtcpIntraFrameObserver { -public: - // prevent constructor by default - RtcpIntraFrameObserver& operator=(RtcpIntraFrameObserver const&); - RtcpIntraFrameObserver(RtcpIntraFrameObserver const&); - RtcpIntraFrameObserver(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/external/webrtc/RtcpLossNotificationObserver.h b/src/mc/external/webrtc/RtcpLossNotificationObserver.h index 00d8cd656a..ef41cacce7 100644 --- a/src/mc/external/webrtc/RtcpLossNotificationObserver.h +++ b/src/mc/external/webrtc/RtcpLossNotificationObserver.h @@ -5,12 +5,6 @@ namespace webrtc { class RtcpLossNotificationObserver { -public: - // prevent constructor by default - RtcpLossNotificationObserver& operator=(RtcpLossNotificationObserver const&); - RtcpLossNotificationObserver(RtcpLossNotificationObserver const&); - RtcpLossNotificationObserver(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/external/webrtc/RtcpNackStats.h b/src/mc/external/webrtc/RtcpNackStats.h index adf16246cb..35ed83def0 100644 --- a/src/mc/external/webrtc/RtcpNackStats.h +++ b/src/mc/external/webrtc/RtcpNackStats.h @@ -5,11 +5,6 @@ namespace webrtc { struct RtcpNackStats { -public: - // prevent constructor by default - RtcpNackStats& operator=(RtcpNackStats const&); - RtcpNackStats(RtcpNackStats const&); - public: // member functions // NOLINTBEGIN diff --git a/src/mc/external/webrtc/RtcpPacketTypeCounterObserver.h b/src/mc/external/webrtc/RtcpPacketTypeCounterObserver.h index 38d6a17552..19a2a0e7e2 100644 --- a/src/mc/external/webrtc/RtcpPacketTypeCounterObserver.h +++ b/src/mc/external/webrtc/RtcpPacketTypeCounterObserver.h @@ -10,12 +10,6 @@ namespace webrtc { struct RtcpPacketTypeCounter; } namespace webrtc { class RtcpPacketTypeCounterObserver { -public: - // prevent constructor by default - RtcpPacketTypeCounterObserver& operator=(RtcpPacketTypeCounterObserver const&); - RtcpPacketTypeCounterObserver(RtcpPacketTypeCounterObserver const&); - RtcpPacketTypeCounterObserver(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/external/webrtc/RtcpRttStats.h b/src/mc/external/webrtc/RtcpRttStats.h index 99ae71ab1c..0e0505daf0 100644 --- a/src/mc/external/webrtc/RtcpRttStats.h +++ b/src/mc/external/webrtc/RtcpRttStats.h @@ -5,12 +5,6 @@ namespace webrtc { class RtcpRttStats { -public: - // prevent constructor by default - RtcpRttStats& operator=(RtcpRttStats const&); - RtcpRttStats(RtcpRttStats const&); - RtcpRttStats(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/external/webrtc/RtpBitrateConfigurator.h b/src/mc/external/webrtc/RtpBitrateConfigurator.h index a95187d64c..92721ba09f 100644 --- a/src/mc/external/webrtc/RtpBitrateConfigurator.h +++ b/src/mc/external/webrtc/RtpBitrateConfigurator.h @@ -12,12 +12,6 @@ namespace webrtc { struct BitrateSettings; } namespace webrtc { struct RtpBitrateConfigurator { -public: - // prevent constructor by default - RtpBitrateConfigurator& operator=(RtpBitrateConfigurator const&); - RtpBitrateConfigurator(RtpBitrateConfigurator const&); - RtpBitrateConfigurator(); - public: // member functions // NOLINTBEGIN diff --git a/src/mc/external/webrtc/RtpDemuxer.h b/src/mc/external/webrtc/RtpDemuxer.h index 53943b9f99..be8bbb3a13 100644 --- a/src/mc/external/webrtc/RtpDemuxer.h +++ b/src/mc/external/webrtc/RtpDemuxer.h @@ -16,12 +16,6 @@ namespace webrtc { struct identity; } namespace webrtc { struct RtpDemuxer { -public: - // prevent constructor by default - RtpDemuxer& operator=(RtpDemuxer const&); - RtpDemuxer(RtpDemuxer const&); - RtpDemuxer(); - public: // member functions // NOLINTBEGIN diff --git a/src/mc/external/webrtc/RtpDemuxerCriteria.h b/src/mc/external/webrtc/RtpDemuxerCriteria.h index 6d54ce88a9..f6844e3b0a 100644 --- a/src/mc/external/webrtc/RtpDemuxerCriteria.h +++ b/src/mc/external/webrtc/RtpDemuxerCriteria.h @@ -5,12 +5,6 @@ namespace webrtc { class RtpDemuxerCriteria { -public: - // prevent constructor by default - RtpDemuxerCriteria& operator=(RtpDemuxerCriteria const&); - RtpDemuxerCriteria(RtpDemuxerCriteria const&); - RtpDemuxerCriteria(); - public: // member functions // NOLINTBEGIN diff --git a/src/mc/external/webrtc/RtpDependencyDescriptorExtension.h b/src/mc/external/webrtc/RtpDependencyDescriptorExtension.h index 4bb044ac76..1a5165d81f 100644 --- a/src/mc/external/webrtc/RtpDependencyDescriptorExtension.h +++ b/src/mc/external/webrtc/RtpDependencyDescriptorExtension.h @@ -11,12 +11,6 @@ namespace webrtc { struct FrameDependencyStructure; } namespace webrtc { class RtpDependencyDescriptorExtension { -public: - // prevent constructor by default - RtpDependencyDescriptorExtension& operator=(RtpDependencyDescriptorExtension const&); - RtpDependencyDescriptorExtension(RtpDependencyDescriptorExtension const&); - RtpDependencyDescriptorExtension(); - public: // static functions // NOLINTBEGIN diff --git a/src/mc/external/webrtc/RtpDependencyDescriptorWriter.h b/src/mc/external/webrtc/RtpDependencyDescriptorWriter.h index 7168a6be79..da15e4f94c 100644 --- a/src/mc/external/webrtc/RtpDependencyDescriptorWriter.h +++ b/src/mc/external/webrtc/RtpDependencyDescriptorWriter.h @@ -19,19 +19,7 @@ struct RtpDependencyDescriptorWriter { // clang-format on // RtpDependencyDescriptorWriter inner types define - struct TemplateMatch { - public: - // prevent constructor by default - TemplateMatch& operator=(TemplateMatch const&); - TemplateMatch(TemplateMatch const&); - TemplateMatch(); - }; - -public: - // prevent constructor by default - RtpDependencyDescriptorWriter& operator=(RtpDependencyDescriptorWriter const&); - RtpDependencyDescriptorWriter(RtpDependencyDescriptorWriter const&); - RtpDependencyDescriptorWriter(); + struct TemplateMatch {}; public: // member functions diff --git a/src/mc/external/webrtc/RtpExtensionSize.h b/src/mc/external/webrtc/RtpExtensionSize.h index 0456488b3b..96818e159e 100644 --- a/src/mc/external/webrtc/RtpExtensionSize.h +++ b/src/mc/external/webrtc/RtpExtensionSize.h @@ -4,12 +4,6 @@ namespace webrtc { -struct RtpExtensionSize { -public: - // prevent constructor by default - RtpExtensionSize& operator=(RtpExtensionSize const&); - RtpExtensionSize(RtpExtensionSize const&); - RtpExtensionSize(); -}; +struct RtpExtensionSize {}; } // namespace webrtc diff --git a/src/mc/external/webrtc/RtpGenericFrameDescriptor.h b/src/mc/external/webrtc/RtpGenericFrameDescriptor.h index 31a18b6488..e33f33de0b 100644 --- a/src/mc/external/webrtc/RtpGenericFrameDescriptor.h +++ b/src/mc/external/webrtc/RtpGenericFrameDescriptor.h @@ -5,11 +5,6 @@ namespace webrtc { class RtpGenericFrameDescriptor { -public: - // prevent constructor by default - RtpGenericFrameDescriptor& operator=(RtpGenericFrameDescriptor const&); - RtpGenericFrameDescriptor(RtpGenericFrameDescriptor const&); - public: // member functions // NOLINTBEGIN diff --git a/src/mc/external/webrtc/RtpGenericFrameDescriptorExtension00.h b/src/mc/external/webrtc/RtpGenericFrameDescriptorExtension00.h index 57c26f2ead..660b1244ca 100644 --- a/src/mc/external/webrtc/RtpGenericFrameDescriptorExtension00.h +++ b/src/mc/external/webrtc/RtpGenericFrameDescriptorExtension00.h @@ -10,12 +10,6 @@ namespace webrtc { class RtpGenericFrameDescriptor; } namespace webrtc { class RtpGenericFrameDescriptorExtension00 { -public: - // prevent constructor by default - RtpGenericFrameDescriptorExtension00& operator=(RtpGenericFrameDescriptorExtension00 const&); - RtpGenericFrameDescriptorExtension00(RtpGenericFrameDescriptorExtension00 const&); - RtpGenericFrameDescriptorExtension00(); - public: // static functions // NOLINTBEGIN diff --git a/src/mc/external/webrtc/RtpMid.h b/src/mc/external/webrtc/RtpMid.h index 2c1df38520..746f994984 100644 --- a/src/mc/external/webrtc/RtpMid.h +++ b/src/mc/external/webrtc/RtpMid.h @@ -7,12 +7,6 @@ namespace webrtc { -class RtpMid : public ::webrtc::BaseRtpStringExtension { -public: - // prevent constructor by default - RtpMid& operator=(RtpMid const&); - RtpMid(RtpMid const&); - RtpMid(); -}; +class RtpMid : public ::webrtc::BaseRtpStringExtension {}; } // namespace webrtc diff --git a/src/mc/external/webrtc/RtpPacketHistory.h b/src/mc/external/webrtc/RtpPacketHistory.h index 81dfb4b7c4..268e100a82 100644 --- a/src/mc/external/webrtc/RtpPacketHistory.h +++ b/src/mc/external/webrtc/RtpPacketHistory.h @@ -29,12 +29,6 @@ class RtpPacketHistory { enum class StorageMode : uint {}; struct MoreUseful { - public: - // prevent constructor by default - MoreUseful& operator=(MoreUseful const&); - MoreUseful(MoreUseful const&); - MoreUseful(); - public: // member functions // NOLINTBEGIN @@ -44,12 +38,6 @@ class RtpPacketHistory { }; class StoredPacket { - public: - // prevent constructor by default - StoredPacket& operator=(StoredPacket const&); - StoredPacket(StoredPacket const&); - StoredPacket(); - public: // member functions // NOLINTBEGIN @@ -77,12 +65,6 @@ class RtpPacketHistory { // NOLINTEND }; -public: - // prevent constructor by default - RtpPacketHistory& operator=(RtpPacketHistory const&); - RtpPacketHistory(RtpPacketHistory const&); - RtpPacketHistory(); - public: // member functions // NOLINTBEGIN diff --git a/src/mc/external/webrtc/RtpPacketSendInfo.h b/src/mc/external/webrtc/RtpPacketSendInfo.h index ca2dfd90d1..a2e04a09b3 100644 --- a/src/mc/external/webrtc/RtpPacketSendInfo.h +++ b/src/mc/external/webrtc/RtpPacketSendInfo.h @@ -11,12 +11,6 @@ namespace webrtc { struct PacedPacketInfo; } namespace webrtc { struct RtpPacketSendInfo { -public: - // prevent constructor by default - RtpPacketSendInfo& operator=(RtpPacketSendInfo const&); - RtpPacketSendInfo(RtpPacketSendInfo const&); - RtpPacketSendInfo(); - public: // static functions // NOLINTBEGIN diff --git a/src/mc/external/webrtc/RtpPacketSender.h b/src/mc/external/webrtc/RtpPacketSender.h index a61f67e2ab..df0119f1d8 100644 --- a/src/mc/external/webrtc/RtpPacketSender.h +++ b/src/mc/external/webrtc/RtpPacketSender.h @@ -10,12 +10,6 @@ namespace webrtc { class RtpPacketToSend; } namespace webrtc { class RtpPacketSender { -public: - // prevent constructor by default - RtpPacketSender& operator=(RtpPacketSender const&); - RtpPacketSender(RtpPacketSender const&); - RtpPacketSender(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/external/webrtc/RtpPacketSinkInterface.h b/src/mc/external/webrtc/RtpPacketSinkInterface.h index 60ba7455af..fc8e11624b 100644 --- a/src/mc/external/webrtc/RtpPacketSinkInterface.h +++ b/src/mc/external/webrtc/RtpPacketSinkInterface.h @@ -10,12 +10,6 @@ namespace webrtc { class RtpPacketReceived; } namespace webrtc { class RtpPacketSinkInterface { -public: - // prevent constructor by default - RtpPacketSinkInterface& operator=(RtpPacketSinkInterface const&); - RtpPacketSinkInterface(RtpPacketSinkInterface const&); - RtpPacketSinkInterface(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/external/webrtc/RtpPacketizer.h b/src/mc/external/webrtc/RtpPacketizer.h index 995d053873..1fec23ff24 100644 --- a/src/mc/external/webrtc/RtpPacketizer.h +++ b/src/mc/external/webrtc/RtpPacketizer.h @@ -20,19 +20,7 @@ class RtpPacketizer { // clang-format on // RtpPacketizer inner types define - struct PayloadSizeLimits { - public: - // prevent constructor by default - PayloadSizeLimits& operator=(PayloadSizeLimits const&); - PayloadSizeLimits(PayloadSizeLimits const&); - PayloadSizeLimits(); - }; - -public: - // prevent constructor by default - RtpPacketizer& operator=(RtpPacketizer const&); - RtpPacketizer(RtpPacketizer const&); - RtpPacketizer(); + struct PayloadSizeLimits {}; public: // static functions diff --git a/src/mc/external/webrtc/RtpPacketizerAv1.h b/src/mc/external/webrtc/RtpPacketizerAv1.h index 63e2a8c01c..f3ef856c16 100644 --- a/src/mc/external/webrtc/RtpPacketizerAv1.h +++ b/src/mc/external/webrtc/RtpPacketizerAv1.h @@ -17,27 +17,9 @@ class RtpPacketizerAv1 { // clang-format on // RtpPacketizerAv1 inner types define - struct Obu { - public: - // prevent constructor by default - Obu& operator=(Obu const&); - Obu(Obu const&); - Obu(); - }; + struct Obu {}; - struct Packet { - public: - // prevent constructor by default - Packet& operator=(Packet const&); - Packet(Packet const&); - Packet(); - }; - -public: - // prevent constructor by default - RtpPacketizerAv1& operator=(RtpPacketizerAv1 const&); - RtpPacketizerAv1(RtpPacketizerAv1 const&); - RtpPacketizerAv1(); + struct Packet {}; public: // member functions diff --git a/src/mc/external/webrtc/RtpPacketizerGeneric.h b/src/mc/external/webrtc/RtpPacketizerGeneric.h index 1592c8ed7e..2618ef45dd 100644 --- a/src/mc/external/webrtc/RtpPacketizerGeneric.h +++ b/src/mc/external/webrtc/RtpPacketizerGeneric.h @@ -13,12 +13,6 @@ namespace webrtc { struct RTPVideoHeader; } namespace webrtc { class RtpPacketizerGeneric { -public: - // prevent constructor by default - RtpPacketizerGeneric& operator=(RtpPacketizerGeneric const&); - RtpPacketizerGeneric(RtpPacketizerGeneric const&); - RtpPacketizerGeneric(); - public: // member functions // NOLINTBEGIN diff --git a/src/mc/external/webrtc/RtpPacketizerH264.h b/src/mc/external/webrtc/RtpPacketizerH264.h index a652b218b4..11ad731c11 100644 --- a/src/mc/external/webrtc/RtpPacketizerH264.h +++ b/src/mc/external/webrtc/RtpPacketizerH264.h @@ -14,12 +14,6 @@ namespace webrtc { class RtpPacketToSend; } namespace webrtc { class RtpPacketizerH264 { -public: - // prevent constructor by default - RtpPacketizerH264& operator=(RtpPacketizerH264 const&); - RtpPacketizerH264(RtpPacketizerH264 const&); - RtpPacketizerH264(); - public: // member functions // NOLINTBEGIN diff --git a/src/mc/external/webrtc/RtpPacketizerVp8.h b/src/mc/external/webrtc/RtpPacketizerVp8.h index a123817c5a..732965a870 100644 --- a/src/mc/external/webrtc/RtpPacketizerVp8.h +++ b/src/mc/external/webrtc/RtpPacketizerVp8.h @@ -14,12 +14,6 @@ namespace webrtc { struct RTPVideoHeaderVP8; } namespace webrtc { class RtpPacketizerVp8 { -public: - // prevent constructor by default - RtpPacketizerVp8& operator=(RtpPacketizerVp8 const&); - RtpPacketizerVp8(RtpPacketizerVp8 const&); - RtpPacketizerVp8(); - public: // member functions // NOLINTBEGIN diff --git a/src/mc/external/webrtc/RtpPacketizerVp9.h b/src/mc/external/webrtc/RtpPacketizerVp9.h index 98934a90ec..fd69f9a7b9 100644 --- a/src/mc/external/webrtc/RtpPacketizerVp9.h +++ b/src/mc/external/webrtc/RtpPacketizerVp9.h @@ -13,12 +13,6 @@ namespace webrtc { struct RTPVideoHeaderVP9; } namespace webrtc { class RtpPacketizerVp9 { -public: - // prevent constructor by default - RtpPacketizerVp9& operator=(RtpPacketizerVp9 const&); - RtpPacketizerVp9(RtpPacketizerVp9 const&); - RtpPacketizerVp9(); - public: // member functions // NOLINTBEGIN diff --git a/src/mc/external/webrtc/RtpPayloadParams.h b/src/mc/external/webrtc/RtpPayloadParams.h index 431476ff5d..afb4d4c04d 100644 --- a/src/mc/external/webrtc/RtpPayloadParams.h +++ b/src/mc/external/webrtc/RtpPayloadParams.h @@ -22,11 +22,6 @@ namespace webrtc { struct RtpPayloadState; } namespace webrtc { class RtpPayloadParams { -public: - // prevent constructor by default - RtpPayloadParams& operator=(RtpPayloadParams const&); - RtpPayloadParams(); - public: // member functions // NOLINTBEGIN diff --git a/src/mc/external/webrtc/RtpPayloadState.h b/src/mc/external/webrtc/RtpPayloadState.h index 0aad6a8e30..8c9eada78b 100644 --- a/src/mc/external/webrtc/RtpPayloadState.h +++ b/src/mc/external/webrtc/RtpPayloadState.h @@ -4,12 +4,6 @@ namespace webrtc { -struct RtpPayloadState { -public: - // prevent constructor by default - RtpPayloadState& operator=(RtpPayloadState const&); - RtpPayloadState(RtpPayloadState const&); - RtpPayloadState(); -}; +struct RtpPayloadState {}; } // namespace webrtc diff --git a/src/mc/external/webrtc/RtpReceiverInterface.h b/src/mc/external/webrtc/RtpReceiverInterface.h index e0b5bb7f95..9df079aaa7 100644 --- a/src/mc/external/webrtc/RtpReceiverInterface.h +++ b/src/mc/external/webrtc/RtpReceiverInterface.h @@ -22,12 +22,6 @@ namespace webrtc { struct RtpParameters; } namespace webrtc { class RtpReceiverInterface : public ::webrtc::RefCountInterface { -public: - // prevent constructor by default - RtpReceiverInterface& operator=(RtpReceiverInterface const&); - RtpReceiverInterface(RtpReceiverInterface const&); - RtpReceiverInterface(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/external/webrtc/RtpReceiverInternal.h b/src/mc/external/webrtc/RtpReceiverInternal.h index 85422c2e3b..9433404a12 100644 --- a/src/mc/external/webrtc/RtpReceiverInternal.h +++ b/src/mc/external/webrtc/RtpReceiverInternal.h @@ -13,12 +13,6 @@ namespace webrtc { class MediaStreamInterface; } namespace webrtc { class RtpReceiverInternal { -public: - // prevent constructor by default - RtpReceiverInternal& operator=(RtpReceiverInternal const&); - RtpReceiverInternal(RtpReceiverInternal const&); - RtpReceiverInternal(); - public: // static functions // NOLINTBEGIN diff --git a/src/mc/external/webrtc/RtpReceiverObserverInterface.h b/src/mc/external/webrtc/RtpReceiverObserverInterface.h index 399fc21244..6a25681a96 100644 --- a/src/mc/external/webrtc/RtpReceiverObserverInterface.h +++ b/src/mc/external/webrtc/RtpReceiverObserverInterface.h @@ -8,12 +8,6 @@ namespace webrtc { class RtpReceiverObserverInterface { -public: - // prevent constructor by default - RtpReceiverObserverInterface& operator=(RtpReceiverObserverInterface const&); - RtpReceiverObserverInterface(RtpReceiverObserverInterface const&); - RtpReceiverObserverInterface(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/external/webrtc/RtpReceiverProxyWithInternal.h b/src/mc/external/webrtc/RtpReceiverProxyWithInternal.h index 44cd4a1272..50df2e5c85 100644 --- a/src/mc/external/webrtc/RtpReceiverProxyWithInternal.h +++ b/src/mc/external/webrtc/RtpReceiverProxyWithInternal.h @@ -5,12 +5,6 @@ namespace webrtc { template -class RtpReceiverProxyWithInternal { -public: - // prevent constructor by default - RtpReceiverProxyWithInternal& operator=(RtpReceiverProxyWithInternal const&); - RtpReceiverProxyWithInternal(RtpReceiverProxyWithInternal const&); - RtpReceiverProxyWithInternal(); -}; +class RtpReceiverProxyWithInternal {}; } // namespace webrtc diff --git a/src/mc/external/webrtc/RtpRtcpInterface.h b/src/mc/external/webrtc/RtpRtcpInterface.h index bc7be051d3..62e1c1d8a2 100644 --- a/src/mc/external/webrtc/RtpRtcpInterface.h +++ b/src/mc/external/webrtc/RtpRtcpInterface.h @@ -14,12 +14,6 @@ class RtpRtcpInterface { // RtpRtcpInterface inner types define struct Configuration { - public: - // prevent constructor by default - Configuration& operator=(Configuration const&); - Configuration(Configuration const&); - Configuration(); - public: // member functions // NOLINTBEGIN @@ -33,19 +27,7 @@ class RtpRtcpInterface { // NOLINTEND }; - struct SenderReportStats { - public: - // prevent constructor by default - SenderReportStats& operator=(SenderReportStats const&); - SenderReportStats(SenderReportStats const&); - SenderReportStats(); - }; - -public: - // prevent constructor by default - RtpRtcpInterface& operator=(RtpRtcpInterface const&); - RtpRtcpInterface(RtpRtcpInterface const&); - RtpRtcpInterface(); + struct SenderReportStats {}; }; } // namespace webrtc diff --git a/src/mc/external/webrtc/RtpSenderBase.h b/src/mc/external/webrtc/RtpSenderBase.h index bb663c016e..bc268f145b 100644 --- a/src/mc/external/webrtc/RtpSenderBase.h +++ b/src/mc/external/webrtc/RtpSenderBase.h @@ -19,19 +19,7 @@ class RtpSenderBase { // clang-format on // RtpSenderBase inner types define - class SetStreamsObserver { - public: - // prevent constructor by default - SetStreamsObserver& operator=(SetStreamsObserver const&); - SetStreamsObserver(SetStreamsObserver const&); - SetStreamsObserver(); - }; - -public: - // prevent constructor by default - RtpSenderBase& operator=(RtpSenderBase const&); - RtpSenderBase(RtpSenderBase const&); - RtpSenderBase(); + class SetStreamsObserver {}; public: // member functions diff --git a/src/mc/external/webrtc/RtpSenderEgress.h b/src/mc/external/webrtc/RtpSenderEgress.h index 252870dbde..f6d99fce95 100644 --- a/src/mc/external/webrtc/RtpSenderEgress.h +++ b/src/mc/external/webrtc/RtpSenderEgress.h @@ -34,12 +34,6 @@ class RtpSenderEgress { // RtpSenderEgress inner types define class NonPacedPacketSender { - public: - // prevent constructor by default - NonPacedPacketSender& operator=(NonPacedPacketSender const&); - NonPacedPacketSender(NonPacedPacketSender const&); - NonPacedPacketSender(); - public: // member functions // NOLINTBEGIN @@ -62,12 +56,6 @@ class RtpSenderEgress { }; struct Packet { - public: - // prevent constructor by default - Packet& operator=(Packet const&); - Packet(Packet const&); - Packet(); - public: // member functions // NOLINTBEGIN @@ -81,12 +69,6 @@ class RtpSenderEgress { // NOLINTEND }; -public: - // prevent constructor by default - RtpSenderEgress& operator=(RtpSenderEgress const&); - RtpSenderEgress(RtpSenderEgress const&); - RtpSenderEgress(); - public: // member functions // NOLINTBEGIN diff --git a/src/mc/external/webrtc/RtpSenderInfo.h b/src/mc/external/webrtc/RtpSenderInfo.h index a6c4836506..7e92453e5f 100644 --- a/src/mc/external/webrtc/RtpSenderInfo.h +++ b/src/mc/external/webrtc/RtpSenderInfo.h @@ -5,12 +5,6 @@ namespace webrtc { struct RtpSenderInfo { -public: - // prevent constructor by default - RtpSenderInfo& operator=(RtpSenderInfo const&); - RtpSenderInfo(RtpSenderInfo const&); - RtpSenderInfo(); - public: // member functions // NOLINTBEGIN diff --git a/src/mc/external/webrtc/RtpSenderInterface.h b/src/mc/external/webrtc/RtpSenderInterface.h index 560a423912..efcd81b4cc 100644 --- a/src/mc/external/webrtc/RtpSenderInterface.h +++ b/src/mc/external/webrtc/RtpSenderInterface.h @@ -24,12 +24,6 @@ namespace webrtc { struct RtpParameters; } namespace webrtc { class RtpSenderInterface : public ::webrtc::RefCountInterface { -public: - // prevent constructor by default - RtpSenderInterface& operator=(RtpSenderInterface const&); - RtpSenderInterface(RtpSenderInterface const&); - RtpSenderInterface(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/external/webrtc/RtpSenderInternal.h b/src/mc/external/webrtc/RtpSenderInternal.h index cc9e8093b9..3f34ddd973 100644 --- a/src/mc/external/webrtc/RtpSenderInternal.h +++ b/src/mc/external/webrtc/RtpSenderInternal.h @@ -4,12 +4,6 @@ namespace webrtc { -class RtpSenderInternal { -public: - // prevent constructor by default - RtpSenderInternal& operator=(RtpSenderInternal const&); - RtpSenderInternal(RtpSenderInternal const&); - RtpSenderInternal(); -}; +class RtpSenderInternal {}; } // namespace webrtc diff --git a/src/mc/external/webrtc/RtpSenderProxyWithInternal.h b/src/mc/external/webrtc/RtpSenderProxyWithInternal.h index 7dfcdd0e50..99af23da3a 100644 --- a/src/mc/external/webrtc/RtpSenderProxyWithInternal.h +++ b/src/mc/external/webrtc/RtpSenderProxyWithInternal.h @@ -5,12 +5,6 @@ namespace webrtc { template -class RtpSenderProxyWithInternal { -public: - // prevent constructor by default - RtpSenderProxyWithInternal& operator=(RtpSenderProxyWithInternal const&); - RtpSenderProxyWithInternal(RtpSenderProxyWithInternal const&); - RtpSenderProxyWithInternal(); -}; +class RtpSenderProxyWithInternal {}; } // namespace webrtc diff --git a/src/mc/external/webrtc/RtpSequenceNumberMap.h b/src/mc/external/webrtc/RtpSequenceNumberMap.h index 6865b04750..c3fc88faef 100644 --- a/src/mc/external/webrtc/RtpSequenceNumberMap.h +++ b/src/mc/external/webrtc/RtpSequenceNumberMap.h @@ -12,19 +12,7 @@ class RtpSequenceNumberMap { // clang-format on // RtpSequenceNumberMap inner types define - struct Info { - public: - // prevent constructor by default - Info& operator=(Info const&); - Info(Info const&); - Info(); - }; - -public: - // prevent constructor by default - RtpSequenceNumberMap& operator=(RtpSequenceNumberMap const&); - RtpSequenceNumberMap(RtpSequenceNumberMap const&); - RtpSequenceNumberMap(); + struct Info {}; public: // member functions diff --git a/src/mc/external/webrtc/RtpState.h b/src/mc/external/webrtc/RtpState.h index f52d1d7207..c664db0067 100644 --- a/src/mc/external/webrtc/RtpState.h +++ b/src/mc/external/webrtc/RtpState.h @@ -4,12 +4,6 @@ namespace webrtc { -struct RtpState { -public: - // prevent constructor by default - RtpState& operator=(RtpState const&); - RtpState(RtpState const&); - RtpState(); -}; +struct RtpState {}; } // namespace webrtc diff --git a/src/mc/external/webrtc/RtpStreamId.h b/src/mc/external/webrtc/RtpStreamId.h index 7723a05c78..4e3959c686 100644 --- a/src/mc/external/webrtc/RtpStreamId.h +++ b/src/mc/external/webrtc/RtpStreamId.h @@ -7,12 +7,6 @@ namespace webrtc { -class RtpStreamId : public ::webrtc::BaseRtpStringExtension { -public: - // prevent constructor by default - RtpStreamId& operator=(RtpStreamId const&); - RtpStreamId(RtpStreamId const&); - RtpStreamId(); -}; +class RtpStreamId : public ::webrtc::BaseRtpStringExtension {}; } // namespace webrtc diff --git a/src/mc/external/webrtc/RtpStreamSender.h b/src/mc/external/webrtc/RtpStreamSender.h index 8e8a57720a..de708dfcf0 100644 --- a/src/mc/external/webrtc/RtpStreamSender.h +++ b/src/mc/external/webrtc/RtpStreamSender.h @@ -12,12 +12,6 @@ namespace webrtc { class VideoFecGenerator; } namespace webrtc::webrtc_internal_rtp_video_sender { struct RtpStreamSender { -public: - // prevent constructor by default - RtpStreamSender& operator=(RtpStreamSender const&); - RtpStreamSender(RtpStreamSender const&); - RtpStreamSender(); - public: // member functions // NOLINTBEGIN diff --git a/src/mc/external/webrtc/RtpTransceiver.h b/src/mc/external/webrtc/RtpTransceiver.h index 92c7a29008..4ea6862584 100644 --- a/src/mc/external/webrtc/RtpTransceiver.h +++ b/src/mc/external/webrtc/RtpTransceiver.h @@ -33,12 +33,6 @@ namespace webrtc { struct RtpHeaderExtensionCapability; } namespace webrtc { class RtpTransceiver { -public: - // prevent constructor by default - RtpTransceiver& operator=(RtpTransceiver const&); - RtpTransceiver(RtpTransceiver const&); - RtpTransceiver(); - public: // member functions // NOLINTBEGIN diff --git a/src/mc/external/webrtc/RtpTransceiverInterface.h b/src/mc/external/webrtc/RtpTransceiverInterface.h index d6718f5730..80557e1d08 100644 --- a/src/mc/external/webrtc/RtpTransceiverInterface.h +++ b/src/mc/external/webrtc/RtpTransceiverInterface.h @@ -20,12 +20,6 @@ namespace webrtc { struct RtpHeaderExtensionCapability; } namespace webrtc { class RtpTransceiverInterface : public ::webrtc::RefCountInterface { -public: - // prevent constructor by default - RtpTransceiverInterface& operator=(RtpTransceiverInterface const&); - RtpTransceiverInterface(RtpTransceiverInterface const&); - RtpTransceiverInterface(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/external/webrtc/RtpTransceiverProxyWithInternal.h b/src/mc/external/webrtc/RtpTransceiverProxyWithInternal.h index 622c4db066..a4ba3eb0c2 100644 --- a/src/mc/external/webrtc/RtpTransceiverProxyWithInternal.h +++ b/src/mc/external/webrtc/RtpTransceiverProxyWithInternal.h @@ -5,12 +5,6 @@ namespace webrtc { template -class RtpTransceiverProxyWithInternal { -public: - // prevent constructor by default - RtpTransceiverProxyWithInternal& operator=(RtpTransceiverProxyWithInternal const&); - RtpTransceiverProxyWithInternal(RtpTransceiverProxyWithInternal const&); - RtpTransceiverProxyWithInternal(); -}; +class RtpTransceiverProxyWithInternal {}; } // namespace webrtc diff --git a/src/mc/external/webrtc/RtpTransmissionManager.h b/src/mc/external/webrtc/RtpTransmissionManager.h index 8042c70bd5..d60ec47ab4 100644 --- a/src/mc/external/webrtc/RtpTransmissionManager.h +++ b/src/mc/external/webrtc/RtpTransmissionManager.h @@ -37,12 +37,6 @@ namespace webrtc { struct RtpSenderInfo; } namespace webrtc { class RtpTransmissionManager { -public: - // prevent constructor by default - RtpTransmissionManager& operator=(RtpTransmissionManager const&); - RtpTransmissionManager(RtpTransmissionManager const&); - RtpTransmissionManager(); - public: // member functions // NOLINTBEGIN diff --git a/src/mc/external/webrtc/RtpTransport.h b/src/mc/external/webrtc/RtpTransport.h index 65e1fc0e0c..09f8182aa9 100644 --- a/src/mc/external/webrtc/RtpTransport.h +++ b/src/mc/external/webrtc/RtpTransport.h @@ -21,12 +21,6 @@ namespace webrtc { struct identity; } namespace webrtc { class RtpTransport { -public: - // prevent constructor by default - RtpTransport& operator=(RtpTransport const&); - RtpTransport(RtpTransport const&); - RtpTransport(); - public: // member functions // NOLINTBEGIN diff --git a/src/mc/external/webrtc/RtpTransportControllerSend.h b/src/mc/external/webrtc/RtpTransportControllerSend.h index c462e11f10..6792ccd599 100644 --- a/src/mc/external/webrtc/RtpTransportControllerSend.h +++ b/src/mc/external/webrtc/RtpTransportControllerSend.h @@ -17,12 +17,6 @@ namespace webrtc { struct TargetRateConstraints; } namespace webrtc { class RtpTransportControllerSend { -public: - // prevent constructor by default - RtpTransportControllerSend& operator=(RtpTransportControllerSend const&); - RtpTransportControllerSend(RtpTransportControllerSend const&); - RtpTransportControllerSend(); - public: // member functions // NOLINTBEGIN diff --git a/src/mc/external/webrtc/RtpTransportControllerSendFactoryInterface.h b/src/mc/external/webrtc/RtpTransportControllerSendFactoryInterface.h index fc4fc01d5f..7b84ba9bb0 100644 --- a/src/mc/external/webrtc/RtpTransportControllerSendFactoryInterface.h +++ b/src/mc/external/webrtc/RtpTransportControllerSendFactoryInterface.h @@ -11,12 +11,6 @@ namespace webrtc { struct RtpTransportConfig; } namespace webrtc { class RtpTransportControllerSendFactoryInterface { -public: - // prevent constructor by default - RtpTransportControllerSendFactoryInterface& operator=(RtpTransportControllerSendFactoryInterface const&); - RtpTransportControllerSendFactoryInterface(RtpTransportControllerSendFactoryInterface const&); - RtpTransportControllerSendFactoryInterface(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/external/webrtc/RtpTransportControllerSendInterface.h b/src/mc/external/webrtc/RtpTransportControllerSendInterface.h index 3b766e3e96..11dca24ee4 100644 --- a/src/mc/external/webrtc/RtpTransportControllerSendInterface.h +++ b/src/mc/external/webrtc/RtpTransportControllerSendInterface.h @@ -36,12 +36,6 @@ namespace webrtc { struct RtpState; } namespace webrtc { class RtpTransportControllerSendInterface { -public: - // prevent constructor by default - RtpTransportControllerSendInterface& operator=(RtpTransportControllerSendInterface const&); - RtpTransportControllerSendInterface(RtpTransportControllerSendInterface const&); - RtpTransportControllerSendInterface(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/external/webrtc/RtpTransportInternal.h b/src/mc/external/webrtc/RtpTransportInternal.h index 10d575ba4c..7c1793c994 100644 --- a/src/mc/external/webrtc/RtpTransportInternal.h +++ b/src/mc/external/webrtc/RtpTransportInternal.h @@ -4,12 +4,6 @@ namespace webrtc { -class RtpTransportInternal { -public: - // prevent constructor by default - RtpTransportInternal& operator=(RtpTransportInternal const&); - RtpTransportInternal(RtpTransportInternal const&); - RtpTransportInternal(); -}; +class RtpTransportInternal {}; } // namespace webrtc diff --git a/src/mc/external/webrtc/RtpVideoLayersAllocationExtension.h b/src/mc/external/webrtc/RtpVideoLayersAllocationExtension.h index a9e7cf1c7b..b07539f987 100644 --- a/src/mc/external/webrtc/RtpVideoLayersAllocationExtension.h +++ b/src/mc/external/webrtc/RtpVideoLayersAllocationExtension.h @@ -10,12 +10,6 @@ namespace webrtc { struct VideoLayersAllocation; } namespace webrtc { class RtpVideoLayersAllocationExtension { -public: - // prevent constructor by default - RtpVideoLayersAllocationExtension& operator=(RtpVideoLayersAllocationExtension const&); - RtpVideoLayersAllocationExtension(RtpVideoLayersAllocationExtension const&); - RtpVideoLayersAllocationExtension(); - public: // static functions // NOLINTBEGIN diff --git a/src/mc/external/webrtc/RtpVideoSender.h b/src/mc/external/webrtc/RtpVideoSender.h index 518369d96c..c566c7b530 100644 --- a/src/mc/external/webrtc/RtpVideoSender.h +++ b/src/mc/external/webrtc/RtpVideoSender.h @@ -30,12 +30,6 @@ namespace webrtc { struct RtpState; } namespace webrtc { class RtpVideoSender { -public: - // prevent constructor by default - RtpVideoSender& operator=(RtpVideoSender const&); - RtpVideoSender(RtpVideoSender const&); - RtpVideoSender(); - public: // member functions // NOLINTBEGIN diff --git a/src/mc/external/webrtc/RtpVideoSenderInterface.h b/src/mc/external/webrtc/RtpVideoSenderInterface.h index 6b646a53a3..9ba4f3a557 100644 --- a/src/mc/external/webrtc/RtpVideoSenderInterface.h +++ b/src/mc/external/webrtc/RtpVideoSenderInterface.h @@ -4,12 +4,6 @@ namespace webrtc { -class RtpVideoSenderInterface { -public: - // prevent constructor by default - RtpVideoSenderInterface& operator=(RtpVideoSenderInterface const&); - RtpVideoSenderInterface(RtpVideoSenderInterface const&); - RtpVideoSenderInterface(); -}; +class RtpVideoSenderInterface {}; } // namespace webrtc diff --git a/src/mc/external/webrtc/Rtpfb.h b/src/mc/external/webrtc/Rtpfb.h index 7dfa23ae9e..bc7418046e 100644 --- a/src/mc/external/webrtc/Rtpfb.h +++ b/src/mc/external/webrtc/Rtpfb.h @@ -5,12 +5,6 @@ namespace webrtc::rtcp { class Rtpfb { -public: - // prevent constructor by default - Rtpfb& operator=(Rtpfb const&); - Rtpfb(Rtpfb const&); - Rtpfb(); - public: // member functions // NOLINTBEGIN diff --git a/src/mc/external/webrtc/RttBasedBackoff.h b/src/mc/external/webrtc/RttBasedBackoff.h index 80f4e3f785..2036bb9c03 100644 --- a/src/mc/external/webrtc/RttBasedBackoff.h +++ b/src/mc/external/webrtc/RttBasedBackoff.h @@ -12,12 +12,6 @@ namespace webrtc { class Timestamp; } namespace webrtc { struct RttBasedBackoff { -public: - // prevent constructor by default - RttBasedBackoff& operator=(RttBasedBackoff const&); - RttBasedBackoff(RttBasedBackoff const&); - RttBasedBackoff(); - public: // member functions // NOLINTBEGIN diff --git a/src/mc/external/webrtc/SampleInfo.h b/src/mc/external/webrtc/SampleInfo.h index 62ae54c5bd..5330439e08 100644 --- a/src/mc/external/webrtc/SampleInfo.h +++ b/src/mc/external/webrtc/SampleInfo.h @@ -5,12 +5,6 @@ namespace webrtc::metrics { struct SampleInfo { -public: - // prevent constructor by default - SampleInfo& operator=(SampleInfo const&); - SampleInfo(SampleInfo const&); - SampleInfo(); - public: // member functions // NOLINTBEGIN diff --git a/src/mc/external/webrtc/SctpDataChannel.h b/src/mc/external/webrtc/SctpDataChannel.h index 4d2ee55115..aad9c14210 100644 --- a/src/mc/external/webrtc/SctpDataChannel.h +++ b/src/mc/external/webrtc/SctpDataChannel.h @@ -34,12 +34,6 @@ class SctpDataChannel { // SctpDataChannel inner types define class ObserverAdapter { - public: - // prevent constructor by default - ObserverAdapter& operator=(ObserverAdapter const&); - ObserverAdapter(ObserverAdapter const&); - ObserverAdapter(); - public: // member functions // NOLINTBEGIN @@ -53,12 +47,6 @@ class SctpDataChannel { // NOLINTEND }; -public: - // prevent constructor by default - SctpDataChannel& operator=(SctpDataChannel const&); - SctpDataChannel(SctpDataChannel const&); - SctpDataChannel(); - public: // member functions // NOLINTBEGIN diff --git a/src/mc/external/webrtc/SctpDataChannelControllerInterface.h b/src/mc/external/webrtc/SctpDataChannelControllerInterface.h index 7a87178a68..cf7e7c0642 100644 --- a/src/mc/external/webrtc/SctpDataChannelControllerInterface.h +++ b/src/mc/external/webrtc/SctpDataChannelControllerInterface.h @@ -4,12 +4,6 @@ namespace webrtc { -class SctpDataChannelControllerInterface { -public: - // prevent constructor by default - SctpDataChannelControllerInterface& operator=(SctpDataChannelControllerInterface const&); - SctpDataChannelControllerInterface(SctpDataChannelControllerInterface const&); - SctpDataChannelControllerInterface(); -}; +class SctpDataChannelControllerInterface {}; } // namespace webrtc diff --git a/src/mc/external/webrtc/SctpSidAllocator.h b/src/mc/external/webrtc/SctpSidAllocator.h index 7eee5b2cdb..3629d9083c 100644 --- a/src/mc/external/webrtc/SctpSidAllocator.h +++ b/src/mc/external/webrtc/SctpSidAllocator.h @@ -13,12 +13,6 @@ namespace webrtc { class StreamId; } namespace webrtc { struct SctpSidAllocator { -public: - // prevent constructor by default - SctpSidAllocator& operator=(SctpSidAllocator const&); - SctpSidAllocator(SctpSidAllocator const&); - SctpSidAllocator(); - public: // member functions // NOLINTBEGIN diff --git a/src/mc/external/webrtc/SctpTransport.h b/src/mc/external/webrtc/SctpTransport.h index ceef06ba4e..b33f35e03a 100644 --- a/src/mc/external/webrtc/SctpTransport.h +++ b/src/mc/external/webrtc/SctpTransport.h @@ -17,12 +17,6 @@ namespace webrtc { class DtlsTransport; } namespace webrtc { class SctpTransport { -public: - // prevent constructor by default - SctpTransport& operator=(SctpTransport const&); - SctpTransport(SctpTransport const&); - SctpTransport(); - public: // member functions // NOLINTBEGIN diff --git a/src/mc/external/webrtc/SctpTransportFactoryInterface.h b/src/mc/external/webrtc/SctpTransportFactoryInterface.h index 42bc576c8f..d528546eb6 100644 --- a/src/mc/external/webrtc/SctpTransportFactoryInterface.h +++ b/src/mc/external/webrtc/SctpTransportFactoryInterface.h @@ -12,12 +12,6 @@ namespace webrtc { class Environment; } namespace webrtc { class SctpTransportFactoryInterface { -public: - // prevent constructor by default - SctpTransportFactoryInterface& operator=(SctpTransportFactoryInterface const&); - SctpTransportFactoryInterface(SctpTransportFactoryInterface const&); - SctpTransportFactoryInterface(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/external/webrtc/SctpTransportInterface.h b/src/mc/external/webrtc/SctpTransportInterface.h index 6a6551a7a0..242647eac9 100644 --- a/src/mc/external/webrtc/SctpTransportInterface.h +++ b/src/mc/external/webrtc/SctpTransportInterface.h @@ -4,12 +4,6 @@ namespace webrtc { -class SctpTransportInterface { -public: - // prevent constructor by default - SctpTransportInterface& operator=(SctpTransportInterface const&); - SctpTransportInterface(SctpTransportInterface const&); - SctpTransportInterface(); -}; +class SctpTransportInterface {}; } // namespace webrtc diff --git a/src/mc/external/webrtc/Sdes.h b/src/mc/external/webrtc/Sdes.h index e71097fc6c..baeee12d44 100644 --- a/src/mc/external/webrtc/Sdes.h +++ b/src/mc/external/webrtc/Sdes.h @@ -18,12 +18,6 @@ class Sdes { // Sdes inner types define struct Chunk { - public: - // prevent constructor by default - Chunk& operator=(Chunk const&); - Chunk(Chunk const&); - Chunk(); - public: // member functions // NOLINTBEGIN @@ -37,11 +31,6 @@ class Sdes { // NOLINTEND }; -public: - // prevent constructor by default - Sdes& operator=(Sdes const&); - Sdes(Sdes const&); - public: // member functions // NOLINTBEGIN diff --git a/src/mc/external/webrtc/SdpOfferAnswerHandler.h b/src/mc/external/webrtc/SdpOfferAnswerHandler.h index 2a965636e3..10b77ee3a6 100644 --- a/src/mc/external/webrtc/SdpOfferAnswerHandler.h +++ b/src/mc/external/webrtc/SdpOfferAnswerHandler.h @@ -69,12 +69,6 @@ class SdpOfferAnswerHandler { enum class SessionError : uint {}; class LocalIceCredentialsToReplace { - public: - // prevent constructor by default - LocalIceCredentialsToReplace& operator=(LocalIceCredentialsToReplace const&); - LocalIceCredentialsToReplace(LocalIceCredentialsToReplace const&); - LocalIceCredentialsToReplace(); - public: // member functions // NOLINTBEGIN @@ -87,12 +81,6 @@ class SdpOfferAnswerHandler { }; class RemoteDescriptionOperation { - public: - // prevent constructor by default - RemoteDescriptionOperation& operator=(RemoteDescriptionOperation const&); - RemoteDescriptionOperation(RemoteDescriptionOperation const&); - RemoteDescriptionOperation(); - public: // member functions // NOLINTBEGIN @@ -123,12 +111,6 @@ class SdpOfferAnswerHandler { }; class SetSessionDescriptionObserverAdapter { - public: - // prevent constructor by default - SetSessionDescriptionObserverAdapter& operator=(SetSessionDescriptionObserverAdapter const&); - SetSessionDescriptionObserverAdapter(SetSessionDescriptionObserverAdapter const&); - SetSessionDescriptionObserverAdapter(); - public: // member functions // NOLINTBEGIN @@ -144,12 +126,6 @@ class SdpOfferAnswerHandler { // NOLINTEND }; -public: - // prevent constructor by default - SdpOfferAnswerHandler& operator=(SdpOfferAnswerHandler const&); - SdpOfferAnswerHandler(SdpOfferAnswerHandler const&); - SdpOfferAnswerHandler(); - public: // member functions // NOLINTBEGIN diff --git a/src/mc/external/webrtc/SdpStateProvider.h b/src/mc/external/webrtc/SdpStateProvider.h index 6e48f7d996..d27fc7a5ba 100644 --- a/src/mc/external/webrtc/SdpStateProvider.h +++ b/src/mc/external/webrtc/SdpStateProvider.h @@ -4,12 +4,6 @@ namespace webrtc { -class SdpStateProvider { -public: - // prevent constructor by default - SdpStateProvider& operator=(SdpStateProvider const&); - SdpStateProvider(SdpStateProvider const&); - SdpStateProvider(); -}; +class SdpStateProvider {}; } // namespace webrtc diff --git a/src/mc/external/webrtc/SendPacketObserver.h b/src/mc/external/webrtc/SendPacketObserver.h index e0b9ac7ad9..831f2f3b27 100644 --- a/src/mc/external/webrtc/SendPacketObserver.h +++ b/src/mc/external/webrtc/SendPacketObserver.h @@ -10,12 +10,6 @@ namespace webrtc { class Timestamp; } namespace webrtc { class SendPacketObserver { -public: - // prevent constructor by default - SendPacketObserver& operator=(SendPacketObserver const&); - SendPacketObserver(SendPacketObserver const&); - SendPacketObserver(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/external/webrtc/SendSideBandwidthEstimation.h b/src/mc/external/webrtc/SendSideBandwidthEstimation.h index 7b53182377..ac628fb77f 100644 --- a/src/mc/external/webrtc/SendSideBandwidthEstimation.h +++ b/src/mc/external/webrtc/SendSideBandwidthEstimation.h @@ -20,12 +20,6 @@ namespace webrtc { struct TransportPacketsFeedback; } namespace webrtc { class SendSideBandwidthEstimation { -public: - // prevent constructor by default - SendSideBandwidthEstimation& operator=(SendSideBandwidthEstimation const&); - SendSideBandwidthEstimation(SendSideBandwidthEstimation const&); - SendSideBandwidthEstimation(); - public: // member functions // NOLINTBEGIN diff --git a/src/mc/external/webrtc/SenderReport.h b/src/mc/external/webrtc/SenderReport.h index 82d5fa8fa4..e5f223ccd6 100644 --- a/src/mc/external/webrtc/SenderReport.h +++ b/src/mc/external/webrtc/SenderReport.h @@ -11,11 +11,6 @@ namespace webrtc::rtcp { class ReportBlock; } namespace webrtc::rtcp { class SenderReport { -public: - // prevent constructor by default - SenderReport& operator=(SenderReport const&); - SenderReport(SenderReport const&); - public: // member functions // NOLINTBEGIN diff --git a/src/mc/external/webrtc/SequenceChecker.h b/src/mc/external/webrtc/SequenceChecker.h index 76125a967e..db21a690d4 100644 --- a/src/mc/external/webrtc/SequenceChecker.h +++ b/src/mc/external/webrtc/SequenceChecker.h @@ -14,12 +14,6 @@ class SequenceChecker : public ::webrtc::webrtc_sequence_checker_internal::Seque KDetached = 0, KAttached = 1, }; - -public: - // prevent constructor by default - SequenceChecker& operator=(SequenceChecker const&); - SequenceChecker(SequenceChecker const&); - SequenceChecker(); }; } // namespace webrtc diff --git a/src/mc/external/webrtc/SequenceCheckerDoNothing.h b/src/mc/external/webrtc/SequenceCheckerDoNothing.h index 155af88d9b..59b6f16a8d 100644 --- a/src/mc/external/webrtc/SequenceCheckerDoNothing.h +++ b/src/mc/external/webrtc/SequenceCheckerDoNothing.h @@ -4,12 +4,6 @@ namespace webrtc::webrtc_sequence_checker_internal { -class SequenceCheckerDoNothing { -public: - // prevent constructor by default - SequenceCheckerDoNothing& operator=(SequenceCheckerDoNothing const&); - SequenceCheckerDoNothing(SequenceCheckerDoNothing const&); - SequenceCheckerDoNothing(); -}; +class SequenceCheckerDoNothing {}; } // namespace webrtc::webrtc_sequence_checker_internal diff --git a/src/mc/external/webrtc/SessionDescriptionInterface.h b/src/mc/external/webrtc/SessionDescriptionInterface.h index 56189a02df..273a249d18 100644 --- a/src/mc/external/webrtc/SessionDescriptionInterface.h +++ b/src/mc/external/webrtc/SessionDescriptionInterface.h @@ -16,12 +16,6 @@ namespace webrtc { class IceCandidateInterface; } namespace webrtc { class SessionDescriptionInterface { -public: - // prevent constructor by default - SessionDescriptionInterface& operator=(SessionDescriptionInterface const&); - SessionDescriptionInterface(SessionDescriptionInterface const&); - SessionDescriptionInterface(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/external/webrtc/SetLocalDescriptionObserverInterface.h b/src/mc/external/webrtc/SetLocalDescriptionObserverInterface.h index 11bc3ac88b..d73f77445f 100644 --- a/src/mc/external/webrtc/SetLocalDescriptionObserverInterface.h +++ b/src/mc/external/webrtc/SetLocalDescriptionObserverInterface.h @@ -13,12 +13,6 @@ namespace webrtc { class RTCError; } namespace webrtc { class SetLocalDescriptionObserverInterface : public ::webrtc::RefCountInterface { -public: - // prevent constructor by default - SetLocalDescriptionObserverInterface& operator=(SetLocalDescriptionObserverInterface const&); - SetLocalDescriptionObserverInterface(SetLocalDescriptionObserverInterface const&); - SetLocalDescriptionObserverInterface(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/external/webrtc/SetRemoteDescriptionObserverInterface.h b/src/mc/external/webrtc/SetRemoteDescriptionObserverInterface.h index 17b041f99a..d41a21e6ef 100644 --- a/src/mc/external/webrtc/SetRemoteDescriptionObserverInterface.h +++ b/src/mc/external/webrtc/SetRemoteDescriptionObserverInterface.h @@ -13,12 +13,6 @@ namespace webrtc { class RTCError; } namespace webrtc { class SetRemoteDescriptionObserverInterface : public ::webrtc::RefCountInterface { -public: - // prevent constructor by default - SetRemoteDescriptionObserverInterface& operator=(SetRemoteDescriptionObserverInterface const&); - SetRemoteDescriptionObserverInterface(SetRemoteDescriptionObserverInterface const&); - SetRemoteDescriptionObserverInterface(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/external/webrtc/SetSessionDescriptionObserver.h b/src/mc/external/webrtc/SetSessionDescriptionObserver.h index ab8ba790a8..c1e370e3a3 100644 --- a/src/mc/external/webrtc/SetSessionDescriptionObserver.h +++ b/src/mc/external/webrtc/SetSessionDescriptionObserver.h @@ -13,12 +13,6 @@ namespace webrtc { class RTCError; } namespace webrtc { class SetSessionDescriptionObserver : public ::webrtc::RefCountInterface { -public: - // prevent constructor by default - SetSessionDescriptionObserver& operator=(SetSessionDescriptionObserver const&); - SetSessionDescriptionObserver(SetSessionDescriptionObserver const&); - SetSessionDescriptionObserver(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/external/webrtc/SimulcastSdpSerializer.h b/src/mc/external/webrtc/SimulcastSdpSerializer.h index e18025e0b6..24270641ce 100644 --- a/src/mc/external/webrtc/SimulcastSdpSerializer.h +++ b/src/mc/external/webrtc/SimulcastSdpSerializer.h @@ -14,12 +14,6 @@ namespace cricket { struct RidDescription; } namespace webrtc { struct SimulcastSdpSerializer { -public: - // prevent constructor by default - SimulcastSdpSerializer& operator=(SimulcastSdpSerializer const&); - SimulcastSdpSerializer(SimulcastSdpSerializer const&); - SimulcastSdpSerializer(); - public: // member functions // NOLINTBEGIN diff --git a/src/mc/external/webrtc/SrtpTransport.h b/src/mc/external/webrtc/SrtpTransport.h index b73c84b92f..ae4acb4627 100644 --- a/src/mc/external/webrtc/SrtpTransport.h +++ b/src/mc/external/webrtc/SrtpTransport.h @@ -10,12 +10,6 @@ namespace webrtc { class FieldTrialsView; } namespace webrtc { class SrtpTransport { -public: - // prevent constructor by default - SrtpTransport& operator=(SrtpTransport const&); - SrtpTransport(SrtpTransport const&); - SrtpTransport(); - public: // member functions // NOLINTBEGIN diff --git a/src/mc/external/webrtc/SsrcInfo.h b/src/mc/external/webrtc/SsrcInfo.h index f5fff2d892..4fec57e892 100644 --- a/src/mc/external/webrtc/SsrcInfo.h +++ b/src/mc/external/webrtc/SsrcInfo.h @@ -5,11 +5,6 @@ namespace webrtc { struct SsrcInfo { -public: - // prevent constructor by default - SsrcInfo& operator=(SsrcInfo const&); - SsrcInfo(); - public: // member functions // NOLINTBEGIN diff --git a/src/mc/external/webrtc/StatsCollection.h b/src/mc/external/webrtc/StatsCollection.h index 966680a97f..c3d2696b25 100644 --- a/src/mc/external/webrtc/StatsCollection.h +++ b/src/mc/external/webrtc/StatsCollection.h @@ -14,11 +14,6 @@ namespace webrtc { class StatsReport; } namespace webrtc { class StatsCollection { -public: - // prevent constructor by default - StatsCollection& operator=(StatsCollection const&); - StatsCollection(StatsCollection const&); - public: // member functions // NOLINTBEGIN diff --git a/src/mc/external/webrtc/StatsObserver.h b/src/mc/external/webrtc/StatsObserver.h index cdfa5c33fb..a6ac33cfbf 100644 --- a/src/mc/external/webrtc/StatsObserver.h +++ b/src/mc/external/webrtc/StatsObserver.h @@ -13,12 +13,6 @@ namespace webrtc { class StatsReport; } namespace webrtc { class StatsObserver : public ::webrtc::RefCountInterface { -public: - // prevent constructor by default - StatsObserver& operator=(StatsObserver const&); - StatsObserver(StatsObserver const&); - StatsObserver(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/external/webrtc/StreamCollection.h b/src/mc/external/webrtc/StreamCollection.h index bcd7203886..109469bfd6 100644 --- a/src/mc/external/webrtc/StreamCollection.h +++ b/src/mc/external/webrtc/StreamCollection.h @@ -13,12 +13,6 @@ namespace webrtc { class MediaStreamInterface; } namespace webrtc { class StreamCollection { -public: - // prevent constructor by default - StreamCollection& operator=(StreamCollection const&); - StreamCollection(StreamCollection const&); - StreamCollection(); - public: // member functions // NOLINTBEGIN diff --git a/src/mc/external/webrtc/StreamCollectionInterface.h b/src/mc/external/webrtc/StreamCollectionInterface.h index 4efde6c4fe..d2709c0269 100644 --- a/src/mc/external/webrtc/StreamCollectionInterface.h +++ b/src/mc/external/webrtc/StreamCollectionInterface.h @@ -4,12 +4,6 @@ namespace webrtc { -class StreamCollectionInterface { -public: - // prevent constructor by default - StreamCollectionInterface& operator=(StreamCollectionInterface const&); - StreamCollectionInterface(StreamCollectionInterface const&); - StreamCollectionInterface(); -}; +class StreamCollectionInterface {}; } // namespace webrtc diff --git a/src/mc/external/webrtc/StreamDataCountersCallback.h b/src/mc/external/webrtc/StreamDataCountersCallback.h index bd49a035b5..5a511f4aea 100644 --- a/src/mc/external/webrtc/StreamDataCountersCallback.h +++ b/src/mc/external/webrtc/StreamDataCountersCallback.h @@ -10,12 +10,6 @@ namespace webrtc { struct StreamDataCounters; } namespace webrtc { class StreamDataCountersCallback { -public: - // prevent constructor by default - StreamDataCountersCallback& operator=(StreamDataCountersCallback const&); - StreamDataCountersCallback(StreamDataCountersCallback const&); - StreamDataCountersCallback(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/external/webrtc/StreamFeedbackObserver.h b/src/mc/external/webrtc/StreamFeedbackObserver.h index 1fef0db42e..0ea2b3b45f 100644 --- a/src/mc/external/webrtc/StreamFeedbackObserver.h +++ b/src/mc/external/webrtc/StreamFeedbackObserver.h @@ -29,12 +29,6 @@ class StreamFeedbackObserver { StreamPacketInfo(); }; -public: - // prevent constructor by default - StreamFeedbackObserver& operator=(StreamFeedbackObserver const&); - StreamFeedbackObserver(StreamFeedbackObserver const&); - StreamFeedbackObserver(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/external/webrtc/StreamFeedbackProvider.h b/src/mc/external/webrtc/StreamFeedbackProvider.h index cd704ebb5e..b77b5a374d 100644 --- a/src/mc/external/webrtc/StreamFeedbackProvider.h +++ b/src/mc/external/webrtc/StreamFeedbackProvider.h @@ -10,12 +10,6 @@ namespace webrtc { class StreamFeedbackObserver; } namespace webrtc { class StreamFeedbackProvider { -public: - // prevent constructor by default - StreamFeedbackProvider& operator=(StreamFeedbackProvider const&); - StreamFeedbackProvider(StreamFeedbackProvider const&); - StreamFeedbackProvider(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/external/webrtc/StreamId.h b/src/mc/external/webrtc/StreamId.h index 0a6c6a8de2..7cdc52e56d 100644 --- a/src/mc/external/webrtc/StreamId.h +++ b/src/mc/external/webrtc/StreamId.h @@ -4,12 +4,6 @@ namespace webrtc { -class StreamId { -public: - // prevent constructor by default - StreamId& operator=(StreamId const&); - StreamId(StreamId const&); - StreamId(); -}; +class StreamId {}; } // namespace webrtc diff --git a/src/mc/external/webrtc/StreamStatistician.h b/src/mc/external/webrtc/StreamStatistician.h index 0b15ad7640..8ebc356292 100644 --- a/src/mc/external/webrtc/StreamStatistician.h +++ b/src/mc/external/webrtc/StreamStatistician.h @@ -11,12 +11,6 @@ namespace webrtc { struct StreamDataCounters; } namespace webrtc { class StreamStatistician { -public: - // prevent constructor by default - StreamStatistician& operator=(StreamStatistician const&); - StreamStatistician(StreamStatistician const&); - StreamStatistician(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/external/webrtc/StrongAlias.h b/src/mc/external/webrtc/StrongAlias.h index c4c5b0d031..ba6dd00b24 100644 --- a/src/mc/external/webrtc/StrongAlias.h +++ b/src/mc/external/webrtc/StrongAlias.h @@ -5,12 +5,6 @@ namespace webrtc { template -class StrongAlias { -public: - // prevent constructor by default - StrongAlias& operator=(StrongAlias const&); - StrongAlias(StrongAlias const&); - StrongAlias(); -}; +class StrongAlias {}; } // namespace webrtc diff --git a/src/mc/external/webrtc/StructParametersParser.h b/src/mc/external/webrtc/StructParametersParser.h index e88202c6af..fd47f16c66 100644 --- a/src/mc/external/webrtc/StructParametersParser.h +++ b/src/mc/external/webrtc/StructParametersParser.h @@ -10,12 +10,6 @@ namespace webrtc::struct_parser_impl { struct MemberParameter; } namespace webrtc { class StructParametersParser { -public: - // prevent constructor by default - StructParametersParser& operator=(StructParametersParser const&); - StructParametersParser(StructParametersParser const&); - StructParametersParser(); - public: // member functions // NOLINTBEGIN diff --git a/src/mc/external/webrtc/TMMBRHelp.h b/src/mc/external/webrtc/TMMBRHelp.h index 46429b7251..0ff4420d4f 100644 --- a/src/mc/external/webrtc/TMMBRHelp.h +++ b/src/mc/external/webrtc/TMMBRHelp.h @@ -10,12 +10,6 @@ namespace webrtc::rtcp { class TmmbItem; } namespace webrtc { struct TMMBRHelp { -public: - // prevent constructor by default - TMMBRHelp& operator=(TMMBRHelp const&); - TMMBRHelp(TMMBRHelp const&); - TMMBRHelp(); - public: // static functions // NOLINTBEGIN diff --git a/src/mc/external/webrtc/TargetBitrate.h b/src/mc/external/webrtc/TargetBitrate.h index 4d5587dff7..230deefe28 100644 --- a/src/mc/external/webrtc/TargetBitrate.h +++ b/src/mc/external/webrtc/TargetBitrate.h @@ -13,12 +13,6 @@ class TargetBitrate { // TargetBitrate inner types define struct BitrateItem { - public: - // prevent constructor by default - BitrateItem& operator=(BitrateItem const&); - BitrateItem(BitrateItem const&); - BitrateItem(); - public: // member functions // NOLINTBEGIN diff --git a/src/mc/external/webrtc/TargetTransferRateObserver.h b/src/mc/external/webrtc/TargetTransferRateObserver.h index 7da09d9ac1..f88bc456eb 100644 --- a/src/mc/external/webrtc/TargetTransferRateObserver.h +++ b/src/mc/external/webrtc/TargetTransferRateObserver.h @@ -11,12 +11,6 @@ namespace webrtc { struct TargetTransferRate; } namespace webrtc { class TargetTransferRateObserver { -public: - // prevent constructor by default - TargetTransferRateObserver& operator=(TargetTransferRateObserver const&); - TargetTransferRateObserver(TargetTransferRateObserver const&); - TargetTransferRateObserver(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/external/webrtc/TaskQueueBase.h b/src/mc/external/webrtc/TaskQueueBase.h index 76f8d45544..421d6ad689 100644 --- a/src/mc/external/webrtc/TaskQueueBase.h +++ b/src/mc/external/webrtc/TaskQueueBase.h @@ -28,13 +28,7 @@ class TaskQueueBase { KHigh = 1, }; - struct PostTaskTraits { - public: - // prevent constructor by default - PostTaskTraits& operator=(PostTaskTraits const&); - PostTaskTraits(PostTaskTraits const&); - PostTaskTraits(); - }; + struct PostTaskTraits {}; struct PostDelayedTaskTraits { public: @@ -84,12 +78,6 @@ class TaskQueueBase { // NOLINTEND }; -public: - // prevent constructor by default - TaskQueueBase& operator=(TaskQueueBase const&); - TaskQueueBase(TaskQueueBase const&); - TaskQueueBase(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/external/webrtc/TaskQueueDeleter.h b/src/mc/external/webrtc/TaskQueueDeleter.h index 6bab6762cf..f7b306b87b 100644 --- a/src/mc/external/webrtc/TaskQueueDeleter.h +++ b/src/mc/external/webrtc/TaskQueueDeleter.h @@ -4,12 +4,6 @@ namespace webrtc { -struct TaskQueueDeleter { -public: - // prevent constructor by default - TaskQueueDeleter& operator=(TaskQueueDeleter const&); - TaskQueueDeleter(TaskQueueDeleter const&); - TaskQueueDeleter(); -}; +struct TaskQueueDeleter {}; } // namespace webrtc diff --git a/src/mc/external/webrtc/TaskQueueFactory.h b/src/mc/external/webrtc/TaskQueueFactory.h index 54c620978f..554cd1c42d 100644 --- a/src/mc/external/webrtc/TaskQueueFactory.h +++ b/src/mc/external/webrtc/TaskQueueFactory.h @@ -19,12 +19,6 @@ class TaskQueueFactory { Low = 2, }; -public: - // prevent constructor by default - TaskQueueFactory& operator=(TaskQueueFactory const&); - TaskQueueFactory(TaskQueueFactory const&); - TaskQueueFactory(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/external/webrtc/TaskQueuePacedSender.h b/src/mc/external/webrtc/TaskQueuePacedSender.h index 4e1788ce86..1fe6fc098a 100644 --- a/src/mc/external/webrtc/TaskQueuePacedSender.h +++ b/src/mc/external/webrtc/TaskQueuePacedSender.h @@ -23,19 +23,7 @@ class TaskQueuePacedSender { // clang-format on // TaskQueuePacedSender inner types define - struct Stats { - public: - // prevent constructor by default - Stats& operator=(Stats const&); - Stats(Stats const&); - Stats(); - }; - -public: - // prevent constructor by default - TaskQueuePacedSender& operator=(TaskQueuePacedSender const&); - TaskQueuePacedSender(TaskQueuePacedSender const&); - TaskQueuePacedSender(); + struct Stats {}; public: // member functions diff --git a/src/mc/external/webrtc/TimeDelta.h b/src/mc/external/webrtc/TimeDelta.h index ca3a70dde5..60088b63f2 100644 --- a/src/mc/external/webrtc/TimeDelta.h +++ b/src/mc/external/webrtc/TimeDelta.h @@ -7,12 +7,6 @@ namespace webrtc { -class TimeDelta : public ::webrtc::rtc_units_impl::RelativeUnit<::webrtc::TimeDelta> { -public: - // prevent constructor by default - TimeDelta& operator=(TimeDelta const&); - TimeDelta(TimeDelta const&); - TimeDelta(); -}; +class TimeDelta : public ::webrtc::rtc_units_impl::RelativeUnit<::webrtc::TimeDelta> {}; } // namespace webrtc diff --git a/src/mc/external/webrtc/Timestamp.h b/src/mc/external/webrtc/Timestamp.h index 27d564ef6c..c4d7478045 100644 --- a/src/mc/external/webrtc/Timestamp.h +++ b/src/mc/external/webrtc/Timestamp.h @@ -7,12 +7,6 @@ namespace webrtc { -class Timestamp : public ::webrtc::rtc_units_impl::UnitBase<::webrtc::Timestamp> { -public: - // prevent constructor by default - Timestamp& operator=(Timestamp const&); - Timestamp(Timestamp const&); - Timestamp(); -}; +class Timestamp : public ::webrtc::rtc_units_impl::UnitBase<::webrtc::Timestamp> {}; } // namespace webrtc diff --git a/src/mc/external/webrtc/TimingFrameInfo.h b/src/mc/external/webrtc/TimingFrameInfo.h index 0fd62eaf12..46de7312b5 100644 --- a/src/mc/external/webrtc/TimingFrameInfo.h +++ b/src/mc/external/webrtc/TimingFrameInfo.h @@ -5,12 +5,6 @@ namespace webrtc { struct TimingFrameInfo { -public: - // prevent constructor by default - TimingFrameInfo& operator=(TimingFrameInfo const&); - TimingFrameInfo(TimingFrameInfo const&); - TimingFrameInfo(); - public: // member functions // NOLINTBEGIN diff --git a/src/mc/external/webrtc/TmmbItem.h b/src/mc/external/webrtc/TmmbItem.h index e37c4dbfce..2c990f1be2 100644 --- a/src/mc/external/webrtc/TmmbItem.h +++ b/src/mc/external/webrtc/TmmbItem.h @@ -5,12 +5,6 @@ namespace webrtc::rtcp { class TmmbItem { -public: - // prevent constructor by default - TmmbItem& operator=(TmmbItem const&); - TmmbItem(TmmbItem const&); - TmmbItem(); - public: // member functions // NOLINTBEGIN diff --git a/src/mc/external/webrtc/Tmmbn.h b/src/mc/external/webrtc/Tmmbn.h index 6b1bcde72d..d81d637521 100644 --- a/src/mc/external/webrtc/Tmmbn.h +++ b/src/mc/external/webrtc/Tmmbn.h @@ -11,11 +11,6 @@ namespace webrtc::rtcp { class TmmbItem; } namespace webrtc::rtcp { class Tmmbn { -public: - // prevent constructor by default - Tmmbn& operator=(Tmmbn const&); - Tmmbn(Tmmbn const&); - public: // member functions // NOLINTBEGIN diff --git a/src/mc/external/webrtc/Tmmbr.h b/src/mc/external/webrtc/Tmmbr.h index 15bac4bd7e..a3e4168113 100644 --- a/src/mc/external/webrtc/Tmmbr.h +++ b/src/mc/external/webrtc/Tmmbr.h @@ -11,11 +11,6 @@ namespace webrtc::rtcp { class TmmbItem; } namespace webrtc::rtcp { class Tmmbr { -public: - // prevent constructor by default - Tmmbr& operator=(Tmmbr const&); - Tmmbr(Tmmbr const&); - public: // member functions // NOLINTBEGIN diff --git a/src/mc/external/webrtc/TraceEndOnScopeClose.h b/src/mc/external/webrtc/TraceEndOnScopeClose.h index e3b1825f9f..d2d8de8d90 100644 --- a/src/mc/external/webrtc/TraceEndOnScopeClose.h +++ b/src/mc/external/webrtc/TraceEndOnScopeClose.h @@ -5,12 +5,6 @@ namespace webrtc::trace_event_internal { struct TraceEndOnScopeClose { -public: - // prevent constructor by default - TraceEndOnScopeClose& operator=(TraceEndOnScopeClose const&); - TraceEndOnScopeClose(TraceEndOnScopeClose const&); - TraceEndOnScopeClose(); - public: // member functions // NOLINTBEGIN diff --git a/src/mc/external/webrtc/TrackMediaInfoMap.h b/src/mc/external/webrtc/TrackMediaInfoMap.h index 7a7d873639..719715b4df 100644 --- a/src/mc/external/webrtc/TrackMediaInfoMap.h +++ b/src/mc/external/webrtc/TrackMediaInfoMap.h @@ -23,10 +23,6 @@ namespace webrtc { class VideoTrackInterface; } namespace webrtc { class TrackMediaInfoMap { -public: - // prevent constructor by default - TrackMediaInfoMap& operator=(TrackMediaInfoMap const&); - public: // member functions // NOLINTBEGIN diff --git a/src/mc/external/webrtc/TransceiverList.h b/src/mc/external/webrtc/TransceiverList.h index 796fedfcb8..d5621d59c3 100644 --- a/src/mc/external/webrtc/TransceiverList.h +++ b/src/mc/external/webrtc/TransceiverList.h @@ -16,12 +16,6 @@ namespace webrtc { class TransceiverStableState; } namespace webrtc { class TransceiverList { -public: - // prevent constructor by default - TransceiverList& operator=(TransceiverList const&); - TransceiverList(TransceiverList const&); - TransceiverList(); - public: // member functions // NOLINTBEGIN diff --git a/src/mc/external/webrtc/TransceiverStableState.h b/src/mc/external/webrtc/TransceiverStableState.h index 5678e19155..15a2386458 100644 --- a/src/mc/external/webrtc/TransceiverStableState.h +++ b/src/mc/external/webrtc/TransceiverStableState.h @@ -10,12 +10,6 @@ namespace webrtc { struct RtpEncodingParameters; } namespace webrtc { class TransceiverStableState { -public: - // prevent constructor by default - TransceiverStableState& operator=(TransceiverStableState const&); - TransceiverStableState(TransceiverStableState const&); - TransceiverStableState(); - public: // member functions // NOLINTBEGIN diff --git a/src/mc/external/webrtc/TransformableAudioFrameInterface.h b/src/mc/external/webrtc/TransformableAudioFrameInterface.h index eb6cd58275..281da6d4d0 100644 --- a/src/mc/external/webrtc/TransformableAudioFrameInterface.h +++ b/src/mc/external/webrtc/TransformableAudioFrameInterface.h @@ -16,12 +16,6 @@ class TransformableAudioFrameInterface : public ::webrtc::TransformableFrameInte KAudioFrameCN = 2, }; -public: - // prevent constructor by default - TransformableAudioFrameInterface& operator=(TransformableAudioFrameInterface const&); - TransformableAudioFrameInterface(TransformableAudioFrameInterface const&); - TransformableAudioFrameInterface(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/external/webrtc/TransformableFrameInterface.h b/src/mc/external/webrtc/TransformableFrameInterface.h index 4107afb713..ef1a3d212e 100644 --- a/src/mc/external/webrtc/TransformableFrameInterface.h +++ b/src/mc/external/webrtc/TransformableFrameInterface.h @@ -18,12 +18,6 @@ class TransformableFrameInterface { KSender = 2, }; -public: - // prevent constructor by default - TransformableFrameInterface& operator=(TransformableFrameInterface const&); - TransformableFrameInterface(TransformableFrameInterface const&); - TransformableFrameInterface(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/external/webrtc/TransformedFrameCallback.h b/src/mc/external/webrtc/TransformedFrameCallback.h index d74e8cd788..b116d6dbf0 100644 --- a/src/mc/external/webrtc/TransformedFrameCallback.h +++ b/src/mc/external/webrtc/TransformedFrameCallback.h @@ -13,12 +13,6 @@ namespace webrtc { class TransformableFrameInterface; } namespace webrtc { class TransformedFrameCallback : public ::webrtc::RefCountInterface { -public: - // prevent constructor by default - TransformedFrameCallback& operator=(TransformedFrameCallback const&); - TransformedFrameCallback(TransformedFrameCallback const&); - TransformedFrameCallback(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/external/webrtc/TransmissionOffset.h b/src/mc/external/webrtc/TransmissionOffset.h index 2d86f8d3fc..b2f814fd75 100644 --- a/src/mc/external/webrtc/TransmissionOffset.h +++ b/src/mc/external/webrtc/TransmissionOffset.h @@ -5,12 +5,6 @@ namespace webrtc { class TransmissionOffset { -public: - // prevent constructor by default - TransmissionOffset& operator=(TransmissionOffset const&); - TransmissionOffset(TransmissionOffset const&); - TransmissionOffset(); - public: // static functions // NOLINTBEGIN diff --git a/src/mc/external/webrtc/Transport.h b/src/mc/external/webrtc/Transport.h index 63e32e45fa..2430d5e8e9 100644 --- a/src/mc/external/webrtc/Transport.h +++ b/src/mc/external/webrtc/Transport.h @@ -10,12 +10,6 @@ namespace webrtc { struct PacketOptions; } namespace webrtc { class Transport { -public: - // prevent constructor by default - Transport& operator=(Transport const&); - Transport(Transport const&); - Transport(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/external/webrtc/TransportFeedback.h b/src/mc/external/webrtc/TransportFeedback.h index a7b29e204c..98e7087362 100644 --- a/src/mc/external/webrtc/TransportFeedback.h +++ b/src/mc/external/webrtc/TransportFeedback.h @@ -23,11 +23,6 @@ class TransportFeedback { // TransportFeedback inner types define struct LastChunk { - public: - // prevent constructor by default - LastChunk& operator=(LastChunk const&); - LastChunk(LastChunk const&); - public: // member functions // NOLINTBEGIN @@ -63,11 +58,6 @@ class TransportFeedback { // NOLINTEND }; -public: - // prevent constructor by default - TransportFeedback& operator=(TransportFeedback const&); - TransportFeedback(TransportFeedback const&); - public: // member functions // NOLINTBEGIN diff --git a/src/mc/external/webrtc/TransportFeedbackAdapter.h b/src/mc/external/webrtc/TransportFeedbackAdapter.h index 0a1cb3a58c..86380bdb9a 100644 --- a/src/mc/external/webrtc/TransportFeedbackAdapter.h +++ b/src/mc/external/webrtc/TransportFeedbackAdapter.h @@ -18,11 +18,6 @@ namespace webrtc::rtcp { class TransportFeedback; } namespace webrtc { struct TransportFeedbackAdapter { -public: - // prevent constructor by default - TransportFeedbackAdapter& operator=(TransportFeedbackAdapter const&); - TransportFeedbackAdapter(TransportFeedbackAdapter const&); - public: // member functions // NOLINTBEGIN diff --git a/src/mc/external/webrtc/TransportFeedbackDemuxer.h b/src/mc/external/webrtc/TransportFeedbackDemuxer.h index e48914ca98..0bfe3b1c6a 100644 --- a/src/mc/external/webrtc/TransportFeedbackDemuxer.h +++ b/src/mc/external/webrtc/TransportFeedbackDemuxer.h @@ -11,11 +11,6 @@ namespace webrtc::rtcp { class TransportFeedback; } namespace webrtc { class TransportFeedbackDemuxer { -public: - // prevent constructor by default - TransportFeedbackDemuxer& operator=(TransportFeedbackDemuxer const&); - TransportFeedbackDemuxer(TransportFeedbackDemuxer const&); - public: // member functions // NOLINTBEGIN diff --git a/src/mc/external/webrtc/TransportSequenceNumber.h b/src/mc/external/webrtc/TransportSequenceNumber.h index 3dae79265d..9e391f82e9 100644 --- a/src/mc/external/webrtc/TransportSequenceNumber.h +++ b/src/mc/external/webrtc/TransportSequenceNumber.h @@ -5,12 +5,6 @@ namespace webrtc { class TransportSequenceNumber { -public: - // prevent constructor by default - TransportSequenceNumber& operator=(TransportSequenceNumber const&); - TransportSequenceNumber(TransportSequenceNumber const&); - TransportSequenceNumber(); - public: // static functions // NOLINTBEGIN diff --git a/src/mc/external/webrtc/TransportSequenceNumberV2.h b/src/mc/external/webrtc/TransportSequenceNumberV2.h index 2accec1952..dd937b37bd 100644 --- a/src/mc/external/webrtc/TransportSequenceNumberV2.h +++ b/src/mc/external/webrtc/TransportSequenceNumberV2.h @@ -4,12 +4,6 @@ namespace webrtc { -class TransportSequenceNumberV2 { -public: - // prevent constructor by default - TransportSequenceNumberV2& operator=(TransportSequenceNumberV2 const&); - TransportSequenceNumberV2(TransportSequenceNumberV2 const&); - TransportSequenceNumberV2(); -}; +class TransportSequenceNumberV2 {}; } // namespace webrtc diff --git a/src/mc/external/webrtc/TrendlineEstimator.h b/src/mc/external/webrtc/TrendlineEstimator.h index 947973b033..559556c2d2 100644 --- a/src/mc/external/webrtc/TrendlineEstimator.h +++ b/src/mc/external/webrtc/TrendlineEstimator.h @@ -11,12 +11,6 @@ namespace webrtc { class NetworkStatePredictor; } namespace webrtc { class TrendlineEstimator { -public: - // prevent constructor by default - TrendlineEstimator& operator=(TrendlineEstimator const&); - TrendlineEstimator(TrendlineEstimator const&); - TrendlineEstimator(); - public: // member functions // NOLINTBEGIN diff --git a/src/mc/external/webrtc/TrendlineEstimatorSettings.h b/src/mc/external/webrtc/TrendlineEstimatorSettings.h index 1ecb48f2e1..b4bea348d1 100644 --- a/src/mc/external/webrtc/TrendlineEstimatorSettings.h +++ b/src/mc/external/webrtc/TrendlineEstimatorSettings.h @@ -11,12 +11,6 @@ namespace webrtc { class StructParametersParser; } namespace webrtc { struct TrendlineEstimatorSettings { -public: - // prevent constructor by default - TrendlineEstimatorSettings& operator=(TrendlineEstimatorSettings const&); - TrendlineEstimatorSettings(TrendlineEstimatorSettings const&); - TrendlineEstimatorSettings(); - public: // member functions // NOLINTBEGIN diff --git a/src/mc/external/webrtc/TurnCustomizer.h b/src/mc/external/webrtc/TurnCustomizer.h index 7ba19a7487..72d05e92ee 100644 --- a/src/mc/external/webrtc/TurnCustomizer.h +++ b/src/mc/external/webrtc/TurnCustomizer.h @@ -11,12 +11,6 @@ namespace cricket { class StunMessage; } namespace webrtc { class TurnCustomizer { -public: - // prevent constructor by default - TurnCustomizer& operator=(TurnCustomizer const&); - TurnCustomizer(TurnCustomizer const&); - TurnCustomizer(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/external/webrtc/UlpfecGenerator.h b/src/mc/external/webrtc/UlpfecGenerator.h index 930ef95e3c..fcebf30333 100644 --- a/src/mc/external/webrtc/UlpfecGenerator.h +++ b/src/mc/external/webrtc/UlpfecGenerator.h @@ -20,11 +20,6 @@ class UlpfecGenerator { // UlpfecGenerator inner types define struct Params { - public: - // prevent constructor by default - Params& operator=(Params const&); - Params(Params const&); - public: // member functions // NOLINTBEGIN @@ -42,12 +37,6 @@ class UlpfecGenerator { // NOLINTEND }; -public: - // prevent constructor by default - UlpfecGenerator& operator=(UlpfecGenerator const&); - UlpfecGenerator(UlpfecGenerator const&); - UlpfecGenerator(); - public: // member functions // NOLINTBEGIN diff --git a/src/mc/external/webrtc/UlpfecHeaderReader.h b/src/mc/external/webrtc/UlpfecHeaderReader.h index 265932f1c8..0073157fac 100644 --- a/src/mc/external/webrtc/UlpfecHeaderReader.h +++ b/src/mc/external/webrtc/UlpfecHeaderReader.h @@ -5,11 +5,6 @@ namespace webrtc { class UlpfecHeaderReader { -public: - // prevent constructor by default - UlpfecHeaderReader& operator=(UlpfecHeaderReader const&); - UlpfecHeaderReader(UlpfecHeaderReader const&); - public: // member functions // NOLINTBEGIN diff --git a/src/mc/external/webrtc/UlpfecHeaderWriter.h b/src/mc/external/webrtc/UlpfecHeaderWriter.h index 7537b1103f..f0ca21f676 100644 --- a/src/mc/external/webrtc/UlpfecHeaderWriter.h +++ b/src/mc/external/webrtc/UlpfecHeaderWriter.h @@ -5,11 +5,6 @@ namespace webrtc { class UlpfecHeaderWriter { -public: - // prevent constructor by default - UlpfecHeaderWriter& operator=(UlpfecHeaderWriter const&); - UlpfecHeaderWriter(UlpfecHeaderWriter const&); - public: // member functions // NOLINTBEGIN diff --git a/src/mc/external/webrtc/UnitBase.h b/src/mc/external/webrtc/UnitBase.h index 3ab5951bc9..fc6af8f832 100644 --- a/src/mc/external/webrtc/UnitBase.h +++ b/src/mc/external/webrtc/UnitBase.h @@ -5,12 +5,6 @@ namespace webrtc::rtc_units_impl { template -class UnitBase { -public: - // prevent constructor by default - UnitBase& operator=(UnitBase const&); - UnitBase(UnitBase const&); - UnitBase(); -}; +class UnitBase {}; } // namespace webrtc::rtc_units_impl diff --git a/src/mc/external/webrtc/UsagePattern.h b/src/mc/external/webrtc/UsagePattern.h index 6044d724bf..6953c5f7f1 100644 --- a/src/mc/external/webrtc/UsagePattern.h +++ b/src/mc/external/webrtc/UsagePattern.h @@ -13,12 +13,6 @@ namespace webrtc { class PeerConnectionObserver; } namespace webrtc { class UsagePattern { -public: - // prevent constructor by default - UsagePattern& operator=(UsagePattern const&); - UsagePattern(UsagePattern const&); - UsagePattern(); - public: // member functions // NOLINTBEGIN diff --git a/src/mc/external/webrtc/VCMFrameTypeCallback.h b/src/mc/external/webrtc/VCMFrameTypeCallback.h index 348e00da6c..9b82e27d4b 100644 --- a/src/mc/external/webrtc/VCMFrameTypeCallback.h +++ b/src/mc/external/webrtc/VCMFrameTypeCallback.h @@ -5,12 +5,6 @@ namespace webrtc { class VCMFrameTypeCallback { -public: - // prevent constructor by default - VCMFrameTypeCallback& operator=(VCMFrameTypeCallback const&); - VCMFrameTypeCallback(VCMFrameTypeCallback const&); - VCMFrameTypeCallback(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/external/webrtc/VCMPacketRequestCallback.h b/src/mc/external/webrtc/VCMPacketRequestCallback.h index c98e0c5fca..42a0dd77e4 100644 --- a/src/mc/external/webrtc/VCMPacketRequestCallback.h +++ b/src/mc/external/webrtc/VCMPacketRequestCallback.h @@ -5,12 +5,6 @@ namespace webrtc { class VCMPacketRequestCallback { -public: - // prevent constructor by default - VCMPacketRequestCallback& operator=(VCMPacketRequestCallback const&); - VCMPacketRequestCallback(VCMPacketRequestCallback const&); - VCMPacketRequestCallback(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/external/webrtc/VCMProtectionCallback.h b/src/mc/external/webrtc/VCMProtectionCallback.h index ee8d0d13a1..70b8b75e0f 100644 --- a/src/mc/external/webrtc/VCMProtectionCallback.h +++ b/src/mc/external/webrtc/VCMProtectionCallback.h @@ -10,12 +10,6 @@ namespace webrtc { struct FecProtectionParams; } namespace webrtc { class VCMProtectionCallback { -public: - // prevent constructor by default - VCMProtectionCallback& operator=(VCMProtectionCallback const&); - VCMProtectionCallback(VCMProtectionCallback const&); - VCMProtectionCallback(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/external/webrtc/VCMReceiveCallback.h b/src/mc/external/webrtc/VCMReceiveCallback.h index ac45867ec9..1ea7906e95 100644 --- a/src/mc/external/webrtc/VCMReceiveCallback.h +++ b/src/mc/external/webrtc/VCMReceiveCallback.h @@ -16,12 +16,6 @@ namespace webrtc { class VideoFrame; } namespace webrtc { class VCMReceiveCallback { -public: - // prevent constructor by default - VCMReceiveCallback& operator=(VCMReceiveCallback const&); - VCMReceiveCallback(VCMReceiveCallback const&); - VCMReceiveCallback(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/external/webrtc/VideoBitrateAllocationObserver.h b/src/mc/external/webrtc/VideoBitrateAllocationObserver.h index 111535c618..8a0d60c07a 100644 --- a/src/mc/external/webrtc/VideoBitrateAllocationObserver.h +++ b/src/mc/external/webrtc/VideoBitrateAllocationObserver.h @@ -10,12 +10,6 @@ namespace webrtc { class VideoBitrateAllocation; } namespace webrtc { class VideoBitrateAllocationObserver { -public: - // prevent constructor by default - VideoBitrateAllocationObserver& operator=(VideoBitrateAllocationObserver const&); - VideoBitrateAllocationObserver(VideoBitrateAllocationObserver const&); - VideoBitrateAllocationObserver(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/external/webrtc/VideoBitrateAllocator.h b/src/mc/external/webrtc/VideoBitrateAllocator.h index 1d789a84b3..20d7515dc3 100644 --- a/src/mc/external/webrtc/VideoBitrateAllocator.h +++ b/src/mc/external/webrtc/VideoBitrateAllocator.h @@ -11,12 +11,6 @@ namespace webrtc { struct VideoBitrateAllocationParameters; } namespace webrtc { class VideoBitrateAllocator { -public: - // prevent constructor by default - VideoBitrateAllocator& operator=(VideoBitrateAllocator const&); - VideoBitrateAllocator(VideoBitrateAllocator const&); - VideoBitrateAllocator(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/external/webrtc/VideoBitrateAllocatorFactory.h b/src/mc/external/webrtc/VideoBitrateAllocatorFactory.h index e2700f6d5a..5cda5dd8cb 100644 --- a/src/mc/external/webrtc/VideoBitrateAllocatorFactory.h +++ b/src/mc/external/webrtc/VideoBitrateAllocatorFactory.h @@ -11,12 +11,6 @@ namespace webrtc { class VideoCodec; } namespace webrtc { class VideoBitrateAllocatorFactory { -public: - // prevent constructor by default - VideoBitrateAllocatorFactory& operator=(VideoBitrateAllocatorFactory const&); - VideoBitrateAllocatorFactory(VideoBitrateAllocatorFactory const&); - VideoBitrateAllocatorFactory(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/external/webrtc/VideoContentTypeExtension.h b/src/mc/external/webrtc/VideoContentTypeExtension.h index 07306132f4..d473af761f 100644 --- a/src/mc/external/webrtc/VideoContentTypeExtension.h +++ b/src/mc/external/webrtc/VideoContentTypeExtension.h @@ -8,12 +8,6 @@ namespace webrtc { class VideoContentTypeExtension { -public: - // prevent constructor by default - VideoContentTypeExtension& operator=(VideoContentTypeExtension const&); - VideoContentTypeExtension(VideoContentTypeExtension const&); - VideoContentTypeExtension(); - public: // static functions // NOLINTBEGIN diff --git a/src/mc/external/webrtc/VideoDecoder.h b/src/mc/external/webrtc/VideoDecoder.h index 8151903008..9d2af87879 100644 --- a/src/mc/external/webrtc/VideoDecoder.h +++ b/src/mc/external/webrtc/VideoDecoder.h @@ -51,12 +51,6 @@ class VideoDecoder { Settings(); }; -public: - // prevent constructor by default - VideoDecoder& operator=(VideoDecoder const&); - VideoDecoder(VideoDecoder const&); - VideoDecoder(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/external/webrtc/VideoDecoderFactory.h b/src/mc/external/webrtc/VideoDecoderFactory.h index f52287d98b..468295dcfa 100644 --- a/src/mc/external/webrtc/VideoDecoderFactory.h +++ b/src/mc/external/webrtc/VideoDecoderFactory.h @@ -34,12 +34,6 @@ class VideoDecoderFactory { CodecSupport(); }; -public: - // prevent constructor by default - VideoDecoderFactory& operator=(VideoDecoderFactory const&); - VideoDecoderFactory(VideoDecoderFactory const&); - VideoDecoderFactory(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/external/webrtc/VideoEncoder.h b/src/mc/external/webrtc/VideoEncoder.h index c7912ef87b..ed101d16a2 100644 --- a/src/mc/external/webrtc/VideoEncoder.h +++ b/src/mc/external/webrtc/VideoEncoder.h @@ -53,13 +53,7 @@ class VideoEncoder { // clang-format on // ScalingSettings inner types define - struct KOff { - public: - // prevent constructor by default - KOff& operator=(KOff const&); - KOff(KOff const&); - KOff(); - }; + struct KOff {}; public: // member variables @@ -195,12 +189,6 @@ class VideoEncoder { Settings(); }; -public: - // prevent constructor by default - VideoEncoder& operator=(VideoEncoder const&); - VideoEncoder(VideoEncoder const&); - VideoEncoder(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/external/webrtc/VideoEncoderConfig.h b/src/mc/external/webrtc/VideoEncoderConfig.h index 25164dc6cd..5167660137 100644 --- a/src/mc/external/webrtc/VideoEncoderConfig.h +++ b/src/mc/external/webrtc/VideoEncoderConfig.h @@ -28,12 +28,6 @@ class VideoEncoderConfig { // VideoEncoderConfig inner types define class EncoderSpecificSettings : public ::webrtc::RefCountInterface { - public: - // prevent constructor by default - EncoderSpecificSettings& operator=(EncoderSpecificSettings const&); - EncoderSpecificSettings(EncoderSpecificSettings const&); - EncoderSpecificSettings(); - public: // virtual functions // NOLINTBEGIN @@ -177,12 +171,6 @@ class VideoEncoderConfig { }; class VideoStreamFactoryInterface : public ::webrtc::RefCountInterface { - public: - // prevent constructor by default - VideoStreamFactoryInterface& operator=(VideoStreamFactoryInterface const&); - VideoStreamFactoryInterface(VideoStreamFactoryInterface const&); - VideoStreamFactoryInterface(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/external/webrtc/VideoEncoderFactory.h b/src/mc/external/webrtc/VideoEncoderFactory.h index d169dc5ed5..026f81bd41 100644 --- a/src/mc/external/webrtc/VideoEncoderFactory.h +++ b/src/mc/external/webrtc/VideoEncoderFactory.h @@ -38,12 +38,6 @@ class VideoEncoderFactory { }; class EncoderSelectorInterface { - public: - // prevent constructor by default - EncoderSelectorInterface& operator=(EncoderSelectorInterface const&); - EncoderSelectorInterface(EncoderSelectorInterface const&); - EncoderSelectorInterface(); - public: // virtual functions // NOLINTBEGIN @@ -76,12 +70,6 @@ class VideoEncoderFactory { // NOLINTEND }; -public: - // prevent constructor by default - VideoEncoderFactory& operator=(VideoEncoderFactory const&); - VideoEncoderFactory(VideoEncoderFactory const&); - VideoEncoderFactory(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/external/webrtc/VideoFecGenerator.h b/src/mc/external/webrtc/VideoFecGenerator.h index 7462237654..25db9268a9 100644 --- a/src/mc/external/webrtc/VideoFecGenerator.h +++ b/src/mc/external/webrtc/VideoFecGenerator.h @@ -4,12 +4,6 @@ namespace webrtc { -class VideoFecGenerator { -public: - // prevent constructor by default - VideoFecGenerator& operator=(VideoFecGenerator const&); - VideoFecGenerator(VideoFecGenerator const&); - VideoFecGenerator(); -}; +class VideoFecGenerator {}; } // namespace webrtc diff --git a/src/mc/external/webrtc/VideoFrameBuffer.h b/src/mc/external/webrtc/VideoFrameBuffer.h index 17a8dd97d8..33de92bf0c 100644 --- a/src/mc/external/webrtc/VideoFrameBuffer.h +++ b/src/mc/external/webrtc/VideoFrameBuffer.h @@ -28,12 +28,6 @@ class VideoFrameBuffer : public ::webrtc::RefCountInterface { KNV12 = 8, }; -public: - // prevent constructor by default - VideoFrameBuffer& operator=(VideoFrameBuffer const&); - VideoFrameBuffer(VideoFrameBuffer const&); - VideoFrameBuffer(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/external/webrtc/VideoFrameTrackingIdExtension.h b/src/mc/external/webrtc/VideoFrameTrackingIdExtension.h index f84329876a..51862b065c 100644 --- a/src/mc/external/webrtc/VideoFrameTrackingIdExtension.h +++ b/src/mc/external/webrtc/VideoFrameTrackingIdExtension.h @@ -5,12 +5,6 @@ namespace webrtc { class VideoFrameTrackingIdExtension { -public: - // prevent constructor by default - VideoFrameTrackingIdExtension& operator=(VideoFrameTrackingIdExtension const&); - VideoFrameTrackingIdExtension(VideoFrameTrackingIdExtension const&); - VideoFrameTrackingIdExtension(); - public: // static functions // NOLINTBEGIN diff --git a/src/mc/external/webrtc/VideoLayersAllocation.h b/src/mc/external/webrtc/VideoLayersAllocation.h index fb6fad3f51..a79f22f6f1 100644 --- a/src/mc/external/webrtc/VideoLayersAllocation.h +++ b/src/mc/external/webrtc/VideoLayersAllocation.h @@ -13,11 +13,6 @@ struct VideoLayersAllocation { // VideoLayersAllocation inner types define struct SpatialLayer { - public: - // prevent constructor by default - SpatialLayer& operator=(SpatialLayer const&); - SpatialLayer(); - public: // member functions // NOLINTBEGIN @@ -31,11 +26,6 @@ struct VideoLayersAllocation { // NOLINTEND }; -public: - // prevent constructor by default - VideoLayersAllocation& operator=(VideoLayersAllocation const&); - VideoLayersAllocation(); - public: // member functions // NOLINTBEGIN diff --git a/src/mc/external/webrtc/VideoOrientation.h b/src/mc/external/webrtc/VideoOrientation.h index f4ea86930d..795cf3dd42 100644 --- a/src/mc/external/webrtc/VideoOrientation.h +++ b/src/mc/external/webrtc/VideoOrientation.h @@ -8,12 +8,6 @@ namespace webrtc { class VideoOrientation { -public: - // prevent constructor by default - VideoOrientation& operator=(VideoOrientation const&); - VideoOrientation(VideoOrientation const&); - VideoOrientation(); - public: // static functions // NOLINTBEGIN diff --git a/src/mc/external/webrtc/VideoRateControlConfig.h b/src/mc/external/webrtc/VideoRateControlConfig.h index 96762c76ab..23a1cc287b 100644 --- a/src/mc/external/webrtc/VideoRateControlConfig.h +++ b/src/mc/external/webrtc/VideoRateControlConfig.h @@ -10,12 +10,6 @@ namespace webrtc { class StructParametersParser; } namespace webrtc { struct VideoRateControlConfig { -public: - // prevent constructor by default - VideoRateControlConfig& operator=(VideoRateControlConfig const&); - VideoRateControlConfig(VideoRateControlConfig const&); - VideoRateControlConfig(); - public: // member functions // NOLINTBEGIN diff --git a/src/mc/external/webrtc/VideoReceiveStreamInterface.h b/src/mc/external/webrtc/VideoReceiveStreamInterface.h index d437734134..e7b194b5a4 100644 --- a/src/mc/external/webrtc/VideoReceiveStreamInterface.h +++ b/src/mc/external/webrtc/VideoReceiveStreamInterface.h @@ -192,12 +192,6 @@ class VideoReceiveStreamInterface : public ::webrtc::MediaReceiveStreamInterface Config(); }; -public: - // prevent constructor by default - VideoReceiveStreamInterface& operator=(VideoReceiveStreamInterface const&); - VideoReceiveStreamInterface(VideoReceiveStreamInterface const&); - VideoReceiveStreamInterface(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/external/webrtc/VideoRtpReceiver.h b/src/mc/external/webrtc/VideoRtpReceiver.h index 6c15eb63ea..c04a28d178 100644 --- a/src/mc/external/webrtc/VideoRtpReceiver.h +++ b/src/mc/external/webrtc/VideoRtpReceiver.h @@ -18,12 +18,6 @@ namespace webrtc { class VideoFrame; } namespace webrtc { class VideoRtpReceiver { -public: - // prevent constructor by default - VideoRtpReceiver& operator=(VideoRtpReceiver const&); - VideoRtpReceiver(VideoRtpReceiver const&); - VideoRtpReceiver(); - public: // member functions // NOLINTBEGIN diff --git a/src/mc/external/webrtc/VideoRtpSender.h b/src/mc/external/webrtc/VideoRtpSender.h index 9aea304699..e79c46d6ec 100644 --- a/src/mc/external/webrtc/VideoRtpSender.h +++ b/src/mc/external/webrtc/VideoRtpSender.h @@ -14,12 +14,6 @@ namespace rtc { class Thread; } namespace webrtc { class VideoRtpSender { -public: - // prevent constructor by default - VideoRtpSender& operator=(VideoRtpSender const&); - VideoRtpSender(VideoRtpSender const&); - VideoRtpSender(); - public: // member functions // NOLINTBEGIN diff --git a/src/mc/external/webrtc/VideoRtpTrackSource.h b/src/mc/external/webrtc/VideoRtpTrackSource.h index 5471068aa2..3596709d29 100644 --- a/src/mc/external/webrtc/VideoRtpTrackSource.h +++ b/src/mc/external/webrtc/VideoRtpTrackSource.h @@ -21,19 +21,7 @@ class VideoRtpTrackSource { // clang-format on // VideoRtpTrackSource inner types define - class Callback { - public: - // prevent constructor by default - Callback& operator=(Callback const&); - Callback(Callback const&); - Callback(); - }; - -public: - // prevent constructor by default - VideoRtpTrackSource& operator=(VideoRtpTrackSource const&); - VideoRtpTrackSource(VideoRtpTrackSource const&); - VideoRtpTrackSource(); + class Callback {}; public: // member functions diff --git a/src/mc/external/webrtc/VideoSendStream.h b/src/mc/external/webrtc/VideoSendStream.h index 06d06efdcc..31119825b8 100644 --- a/src/mc/external/webrtc/VideoSendStream.h +++ b/src/mc/external/webrtc/VideoSendStream.h @@ -139,12 +139,6 @@ class VideoSendStream { Config(); }; -public: - // prevent constructor by default - VideoSendStream& operator=(VideoSendStream const&); - VideoSendStream(VideoSendStream const&); - VideoSendStream(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/external/webrtc/VideoStream.h b/src/mc/external/webrtc/VideoStream.h index 6e55eaeaf0..1f3d6fcb8c 100644 --- a/src/mc/external/webrtc/VideoStream.h +++ b/src/mc/external/webrtc/VideoStream.h @@ -4,12 +4,6 @@ namespace webrtc { -struct VideoStream { -public: - // prevent constructor by default - VideoStream& operator=(VideoStream const&); - VideoStream(VideoStream const&); - VideoStream(); -}; +struct VideoStream {}; } // namespace webrtc diff --git a/src/mc/external/webrtc/VideoTimingExtension.h b/src/mc/external/webrtc/VideoTimingExtension.h index 088e5432ad..1d982f804d 100644 --- a/src/mc/external/webrtc/VideoTimingExtension.h +++ b/src/mc/external/webrtc/VideoTimingExtension.h @@ -10,12 +10,6 @@ namespace webrtc { struct VideoSendTiming; } namespace webrtc { class VideoTimingExtension { -public: - // prevent constructor by default - VideoTimingExtension& operator=(VideoTimingExtension const&); - VideoTimingExtension(VideoTimingExtension const&); - VideoTimingExtension(); - public: // static functions // NOLINTBEGIN diff --git a/src/mc/external/webrtc/VideoTrack.h b/src/mc/external/webrtc/VideoTrack.h index 664a4d7e8f..1a6e171d38 100644 --- a/src/mc/external/webrtc/VideoTrack.h +++ b/src/mc/external/webrtc/VideoTrack.h @@ -15,12 +15,6 @@ namespace webrtc { class VideoTrackSourceInterface; } namespace webrtc { class VideoTrack { -public: - // prevent constructor by default - VideoTrack& operator=(VideoTrack const&); - VideoTrack(VideoTrack const&); - VideoTrack(); - public: // member functions // NOLINTBEGIN diff --git a/src/mc/external/webrtc/VideoTrackInterface.h b/src/mc/external/webrtc/VideoTrackInterface.h index cb7c4ff3d1..8f008e3f56 100644 --- a/src/mc/external/webrtc/VideoTrackInterface.h +++ b/src/mc/external/webrtc/VideoTrackInterface.h @@ -27,12 +27,6 @@ class VideoTrackInterface : public ::webrtc::MediaStreamTrackInterface, KText = 3, }; -public: - // prevent constructor by default - VideoTrackInterface& operator=(VideoTrackInterface const&); - VideoTrackInterface(VideoTrackInterface const&); - VideoTrackInterface(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/external/webrtc/VideoTrackSource.h b/src/mc/external/webrtc/VideoTrackSource.h index 37a429b2e7..d44010ce3d 100644 --- a/src/mc/external/webrtc/VideoTrackSource.h +++ b/src/mc/external/webrtc/VideoTrackSource.h @@ -8,12 +8,6 @@ namespace webrtc { class VideoTrackSource { -public: - // prevent constructor by default - VideoTrackSource& operator=(VideoTrackSource const&); - VideoTrackSource(VideoTrackSource const&); - VideoTrackSource(); - public: // member functions // NOLINTBEGIN diff --git a/src/mc/external/webrtc/VideoTrackSourceInterface.h b/src/mc/external/webrtc/VideoTrackSourceInterface.h index b32f832dea..441bb12864 100644 --- a/src/mc/external/webrtc/VideoTrackSourceInterface.h +++ b/src/mc/external/webrtc/VideoTrackSourceInterface.h @@ -40,12 +40,6 @@ class VideoTrackSourceInterface : public ::webrtc::MediaSourceInterface, Stats(); }; -public: - // prevent constructor by default - VideoTrackSourceInterface& operator=(VideoTrackSourceInterface const&); - VideoTrackSourceInterface(VideoTrackSourceInterface const&); - VideoTrackSourceInterface(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/external/webrtc/VideoTrackSourceProxyWithInternal.h b/src/mc/external/webrtc/VideoTrackSourceProxyWithInternal.h index 228f853e7b..b10a346828 100644 --- a/src/mc/external/webrtc/VideoTrackSourceProxyWithInternal.h +++ b/src/mc/external/webrtc/VideoTrackSourceProxyWithInternal.h @@ -5,12 +5,6 @@ namespace webrtc { template -class VideoTrackSourceProxyWithInternal { -public: - // prevent constructor by default - VideoTrackSourceProxyWithInternal& operator=(VideoTrackSourceProxyWithInternal const&); - VideoTrackSourceProxyWithInternal(VideoTrackSourceProxyWithInternal const&); - VideoTrackSourceProxyWithInternal(); -}; +class VideoTrackSourceProxyWithInternal {}; } // namespace webrtc diff --git a/src/mc/external/webrtc/WebRtcSessionDescriptionFactory.h b/src/mc/external/webrtc/WebRtcSessionDescriptionFactory.h index 43648150f8..4b1be3a297 100644 --- a/src/mc/external/webrtc/WebRtcSessionDescriptionFactory.h +++ b/src/mc/external/webrtc/WebRtcSessionDescriptionFactory.h @@ -31,12 +31,6 @@ class WebRtcSessionDescriptionFactory { // WebRtcSessionDescriptionFactory inner types define struct CreateSessionDescriptionRequest { - public: - // prevent constructor by default - CreateSessionDescriptionRequest& operator=(CreateSessionDescriptionRequest const&); - CreateSessionDescriptionRequest(CreateSessionDescriptionRequest const&); - CreateSessionDescriptionRequest(); - public: // member functions // NOLINTBEGIN @@ -50,12 +44,6 @@ class WebRtcSessionDescriptionFactory { // NOLINTEND }; -public: - // prevent constructor by default - WebRtcSessionDescriptionFactory& operator=(WebRtcSessionDescriptionFactory const&); - WebRtcSessionDescriptionFactory(WebRtcSessionDescriptionFactory const&); - WebRtcSessionDescriptionFactory(); - public: // member functions // NOLINTBEGIN diff --git a/src/mc/external/webrtc/flat_map.h b/src/mc/external/webrtc/flat_map.h index b970686cb1..dcf3310e72 100644 --- a/src/mc/external/webrtc/flat_map.h +++ b/src/mc/external/webrtc/flat_map.h @@ -4,12 +4,6 @@ namespace webrtc { -class flat_map { -public: - // prevent constructor by default - flat_map& operator=(flat_map const&); - flat_map(flat_map const&); - flat_map(); -}; +class flat_map {}; } // namespace webrtc diff --git a/src/mc/external/webrtc/flat_tree.h b/src/mc/external/webrtc/flat_tree.h index 2dda287c0a..a6069d019f 100644 --- a/src/mc/external/webrtc/flat_tree.h +++ b/src/mc/external/webrtc/flat_tree.h @@ -5,12 +5,6 @@ namespace webrtc::flat_containers_internal { template -class flat_tree { -public: - // prevent constructor by default - flat_tree& operator=(flat_tree const&); - flat_tree(flat_tree const&); - flat_tree(); -}; +class flat_tree {}; } // namespace webrtc::flat_containers_internal diff --git a/src/mc/external/webrtc/identity.h b/src/mc/external/webrtc/identity.h index a806c9a8fa..73fd455ee9 100644 --- a/src/mc/external/webrtc/identity.h +++ b/src/mc/external/webrtc/identity.h @@ -4,12 +4,6 @@ namespace webrtc { -struct identity { -public: - // prevent constructor by default - identity& operator=(identity const&); - identity(identity const&); - identity(); -}; +struct identity {}; } // namespace webrtc diff --git a/src/mc/external/webrtc/scoped_refptr.h b/src/mc/external/webrtc/scoped_refptr.h index 6a57c1c005..d929b49064 100644 --- a/src/mc/external/webrtc/scoped_refptr.h +++ b/src/mc/external/webrtc/scoped_refptr.h @@ -5,12 +5,6 @@ namespace webrtc { template -class scoped_refptr { -public: - // prevent constructor by default - scoped_refptr& operator=(scoped_refptr const&); - scoped_refptr(scoped_refptr const&); - scoped_refptr(); -}; +class scoped_refptr {}; } // namespace webrtc diff --git a/src/mc/external/webrtc/sorted_unique_t.h b/src/mc/external/webrtc/sorted_unique_t.h index bde9e1d609..45e9dec340 100644 --- a/src/mc/external/webrtc/sorted_unique_t.h +++ b/src/mc/external/webrtc/sorted_unique_t.h @@ -4,12 +4,6 @@ namespace webrtc { -struct sorted_unique_t { -public: - // prevent constructor by default - sorted_unique_t& operator=(sorted_unique_t const&); - sorted_unique_t(sorted_unique_t const&); - sorted_unique_t(); -}; +struct sorted_unique_t {}; } // namespace webrtc diff --git a/src/mc/external/webrtc/webrtc.h b/src/mc/external/webrtc/webrtc.h index a9652f253d..21f233bf4c 100644 --- a/src/mc/external/webrtc/webrtc.h +++ b/src/mc/external/webrtc/webrtc.h @@ -83,15 +83,15 @@ enum : int { }; enum : int { - KMaxSimulcastStreams = 3, + KMaxPreferredPixelFormats = 5, }; enum : int { - KRtpCsrcSize = 15, + KMaxSimulcastStreams = 3, }; enum : int { - KMaxPreferredPixelFormats = 5, + KMaxSpatialLayers = 5, }; enum : int { @@ -100,7 +100,7 @@ enum : int { }; enum : int { - KMaxSpatialLayers = 5, + KRtpCsrcSize = 15, }; // functions diff --git a/src/mc/gameplayhandlers/ActorGameplayHandler.h b/src/mc/gameplayhandlers/ActorGameplayHandler.h index 4331fd89ef..caaa40fe69 100644 --- a/src/mc/gameplayhandlers/ActorGameplayHandler.h +++ b/src/mc/gameplayhandlers/ActorGameplayHandler.h @@ -11,12 +11,6 @@ #include "mc/world/events/MutableActorGameplayEvent.h" class ActorGameplayHandler : public ::GameplayHandler { -public: - // prevent constructor by default - ActorGameplayHandler& operator=(ActorGameplayHandler const&); - ActorGameplayHandler(ActorGameplayHandler const&); - ActorGameplayHandler(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/gameplayhandlers/BlockGameplayHandler.h b/src/mc/gameplayhandlers/BlockGameplayHandler.h index bb52252c02..f4cf3a4a80 100644 --- a/src/mc/gameplayhandlers/BlockGameplayHandler.h +++ b/src/mc/gameplayhandlers/BlockGameplayHandler.h @@ -11,12 +11,6 @@ #include "mc/world/events/MutableBlockGameplayEvent.h" class BlockGameplayHandler : public ::GameplayHandler { -public: - // prevent constructor by default - BlockGameplayHandler& operator=(BlockGameplayHandler const&); - BlockGameplayHandler(BlockGameplayHandler const&); - BlockGameplayHandler(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/gameplayhandlers/ClientInstanceEventHandler.h b/src/mc/gameplayhandlers/ClientInstanceEventHandler.h index e259902db5..2c3036cfa7 100644 --- a/src/mc/gameplayhandlers/ClientInstanceEventHandler.h +++ b/src/mc/gameplayhandlers/ClientInstanceEventHandler.h @@ -8,12 +8,6 @@ #include "mc/world/events/ClientInstanceGameplayEvent.h" class ClientInstanceEventHandler : public ::GameplayHandler { -public: - // prevent constructor by default - ClientInstanceEventHandler& operator=(ClientInstanceEventHandler const&); - ClientInstanceEventHandler(ClientInstanceEventHandler const&); - ClientInstanceEventHandler(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/gameplayhandlers/EventHandlerDispatcher.h b/src/mc/gameplayhandlers/EventHandlerDispatcher.h index 9f3b3e257d..882f7f3a8d 100644 --- a/src/mc/gameplayhandlers/EventHandlerDispatcher.h +++ b/src/mc/gameplayhandlers/EventHandlerDispatcher.h @@ -3,10 +3,4 @@ #include "mc/_HeaderOutputPredefine.h" template -class EventHandlerDispatcher { -public: - // prevent constructor by default - EventHandlerDispatcher& operator=(EventHandlerDispatcher const&); - EventHandlerDispatcher(EventHandlerDispatcher const&); - EventHandlerDispatcher(); -}; +class EventHandlerDispatcher {}; diff --git a/src/mc/gameplayhandlers/GameplayHandler.h b/src/mc/gameplayhandlers/GameplayHandler.h index 40bd890290..2ee455ee3e 100644 --- a/src/mc/gameplayhandlers/GameplayHandler.h +++ b/src/mc/gameplayhandlers/GameplayHandler.h @@ -3,12 +3,6 @@ #include "mc/_HeaderOutputPredefine.h" class GameplayHandler { -public: - // prevent constructor by default - GameplayHandler& operator=(GameplayHandler const&); - GameplayHandler(GameplayHandler const&); - GameplayHandler(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/gameplayhandlers/GameplayHandlerResult.h b/src/mc/gameplayhandlers/GameplayHandlerResult.h index 9cd5560bf5..c36b40a535 100644 --- a/src/mc/gameplayhandlers/GameplayHandlerResult.h +++ b/src/mc/gameplayhandlers/GameplayHandlerResult.h @@ -3,10 +3,4 @@ #include "mc/_HeaderOutputPredefine.h" template -struct GameplayHandlerResult { -public: - // prevent constructor by default - GameplayHandlerResult& operator=(GameplayHandlerResult const&); - GameplayHandlerResult(GameplayHandlerResult const&); - GameplayHandlerResult(); -}; +struct GameplayHandlerResult {}; diff --git a/src/mc/gameplayhandlers/ItemGameplayHandler.h b/src/mc/gameplayhandlers/ItemGameplayHandler.h index 93c85f347a..b75e36ea2c 100644 --- a/src/mc/gameplayhandlers/ItemGameplayHandler.h +++ b/src/mc/gameplayhandlers/ItemGameplayHandler.h @@ -11,12 +11,6 @@ #include "mc/world/events/MutableItemGameplayEvent.h" class ItemGameplayHandler : public ::GameplayHandler { -public: - // prevent constructor by default - ItemGameplayHandler& operator=(ItemGameplayHandler const&); - ItemGameplayHandler(ItemGameplayHandler const&); - ItemGameplayHandler(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/gameplayhandlers/LevelGameplayHandler.h b/src/mc/gameplayhandlers/LevelGameplayHandler.h index 8988c030eb..189b9302b3 100644 --- a/src/mc/gameplayhandlers/LevelGameplayHandler.h +++ b/src/mc/gameplayhandlers/LevelGameplayHandler.h @@ -11,12 +11,6 @@ #include "mc/world/events/MutableLevelGameplayEvent.h" class LevelGameplayHandler : public ::GameplayHandler { -public: - // prevent constructor by default - LevelGameplayHandler& operator=(LevelGameplayHandler const&); - LevelGameplayHandler(LevelGameplayHandler const&); - LevelGameplayHandler(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/gameplayhandlers/PlayerGameplayHandler.h b/src/mc/gameplayhandlers/PlayerGameplayHandler.h index afd27a035b..e08295f18c 100644 --- a/src/mc/gameplayhandlers/PlayerGameplayHandler.h +++ b/src/mc/gameplayhandlers/PlayerGameplayHandler.h @@ -11,12 +11,6 @@ #include "mc/world/events/PlayerGameplayEvent.h" class PlayerGameplayHandler : public ::GameplayHandler { -public: - // prevent constructor by default - PlayerGameplayHandler& operator=(PlayerGameplayHandler const&); - PlayerGameplayHandler(PlayerGameplayHandler const&); - PlayerGameplayHandler(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/gameplayhandlers/ScriptingEventHandler.h b/src/mc/gameplayhandlers/ScriptingEventHandler.h index 5bb4212643..558cf8fca8 100644 --- a/src/mc/gameplayhandlers/ScriptingEventHandler.h +++ b/src/mc/gameplayhandlers/ScriptingEventHandler.h @@ -10,12 +10,6 @@ #include "mc/world/events/ScriptingGameplayEvent.h" class ScriptingEventHandler : public ::GameplayHandler { -public: - // prevent constructor by default - ScriptingEventHandler& operator=(ScriptingEventHandler const&); - ScriptingEventHandler(ScriptingEventHandler const&); - ScriptingEventHandler(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/gameplayhandlers/ServerInstanceEventHandler.h b/src/mc/gameplayhandlers/ServerInstanceEventHandler.h index 214e23ba69..0712f08ec9 100644 --- a/src/mc/gameplayhandlers/ServerInstanceEventHandler.h +++ b/src/mc/gameplayhandlers/ServerInstanceEventHandler.h @@ -8,12 +8,6 @@ #include "mc/world/events/ServerInstanceGameplayEvent.h" class ServerInstanceEventHandler : public ::GameplayHandler { -public: - // prevent constructor by default - ServerInstanceEventHandler& operator=(ServerInstanceEventHandler const&); - ServerInstanceEventHandler(ServerInstanceEventHandler const&); - ServerInstanceEventHandler(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/gameplayhandlers/ServerNetworkEventHandler.h b/src/mc/gameplayhandlers/ServerNetworkEventHandler.h index 2eba8e64d1..63867764df 100644 --- a/src/mc/gameplayhandlers/ServerNetworkEventHandler.h +++ b/src/mc/gameplayhandlers/ServerNetworkEventHandler.h @@ -9,12 +9,6 @@ #include "mc/world/events/MutableServerNetworkGameplayEvent.h" class ServerNetworkEventHandler : public ::GameplayHandler { -public: - // prevent constructor by default - ServerNetworkEventHandler& operator=(ServerNetworkEventHandler const&); - ServerNetworkEventHandler(ServerNetworkEventHandler const&); - ServerNetworkEventHandler(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/gametest/ConsoleGameTestListener.h b/src/mc/gametest/ConsoleGameTestListener.h index fb83b97a17..31627a8697 100644 --- a/src/mc/gametest/ConsoleGameTestListener.h +++ b/src/mc/gametest/ConsoleGameTestListener.h @@ -11,12 +11,6 @@ namespace gametest { class BaseGameTestInstance; } // clang-format on class ConsoleGameTestListener : public ::gametest::IGameTestListener { -public: - // prevent constructor by default - ConsoleGameTestListener& operator=(ConsoleGameTestListener const&); - ConsoleGameTestListener(ConsoleGameTestListener const&); - ConsoleGameTestListener(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/gametest/EmptyGameTestFunctionContext.h b/src/mc/gametest/EmptyGameTestFunctionContext.h index 42fda40d6b..a266d0b0c5 100644 --- a/src/mc/gametest/EmptyGameTestFunctionContext.h +++ b/src/mc/gametest/EmptyGameTestFunctionContext.h @@ -6,12 +6,6 @@ #include "mc/gametest/framework/IGameTestFunctionContext.h" class EmptyGameTestFunctionContext : public ::gametest::IGameTestFunctionContext { -public: - // prevent constructor by default - EmptyGameTestFunctionContext& operator=(EmptyGameTestFunctionContext const&); - EmptyGameTestFunctionContext(EmptyGameTestFunctionContext const&); - EmptyGameTestFunctionContext(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/gametest/GameTestRunner.h b/src/mc/gametest/GameTestRunner.h index d6df17fcff..7aaf4191f2 100644 --- a/src/mc/gametest/GameTestRunner.h +++ b/src/mc/gametest/GameTestRunner.h @@ -19,12 +19,6 @@ namespace gametest { struct TestParameters; } // clang-format on class GameTestRunner { -public: - // prevent constructor by default - GameTestRunner& operator=(GameTestRunner const&); - GameTestRunner(GameTestRunner const&); - GameTestRunner(); - public: // static functions // NOLINTBEGIN diff --git a/src/mc/gametest/IGameTestHelperProvider.h b/src/mc/gametest/IGameTestHelperProvider.h index 7378e31c32..68c1ee2820 100644 --- a/src/mc/gametest/IGameTestHelperProvider.h +++ b/src/mc/gametest/IGameTestHelperProvider.h @@ -11,12 +11,6 @@ namespace gametest { class BaseGameTestInstance; } namespace gametest { class IGameTestHelperProvider { -public: - // prevent constructor by default - IGameTestHelperProvider& operator=(IGameTestHelperProvider const&); - IGameTestHelperProvider(IGameTestHelperProvider const&); - IGameTestHelperProvider(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/gametest/MinecraftGameTestHelperProvider.h b/src/mc/gametest/MinecraftGameTestHelperProvider.h index 601bd1992f..2349ac43ef 100644 --- a/src/mc/gametest/MinecraftGameTestHelperProvider.h +++ b/src/mc/gametest/MinecraftGameTestHelperProvider.h @@ -12,12 +12,6 @@ namespace gametest { class BaseGameTestInstance; } // clang-format on class MinecraftGameTestHelperProvider : public ::gametest::IGameTestHelperProvider { -public: - // prevent constructor by default - MinecraftGameTestHelperProvider& operator=(MinecraftGameTestHelperProvider const&); - MinecraftGameTestHelperProvider(MinecraftGameTestHelperProvider const&); - MinecraftGameTestHelperProvider(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/gametest/NullGameTestHelper.h b/src/mc/gametest/NullGameTestHelper.h index db11f288b5..d8579d3eaf 100644 --- a/src/mc/gametest/NullGameTestHelper.h +++ b/src/mc/gametest/NullGameTestHelper.h @@ -27,12 +27,6 @@ namespace gametest { struct GameTestError; } // clang-format on class NullGameTestHelper : public ::gametest::BaseGameTestHelper { -public: - // prevent constructor by default - NullGameTestHelper& operator=(NullGameTestHelper const&); - NullGameTestHelper(NullGameTestHelper const&); - NullGameTestHelper(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/gametest/framework/IGameTestFunctionContext.h b/src/mc/gametest/framework/IGameTestFunctionContext.h index 348516ed7b..3ffa9ea338 100644 --- a/src/mc/gametest/framework/IGameTestFunctionContext.h +++ b/src/mc/gametest/framework/IGameTestFunctionContext.h @@ -5,12 +5,6 @@ namespace gametest { class IGameTestFunctionContext { -public: - // prevent constructor by default - IGameTestFunctionContext& operator=(IGameTestFunctionContext const&); - IGameTestFunctionContext(IGameTestFunctionContext const&); - IGameTestFunctionContext(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/gametest/framework/IGameTestFunctionRunResult.h b/src/mc/gametest/framework/IGameTestFunctionRunResult.h index ebf852039b..2095febd05 100644 --- a/src/mc/gametest/framework/IGameTestFunctionRunResult.h +++ b/src/mc/gametest/framework/IGameTestFunctionRunResult.h @@ -10,12 +10,6 @@ namespace gametest { struct GameTestError; } namespace gametest { class IGameTestFunctionRunResult { -public: - // prevent constructor by default - IGameTestFunctionRunResult& operator=(IGameTestFunctionRunResult const&); - IGameTestFunctionRunResult(IGameTestFunctionRunResult const&); - IGameTestFunctionRunResult(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/gametest/framework/IGameTestListener.h b/src/mc/gametest/framework/IGameTestListener.h index 2c6d2c2403..f6b943072d 100644 --- a/src/mc/gametest/framework/IGameTestListener.h +++ b/src/mc/gametest/framework/IGameTestListener.h @@ -10,12 +10,6 @@ namespace gametest { class BaseGameTestInstance; } namespace gametest { class IGameTestListener { -public: - // prevent constructor by default - IGameTestListener& operator=(IGameTestListener const&); - IGameTestListener(IGameTestListener const&); - IGameTestListener(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/gametest/framework/IGameTestRuleHelper.h b/src/mc/gametest/framework/IGameTestRuleHelper.h index 4d034e63d9..af0896a882 100644 --- a/src/mc/gametest/framework/IGameTestRuleHelper.h +++ b/src/mc/gametest/framework/IGameTestRuleHelper.h @@ -5,12 +5,6 @@ namespace gametest { class IGameTestRuleHelper { -public: - // prevent constructor by default - IGameTestRuleHelper& operator=(IGameTestRuleHelper const&); - IGameTestRuleHelper(IGameTestRuleHelper const&); - IGameTestRuleHelper(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/identity/EmailAddress.h b/src/mc/identity/EmailAddress.h index 30dd12f6a1..406ab5cc0c 100644 --- a/src/mc/identity/EmailAddress.h +++ b/src/mc/identity/EmailAddress.h @@ -7,12 +7,6 @@ namespace Social { -struct EmailAddress : public ::NewType<::std::string> { -public: - // prevent constructor by default - EmailAddress& operator=(EmailAddress const&); - EmailAddress(EmailAddress const&); - EmailAddress(); -}; +struct EmailAddress : public ::NewType<::std::string> {}; } // namespace Social diff --git a/src/mc/input/IMovementCorrection.h b/src/mc/input/IMovementCorrection.h index eeba2a19da..ced3b815dc 100644 --- a/src/mc/input/IMovementCorrection.h +++ b/src/mc/input/IMovementCorrection.h @@ -14,12 +14,6 @@ namespace MovementDataExtractionUtility { class SnapshotAccessor; } // clang-format on struct IMovementCorrection : public ::IReplayableActorInput { -public: - // prevent constructor by default - IMovementCorrection& operator=(IMovementCorrection const&); - IMovementCorrection(IMovementCorrection const&); - IMovementCorrection(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/input/IReplayableActorInput.h b/src/mc/input/IReplayableActorInput.h index 5b6f9a15ad..cb53e3fd05 100644 --- a/src/mc/input/IReplayableActorInput.h +++ b/src/mc/input/IReplayableActorInput.h @@ -8,12 +8,6 @@ class EntityContext; // clang-format on struct IReplayableActorInput { -public: - // prevent constructor by default - IReplayableActorInput& operator=(IReplayableActorInput const&); - IReplayableActorInput(IReplayableActorInput const&); - IReplayableActorInput(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/leveldb/LevelDbFileLock.h b/src/mc/leveldb/LevelDbFileLock.h index a85371f054..a1ab7e7288 100644 --- a/src/mc/leveldb/LevelDbFileLock.h +++ b/src/mc/leveldb/LevelDbFileLock.h @@ -3,12 +3,6 @@ #include "mc/_HeaderOutputPredefine.h" class LevelDbFileLock : public ::leveldb::FileLock { -public: - // prevent constructor by default - LevelDbFileLock& operator=(LevelDbFileLock const&); - LevelDbFileLock(LevelDbFileLock const&); - LevelDbFileLock(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/leveldb/LevelDbLogger.h b/src/mc/leveldb/LevelDbLogger.h index eb750d34c3..a063f64471 100644 --- a/src/mc/leveldb/LevelDbLogger.h +++ b/src/mc/leveldb/LevelDbLogger.h @@ -3,12 +3,6 @@ #include "mc/_HeaderOutputPredefine.h" class LevelDbLogger : public ::leveldb::Logger { -public: - // prevent constructor by default - LevelDbLogger& operator=(LevelDbLogger const&); - LevelDbLogger(LevelDbLogger const&); - LevelDbLogger(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/locale/I18nObserver.h b/src/mc/locale/I18nObserver.h index 8299f94c5c..ef44dc5dea 100644 --- a/src/mc/locale/I18nObserver.h +++ b/src/mc/locale/I18nObserver.h @@ -12,12 +12,6 @@ namespace Bedrock::Threading { class Mutex; } // clang-format on class I18nObserver : public ::Core::Observer<::I18nObserver, ::Bedrock::Threading::Mutex> { -public: - // prevent constructor by default - I18nObserver& operator=(I18nObserver const&); - I18nObserver(I18nObserver const&); - I18nObserver(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/molang/MolangVersionMapping.h b/src/mc/molang/MolangVersionMapping.h index 073307bc93..8a48deaac2 100644 --- a/src/mc/molang/MolangVersionMapping.h +++ b/src/mc/molang/MolangVersionMapping.h @@ -11,12 +11,6 @@ class SemVersion; // clang-format on class MolangVersionMapping { -public: - // prevent constructor by default - MolangVersionMapping& operator=(MolangVersionMapping const&); - MolangVersionMapping(MolangVersionMapping const&); - MolangVersionMapping(); - public: // static functions // NOLINTBEGIN diff --git a/src/mc/network/ClientNetherNetConnector.h b/src/mc/network/ClientNetherNetConnector.h index fb036607c6..4b5b814646 100644 --- a/src/mc/network/ClientNetherNetConnector.h +++ b/src/mc/network/ClientNetherNetConnector.h @@ -12,12 +12,6 @@ namespace Social { class GameConnectionInfo; } // clang-format on struct ClientNetherNetConnector : public ::NetherNetConnector { -public: - // prevent constructor by default - ClientNetherNetConnector& operator=(ClientNetherNetConnector const&); - ClientNetherNetConnector(ClientNetherNetConnector const&); - ClientNetherNetConnector(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/network/Connector.h b/src/mc/network/Connector.h index 62a42ba582..7b939c9371 100644 --- a/src/mc/network/Connector.h +++ b/src/mc/network/Connector.h @@ -23,12 +23,6 @@ class Connector { // Connector inner types define struct ConnectionCallbacks { - public: - // prevent constructor by default - ConnectionCallbacks& operator=(ConnectionCallbacks const&); - ConnectionCallbacks(ConnectionCallbacks const&); - ConnectionCallbacks(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/network/FranchiseSignalServiceConfig.h b/src/mc/network/FranchiseSignalServiceConfig.h index e601c7968d..8ea170fceb 100644 --- a/src/mc/network/FranchiseSignalServiceConfig.h +++ b/src/mc/network/FranchiseSignalServiceConfig.h @@ -11,21 +11,9 @@ class FranchiseSignalServiceConfig { // clang-format on // FranchiseSignalServiceConfig inner types define - struct Url : public ::std::string { - public: - // prevent constructor by default - Url& operator=(Url const&); - Url(Url const&); - Url(); - }; + struct Url : public ::std::string {}; - struct Token : public ::std::string { - public: - // prevent constructor by default - Token& operator=(Token const&); - Token(Token const&); - Token(); - }; + struct Token : public ::std::string {}; public: // member variables diff --git a/src/mc/network/GameSpecificNetEventCallback.h b/src/mc/network/GameSpecificNetEventCallback.h index ab963b109d..468ccacbbe 100644 --- a/src/mc/network/GameSpecificNetEventCallback.h +++ b/src/mc/network/GameSpecificNetEventCallback.h @@ -9,12 +9,6 @@ class ResourcePackClientResponsePacket; // clang-format on class GameSpecificNetEventCallback { -public: - // prevent constructor by default - GameSpecificNetEventCallback& operator=(GameSpecificNetEventCallback const&); - GameSpecificNetEventCallback(GameSpecificNetEventCallback const&); - GameSpecificNetEventCallback(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/network/IFranchiseSignalServiceTelemetry.h b/src/mc/network/IFranchiseSignalServiceTelemetry.h index de7f3df14d..28848bbcb2 100644 --- a/src/mc/network/IFranchiseSignalServiceTelemetry.h +++ b/src/mc/network/IFranchiseSignalServiceTelemetry.h @@ -11,12 +11,6 @@ namespace NetherNet { struct NetworkID; } // clang-format on class IFranchiseSignalServiceTelemetry { -public: - // prevent constructor by default - IFranchiseSignalServiceTelemetry& operator=(IFranchiseSignalServiceTelemetry const&); - IFranchiseSignalServiceTelemetry(IFranchiseSignalServiceTelemetry const&); - IFranchiseSignalServiceTelemetry(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/network/IGameConnectionInfoProvider.h b/src/mc/network/IGameConnectionInfoProvider.h index 3b1da6f66c..9a14506e23 100644 --- a/src/mc/network/IGameConnectionInfoProvider.h +++ b/src/mc/network/IGameConnectionInfoProvider.h @@ -10,12 +10,6 @@ namespace Social { class GameConnectionInfo; } namespace Social { class IGameConnectionInfoProvider { -public: - // prevent constructor by default - IGameConnectionInfoProvider& operator=(IGameConnectionInfoProvider const&); - IGameConnectionInfoProvider(IGameConnectionInfoProvider const&); - IGameConnectionInfoProvider(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/network/IPacketObserver.h b/src/mc/network/IPacketObserver.h index 71df8efd86..88cc8733ca 100644 --- a/src/mc/network/IPacketObserver.h +++ b/src/mc/network/IPacketObserver.h @@ -12,12 +12,6 @@ class Packet; // clang-format on class IPacketObserver : public ::Bedrock::EnableNonOwnerReferences { -public: - // prevent constructor by default - IPacketObserver& operator=(IPacketObserver const&); - IPacketObserver(IPacketObserver const&); - IPacketObserver(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/network/IServerNetworkController.h b/src/mc/network/IServerNetworkController.h index 4456c752e4..2539848d66 100644 --- a/src/mc/network/IServerNetworkController.h +++ b/src/mc/network/IServerNetworkController.h @@ -9,12 +9,6 @@ namespace mce { class UUID; } // clang-format on struct IServerNetworkController { -public: - // prevent constructor by default - IServerNetworkController& operator=(IServerNetworkController const&); - IServerNetworkController(IServerNetworkController const&); - IServerNetworkController(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/network/NetEventCallback.h b/src/mc/network/NetEventCallback.h index b59afc4527..1089f88ba0 100644 --- a/src/mc/network/NetEventCallback.h +++ b/src/mc/network/NetEventCallback.h @@ -234,12 +234,6 @@ struct NetworkIdentifierWithSubId; // clang-format on class NetEventCallback : public ::Bedrock::EnableNonOwnerReferences { -public: - // prevent constructor by default - NetEventCallback& operator=(NetEventCallback const&); - NetEventCallback(NetEventCallback const&); - NetEventCallback(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/network/NetherNetTransportStub.h b/src/mc/network/NetherNetTransportStub.h index e9f5d57cb5..9fb7d1b40b 100644 --- a/src/mc/network/NetherNetTransportStub.h +++ b/src/mc/network/NetherNetTransportStub.h @@ -20,12 +20,6 @@ namespace NetherNet { struct SessionState; } // clang-format on struct NetherNetTransportStub : public ::NetherNet::INetherNetTransportInterface { -public: - // prevent constructor by default - NetherNetTransportStub& operator=(NetherNetTransportStub const&); - NetherNetTransportStub(NetherNetTransportStub const&); - NetherNetTransportStub(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/network/RemoteConnector.h b/src/mc/network/RemoteConnector.h index 85d6e2d3ee..9a0c666e93 100644 --- a/src/mc/network/RemoteConnector.h +++ b/src/mc/network/RemoteConnector.h @@ -19,12 +19,6 @@ namespace Social { class GameConnectionInfo; } class RemoteConnector : public ::Connector, public ::NetworkEnableDisableListener, public ::Bedrock::EnableNonOwnerReferences { -public: - // prevent constructor by default - RemoteConnector& operator=(RemoteConnector const&); - RemoteConnector(RemoteConnector const&); - RemoteConnector(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/network/ServerLocator.h b/src/mc/network/ServerLocator.h index 0c1cce1292..fff0907095 100644 --- a/src/mc/network/ServerLocator.h +++ b/src/mc/network/ServerLocator.h @@ -17,12 +17,6 @@ struct PortPair; // clang-format on class ServerLocator : public ::NetworkEnableDisableListener { -public: - // prevent constructor by default - ServerLocator& operator=(ServerLocator const&); - ServerLocator(ServerLocator const&); - ServerLocator(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/network/ServerNetherNetConnector.h b/src/mc/network/ServerNetherNetConnector.h index 0d2e83e10b..9e58b32924 100644 --- a/src/mc/network/ServerNetherNetConnector.h +++ b/src/mc/network/ServerNetherNetConnector.h @@ -12,12 +12,6 @@ namespace NetherNet { struct NetworkID; } // clang-format on struct ServerNetherNetConnector : public ::NetherNetConnector { -public: - // prevent constructor by default - ServerNetherNetConnector& operator=(ServerNetherNetConnector const&); - ServerNetherNetConnector(ServerNetherNetConnector const&); - ServerNetherNetConnector(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/network/ServerNetworkSystem.h b/src/mc/network/ServerNetworkSystem.h index 4a761df8d5..e5eaf650db 100644 --- a/src/mc/network/ServerNetworkSystem.h +++ b/src/mc/network/ServerNetworkSystem.h @@ -23,12 +23,6 @@ struct NetworkSystemToggles; // clang-format on class ServerNetworkSystem : public ::Bedrock::EnableNonOwnerReferences, public ::NetworkSystem { -public: - // prevent constructor by default - ServerNetworkSystem& operator=(ServerNetworkSystem const&); - ServerNetworkSystem(ServerNetworkSystem const&); - ServerNetworkSystem(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/network/StubServerLocator.h b/src/mc/network/StubServerLocator.h index 77025d196b..21a18afc51 100644 --- a/src/mc/network/StubServerLocator.h +++ b/src/mc/network/StubServerLocator.h @@ -17,11 +17,6 @@ struct PortPair; // clang-format on class StubServerLocator : public ::ServerLocator { -public: - // prevent constructor by default - StubServerLocator& operator=(StubServerLocator const&); - StubServerLocator(StubServerLocator const&); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/network/XboxLiveUserObserver.h b/src/mc/network/XboxLiveUserObserver.h index 5f020adbbc..8afc9ab451 100644 --- a/src/mc/network/XboxLiveUserObserver.h +++ b/src/mc/network/XboxLiveUserObserver.h @@ -13,12 +13,6 @@ namespace Core { class SingleThreadedLock; } namespace Social { class XboxLiveUserObserver : public ::Core::Observer<::Social::XboxLiveUserObserver, ::Core::SingleThreadedLock> { -public: - // prevent constructor by default - XboxLiveUserObserver& operator=(XboxLiveUserObserver const&); - XboxLiveUserObserver(XboxLiveUserObserver const&); - XboxLiveUserObserver(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/network/packet/ActorFallPacket.h b/src/mc/network/packet/ActorFallPacket.h index 0dd098e74b..f5550581d3 100644 --- a/src/mc/network/packet/ActorFallPacket.h +++ b/src/mc/network/packet/ActorFallPacket.h @@ -2,10 +2,4 @@ #include "mc/_HeaderOutputPredefine.h" -class ActorFallPacket { -public: - // prevent constructor by default - ActorFallPacket& operator=(ActorFallPacket const&); - ActorFallPacket(ActorFallPacket const&); - ActorFallPacket(); -}; +class ActorFallPacket {}; diff --git a/src/mc/network/packet/AddMobPacket.h b/src/mc/network/packet/AddMobPacket.h index a644cec902..6e5aabee4a 100644 --- a/src/mc/network/packet/AddMobPacket.h +++ b/src/mc/network/packet/AddMobPacket.h @@ -2,10 +2,4 @@ #include "mc/_HeaderOutputPredefine.h" -class AddMobPacket { -public: - // prevent constructor by default - AddMobPacket& operator=(AddMobPacket const&); - AddMobPacket(AddMobPacket const&); - AddMobPacket(); -}; +class AddMobPacket {}; diff --git a/src/mc/network/packet/BookAddPagePacket.h b/src/mc/network/packet/BookAddPagePacket.h index 741191ef7e..813520289a 100644 --- a/src/mc/network/packet/BookAddPagePacket.h +++ b/src/mc/network/packet/BookAddPagePacket.h @@ -2,10 +2,4 @@ #include "mc/_HeaderOutputPredefine.h" -class BookAddPagePacket { -public: - // prevent constructor by default - BookAddPagePacket& operator=(BookAddPagePacket const&); - BookAddPagePacket(BookAddPagePacket const&); - BookAddPagePacket(); -}; +class BookAddPagePacket {}; diff --git a/src/mc/network/packet/BookDeletePagePacket.h b/src/mc/network/packet/BookDeletePagePacket.h index 4474721a5d..6f2c914225 100644 --- a/src/mc/network/packet/BookDeletePagePacket.h +++ b/src/mc/network/packet/BookDeletePagePacket.h @@ -2,10 +2,4 @@ #include "mc/_HeaderOutputPredefine.h" -class BookDeletePagePacket { -public: - // prevent constructor by default - BookDeletePagePacket& operator=(BookDeletePagePacket const&); - BookDeletePagePacket(BookDeletePagePacket const&); - BookDeletePagePacket(); -}; +class BookDeletePagePacket {}; diff --git a/src/mc/network/packet/BookSignPacket.h b/src/mc/network/packet/BookSignPacket.h index dad1b2b6d4..f537c19c8f 100644 --- a/src/mc/network/packet/BookSignPacket.h +++ b/src/mc/network/packet/BookSignPacket.h @@ -2,10 +2,4 @@ #include "mc/_HeaderOutputPredefine.h" -class BookSignPacket { -public: - // prevent constructor by default - BookSignPacket& operator=(BookSignPacket const&); - BookSignPacket(BookSignPacket const&); - BookSignPacket(); -}; +class BookSignPacket {}; diff --git a/src/mc/network/packet/BookSwapPagesPacket.h b/src/mc/network/packet/BookSwapPagesPacket.h index 059a563a4d..01cdc18aea 100644 --- a/src/mc/network/packet/BookSwapPagesPacket.h +++ b/src/mc/network/packet/BookSwapPagesPacket.h @@ -2,10 +2,4 @@ #include "mc/_HeaderOutputPredefine.h" -class BookSwapPagesPacket { -public: - // prevent constructor by default - BookSwapPagesPacket& operator=(BookSwapPagesPacket const&); - BookSwapPagesPacket(BookSwapPagesPacket const&); - BookSwapPagesPacket(); -}; +class BookSwapPagesPacket {}; diff --git a/src/mc/network/packet/InventoryActionPacket.h b/src/mc/network/packet/InventoryActionPacket.h index 01200fde20..5b15ee3707 100644 --- a/src/mc/network/packet/InventoryActionPacket.h +++ b/src/mc/network/packet/InventoryActionPacket.h @@ -2,10 +2,4 @@ #include "mc/_HeaderOutputPredefine.h" -class InventoryActionPacket { -public: - // prevent constructor by default - InventoryActionPacket& operator=(InventoryActionPacket const&); - InventoryActionPacket(InventoryActionPacket const&); - InventoryActionPacket(); -}; +class InventoryActionPacket {}; diff --git a/src/mc/options/AppConfigData.h b/src/mc/options/AppConfigData.h index fa72660e64..95101378c0 100644 --- a/src/mc/options/AppConfigData.h +++ b/src/mc/options/AppConfigData.h @@ -3,10 +3,4 @@ #include "mc/_HeaderOutputPredefine.h" template -class AppConfigData { -public: - // prevent constructor by default - AppConfigData& operator=(AppConfigData const&); - AppConfigData(AppConfigData const&); - AppConfigData(); -}; +class AppConfigData {}; diff --git a/src/mc/options/AppConfigsFactory.h b/src/mc/options/AppConfigsFactory.h index 72e6ae205b..ea0c31ad96 100644 --- a/src/mc/options/AppConfigsFactory.h +++ b/src/mc/options/AppConfigsFactory.h @@ -8,12 +8,6 @@ class AppConfigs; // clang-format on class AppConfigsFactory { -public: - // prevent constructor by default - AppConfigsFactory& operator=(AppConfigsFactory const&); - AppConfigsFactory(AppConfigsFactory const&); - AppConfigsFactory(); - public: // static functions // NOLINTBEGIN diff --git a/src/mc/options/ChatRestrictions.h b/src/mc/options/ChatRestrictions.h index 1e1f25878f..00da7ab835 100644 --- a/src/mc/options/ChatRestrictions.h +++ b/src/mc/options/ChatRestrictions.h @@ -2,10 +2,4 @@ #include "mc/_HeaderOutputPredefine.h" -struct ChatRestrictions { -public: - // prevent constructor by default - ChatRestrictions& operator=(ChatRestrictions const&); - ChatRestrictions(ChatRestrictions const&); - ChatRestrictions(); -}; +struct ChatRestrictions {}; diff --git a/src/mc/options/IAdvancedGraphicsHardwareOptions.h b/src/mc/options/IAdvancedGraphicsHardwareOptions.h index 8540036af3..05eb2b8312 100644 --- a/src/mc/options/IAdvancedGraphicsHardwareOptions.h +++ b/src/mc/options/IAdvancedGraphicsHardwareOptions.h @@ -6,12 +6,6 @@ #include "mc/deps/core/utility/EnableNonOwnerReferences.h" class IAdvancedGraphicsHardwareOptions : public ::Bedrock::EnableNonOwnerReferences { -public: - // prevent constructor by default - IAdvancedGraphicsHardwareOptions& operator=(IAdvancedGraphicsHardwareOptions const&); - IAdvancedGraphicsHardwareOptions(IAdvancedGraphicsHardwareOptions const&); - IAdvancedGraphicsHardwareOptions(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/options/IAdvancedGraphicsOptions.h b/src/mc/options/IAdvancedGraphicsOptions.h index 076ce65ad0..096949c625 100644 --- a/src/mc/options/IAdvancedGraphicsOptions.h +++ b/src/mc/options/IAdvancedGraphicsOptions.h @@ -7,12 +7,6 @@ #include "mc/options/IAdvancedGraphicsHardwareOptions.h" class IAdvancedGraphicsOptions : public ::IAdvancedGraphicsHardwareOptions { -public: - // prevent constructor by default - IAdvancedGraphicsOptions& operator=(IAdvancedGraphicsOptions const&); - IAdvancedGraphicsOptions(IAdvancedGraphicsOptions const&); - IAdvancedGraphicsOptions(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/options/IAppConfigData.h b/src/mc/options/IAppConfigData.h index c3cea8f9a4..0ad88f581f 100644 --- a/src/mc/options/IAppConfigData.h +++ b/src/mc/options/IAppConfigData.h @@ -6,12 +6,6 @@ #include "mc/deps/core/utility/typeid_t.h" class IAppConfigData { -public: - // prevent constructor by default - IAppConfigData& operator=(IAppConfigData const&); - IAppConfigData(IAppConfigData const&); - IAppConfigData(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/options/VanillaAppConfigs.h b/src/mc/options/VanillaAppConfigs.h index 5b61e90b25..146c763942 100644 --- a/src/mc/options/VanillaAppConfigs.h +++ b/src/mc/options/VanillaAppConfigs.h @@ -6,12 +6,6 @@ #include "mc/options/AppConfigs.h" class VanillaAppConfigs : public ::AppConfigs { -public: - // prevent constructor by default - VanillaAppConfigs& operator=(VanillaAppConfigs const&); - VanillaAppConfigs(VanillaAppConfigs const&); - VanillaAppConfigs(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/platform/Copyable.h b/src/mc/platform/Copyable.h index a691fa5b4e..f12c32c1fd 100644 --- a/src/mc/platform/Copyable.h +++ b/src/mc/platform/Copyable.h @@ -5,12 +5,6 @@ namespace Bedrock { template -class Copyable { -public: - // prevent constructor by default - Copyable& operator=(Copyable const&); - Copyable(Copyable const&); - Copyable(); -}; +class Copyable {}; } // namespace Bedrock diff --git a/src/mc/platform/ErrorInfo.h b/src/mc/platform/ErrorInfo.h index 78891577a1..069e843994 100644 --- a/src/mc/platform/ErrorInfo.h +++ b/src/mc/platform/ErrorInfo.h @@ -5,12 +5,6 @@ namespace Bedrock { template -struct ErrorInfo { -public: - // prevent constructor by default - ErrorInfo& operator=(ErrorInfo const&); - ErrorInfo(ErrorInfo const&); - ErrorInfo(); -}; +struct ErrorInfo {}; } // namespace Bedrock diff --git a/src/mc/platform/ErrorInfoBuilder.h b/src/mc/platform/ErrorInfoBuilder.h index ad8c99f068..6165b3a310 100644 --- a/src/mc/platform/ErrorInfoBuilder.h +++ b/src/mc/platform/ErrorInfoBuilder.h @@ -5,12 +5,6 @@ namespace Bedrock::Detail { template -struct ErrorInfoBuilder { -public: - // prevent constructor by default - ErrorInfoBuilder& operator=(ErrorInfoBuilder const&); - ErrorInfoBuilder(ErrorInfoBuilder const&); - ErrorInfoBuilder(); -}; +struct ErrorInfoBuilder {}; } // namespace Bedrock::Detail diff --git a/src/mc/platform/FakeBatteryMonitorInterface.h b/src/mc/platform/FakeBatteryMonitorInterface.h index a4ed6a0d8b..a03cd77de5 100644 --- a/src/mc/platform/FakeBatteryMonitorInterface.h +++ b/src/mc/platform/FakeBatteryMonitorInterface.h @@ -7,11 +7,6 @@ #include "mc/platform/battery/BatteryStatus.h" class FakeBatteryMonitorInterface : public ::BatteryMonitorInterface { -public: - // prevent constructor by default - FakeBatteryMonitorInterface& operator=(FakeBatteryMonitorInterface const&); - FakeBatteryMonitorInterface(FakeBatteryMonitorInterface const&); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/platform/FakeThermalMonitorInterface.h b/src/mc/platform/FakeThermalMonitorInterface.h index c94d7797e4..75b6d33027 100644 --- a/src/mc/platform/FakeThermalMonitorInterface.h +++ b/src/mc/platform/FakeThermalMonitorInterface.h @@ -7,11 +7,6 @@ #include "mc/platform/thermal/ThermalState.h" class FakeThermalMonitorInterface : public ::ThermalMonitorInterface { -public: - // prevent constructor by default - FakeThermalMonitorInterface& operator=(FakeThermalMonitorInterface const&); - FakeThermalMonitorInterface(FakeThermalMonitorInterface const&); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/platform/FormatterBase.h b/src/mc/platform/FormatterBase.h index 0fc2104935..20b6fd0fff 100644 --- a/src/mc/platform/FormatterBase.h +++ b/src/mc/platform/FormatterBase.h @@ -4,12 +4,6 @@ namespace Bedrock { -struct FormatterBase { -public: - // prevent constructor by default - FormatterBase& operator=(FormatterBase const&); - FormatterBase(FormatterBase const&); - FormatterBase(); -}; +struct FormatterBase {}; } // namespace Bedrock diff --git a/src/mc/platform/ImagePickingCallback.h b/src/mc/platform/ImagePickingCallback.h index ffd1271cab..34c26091ea 100644 --- a/src/mc/platform/ImagePickingCallback.h +++ b/src/mc/platform/ImagePickingCallback.h @@ -3,12 +3,6 @@ #include "mc/_HeaderOutputPredefine.h" class ImagePickingCallback { -public: - // prevent constructor by default - ImagePickingCallback& operator=(ImagePickingCallback const&); - ImagePickingCallback(ImagePickingCallback const&); - ImagePickingCallback(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/platform/MultiplayerServiceObserver.h b/src/mc/platform/MultiplayerServiceObserver.h index 2975d26e66..0d0c62c2cc 100644 --- a/src/mc/platform/MultiplayerServiceObserver.h +++ b/src/mc/platform/MultiplayerServiceObserver.h @@ -15,12 +15,6 @@ namespace Social { class MultiplayerServiceObserver : public ::Core::Observer<::Social::MultiplayerServiceObserver, ::Core::SingleThreadedLock> { -public: - // prevent constructor by default - MultiplayerServiceObserver& operator=(MultiplayerServiceObserver const&); - MultiplayerServiceObserver(MultiplayerServiceObserver const&); - MultiplayerServiceObserver(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/platform/NonCopyable.h b/src/mc/platform/NonCopyable.h index 07d7d0dd9c..b67d127449 100644 --- a/src/mc/platform/NonCopyable.h +++ b/src/mc/platform/NonCopyable.h @@ -4,12 +4,6 @@ namespace Bedrock { -class NonCopyable { -public: - // prevent constructor by default - NonCopyable& operator=(NonCopyable const&); - NonCopyable(NonCopyable const&); - NonCopyable(); -}; +class NonCopyable {}; } // namespace Bedrock diff --git a/src/mc/platform/OVRPlatformMessageHandler.h b/src/mc/platform/OVRPlatformMessageHandler.h index 14a716c0a1..dde347f517 100644 --- a/src/mc/platform/OVRPlatformMessageHandler.h +++ b/src/mc/platform/OVRPlatformMessageHandler.h @@ -8,12 +8,6 @@ struct ovrMessage; // clang-format on class OVRPlatformMessageHandler { -public: - // prevent constructor by default - OVRPlatformMessageHandler& operator=(OVRPlatformMessageHandler const&); - OVRPlatformMessageHandler(OVRPlatformMessageHandler const&); - OVRPlatformMessageHandler(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/platform/Result.h b/src/mc/platform/Result.h index bd079c1f49..9f232962cc 100644 --- a/src/mc/platform/Result.h +++ b/src/mc/platform/Result.h @@ -5,12 +5,6 @@ namespace Bedrock { template -class Result { -public: - // prevent constructor by default - Result& operator=(Result const&); - Result(Result const&); - Result(); -}; +class Result {}; } // namespace Bedrock diff --git a/src/mc/platform/ResultLogger.h b/src/mc/platform/ResultLogger.h index 350d1423d2..e6e27f2d0a 100644 --- a/src/mc/platform/ResultLogger.h +++ b/src/mc/platform/ResultLogger.h @@ -14,12 +14,6 @@ namespace Bedrock { struct CallStack; } namespace Bedrock { class ResultLogger { -public: - // prevent constructor by default - ResultLogger& operator=(ResultLogger const&); - ResultLogger(ResultLogger const&); - ResultLogger(); - public: // static functions // NOLINTBEGIN diff --git a/src/mc/platform/ThreadPool.h b/src/mc/platform/ThreadPool.h index 0d50c09b03..90c08c24e0 100644 --- a/src/mc/platform/ThreadPool.h +++ b/src/mc/platform/ThreadPool.h @@ -10,11 +10,6 @@ namespace OS { struct ThreadPoolActionStatus; } namespace OS { struct ThreadPool { -public: - // prevent constructor by default - ThreadPool& operator=(ThreadPool const&); - ThreadPool(ThreadPool const&); - public: // member functions // NOLINTBEGIN diff --git a/src/mc/platform/ThreadPoolActionStatus.h b/src/mc/platform/ThreadPoolActionStatus.h index 819b4586a3..8808e1f35a 100644 --- a/src/mc/platform/ThreadPoolActionStatus.h +++ b/src/mc/platform/ThreadPoolActionStatus.h @@ -4,12 +4,6 @@ namespace OS { -struct ThreadPoolActionStatus { -public: - // prevent constructor by default - ThreadPoolActionStatus& operator=(ThreadPoolActionStatus const&); - ThreadPoolActionStatus(ThreadPoolActionStatus const&); - ThreadPoolActionStatus(); -}; +struct ThreadPoolActionStatus {}; } // namespace OS diff --git a/src/mc/platform/ThreadPoolImpl.h b/src/mc/platform/ThreadPoolImpl.h index 27cbf06fcb..817b0a57fc 100644 --- a/src/mc/platform/ThreadPoolImpl.h +++ b/src/mc/platform/ThreadPoolImpl.h @@ -5,12 +5,6 @@ namespace OS { struct ThreadPoolImpl { -public: - // prevent constructor by default - ThreadPoolImpl& operator=(ThreadPoolImpl const&); - ThreadPoolImpl(ThreadPoolImpl const&); - ThreadPoolImpl(); - public: // static functions // NOLINTBEGIN diff --git a/src/mc/platform/UriListener.h b/src/mc/platform/UriListener.h index 76acfc954d..d0d1dbb62d 100644 --- a/src/mc/platform/UriListener.h +++ b/src/mc/platform/UriListener.h @@ -8,12 +8,6 @@ class ActivationUri; // clang-format on class UriListener { -public: - // prevent constructor by default - UriListener& operator=(UriListener const&); - UriListener(UriListener const&); - UriListener(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/platform/WaitTimer.h b/src/mc/platform/WaitTimer.h index 90740bb69a..3343f346b8 100644 --- a/src/mc/platform/WaitTimer.h +++ b/src/mc/platform/WaitTimer.h @@ -5,11 +5,6 @@ namespace OS { struct WaitTimer { -public: - // prevent constructor by default - WaitTimer& operator=(WaitTimer const&); - WaitTimer(WaitTimer const&); - public: // member functions // NOLINTBEGIN diff --git a/src/mc/platform/WaitTimerImpl.h b/src/mc/platform/WaitTimerImpl.h index 958b62797a..19eaf2ffc2 100644 --- a/src/mc/platform/WaitTimerImpl.h +++ b/src/mc/platform/WaitTimerImpl.h @@ -5,12 +5,6 @@ namespace OS { struct WaitTimerImpl { -public: - // prevent constructor by default - WaitTimerImpl& operator=(WaitTimerImpl const&); - WaitTimerImpl(WaitTimerImpl const&); - WaitTimerImpl(); - public: // static functions // NOLINTBEGIN diff --git a/src/mc/platform/WebviewInterface.h b/src/mc/platform/WebviewInterface.h index d0ce3482a6..1dd905153e 100644 --- a/src/mc/platform/WebviewInterface.h +++ b/src/mc/platform/WebviewInterface.h @@ -2,10 +2,4 @@ #include "mc/_HeaderOutputPredefine.h" -class WebviewInterface { -public: - // prevent constructor by default - WebviewInterface& operator=(WebviewInterface const&); - WebviewInterface(WebviewInterface const&); - WebviewInterface(); -}; +class WebviewInterface {}; diff --git a/src/mc/platform/WebviewObserver.h b/src/mc/platform/WebviewObserver.h index 8ef51f4b21..a24397da1f 100644 --- a/src/mc/platform/WebviewObserver.h +++ b/src/mc/platform/WebviewObserver.h @@ -13,12 +13,6 @@ namespace Core { class SingleThreadedLock; } // clang-format on class WebviewObserver : public ::Core::Observer<::WebviewObserver, ::Core::SingleThreadedLock> { -public: - // prevent constructor by default - WebviewObserver& operator=(WebviewObserver const&); - WebviewObserver(WebviewObserver const&); - WebviewObserver(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/platform/battery/BatteryMonitorInterface.h b/src/mc/platform/battery/BatteryMonitorInterface.h index 02ff241738..1846aa7603 100644 --- a/src/mc/platform/battery/BatteryMonitorInterface.h +++ b/src/mc/platform/battery/BatteryMonitorInterface.h @@ -6,12 +6,6 @@ #include "mc/platform/battery/BatteryStatus.h" class BatteryMonitorInterface { -public: - // prevent constructor by default - BatteryMonitorInterface& operator=(BatteryMonitorInterface const&); - BatteryMonitorInterface(BatteryMonitorInterface const&); - BatteryMonitorInterface(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/platform/brstd/flat_set.h b/src/mc/platform/brstd/flat_set.h index 0539befd33..0f4dc09880 100644 --- a/src/mc/platform/brstd/flat_set.h +++ b/src/mc/platform/brstd/flat_set.h @@ -5,12 +5,6 @@ namespace brstd { template -class flat_set { -public: - // prevent constructor by default - flat_set& operator=(flat_set const&); - flat_set(flat_set const&); - flat_set(); -}; +class flat_set {}; } // namespace brstd diff --git a/src/mc/platform/brstd/function_ref.h b/src/mc/platform/brstd/function_ref.h index e1febd7d7f..2a3e3bcb3a 100644 --- a/src/mc/platform/brstd/function_ref.h +++ b/src/mc/platform/brstd/function_ref.h @@ -5,12 +5,6 @@ namespace brstd { template -class function_ref { -public: - // prevent constructor by default - function_ref& operator=(function_ref const&); - function_ref(function_ref const&); - function_ref(); -}; +class function_ref {}; } // namespace brstd diff --git a/src/mc/platform/brstd/move_only_function.h b/src/mc/platform/brstd/move_only_function.h index 1b3526a616..2c8b370d27 100644 --- a/src/mc/platform/brstd/move_only_function.h +++ b/src/mc/platform/brstd/move_only_function.h @@ -5,12 +5,6 @@ namespace brstd { template -class move_only_function { -public: - // prevent constructor by default - move_only_function& operator=(move_only_function const&); - move_only_function(move_only_function const&); - move_only_function(); -}; +class move_only_function {}; } // namespace brstd diff --git a/src/mc/platform/brstd/no_mapped_container_t.h b/src/mc/platform/brstd/no_mapped_container_t.h index af123fe3d8..fed9ecaede 100644 --- a/src/mc/platform/brstd/no_mapped_container_t.h +++ b/src/mc/platform/brstd/no_mapped_container_t.h @@ -17,19 +17,7 @@ struct no_mapped_container_t { // clang-format on // no_mapped_container_t inner types define - struct iterator { - public: - // prevent constructor by default - iterator& operator=(iterator const&); - iterator(iterator const&); - iterator(); - }; - -public: - // prevent constructor by default - no_mapped_container_t& operator=(no_mapped_container_t const&); - no_mapped_container_t(no_mapped_container_t const&); - no_mapped_container_t(); + struct iterator {}; }; } // namespace brstd diff --git a/src/mc/platform/brstd/no_value_t.h b/src/mc/platform/brstd/no_value_t.h index d16593dafe..225d5283df 100644 --- a/src/mc/platform/brstd/no_value_t.h +++ b/src/mc/platform/brstd/no_value_t.h @@ -4,12 +4,6 @@ namespace brstd { -struct no_value_t { -public: - // prevent constructor by default - no_value_t& operator=(no_value_t const&); - no_value_t(no_value_t const&); - no_value_t(); -}; +struct no_value_t {}; } // namespace brstd diff --git a/src/mc/platform/brstd/synth_three_way.h b/src/mc/platform/brstd/synth_three_way.h index 19699979eb..34f533f479 100644 --- a/src/mc/platform/brstd/synth_three_way.h +++ b/src/mc/platform/brstd/synth_three_way.h @@ -4,12 +4,6 @@ namespace brstd { -struct synth_three_way { -public: - // prevent constructor by default - synth_three_way& operator=(synth_three_way const&); - synth_three_way(synth_three_way const&); - synth_three_way(); -}; +struct synth_three_way {}; } // namespace brstd diff --git a/src/mc/platform/ovrMessage.h b/src/mc/platform/ovrMessage.h index d0290c8a21..ac91dd10b3 100644 --- a/src/mc/platform/ovrMessage.h +++ b/src/mc/platform/ovrMessage.h @@ -2,10 +2,4 @@ #include "mc/_HeaderOutputPredefine.h" -struct ovrMessage { -public: - // prevent constructor by default - ovrMessage& operator=(ovrMessage const&); - ovrMessage(ovrMessage const&); - ovrMessage(); -}; +struct ovrMessage {}; diff --git a/src/mc/platform/thermal/ThermalMonitorInterface.h b/src/mc/platform/thermal/ThermalMonitorInterface.h index ff20adfb21..d536c0d681 100644 --- a/src/mc/platform/thermal/ThermalMonitorInterface.h +++ b/src/mc/platform/thermal/ThermalMonitorInterface.h @@ -6,12 +6,6 @@ #include "mc/platform/thermal/ThermalState.h" class ThermalMonitorInterface { -public: - // prevent constructor by default - ThermalMonitorInterface& operator=(ThermalMonitorInterface const&); - ThermalMonitorInterface(ThermalMonitorInterface const&); - ThermalMonitorInterface(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/platform/threading/LockGuard.h b/src/mc/platform/threading/LockGuard.h index 5764f55c49..20557d0162 100644 --- a/src/mc/platform/threading/LockGuard.h +++ b/src/mc/platform/threading/LockGuard.h @@ -5,12 +5,6 @@ namespace Bedrock::Threading { template -class LockGuard { -public: - // prevent constructor by default - LockGuard& operator=(LockGuard const&); - LockGuard(LockGuard const&); - LockGuard(); -}; +class LockGuard {}; } // namespace Bedrock::Threading diff --git a/src/mc/platform/threading/MainProcScope.h b/src/mc/platform/threading/MainProcScope.h index c5d2f5249b..de50b107ed 100644 --- a/src/mc/platform/threading/MainProcScope.h +++ b/src/mc/platform/threading/MainProcScope.h @@ -5,11 +5,6 @@ namespace Bedrock::Threading { class MainProcScope { -public: - // prevent constructor by default - MainProcScope& operator=(MainProcScope const&); - MainProcScope(MainProcScope const&); - public: // member functions // NOLINTBEGIN diff --git a/src/mc/platform/threading/SharedLock.h b/src/mc/platform/threading/SharedLock.h index aef2dd7094..2d2da27e9d 100644 --- a/src/mc/platform/threading/SharedLock.h +++ b/src/mc/platform/threading/SharedLock.h @@ -5,12 +5,6 @@ namespace Bedrock::Threading { template -class SharedLock { -public: - // prevent constructor by default - SharedLock& operator=(SharedLock const&); - SharedLock(SharedLock const&); - SharedLock(); -}; +class SharedLock {}; } // namespace Bedrock::Threading diff --git a/src/mc/platform/threading/ThreadLocalObject.h b/src/mc/platform/threading/ThreadLocalObject.h index 1290ae2a80..82c75d586d 100644 --- a/src/mc/platform/threading/ThreadLocalObject.h +++ b/src/mc/platform/threading/ThreadLocalObject.h @@ -5,12 +5,6 @@ namespace Bedrock::Threading { template -class ThreadLocalObject { -public: - // prevent constructor by default - ThreadLocalObject& operator=(ThreadLocalObject const&); - ThreadLocalObject(ThreadLocalObject const&); - ThreadLocalObject(); -}; +class ThreadLocalObject {}; } // namespace Bedrock::Threading diff --git a/src/mc/platform/threading/ThreadUtil.h b/src/mc/platform/threading/ThreadUtil.h index 4cd9ce035b..d552e28742 100644 --- a/src/mc/platform/threading/ThreadUtil.h +++ b/src/mc/platform/threading/ThreadUtil.h @@ -10,12 +10,6 @@ namespace Bedrock::Threading { class OSThreadPriority; } namespace Bedrock::Threading { class ThreadUtil { -public: - // prevent constructor by default - ThreadUtil& operator=(ThreadUtil const&); - ThreadUtil(ThreadUtil const&); - ThreadUtil(); - public: // static functions // NOLINTBEGIN diff --git a/src/mc/platform/threading/UniqueLock.h b/src/mc/platform/threading/UniqueLock.h index 6a191dc0dd..f6b2afa16e 100644 --- a/src/mc/platform/threading/UniqueLock.h +++ b/src/mc/platform/threading/UniqueLock.h @@ -5,12 +5,6 @@ namespace Bedrock::Threading { template -class UniqueLock { -public: - // prevent constructor by default - UniqueLock& operator=(UniqueLock const&); - UniqueLock(UniqueLock const&); - UniqueLock(); -}; +class UniqueLock {}; } // namespace Bedrock::Threading diff --git a/src/mc/platform/threading/ZeroInit.h b/src/mc/platform/threading/ZeroInit.h index 791ccd11b7..8b32f28bda 100644 --- a/src/mc/platform/threading/ZeroInit.h +++ b/src/mc/platform/threading/ZeroInit.h @@ -4,12 +4,6 @@ namespace Bedrock::Threading { -struct ZeroInit { -public: - // prevent constructor by default - ZeroInit& operator=(ZeroInit const&); - ZeroInit(ZeroInit const&); - ZeroInit(); -}; +struct ZeroInit {}; } // namespace Bedrock::Threading diff --git a/src/mc/platform/webview/Extension.h b/src/mc/platform/webview/Extension.h index 5d5eec4dc2..a72a735c51 100644 --- a/src/mc/platform/webview/Extension.h +++ b/src/mc/platform/webview/Extension.h @@ -10,12 +10,6 @@ namespace Json { class Value; } namespace Webview { struct Extension { -public: - // prevent constructor by default - Extension& operator=(Extension const&); - Extension(Extension const&); - Extension(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/resources/AppResourceLoader.h b/src/mc/resources/AppResourceLoader.h index 414a1b169c..b10ea7851b 100644 --- a/src/mc/resources/AppResourceLoader.h +++ b/src/mc/resources/AppResourceLoader.h @@ -13,12 +13,6 @@ class ResourceLocationPair; // clang-format on class AppResourceLoader : public ::ResourceLoader { -public: - // prevent constructor by default - AppResourceLoader& operator=(AppResourceLoader const&); - AppResourceLoader(AppResourceLoader const&); - AppResourceLoader(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/resources/BaseGamePackLoadRequirement.h b/src/mc/resources/BaseGamePackLoadRequirement.h index 8378fe02e4..e89653410d 100644 --- a/src/mc/resources/BaseGamePackLoadRequirement.h +++ b/src/mc/resources/BaseGamePackLoadRequirement.h @@ -11,12 +11,6 @@ class IPackLoadContext; // clang-format on class BaseGamePackLoadRequirement { -public: - // prevent constructor by default - BaseGamePackLoadRequirement& operator=(BaseGamePackLoadRequirement const&); - BaseGamePackLoadRequirement(BaseGamePackLoadRequirement const&); - BaseGamePackLoadRequirement(); - public: // static functions // NOLINTBEGIN diff --git a/src/mc/resources/BaseGameVersion.h b/src/mc/resources/BaseGameVersion.h index 532c03c32b..20299e9467 100644 --- a/src/mc/resources/BaseGameVersion.h +++ b/src/mc/resources/BaseGameVersion.h @@ -19,13 +19,7 @@ class BaseGameVersion { // clang-format on // BaseGameVersion inner types define - struct any_version_constructor { - public: - // prevent constructor by default - any_version_constructor& operator=(any_version_constructor const&); - any_version_constructor(any_version_constructor const&); - any_version_constructor(); - }; + struct any_version_constructor {}; public: // member variables diff --git a/src/mc/resources/BetaFeaturesLoadRequirement.h b/src/mc/resources/BetaFeaturesLoadRequirement.h index d5bc066945..70141c036f 100644 --- a/src/mc/resources/BetaFeaturesLoadRequirement.h +++ b/src/mc/resources/BetaFeaturesLoadRequirement.h @@ -11,12 +11,6 @@ class IPackLoadContext; // clang-format on class BetaFeaturesLoadRequirement { -public: - // prevent constructor by default - BetaFeaturesLoadRequirement& operator=(BetaFeaturesLoadRequirement const&); - BetaFeaturesLoadRequirement(BetaFeaturesLoadRequirement const&); - BetaFeaturesLoadRequirement(); - public: // static functions // NOLINTBEGIN diff --git a/src/mc/resources/EducationMetadataError.h b/src/mc/resources/EducationMetadataError.h index 54f57be0b8..9b644ede0a 100644 --- a/src/mc/resources/EducationMetadataError.h +++ b/src/mc/resources/EducationMetadataError.h @@ -6,12 +6,6 @@ #include "mc/resources/PackError.h" class EducationMetadataError : public ::PackError { -public: - // prevent constructor by default - EducationMetadataError& operator=(EducationMetadataError const&); - EducationMetadataError(EducationMetadataError const&); - EducationMetadataError(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/resources/IContentAccessibilityProvider.h b/src/mc/resources/IContentAccessibilityProvider.h index 4e8bd99934..c6ce902d20 100644 --- a/src/mc/resources/IContentAccessibilityProvider.h +++ b/src/mc/resources/IContentAccessibilityProvider.h @@ -11,12 +11,6 @@ class ContentIdentity; // clang-format on class IContentAccessibilityProvider : public ::IContentKeyProvider { -public: - // prevent constructor by default - IContentAccessibilityProvider& operator=(IContentAccessibilityProvider const&); - IContentAccessibilityProvider(IContentAccessibilityProvider const&); - IContentAccessibilityProvider(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/resources/IContentKeyProvider.h b/src/mc/resources/IContentKeyProvider.h index 829b00c58b..c17be3b36b 100644 --- a/src/mc/resources/IContentKeyProvider.h +++ b/src/mc/resources/IContentKeyProvider.h @@ -11,12 +11,6 @@ class ContentIdentity; // clang-format on class IContentKeyProvider : public ::Bedrock::EnableNonOwnerReferences { -public: - // prevent constructor by default - IContentKeyProvider& operator=(IContentKeyProvider const&); - IContentKeyProvider(IContentKeyProvider const&); - IContentKeyProvider(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/resources/IContentTierManager.h b/src/mc/resources/IContentTierManager.h index a281419371..2fca690157 100644 --- a/src/mc/resources/IContentTierManager.h +++ b/src/mc/resources/IContentTierManager.h @@ -11,12 +11,6 @@ class ContentTierInfo; // clang-format on class IContentTierManager : public ::Bedrock::EnableNonOwnerReferences { -public: - // prevent constructor by default - IContentTierManager& operator=(IContentTierManager const&); - IContentTierManager(IContentTierManager const&); - IContentTierManager(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/resources/IDynamicPackagePacks.h b/src/mc/resources/IDynamicPackagePacks.h index 7d8289ca8d..c8c2f52ff6 100644 --- a/src/mc/resources/IDynamicPackagePacks.h +++ b/src/mc/resources/IDynamicPackagePacks.h @@ -7,12 +7,6 @@ #include "mc/resources/IInPackagePacks.h" class IDynamicPackagePacks : public ::IInPackagePacks { -public: - // prevent constructor by default - IDynamicPackagePacks& operator=(IDynamicPackagePacks const&); - IDynamicPackagePacks(IDynamicPackagePacks const&); - IDynamicPackagePacks(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/resources/IInPackagePacks.h b/src/mc/resources/IInPackagePacks.h index 4fee1aeaea..e670127e5a 100644 --- a/src/mc/resources/IInPackagePacks.h +++ b/src/mc/resources/IInPackagePacks.h @@ -47,12 +47,6 @@ class IInPackagePacks { // NOLINTEND }; -public: - // prevent constructor by default - IInPackagePacks& operator=(IInPackagePacks const&); - IInPackagePacks(IInPackagePacks const&); - IInPackagePacks(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/resources/IPackLoadContext.h b/src/mc/resources/IPackLoadContext.h index ee2e775977..8b0943993c 100644 --- a/src/mc/resources/IPackLoadContext.h +++ b/src/mc/resources/IPackLoadContext.h @@ -15,12 +15,6 @@ namespace mce { class UUID; } // clang-format on class IPackLoadContext { -public: - // prevent constructor by default - IPackLoadContext& operator=(IPackLoadContext const&); - IPackLoadContext(IPackLoadContext const&); - IPackLoadContext(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/resources/IPackLoadScoped.h b/src/mc/resources/IPackLoadScoped.h index 1bd3296a1c..a94af8dfbc 100644 --- a/src/mc/resources/IPackLoadScoped.h +++ b/src/mc/resources/IPackLoadScoped.h @@ -3,12 +3,6 @@ #include "mc/_HeaderOutputPredefine.h" struct IPackLoadScoped { -public: - // prevent constructor by default - IPackLoadScoped& operator=(IPackLoadScoped const&); - IPackLoadScoped(IPackLoadScoped const&); - IPackLoadScoped(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/resources/IResourcePackRepository.h b/src/mc/resources/IResourcePackRepository.h index d6bcd25366..b626cd5de6 100644 --- a/src/mc/resources/IResourcePackRepository.h +++ b/src/mc/resources/IResourcePackRepository.h @@ -31,12 +31,6 @@ namespace mce { class UUID; } // clang-format on class IResourcePackRepository : public ::Bedrock::EnableNonOwnerReferences { -public: - // prevent constructor by default - IResourcePackRepository& operator=(IResourcePackRepository const&); - IResourcePackRepository(IResourcePackRepository const&); - IResourcePackRepository(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/resources/LegacyCreatorFeaturesLoadRequirement.h b/src/mc/resources/LegacyCreatorFeaturesLoadRequirement.h index 6604295c62..7b523c3093 100644 --- a/src/mc/resources/LegacyCreatorFeaturesLoadRequirement.h +++ b/src/mc/resources/LegacyCreatorFeaturesLoadRequirement.h @@ -11,12 +11,6 @@ class IPackLoadContext; // clang-format on class LegacyCreatorFeaturesLoadRequirement { -public: - // prevent constructor by default - LegacyCreatorFeaturesLoadRequirement& operator=(LegacyCreatorFeaturesLoadRequirement const&); - LegacyCreatorFeaturesLoadRequirement(LegacyCreatorFeaturesLoadRequirement const&); - LegacyCreatorFeaturesLoadRequirement(); - public: // static functions // NOLINTBEGIN diff --git a/src/mc/resources/PackAccessStrategyFactory.h b/src/mc/resources/PackAccessStrategyFactory.h index 6cc0ee7af9..22777a8cd8 100644 --- a/src/mc/resources/PackAccessStrategyFactory.h +++ b/src/mc/resources/PackAccessStrategyFactory.h @@ -16,12 +16,6 @@ namespace Core { class Path; } // clang-format on class PackAccessStrategyFactory { -public: - // prevent constructor by default - PackAccessStrategyFactory& operator=(PackAccessStrategyFactory const&); - PackAccessStrategyFactory(PackAccessStrategyFactory const&); - PackAccessStrategyFactory(); - public: // static functions // NOLINTBEGIN diff --git a/src/mc/resources/PackCapability.h b/src/mc/resources/PackCapability.h index 71fb48f2ff..81a1fafe53 100644 --- a/src/mc/resources/PackCapability.h +++ b/src/mc/resources/PackCapability.h @@ -78,19 +78,7 @@ class PackCapability { // NOLINTEND }; - struct NotFound { - public: - // prevent constructor by default - NotFound& operator=(NotFound const&); - NotFound(NotFound const&); - NotFound(); - }; - - public: - // prevent constructor by default - ValidationResult& operator=(ValidationResult const&); - ValidationResult(ValidationResult const&); - ValidationResult(); + struct NotFound {}; }; public: diff --git a/src/mc/resources/PackDiscoveryError.h b/src/mc/resources/PackDiscoveryError.h index 3e463ce17c..d9c3ec34d8 100644 --- a/src/mc/resources/PackDiscoveryError.h +++ b/src/mc/resources/PackDiscoveryError.h @@ -7,12 +7,6 @@ #include "mc/resources/PackParseErrorType.h" class PackDiscoveryError : public ::PackError { -public: - // prevent constructor by default - PackDiscoveryError& operator=(PackDiscoveryError const&); - PackDiscoveryError(PackDiscoveryError const&); - PackDiscoveryError(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/resources/PackErrorFactory.h b/src/mc/resources/PackErrorFactory.h index 172dc9a595..baceae9c50 100644 --- a/src/mc/resources/PackErrorFactory.h +++ b/src/mc/resources/PackErrorFactory.h @@ -2,10 +2,4 @@ #include "mc/_HeaderOutputPredefine.h" -class PackErrorFactory { -public: - // prevent constructor by default - PackErrorFactory& operator=(PackErrorFactory const&); - PackErrorFactory(PackErrorFactory const&); - PackErrorFactory(); -}; +class PackErrorFactory {}; diff --git a/src/mc/resources/PackLoadError.h b/src/mc/resources/PackLoadError.h index 96164a3ec3..7a28fc52d4 100644 --- a/src/mc/resources/PackLoadError.h +++ b/src/mc/resources/PackLoadError.h @@ -7,12 +7,6 @@ #include "mc/resources/PackParseErrorType.h" class PackLoadError : public ::PackError { -public: - // prevent constructor by default - PackLoadError& operator=(PackLoadError const&); - PackLoadError(PackLoadError const&); - PackLoadError(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/resources/PackMover.h b/src/mc/resources/PackMover.h index 1ae5ed6dc6..5a9a646ef1 100644 --- a/src/mc/resources/PackMover.h +++ b/src/mc/resources/PackMover.h @@ -2,10 +2,4 @@ #include "mc/_HeaderOutputPredefine.h" -class PackMover { -public: - // prevent constructor by default - PackMover& operator=(PackMover const&); - PackMover(PackMover const&); - PackMover(); -}; +class PackMover {}; diff --git a/src/mc/resources/PackSettingsError.h b/src/mc/resources/PackSettingsError.h index 06108f9d3b..b294a4d9ac 100644 --- a/src/mc/resources/PackSettingsError.h +++ b/src/mc/resources/PackSettingsError.h @@ -6,12 +6,6 @@ #include "mc/resources/PackError.h" class PackSettingsError : public ::PackError { -public: - // prevent constructor by default - PackSettingsError& operator=(PackSettingsError const&); - PackSettingsError(PackSettingsError const&); - PackSettingsError(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/resources/PackSource.h b/src/mc/resources/PackSource.h index 1e9f43f92f..455b4f6677 100644 --- a/src/mc/resources/PackSource.h +++ b/src/mc/resources/PackSource.h @@ -16,12 +16,6 @@ class PackSourceReport; // clang-format on class PackSource { -public: - // prevent constructor by default - PackSource& operator=(PackSource const&); - PackSource(PackSource const&); - PackSource(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/resources/PackSourceFactory.h b/src/mc/resources/PackSourceFactory.h index 038cc70bfa..fcfdeef0a9 100644 --- a/src/mc/resources/PackSourceFactory.h +++ b/src/mc/resources/PackSourceFactory.h @@ -50,13 +50,7 @@ class PackSourceFactory : public ::IPackSourceFactory { }; template - struct SourcesList { - public: - // prevent constructor by default - SourcesList& operator=(SourcesList const&); - SourcesList(SourcesList const&); - SourcesList(); - }; + struct SourcesList {}; public: // member variables diff --git a/src/mc/resources/ResourceLoadManager.h b/src/mc/resources/ResourceLoadManager.h index c611679b7a..5d0875c54c 100644 --- a/src/mc/resources/ResourceLoadManager.h +++ b/src/mc/resources/ResourceLoadManager.h @@ -23,13 +23,7 @@ class ResourceLoadManager : public ::Bedrock::EnableNonOwnerReferences { // clang-format on // ResourceLoadManager inner types define - struct LoadOrder { - public: - // prevent constructor by default - LoadOrder& operator=(LoadOrder const&); - LoadOrder(LoadOrder const&); - LoadOrder(); - }; + struct LoadOrder {}; class TaskGroupState { public: diff --git a/src/mc/resources/ResourcePackListener.h b/src/mc/resources/ResourcePackListener.h index 2d6fb9d7e9..c4ca6d68dd 100644 --- a/src/mc/resources/ResourcePackListener.h +++ b/src/mc/resources/ResourcePackListener.h @@ -8,12 +8,6 @@ class ResourcePackManager; // clang-format on class ResourcePackListener { -public: - // prevent constructor by default - ResourcePackListener& operator=(ResourcePackListener const&); - ResourcePackListener(ResourcePackListener const&); - ResourcePackListener(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/resources/ResourcePackManagerMinEngineVersionUtils.h b/src/mc/resources/ResourcePackManagerMinEngineVersionUtils.h index 427f0e4000..c88adf8c35 100644 --- a/src/mc/resources/ResourcePackManagerMinEngineVersionUtils.h +++ b/src/mc/resources/ResourcePackManagerMinEngineVersionUtils.h @@ -2,10 +2,4 @@ #include "mc/_HeaderOutputPredefine.h" -class ResourcePackManagerMinEngineVersionUtils { -public: - // prevent constructor by default - ResourcePackManagerMinEngineVersionUtils& operator=(ResourcePackManagerMinEngineVersionUtils const&); - ResourcePackManagerMinEngineVersionUtils(ResourcePackManagerMinEngineVersionUtils const&); - ResourcePackManagerMinEngineVersionUtils(); -}; +class ResourcePackManagerMinEngineVersionUtils {}; diff --git a/src/mc/resources/ResourcePackMergeStrategy.h b/src/mc/resources/ResourcePackMergeStrategy.h index cce317aec6..b5bf7fff12 100644 --- a/src/mc/resources/ResourcePackMergeStrategy.h +++ b/src/mc/resources/ResourcePackMergeStrategy.h @@ -8,12 +8,6 @@ class LoadedResourceData; // clang-format on class ResourcePackMergeStrategy { -public: - // prevent constructor by default - ResourcePackMergeStrategy& operator=(ResourcePackMergeStrategy const&); - ResourcePackMergeStrategy(ResourcePackMergeStrategy const&); - ResourcePackMergeStrategy(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/resources/ServerContentKeyProvider.h b/src/mc/resources/ServerContentKeyProvider.h index 748cf3fc4e..a1e2b58f66 100644 --- a/src/mc/resources/ServerContentKeyProvider.h +++ b/src/mc/resources/ServerContentKeyProvider.h @@ -11,12 +11,6 @@ class ContentIdentity; // clang-format on class ServerContentKeyProvider : public ::IContentAccessibilityProvider { -public: - // prevent constructor by default - ServerContentKeyProvider& operator=(ServerContentKeyProvider const&); - ServerContentKeyProvider(ServerContentKeyProvider const&); - ServerContentKeyProvider(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/resources/UIPackError.h b/src/mc/resources/UIPackError.h index 0ac168506f..51f5b3c573 100644 --- a/src/mc/resources/UIPackError.h +++ b/src/mc/resources/UIPackError.h @@ -6,12 +6,6 @@ #include "mc/resources/PackError.h" class UIPackError : public ::PackError { -public: - // prevent constructor by default - UIPackError& operator=(UIPackError const&); - UIPackError(UIPackError const&); - UIPackError(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/resources/ValidatorRegistry.h b/src/mc/resources/ValidatorRegistry.h index a5247792e2..0508664f9d 100644 --- a/src/mc/resources/ValidatorRegistry.h +++ b/src/mc/resources/ValidatorRegistry.h @@ -23,13 +23,7 @@ class ValidatorRegistry : public ::Bedrock::EnableNonOwnerReferences { // clang-format on // ValidatorRegistry inner types define - struct ValidatorRegisterer { - public: - // prevent constructor by default - ValidatorRegisterer& operator=(ValidatorRegisterer const&); - ValidatorRegisterer(ValidatorRegisterer const&); - ValidatorRegisterer(); - }; + struct ValidatorRegisterer {}; class ValidatorRegistryValidators { public: diff --git a/src/mc/resources/VanillaInPackagePacks.h b/src/mc/resources/VanillaInPackagePacks.h index a00ea14508..f57aa711ec 100644 --- a/src/mc/resources/VanillaInPackagePacks.h +++ b/src/mc/resources/VanillaInPackagePacks.h @@ -7,12 +7,6 @@ #include "mc/resources/IInPackagePacks.h" class VanillaInPackagePacks : public ::IInPackagePacks { -public: - // prevent constructor by default - VanillaInPackagePacks& operator=(VanillaInPackagePacks const&); - VanillaInPackagePacks(VanillaInPackagePacks const&); - VanillaInPackagePacks(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/resources/interface/IPackManifestFactory.h b/src/mc/resources/interface/IPackManifestFactory.h index d65d16bbcf..35bdd7296c 100644 --- a/src/mc/resources/interface/IPackManifestFactory.h +++ b/src/mc/resources/interface/IPackManifestFactory.h @@ -12,12 +12,6 @@ class SubpackInfoCollection; // clang-format on class IPackManifestFactory { -public: - // prevent constructor by default - IPackManifestFactory& operator=(IPackManifestFactory const&); - IPackManifestFactory(IPackManifestFactory const&); - IPackManifestFactory(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/resources/interface/IPackSourceFactory.h b/src/mc/resources/interface/IPackSourceFactory.h index c3e5a8a4d2..b2d80c130b 100644 --- a/src/mc/resources/interface/IPackSourceFactory.h +++ b/src/mc/resources/interface/IPackSourceFactory.h @@ -22,12 +22,6 @@ namespace mce { class UUID; } // clang-format on class IPackSourceFactory { -public: - // prevent constructor by default - IPackSourceFactory& operator=(IPackSourceFactory const&); - IPackSourceFactory(IPackSourceFactory const&); - IPackSourceFactory(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/resources/interface/IWorldTemplateManager.h b/src/mc/resources/interface/IWorldTemplateManager.h index 0c88c1bd86..c8ed9aadec 100644 --- a/src/mc/resources/interface/IWorldTemplateManager.h +++ b/src/mc/resources/interface/IWorldTemplateManager.h @@ -13,12 +13,6 @@ namespace mce { class UUID; } // clang-format on class IWorldTemplateManager : public ::Bedrock::EnableNonOwnerReferences { -public: - // prevent constructor by default - IWorldTemplateManager& operator=(IWorldTemplateManager const&); - IWorldTemplateManager(IWorldTemplateManager const&); - IWorldTemplateManager(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/resources/persona/DefinedSwatchLists.h b/src/mc/resources/persona/DefinedSwatchLists.h index 539c79d09d..09222eaff2 100644 --- a/src/mc/resources/persona/DefinedSwatchLists.h +++ b/src/mc/resources/persona/DefinedSwatchLists.h @@ -10,12 +10,6 @@ namespace persona::color { class SwatchList; } namespace persona::color { struct DefinedSwatchLists { -public: - // prevent constructor by default - DefinedSwatchLists& operator=(DefinedSwatchLists const&); - DefinedSwatchLists(DefinedSwatchLists const&); - DefinedSwatchLists(); - public: // static variables // NOLINTBEGIN diff --git a/src/mc/resources/persona/PersonaColors.h b/src/mc/resources/persona/PersonaColors.h index 4aa4d3e5d8..23951e0c74 100644 --- a/src/mc/resources/persona/PersonaColors.h +++ b/src/mc/resources/persona/PersonaColors.h @@ -10,12 +10,6 @@ namespace mce { class Color; } namespace persona { class PersonaColors { -public: - // prevent constructor by default - PersonaColors& operator=(PersonaColors const&); - PersonaColors(PersonaColors const&); - PersonaColors(); - public: // static variables // NOLINTBEGIN diff --git a/src/mc/scripting/IScriptGeneratorStats.h b/src/mc/scripting/IScriptGeneratorStats.h index 4587882abf..00a0660e95 100644 --- a/src/mc/scripting/IScriptGeneratorStats.h +++ b/src/mc/scripting/IScriptGeneratorStats.h @@ -8,12 +8,6 @@ namespace Scripting { struct ContextId; } // clang-format on class IScriptGeneratorStats { -public: - // prevent constructor by default - IScriptGeneratorStats& operator=(IScriptGeneratorStats const&); - IScriptGeneratorStats(IScriptGeneratorStats const&); - IScriptGeneratorStats(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/scripting/IScriptPluginSource.h b/src/mc/scripting/IScriptPluginSource.h index 43af04f118..6746a599b2 100644 --- a/src/mc/scripting/IScriptPluginSource.h +++ b/src/mc/scripting/IScriptPluginSource.h @@ -8,12 +8,6 @@ class PackManifest; // clang-format on class IScriptPluginSource { -public: - // prevent constructor by default - IScriptPluginSource& operator=(IScriptPluginSource const&); - IScriptPluginSource(IScriptPluginSource const&); - IScriptPluginSource(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/scripting/IScriptPluginSourceEnumerator.h b/src/mc/scripting/IScriptPluginSourceEnumerator.h index f7b8e5fa1a..847690465d 100644 --- a/src/mc/scripting/IScriptPluginSourceEnumerator.h +++ b/src/mc/scripting/IScriptPluginSourceEnumerator.h @@ -8,12 +8,6 @@ class IScriptPluginSource; // clang-format on class IScriptPluginSourceEnumerator { -public: - // prevent constructor by default - IScriptPluginSourceEnumerator& operator=(IScriptPluginSourceEnumerator const&); - IScriptPluginSourceEnumerator(IScriptPluginSourceEnumerator const&); - IScriptPluginSourceEnumerator(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/scripting/IScriptTelemetryLogger.h b/src/mc/scripting/IScriptTelemetryLogger.h index d4d0487469..4b26459fbf 100644 --- a/src/mc/scripting/IScriptTelemetryLogger.h +++ b/src/mc/scripting/IScriptTelemetryLogger.h @@ -8,12 +8,6 @@ class ScriptPluginManagerResult; // clang-format on class IScriptTelemetryLogger { -public: - // prevent constructor by default - IScriptTelemetryLogger& operator=(IScriptTelemetryLogger const&); - IScriptTelemetryLogger(IScriptTelemetryLogger const&); - IScriptTelemetryLogger(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/scripting/ScriptPrintLogger.h b/src/mc/scripting/ScriptPrintLogger.h index a3f0289f70..5861c3babf 100644 --- a/src/mc/scripting/ScriptPrintLogger.h +++ b/src/mc/scripting/ScriptPrintLogger.h @@ -11,12 +11,6 @@ namespace Scripting { struct ContextId; } // clang-format on class ScriptPrintLogger : public ::Scripting::IPrinter { -public: - // prevent constructor by default - ScriptPrintLogger& operator=(ScriptPrintLogger const&); - ScriptPrintLogger(ScriptPrintLogger const&); - ScriptPrintLogger(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/scripting/ScriptRuntimeConditionRegistry.h b/src/mc/scripting/ScriptRuntimeConditionRegistry.h index 89bb46483d..8f2d6a69b8 100644 --- a/src/mc/scripting/ScriptRuntimeConditionRegistry.h +++ b/src/mc/scripting/ScriptRuntimeConditionRegistry.h @@ -9,12 +9,6 @@ namespace Scripting { class RuntimeConditions; } // clang-format on class ScriptRuntimeConditionRegistry { -public: - // prevent constructor by default - ScriptRuntimeConditionRegistry& operator=(ScriptRuntimeConditionRegistry const&); - ScriptRuntimeConditionRegistry(ScriptRuntimeConditionRegistry const&); - ScriptRuntimeConditionRegistry(); - public: // static functions // NOLINTBEGIN diff --git a/src/mc/scripting/debugger/IScriptDebugger.h b/src/mc/scripting/debugger/IScriptDebugger.h index 4ce5b947b2..62bbfd1c9f 100644 --- a/src/mc/scripting/debugger/IScriptDebugger.h +++ b/src/mc/scripting/debugger/IScriptDebugger.h @@ -10,12 +10,6 @@ namespace Core { class Path; } // clang-format on class IScriptDebugger { -public: - // prevent constructor by default - IScriptDebugger& operator=(IScriptDebugger const&); - IScriptDebugger(IScriptDebugger const&); - IScriptDebugger(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/scripting/debugger/IScriptDebuggerWatchdog.h b/src/mc/scripting/debugger/IScriptDebuggerWatchdog.h index 46d3b8ec2c..dbc3900554 100644 --- a/src/mc/scripting/debugger/IScriptDebuggerWatchdog.h +++ b/src/mc/scripting/debugger/IScriptDebuggerWatchdog.h @@ -3,12 +3,6 @@ #include "mc/_HeaderOutputPredefine.h" class IScriptDebuggerWatchdog { -public: - // prevent constructor by default - IScriptDebuggerWatchdog& operator=(IScriptDebuggerWatchdog const&); - IScriptDebuggerWatchdog(IScriptDebuggerWatchdog const&); - IScriptDebuggerWatchdog(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/scripting/diagnostics/IScriptStatPublisher.h b/src/mc/scripting/diagnostics/IScriptStatPublisher.h index a702cf1fa4..14f7457893 100644 --- a/src/mc/scripting/diagnostics/IScriptStatPublisher.h +++ b/src/mc/scripting/diagnostics/IScriptStatPublisher.h @@ -8,12 +8,6 @@ class ScriptStat; // clang-format on class IScriptStatPublisher { -public: - // prevent constructor by default - IScriptStatPublisher& operator=(IScriptStatPublisher const&); - IScriptStatPublisher(IScriptStatPublisher const&); - IScriptStatPublisher(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/scripting/event_handlers/ScriptActorGameplayHandler.h b/src/mc/scripting/event_handlers/ScriptActorGameplayHandler.h index c14022d7ce..8c5671b204 100644 --- a/src/mc/scripting/event_handlers/ScriptActorGameplayHandler.h +++ b/src/mc/scripting/event_handlers/ScriptActorGameplayHandler.h @@ -21,12 +21,6 @@ namespace Scripting { class WeakLifetimeScope; } class ScriptActorGameplayHandler : public ::EventHandlerDispatcher<::ActorGameplayHandler>, public ::ScriptEventHandler<::ScriptModuleMinecraft::IScriptWorldBeforeEvents> { -public: - // prevent constructor by default - ScriptActorGameplayHandler& operator=(ScriptActorGameplayHandler const&); - ScriptActorGameplayHandler(ScriptActorGameplayHandler const&); - ScriptActorGameplayHandler(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/scripting/event_handlers/ScriptBlockGameplayHandler.h b/src/mc/scripting/event_handlers/ScriptBlockGameplayHandler.h index 954404eb27..097e693067 100644 --- a/src/mc/scripting/event_handlers/ScriptBlockGameplayHandler.h +++ b/src/mc/scripting/event_handlers/ScriptBlockGameplayHandler.h @@ -21,12 +21,6 @@ namespace Scripting { class WeakLifetimeScope; } class ScriptBlockGameplayHandler : public ::EventHandlerDispatcher<::BlockGameplayHandler>, public ::ScriptEventHandler<::ScriptModuleMinecraft::IScriptWorldBeforeEvents> { -public: - // prevent constructor by default - ScriptBlockGameplayHandler& operator=(ScriptBlockGameplayHandler const&); - ScriptBlockGameplayHandler(ScriptBlockGameplayHandler const&); - ScriptBlockGameplayHandler(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/scripting/event_handlers/ScriptEventHandler.h b/src/mc/scripting/event_handlers/ScriptEventHandler.h index 8ffd0645ff..2184652eda 100644 --- a/src/mc/scripting/event_handlers/ScriptEventHandler.h +++ b/src/mc/scripting/event_handlers/ScriptEventHandler.h @@ -3,10 +3,4 @@ #include "mc/_HeaderOutputPredefine.h" template -class ScriptEventHandler { -public: - // prevent constructor by default - ScriptEventHandler& operator=(ScriptEventHandler const&); - ScriptEventHandler(ScriptEventHandler const&); - ScriptEventHandler(); -}; +class ScriptEventHandler {}; diff --git a/src/mc/scripting/event_handlers/ScriptItemGameplayHandler.h b/src/mc/scripting/event_handlers/ScriptItemGameplayHandler.h index 54c6e521f4..384c221866 100644 --- a/src/mc/scripting/event_handlers/ScriptItemGameplayHandler.h +++ b/src/mc/scripting/event_handlers/ScriptItemGameplayHandler.h @@ -20,12 +20,6 @@ namespace Scripting { class WeakLifetimeScope; } class ScriptItemGameplayHandler : public ::EventHandlerDispatcher<::ItemGameplayHandler>, public ::ScriptEventHandler<::ScriptModuleMinecraft::IScriptWorldBeforeEvents> { -public: - // prevent constructor by default - ScriptItemGameplayHandler& operator=(ScriptItemGameplayHandler const&); - ScriptItemGameplayHandler(ScriptItemGameplayHandler const&); - ScriptItemGameplayHandler(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/scripting/event_handlers/ScriptLevelGameplayHandler.h b/src/mc/scripting/event_handlers/ScriptLevelGameplayHandler.h index bfafcdac96..7e6d8ee541 100644 --- a/src/mc/scripting/event_handlers/ScriptLevelGameplayHandler.h +++ b/src/mc/scripting/event_handlers/ScriptLevelGameplayHandler.h @@ -21,12 +21,6 @@ namespace Scripting { class WeakLifetimeScope; } class ScriptLevelGameplayHandler : public ::EventHandlerDispatcher<::LevelGameplayHandler>, public ::ScriptEventHandler<::ScriptModuleMinecraft::IScriptWorldBeforeEvents> { -public: - // prevent constructor by default - ScriptLevelGameplayHandler& operator=(ScriptLevelGameplayHandler const&); - ScriptLevelGameplayHandler(ScriptLevelGameplayHandler const&); - ScriptLevelGameplayHandler(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/scripting/event_handlers/ScriptPlayerGameplayHandler.h b/src/mc/scripting/event_handlers/ScriptPlayerGameplayHandler.h index 52dc1864b0..0958a4674c 100644 --- a/src/mc/scripting/event_handlers/ScriptPlayerGameplayHandler.h +++ b/src/mc/scripting/event_handlers/ScriptPlayerGameplayHandler.h @@ -22,12 +22,6 @@ namespace Scripting { class WeakLifetimeScope; } class ScriptPlayerGameplayHandler : public ::EventHandlerDispatcher<::PlayerGameplayHandler>, public ::ScriptEventHandler<::ScriptModuleMinecraft::IScriptWorldBeforeEvents> { -public: - // prevent constructor by default - ScriptPlayerGameplayHandler& operator=(ScriptPlayerGameplayHandler const&); - ScriptPlayerGameplayHandler(ScriptPlayerGameplayHandler const&); - ScriptPlayerGameplayHandler(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/scripting/event_handlers/ScriptScriptingEventHandler.h b/src/mc/scripting/event_handlers/ScriptScriptingEventHandler.h index 7e475bcfc3..341a39c756 100644 --- a/src/mc/scripting/event_handlers/ScriptScriptingEventHandler.h +++ b/src/mc/scripting/event_handlers/ScriptScriptingEventHandler.h @@ -21,12 +21,6 @@ namespace Scripting { class WeakLifetimeScope; } class ScriptScriptingEventHandler : public ::EventHandlerDispatcher<::ScriptingEventHandler>, public ::ScriptEventHandler<::ScriptModuleMinecraft::ScriptSystemBeforeEvents> { -public: - // prevent constructor by default - ScriptScriptingEventHandler& operator=(ScriptScriptingEventHandler const&); - ScriptScriptingEventHandler(ScriptScriptingEventHandler const&); - ScriptScriptingEventHandler(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/scripting/event_handlers/ScriptServerNetworkEventHandler.h b/src/mc/scripting/event_handlers/ScriptServerNetworkEventHandler.h index a4db040de3..7b739a91fd 100644 --- a/src/mc/scripting/event_handlers/ScriptServerNetworkEventHandler.h +++ b/src/mc/scripting/event_handlers/ScriptServerNetworkEventHandler.h @@ -24,12 +24,6 @@ class ScriptServerNetworkEventHandler : public ::EventHandlerDispatcher<::ServerNetworkEventHandler>, public ::ScriptEventHandler<::ScriptModuleMinecraft::IScriptWorldBeforeEvents>, public ::ScriptEventHandler<::ScriptModuleMinecraftNet::IScriptNetworkBeforeEvents> { -public: - // prevent constructor by default - ScriptServerNetworkEventHandler& operator=(ScriptServerNetworkEventHandler const&); - ScriptServerNetworkEventHandler(ScriptServerNetworkEventHandler const&); - ScriptServerNetworkEventHandler(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/scripting/modules/ScriptDebugUtilitiesModuleFactory.h b/src/mc/scripting/modules/ScriptDebugUtilitiesModuleFactory.h index 1e415b0f88..e2ce046de0 100644 --- a/src/mc/scripting/modules/ScriptDebugUtilitiesModuleFactory.h +++ b/src/mc/scripting/modules/ScriptDebugUtilitiesModuleFactory.h @@ -13,11 +13,6 @@ namespace mce { class UUID; } // clang-format on class ScriptDebugUtilitiesModuleFactory : public ::Scripting::GenericModuleBindingFactory { -public: - // prevent constructor by default - ScriptDebugUtilitiesModuleFactory& operator=(ScriptDebugUtilitiesModuleFactory const&); - ScriptDebugUtilitiesModuleFactory(ScriptDebugUtilitiesModuleFactory const&); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/scripting/modules/ScriptIdentityModuleFactory.h b/src/mc/scripting/modules/ScriptIdentityModuleFactory.h index ef8bbf7e60..de87a3d1a9 100644 --- a/src/mc/scripting/modules/ScriptIdentityModuleFactory.h +++ b/src/mc/scripting/modules/ScriptIdentityModuleFactory.h @@ -11,12 +11,6 @@ namespace mce { class UUID; } // clang-format on class ScriptIdentityModuleFactory : public ::Scripting::GenericModuleBindingFactory { -public: - // prevent constructor by default - ScriptIdentityModuleFactory& operator=(ScriptIdentityModuleFactory const&); - ScriptIdentityModuleFactory(ScriptIdentityModuleFactory const&); - ScriptIdentityModuleFactory(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/scripting/modules/ScriptLiveEventsUtilitiesModuleFactory.h b/src/mc/scripting/modules/ScriptLiveEventsUtilitiesModuleFactory.h index 2d326420af..94ac82bfb7 100644 --- a/src/mc/scripting/modules/ScriptLiveEventsUtilitiesModuleFactory.h +++ b/src/mc/scripting/modules/ScriptLiveEventsUtilitiesModuleFactory.h @@ -11,12 +11,6 @@ namespace mce { class UUID; } // clang-format on class ScriptLiveEventsUtilitiesModuleFactory : public ::Scripting::GenericModuleBindingFactory { -public: - // prevent constructor by default - ScriptLiveEventsUtilitiesModuleFactory& operator=(ScriptLiveEventsUtilitiesModuleFactory const&); - ScriptLiveEventsUtilitiesModuleFactory(ScriptLiveEventsUtilitiesModuleFactory const&); - ScriptLiveEventsUtilitiesModuleFactory(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/scripting/modules/ScriptMinecraftServerUIModuleFactory.h b/src/mc/scripting/modules/ScriptMinecraftServerUIModuleFactory.h index 3110db7a05..e7ce31672e 100644 --- a/src/mc/scripting/modules/ScriptMinecraftServerUIModuleFactory.h +++ b/src/mc/scripting/modules/ScriptMinecraftServerUIModuleFactory.h @@ -13,12 +13,6 @@ namespace mce { class UUID; } // clang-format on class ScriptMinecraftServerUIModuleFactory : public ::Scripting::GenericModuleBindingFactory { -public: - // prevent constructor by default - ScriptMinecraftServerUIModuleFactory& operator=(ScriptMinecraftServerUIModuleFactory const&); - ScriptMinecraftServerUIModuleFactory(ScriptMinecraftServerUIModuleFactory const&); - ScriptMinecraftServerUIModuleFactory(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/scripting/modules/debug_utilities/ScriptDebugUtils.h b/src/mc/scripting/modules/debug_utilities/ScriptDebugUtils.h index f1d8d13910..e64d5dbbbd 100644 --- a/src/mc/scripting/modules/debug_utilities/ScriptDebugUtils.h +++ b/src/mc/scripting/modules/debug_utilities/ScriptDebugUtils.h @@ -15,12 +15,6 @@ namespace Scripting { class WeakLifetimeScope; } namespace ScriptModuleDebugUtilities { class ScriptDebugUtils { -public: - // prevent constructor by default - ScriptDebugUtils& operator=(ScriptDebugUtils const&); - ScriptDebugUtils(ScriptDebugUtils const&); - ScriptDebugUtils(); - public: // static functions // NOLINTBEGIN diff --git a/src/mc/scripting/modules/gametest/ScriptGameTestDebug.h b/src/mc/scripting/modules/gametest/ScriptGameTestDebug.h index 65a1abe50b..158b496fce 100644 --- a/src/mc/scripting/modules/gametest/ScriptGameTestDebug.h +++ b/src/mc/scripting/modules/gametest/ScriptGameTestDebug.h @@ -8,12 +8,6 @@ namespace ScriptModuleGameTest { class ScriptGameTestDebug { -public: - // prevent constructor by default - ScriptGameTestDebug& operator=(ScriptGameTestDebug const&); - ScriptGameTestDebug(ScriptGameTestDebug const&); - ScriptGameTestDebug(); - public: // static functions // NOLINTBEGIN diff --git a/src/mc/scripting/modules/gametest/ScriptSimulatedPlayer.h b/src/mc/scripting/modules/gametest/ScriptSimulatedPlayer.h index 9c8fbf1096..cd95131a88 100644 --- a/src/mc/scripting/modules/gametest/ScriptSimulatedPlayer.h +++ b/src/mc/scripting/modules/gametest/ScriptSimulatedPlayer.h @@ -31,12 +31,6 @@ namespace gametest { struct GameTestError; } namespace ScriptModuleGameTest { class ScriptSimulatedPlayer : public ::ScriptModuleMinecraft::ScriptPlayer { -public: - // prevent constructor by default - ScriptSimulatedPlayer& operator=(ScriptSimulatedPlayer const&); - ScriptSimulatedPlayer(ScriptSimulatedPlayer const&); - ScriptSimulatedPlayer(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/scripting/modules/minecraft/BeforeEventExecutor.h b/src/mc/scripting/modules/minecraft/BeforeEventExecutor.h index 7d8e27724a..b75ca0f0db 100644 --- a/src/mc/scripting/modules/minecraft/BeforeEventExecutor.h +++ b/src/mc/scripting/modules/minecraft/BeforeEventExecutor.h @@ -4,12 +4,6 @@ namespace ScriptModuleMinecraft::Detail { -struct BeforeEventExecutor { -public: - // prevent constructor by default - BeforeEventExecutor& operator=(BeforeEventExecutor const&); - BeforeEventExecutor(BeforeEventExecutor const&); - BeforeEventExecutor(); -}; +struct BeforeEventExecutor {}; } // namespace ScriptModuleMinecraft::Detail diff --git a/src/mc/scripting/modules/minecraft/DeprecatedDimensionTypes.h b/src/mc/scripting/modules/minecraft/DeprecatedDimensionTypes.h index c787881563..e2546859fd 100644 --- a/src/mc/scripting/modules/minecraft/DeprecatedDimensionTypes.h +++ b/src/mc/scripting/modules/minecraft/DeprecatedDimensionTypes.h @@ -4,12 +4,6 @@ namespace ScriptModuleMinecraft { -struct DeprecatedDimensionTypes { -public: - // prevent constructor by default - DeprecatedDimensionTypes& operator=(DeprecatedDimensionTypes const&); - DeprecatedDimensionTypes(DeprecatedDimensionTypes const&); - DeprecatedDimensionTypes(); -}; +struct DeprecatedDimensionTypes {}; } // namespace ScriptModuleMinecraft diff --git a/src/mc/scripting/modules/minecraft/IScriptCustomComponentScriptEventClosure.h b/src/mc/scripting/modules/minecraft/IScriptCustomComponentScriptEventClosure.h index 810a22279d..36220e9514 100644 --- a/src/mc/scripting/modules/minecraft/IScriptCustomComponentScriptEventClosure.h +++ b/src/mc/scripting/modules/minecraft/IScriptCustomComponentScriptEventClosure.h @@ -4,12 +4,6 @@ namespace ScriptModuleMinecraft::CustomComponentEventHelpers { -class IScriptCustomComponentScriptEventClosure { -public: - // prevent constructor by default - IScriptCustomComponentScriptEventClosure& operator=(IScriptCustomComponentScriptEventClosure const&); - IScriptCustomComponentScriptEventClosure(IScriptCustomComponentScriptEventClosure const&); - IScriptCustomComponentScriptEventClosure(); -}; +class IScriptCustomComponentScriptEventClosure {}; } // namespace ScriptModuleMinecraft::CustomComponentEventHelpers diff --git a/src/mc/scripting/modules/minecraft/IScriptCustomComponentScriptInterface.h b/src/mc/scripting/modules/minecraft/IScriptCustomComponentScriptInterface.h index a214dd6ee3..d3f85e651f 100644 --- a/src/mc/scripting/modules/minecraft/IScriptCustomComponentScriptInterface.h +++ b/src/mc/scripting/modules/minecraft/IScriptCustomComponentScriptInterface.h @@ -4,12 +4,6 @@ namespace ScriptModuleMinecraft::CustomComponentEventHelpers { -class IScriptCustomComponentScriptInterface { -public: - // prevent constructor by default - IScriptCustomComponentScriptInterface& operator=(IScriptCustomComponentScriptInterface const&); - IScriptCustomComponentScriptInterface(IScriptCustomComponentScriptInterface const&); - IScriptCustomComponentScriptInterface(); -}; +class IScriptCustomComponentScriptInterface {}; } // namespace ScriptModuleMinecraft::CustomComponentEventHelpers diff --git a/src/mc/scripting/modules/minecraft/ScriptBoundingBox.h b/src/mc/scripting/modules/minecraft/ScriptBoundingBox.h index 499e94fc1b..aa1da3f883 100644 --- a/src/mc/scripting/modules/minecraft/ScriptBoundingBox.h +++ b/src/mc/scripting/modules/minecraft/ScriptBoundingBox.h @@ -13,12 +13,6 @@ class BoundingBox; namespace ScriptModuleMinecraft { class ScriptBoundingBox { -public: - // prevent constructor by default - ScriptBoundingBox& operator=(ScriptBoundingBox const&); - ScriptBoundingBox(ScriptBoundingBox const&); - ScriptBoundingBox(); - public: // static functions // NOLINTBEGIN diff --git a/src/mc/scripting/modules/minecraft/ScriptBoundingBoxUtils.h b/src/mc/scripting/modules/minecraft/ScriptBoundingBoxUtils.h index 52ab55162b..83a665beac 100644 --- a/src/mc/scripting/modules/minecraft/ScriptBoundingBoxUtils.h +++ b/src/mc/scripting/modules/minecraft/ScriptBoundingBoxUtils.h @@ -14,12 +14,6 @@ class Vec3; namespace ScriptModuleMinecraft { class ScriptBoundingBoxUtils { -public: - // prevent constructor by default - ScriptBoundingBoxUtils& operator=(ScriptBoundingBoxUtils const&); - ScriptBoundingBoxUtils(ScriptBoundingBoxUtils const&); - ScriptBoundingBoxUtils(); - public: // static functions // NOLINTBEGIN diff --git a/src/mc/scripting/modules/minecraft/ScriptCustomComponentInvalidRegistryError.h b/src/mc/scripting/modules/minecraft/ScriptCustomComponentInvalidRegistryError.h index e17f02418d..1e0f8cc905 100644 --- a/src/mc/scripting/modules/minecraft/ScriptCustomComponentInvalidRegistryError.h +++ b/src/mc/scripting/modules/minecraft/ScriptCustomComponentInvalidRegistryError.h @@ -15,12 +15,6 @@ namespace Scripting { struct ErrorBinding; } namespace ScriptModuleMinecraft { struct ScriptCustomComponentInvalidRegistryError : public ::Scripting::Error { -public: - // prevent constructor by default - ScriptCustomComponentInvalidRegistryError& operator=(ScriptCustomComponentInvalidRegistryError const&); - ScriptCustomComponentInvalidRegistryError(ScriptCustomComponentInvalidRegistryError const&); - ScriptCustomComponentInvalidRegistryError(); - public: // member functions // NOLINTBEGIN diff --git a/src/mc/scripting/modules/minecraft/ScriptGameRulesFactory.h b/src/mc/scripting/modules/minecraft/ScriptGameRulesFactory.h index 0c0ddcbfb7..ee9190e967 100644 --- a/src/mc/scripting/modules/minecraft/ScriptGameRulesFactory.h +++ b/src/mc/scripting/modules/minecraft/ScriptGameRulesFactory.h @@ -15,12 +15,6 @@ namespace Scripting { class WeakLifetimeScope; } namespace ScriptModuleMinecraft { class ScriptGameRulesFactory { -public: - // prevent constructor by default - ScriptGameRulesFactory& operator=(ScriptGameRulesFactory const&); - ScriptGameRulesFactory(ScriptGameRulesFactory const&); - ScriptGameRulesFactory(); - public: // static functions // NOLINTBEGIN diff --git a/src/mc/scripting/modules/minecraft/ScriptInputPermissionCategory.h b/src/mc/scripting/modules/minecraft/ScriptInputPermissionCategory.h index 331d267b32..df9fbaf866 100644 --- a/src/mc/scripting/modules/minecraft/ScriptInputPermissionCategory.h +++ b/src/mc/scripting/modules/minecraft/ScriptInputPermissionCategory.h @@ -10,12 +10,6 @@ namespace Scripting { struct EnumBinding; } namespace ScriptModuleMinecraft { class ScriptInputPermissionCategory { -public: - // prevent constructor by default - ScriptInputPermissionCategory& operator=(ScriptInputPermissionCategory const&); - ScriptInputPermissionCategory(ScriptInputPermissionCategory const&); - ScriptInputPermissionCategory(); - public: // static functions // NOLINTBEGIN diff --git a/src/mc/scripting/modules/minecraft/ScriptInvalidIteratorError.h b/src/mc/scripting/modules/minecraft/ScriptInvalidIteratorError.h index 0230a727bd..557e7844ba 100644 --- a/src/mc/scripting/modules/minecraft/ScriptInvalidIteratorError.h +++ b/src/mc/scripting/modules/minecraft/ScriptInvalidIteratorError.h @@ -9,11 +9,6 @@ namespace ScriptModuleMinecraft { struct ScriptInvalidIteratorError : public ::Scripting::Error { -public: - // prevent constructor by default - ScriptInvalidIteratorError& operator=(ScriptInvalidIteratorError const&); - ScriptInvalidIteratorError(ScriptInvalidIteratorError const&); - public: // member functions // NOLINTBEGIN diff --git a/src/mc/scripting/modules/minecraft/ScriptLocation.h b/src/mc/scripting/modules/minecraft/ScriptLocation.h index 6cd7c85ba5..5cc903f41e 100644 --- a/src/mc/scripting/modules/minecraft/ScriptLocation.h +++ b/src/mc/scripting/modules/minecraft/ScriptLocation.h @@ -15,12 +15,6 @@ class VecXZ; namespace ScriptModuleMinecraft { class ScriptLocation { -public: - // prevent constructor by default - ScriptLocation& operator=(ScriptLocation const&); - ScriptLocation(ScriptLocation const&); - ScriptLocation(); - public: // static functions // NOLINTBEGIN diff --git a/src/mc/scripting/modules/minecraft/ScriptMapValueIterator.h b/src/mc/scripting/modules/minecraft/ScriptMapValueIterator.h index 27d060d859..d030096f6f 100644 --- a/src/mc/scripting/modules/minecraft/ScriptMapValueIterator.h +++ b/src/mc/scripting/modules/minecraft/ScriptMapValueIterator.h @@ -5,12 +5,6 @@ namespace ScriptModuleMinecraft { template -class ScriptMapValueIterator { -public: - // prevent constructor by default - ScriptMapValueIterator& operator=(ScriptMapValueIterator const&); - ScriptMapValueIterator(ScriptMapValueIterator const&); - ScriptMapValueIterator(); -}; +class ScriptMapValueIterator {}; } // namespace ScriptModuleMinecraft diff --git a/src/mc/scripting/modules/minecraft/ScriptNumberRange.h b/src/mc/scripting/modules/minecraft/ScriptNumberRange.h index dacd7177f5..95b2407a6c 100644 --- a/src/mc/scripting/modules/minecraft/ScriptNumberRange.h +++ b/src/mc/scripting/modules/minecraft/ScriptNumberRange.h @@ -13,12 +13,6 @@ struct FloatRange; namespace ScriptModuleMinecraft { class ScriptNumberRange { -public: - // prevent constructor by default - ScriptNumberRange& operator=(ScriptNumberRange const&); - ScriptNumberRange(ScriptNumberRange const&); - ScriptNumberRange(); - public: // static functions // NOLINTBEGIN diff --git a/src/mc/scripting/modules/minecraft/ScriptPlayerInventoryComponentContainer.h b/src/mc/scripting/modules/minecraft/ScriptPlayerInventoryComponentContainer.h index 499103be0e..6b5eed4fbd 100644 --- a/src/mc/scripting/modules/minecraft/ScriptPlayerInventoryComponentContainer.h +++ b/src/mc/scripting/modules/minecraft/ScriptPlayerInventoryComponentContainer.h @@ -17,12 +17,6 @@ namespace Scripting { class WeakLifetimeScope; } namespace ScriptModuleMinecraft { class ScriptPlayerInventoryComponentContainer : public ::ScriptModuleMinecraft::ScriptInventoryComponentContainer { -public: - // prevent constructor by default - ScriptPlayerInventoryComponentContainer& operator=(ScriptPlayerInventoryComponentContainer const&); - ScriptPlayerInventoryComponentContainer(ScriptPlayerInventoryComponentContainer const&); - ScriptPlayerInventoryComponentContainer(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/scripting/modules/minecraft/ScriptRGBA.h b/src/mc/scripting/modules/minecraft/ScriptRGBA.h index 46b4564878..b0286452ee 100644 --- a/src/mc/scripting/modules/minecraft/ScriptRGBA.h +++ b/src/mc/scripting/modules/minecraft/ScriptRGBA.h @@ -14,12 +14,6 @@ namespace mce { class Color; } namespace ScriptModuleMinecraft { class ScriptRGBA : public ::ScriptModuleMinecraft::ScriptRGB { -public: - // prevent constructor by default - ScriptRGBA& operator=(ScriptRGBA const&); - ScriptRGBA(ScriptRGBA const&); - ScriptRGBA(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/scripting/modules/minecraft/ScriptSystemFactory.h b/src/mc/scripting/modules/minecraft/ScriptSystemFactory.h index cdf9b75b09..625e4b5c94 100644 --- a/src/mc/scripting/modules/minecraft/ScriptSystemFactory.h +++ b/src/mc/scripting/modules/minecraft/ScriptSystemFactory.h @@ -16,12 +16,6 @@ namespace Scripting { class WeakLifetimeScope; } namespace ScriptModuleMinecraft { class ScriptSystemFactory { -public: - // prevent constructor by default - ScriptSystemFactory& operator=(ScriptSystemFactory const&); - ScriptSystemFactory(ScriptSystemFactory const&); - ScriptSystemFactory(); - public: // static functions // NOLINTBEGIN diff --git a/src/mc/scripting/modules/minecraft/ScriptUnloadedChunksError.h b/src/mc/scripting/modules/minecraft/ScriptUnloadedChunksError.h index fc847ca525..55bc28e401 100644 --- a/src/mc/scripting/modules/minecraft/ScriptUnloadedChunksError.h +++ b/src/mc/scripting/modules/minecraft/ScriptUnloadedChunksError.h @@ -9,12 +9,6 @@ namespace ScriptModuleMinecraft { struct ScriptUnloadedChunksError : public ::Scripting::Error { -public: - // prevent constructor by default - ScriptUnloadedChunksError& operator=(ScriptUnloadedChunksError const&); - ScriptUnloadedChunksError(ScriptUnloadedChunksError const&); - ScriptUnloadedChunksError(); - public: // member functions // NOLINTBEGIN diff --git a/src/mc/scripting/modules/minecraft/ScriptVector.h b/src/mc/scripting/modules/minecraft/ScriptVector.h index b2c8691805..5039db1733 100644 --- a/src/mc/scripting/modules/minecraft/ScriptVector.h +++ b/src/mc/scripting/modules/minecraft/ScriptVector.h @@ -10,12 +10,6 @@ namespace ScriptModuleMinecraft { class ScriptVector : public ::Vec3 { -public: - // prevent constructor by default - ScriptVector& operator=(ScriptVector const&); - ScriptVector(ScriptVector const&); - ScriptVector(); - public: // member functions // NOLINTBEGIN diff --git a/src/mc/scripting/modules/minecraft/ScriptVectorIterator.h b/src/mc/scripting/modules/minecraft/ScriptVectorIterator.h index 4fe335ffc0..3364e21687 100644 --- a/src/mc/scripting/modules/minecraft/ScriptVectorIterator.h +++ b/src/mc/scripting/modules/minecraft/ScriptVectorIterator.h @@ -5,12 +5,6 @@ namespace ScriptModuleMinecraft { template -class ScriptVectorIterator { -public: - // prevent constructor by default - ScriptVectorIterator& operator=(ScriptVectorIterator const&); - ScriptVectorIterator(ScriptVectorIterator const&); - ScriptVectorIterator(); -}; +class ScriptVectorIterator {}; } // namespace ScriptModuleMinecraft diff --git a/src/mc/scripting/modules/minecraft/ScriptWorldFactory.h b/src/mc/scripting/modules/minecraft/ScriptWorldFactory.h index 059c3be9d2..3498aa7ffc 100644 --- a/src/mc/scripting/modules/minecraft/ScriptWorldFactory.h +++ b/src/mc/scripting/modules/minecraft/ScriptWorldFactory.h @@ -16,12 +16,6 @@ namespace Scripting { class WeakLifetimeScope; } namespace ScriptModuleMinecraft { class ScriptWorldFactory { -public: - // prevent constructor by default - ScriptWorldFactory& operator=(ScriptWorldFactory const&); - ScriptWorldFactory(ScriptWorldFactory const&); - ScriptWorldFactory(); - public: // static functions // NOLINTBEGIN diff --git a/src/mc/scripting/modules/minecraft/actor/ScriptActorDefinitionFeedItem.h b/src/mc/scripting/modules/minecraft/actor/ScriptActorDefinitionFeedItem.h index 51b731f89a..484a16a5b4 100644 --- a/src/mc/scripting/modules/minecraft/actor/ScriptActorDefinitionFeedItem.h +++ b/src/mc/scripting/modules/minecraft/actor/ScriptActorDefinitionFeedItem.h @@ -13,12 +13,6 @@ struct ActorDefinitionFeedItem; namespace ScriptModuleMinecraft { class ScriptActorDefinitionFeedItem { -public: - // prevent constructor by default - ScriptActorDefinitionFeedItem& operator=(ScriptActorDefinitionFeedItem const&); - ScriptActorDefinitionFeedItem(ScriptActorDefinitionFeedItem const&); - ScriptActorDefinitionFeedItem(); - public: // static functions // NOLINTBEGIN diff --git a/src/mc/scripting/modules/minecraft/actor/ScriptActorFactory.h b/src/mc/scripting/modules/minecraft/actor/ScriptActorFactory.h index c3149d394a..e46aa0e8be 100644 --- a/src/mc/scripting/modules/minecraft/actor/ScriptActorFactory.h +++ b/src/mc/scripting/modules/minecraft/actor/ScriptActorFactory.h @@ -16,12 +16,6 @@ namespace Scripting { class WeakLifetimeScope; } namespace ScriptModuleMinecraft { class ScriptActorFactory { -public: - // prevent constructor by default - ScriptActorFactory& operator=(ScriptActorFactory const&); - ScriptActorFactory(ScriptActorFactory const&); - ScriptActorFactory(); - public: // static functions // NOLINTBEGIN diff --git a/src/mc/scripting/modules/minecraft/actor/ScriptActorInitializationCause.h b/src/mc/scripting/modules/minecraft/actor/ScriptActorInitializationCause.h index 4b9beeee54..bb8f14464c 100644 --- a/src/mc/scripting/modules/minecraft/actor/ScriptActorInitializationCause.h +++ b/src/mc/scripting/modules/minecraft/actor/ScriptActorInitializationCause.h @@ -9,12 +9,6 @@ namespace ScriptModuleMinecraft { struct ScriptActorInitializationCause { -public: - // prevent constructor by default - ScriptActorInitializationCause& operator=(ScriptActorInitializationCause const&); - ScriptActorInitializationCause(ScriptActorInitializationCause const&); - ScriptActorInitializationCause(); - public: // static functions // NOLINTBEGIN diff --git a/src/mc/scripting/modules/minecraft/actor/ScriptActorIterator.h b/src/mc/scripting/modules/minecraft/actor/ScriptActorIterator.h index fc5ade0353..cdd9c3bad6 100644 --- a/src/mc/scripting/modules/minecraft/actor/ScriptActorIterator.h +++ b/src/mc/scripting/modules/minecraft/actor/ScriptActorIterator.h @@ -17,12 +17,6 @@ namespace ScriptModuleMinecraft { class ScriptActorIterator : public ::ScriptModuleMinecraft::ScriptVectorIterator< ::ScriptModuleMinecraft::ScriptActorIterator, ::Scripting::StrongTypedObjectHandle<::ScriptModuleMinecraft::ScriptActor>> { -public: - // prevent constructor by default - ScriptActorIterator& operator=(ScriptActorIterator const&); - ScriptActorIterator(ScriptActorIterator const&); - ScriptActorIterator(); - public: // member functions // NOLINTBEGIN diff --git a/src/mc/scripting/modules/minecraft/actor/ScriptActorTypeIterator.h b/src/mc/scripting/modules/minecraft/actor/ScriptActorTypeIterator.h index cd64d5331a..a4bde4ed13 100644 --- a/src/mc/scripting/modules/minecraft/actor/ScriptActorTypeIterator.h +++ b/src/mc/scripting/modules/minecraft/actor/ScriptActorTypeIterator.h @@ -20,12 +20,6 @@ class ScriptActorTypeIterator ::std::unordered_map< ::std::string, ::Scripting::StrongTypedObjectHandle<::ScriptModuleMinecraft::ScriptActorType>>> { -public: - // prevent constructor by default - ScriptActorTypeIterator& operator=(ScriptActorTypeIterator const&); - ScriptActorTypeIterator(ScriptActorTypeIterator const&); - ScriptActorTypeIterator(); - public: // static functions // NOLINTBEGIN diff --git a/src/mc/scripting/modules/minecraft/actor/ScriptActorTypesRegistry.h b/src/mc/scripting/modules/minecraft/actor/ScriptActorTypesRegistry.h index d182655453..a61de8a830 100644 --- a/src/mc/scripting/modules/minecraft/actor/ScriptActorTypesRegistry.h +++ b/src/mc/scripting/modules/minecraft/actor/ScriptActorTypesRegistry.h @@ -4,12 +4,6 @@ namespace ScriptModuleMinecraft { -struct ScriptActorTypesRegistry { -public: - // prevent constructor by default - ScriptActorTypesRegistry& operator=(ScriptActorTypesRegistry const&); - ScriptActorTypesRegistry(ScriptActorTypesRegistry const&); - ScriptActorTypesRegistry(); -}; +struct ScriptActorTypesRegistry {}; } // namespace ScriptModuleMinecraft diff --git a/src/mc/scripting/modules/minecraft/actor/ScriptDefinitionModifier.h b/src/mc/scripting/modules/minecraft/actor/ScriptDefinitionModifier.h index 7316fa4e20..adb4dcb2bb 100644 --- a/src/mc/scripting/modules/minecraft/actor/ScriptDefinitionModifier.h +++ b/src/mc/scripting/modules/minecraft/actor/ScriptDefinitionModifier.h @@ -14,12 +14,6 @@ struct ActorDefinitionModifier; namespace ScriptModuleMinecraft { class ScriptDefinitionModifier { -public: - // prevent constructor by default - ScriptDefinitionModifier& operator=(ScriptDefinitionModifier const&); - ScriptDefinitionModifier(ScriptDefinitionModifier const&); - ScriptDefinitionModifier(); - public: // static functions // NOLINTBEGIN diff --git a/src/mc/scripting/modules/minecraft/actor/ScriptDefinitionTrigger.h b/src/mc/scripting/modules/minecraft/actor/ScriptDefinitionTrigger.h index 7f9f5110c2..a92953ea0d 100644 --- a/src/mc/scripting/modules/minecraft/actor/ScriptDefinitionTrigger.h +++ b/src/mc/scripting/modules/minecraft/actor/ScriptDefinitionTrigger.h @@ -13,12 +13,6 @@ class ActorDefinitionTrigger; namespace ScriptModuleMinecraft { class ScriptDefinitionTrigger { -public: - // prevent constructor by default - ScriptDefinitionTrigger& operator=(ScriptDefinitionTrigger const&); - ScriptDefinitionTrigger(ScriptDefinitionTrigger const&); - ScriptDefinitionTrigger(); - public: // static functions // NOLINTBEGIN diff --git a/src/mc/scripting/modules/minecraft/actor/ScriptFeedItem.h b/src/mc/scripting/modules/minecraft/actor/ScriptFeedItem.h index dc0ce4f7ed..883bb68a12 100644 --- a/src/mc/scripting/modules/minecraft/actor/ScriptFeedItem.h +++ b/src/mc/scripting/modules/minecraft/actor/ScriptFeedItem.h @@ -13,12 +13,6 @@ struct FeedItem; namespace ScriptModuleMinecraft { class ScriptFeedItem { -public: - // prevent constructor by default - ScriptFeedItem& operator=(ScriptFeedItem const&); - ScriptFeedItem(ScriptFeedItem const&); - ScriptFeedItem(); - public: // static functions // NOLINTBEGIN diff --git a/src/mc/scripting/modules/minecraft/actor/ScriptFeedItemEffect.h b/src/mc/scripting/modules/minecraft/actor/ScriptFeedItemEffect.h index d0eb448a7c..8f1bca9a33 100644 --- a/src/mc/scripting/modules/minecraft/actor/ScriptFeedItemEffect.h +++ b/src/mc/scripting/modules/minecraft/actor/ScriptFeedItemEffect.h @@ -9,12 +9,6 @@ namespace ScriptModuleMinecraft { class ScriptFeedItemEffect { -public: - // prevent constructor by default - ScriptFeedItemEffect& operator=(ScriptFeedItemEffect const&); - ScriptFeedItemEffect(ScriptFeedItemEffect const&); - ScriptFeedItemEffect(); - public: // static functions // NOLINTBEGIN diff --git a/src/mc/scripting/modules/minecraft/actor/ScriptFilterGroup.h b/src/mc/scripting/modules/minecraft/actor/ScriptFilterGroup.h index 9d0c9ad856..82ecc9ba42 100644 --- a/src/mc/scripting/modules/minecraft/actor/ScriptFilterGroup.h +++ b/src/mc/scripting/modules/minecraft/actor/ScriptFilterGroup.h @@ -13,12 +13,6 @@ class ActorFilterGroup; namespace ScriptModuleMinecraft { class ScriptFilterGroup { -public: - // prevent constructor by default - ScriptFilterGroup& operator=(ScriptFilterGroup const&); - ScriptFilterGroup(ScriptFilterGroup const&); - ScriptFilterGroup(); - public: // static functions // NOLINTBEGIN diff --git a/src/mc/scripting/modules/minecraft/actor/ScriptPaletteColor.h b/src/mc/scripting/modules/minecraft/actor/ScriptPaletteColor.h index a9e96fcc03..65d5826c13 100644 --- a/src/mc/scripting/modules/minecraft/actor/ScriptPaletteColor.h +++ b/src/mc/scripting/modules/minecraft/actor/ScriptPaletteColor.h @@ -9,12 +9,6 @@ namespace ScriptModuleMinecraft { class ScriptPaletteColor { -public: - // prevent constructor by default - ScriptPaletteColor& operator=(ScriptPaletteColor const&); - ScriptPaletteColor(ScriptPaletteColor const&); - ScriptPaletteColor(); - public: // static functions // NOLINTBEGIN diff --git a/src/mc/scripting/modules/minecraft/block/ScriptBlockCustomComponentAlreadyRegisteredError.h b/src/mc/scripting/modules/minecraft/block/ScriptBlockCustomComponentAlreadyRegisteredError.h index 04633789ca..50e5cdc8a5 100644 --- a/src/mc/scripting/modules/minecraft/block/ScriptBlockCustomComponentAlreadyRegisteredError.h +++ b/src/mc/scripting/modules/minecraft/block/ScriptBlockCustomComponentAlreadyRegisteredError.h @@ -13,13 +13,6 @@ namespace Scripting { struct ErrorBinding; } namespace ScriptModuleMinecraft { struct ScriptBlockCustomComponentAlreadyRegisteredError : public ::Scripting::Error { -public: - // prevent constructor by default - ScriptBlockCustomComponentAlreadyRegisteredError& - operator=(ScriptBlockCustomComponentAlreadyRegisteredError const&); - ScriptBlockCustomComponentAlreadyRegisteredError(ScriptBlockCustomComponentAlreadyRegisteredError const&); - ScriptBlockCustomComponentAlreadyRegisteredError(); - public: // member functions // NOLINTBEGIN diff --git a/src/mc/scripting/modules/minecraft/block/ScriptBlockCustomComponentReloadNewComponentError.h b/src/mc/scripting/modules/minecraft/block/ScriptBlockCustomComponentReloadNewComponentError.h index 91a6ec7d01..72ce5a3544 100644 --- a/src/mc/scripting/modules/minecraft/block/ScriptBlockCustomComponentReloadNewComponentError.h +++ b/src/mc/scripting/modules/minecraft/block/ScriptBlockCustomComponentReloadNewComponentError.h @@ -13,13 +13,6 @@ namespace Scripting { struct ErrorBinding; } namespace ScriptModuleMinecraft { struct ScriptBlockCustomComponentReloadNewComponentError : public ::Scripting::Error { -public: - // prevent constructor by default - ScriptBlockCustomComponentReloadNewComponentError& - operator=(ScriptBlockCustomComponentReloadNewComponentError const&); - ScriptBlockCustomComponentReloadNewComponentError(ScriptBlockCustomComponentReloadNewComponentError const&); - ScriptBlockCustomComponentReloadNewComponentError(); - public: // member functions // NOLINTBEGIN diff --git a/src/mc/scripting/modules/minecraft/block/ScriptBlockCustomComponentReloadNewEventError.h b/src/mc/scripting/modules/minecraft/block/ScriptBlockCustomComponentReloadNewEventError.h index 4b35073141..8618d534e8 100644 --- a/src/mc/scripting/modules/minecraft/block/ScriptBlockCustomComponentReloadNewEventError.h +++ b/src/mc/scripting/modules/minecraft/block/ScriptBlockCustomComponentReloadNewEventError.h @@ -13,12 +13,6 @@ namespace Scripting { struct ErrorBinding; } namespace ScriptModuleMinecraft { struct ScriptBlockCustomComponentReloadNewEventError : public ::Scripting::Error { -public: - // prevent constructor by default - ScriptBlockCustomComponentReloadNewEventError& operator=(ScriptBlockCustomComponentReloadNewEventError const&); - ScriptBlockCustomComponentReloadNewEventError(ScriptBlockCustomComponentReloadNewEventError const&); - ScriptBlockCustomComponentReloadNewEventError(); - public: // member functions // NOLINTBEGIN diff --git a/src/mc/scripting/modules/minecraft/block/ScriptBlockCustomComponentReloadVersionError.h b/src/mc/scripting/modules/minecraft/block/ScriptBlockCustomComponentReloadVersionError.h index 319a978a8e..224d5da743 100644 --- a/src/mc/scripting/modules/minecraft/block/ScriptBlockCustomComponentReloadVersionError.h +++ b/src/mc/scripting/modules/minecraft/block/ScriptBlockCustomComponentReloadVersionError.h @@ -13,12 +13,6 @@ namespace Scripting { struct ErrorBinding; } namespace ScriptModuleMinecraft { struct ScriptBlockCustomComponentReloadVersionError : public ::Scripting::Error { -public: - // prevent constructor by default - ScriptBlockCustomComponentReloadVersionError& operator=(ScriptBlockCustomComponentReloadVersionError const&); - ScriptBlockCustomComponentReloadVersionError(ScriptBlockCustomComponentReloadVersionError const&); - ScriptBlockCustomComponentReloadVersionError(); - public: // member functions // NOLINTBEGIN diff --git a/src/mc/scripting/modules/minecraft/block/ScriptBlockStates.h b/src/mc/scripting/modules/minecraft/block/ScriptBlockStates.h index f38c99a8a2..5bb9c5f2f5 100644 --- a/src/mc/scripting/modules/minecraft/block/ScriptBlockStates.h +++ b/src/mc/scripting/modules/minecraft/block/ScriptBlockStates.h @@ -15,12 +15,6 @@ namespace Scripting { class WeakLifetimeScope; } namespace ScriptModuleMinecraft { class ScriptBlockStates { -public: - // prevent constructor by default - ScriptBlockStates& operator=(ScriptBlockStates const&); - ScriptBlockStates(ScriptBlockStates const&); - ScriptBlockStates(); - public: // static functions // NOLINTBEGIN diff --git a/src/mc/scripting/modules/minecraft/block/ScriptLocationInUnloadedChunkError.h b/src/mc/scripting/modules/minecraft/block/ScriptLocationInUnloadedChunkError.h index 4263034f0e..88f0f28cdf 100644 --- a/src/mc/scripting/modules/minecraft/block/ScriptLocationInUnloadedChunkError.h +++ b/src/mc/scripting/modules/minecraft/block/ScriptLocationInUnloadedChunkError.h @@ -9,12 +9,6 @@ namespace ScriptModuleMinecraft { struct ScriptLocationInUnloadedChunkError : public ::Scripting::Error { -public: - // prevent constructor by default - ScriptLocationInUnloadedChunkError& operator=(ScriptLocationInUnloadedChunkError const&); - ScriptLocationInUnloadedChunkError(ScriptLocationInUnloadedChunkError const&); - ScriptLocationInUnloadedChunkError(); - public: // static functions // NOLINTBEGIN diff --git a/src/mc/scripting/modules/minecraft/block/ScriptLocationOutOfWorldBoundsError.h b/src/mc/scripting/modules/minecraft/block/ScriptLocationOutOfWorldBoundsError.h index cecfc79a42..f8c3ec2382 100644 --- a/src/mc/scripting/modules/minecraft/block/ScriptLocationOutOfWorldBoundsError.h +++ b/src/mc/scripting/modules/minecraft/block/ScriptLocationOutOfWorldBoundsError.h @@ -14,12 +14,6 @@ class Vec3; namespace ScriptModuleMinecraft { struct ScriptLocationOutOfWorldBoundsError : public ::Scripting::Error { -public: - // prevent constructor by default - ScriptLocationOutOfWorldBoundsError& operator=(ScriptLocationOutOfWorldBoundsError const&); - ScriptLocationOutOfWorldBoundsError(ScriptLocationOutOfWorldBoundsError const&); - ScriptLocationOutOfWorldBoundsError(); - public: // member functions // NOLINTBEGIN diff --git a/src/mc/scripting/modules/minecraft/block/components/IScriptBlockComponentFactory.h b/src/mc/scripting/modules/minecraft/block/components/IScriptBlockComponentFactory.h index 583892e47d..a6027f87af 100644 --- a/src/mc/scripting/modules/minecraft/block/components/IScriptBlockComponentFactory.h +++ b/src/mc/scripting/modules/minecraft/block/components/IScriptBlockComponentFactory.h @@ -16,12 +16,6 @@ namespace Scripting { class WeakLifetimeScope; } namespace ScriptModuleMinecraft { class IScriptBlockComponentFactory { -public: - // prevent constructor by default - IScriptBlockComponentFactory& operator=(IScriptBlockComponentFactory const&); - IScriptBlockComponentFactory(IScriptBlockComponentFactory const&); - IScriptBlockComponentFactory(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/scripting/modules/minecraft/block/components/ScriptBlockComponents.h b/src/mc/scripting/modules/minecraft/block/components/ScriptBlockComponents.h index b2c0798232..b9e06c0899 100644 --- a/src/mc/scripting/modules/minecraft/block/components/ScriptBlockComponents.h +++ b/src/mc/scripting/modules/minecraft/block/components/ScriptBlockComponents.h @@ -11,12 +11,6 @@ namespace Scripting { class ModuleBindingBuilder; } namespace ScriptModuleMinecraft { class ScriptBlockComponents { -public: - // prevent constructor by default - ScriptBlockComponents& operator=(ScriptBlockComponents const&); - ScriptBlockComponents(ScriptBlockComponents const&); - ScriptBlockComponents(); - public: // static functions // NOLINTBEGIN diff --git a/src/mc/scripting/modules/minecraft/block/components/ScriptBlockFluidContainerComponent.h b/src/mc/scripting/modules/minecraft/block/components/ScriptBlockFluidContainerComponent.h index 0d7a214f40..d82c4bfced 100644 --- a/src/mc/scripting/modules/minecraft/block/components/ScriptBlockFluidContainerComponent.h +++ b/src/mc/scripting/modules/minecraft/block/components/ScriptBlockFluidContainerComponent.h @@ -22,12 +22,6 @@ namespace Scripting { struct Error; } namespace ScriptModuleMinecraft { class ScriptBlockFluidContainerComponent : public ::ScriptModuleMinecraft::BaseScriptBlockComponent { -public: - // prevent constructor by default - ScriptBlockFluidContainerComponent& operator=(ScriptBlockFluidContainerComponent const&); - ScriptBlockFluidContainerComponent(ScriptBlockFluidContainerComponent const&); - ScriptBlockFluidContainerComponent(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/scripting/modules/minecraft/block/components/ScriptBlockLavaContainerComponent.h b/src/mc/scripting/modules/minecraft/block/components/ScriptBlockLavaContainerComponent.h index 2688e3e098..5201e9eec7 100644 --- a/src/mc/scripting/modules/minecraft/block/components/ScriptBlockLavaContainerComponent.h +++ b/src/mc/scripting/modules/minecraft/block/components/ScriptBlockLavaContainerComponent.h @@ -8,12 +8,6 @@ namespace ScriptModuleMinecraft { class ScriptBlockLavaContainerComponent : public ::ScriptModuleMinecraft::BaseScriptBlockLiquidContainerComponent { -public: - // prevent constructor by default - ScriptBlockLavaContainerComponent& operator=(ScriptBlockLavaContainerComponent const&); - ScriptBlockLavaContainerComponent(ScriptBlockLavaContainerComponent const&); - ScriptBlockLavaContainerComponent(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/scripting/modules/minecraft/block/components/ScriptBlockPistonState.h b/src/mc/scripting/modules/minecraft/block/components/ScriptBlockPistonState.h index b5ed528f5d..f61247654f 100644 --- a/src/mc/scripting/modules/minecraft/block/components/ScriptBlockPistonState.h +++ b/src/mc/scripting/modules/minecraft/block/components/ScriptBlockPistonState.h @@ -9,12 +9,6 @@ namespace ScriptModuleMinecraft { struct ScriptBlockPistonState { -public: - // prevent constructor by default - ScriptBlockPistonState& operator=(ScriptBlockPistonState const&); - ScriptBlockPistonState(ScriptBlockPistonState const&); - ScriptBlockPistonState(); - public: // static functions // NOLINTBEGIN diff --git a/src/mc/scripting/modules/minecraft/block/components/ScriptBlockPotionContainerComponent.h b/src/mc/scripting/modules/minecraft/block/components/ScriptBlockPotionContainerComponent.h index b723a86376..c3227aac07 100644 --- a/src/mc/scripting/modules/minecraft/block/components/ScriptBlockPotionContainerComponent.h +++ b/src/mc/scripting/modules/minecraft/block/components/ScriptBlockPotionContainerComponent.h @@ -15,12 +15,6 @@ namespace ScriptModuleMinecraft { class ScriptItemStack; } namespace ScriptModuleMinecraft { class ScriptBlockPotionContainerComponent : public ::ScriptModuleMinecraft::BaseScriptBlockLiquidContainerComponent { -public: - // prevent constructor by default - ScriptBlockPotionContainerComponent& operator=(ScriptBlockPotionContainerComponent const&); - ScriptBlockPotionContainerComponent(ScriptBlockPotionContainerComponent const&); - ScriptBlockPotionContainerComponent(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/scripting/modules/minecraft/block/components/ScriptBlockRecordPlayerComponent.h b/src/mc/scripting/modules/minecraft/block/components/ScriptBlockRecordPlayerComponent.h index c58758c324..5300050cc1 100644 --- a/src/mc/scripting/modules/minecraft/block/components/ScriptBlockRecordPlayerComponent.h +++ b/src/mc/scripting/modules/minecraft/block/components/ScriptBlockRecordPlayerComponent.h @@ -19,12 +19,6 @@ namespace ScriptModuleMinecraft { class ScriptItemType; } namespace ScriptModuleMinecraft { class ScriptBlockRecordPlayerComponent : public ::ScriptModuleMinecraft::BaseScriptBlockComponent { -public: - // prevent constructor by default - ScriptBlockRecordPlayerComponent& operator=(ScriptBlockRecordPlayerComponent const&); - ScriptBlockRecordPlayerComponent(ScriptBlockRecordPlayerComponent const&); - ScriptBlockRecordPlayerComponent(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/scripting/modules/minecraft/block/components/ScriptBlockRecordPlayerComponentV010.h b/src/mc/scripting/modules/minecraft/block/components/ScriptBlockRecordPlayerComponentV010.h index 877e9a7907..ecd8cc7503 100644 --- a/src/mc/scripting/modules/minecraft/block/components/ScriptBlockRecordPlayerComponentV010.h +++ b/src/mc/scripting/modules/minecraft/block/components/ScriptBlockRecordPlayerComponentV010.h @@ -16,12 +16,6 @@ namespace ScriptModuleMinecraft { class ScriptItemType; } namespace ScriptModuleMinecraft { class ScriptBlockRecordPlayerComponentV010 : public ::ScriptModuleMinecraft::BaseScriptBlockComponent { -public: - // prevent constructor by default - ScriptBlockRecordPlayerComponentV010& operator=(ScriptBlockRecordPlayerComponentV010 const&); - ScriptBlockRecordPlayerComponentV010(ScriptBlockRecordPlayerComponentV010 const&); - ScriptBlockRecordPlayerComponentV010(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/scripting/modules/minecraft/block/components/ScriptBlockSignComponent.h b/src/mc/scripting/modules/minecraft/block/components/ScriptBlockSignComponent.h index 03dec1b97b..76b47eb553 100644 --- a/src/mc/scripting/modules/minecraft/block/components/ScriptBlockSignComponent.h +++ b/src/mc/scripting/modules/minecraft/block/components/ScriptBlockSignComponent.h @@ -20,12 +20,6 @@ namespace ScriptModuleMinecraft { struct ScriptRawTextInterface; } namespace ScriptModuleMinecraft { class ScriptBlockSignComponent : public ::ScriptModuleMinecraft::BaseScriptBlockComponent { -public: - // prevent constructor by default - ScriptBlockSignComponent& operator=(ScriptBlockSignComponent const&); - ScriptBlockSignComponent(ScriptBlockSignComponent const&); - ScriptBlockSignComponent(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/scripting/modules/minecraft/block/components/ScriptBlockSnowContainerComponent.h b/src/mc/scripting/modules/minecraft/block/components/ScriptBlockSnowContainerComponent.h index d47ee00dbd..4bd48b3fd8 100644 --- a/src/mc/scripting/modules/minecraft/block/components/ScriptBlockSnowContainerComponent.h +++ b/src/mc/scripting/modules/minecraft/block/components/ScriptBlockSnowContainerComponent.h @@ -8,12 +8,6 @@ namespace ScriptModuleMinecraft { class ScriptBlockSnowContainerComponent : public ::ScriptModuleMinecraft::BaseScriptBlockLiquidContainerComponent { -public: - // prevent constructor by default - ScriptBlockSnowContainerComponent& operator=(ScriptBlockSnowContainerComponent const&); - ScriptBlockSnowContainerComponent(ScriptBlockSnowContainerComponent const&); - ScriptBlockSnowContainerComponent(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/scripting/modules/minecraft/block/components/ScriptBlockWaterContainerComponent.h b/src/mc/scripting/modules/minecraft/block/components/ScriptBlockWaterContainerComponent.h index bcce2e5065..d6a854f247 100644 --- a/src/mc/scripting/modules/minecraft/block/components/ScriptBlockWaterContainerComponent.h +++ b/src/mc/scripting/modules/minecraft/block/components/ScriptBlockWaterContainerComponent.h @@ -15,12 +15,6 @@ namespace ScriptModuleMinecraft { class ScriptItemType; } namespace ScriptModuleMinecraft { class ScriptBlockWaterContainerComponent : public ::ScriptModuleMinecraft::BaseScriptBlockLiquidContainerComponent { -public: - // prevent constructor by default - ScriptBlockWaterContainerComponent& operator=(ScriptBlockWaterContainerComponent const&); - ScriptBlockWaterContainerComponent(ScriptBlockWaterContainerComponent const&); - ScriptBlockWaterContainerComponent(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/scripting/modules/minecraft/block/components/ScriptLiquidContainer.h b/src/mc/scripting/modules/minecraft/block/components/ScriptLiquidContainer.h index b830aeb188..f4b3021c9b 100644 --- a/src/mc/scripting/modules/minecraft/block/components/ScriptLiquidContainer.h +++ b/src/mc/scripting/modules/minecraft/block/components/ScriptLiquidContainer.h @@ -8,12 +8,6 @@ namespace ScriptModuleMinecraft { class ScriptLiquidContainer { -public: - // prevent constructor by default - ScriptLiquidContainer& operator=(ScriptLiquidContainer const&); - ScriptLiquidContainer(ScriptLiquidContainer const&); - ScriptLiquidContainer(); - public: // static functions // NOLINTBEGIN diff --git a/src/mc/scripting/modules/minecraft/block/components/ScriptSignTextSide.h b/src/mc/scripting/modules/minecraft/block/components/ScriptSignTextSide.h index f9c7895d6d..53b09769e1 100644 --- a/src/mc/scripting/modules/minecraft/block/components/ScriptSignTextSide.h +++ b/src/mc/scripting/modules/minecraft/block/components/ScriptSignTextSide.h @@ -9,12 +9,6 @@ namespace ScriptModuleMinecraft { class ScriptSignTextSide { -public: - // prevent constructor by default - ScriptSignTextSide& operator=(ScriptSignTextSide const&); - ScriptSignTextSide(ScriptSignTextSide const&); - ScriptSignTextSide(); - public: // static functions // NOLINTBEGIN diff --git a/src/mc/scripting/modules/minecraft/camera/ScriptCameraEaseBindings.h b/src/mc/scripting/modules/minecraft/camera/ScriptCameraEaseBindings.h index 066b462499..1aa4af65da 100644 --- a/src/mc/scripting/modules/minecraft/camera/ScriptCameraEaseBindings.h +++ b/src/mc/scripting/modules/minecraft/camera/ScriptCameraEaseBindings.h @@ -9,12 +9,6 @@ namespace ScriptModuleMinecraft { struct ScriptCameraEaseBindings { -public: - // prevent constructor by default - ScriptCameraEaseBindings& operator=(ScriptCameraEaseBindings const&); - ScriptCameraEaseBindings(ScriptCameraEaseBindings const&); - ScriptCameraEaseBindings(); - public: // static functions // NOLINTBEGIN diff --git a/src/mc/scripting/modules/minecraft/commands/ScriptActorQuery.h b/src/mc/scripting/modules/minecraft/commands/ScriptActorQuery.h index 7775285da9..9601cba2f8 100644 --- a/src/mc/scripting/modules/minecraft/commands/ScriptActorQuery.h +++ b/src/mc/scripting/modules/minecraft/commands/ScriptActorQuery.h @@ -25,12 +25,6 @@ namespace Scripting { struct Error; } namespace ScriptModuleMinecraft { class ScriptActorQuery { -public: - // prevent constructor by default - ScriptActorQuery& operator=(ScriptActorQuery const&); - ScriptActorQuery(ScriptActorQuery const&); - ScriptActorQuery(); - public: // static functions // NOLINTBEGIN diff --git a/src/mc/scripting/modules/minecraft/commands/ScriptCommandError.h b/src/mc/scripting/modules/minecraft/commands/ScriptCommandError.h index 4e2b2eadf3..5dceb1a638 100644 --- a/src/mc/scripting/modules/minecraft/commands/ScriptCommandError.h +++ b/src/mc/scripting/modules/minecraft/commands/ScriptCommandError.h @@ -14,12 +14,6 @@ struct MCRESULT; namespace ScriptModuleMinecraft { struct ScriptCommandError : public ::Scripting::Error { -public: - // prevent constructor by default - ScriptCommandError& operator=(ScriptCommandError const&); - ScriptCommandError(ScriptCommandError const&); - ScriptCommandError(); - public: // member functions // NOLINTBEGIN diff --git a/src/mc/scripting/modules/minecraft/components/ECSScriptActorComponent.h b/src/mc/scripting/modules/minecraft/components/ECSScriptActorComponent.h index 01aacdb5a7..8bead82479 100644 --- a/src/mc/scripting/modules/minecraft/components/ECSScriptActorComponent.h +++ b/src/mc/scripting/modules/minecraft/components/ECSScriptActorComponent.h @@ -5,12 +5,6 @@ namespace ScriptModuleMinecraft { template -class ECSScriptActorComponent { -public: - // prevent constructor by default - ECSScriptActorComponent& operator=(ECSScriptActorComponent const&); - ECSScriptActorComponent(ECSScriptActorComponent const&); - ECSScriptActorComponent(); -}; +class ECSScriptActorComponent {}; } // namespace ScriptModuleMinecraft diff --git a/src/mc/scripting/modules/minecraft/components/IComponentFactory.h b/src/mc/scripting/modules/minecraft/components/IComponentFactory.h index d892adc013..db7687a591 100644 --- a/src/mc/scripting/modules/minecraft/components/IComponentFactory.h +++ b/src/mc/scripting/modules/minecraft/components/IComponentFactory.h @@ -15,12 +15,6 @@ namespace Scripting { class WeakLifetimeScope; } namespace ScriptModuleMinecraft { class IComponentFactory { -public: - // prevent constructor by default - IComponentFactory& operator=(IComponentFactory const&); - IComponentFactory(IComponentFactory const&); - IComponentFactory(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/scripting/modules/minecraft/components/ScriptAddRiderComponent.h b/src/mc/scripting/modules/minecraft/components/ScriptAddRiderComponent.h index f4d5492a43..fea4950235 100644 --- a/src/mc/scripting/modules/minecraft/components/ScriptAddRiderComponent.h +++ b/src/mc/scripting/modules/minecraft/components/ScriptAddRiderComponent.h @@ -20,12 +20,6 @@ namespace ScriptModuleMinecraft { class ScriptAddRiderComponent : public ::ScriptModuleMinecraft::ECSScriptActorComponent<::AddRiderComponent, ::AddRiderDefinition> { -public: - // prevent constructor by default - ScriptAddRiderComponent& operator=(ScriptAddRiderComponent const&); - ScriptAddRiderComponent(ScriptAddRiderComponent const&); - ScriptAddRiderComponent(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/scripting/modules/minecraft/components/ScriptAgeableComponent.h b/src/mc/scripting/modules/minecraft/components/ScriptAgeableComponent.h index b8dd318312..a0c58f0fa3 100644 --- a/src/mc/scripting/modules/minecraft/components/ScriptAgeableComponent.h +++ b/src/mc/scripting/modules/minecraft/components/ScriptAgeableComponent.h @@ -22,12 +22,6 @@ namespace ScriptModuleMinecraft { class ScriptAgeableComponent : public ::ScriptModuleMinecraft::ECSScriptActorComponent<::AgeableComponent, ::AgeableDefinition> { -public: - // prevent constructor by default - ScriptAgeableComponent& operator=(ScriptAgeableComponent const&); - ScriptAgeableComponent(ScriptAgeableComponent const&); - ScriptAgeableComponent(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/scripting/modules/minecraft/components/ScriptBreathableComponent.h b/src/mc/scripting/modules/minecraft/components/ScriptBreathableComponent.h index 778477f613..3ec2df69df 100644 --- a/src/mc/scripting/modules/minecraft/components/ScriptBreathableComponent.h +++ b/src/mc/scripting/modules/minecraft/components/ScriptBreathableComponent.h @@ -25,12 +25,6 @@ namespace ScriptModuleMinecraft { class ScriptBreathableComponent : public ::ScriptModuleMinecraft::ECSScriptActorComponent<::BreathableComponent, ::BreathableDefinition> { -public: - // prevent constructor by default - ScriptBreathableComponent& operator=(ScriptBreathableComponent const&); - ScriptBreathableComponent(ScriptBreathableComponent const&); - ScriptBreathableComponent(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/scripting/modules/minecraft/components/ScriptCursorInventoryComponent.h b/src/mc/scripting/modules/minecraft/components/ScriptCursorInventoryComponent.h index 81f8f7312c..16c0dea03d 100644 --- a/src/mc/scripting/modules/minecraft/components/ScriptCursorInventoryComponent.h +++ b/src/mc/scripting/modules/minecraft/components/ScriptCursorInventoryComponent.h @@ -18,12 +18,6 @@ namespace ScriptModuleMinecraft { class ScriptItemStack; } namespace ScriptModuleMinecraft { class ScriptCursorInventoryComponent : public ::ScriptModuleMinecraft::ScriptActorComponent { -public: - // prevent constructor by default - ScriptCursorInventoryComponent& operator=(ScriptCursorInventoryComponent const&); - ScriptCursorInventoryComponent(ScriptCursorInventoryComponent const&); - ScriptCursorInventoryComponent(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/scripting/modules/minecraft/components/ScriptCursorInventoryComponentFactory.h b/src/mc/scripting/modules/minecraft/components/ScriptCursorInventoryComponentFactory.h index 268a7bc205..973382adc0 100644 --- a/src/mc/scripting/modules/minecraft/components/ScriptCursorInventoryComponentFactory.h +++ b/src/mc/scripting/modules/minecraft/components/ScriptCursorInventoryComponentFactory.h @@ -16,12 +16,6 @@ namespace Scripting { class WeakLifetimeScope; } namespace ScriptModuleMinecraft { class ScriptCursorInventoryComponentFactory : public ::ScriptModuleMinecraft::IComponentFactory { -public: - // prevent constructor by default - ScriptCursorInventoryComponentFactory& operator=(ScriptCursorInventoryComponentFactory const&); - ScriptCursorInventoryComponentFactory(ScriptCursorInventoryComponentFactory const&); - ScriptCursorInventoryComponentFactory(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/scripting/modules/minecraft/components/ScriptEquippableComponent.h b/src/mc/scripting/modules/minecraft/components/ScriptEquippableComponent.h index 06c5f782ee..f16682e190 100644 --- a/src/mc/scripting/modules/minecraft/components/ScriptEquippableComponent.h +++ b/src/mc/scripting/modules/minecraft/components/ScriptEquippableComponent.h @@ -19,12 +19,6 @@ namespace ScriptModuleMinecraft { class ScriptItemStack; } namespace ScriptModuleMinecraft { class ScriptEquippableComponent : public ::ScriptModuleMinecraft::ScriptActorComponent { -public: - // prevent constructor by default - ScriptEquippableComponent& operator=(ScriptEquippableComponent const&); - ScriptEquippableComponent(ScriptEquippableComponent const&); - ScriptEquippableComponent(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/scripting/modules/minecraft/components/ScriptEquippableComponentFactory.h b/src/mc/scripting/modules/minecraft/components/ScriptEquippableComponentFactory.h index aaf3e54193..126a704c84 100644 --- a/src/mc/scripting/modules/minecraft/components/ScriptEquippableComponentFactory.h +++ b/src/mc/scripting/modules/minecraft/components/ScriptEquippableComponentFactory.h @@ -16,12 +16,6 @@ namespace Scripting { class WeakLifetimeScope; } namespace ScriptModuleMinecraft { class ScriptEquippableComponentFactory : public ::ScriptModuleMinecraft::IComponentFactory { -public: - // prevent constructor by default - ScriptEquippableComponentFactory& operator=(ScriptEquippableComponentFactory const&); - ScriptEquippableComponentFactory(ScriptEquippableComponentFactory const&); - ScriptEquippableComponentFactory(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/scripting/modules/minecraft/components/ScriptHealableComponent.h b/src/mc/scripting/modules/minecraft/components/ScriptHealableComponent.h index a57f6216f2..932c66d63a 100644 --- a/src/mc/scripting/modules/minecraft/components/ScriptHealableComponent.h +++ b/src/mc/scripting/modules/minecraft/components/ScriptHealableComponent.h @@ -22,12 +22,6 @@ namespace ScriptModuleMinecraft { class ScriptHealableComponent : public ::ScriptModuleMinecraft::ECSScriptActorComponent<::HealableComponent, ::HealableDefinition> { -public: - // prevent constructor by default - ScriptHealableComponent& operator=(ScriptHealableComponent const&); - ScriptHealableComponent(ScriptHealableComponent const&); - ScriptHealableComponent(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/scripting/modules/minecraft/components/ScriptHealthComponent.h b/src/mc/scripting/modules/minecraft/components/ScriptHealthComponent.h index 06d4df2fa1..915dcf7a28 100644 --- a/src/mc/scripting/modules/minecraft/components/ScriptHealthComponent.h +++ b/src/mc/scripting/modules/minecraft/components/ScriptHealthComponent.h @@ -16,12 +16,6 @@ namespace ScriptModuleMinecraft { class ScriptComponentTypeEnumBuilder; } namespace ScriptModuleMinecraft { class ScriptHealthComponent : public ::ScriptModuleMinecraft::AttributeScriptActorComponent { -public: - // prevent constructor by default - ScriptHealthComponent& operator=(ScriptHealthComponent const&); - ScriptHealthComponent(ScriptHealthComponent const&); - ScriptHealthComponent(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/scripting/modules/minecraft/components/ScriptHealthComponentFactory.h b/src/mc/scripting/modules/minecraft/components/ScriptHealthComponentFactory.h index fe429e3f63..6a1ba2f691 100644 --- a/src/mc/scripting/modules/minecraft/components/ScriptHealthComponentFactory.h +++ b/src/mc/scripting/modules/minecraft/components/ScriptHealthComponentFactory.h @@ -16,12 +16,6 @@ namespace Scripting { class WeakLifetimeScope; } namespace ScriptModuleMinecraft { class ScriptHealthComponentFactory : public ::ScriptModuleMinecraft::IComponentFactory { -public: - // prevent constructor by default - ScriptHealthComponentFactory& operator=(ScriptHealthComponentFactory const&); - ScriptHealthComponentFactory(ScriptHealthComponentFactory const&); - ScriptHealthComponentFactory(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/scripting/modules/minecraft/components/ScriptInventoryComponentFactory.h b/src/mc/scripting/modules/minecraft/components/ScriptInventoryComponentFactory.h index 836d1c3a10..38ffe12c66 100644 --- a/src/mc/scripting/modules/minecraft/components/ScriptInventoryComponentFactory.h +++ b/src/mc/scripting/modules/minecraft/components/ScriptInventoryComponentFactory.h @@ -16,12 +16,6 @@ namespace Scripting { class WeakLifetimeScope; } namespace ScriptModuleMinecraft { class ScriptInventoryComponentFactory : public ::ScriptModuleMinecraft::IComponentFactory { -public: - // prevent constructor by default - ScriptInventoryComponentFactory& operator=(ScriptInventoryComponentFactory const&); - ScriptInventoryComponentFactory(ScriptInventoryComponentFactory const&); - ScriptInventoryComponentFactory(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/scripting/modules/minecraft/components/ScriptItemActorComponent.h b/src/mc/scripting/modules/minecraft/components/ScriptItemActorComponent.h index 0cb3cc697d..5d2a789c7b 100644 --- a/src/mc/scripting/modules/minecraft/components/ScriptItemActorComponent.h +++ b/src/mc/scripting/modules/minecraft/components/ScriptItemActorComponent.h @@ -17,12 +17,6 @@ namespace ScriptModuleMinecraft { class ScriptItemStack; } namespace ScriptModuleMinecraft { class ScriptItemActorComponent : public ::ScriptModuleMinecraft::ScriptActorComponent { -public: - // prevent constructor by default - ScriptItemActorComponent& operator=(ScriptItemActorComponent const&); - ScriptItemActorComponent(ScriptItemActorComponent const&); - ScriptItemActorComponent(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/scripting/modules/minecraft/components/ScriptItemActorComponentFactory.h b/src/mc/scripting/modules/minecraft/components/ScriptItemActorComponentFactory.h index 294ac2b8c0..21e1bc0254 100644 --- a/src/mc/scripting/modules/minecraft/components/ScriptItemActorComponentFactory.h +++ b/src/mc/scripting/modules/minecraft/components/ScriptItemActorComponentFactory.h @@ -16,12 +16,6 @@ namespace Scripting { class WeakLifetimeScope; } namespace ScriptModuleMinecraft { class ScriptItemActorComponentFactory : public ::ScriptModuleMinecraft::IComponentFactory { -public: - // prevent constructor by default - ScriptItemActorComponentFactory& operator=(ScriptItemActorComponentFactory const&); - ScriptItemActorComponentFactory(ScriptItemActorComponentFactory const&); - ScriptItemActorComponentFactory(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/scripting/modules/minecraft/components/ScriptLavaMovementComponent.h b/src/mc/scripting/modules/minecraft/components/ScriptLavaMovementComponent.h index 6da4c21853..23ab2067ff 100644 --- a/src/mc/scripting/modules/minecraft/components/ScriptLavaMovementComponent.h +++ b/src/mc/scripting/modules/minecraft/components/ScriptLavaMovementComponent.h @@ -14,12 +14,6 @@ namespace ScriptModuleMinecraft { class ScriptComponentTypeEnumBuilder; } namespace ScriptModuleMinecraft { class ScriptLavaMovementComponent : public ::ScriptModuleMinecraft::AttributeScriptActorComponent { -public: - // prevent constructor by default - ScriptLavaMovementComponent& operator=(ScriptLavaMovementComponent const&); - ScriptLavaMovementComponent(ScriptLavaMovementComponent const&); - ScriptLavaMovementComponent(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/scripting/modules/minecraft/components/ScriptLavaMovementComponentFactory.h b/src/mc/scripting/modules/minecraft/components/ScriptLavaMovementComponentFactory.h index b0f94ef616..2c9b7d81e2 100644 --- a/src/mc/scripting/modules/minecraft/components/ScriptLavaMovementComponentFactory.h +++ b/src/mc/scripting/modules/minecraft/components/ScriptLavaMovementComponentFactory.h @@ -16,12 +16,6 @@ namespace Scripting { class WeakLifetimeScope; } namespace ScriptModuleMinecraft { class ScriptLavaMovementComponentFactory : public ::ScriptModuleMinecraft::IComponentFactory { -public: - // prevent constructor by default - ScriptLavaMovementComponentFactory& operator=(ScriptLavaMovementComponentFactory const&); - ScriptLavaMovementComponentFactory(ScriptLavaMovementComponentFactory const&); - ScriptLavaMovementComponentFactory(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/scripting/modules/minecraft/components/ScriptLeashableComponent.h b/src/mc/scripting/modules/minecraft/components/ScriptLeashableComponent.h index 5bbc061d9e..9f9f73afd0 100644 --- a/src/mc/scripting/modules/minecraft/components/ScriptLeashableComponent.h +++ b/src/mc/scripting/modules/minecraft/components/ScriptLeashableComponent.h @@ -23,12 +23,6 @@ namespace ScriptModuleMinecraft { class ScriptLeashableComponent : public ::ScriptModuleMinecraft::ECSScriptActorComponent<::LeashableComponent, ::LeashableDefinition> { -public: - // prevent constructor by default - ScriptLeashableComponent& operator=(ScriptLeashableComponent const&); - ScriptLeashableComponent(ScriptLeashableComponent const&); - ScriptLeashableComponent(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/scripting/modules/minecraft/components/ScriptMountTamingComponent.h b/src/mc/scripting/modules/minecraft/components/ScriptMountTamingComponent.h index 3ab4ecb237..a1facf2207 100644 --- a/src/mc/scripting/modules/minecraft/components/ScriptMountTamingComponent.h +++ b/src/mc/scripting/modules/minecraft/components/ScriptMountTamingComponent.h @@ -23,12 +23,6 @@ namespace ScriptModuleMinecraft { class ScriptMountTamingComponent : public ::ScriptModuleMinecraft::ECSScriptActorComponent<::MountTamingComponent, ::MountTameableDefinition> { -public: - // prevent constructor by default - ScriptMountTamingComponent& operator=(ScriptMountTamingComponent const&); - ScriptMountTamingComponent(ScriptMountTamingComponent const&); - ScriptMountTamingComponent(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/scripting/modules/minecraft/components/ScriptMovementAmphibiousComponent.h b/src/mc/scripting/modules/minecraft/components/ScriptMovementAmphibiousComponent.h index 9728386ae2..78480a3468 100644 --- a/src/mc/scripting/modules/minecraft/components/ScriptMovementAmphibiousComponent.h +++ b/src/mc/scripting/modules/minecraft/components/ScriptMovementAmphibiousComponent.h @@ -14,12 +14,6 @@ namespace ScriptModuleMinecraft { class ScriptComponentTypeEnumBuilder; } namespace ScriptModuleMinecraft { class ScriptMovementAmphibiousComponent : public ::ScriptModuleMinecraft::MovementScriptActorComponent { -public: - // prevent constructor by default - ScriptMovementAmphibiousComponent& operator=(ScriptMovementAmphibiousComponent const&); - ScriptMovementAmphibiousComponent(ScriptMovementAmphibiousComponent const&); - ScriptMovementAmphibiousComponent(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/scripting/modules/minecraft/components/ScriptMovementAmphibiousComponentFactory.h b/src/mc/scripting/modules/minecraft/components/ScriptMovementAmphibiousComponentFactory.h index 3c06283e33..a14885f521 100644 --- a/src/mc/scripting/modules/minecraft/components/ScriptMovementAmphibiousComponentFactory.h +++ b/src/mc/scripting/modules/minecraft/components/ScriptMovementAmphibiousComponentFactory.h @@ -16,12 +16,6 @@ namespace Scripting { class WeakLifetimeScope; } namespace ScriptModuleMinecraft { class ScriptMovementAmphibiousComponentFactory : public ::ScriptModuleMinecraft::IComponentFactory { -public: - // prevent constructor by default - ScriptMovementAmphibiousComponentFactory& operator=(ScriptMovementAmphibiousComponentFactory const&); - ScriptMovementAmphibiousComponentFactory(ScriptMovementAmphibiousComponentFactory const&); - ScriptMovementAmphibiousComponentFactory(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/scripting/modules/minecraft/components/ScriptMovementBasicComponent.h b/src/mc/scripting/modules/minecraft/components/ScriptMovementBasicComponent.h index 4c95a10ad5..9866520bd8 100644 --- a/src/mc/scripting/modules/minecraft/components/ScriptMovementBasicComponent.h +++ b/src/mc/scripting/modules/minecraft/components/ScriptMovementBasicComponent.h @@ -14,12 +14,6 @@ namespace ScriptModuleMinecraft { class ScriptComponentTypeEnumBuilder; } namespace ScriptModuleMinecraft { class ScriptMovementBasicComponent : public ::ScriptModuleMinecraft::MovementScriptActorComponent { -public: - // prevent constructor by default - ScriptMovementBasicComponent& operator=(ScriptMovementBasicComponent const&); - ScriptMovementBasicComponent(ScriptMovementBasicComponent const&); - ScriptMovementBasicComponent(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/scripting/modules/minecraft/components/ScriptMovementBasicComponentFactory.h b/src/mc/scripting/modules/minecraft/components/ScriptMovementBasicComponentFactory.h index 960cf72b9b..96ac2e4d71 100644 --- a/src/mc/scripting/modules/minecraft/components/ScriptMovementBasicComponentFactory.h +++ b/src/mc/scripting/modules/minecraft/components/ScriptMovementBasicComponentFactory.h @@ -16,12 +16,6 @@ namespace Scripting { class WeakLifetimeScope; } namespace ScriptModuleMinecraft { class ScriptMovementBasicComponentFactory : public ::ScriptModuleMinecraft::IComponentFactory { -public: - // prevent constructor by default - ScriptMovementBasicComponentFactory& operator=(ScriptMovementBasicComponentFactory const&); - ScriptMovementBasicComponentFactory(ScriptMovementBasicComponentFactory const&); - ScriptMovementBasicComponentFactory(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/scripting/modules/minecraft/components/ScriptMovementComponent.h b/src/mc/scripting/modules/minecraft/components/ScriptMovementComponent.h index e9342e09de..5372105b01 100644 --- a/src/mc/scripting/modules/minecraft/components/ScriptMovementComponent.h +++ b/src/mc/scripting/modules/minecraft/components/ScriptMovementComponent.h @@ -14,12 +14,6 @@ namespace ScriptModuleMinecraft { class ScriptComponentTypeEnumBuilder; } namespace ScriptModuleMinecraft { class ScriptMovementComponent : public ::ScriptModuleMinecraft::AttributeScriptActorComponent { -public: - // prevent constructor by default - ScriptMovementComponent& operator=(ScriptMovementComponent const&); - ScriptMovementComponent(ScriptMovementComponent const&); - ScriptMovementComponent(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/scripting/modules/minecraft/components/ScriptMovementComponentFactory.h b/src/mc/scripting/modules/minecraft/components/ScriptMovementComponentFactory.h index ecc580007e..93508cb6d2 100644 --- a/src/mc/scripting/modules/minecraft/components/ScriptMovementComponentFactory.h +++ b/src/mc/scripting/modules/minecraft/components/ScriptMovementComponentFactory.h @@ -16,12 +16,6 @@ namespace Scripting { class WeakLifetimeScope; } namespace ScriptModuleMinecraft { class ScriptMovementComponentFactory : public ::ScriptModuleMinecraft::IComponentFactory { -public: - // prevent constructor by default - ScriptMovementComponentFactory& operator=(ScriptMovementComponentFactory const&); - ScriptMovementComponentFactory(ScriptMovementComponentFactory const&); - ScriptMovementComponentFactory(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/scripting/modules/minecraft/components/ScriptMovementFlyComponent.h b/src/mc/scripting/modules/minecraft/components/ScriptMovementFlyComponent.h index b167ddf4be..9f63a15a47 100644 --- a/src/mc/scripting/modules/minecraft/components/ScriptMovementFlyComponent.h +++ b/src/mc/scripting/modules/minecraft/components/ScriptMovementFlyComponent.h @@ -14,12 +14,6 @@ namespace ScriptModuleMinecraft { class ScriptComponentTypeEnumBuilder; } namespace ScriptModuleMinecraft { class ScriptMovementFlyComponent : public ::ScriptModuleMinecraft::MovementScriptActorComponent { -public: - // prevent constructor by default - ScriptMovementFlyComponent& operator=(ScriptMovementFlyComponent const&); - ScriptMovementFlyComponent(ScriptMovementFlyComponent const&); - ScriptMovementFlyComponent(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/scripting/modules/minecraft/components/ScriptMovementFlyComponentFactory.h b/src/mc/scripting/modules/minecraft/components/ScriptMovementFlyComponentFactory.h index 7b0ee00b88..7082738647 100644 --- a/src/mc/scripting/modules/minecraft/components/ScriptMovementFlyComponentFactory.h +++ b/src/mc/scripting/modules/minecraft/components/ScriptMovementFlyComponentFactory.h @@ -16,12 +16,6 @@ namespace Scripting { class WeakLifetimeScope; } namespace ScriptModuleMinecraft { class ScriptMovementFlyComponentFactory : public ::ScriptModuleMinecraft::IComponentFactory { -public: - // prevent constructor by default - ScriptMovementFlyComponentFactory& operator=(ScriptMovementFlyComponentFactory const&); - ScriptMovementFlyComponentFactory(ScriptMovementFlyComponentFactory const&); - ScriptMovementFlyComponentFactory(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/scripting/modules/minecraft/components/ScriptMovementGenericComponent.h b/src/mc/scripting/modules/minecraft/components/ScriptMovementGenericComponent.h index 1b2851c478..e547288307 100644 --- a/src/mc/scripting/modules/minecraft/components/ScriptMovementGenericComponent.h +++ b/src/mc/scripting/modules/minecraft/components/ScriptMovementGenericComponent.h @@ -14,12 +14,6 @@ namespace ScriptModuleMinecraft { class ScriptComponentTypeEnumBuilder; } namespace ScriptModuleMinecraft { class ScriptMovementGenericComponent : public ::ScriptModuleMinecraft::MovementScriptActorComponent { -public: - // prevent constructor by default - ScriptMovementGenericComponent& operator=(ScriptMovementGenericComponent const&); - ScriptMovementGenericComponent(ScriptMovementGenericComponent const&); - ScriptMovementGenericComponent(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/scripting/modules/minecraft/components/ScriptMovementGenericComponentFactory.h b/src/mc/scripting/modules/minecraft/components/ScriptMovementGenericComponentFactory.h index 8c4e1716c9..9b312d95fd 100644 --- a/src/mc/scripting/modules/minecraft/components/ScriptMovementGenericComponentFactory.h +++ b/src/mc/scripting/modules/minecraft/components/ScriptMovementGenericComponentFactory.h @@ -16,12 +16,6 @@ namespace Scripting { class WeakLifetimeScope; } namespace ScriptModuleMinecraft { class ScriptMovementGenericComponentFactory : public ::ScriptModuleMinecraft::IComponentFactory { -public: - // prevent constructor by default - ScriptMovementGenericComponentFactory& operator=(ScriptMovementGenericComponentFactory const&); - ScriptMovementGenericComponentFactory(ScriptMovementGenericComponentFactory const&); - ScriptMovementGenericComponentFactory(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/scripting/modules/minecraft/components/ScriptMovementGlideComponent.h b/src/mc/scripting/modules/minecraft/components/ScriptMovementGlideComponent.h index c238bd7a92..beecb76a61 100644 --- a/src/mc/scripting/modules/minecraft/components/ScriptMovementGlideComponent.h +++ b/src/mc/scripting/modules/minecraft/components/ScriptMovementGlideComponent.h @@ -15,12 +15,6 @@ namespace ScriptModuleMinecraft { class ScriptComponentTypeEnumBuilder; } namespace ScriptModuleMinecraft { class ScriptMovementGlideComponent : public ::ScriptModuleMinecraft::MovementScriptActorComponent { -public: - // prevent constructor by default - ScriptMovementGlideComponent& operator=(ScriptMovementGlideComponent const&); - ScriptMovementGlideComponent(ScriptMovementGlideComponent const&); - ScriptMovementGlideComponent(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/scripting/modules/minecraft/components/ScriptMovementGlideComponentFactory.h b/src/mc/scripting/modules/minecraft/components/ScriptMovementGlideComponentFactory.h index f994eb04e5..debdc2d40d 100644 --- a/src/mc/scripting/modules/minecraft/components/ScriptMovementGlideComponentFactory.h +++ b/src/mc/scripting/modules/minecraft/components/ScriptMovementGlideComponentFactory.h @@ -16,12 +16,6 @@ namespace Scripting { class WeakLifetimeScope; } namespace ScriptModuleMinecraft { class ScriptMovementGlideComponentFactory : public ::ScriptModuleMinecraft::IComponentFactory { -public: - // prevent constructor by default - ScriptMovementGlideComponentFactory& operator=(ScriptMovementGlideComponentFactory const&); - ScriptMovementGlideComponentFactory(ScriptMovementGlideComponentFactory const&); - ScriptMovementGlideComponentFactory(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/scripting/modules/minecraft/components/ScriptMovementHoverComponent.h b/src/mc/scripting/modules/minecraft/components/ScriptMovementHoverComponent.h index d275d5d6e3..9ef5aba95b 100644 --- a/src/mc/scripting/modules/minecraft/components/ScriptMovementHoverComponent.h +++ b/src/mc/scripting/modules/minecraft/components/ScriptMovementHoverComponent.h @@ -14,12 +14,6 @@ namespace ScriptModuleMinecraft { class ScriptComponentTypeEnumBuilder; } namespace ScriptModuleMinecraft { class ScriptMovementHoverComponent : public ::ScriptModuleMinecraft::MovementScriptActorComponent { -public: - // prevent constructor by default - ScriptMovementHoverComponent& operator=(ScriptMovementHoverComponent const&); - ScriptMovementHoverComponent(ScriptMovementHoverComponent const&); - ScriptMovementHoverComponent(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/scripting/modules/minecraft/components/ScriptMovementHoverComponentFactory.h b/src/mc/scripting/modules/minecraft/components/ScriptMovementHoverComponentFactory.h index 26977d6944..1cfa876750 100644 --- a/src/mc/scripting/modules/minecraft/components/ScriptMovementHoverComponentFactory.h +++ b/src/mc/scripting/modules/minecraft/components/ScriptMovementHoverComponentFactory.h @@ -16,12 +16,6 @@ namespace Scripting { class WeakLifetimeScope; } namespace ScriptModuleMinecraft { class ScriptMovementHoverComponentFactory : public ::ScriptModuleMinecraft::IComponentFactory { -public: - // prevent constructor by default - ScriptMovementHoverComponentFactory& operator=(ScriptMovementHoverComponentFactory const&); - ScriptMovementHoverComponentFactory(ScriptMovementHoverComponentFactory const&); - ScriptMovementHoverComponentFactory(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/scripting/modules/minecraft/components/ScriptMovementJumpComponent.h b/src/mc/scripting/modules/minecraft/components/ScriptMovementJumpComponent.h index 38a04788ed..8766118a82 100644 --- a/src/mc/scripting/modules/minecraft/components/ScriptMovementJumpComponent.h +++ b/src/mc/scripting/modules/minecraft/components/ScriptMovementJumpComponent.h @@ -14,12 +14,6 @@ namespace ScriptModuleMinecraft { class ScriptComponentTypeEnumBuilder; } namespace ScriptModuleMinecraft { class ScriptMovementJumpComponent : public ::ScriptModuleMinecraft::MovementScriptActorComponent { -public: - // prevent constructor by default - ScriptMovementJumpComponent& operator=(ScriptMovementJumpComponent const&); - ScriptMovementJumpComponent(ScriptMovementJumpComponent const&); - ScriptMovementJumpComponent(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/scripting/modules/minecraft/components/ScriptMovementJumpComponentFactory.h b/src/mc/scripting/modules/minecraft/components/ScriptMovementJumpComponentFactory.h index 0df7a24f1c..df79acd46f 100644 --- a/src/mc/scripting/modules/minecraft/components/ScriptMovementJumpComponentFactory.h +++ b/src/mc/scripting/modules/minecraft/components/ScriptMovementJumpComponentFactory.h @@ -16,12 +16,6 @@ namespace Scripting { class WeakLifetimeScope; } namespace ScriptModuleMinecraft { class ScriptMovementJumpComponentFactory : public ::ScriptModuleMinecraft::IComponentFactory { -public: - // prevent constructor by default - ScriptMovementJumpComponentFactory& operator=(ScriptMovementJumpComponentFactory const&); - ScriptMovementJumpComponentFactory(ScriptMovementJumpComponentFactory const&); - ScriptMovementJumpComponentFactory(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/scripting/modules/minecraft/components/ScriptMovementSkipComponent.h b/src/mc/scripting/modules/minecraft/components/ScriptMovementSkipComponent.h index dae7655b99..96b870567a 100644 --- a/src/mc/scripting/modules/minecraft/components/ScriptMovementSkipComponent.h +++ b/src/mc/scripting/modules/minecraft/components/ScriptMovementSkipComponent.h @@ -14,12 +14,6 @@ namespace ScriptModuleMinecraft { class ScriptComponentTypeEnumBuilder; } namespace ScriptModuleMinecraft { class ScriptMovementSkipComponent : public ::ScriptModuleMinecraft::MovementScriptActorComponent { -public: - // prevent constructor by default - ScriptMovementSkipComponent& operator=(ScriptMovementSkipComponent const&); - ScriptMovementSkipComponent(ScriptMovementSkipComponent const&); - ScriptMovementSkipComponent(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/scripting/modules/minecraft/components/ScriptMovementSkipComponentFactory.h b/src/mc/scripting/modules/minecraft/components/ScriptMovementSkipComponentFactory.h index 89e82a68e1..c0468e9a5e 100644 --- a/src/mc/scripting/modules/minecraft/components/ScriptMovementSkipComponentFactory.h +++ b/src/mc/scripting/modules/minecraft/components/ScriptMovementSkipComponentFactory.h @@ -16,12 +16,6 @@ namespace Scripting { class WeakLifetimeScope; } namespace ScriptModuleMinecraft { class ScriptMovementSkipComponentFactory : public ::ScriptModuleMinecraft::IComponentFactory { -public: - // prevent constructor by default - ScriptMovementSkipComponentFactory& operator=(ScriptMovementSkipComponentFactory const&); - ScriptMovementSkipComponentFactory(ScriptMovementSkipComponentFactory const&); - ScriptMovementSkipComponentFactory(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/scripting/modules/minecraft/components/ScriptMovementSwayComponent.h b/src/mc/scripting/modules/minecraft/components/ScriptMovementSwayComponent.h index 84da433b01..b1a48f54e2 100644 --- a/src/mc/scripting/modules/minecraft/components/ScriptMovementSwayComponent.h +++ b/src/mc/scripting/modules/minecraft/components/ScriptMovementSwayComponent.h @@ -15,12 +15,6 @@ namespace ScriptModuleMinecraft { class ScriptComponentTypeEnumBuilder; } namespace ScriptModuleMinecraft { class ScriptMovementSwayComponent : public ::ScriptModuleMinecraft::MovementScriptActorComponent { -public: - // prevent constructor by default - ScriptMovementSwayComponent& operator=(ScriptMovementSwayComponent const&); - ScriptMovementSwayComponent(ScriptMovementSwayComponent const&); - ScriptMovementSwayComponent(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/scripting/modules/minecraft/components/ScriptMovementSwayComponentFactory.h b/src/mc/scripting/modules/minecraft/components/ScriptMovementSwayComponentFactory.h index cc00f96c1d..319130cbaa 100644 --- a/src/mc/scripting/modules/minecraft/components/ScriptMovementSwayComponentFactory.h +++ b/src/mc/scripting/modules/minecraft/components/ScriptMovementSwayComponentFactory.h @@ -16,12 +16,6 @@ namespace Scripting { class WeakLifetimeScope; } namespace ScriptModuleMinecraft { class ScriptMovementSwayComponentFactory : public ::ScriptModuleMinecraft::IComponentFactory { -public: - // prevent constructor by default - ScriptMovementSwayComponentFactory& operator=(ScriptMovementSwayComponentFactory const&); - ScriptMovementSwayComponentFactory(ScriptMovementSwayComponentFactory const&); - ScriptMovementSwayComponentFactory(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/scripting/modules/minecraft/components/ScriptNavigationClimbComponent.h b/src/mc/scripting/modules/minecraft/components/ScriptNavigationClimbComponent.h index 80c2622c48..324fd35c45 100644 --- a/src/mc/scripting/modules/minecraft/components/ScriptNavigationClimbComponent.h +++ b/src/mc/scripting/modules/minecraft/components/ScriptNavigationClimbComponent.h @@ -14,12 +14,6 @@ namespace ScriptModuleMinecraft { class ScriptComponentTypeEnumBuilder; } namespace ScriptModuleMinecraft { class ScriptNavigationClimbComponent : public ::ScriptModuleMinecraft::NavigationScriptActorComponent { -public: - // prevent constructor by default - ScriptNavigationClimbComponent& operator=(ScriptNavigationClimbComponent const&); - ScriptNavigationClimbComponent(ScriptNavigationClimbComponent const&); - ScriptNavigationClimbComponent(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/scripting/modules/minecraft/components/ScriptNavigationClimbComponentFactory.h b/src/mc/scripting/modules/minecraft/components/ScriptNavigationClimbComponentFactory.h index 804f6cd045..d3de47cebc 100644 --- a/src/mc/scripting/modules/minecraft/components/ScriptNavigationClimbComponentFactory.h +++ b/src/mc/scripting/modules/minecraft/components/ScriptNavigationClimbComponentFactory.h @@ -16,12 +16,6 @@ namespace Scripting { class WeakLifetimeScope; } namespace ScriptModuleMinecraft { class ScriptNavigationClimbComponentFactory : public ::ScriptModuleMinecraft::IComponentFactory { -public: - // prevent constructor by default - ScriptNavigationClimbComponentFactory& operator=(ScriptNavigationClimbComponentFactory const&); - ScriptNavigationClimbComponentFactory(ScriptNavigationClimbComponentFactory const&); - ScriptNavigationClimbComponentFactory(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/scripting/modules/minecraft/components/ScriptNavigationFloatComponent.h b/src/mc/scripting/modules/minecraft/components/ScriptNavigationFloatComponent.h index 934b562cd9..3aa4874710 100644 --- a/src/mc/scripting/modules/minecraft/components/ScriptNavigationFloatComponent.h +++ b/src/mc/scripting/modules/minecraft/components/ScriptNavigationFloatComponent.h @@ -14,12 +14,6 @@ namespace ScriptModuleMinecraft { class ScriptComponentTypeEnumBuilder; } namespace ScriptModuleMinecraft { class ScriptNavigationFloatComponent : public ::ScriptModuleMinecraft::NavigationScriptActorComponent { -public: - // prevent constructor by default - ScriptNavigationFloatComponent& operator=(ScriptNavigationFloatComponent const&); - ScriptNavigationFloatComponent(ScriptNavigationFloatComponent const&); - ScriptNavigationFloatComponent(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/scripting/modules/minecraft/components/ScriptNavigationFloatComponentFactory.h b/src/mc/scripting/modules/minecraft/components/ScriptNavigationFloatComponentFactory.h index bdca64040a..c9db1ec2cf 100644 --- a/src/mc/scripting/modules/minecraft/components/ScriptNavigationFloatComponentFactory.h +++ b/src/mc/scripting/modules/minecraft/components/ScriptNavigationFloatComponentFactory.h @@ -16,12 +16,6 @@ namespace Scripting { class WeakLifetimeScope; } namespace ScriptModuleMinecraft { class ScriptNavigationFloatComponentFactory : public ::ScriptModuleMinecraft::IComponentFactory { -public: - // prevent constructor by default - ScriptNavigationFloatComponentFactory& operator=(ScriptNavigationFloatComponentFactory const&); - ScriptNavigationFloatComponentFactory(ScriptNavigationFloatComponentFactory const&); - ScriptNavigationFloatComponentFactory(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/scripting/modules/minecraft/components/ScriptNavigationFlyComponent.h b/src/mc/scripting/modules/minecraft/components/ScriptNavigationFlyComponent.h index 03ea9d6fa2..38774ca83f 100644 --- a/src/mc/scripting/modules/minecraft/components/ScriptNavigationFlyComponent.h +++ b/src/mc/scripting/modules/minecraft/components/ScriptNavigationFlyComponent.h @@ -14,12 +14,6 @@ namespace ScriptModuleMinecraft { class ScriptComponentTypeEnumBuilder; } namespace ScriptModuleMinecraft { class ScriptNavigationFlyComponent : public ::ScriptModuleMinecraft::NavigationScriptActorComponent { -public: - // prevent constructor by default - ScriptNavigationFlyComponent& operator=(ScriptNavigationFlyComponent const&); - ScriptNavigationFlyComponent(ScriptNavigationFlyComponent const&); - ScriptNavigationFlyComponent(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/scripting/modules/minecraft/components/ScriptNavigationFlyComponentFactory.h b/src/mc/scripting/modules/minecraft/components/ScriptNavigationFlyComponentFactory.h index 86fba3dc50..9a15d09cb5 100644 --- a/src/mc/scripting/modules/minecraft/components/ScriptNavigationFlyComponentFactory.h +++ b/src/mc/scripting/modules/minecraft/components/ScriptNavigationFlyComponentFactory.h @@ -16,12 +16,6 @@ namespace Scripting { class WeakLifetimeScope; } namespace ScriptModuleMinecraft { class ScriptNavigationFlyComponentFactory : public ::ScriptModuleMinecraft::IComponentFactory { -public: - // prevent constructor by default - ScriptNavigationFlyComponentFactory& operator=(ScriptNavigationFlyComponentFactory const&); - ScriptNavigationFlyComponentFactory(ScriptNavigationFlyComponentFactory const&); - ScriptNavigationFlyComponentFactory(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/scripting/modules/minecraft/components/ScriptNavigationGenericComponent.h b/src/mc/scripting/modules/minecraft/components/ScriptNavigationGenericComponent.h index 36c8e6c867..743e0afdb3 100644 --- a/src/mc/scripting/modules/minecraft/components/ScriptNavigationGenericComponent.h +++ b/src/mc/scripting/modules/minecraft/components/ScriptNavigationGenericComponent.h @@ -14,12 +14,6 @@ namespace ScriptModuleMinecraft { class ScriptComponentTypeEnumBuilder; } namespace ScriptModuleMinecraft { class ScriptNavigationGenericComponent : public ::ScriptModuleMinecraft::NavigationScriptActorComponent { -public: - // prevent constructor by default - ScriptNavigationGenericComponent& operator=(ScriptNavigationGenericComponent const&); - ScriptNavigationGenericComponent(ScriptNavigationGenericComponent const&); - ScriptNavigationGenericComponent(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/scripting/modules/minecraft/components/ScriptNavigationGenericComponentFactory.h b/src/mc/scripting/modules/minecraft/components/ScriptNavigationGenericComponentFactory.h index ac7c211b58..25a55a3a1f 100644 --- a/src/mc/scripting/modules/minecraft/components/ScriptNavigationGenericComponentFactory.h +++ b/src/mc/scripting/modules/minecraft/components/ScriptNavigationGenericComponentFactory.h @@ -16,12 +16,6 @@ namespace Scripting { class WeakLifetimeScope; } namespace ScriptModuleMinecraft { class ScriptNavigationGenericComponentFactory : public ::ScriptModuleMinecraft::IComponentFactory { -public: - // prevent constructor by default - ScriptNavigationGenericComponentFactory& operator=(ScriptNavigationGenericComponentFactory const&); - ScriptNavigationGenericComponentFactory(ScriptNavigationGenericComponentFactory const&); - ScriptNavigationGenericComponentFactory(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/scripting/modules/minecraft/components/ScriptNavigationHoverComponent.h b/src/mc/scripting/modules/minecraft/components/ScriptNavigationHoverComponent.h index 920a2b0c07..febdb4c8b2 100644 --- a/src/mc/scripting/modules/minecraft/components/ScriptNavigationHoverComponent.h +++ b/src/mc/scripting/modules/minecraft/components/ScriptNavigationHoverComponent.h @@ -14,12 +14,6 @@ namespace ScriptModuleMinecraft { class ScriptComponentTypeEnumBuilder; } namespace ScriptModuleMinecraft { class ScriptNavigationHoverComponent : public ::ScriptModuleMinecraft::NavigationScriptActorComponent { -public: - // prevent constructor by default - ScriptNavigationHoverComponent& operator=(ScriptNavigationHoverComponent const&); - ScriptNavigationHoverComponent(ScriptNavigationHoverComponent const&); - ScriptNavigationHoverComponent(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/scripting/modules/minecraft/components/ScriptNavigationHoverComponentFactory.h b/src/mc/scripting/modules/minecraft/components/ScriptNavigationHoverComponentFactory.h index faf69f68b3..76b85d4bcb 100644 --- a/src/mc/scripting/modules/minecraft/components/ScriptNavigationHoverComponentFactory.h +++ b/src/mc/scripting/modules/minecraft/components/ScriptNavigationHoverComponentFactory.h @@ -16,12 +16,6 @@ namespace Scripting { class WeakLifetimeScope; } namespace ScriptModuleMinecraft { class ScriptNavigationHoverComponentFactory : public ::ScriptModuleMinecraft::IComponentFactory { -public: - // prevent constructor by default - ScriptNavigationHoverComponentFactory& operator=(ScriptNavigationHoverComponentFactory const&); - ScriptNavigationHoverComponentFactory(ScriptNavigationHoverComponentFactory const&); - ScriptNavigationHoverComponentFactory(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/scripting/modules/minecraft/components/ScriptNavigationWalkComponent.h b/src/mc/scripting/modules/minecraft/components/ScriptNavigationWalkComponent.h index 36f3e10557..14b46d23d4 100644 --- a/src/mc/scripting/modules/minecraft/components/ScriptNavigationWalkComponent.h +++ b/src/mc/scripting/modules/minecraft/components/ScriptNavigationWalkComponent.h @@ -14,12 +14,6 @@ namespace ScriptModuleMinecraft { class ScriptComponentTypeEnumBuilder; } namespace ScriptModuleMinecraft { class ScriptNavigationWalkComponent : public ::ScriptModuleMinecraft::NavigationScriptActorComponent { -public: - // prevent constructor by default - ScriptNavigationWalkComponent& operator=(ScriptNavigationWalkComponent const&); - ScriptNavigationWalkComponent(ScriptNavigationWalkComponent const&); - ScriptNavigationWalkComponent(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/scripting/modules/minecraft/components/ScriptNavigationWalkComponentFactory.h b/src/mc/scripting/modules/minecraft/components/ScriptNavigationWalkComponentFactory.h index df8c786b35..22fa52589f 100644 --- a/src/mc/scripting/modules/minecraft/components/ScriptNavigationWalkComponentFactory.h +++ b/src/mc/scripting/modules/minecraft/components/ScriptNavigationWalkComponentFactory.h @@ -16,12 +16,6 @@ namespace Scripting { class WeakLifetimeScope; } namespace ScriptModuleMinecraft { class ScriptNavigationWalkComponentFactory : public ::ScriptModuleMinecraft::IComponentFactory { -public: - // prevent constructor by default - ScriptNavigationWalkComponentFactory& operator=(ScriptNavigationWalkComponentFactory const&); - ScriptNavigationWalkComponentFactory(ScriptNavigationWalkComponentFactory const&); - ScriptNavigationWalkComponentFactory(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/scripting/modules/minecraft/components/ScriptOnFireComponent.h b/src/mc/scripting/modules/minecraft/components/ScriptOnFireComponent.h index 4a1e2604ab..0741d980e9 100644 --- a/src/mc/scripting/modules/minecraft/components/ScriptOnFireComponent.h +++ b/src/mc/scripting/modules/minecraft/components/ScriptOnFireComponent.h @@ -14,12 +14,6 @@ namespace ScriptModuleMinecraft { class ScriptComponentTypeEnumBuilder; } namespace ScriptModuleMinecraft { class ScriptOnFireComponent : public ::ScriptModuleMinecraft::ScriptActorComponent { -public: - // prevent constructor by default - ScriptOnFireComponent& operator=(ScriptOnFireComponent const&); - ScriptOnFireComponent(ScriptOnFireComponent const&); - ScriptOnFireComponent(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/scripting/modules/minecraft/components/ScriptOnFireComponentFactory.h b/src/mc/scripting/modules/minecraft/components/ScriptOnFireComponentFactory.h index 97fd1a9a7b..e480501c97 100644 --- a/src/mc/scripting/modules/minecraft/components/ScriptOnFireComponentFactory.h +++ b/src/mc/scripting/modules/minecraft/components/ScriptOnFireComponentFactory.h @@ -16,12 +16,6 @@ namespace Scripting { class WeakLifetimeScope; } namespace ScriptModuleMinecraft { class ScriptOnFireComponentFactory : public ::ScriptModuleMinecraft::IComponentFactory { -public: - // prevent constructor by default - ScriptOnFireComponentFactory& operator=(ScriptOnFireComponentFactory const&); - ScriptOnFireComponentFactory(ScriptOnFireComponentFactory const&); - ScriptOnFireComponentFactory(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/scripting/modules/minecraft/components/ScriptProjectileComponent.h b/src/mc/scripting/modules/minecraft/components/ScriptProjectileComponent.h index 3956640d77..a0abbf13cd 100644 --- a/src/mc/scripting/modules/minecraft/components/ScriptProjectileComponent.h +++ b/src/mc/scripting/modules/minecraft/components/ScriptProjectileComponent.h @@ -22,12 +22,6 @@ namespace Scripting { struct InvalidArgumentError; } namespace ScriptModuleMinecraft { class ScriptProjectileComponent : public ::ScriptModuleMinecraft::ScriptActorComponent { -public: - // prevent constructor by default - ScriptProjectileComponent& operator=(ScriptProjectileComponent const&); - ScriptProjectileComponent(ScriptProjectileComponent const&); - ScriptProjectileComponent(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/scripting/modules/minecraft/components/ScriptProjectileComponentFactory.h b/src/mc/scripting/modules/minecraft/components/ScriptProjectileComponentFactory.h index f333e4ca64..6bbd0124a8 100644 --- a/src/mc/scripting/modules/minecraft/components/ScriptProjectileComponentFactory.h +++ b/src/mc/scripting/modules/minecraft/components/ScriptProjectileComponentFactory.h @@ -16,12 +16,6 @@ namespace Scripting { class WeakLifetimeScope; } namespace ScriptModuleMinecraft { class ScriptProjectileComponentFactory : public ::ScriptModuleMinecraft::IComponentFactory { -public: - // prevent constructor by default - ScriptProjectileComponentFactory& operator=(ScriptProjectileComponentFactory const&); - ScriptProjectileComponentFactory(ScriptProjectileComponentFactory const&); - ScriptProjectileComponentFactory(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/scripting/modules/minecraft/components/ScriptRideableComponent.h b/src/mc/scripting/modules/minecraft/components/ScriptRideableComponent.h index ed3dca2904..91d801e7e9 100644 --- a/src/mc/scripting/modules/minecraft/components/ScriptRideableComponent.h +++ b/src/mc/scripting/modules/minecraft/components/ScriptRideableComponent.h @@ -24,12 +24,6 @@ namespace ScriptModuleMinecraft { class ScriptRideableComponent : public ::ScriptModuleMinecraft::ECSScriptActorComponent<::RideableComponent, ::RideableDefinition> { -public: - // prevent constructor by default - ScriptRideableComponent& operator=(ScriptRideableComponent const&); - ScriptRideableComponent(ScriptRideableComponent const&); - ScriptRideableComponent(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/scripting/modules/minecraft/components/ScriptRidingComponent.h b/src/mc/scripting/modules/minecraft/components/ScriptRidingComponent.h index b78ae6b4ed..8618c97152 100644 --- a/src/mc/scripting/modules/minecraft/components/ScriptRidingComponent.h +++ b/src/mc/scripting/modules/minecraft/components/ScriptRidingComponent.h @@ -17,12 +17,6 @@ namespace ScriptModuleMinecraft { class ScriptComponentTypeEnumBuilder; } namespace ScriptModuleMinecraft { class ScriptRidingComponent : public ::ScriptModuleMinecraft::ScriptActorComponent { -public: - // prevent constructor by default - ScriptRidingComponent& operator=(ScriptRidingComponent const&); - ScriptRidingComponent(ScriptRidingComponent const&); - ScriptRidingComponent(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/scripting/modules/minecraft/components/ScriptRidingComponentFactory.h b/src/mc/scripting/modules/minecraft/components/ScriptRidingComponentFactory.h index 3af49d8834..545483708b 100644 --- a/src/mc/scripting/modules/minecraft/components/ScriptRidingComponentFactory.h +++ b/src/mc/scripting/modules/minecraft/components/ScriptRidingComponentFactory.h @@ -16,12 +16,6 @@ namespace Scripting { class WeakLifetimeScope; } namespace ScriptModuleMinecraft { class ScriptRidingComponentFactory : public ::ScriptModuleMinecraft::IComponentFactory { -public: - // prevent constructor by default - ScriptRidingComponentFactory& operator=(ScriptRidingComponentFactory const&); - ScriptRidingComponentFactory(ScriptRidingComponentFactory const&); - ScriptRidingComponentFactory(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/scripting/modules/minecraft/components/ScriptSeat.h b/src/mc/scripting/modules/minecraft/components/ScriptSeat.h index 4abd2ca72c..c2682f3297 100644 --- a/src/mc/scripting/modules/minecraft/components/ScriptSeat.h +++ b/src/mc/scripting/modules/minecraft/components/ScriptSeat.h @@ -13,12 +13,6 @@ struct SeatDescription; namespace ScriptModuleMinecraft { class ScriptSeat { -public: - // prevent constructor by default - ScriptSeat& operator=(ScriptSeat const&); - ScriptSeat(ScriptSeat const&); - ScriptSeat(); - public: // static functions // NOLINTBEGIN diff --git a/src/mc/scripting/modules/minecraft/components/ScriptStrengthComponent.h b/src/mc/scripting/modules/minecraft/components/ScriptStrengthComponent.h index b18ea78681..df4d6e7de8 100644 --- a/src/mc/scripting/modules/minecraft/components/ScriptStrengthComponent.h +++ b/src/mc/scripting/modules/minecraft/components/ScriptStrengthComponent.h @@ -15,12 +15,6 @@ namespace ScriptModuleMinecraft { class ScriptComponentTypeEnumBuilder; } namespace ScriptModuleMinecraft { class ScriptStrengthComponent : public ::ScriptModuleMinecraft::ScriptActorComponent { -public: - // prevent constructor by default - ScriptStrengthComponent& operator=(ScriptStrengthComponent const&); - ScriptStrengthComponent(ScriptStrengthComponent const&); - ScriptStrengthComponent(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/scripting/modules/minecraft/components/ScriptStrengthComponentFactory.h b/src/mc/scripting/modules/minecraft/components/ScriptStrengthComponentFactory.h index 9610953e35..72e531c995 100644 --- a/src/mc/scripting/modules/minecraft/components/ScriptStrengthComponentFactory.h +++ b/src/mc/scripting/modules/minecraft/components/ScriptStrengthComponentFactory.h @@ -16,12 +16,6 @@ namespace Scripting { class WeakLifetimeScope; } namespace ScriptModuleMinecraft { class ScriptStrengthComponentFactory : public ::ScriptModuleMinecraft::IComponentFactory { -public: - // prevent constructor by default - ScriptStrengthComponentFactory& operator=(ScriptStrengthComponentFactory const&); - ScriptStrengthComponentFactory(ScriptStrengthComponentFactory const&); - ScriptStrengthComponentFactory(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/scripting/modules/minecraft/components/ScriptTameableComponent.h b/src/mc/scripting/modules/minecraft/components/ScriptTameableComponent.h index 5a70c87f6d..d3c2eaa046 100644 --- a/src/mc/scripting/modules/minecraft/components/ScriptTameableComponent.h +++ b/src/mc/scripting/modules/minecraft/components/ScriptTameableComponent.h @@ -23,12 +23,6 @@ namespace ScriptModuleMinecraft { class ScriptTameableComponent : public ::ScriptModuleMinecraft::ECSScriptActorComponent<::TameableComponent, ::TameableDefinition> { -public: - // prevent constructor by default - ScriptTameableComponent& operator=(ScriptTameableComponent const&); - ScriptTameableComponent(ScriptTameableComponent const&); - ScriptTameableComponent(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/scripting/modules/minecraft/components/ScriptTypeFamilyComponent.h b/src/mc/scripting/modules/minecraft/components/ScriptTypeFamilyComponent.h index aeb02cf623..2d83f99310 100644 --- a/src/mc/scripting/modules/minecraft/components/ScriptTypeFamilyComponent.h +++ b/src/mc/scripting/modules/minecraft/components/ScriptTypeFamilyComponent.h @@ -15,12 +15,6 @@ namespace ScriptModuleMinecraft { class ScriptComponentTypeEnumBuilder; } namespace ScriptModuleMinecraft { class ScriptTypeFamilyComponent : public ::ScriptModuleMinecraft::ScriptActorComponent { -public: - // prevent constructor by default - ScriptTypeFamilyComponent& operator=(ScriptTypeFamilyComponent const&); - ScriptTypeFamilyComponent(ScriptTypeFamilyComponent const&); - ScriptTypeFamilyComponent(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/scripting/modules/minecraft/components/ScriptTypeFamilyComponentFactory.h b/src/mc/scripting/modules/minecraft/components/ScriptTypeFamilyComponentFactory.h index 928694649d..a29badf847 100644 --- a/src/mc/scripting/modules/minecraft/components/ScriptTypeFamilyComponentFactory.h +++ b/src/mc/scripting/modules/minecraft/components/ScriptTypeFamilyComponentFactory.h @@ -16,12 +16,6 @@ namespace Scripting { class WeakLifetimeScope; } namespace ScriptModuleMinecraft { class ScriptTypeFamilyComponentFactory : public ::ScriptModuleMinecraft::IComponentFactory { -public: - // prevent constructor by default - ScriptTypeFamilyComponentFactory& operator=(ScriptTypeFamilyComponentFactory const&); - ScriptTypeFamilyComponentFactory(ScriptTypeFamilyComponentFactory const&); - ScriptTypeFamilyComponentFactory(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/scripting/modules/minecraft/components/ScriptUnderwaterMovementComponent.h b/src/mc/scripting/modules/minecraft/components/ScriptUnderwaterMovementComponent.h index d65069f948..f5f9b58799 100644 --- a/src/mc/scripting/modules/minecraft/components/ScriptUnderwaterMovementComponent.h +++ b/src/mc/scripting/modules/minecraft/components/ScriptUnderwaterMovementComponent.h @@ -14,12 +14,6 @@ namespace ScriptModuleMinecraft { class ScriptComponentTypeEnumBuilder; } namespace ScriptModuleMinecraft { class ScriptUnderwaterMovementComponent : public ::ScriptModuleMinecraft::AttributeScriptActorComponent { -public: - // prevent constructor by default - ScriptUnderwaterMovementComponent& operator=(ScriptUnderwaterMovementComponent const&); - ScriptUnderwaterMovementComponent(ScriptUnderwaterMovementComponent const&); - ScriptUnderwaterMovementComponent(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/scripting/modules/minecraft/components/ScriptUnderwaterMovementComponentFactory.h b/src/mc/scripting/modules/minecraft/components/ScriptUnderwaterMovementComponentFactory.h index 87df62b626..f190c5d100 100644 --- a/src/mc/scripting/modules/minecraft/components/ScriptUnderwaterMovementComponentFactory.h +++ b/src/mc/scripting/modules/minecraft/components/ScriptUnderwaterMovementComponentFactory.h @@ -16,12 +16,6 @@ namespace Scripting { class WeakLifetimeScope; } namespace ScriptModuleMinecraft { class ScriptUnderwaterMovementComponentFactory : public ::ScriptModuleMinecraft::IComponentFactory { -public: - // prevent constructor by default - ScriptUnderwaterMovementComponentFactory& operator=(ScriptUnderwaterMovementComponentFactory const&); - ScriptUnderwaterMovementComponentFactory(ScriptUnderwaterMovementComponentFactory const&); - ScriptUnderwaterMovementComponentFactory(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/scripting/modules/minecraft/device/ScriptMemoryTierBuilder.h b/src/mc/scripting/modules/minecraft/device/ScriptMemoryTierBuilder.h index bd21da85be..ea8e6d2a54 100644 --- a/src/mc/scripting/modules/minecraft/device/ScriptMemoryTierBuilder.h +++ b/src/mc/scripting/modules/minecraft/device/ScriptMemoryTierBuilder.h @@ -10,12 +10,6 @@ namespace Scripting { struct EnumBinding; } namespace ScriptModuleMinecraft { struct ScriptMemoryTierBuilder { -public: - // prevent constructor by default - ScriptMemoryTierBuilder& operator=(ScriptMemoryTierBuilder const&); - ScriptMemoryTierBuilder(ScriptMemoryTierBuilder const&); - ScriptMemoryTierBuilder(); - public: // static functions // NOLINTBEGIN diff --git a/src/mc/scripting/modules/minecraft/device/ScriptPlatformType.h b/src/mc/scripting/modules/minecraft/device/ScriptPlatformType.h index 529e0a39cc..4c311144ef 100644 --- a/src/mc/scripting/modules/minecraft/device/ScriptPlatformType.h +++ b/src/mc/scripting/modules/minecraft/device/ScriptPlatformType.h @@ -10,12 +10,6 @@ namespace Scripting { struct EnumBinding; } namespace ScriptModuleMinecraft { struct ScriptPlatformType { -public: - // prevent constructor by default - ScriptPlatformType& operator=(ScriptPlatformType const&); - ScriptPlatformType(ScriptPlatformType const&); - ScriptPlatformType(); - public: // static functions // NOLINTBEGIN diff --git a/src/mc/scripting/modules/minecraft/effects/ScriptEffectTypesRegistry.h b/src/mc/scripting/modules/minecraft/effects/ScriptEffectTypesRegistry.h index b7402317af..f68e82d6ae 100644 --- a/src/mc/scripting/modules/minecraft/effects/ScriptEffectTypesRegistry.h +++ b/src/mc/scripting/modules/minecraft/effects/ScriptEffectTypesRegistry.h @@ -4,12 +4,6 @@ namespace ScriptModuleMinecraft { -struct ScriptEffectTypesRegistry { -public: - // prevent constructor by default - ScriptEffectTypesRegistry& operator=(ScriptEffectTypesRegistry const&); - ScriptEffectTypesRegistry(ScriptEffectTypesRegistry const&); - ScriptEffectTypesRegistry(); -}; +struct ScriptEffectTypesRegistry {}; } // namespace ScriptModuleMinecraft diff --git a/src/mc/scripting/modules/minecraft/events/EmptyFilter.h b/src/mc/scripting/modules/minecraft/events/EmptyFilter.h index d4518d69f5..3c1e761351 100644 --- a/src/mc/scripting/modules/minecraft/events/EmptyFilter.h +++ b/src/mc/scripting/modules/minecraft/events/EmptyFilter.h @@ -9,12 +9,6 @@ namespace ScriptModuleMinecraft { struct EmptyFilterData; } namespace ScriptModuleMinecraft { -struct EmptyFilter { -public: - // prevent constructor by default - EmptyFilter& operator=(EmptyFilter const&); - EmptyFilter(EmptyFilter const&); - EmptyFilter(); -}; +struct EmptyFilter {}; } // namespace ScriptModuleMinecraft diff --git a/src/mc/scripting/modules/minecraft/events/EmptyFilterData.h b/src/mc/scripting/modules/minecraft/events/EmptyFilterData.h index 38ea75a47a..acfb6c9d86 100644 --- a/src/mc/scripting/modules/minecraft/events/EmptyFilterData.h +++ b/src/mc/scripting/modules/minecraft/events/EmptyFilterData.h @@ -4,12 +4,6 @@ namespace ScriptModuleMinecraft { -struct EmptyFilterData { -public: - // prevent constructor by default - EmptyFilterData& operator=(EmptyFilterData const&); - EmptyFilterData(EmptyFilterData const&); - EmptyFilterData(); -}; +struct EmptyFilterData {}; } // namespace ScriptModuleMinecraft diff --git a/src/mc/scripting/modules/minecraft/events/IScriptEventSignalAsync.h b/src/mc/scripting/modules/minecraft/events/IScriptEventSignalAsync.h index 88549112a2..d96f2dd6e9 100644 --- a/src/mc/scripting/modules/minecraft/events/IScriptEventSignalAsync.h +++ b/src/mc/scripting/modules/minecraft/events/IScriptEventSignalAsync.h @@ -10,12 +10,6 @@ struct ActorUniqueID; namespace ScriptModuleMinecraft { class IScriptEventSignalAsync { -public: - // prevent constructor by default - IScriptEventSignalAsync& operator=(IScriptEventSignalAsync const&); - IScriptEventSignalAsync(IScriptEventSignalAsync const&); - IScriptEventSignalAsync(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/scripting/modules/minecraft/events/IScriptItemCustomComponentSignalCollection.h b/src/mc/scripting/modules/minecraft/events/IScriptItemCustomComponentSignalCollection.h index d1f3bf199d..6a819c934c 100644 --- a/src/mc/scripting/modules/minecraft/events/IScriptItemCustomComponentSignalCollection.h +++ b/src/mc/scripting/modules/minecraft/events/IScriptItemCustomComponentSignalCollection.h @@ -15,12 +15,6 @@ namespace ScriptModuleMinecraft { class ScriptItemCustomComponentInterface; } namespace ScriptModuleMinecraft { class IScriptItemCustomComponentSignalCollection : public ::ScriptDeferredEventListener { -public: - // prevent constructor by default - IScriptItemCustomComponentSignalCollection& operator=(IScriptItemCustomComponentSignalCollection const&); - IScriptItemCustomComponentSignalCollection(IScriptItemCustomComponentSignalCollection const&); - IScriptItemCustomComponentSignalCollection(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/scripting/modules/minecraft/events/IScriptScriptDeferredEventListener.h b/src/mc/scripting/modules/minecraft/events/IScriptScriptDeferredEventListener.h index e6ff66a496..f2a810dd70 100644 --- a/src/mc/scripting/modules/minecraft/events/IScriptScriptDeferredEventListener.h +++ b/src/mc/scripting/modules/minecraft/events/IScriptScriptDeferredEventListener.h @@ -5,12 +5,6 @@ namespace ScriptModuleMinecraft { template -class IScriptScriptDeferredEventListener { -public: - // prevent constructor by default - IScriptScriptDeferredEventListener& operator=(IScriptScriptDeferredEventListener const&); - IScriptScriptDeferredEventListener(IScriptScriptDeferredEventListener const&); - IScriptScriptDeferredEventListener(); -}; +class IScriptScriptDeferredEventListener {}; } // namespace ScriptModuleMinecraft diff --git a/src/mc/scripting/modules/minecraft/events/IScriptWorldAfterEvents.h b/src/mc/scripting/modules/minecraft/events/IScriptWorldAfterEvents.h index 0de20181e2..151358673a 100644 --- a/src/mc/scripting/modules/minecraft/events/IScriptWorldAfterEvents.h +++ b/src/mc/scripting/modules/minecraft/events/IScriptWorldAfterEvents.h @@ -61,12 +61,6 @@ namespace ScriptModuleMinecraft { struct ScriptWorldInitializeAfterEvent; } namespace ScriptModuleMinecraft { class IScriptWorldAfterEvents { -public: - // prevent constructor by default - IScriptWorldAfterEvents& operator=(IScriptWorldAfterEvents const&); - IScriptWorldAfterEvents(IScriptWorldAfterEvents const&); - IScriptWorldAfterEvents(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/scripting/modules/minecraft/events/IScriptWorldBeforeEvents.h b/src/mc/scripting/modules/minecraft/events/IScriptWorldBeforeEvents.h index 94f2c5dbd5..3f6c1d4673 100644 --- a/src/mc/scripting/modules/minecraft/events/IScriptWorldBeforeEvents.h +++ b/src/mc/scripting/modules/minecraft/events/IScriptWorldBeforeEvents.h @@ -38,12 +38,6 @@ namespace ScriptModuleMinecraft { struct ScriptWeatherChangedBeforeEvent; } namespace ScriptModuleMinecraft { class IScriptWorldBeforeEvents { -public: - // prevent constructor by default - IScriptWorldBeforeEvents& operator=(IScriptWorldBeforeEvents const&); - IScriptWorldBeforeEvents(IScriptWorldBeforeEvents const&); - IScriptWorldBeforeEvents(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/scripting/modules/minecraft/events/ScriptActorDamageCause.h b/src/mc/scripting/modules/minecraft/events/ScriptActorDamageCause.h index 35fb52b6bc..a510ebdb08 100644 --- a/src/mc/scripting/modules/minecraft/events/ScriptActorDamageCause.h +++ b/src/mc/scripting/modules/minecraft/events/ScriptActorDamageCause.h @@ -9,12 +9,6 @@ namespace ScriptModuleMinecraft { struct ScriptActorDamageCause { -public: - // prevent constructor by default - ScriptActorDamageCause& operator=(ScriptActorDamageCause const&); - ScriptActorDamageCause(ScriptActorDamageCause const&); - ScriptActorDamageCause(); - public: // static functions // NOLINTBEGIN diff --git a/src/mc/scripting/modules/minecraft/events/ScriptBlockCustomComponentInterface.h b/src/mc/scripting/modules/minecraft/events/ScriptBlockCustomComponentInterface.h index 91752a514f..2008d1bf3b 100644 --- a/src/mc/scripting/modules/minecraft/events/ScriptBlockCustomComponentInterface.h +++ b/src/mc/scripting/modules/minecraft/events/ScriptBlockCustomComponentInterface.h @@ -8,12 +8,6 @@ namespace ScriptModuleMinecraft { class ScriptBlockCustomComponentInterface : public ::ScriptModuleMinecraft::ScriptCustomComponentScriptInterface<9> { -public: - // prevent constructor by default - ScriptBlockCustomComponentInterface& operator=(ScriptBlockCustomComponentInterface const&); - ScriptBlockCustomComponentInterface(ScriptBlockCustomComponentInterface const&); - ScriptBlockCustomComponentInterface(); - public: // member functions // NOLINTBEGIN diff --git a/src/mc/scripting/modules/minecraft/events/ScriptBlockCustomComponentRandomTickAfterEvent.h b/src/mc/scripting/modules/minecraft/events/ScriptBlockCustomComponentRandomTickAfterEvent.h index 9a3cb279f3..8afb8632c8 100644 --- a/src/mc/scripting/modules/minecraft/events/ScriptBlockCustomComponentRandomTickAfterEvent.h +++ b/src/mc/scripting/modules/minecraft/events/ScriptBlockCustomComponentRandomTickAfterEvent.h @@ -19,12 +19,6 @@ namespace ScriptModuleMinecraft { struct ScriptBlockCustomComponentRandomTickAfterEvent : public ::ScriptModuleMinecraft::ScriptBlockEvent, public ::ScriptModuleMinecraft::ScriptCustomComponentAfterEvent { -public: - // prevent constructor by default - ScriptBlockCustomComponentRandomTickAfterEvent& operator=(ScriptBlockCustomComponentRandomTickAfterEvent const&); - ScriptBlockCustomComponentRandomTickAfterEvent(ScriptBlockCustomComponentRandomTickAfterEvent const&); - ScriptBlockCustomComponentRandomTickAfterEvent(); - public: // member functions // NOLINTBEGIN diff --git a/src/mc/scripting/modules/minecraft/events/ScriptBlockCustomComponentTickAfterEvent.h b/src/mc/scripting/modules/minecraft/events/ScriptBlockCustomComponentTickAfterEvent.h index c60bfc96fc..30e3d0fc4c 100644 --- a/src/mc/scripting/modules/minecraft/events/ScriptBlockCustomComponentTickAfterEvent.h +++ b/src/mc/scripting/modules/minecraft/events/ScriptBlockCustomComponentTickAfterEvent.h @@ -18,12 +18,6 @@ namespace ScriptModuleMinecraft { struct ScriptBlockCustomComponentTickAfterEvent : public ::ScriptModuleMinecraft::ScriptBlockEvent, public ::ScriptModuleMinecraft::ScriptCustomComponentAfterEvent { -public: - // prevent constructor by default - ScriptBlockCustomComponentTickAfterEvent& operator=(ScriptBlockCustomComponentTickAfterEvent const&); - ScriptBlockCustomComponentTickAfterEvent(ScriptBlockCustomComponentTickAfterEvent const&); - ScriptBlockCustomComponentTickAfterEvent(); - public: // member functions // NOLINTBEGIN diff --git a/src/mc/scripting/modules/minecraft/events/ScriptCustomComponentAfterEvent.h b/src/mc/scripting/modules/minecraft/events/ScriptCustomComponentAfterEvent.h index 7edd0807f6..917a3fd223 100644 --- a/src/mc/scripting/modules/minecraft/events/ScriptCustomComponentAfterEvent.h +++ b/src/mc/scripting/modules/minecraft/events/ScriptCustomComponentAfterEvent.h @@ -4,12 +4,6 @@ namespace ScriptModuleMinecraft { -class ScriptCustomComponentAfterEvent { -public: - // prevent constructor by default - ScriptCustomComponentAfterEvent& operator=(ScriptCustomComponentAfterEvent const&); - ScriptCustomComponentAfterEvent(ScriptCustomComponentAfterEvent const&); - ScriptCustomComponentAfterEvent(); -}; +class ScriptCustomComponentAfterEvent {}; } // namespace ScriptModuleMinecraft diff --git a/src/mc/scripting/modules/minecraft/events/ScriptCustomComponentBeforeEvent.h b/src/mc/scripting/modules/minecraft/events/ScriptCustomComponentBeforeEvent.h index 1d647be9e3..b97774d9e2 100644 --- a/src/mc/scripting/modules/minecraft/events/ScriptCustomComponentBeforeEvent.h +++ b/src/mc/scripting/modules/minecraft/events/ScriptCustomComponentBeforeEvent.h @@ -5,12 +5,6 @@ namespace ScriptModuleMinecraft { template -class ScriptCustomComponentBeforeEvent { -public: - // prevent constructor by default - ScriptCustomComponentBeforeEvent& operator=(ScriptCustomComponentBeforeEvent const&); - ScriptCustomComponentBeforeEvent(ScriptCustomComponentBeforeEvent const&); - ScriptCustomComponentBeforeEvent(); -}; +class ScriptCustomComponentBeforeEvent {}; } // namespace ScriptModuleMinecraft diff --git a/src/mc/scripting/modules/minecraft/events/ScriptCustomComponentPubSubAdapterAfterEvent.h b/src/mc/scripting/modules/minecraft/events/ScriptCustomComponentPubSubAdapterAfterEvent.h index dbf23de5cb..7a803bd843 100644 --- a/src/mc/scripting/modules/minecraft/events/ScriptCustomComponentPubSubAdapterAfterEvent.h +++ b/src/mc/scripting/modules/minecraft/events/ScriptCustomComponentPubSubAdapterAfterEvent.h @@ -5,12 +5,6 @@ namespace ScriptModuleMinecraft { template -struct ScriptCustomComponentPubSubAdapterAfterEvent { -public: - // prevent constructor by default - ScriptCustomComponentPubSubAdapterAfterEvent& operator=(ScriptCustomComponentPubSubAdapterAfterEvent const&); - ScriptCustomComponentPubSubAdapterAfterEvent(ScriptCustomComponentPubSubAdapterAfterEvent const&); - ScriptCustomComponentPubSubAdapterAfterEvent(); -}; +struct ScriptCustomComponentPubSubAdapterAfterEvent {}; } // namespace ScriptModuleMinecraft diff --git a/src/mc/scripting/modules/minecraft/events/ScriptCustomComponentPubSubAdapterStorage.h b/src/mc/scripting/modules/minecraft/events/ScriptCustomComponentPubSubAdapterStorage.h index 7f01131063..fce74a5415 100644 --- a/src/mc/scripting/modules/minecraft/events/ScriptCustomComponentPubSubAdapterStorage.h +++ b/src/mc/scripting/modules/minecraft/events/ScriptCustomComponentPubSubAdapterStorage.h @@ -5,12 +5,6 @@ namespace ScriptModuleMinecraft { template -struct ScriptCustomComponentPubSubAdapterStorage { -public: - // prevent constructor by default - ScriptCustomComponentPubSubAdapterStorage& operator=(ScriptCustomComponentPubSubAdapterStorage const&); - ScriptCustomComponentPubSubAdapterStorage(ScriptCustomComponentPubSubAdapterStorage const&); - ScriptCustomComponentPubSubAdapterStorage(); -}; +struct ScriptCustomComponentPubSubAdapterStorage {}; } // namespace ScriptModuleMinecraft diff --git a/src/mc/scripting/modules/minecraft/events/ScriptCustomComponentPubSubConnectors.h b/src/mc/scripting/modules/minecraft/events/ScriptCustomComponentPubSubConnectors.h index 410000e51f..b8bab7abbf 100644 --- a/src/mc/scripting/modules/minecraft/events/ScriptCustomComponentPubSubConnectors.h +++ b/src/mc/scripting/modules/minecraft/events/ScriptCustomComponentPubSubConnectors.h @@ -5,12 +5,6 @@ namespace ScriptModuleMinecraft { template -struct ScriptCustomComponentPubSubConnectors { -public: - // prevent constructor by default - ScriptCustomComponentPubSubConnectors& operator=(ScriptCustomComponentPubSubConnectors const&); - ScriptCustomComponentPubSubConnectors(ScriptCustomComponentPubSubConnectors const&); - ScriptCustomComponentPubSubConnectors(); -}; +struct ScriptCustomComponentPubSubConnectors {}; } // namespace ScriptModuleMinecraft diff --git a/src/mc/scripting/modules/minecraft/events/ScriptFilteredEventSignal.h b/src/mc/scripting/modules/minecraft/events/ScriptFilteredEventSignal.h index 1156e8ec6c..572183c6e0 100644 --- a/src/mc/scripting/modules/minecraft/events/ScriptFilteredEventSignal.h +++ b/src/mc/scripting/modules/minecraft/events/ScriptFilteredEventSignal.h @@ -5,12 +5,6 @@ namespace ScriptModuleMinecraft { template -class ScriptFilteredEventSignal { -public: - // prevent constructor by default - ScriptFilteredEventSignal& operator=(ScriptFilteredEventSignal const&); - ScriptFilteredEventSignal(ScriptFilteredEventSignal const&); - ScriptFilteredEventSignal(); -}; +class ScriptFilteredEventSignal {}; } // namespace ScriptModuleMinecraft diff --git a/src/mc/scripting/modules/minecraft/events/ScriptItemCustomComponentAfterEvent.h b/src/mc/scripting/modules/minecraft/events/ScriptItemCustomComponentAfterEvent.h index 5ccf6b5469..bc9b85e64e 100644 --- a/src/mc/scripting/modules/minecraft/events/ScriptItemCustomComponentAfterEvent.h +++ b/src/mc/scripting/modules/minecraft/events/ScriptItemCustomComponentAfterEvent.h @@ -15,12 +15,6 @@ namespace ScriptModuleMinecraft { struct ScriptItemCustomComponentAfterEvent : public ::ScriptModuleMinecraft::ScriptCustomComponentPubSubAdapterAfterEvent< ::ScriptModuleMinecraft::ScriptItemCustomComponentInterface> { -public: - // prevent constructor by default - ScriptItemCustomComponentAfterEvent& operator=(ScriptItemCustomComponentAfterEvent const&); - ScriptItemCustomComponentAfterEvent(ScriptItemCustomComponentAfterEvent const&); - ScriptItemCustomComponentAfterEvent(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/scripting/modules/minecraft/events/ScriptItemCustomComponentBeforeEvent.h b/src/mc/scripting/modules/minecraft/events/ScriptItemCustomComponentBeforeEvent.h index 6ba712e056..5ea8ce1c7e 100644 --- a/src/mc/scripting/modules/minecraft/events/ScriptItemCustomComponentBeforeEvent.h +++ b/src/mc/scripting/modules/minecraft/events/ScriptItemCustomComponentBeforeEvent.h @@ -5,12 +5,6 @@ namespace ScriptModuleMinecraft { template -struct ScriptItemCustomComponentBeforeEvent { -public: - // prevent constructor by default - ScriptItemCustomComponentBeforeEvent& operator=(ScriptItemCustomComponentBeforeEvent const&); - ScriptItemCustomComponentBeforeEvent(ScriptItemCustomComponentBeforeEvent const&); - ScriptItemCustomComponentBeforeEvent(); -}; +struct ScriptItemCustomComponentBeforeEvent {}; } // namespace ScriptModuleMinecraft diff --git a/src/mc/scripting/modules/minecraft/events/ScriptItemCustomComponentCompleteUseEvent.h b/src/mc/scripting/modules/minecraft/events/ScriptItemCustomComponentCompleteUseEvent.h index 0367d51af4..a1689dc006 100644 --- a/src/mc/scripting/modules/minecraft/events/ScriptItemCustomComponentCompleteUseEvent.h +++ b/src/mc/scripting/modules/minecraft/events/ScriptItemCustomComponentCompleteUseEvent.h @@ -56,12 +56,6 @@ struct ScriptItemCustomComponentCompleteUseEvent : public ::ScriptModuleMinecraf // NOLINTEND }; -public: - // prevent constructor by default - ScriptItemCustomComponentCompleteUseEvent& operator=(ScriptItemCustomComponentCompleteUseEvent const&); - ScriptItemCustomComponentCompleteUseEvent(ScriptItemCustomComponentCompleteUseEvent const&); - ScriptItemCustomComponentCompleteUseEvent(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/scripting/modules/minecraft/events/ScriptItemCustomComponentInterface.h b/src/mc/scripting/modules/minecraft/events/ScriptItemCustomComponentInterface.h index e4804f68be..2e7b917d99 100644 --- a/src/mc/scripting/modules/minecraft/events/ScriptItemCustomComponentInterface.h +++ b/src/mc/scripting/modules/minecraft/events/ScriptItemCustomComponentInterface.h @@ -13,12 +13,6 @@ namespace ScriptModuleMinecraft { struct ScriptItemCustomComponentClosureFlags; namespace ScriptModuleMinecraft { class ScriptItemCustomComponentInterface : public ::ScriptModuleMinecraft::ScriptCustomComponentScriptInterface<7> { -public: - // prevent constructor by default - ScriptItemCustomComponentInterface& operator=(ScriptItemCustomComponentInterface const&); - ScriptItemCustomComponentInterface(ScriptItemCustomComponentInterface const&); - ScriptItemCustomComponentInterface(); - public: // member functions // NOLINTBEGIN diff --git a/src/mc/scripting/modules/minecraft/events/ScriptItemCustomComponentIntermediateStorage.h b/src/mc/scripting/modules/minecraft/events/ScriptItemCustomComponentIntermediateStorage.h index f9dbdb1b34..8e99d21fff 100644 --- a/src/mc/scripting/modules/minecraft/events/ScriptItemCustomComponentIntermediateStorage.h +++ b/src/mc/scripting/modules/minecraft/events/ScriptItemCustomComponentIntermediateStorage.h @@ -15,12 +15,6 @@ namespace ScriptModuleMinecraft { struct ScriptItemCustomComponentIntermediateStorage : public ::ScriptModuleMinecraft::ScriptCustomComponentPubSubAdapterStorage< ::ScriptModuleMinecraft::ScriptItemCustomComponentInterface> { -public: - // prevent constructor by default - ScriptItemCustomComponentIntermediateStorage& operator=(ScriptItemCustomComponentIntermediateStorage const&); - ScriptItemCustomComponentIntermediateStorage(ScriptItemCustomComponentIntermediateStorage const&); - ScriptItemCustomComponentIntermediateStorage(); - public: // member functions // NOLINTBEGIN diff --git a/src/mc/scripting/modules/minecraft/events/ScriptModuleShutdownBeforeEvent.h b/src/mc/scripting/modules/minecraft/events/ScriptModuleShutdownBeforeEvent.h index 6eaf8be8a3..a4778c0f20 100644 --- a/src/mc/scripting/modules/minecraft/events/ScriptModuleShutdownBeforeEvent.h +++ b/src/mc/scripting/modules/minecraft/events/ScriptModuleShutdownBeforeEvent.h @@ -8,12 +8,6 @@ namespace ScriptModuleMinecraft { struct ScriptModuleShutdownBeforeEvent { -public: - // prevent constructor by default - ScriptModuleShutdownBeforeEvent& operator=(ScriptModuleShutdownBeforeEvent const&); - ScriptModuleShutdownBeforeEvent(ScriptModuleShutdownBeforeEvent const&); - ScriptModuleShutdownBeforeEvent(); - public: // static functions // NOLINTBEGIN diff --git a/src/mc/scripting/modules/minecraft/events/ScriptSystemAfterEvents.h b/src/mc/scripting/modules/minecraft/events/ScriptSystemAfterEvents.h index d79a69b729..b9082389f5 100644 --- a/src/mc/scripting/modules/minecraft/events/ScriptSystemAfterEvents.h +++ b/src/mc/scripting/modules/minecraft/events/ScriptSystemAfterEvents.h @@ -62,12 +62,6 @@ class ScriptSystemAfterEvents class ScriptSystemAfterEventsDeferredEventListener : public ::ScriptModuleMinecraft::IScriptScriptDeferredEventListener< ::ScriptModuleMinecraft::ScriptSystemAfterEvents> { - public: - // prevent constructor by default - ScriptSystemAfterEventsDeferredEventListener& operator=(ScriptSystemAfterEventsDeferredEventListener const&); - ScriptSystemAfterEventsDeferredEventListener(ScriptSystemAfterEventsDeferredEventListener const&); - ScriptSystemAfterEventsDeferredEventListener(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/scripting/modules/minecraft/events/ScriptWatchdogTerminateReason.h b/src/mc/scripting/modules/minecraft/events/ScriptWatchdogTerminateReason.h index 6c8acbeede..502c6cc64d 100644 --- a/src/mc/scripting/modules/minecraft/events/ScriptWatchdogTerminateReason.h +++ b/src/mc/scripting/modules/minecraft/events/ScriptWatchdogTerminateReason.h @@ -9,12 +9,6 @@ namespace ScriptModuleMinecraft { struct ScriptWatchdogTerminateReason { -public: - // prevent constructor by default - ScriptWatchdogTerminateReason& operator=(ScriptWatchdogTerminateReason const&); - ScriptWatchdogTerminateReason(ScriptWatchdogTerminateReason const&); - ScriptWatchdogTerminateReason(); - public: // static functions // NOLINTBEGIN diff --git a/src/mc/scripting/modules/minecraft/events/ScriptWorldAfterEvents.h b/src/mc/scripting/modules/minecraft/events/ScriptWorldAfterEvents.h index 079e66c8d8..3b4adf00d8 100644 --- a/src/mc/scripting/modules/minecraft/events/ScriptWorldAfterEvents.h +++ b/src/mc/scripting/modules/minecraft/events/ScriptWorldAfterEvents.h @@ -110,12 +110,6 @@ class ScriptWorldAfterEvents class ScriptWorldAfterEventsDeferredEventListener : public ::ScriptModuleMinecraft::IScriptScriptDeferredEventListener< ::ScriptModuleMinecraft::ScriptWorldAfterEvents> { - public: - // prevent constructor by default - ScriptWorldAfterEventsDeferredEventListener& operator=(ScriptWorldAfterEventsDeferredEventListener const&); - ScriptWorldAfterEventsDeferredEventListener(ScriptWorldAfterEventsDeferredEventListener const&); - ScriptWorldAfterEventsDeferredEventListener(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/scripting/modules/minecraft/events/metadata/ScriptAsyncEventMetadata.h b/src/mc/scripting/modules/minecraft/events/metadata/ScriptAsyncEventMetadata.h index 09e49389a7..64b84e0827 100644 --- a/src/mc/scripting/modules/minecraft/events/metadata/ScriptAsyncEventMetadata.h +++ b/src/mc/scripting/modules/minecraft/events/metadata/ScriptAsyncEventMetadata.h @@ -5,12 +5,6 @@ namespace ScriptModuleMinecraft { template -struct ScriptAsyncEventMetadata { -public: - // prevent constructor by default - ScriptAsyncEventMetadata& operator=(ScriptAsyncEventMetadata const&); - ScriptAsyncEventMetadata(ScriptAsyncEventMetadata const&); - ScriptAsyncEventMetadata(); -}; +struct ScriptAsyncEventMetadata {}; } // namespace ScriptModuleMinecraft diff --git a/src/mc/scripting/modules/minecraft/events/metadata/ScriptCustomComponentEventMetadata.h b/src/mc/scripting/modules/minecraft/events/metadata/ScriptCustomComponentEventMetadata.h index 8cd84c348f..f9cb42d0da 100644 --- a/src/mc/scripting/modules/minecraft/events/metadata/ScriptCustomComponentEventMetadata.h +++ b/src/mc/scripting/modules/minecraft/events/metadata/ScriptCustomComponentEventMetadata.h @@ -5,12 +5,6 @@ namespace ScriptModuleMinecraft { template -class ScriptCustomComponentEventMetadata { -public: - // prevent constructor by default - ScriptCustomComponentEventMetadata& operator=(ScriptCustomComponentEventMetadata const&); - ScriptCustomComponentEventMetadata(ScriptCustomComponentEventMetadata const&); - ScriptCustomComponentEventMetadata(); -}; +class ScriptCustomComponentEventMetadata {}; } // namespace ScriptModuleMinecraft diff --git a/src/mc/scripting/modules/minecraft/events/metadata/ScriptCustomComponentScriptInterface.h b/src/mc/scripting/modules/minecraft/events/metadata/ScriptCustomComponentScriptInterface.h index b13a53657f..4eb5a24e9e 100644 --- a/src/mc/scripting/modules/minecraft/events/metadata/ScriptCustomComponentScriptInterface.h +++ b/src/mc/scripting/modules/minecraft/events/metadata/ScriptCustomComponentScriptInterface.h @@ -5,12 +5,6 @@ namespace ScriptModuleMinecraft { template -class ScriptCustomComponentScriptInterface { -public: - // prevent constructor by default - ScriptCustomComponentScriptInterface& operator=(ScriptCustomComponentScriptInterface const&); - ScriptCustomComponentScriptInterface(ScriptCustomComponentScriptInterface const&); - ScriptCustomComponentScriptInterface(); -}; +class ScriptCustomComponentScriptInterface {}; } // namespace ScriptModuleMinecraft diff --git a/src/mc/scripting/modules/minecraft/input/ScriptInputMode.h b/src/mc/scripting/modules/minecraft/input/ScriptInputMode.h index 21beb48d2b..b4791db0e0 100644 --- a/src/mc/scripting/modules/minecraft/input/ScriptInputMode.h +++ b/src/mc/scripting/modules/minecraft/input/ScriptInputMode.h @@ -13,12 +13,6 @@ namespace Scripting { struct EnumBinding; } namespace ScriptModuleMinecraft { struct ScriptInputMode { -public: - // prevent constructor by default - ScriptInputMode& operator=(ScriptInputMode const&); - ScriptInputMode(ScriptInputMode const&); - ScriptInputMode(); - public: // static functions // NOLINTBEGIN diff --git a/src/mc/scripting/modules/minecraft/items/IScriptItemCustomComponentRegistry.h b/src/mc/scripting/modules/minecraft/items/IScriptItemCustomComponentRegistry.h index bcc410c149..760cd53f30 100644 --- a/src/mc/scripting/modules/minecraft/items/IScriptItemCustomComponentRegistry.h +++ b/src/mc/scripting/modules/minecraft/items/IScriptItemCustomComponentRegistry.h @@ -21,12 +21,6 @@ namespace cereal { struct ReflectionCtx; } namespace ScriptModuleMinecraft { class IScriptItemCustomComponentRegistry { -public: - // prevent constructor by default - IScriptItemCustomComponentRegistry& operator=(IScriptItemCustomComponentRegistry const&); - IScriptItemCustomComponentRegistry(IScriptItemCustomComponentRegistry const&); - IScriptItemCustomComponentRegistry(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/scripting/modules/minecraft/items/ScriptDyeColor.h b/src/mc/scripting/modules/minecraft/items/ScriptDyeColor.h index 6eaa351ad8..ce3db9fc17 100644 --- a/src/mc/scripting/modules/minecraft/items/ScriptDyeColor.h +++ b/src/mc/scripting/modules/minecraft/items/ScriptDyeColor.h @@ -9,12 +9,6 @@ namespace ScriptModuleMinecraft { class ScriptDyeColor { -public: - // prevent constructor by default - ScriptDyeColor& operator=(ScriptDyeColor const&); - ScriptDyeColor(ScriptDyeColor const&); - ScriptDyeColor(); - public: // static functions // NOLINTBEGIN diff --git a/src/mc/scripting/modules/minecraft/items/ScriptEquipmentSlot.h b/src/mc/scripting/modules/minecraft/items/ScriptEquipmentSlot.h index e64c3160d8..c80c009f2a 100644 --- a/src/mc/scripting/modules/minecraft/items/ScriptEquipmentSlot.h +++ b/src/mc/scripting/modules/minecraft/items/ScriptEquipmentSlot.h @@ -9,12 +9,6 @@ namespace ScriptModuleMinecraft { struct ScriptEquipmentSlot { -public: - // prevent constructor by default - ScriptEquipmentSlot& operator=(ScriptEquipmentSlot const&); - ScriptEquipmentSlot(ScriptEquipmentSlot const&); - ScriptEquipmentSlot(); - public: // static functions // NOLINTBEGIN diff --git a/src/mc/scripting/modules/minecraft/items/ScriptInvalidContainerSlotError.h b/src/mc/scripting/modules/minecraft/items/ScriptInvalidContainerSlotError.h index 7cfd5b9ff9..3d62e950ff 100644 --- a/src/mc/scripting/modules/minecraft/items/ScriptInvalidContainerSlotError.h +++ b/src/mc/scripting/modules/minecraft/items/ScriptInvalidContainerSlotError.h @@ -9,11 +9,6 @@ namespace ScriptModuleMinecraft { struct ScriptInvalidContainerSlotError : public ::Scripting::Error { -public: - // prevent constructor by default - ScriptInvalidContainerSlotError& operator=(ScriptInvalidContainerSlotError const&); - ScriptInvalidContainerSlotError(ScriptInvalidContainerSlotError const&); - public: // member functions // NOLINTBEGIN diff --git a/src/mc/scripting/modules/minecraft/items/ScriptItemCustomComponentAlreadyRegisteredError.h b/src/mc/scripting/modules/minecraft/items/ScriptItemCustomComponentAlreadyRegisteredError.h index 3ca8f9638b..5f2a68fd2f 100644 --- a/src/mc/scripting/modules/minecraft/items/ScriptItemCustomComponentAlreadyRegisteredError.h +++ b/src/mc/scripting/modules/minecraft/items/ScriptItemCustomComponentAlreadyRegisteredError.h @@ -13,12 +13,6 @@ namespace Scripting { struct ErrorBinding; } namespace ScriptModuleMinecraft { struct ScriptItemCustomComponentAlreadyRegisteredError : public ::Scripting::Error { -public: - // prevent constructor by default - ScriptItemCustomComponentAlreadyRegisteredError& operator=(ScriptItemCustomComponentAlreadyRegisteredError const&); - ScriptItemCustomComponentAlreadyRegisteredError(ScriptItemCustomComponentAlreadyRegisteredError const&); - ScriptItemCustomComponentAlreadyRegisteredError(); - public: // member functions // NOLINTBEGIN diff --git a/src/mc/scripting/modules/minecraft/items/ScriptItemCustomComponentReloadNewComponentError.h b/src/mc/scripting/modules/minecraft/items/ScriptItemCustomComponentReloadNewComponentError.h index 016786a86b..b63a8e975b 100644 --- a/src/mc/scripting/modules/minecraft/items/ScriptItemCustomComponentReloadNewComponentError.h +++ b/src/mc/scripting/modules/minecraft/items/ScriptItemCustomComponentReloadNewComponentError.h @@ -13,13 +13,6 @@ namespace Scripting { struct ErrorBinding; } namespace ScriptModuleMinecraft { struct ScriptItemCustomComponentReloadNewComponentError : public ::Scripting::Error { -public: - // prevent constructor by default - ScriptItemCustomComponentReloadNewComponentError& - operator=(ScriptItemCustomComponentReloadNewComponentError const&); - ScriptItemCustomComponentReloadNewComponentError(ScriptItemCustomComponentReloadNewComponentError const&); - ScriptItemCustomComponentReloadNewComponentError(); - public: // member functions // NOLINTBEGIN diff --git a/src/mc/scripting/modules/minecraft/items/ScriptItemCustomComponentReloadNewEventError.h b/src/mc/scripting/modules/minecraft/items/ScriptItemCustomComponentReloadNewEventError.h index 24a7250e8a..96da1561a8 100644 --- a/src/mc/scripting/modules/minecraft/items/ScriptItemCustomComponentReloadNewEventError.h +++ b/src/mc/scripting/modules/minecraft/items/ScriptItemCustomComponentReloadNewEventError.h @@ -13,12 +13,6 @@ namespace Scripting { struct ErrorBinding; } namespace ScriptModuleMinecraft { struct ScriptItemCustomComponentReloadNewEventError : public ::Scripting::Error { -public: - // prevent constructor by default - ScriptItemCustomComponentReloadNewEventError& operator=(ScriptItemCustomComponentReloadNewEventError const&); - ScriptItemCustomComponentReloadNewEventError(ScriptItemCustomComponentReloadNewEventError const&); - ScriptItemCustomComponentReloadNewEventError(); - public: // member functions // NOLINTBEGIN diff --git a/src/mc/scripting/modules/minecraft/items/ScriptItemCustomComponentReloadVersionError.h b/src/mc/scripting/modules/minecraft/items/ScriptItemCustomComponentReloadVersionError.h index 336ec95651..9df1cd24d2 100644 --- a/src/mc/scripting/modules/minecraft/items/ScriptItemCustomComponentReloadVersionError.h +++ b/src/mc/scripting/modules/minecraft/items/ScriptItemCustomComponentReloadVersionError.h @@ -14,12 +14,6 @@ namespace Scripting { struct ErrorBinding; } namespace ScriptModuleMinecraft { struct ScriptItemCustomComponentReloadVersionError : public ::Scripting::Error { -public: - // prevent constructor by default - ScriptItemCustomComponentReloadVersionError& operator=(ScriptItemCustomComponentReloadVersionError const&); - ScriptItemCustomComponentReloadVersionError(ScriptItemCustomComponentReloadVersionError const&); - ScriptItemCustomComponentReloadVersionError(); - public: // member functions // NOLINTBEGIN diff --git a/src/mc/scripting/modules/minecraft/items/ScriptItemEnchantmentLevelOutOfBoundsError.h b/src/mc/scripting/modules/minecraft/items/ScriptItemEnchantmentLevelOutOfBoundsError.h index 479bdb4bf2..2767970f56 100644 --- a/src/mc/scripting/modules/minecraft/items/ScriptItemEnchantmentLevelOutOfBoundsError.h +++ b/src/mc/scripting/modules/minecraft/items/ScriptItemEnchantmentLevelOutOfBoundsError.h @@ -9,12 +9,6 @@ namespace ScriptModuleMinecraft { struct ScriptItemEnchantmentLevelOutOfBoundsError : public ::Scripting::Error { -public: - // prevent constructor by default - ScriptItemEnchantmentLevelOutOfBoundsError& operator=(ScriptItemEnchantmentLevelOutOfBoundsError const&); - ScriptItemEnchantmentLevelOutOfBoundsError(ScriptItemEnchantmentLevelOutOfBoundsError const&); - ScriptItemEnchantmentLevelOutOfBoundsError(); - public: // member functions // NOLINTBEGIN diff --git a/src/mc/scripting/modules/minecraft/items/ScriptItemEnchantmentSlot.h b/src/mc/scripting/modules/minecraft/items/ScriptItemEnchantmentSlot.h index b7500648ed..f2ab4d4990 100644 --- a/src/mc/scripting/modules/minecraft/items/ScriptItemEnchantmentSlot.h +++ b/src/mc/scripting/modules/minecraft/items/ScriptItemEnchantmentSlot.h @@ -9,12 +9,6 @@ namespace ScriptModuleMinecraft { struct ScriptItemEnchantmentSlot { -public: - // prevent constructor by default - ScriptItemEnchantmentSlot& operator=(ScriptItemEnchantmentSlot const&); - ScriptItemEnchantmentSlot(ScriptItemEnchantmentSlot const&); - ScriptItemEnchantmentSlot(); - public: // static functions // NOLINTBEGIN diff --git a/src/mc/scripting/modules/minecraft/items/ScriptItemEnchantmentTypeNotCompatibleError.h b/src/mc/scripting/modules/minecraft/items/ScriptItemEnchantmentTypeNotCompatibleError.h index fbe8f8ebed..b3e7c10ac2 100644 --- a/src/mc/scripting/modules/minecraft/items/ScriptItemEnchantmentTypeNotCompatibleError.h +++ b/src/mc/scripting/modules/minecraft/items/ScriptItemEnchantmentTypeNotCompatibleError.h @@ -9,12 +9,6 @@ namespace ScriptModuleMinecraft { struct ScriptItemEnchantmentTypeNotCompatibleError : public ::Scripting::Error { -public: - // prevent constructor by default - ScriptItemEnchantmentTypeNotCompatibleError& operator=(ScriptItemEnchantmentTypeNotCompatibleError const&); - ScriptItemEnchantmentTypeNotCompatibleError(ScriptItemEnchantmentTypeNotCompatibleError const&); - ScriptItemEnchantmentTypeNotCompatibleError(); - public: // static functions // NOLINTBEGIN diff --git a/src/mc/scripting/modules/minecraft/items/ScriptItemEnchantmentUnknownIdError.h b/src/mc/scripting/modules/minecraft/items/ScriptItemEnchantmentUnknownIdError.h index e02f09ae0d..8cd25005c1 100644 --- a/src/mc/scripting/modules/minecraft/items/ScriptItemEnchantmentUnknownIdError.h +++ b/src/mc/scripting/modules/minecraft/items/ScriptItemEnchantmentUnknownIdError.h @@ -9,11 +9,6 @@ namespace ScriptModuleMinecraft { struct ScriptItemEnchantmentUnknownIdError : public ::Scripting::Error { -public: - // prevent constructor by default - ScriptItemEnchantmentUnknownIdError& operator=(ScriptItemEnchantmentUnknownIdError const&); - ScriptItemEnchantmentUnknownIdError(ScriptItemEnchantmentUnknownIdError const&); - public: // member functions // NOLINTBEGIN diff --git a/src/mc/scripting/modules/minecraft/items/ScriptItemUtilities.h b/src/mc/scripting/modules/minecraft/items/ScriptItemUtilities.h index 21e1241173..186008059a 100644 --- a/src/mc/scripting/modules/minecraft/items/ScriptItemUtilities.h +++ b/src/mc/scripting/modules/minecraft/items/ScriptItemUtilities.h @@ -14,12 +14,6 @@ namespace Scripting { struct Error; } namespace ScriptModuleMinecraft { class ScriptItemUtilities { -public: - // prevent constructor by default - ScriptItemUtilities& operator=(ScriptItemUtilities const&); - ScriptItemUtilities(ScriptItemUtilities const&); - ScriptItemUtilities(); - public: // static functions // NOLINTBEGIN diff --git a/src/mc/scripting/modules/minecraft/items/components/IScriptItemComponentFactory.h b/src/mc/scripting/modules/minecraft/items/components/IScriptItemComponentFactory.h index f2a7d0eb35..34d94d3ed7 100644 --- a/src/mc/scripting/modules/minecraft/items/components/IScriptItemComponentFactory.h +++ b/src/mc/scripting/modules/minecraft/items/components/IScriptItemComponentFactory.h @@ -18,12 +18,6 @@ namespace Scripting { struct ClassBinding; } namespace ScriptModuleMinecraft { class IScriptItemComponentFactory { -public: - // prevent constructor by default - IScriptItemComponentFactory& operator=(IScriptItemComponentFactory const&); - IScriptItemComponentFactory(IScriptItemComponentFactory const&); - IScriptItemComponentFactory(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/scripting/modules/minecraft/items/components/ScriptFoodComponent.h b/src/mc/scripting/modules/minecraft/items/components/ScriptFoodComponent.h index 80ecd00738..5acf3578c7 100644 --- a/src/mc/scripting/modules/minecraft/items/components/ScriptFoodComponent.h +++ b/src/mc/scripting/modules/minecraft/items/components/ScriptFoodComponent.h @@ -15,12 +15,6 @@ namespace ScriptModuleMinecraft { class ScriptComponentTypeEnumBuilder; } namespace ScriptModuleMinecraft { class ScriptFoodComponent : public ::ScriptModuleMinecraft::ScriptItemComponent { -public: - // prevent constructor by default - ScriptFoodComponent& operator=(ScriptFoodComponent const&); - ScriptFoodComponent(ScriptFoodComponent const&); - ScriptFoodComponent(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/scripting/modules/minecraft/items/components/ScriptItemComponents.h b/src/mc/scripting/modules/minecraft/items/components/ScriptItemComponents.h index 8ebf0d1541..094be7729c 100644 --- a/src/mc/scripting/modules/minecraft/items/components/ScriptItemComponents.h +++ b/src/mc/scripting/modules/minecraft/items/components/ScriptItemComponents.h @@ -14,12 +14,6 @@ namespace Scripting { class ModuleBindingBuilder; } namespace ScriptModuleMinecraft { class ScriptItemComponents { -public: - // prevent constructor by default - ScriptItemComponents& operator=(ScriptItemComponents const&); - ScriptItemComponents(ScriptItemComponents const&); - ScriptItemComponents(); - public: // static functions // NOLINTBEGIN diff --git a/src/mc/scripting/modules/minecraft/items/components/ScriptItemCompostableComponent.h b/src/mc/scripting/modules/minecraft/items/components/ScriptItemCompostableComponent.h index 5a31cad024..96486a4951 100644 --- a/src/mc/scripting/modules/minecraft/items/components/ScriptItemCompostableComponent.h +++ b/src/mc/scripting/modules/minecraft/items/components/ScriptItemCompostableComponent.h @@ -16,12 +16,6 @@ namespace Scripting { struct Error; } namespace ScriptModuleMinecraft { class ScriptItemCompostableComponent : public ::ScriptModuleMinecraft::ScriptItemComponent { -public: - // prevent constructor by default - ScriptItemCompostableComponent& operator=(ScriptItemCompostableComponent const&); - ScriptItemCompostableComponent(ScriptItemCompostableComponent const&); - ScriptItemCompostableComponent(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/scripting/modules/minecraft/items/components/ScriptItemCooldownComponent.h b/src/mc/scripting/modules/minecraft/items/components/ScriptItemCooldownComponent.h index 12741f0096..8f65f79fe2 100644 --- a/src/mc/scripting/modules/minecraft/items/components/ScriptItemCooldownComponent.h +++ b/src/mc/scripting/modules/minecraft/items/components/ScriptItemCooldownComponent.h @@ -17,12 +17,6 @@ namespace ScriptModuleMinecraft { class ScriptPlayer; } namespace ScriptModuleMinecraft { class ScriptItemCooldownComponent : public ::ScriptModuleMinecraft::ScriptItemComponent { -public: - // prevent constructor by default - ScriptItemCooldownComponent& operator=(ScriptItemCooldownComponent const&); - ScriptItemCooldownComponent(ScriptItemCooldownComponent const&); - ScriptItemCooldownComponent(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/scripting/modules/minecraft/items/components/ScriptItemDurabilityComponent.h b/src/mc/scripting/modules/minecraft/items/components/ScriptItemDurabilityComponent.h index 660531a5bf..500f0c5b0c 100644 --- a/src/mc/scripting/modules/minecraft/items/components/ScriptItemDurabilityComponent.h +++ b/src/mc/scripting/modules/minecraft/items/components/ScriptItemDurabilityComponent.h @@ -18,12 +18,6 @@ namespace Scripting { struct NumberRange; } namespace ScriptModuleMinecraft { class ScriptItemDurabilityComponent : public ::ScriptModuleMinecraft::ScriptItemComponent { -public: - // prevent constructor by default - ScriptItemDurabilityComponent& operator=(ScriptItemDurabilityComponent const&); - ScriptItemDurabilityComponent(ScriptItemDurabilityComponent const&); - ScriptItemDurabilityComponent(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/scripting/modules/minecraft/items/components/ScriptItemDyeableComponent.h b/src/mc/scripting/modules/minecraft/items/components/ScriptItemDyeableComponent.h index 82d54294e0..4060ecdfde 100644 --- a/src/mc/scripting/modules/minecraft/items/components/ScriptItemDyeableComponent.h +++ b/src/mc/scripting/modules/minecraft/items/components/ScriptItemDyeableComponent.h @@ -18,12 +18,6 @@ namespace Scripting { struct InvalidArgumentError; } namespace ScriptModuleMinecraft { class ScriptItemDyeableComponent : public ::ScriptModuleMinecraft::ScriptItemComponent { -public: - // prevent constructor by default - ScriptItemDyeableComponent& operator=(ScriptItemDyeableComponent const&); - ScriptItemDyeableComponent(ScriptItemDyeableComponent const&); - ScriptItemDyeableComponent(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/scripting/modules/minecraft/items/components/ScriptItemPotionComponent.h b/src/mc/scripting/modules/minecraft/items/components/ScriptItemPotionComponent.h index 7a2f9400ce..2c67ad3112 100644 --- a/src/mc/scripting/modules/minecraft/items/components/ScriptItemPotionComponent.h +++ b/src/mc/scripting/modules/minecraft/items/components/ScriptItemPotionComponent.h @@ -19,12 +19,6 @@ namespace ScriptModuleMinecraft { class ScriptPotionModifierType; } namespace ScriptModuleMinecraft { class ScriptItemPotionComponent : public ::ScriptModuleMinecraft::ScriptItemComponent { -public: - // prevent constructor by default - ScriptItemPotionComponent& operator=(ScriptItemPotionComponent const&); - ScriptItemPotionComponent(ScriptItemPotionComponent const&); - ScriptItemPotionComponent(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/scripting/modules/minecraft/npc/ScriptNpcComponent.h b/src/mc/scripting/modules/minecraft/npc/ScriptNpcComponent.h index 6a8346c4f2..24a941c252 100644 --- a/src/mc/scripting/modules/minecraft/npc/ScriptNpcComponent.h +++ b/src/mc/scripting/modules/minecraft/npc/ScriptNpcComponent.h @@ -18,12 +18,6 @@ namespace Scripting { struct Error; } namespace ScriptModuleMinecraft { class ScriptNpcComponent : public ::ScriptModuleMinecraft::ScriptActorComponent { -public: - // prevent constructor by default - ScriptNpcComponent& operator=(ScriptNpcComponent const&); - ScriptNpcComponent(ScriptNpcComponent const&); - ScriptNpcComponent(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/scripting/modules/minecraft/npc/ScriptNpcComponentFactory.h b/src/mc/scripting/modules/minecraft/npc/ScriptNpcComponentFactory.h index bee127a352..498f5435e9 100644 --- a/src/mc/scripting/modules/minecraft/npc/ScriptNpcComponentFactory.h +++ b/src/mc/scripting/modules/minecraft/npc/ScriptNpcComponentFactory.h @@ -16,12 +16,6 @@ namespace Scripting { class WeakLifetimeScope; } namespace ScriptModuleMinecraft { class ScriptNpcComponentFactory : public ::ScriptModuleMinecraft::IComponentFactory { -public: - // prevent constructor by default - ScriptNpcComponentFactory& operator=(ScriptNpcComponentFactory const&); - ScriptNpcComponentFactory(ScriptNpcComponentFactory const&); - ScriptNpcComponentFactory(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/scripting/modules/minecraft/player/ScriptPlayerIterator.h b/src/mc/scripting/modules/minecraft/player/ScriptPlayerIterator.h index ed3164a440..42aae59474 100644 --- a/src/mc/scripting/modules/minecraft/player/ScriptPlayerIterator.h +++ b/src/mc/scripting/modules/minecraft/player/ScriptPlayerIterator.h @@ -17,12 +17,6 @@ namespace ScriptModuleMinecraft { class ScriptPlayerIterator : public ::ScriptModuleMinecraft::ScriptVectorIterator< ::ScriptModuleMinecraft::ScriptPlayerIterator, ::Scripting::StrongTypedObjectHandle<::ScriptModuleMinecraft::ScriptPlayer>> { -public: - // prevent constructor by default - ScriptPlayerIterator& operator=(ScriptPlayerIterator const&); - ScriptPlayerIterator(ScriptPlayerIterator const&); - ScriptPlayerIterator(); - public: // member functions // NOLINTBEGIN diff --git a/src/mc/scripting/modules/minecraft/scoreboard/ScriptObjectiveSortOrder.h b/src/mc/scripting/modules/minecraft/scoreboard/ScriptObjectiveSortOrder.h index 79e89939b0..437746cd86 100644 --- a/src/mc/scripting/modules/minecraft/scoreboard/ScriptObjectiveSortOrder.h +++ b/src/mc/scripting/modules/minecraft/scoreboard/ScriptObjectiveSortOrder.h @@ -9,12 +9,6 @@ namespace ScriptModuleMinecraft { struct ScriptObjectiveSortOrder { -public: - // prevent constructor by default - ScriptObjectiveSortOrder& operator=(ScriptObjectiveSortOrder const&); - ScriptObjectiveSortOrder(ScriptObjectiveSortOrder const&); - ScriptObjectiveSortOrder(); - public: // static functions // NOLINTBEGIN diff --git a/src/mc/scripting/modules/minecraft/scoreboard/ScriptScoreboardFactory.h b/src/mc/scripting/modules/minecraft/scoreboard/ScriptScoreboardFactory.h index 948280dfd1..95b3688962 100644 --- a/src/mc/scripting/modules/minecraft/scoreboard/ScriptScoreboardFactory.h +++ b/src/mc/scripting/modules/minecraft/scoreboard/ScriptScoreboardFactory.h @@ -15,12 +15,6 @@ namespace Scripting { class WeakLifetimeScope; } namespace ScriptModuleMinecraft { class ScriptScoreboardFactory { -public: - // prevent constructor by default - ScriptScoreboardFactory& operator=(ScriptScoreboardFactory const&); - ScriptScoreboardFactory(ScriptScoreboardFactory const&); - ScriptScoreboardFactory(); - public: // static functions // NOLINTBEGIN diff --git a/src/mc/scripting/modules/minecraft/scoreboard/ScriptScoreboardIdentityType.h b/src/mc/scripting/modules/minecraft/scoreboard/ScriptScoreboardIdentityType.h index c40dbfcabe..60959f3b96 100644 --- a/src/mc/scripting/modules/minecraft/scoreboard/ScriptScoreboardIdentityType.h +++ b/src/mc/scripting/modules/minecraft/scoreboard/ScriptScoreboardIdentityType.h @@ -9,12 +9,6 @@ namespace ScriptModuleMinecraft { struct ScriptScoreboardIdentityType { -public: - // prevent constructor by default - ScriptScoreboardIdentityType& operator=(ScriptScoreboardIdentityType const&); - ScriptScoreboardIdentityType(ScriptScoreboardIdentityType const&); - ScriptScoreboardIdentityType(); - public: // static functions // NOLINTBEGIN diff --git a/src/mc/scripting/modules/minecraft/structure/ScriptInvalidStructureError.h b/src/mc/scripting/modules/minecraft/structure/ScriptInvalidStructureError.h index 0e40cacbec..4ad5b29ceb 100644 --- a/src/mc/scripting/modules/minecraft/structure/ScriptInvalidStructureError.h +++ b/src/mc/scripting/modules/minecraft/structure/ScriptInvalidStructureError.h @@ -9,11 +9,6 @@ namespace ScriptModuleMinecraft { struct ScriptInvalidStructureError : public ::Scripting::Error { -public: - // prevent constructor by default - ScriptInvalidStructureError& operator=(ScriptInvalidStructureError const&); - ScriptInvalidStructureError(ScriptInvalidStructureError const&); - public: // member functions // NOLINTBEGIN diff --git a/src/mc/scripting/modules/minecraft/structure/ScriptPlaceJigsawError.h b/src/mc/scripting/modules/minecraft/structure/ScriptPlaceJigsawError.h index 57fd26de38..203c626d9a 100644 --- a/src/mc/scripting/modules/minecraft/structure/ScriptPlaceJigsawError.h +++ b/src/mc/scripting/modules/minecraft/structure/ScriptPlaceJigsawError.h @@ -9,12 +9,6 @@ namespace ScriptModuleMinecraft { struct ScriptPlaceJigsawError : public ::Scripting::Error { -public: - // prevent constructor by default - ScriptPlaceJigsawError& operator=(ScriptPlaceJigsawError const&); - ScriptPlaceJigsawError(ScriptPlaceJigsawError const&); - ScriptPlaceJigsawError(); - public: // member functions // NOLINTBEGIN diff --git a/src/mc/scripting/modules/minecraft_net/ScriptNetRequestMethod.h b/src/mc/scripting/modules/minecraft_net/ScriptNetRequestMethod.h index 17c05ffc6f..6d9019a312 100644 --- a/src/mc/scripting/modules/minecraft_net/ScriptNetRequestMethod.h +++ b/src/mc/scripting/modules/minecraft_net/ScriptNetRequestMethod.h @@ -13,12 +13,6 @@ namespace Bedrock::Http { struct Method; } namespace ScriptModuleMinecraftNet { struct ScriptNetRequestMethod { -public: - // prevent constructor by default - ScriptNetRequestMethod& operator=(ScriptNetRequestMethod const&); - ScriptNetRequestMethod(ScriptNetRequestMethod const&); - ScriptNetRequestMethod(); - public: // static functions // NOLINTBEGIN diff --git a/src/mc/scripting/modules/minecraft_net/events/IScriptNetworkBeforeEvents.h b/src/mc/scripting/modules/minecraft_net/events/IScriptNetworkBeforeEvents.h index e931ace5a1..8285d4ea2f 100644 --- a/src/mc/scripting/modules/minecraft_net/events/IScriptNetworkBeforeEvents.h +++ b/src/mc/scripting/modules/minecraft_net/events/IScriptNetworkBeforeEvents.h @@ -16,12 +16,6 @@ namespace ScriptModuleMinecraftNet { struct ScriptPacketSendBeforeEvent; } namespace ScriptModuleMinecraftNet { class IScriptNetworkBeforeEvents { -public: - // prevent constructor by default - IScriptNetworkBeforeEvents& operator=(IScriptNetworkBeforeEvents const&); - IScriptNetworkBeforeEvents(IScriptNetworkBeforeEvents const&); - IScriptNetworkBeforeEvents(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/scripting/modules/minecraft_ui/IControl.h b/src/mc/scripting/modules/minecraft_ui/IControl.h index 5be7d4f85e..37129fa6fa 100644 --- a/src/mc/scripting/modules/minecraft_ui/IControl.h +++ b/src/mc/scripting/modules/minecraft_ui/IControl.h @@ -15,12 +15,6 @@ namespace Json { class Value; } namespace ScriptModuleMinecraftServerUI { class IControl { -public: - // prevent constructor by default - IControl& operator=(IControl const&); - IControl(IControl const&); - IControl(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/scripting/modules/minecraft_ui/ScriptUIManager.h b/src/mc/scripting/modules/minecraft_ui/ScriptUIManager.h index b8b9e42d89..3755cdaacf 100644 --- a/src/mc/scripting/modules/minecraft_ui/ScriptUIManager.h +++ b/src/mc/scripting/modules/minecraft_ui/ScriptUIManager.h @@ -14,11 +14,6 @@ namespace ScriptModuleMinecraft { class ScriptPlayer; } namespace ScriptModuleMinecraftServerUI { class ScriptUIManager { -public: - // prevent constructor by default - ScriptUIManager& operator=(ScriptUIManager const&); - ScriptUIManager(ScriptUIManager const&); - public: // member functions // NOLINTBEGIN diff --git a/src/mc/scripting/modules/server_admin/ScriptServerAdmin.h b/src/mc/scripting/modules/server_admin/ScriptServerAdmin.h index 293af74b9c..16c973f61f 100644 --- a/src/mc/scripting/modules/server_admin/ScriptServerAdmin.h +++ b/src/mc/scripting/modules/server_admin/ScriptServerAdmin.h @@ -13,12 +13,6 @@ namespace ScriptModuleMinecraft { class ScriptPlayer; } namespace ScriptModuleServerAdmin { class ScriptServerAdmin { -public: - // prevent constructor by default - ScriptServerAdmin& operator=(ScriptServerAdmin const&); - ScriptServerAdmin(ScriptServerAdmin const&); - ScriptServerAdmin(); - public: // static functions // NOLINTBEGIN diff --git a/src/mc/scripting/watchdog/ScriptWatchdogMinecraftDefaults.h b/src/mc/scripting/watchdog/ScriptWatchdogMinecraftDefaults.h index 7cfa4cbb19..0173df463d 100644 --- a/src/mc/scripting/watchdog/ScriptWatchdogMinecraftDefaults.h +++ b/src/mc/scripting/watchdog/ScriptWatchdogMinecraftDefaults.h @@ -2,10 +2,4 @@ #include "mc/_HeaderOutputPredefine.h" -struct ScriptWatchdogMinecraftDefaults { -public: - // prevent constructor by default - ScriptWatchdogMinecraftDefaults& operator=(ScriptWatchdogMinecraftDefaults const&); - ScriptWatchdogMinecraftDefaults(ScriptWatchdogMinecraftDefaults const&); - ScriptWatchdogMinecraftDefaults(); -}; +struct ScriptWatchdogMinecraftDefaults {}; diff --git a/src/mc/server/DedicatedServerCommands.h b/src/mc/server/DedicatedServerCommands.h index 3a4e937199..2b0ecd25de 100644 --- a/src/mc/server/DedicatedServerCommands.h +++ b/src/mc/server/DedicatedServerCommands.h @@ -17,12 +17,6 @@ struct ScriptSettings; // clang-format on class DedicatedServerCommands { -public: - // prevent constructor by default - DedicatedServerCommands& operator=(DedicatedServerCommands const&); - DedicatedServerCommands(DedicatedServerCommands const&); - DedicatedServerCommands(); - public: // static functions // NOLINTBEGIN diff --git a/src/mc/server/IPlayerSleepPercentageGetter.h b/src/mc/server/IPlayerSleepPercentageGetter.h index 7e4276e567..5bdab1cea0 100644 --- a/src/mc/server/IPlayerSleepPercentageGetter.h +++ b/src/mc/server/IPlayerSleepPercentageGetter.h @@ -3,12 +3,6 @@ #include "mc/_HeaderOutputPredefine.h" class IPlayerSleepPercentageGetter { -public: - // prevent constructor by default - IPlayerSleepPercentageGetter& operator=(IPlayerSleepPercentageGetter const&); - IPlayerSleepPercentageGetter(IPlayerSleepPercentageGetter const&); - IPlayerSleepPercentageGetter(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/server/IServerMapDataManagerConnector.h b/src/mc/server/IServerMapDataManagerConnector.h index 9bc5b5a4f2..c2657ce024 100644 --- a/src/mc/server/IServerMapDataManagerConnector.h +++ b/src/mc/server/IServerMapDataManagerConnector.h @@ -11,12 +11,6 @@ class MapItemSavedData; // clang-format on class IServerMapDataManagerConnector { -public: - // prevent constructor by default - IServerMapDataManagerConnector& operator=(IServerMapDataManagerConnector const&); - IServerMapDataManagerConnector(IServerMapDataManagerConnector const&); - IServerMapDataManagerConnector(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/server/IServerPlayerSleepManagerConnector.h b/src/mc/server/IServerPlayerSleepManagerConnector.h index c38ba704e2..3879184ba1 100644 --- a/src/mc/server/IServerPlayerSleepManagerConnector.h +++ b/src/mc/server/IServerPlayerSleepManagerConnector.h @@ -11,12 +11,6 @@ class Player; // clang-format on class IServerPlayerSleepManagerConnector { -public: - // prevent constructor by default - IServerPlayerSleepManagerConnector& operator=(IServerPlayerSleepManagerConnector const&); - IServerPlayerSleepManagerConnector(IServerPlayerSleepManagerConnector const&); - IServerPlayerSleepManagerConnector(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/server/ServerGameplayUserManagerProxy.h b/src/mc/server/ServerGameplayUserManagerProxy.h index 3f1ebb7421..c45311e2b4 100644 --- a/src/mc/server/ServerGameplayUserManagerProxy.h +++ b/src/mc/server/ServerGameplayUserManagerProxy.h @@ -11,12 +11,6 @@ class GameplayUserManager; // clang-format on class ServerGameplayUserManagerProxy : public ::GameplayUserManagerProxy { -public: - // prevent constructor by default - ServerGameplayUserManagerProxy& operator=(ServerGameplayUserManagerProxy const&); - ServerGameplayUserManagerProxy(ServerGameplayUserManagerProxy const&); - ServerGameplayUserManagerProxy(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/server/ServerMetrics.h b/src/mc/server/ServerMetrics.h index b8f3e48554..0f1468f3f0 100644 --- a/src/mc/server/ServerMetrics.h +++ b/src/mc/server/ServerMetrics.h @@ -8,12 +8,6 @@ class ServerInstance; // clang-format on class ServerMetrics { -public: - // prevent constructor by default - ServerMetrics& operator=(ServerMetrics const&); - ServerMetrics(ServerMetrics const&); - ServerMetrics(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/server/TestDedicatedServerCommands.h b/src/mc/server/TestDedicatedServerCommands.h index 979c6df24b..7ffbfe447a 100644 --- a/src/mc/server/TestDedicatedServerCommands.h +++ b/src/mc/server/TestDedicatedServerCommands.h @@ -2,10 +2,4 @@ #include "mc/_HeaderOutputPredefine.h" -class TestDedicatedServerCommands { -public: - // prevent constructor by default - TestDedicatedServerCommands& operator=(TestDedicatedServerCommands const&); - TestDedicatedServerCommands(TestDedicatedServerCommands const&); - TestDedicatedServerCommands(); -}; +class TestDedicatedServerCommands {}; diff --git a/src/mc/server/TextFilteringProcessor.h b/src/mc/server/TextFilteringProcessor.h index 9d978c1f1e..8446d9ac9f 100644 --- a/src/mc/server/TextFilteringProcessor.h +++ b/src/mc/server/TextFilteringProcessor.h @@ -16,12 +16,6 @@ class Player; // clang-format on class TextFilteringProcessor : public ::Bedrock::EnableNonOwnerReferences { -public: - // prevent constructor by default - TextFilteringProcessor& operator=(TextFilteringProcessor const&); - TextFilteringProcessor(TextFilteringProcessor const&); - TextFilteringProcessor(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/server/VanillaGameModuleDedicatedServer.h b/src/mc/server/VanillaGameModuleDedicatedServer.h index 9f20b86c16..e03e404cba 100644 --- a/src/mc/server/VanillaGameModuleDedicatedServer.h +++ b/src/mc/server/VanillaGameModuleDedicatedServer.h @@ -13,12 +13,6 @@ class ServerInstanceEventCoordinator; // clang-format on class VanillaGameModuleDedicatedServer : public ::IGameModuleShared { -public: - // prevent constructor by default - VanillaGameModuleDedicatedServer& operator=(VanillaGameModuleDedicatedServer const&); - VanillaGameModuleDedicatedServer(VanillaGameModuleDedicatedServer const&); - VanillaGameModuleDedicatedServer(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/server/commands/ClearRealmEventsCommand.h b/src/mc/server/commands/ClearRealmEventsCommand.h index bffa09d51d..9527d90a2e 100644 --- a/src/mc/server/commands/ClearRealmEventsCommand.h +++ b/src/mc/server/commands/ClearRealmEventsCommand.h @@ -14,12 +14,6 @@ class DedicatedServer; // clang-format on class ClearRealmEventsCommand : public ::ServerCommand { -public: - // prevent constructor by default - ClearRealmEventsCommand& operator=(ClearRealmEventsCommand const&); - ClearRealmEventsCommand(ClearRealmEventsCommand const&); - ClearRealmEventsCommand(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/server/commands/CodeBuilderServerCommands.h b/src/mc/server/commands/CodeBuilderServerCommands.h index 1a39d5d907..ee89df5253 100644 --- a/src/mc/server/commands/CodeBuilderServerCommands.h +++ b/src/mc/server/commands/CodeBuilderServerCommands.h @@ -8,12 +8,6 @@ class Minecraft; // clang-format on class CodeBuilderServerCommands { -public: - // prevent constructor by default - CodeBuilderServerCommands& operator=(CodeBuilderServerCommands const&); - CodeBuilderServerCommands(CodeBuilderServerCommands const&); - CodeBuilderServerCommands(); - public: // static functions // NOLINTBEGIN diff --git a/src/mc/server/commands/CommandRegistry.h b/src/mc/server/commands/CommandRegistry.h index fd776ae9f1..3cd1e40c23 100644 --- a/src/mc/server/commands/CommandRegistry.h +++ b/src/mc/server/commands/CommandRegistry.h @@ -255,13 +255,7 @@ class CommandRegistry { struct SymbolHasher {}; - struct SymbolPairHasher { - public: - // prevent constructor by default - SymbolPairHasher& operator=(SymbolPairHasher const&); - SymbolPairHasher(SymbolPairHasher const&); - SymbolPairHasher(); - }; + struct SymbolPairHasher {}; using NonTerminal = ::CommandRegistry::Symbol; diff --git a/src/mc/server/commands/CommandSelector.h b/src/mc/server/commands/CommandSelector.h index d21771953b..0e6c288d8e 100644 --- a/src/mc/server/commands/CommandSelector.h +++ b/src/mc/server/commands/CommandSelector.h @@ -3,10 +3,4 @@ #include "mc/_HeaderOutputPredefine.h" template -class CommandSelector { -public: - // prevent constructor by default - CommandSelector& operator=(CommandSelector const&); - CommandSelector(CommandSelector const&); - CommandSelector(); -}; +class CommandSelector {}; diff --git a/src/mc/server/commands/CommandSelectorResults.h b/src/mc/server/commands/CommandSelectorResults.h index ce2901a8cc..dceb437b48 100644 --- a/src/mc/server/commands/CommandSelectorResults.h +++ b/src/mc/server/commands/CommandSelectorResults.h @@ -3,10 +3,4 @@ #include "mc/_HeaderOutputPredefine.h" template -class CommandSelectorResults { -public: - // prevent constructor by default - CommandSelectorResults& operator=(CommandSelectorResults const&); - CommandSelectorResults(CommandSelectorResults const&); - CommandSelectorResults(); -}; +class CommandSelectorResults {}; diff --git a/src/mc/server/commands/DeferredCommandBase.h b/src/mc/server/commands/DeferredCommandBase.h index 72def3451d..9ea0876f1a 100644 --- a/src/mc/server/commands/DeferredCommandBase.h +++ b/src/mc/server/commands/DeferredCommandBase.h @@ -8,12 +8,6 @@ class MinecraftCommands; // clang-format on class DeferredCommandBase { -public: - // prevent constructor by default - DeferredCommandBase& operator=(DeferredCommandBase const&); - DeferredCommandBase(DeferredCommandBase const&); - DeferredCommandBase(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/server/commands/DelayActionList.h b/src/mc/server/commands/DelayActionList.h index ef03d7c569..3f2c52a486 100644 --- a/src/mc/server/commands/DelayActionList.h +++ b/src/mc/server/commands/DelayActionList.h @@ -27,12 +27,6 @@ class DelayActionList { // DelayActionList inner types define class DelayRequestQueue : public ::MovePriorityQueue<::DelayRequest, ::std::greater<::DelayRequest>> { - public: - // prevent constructor by default - DelayRequestQueue& operator=(DelayRequestQueue const&); - DelayRequestQueue(DelayRequestQueue const&); - DelayRequestQueue(); - public: // member functions // NOLINTBEGIN diff --git a/src/mc/server/commands/GameDirectorEntityServerCommandOrigin.h b/src/mc/server/commands/GameDirectorEntityServerCommandOrigin.h index 4c92d18f3e..4eaeac0e2e 100644 --- a/src/mc/server/commands/GameDirectorEntityServerCommandOrigin.h +++ b/src/mc/server/commands/GameDirectorEntityServerCommandOrigin.h @@ -14,12 +14,6 @@ class CommandOrigin; // clang-format on class GameDirectorEntityServerCommandOrigin : public ::ActorServerCommandOrigin { -public: - // prevent constructor by default - GameDirectorEntityServerCommandOrigin& operator=(GameDirectorEntityServerCommandOrigin const&); - GameDirectorEntityServerCommandOrigin(GameDirectorEntityServerCommandOrigin const&); - GameDirectorEntityServerCommandOrigin(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/server/commands/GetEduServerInfoCommand.h b/src/mc/server/commands/GetEduServerInfoCommand.h index ea45ad7d80..77c2517dd1 100644 --- a/src/mc/server/commands/GetEduServerInfoCommand.h +++ b/src/mc/server/commands/GetEduServerInfoCommand.h @@ -13,12 +13,6 @@ class CommandRegistry; // clang-format on class GetEduServerInfoCommand : public ::Command { -public: - // prevent constructor by default - GetEduServerInfoCommand& operator=(GetEduServerInfoCommand const&); - GetEduServerInfoCommand(GetEduServerInfoCommand const&); - GetEduServerInfoCommand(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/server/commands/ICommandOriginLoader.h b/src/mc/server/commands/ICommandOriginLoader.h index 5bd224302f..18ca5eaecf 100644 --- a/src/mc/server/commands/ICommandOriginLoader.h +++ b/src/mc/server/commands/ICommandOriginLoader.h @@ -9,12 +9,6 @@ class CompoundTag; // clang-format on class ICommandOriginLoader { -public: - // prevent constructor by default - ICommandOriginLoader& operator=(ICommandOriginLoader const&); - ICommandOriginLoader(ICommandOriginLoader const&); - ICommandOriginLoader(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/server/commands/PrecompiledCommandOrigin.h b/src/mc/server/commands/PrecompiledCommandOrigin.h index 19f7a5e2ca..7ed5ca02cd 100644 --- a/src/mc/server/commands/PrecompiledCommandOrigin.h +++ b/src/mc/server/commands/PrecompiledCommandOrigin.h @@ -20,12 +20,6 @@ class Vec3; // clang-format on class PrecompiledCommandOrigin : public ::CommandOrigin { -public: - // prevent constructor by default - PrecompiledCommandOrigin& operator=(PrecompiledCommandOrigin const&); - PrecompiledCommandOrigin(PrecompiledCommandOrigin const&); - PrecompiledCommandOrigin(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/server/commands/ReloadConfigCommand.h b/src/mc/server/commands/ReloadConfigCommand.h index 6b35a2e234..1be4407ed9 100644 --- a/src/mc/server/commands/ReloadConfigCommand.h +++ b/src/mc/server/commands/ReloadConfigCommand.h @@ -14,12 +14,6 @@ struct ScriptSettings; // clang-format on class ReloadConfigCommand : public ::Command { -public: - // prevent constructor by default - ReloadConfigCommand& operator=(ReloadConfigCommand const&); - ReloadConfigCommand(ReloadConfigCommand const&); - ReloadConfigCommand(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/server/commands/ServerCommand.h b/src/mc/server/commands/ServerCommand.h index edb1c542fe..2cab40985e 100644 --- a/src/mc/server/commands/ServerCommand.h +++ b/src/mc/server/commands/ServerCommand.h @@ -19,12 +19,6 @@ class ServerNetworkHandler; // clang-format on class ServerCommand : public ::Command { -public: - // prevent constructor by default - ServerCommand& operator=(ServerCommand const&); - ServerCommand(ServerCommand const&); - ServerCommand(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/server/commands/StopCommand.h b/src/mc/server/commands/StopCommand.h index ad781587e2..ecb5fffdd9 100644 --- a/src/mc/server/commands/StopCommand.h +++ b/src/mc/server/commands/StopCommand.h @@ -14,12 +14,6 @@ class DedicatedServer; // clang-format on class StopCommand : public ::Command { -public: - // prevent constructor by default - StopCommand& operator=(StopCommand const&); - StopCommand(StopCommand const&); - StopCommand(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/server/commands/TestServerCommands.h b/src/mc/server/commands/TestServerCommands.h index 68670ebfd6..63073ac79c 100644 --- a/src/mc/server/commands/TestServerCommands.h +++ b/src/mc/server/commands/TestServerCommands.h @@ -2,10 +2,4 @@ #include "mc/_HeaderOutputPredefine.h" -class TestServerCommands { -public: - // prevent constructor by default - TestServerCommands& operator=(TestServerCommands const&); - TestServerCommands(TestServerCommands const&); - TestServerCommands(); -}; +class TestServerCommands {}; diff --git a/src/mc/server/commands/WildcardCommandSelector.h b/src/mc/server/commands/WildcardCommandSelector.h index 80b34d3c17..c42d6c2f0e 100644 --- a/src/mc/server/commands/WildcardCommandSelector.h +++ b/src/mc/server/commands/WildcardCommandSelector.h @@ -3,10 +3,4 @@ #include "mc/_HeaderOutputPredefine.h" template -class WildcardCommandSelector { -public: - // prevent constructor by default - WildcardCommandSelector& operator=(WildcardCommandSelector const&); - WildcardCommandSelector(WildcardCommandSelector const&); - WildcardCommandSelector(); -}; +class WildcardCommandSelector {}; diff --git a/src/mc/server/commands/edu/WorldBuilderCommand.h b/src/mc/server/commands/edu/WorldBuilderCommand.h index 2334c4abf2..18d999a29f 100644 --- a/src/mc/server/commands/edu/WorldBuilderCommand.h +++ b/src/mc/server/commands/edu/WorldBuilderCommand.h @@ -14,12 +14,6 @@ class LayeredAbilities; // clang-format on class WorldBuilderCommand : public ::Command { -public: - // prevent constructor by default - WorldBuilderCommand& operator=(WorldBuilderCommand const&); - WorldBuilderCommand(WorldBuilderCommand const&); - WorldBuilderCommand(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/server/commands/functions/CommandDispatcher.h b/src/mc/server/commands/functions/CommandDispatcher.h index 0d6999d37c..fe6669b313 100644 --- a/src/mc/server/commands/functions/CommandDispatcher.h +++ b/src/mc/server/commands/functions/CommandDispatcher.h @@ -12,12 +12,6 @@ class CommandOrigin; // clang-format on class CommandDispatcher : public ::ICommandDispatcher { -public: - // prevent constructor by default - CommandDispatcher& operator=(CommandDispatcher const&); - CommandDispatcher(CommandDispatcher const&); - CommandDispatcher(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/server/commands/functions/ICommandDispatcher.h b/src/mc/server/commands/functions/ICommandDispatcher.h index 4550c9f686..161bde980d 100644 --- a/src/mc/server/commands/functions/ICommandDispatcher.h +++ b/src/mc/server/commands/functions/ICommandDispatcher.h @@ -9,12 +9,6 @@ class CommandOrigin; // clang-format on class ICommandDispatcher { -public: - // prevent constructor by default - ICommandDispatcher& operator=(ICommandDispatcher const&); - ICommandDispatcher(ICommandDispatcher const&); - ICommandDispatcher(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/server/commands/functions/IFunctionEntry.h b/src/mc/server/commands/functions/IFunctionEntry.h index 38cce32c0d..cfa25ed7fa 100644 --- a/src/mc/server/commands/functions/IFunctionEntry.h +++ b/src/mc/server/commands/functions/IFunctionEntry.h @@ -12,12 +12,6 @@ class FunctionManager; // clang-format on class IFunctionEntry { -public: - // prevent constructor by default - IFunctionEntry& operator=(IFunctionEntry const&); - IFunctionEntry(IFunctionEntry const&); - IFunctionEntry(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/server/commands/shared/CloseWebSocketCommand.h b/src/mc/server/commands/shared/CloseWebSocketCommand.h index 7294c40cfe..03971fbfda 100644 --- a/src/mc/server/commands/shared/CloseWebSocketCommand.h +++ b/src/mc/server/commands/shared/CloseWebSocketCommand.h @@ -14,12 +14,6 @@ class IMinecraftApp; // clang-format on class CloseWebSocketCommand : public ::Command { -public: - // prevent constructor by default - CloseWebSocketCommand& operator=(CloseWebSocketCommand const&); - CloseWebSocketCommand(CloseWebSocketCommand const&); - CloseWebSocketCommand(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/server/commands/shared/ScriptDebugCommand.h b/src/mc/server/commands/shared/ScriptDebugCommand.h index bf69224023..909e14e048 100644 --- a/src/mc/server/commands/shared/ScriptDebugCommand.h +++ b/src/mc/server/commands/shared/ScriptDebugCommand.h @@ -36,11 +36,6 @@ class ScriptDebugCommand : public ::Command { ExportStats = 0, }; -public: - // prevent constructor by default - ScriptDebugCommand& operator=(ScriptDebugCommand const&); - ScriptDebugCommand(ScriptDebugCommand const&); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/server/commands/standard/ListCommand.h b/src/mc/server/commands/standard/ListCommand.h index 69d83315a7..a2992756ae 100644 --- a/src/mc/server/commands/standard/ListCommand.h +++ b/src/mc/server/commands/standard/ListCommand.h @@ -13,12 +13,6 @@ class CommandRegistry; // clang-format on class ListCommand : public ::ServerCommand { -public: - // prevent constructor by default - ListCommand& operator=(ListCommand const&); - ListCommand(ListCommand const&); - ListCommand(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/server/commands/standard/ToggleDownfallCommand.h b/src/mc/server/commands/standard/ToggleDownfallCommand.h index 4102977bbd..0e2a8bdce0 100644 --- a/src/mc/server/commands/standard/ToggleDownfallCommand.h +++ b/src/mc/server/commands/standard/ToggleDownfallCommand.h @@ -13,12 +13,6 @@ class CommandRegistry; // clang-format on class ToggleDownfallCommand : public ::Command { -public: - // prevent constructor by default - ToggleDownfallCommand& operator=(ToggleDownfallCommand const&); - ToggleDownfallCommand(ToggleDownfallCommand const&); - ToggleDownfallCommand(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/server/editor/api/EditorExtensionServiceProvider.h b/src/mc/server/editor/api/EditorExtensionServiceProvider.h index b02223be6e..1cd2989f7d 100644 --- a/src/mc/server/editor/api/EditorExtensionServiceProvider.h +++ b/src/mc/server/editor/api/EditorExtensionServiceProvider.h @@ -23,12 +23,6 @@ namespace Scripting { struct ContextId; } namespace Editor::API { class EditorExtensionServiceProvider { -public: - // prevent constructor by default - EditorExtensionServiceProvider& operator=(EditorExtensionServiceProvider const&); - EditorExtensionServiceProvider(EditorExtensionServiceProvider const&); - EditorExtensionServiceProvider(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/server/editor/api/EditorPlayerExtensionServiceProvider.h b/src/mc/server/editor/api/EditorPlayerExtensionServiceProvider.h index 7df9b84733..f2aec5cb2d 100644 --- a/src/mc/server/editor/api/EditorPlayerExtensionServiceProvider.h +++ b/src/mc/server/editor/api/EditorPlayerExtensionServiceProvider.h @@ -19,12 +19,6 @@ namespace Scripting { struct Error; } namespace Editor::API { class EditorPlayerExtensionServiceProvider { -public: - // prevent constructor by default - EditorPlayerExtensionServiceProvider& operator=(EditorPlayerExtensionServiceProvider const&); - EditorPlayerExtensionServiceProvider(EditorPlayerExtensionServiceProvider const&); - EditorPlayerExtensionServiceProvider(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/server/editor/block_utils/ServerBlockUtilityService.h b/src/mc/server/editor/block_utils/ServerBlockUtilityService.h index 585ea01869..7f8b580d02 100644 --- a/src/mc/server/editor/block_utils/ServerBlockUtilityService.h +++ b/src/mc/server/editor/block_utils/ServerBlockUtilityService.h @@ -20,12 +20,6 @@ namespace Editor::BlockUtils { class ServerBlockUtilityService : public ::Editor::BlockUtils::CommonBlockUtilityService, public ::Editor::BlockUtils::ServerBlockUtilityServiceProvider { -public: - // prevent constructor by default - ServerBlockUtilityService& operator=(ServerBlockUtilityService const&); - ServerBlockUtilityService(ServerBlockUtilityService const&); - ServerBlockUtilityService(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/server/editor/logging/ServerPlayerLogMessageHandlerService.h b/src/mc/server/editor/logging/ServerPlayerLogMessageHandlerService.h index 8b0d2ab71a..36f7d631e5 100644 --- a/src/mc/server/editor/logging/ServerPlayerLogMessageHandlerService.h +++ b/src/mc/server/editor/logging/ServerPlayerLogMessageHandlerService.h @@ -9,12 +9,6 @@ namespace Editor::Services { class ServerPlayerLogMessageHandlerService : public ::Editor::Services::IEditorService { -public: - // prevent constructor by default - ServerPlayerLogMessageHandlerService& operator=(ServerPlayerLogMessageHandlerService const&); - ServerPlayerLogMessageHandlerService(ServerPlayerLogMessageHandlerService const&); - ServerPlayerLogMessageHandlerService(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/server/editor/modules/EditorServerBindingsModuleFactory.h b/src/mc/server/editor/modules/EditorServerBindingsModuleFactory.h index 61441e83e3..75915dafae 100644 --- a/src/mc/server/editor/modules/EditorServerBindingsModuleFactory.h +++ b/src/mc/server/editor/modules/EditorServerBindingsModuleFactory.h @@ -17,12 +17,6 @@ namespace Scripting { struct Version; } namespace Editor::API { class EditorServerBindingsModuleFactory : public ::Scripting::GenericModuleBindingFactory { -public: - // prevent constructor by default - EditorServerBindingsModuleFactory& operator=(EditorServerBindingsModuleFactory const&); - EditorServerBindingsModuleFactory(EditorServerBindingsModuleFactory const&); - EditorServerBindingsModuleFactory(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/server/editor/modules/EditorServerModuleFactory.h b/src/mc/server/editor/modules/EditorServerModuleFactory.h index 3f5756b2e7..78aa300fc0 100644 --- a/src/mc/server/editor/modules/EditorServerModuleFactory.h +++ b/src/mc/server/editor/modules/EditorServerModuleFactory.h @@ -17,12 +17,6 @@ namespace Scripting { struct ModuleBinding; } namespace Editor::API { class EditorServerModuleFactory : public ::Scripting::GenericModuleBindingFactory { -public: - // prevent constructor by default - EditorServerModuleFactory& operator=(EditorServerModuleFactory const&); - EditorServerModuleFactory(EditorServerModuleFactory const&); - EditorServerModuleFactory(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/server/editor/selection/ServerSelectionContainer.h b/src/mc/server/editor/selection/ServerSelectionContainer.h index 4b7690ed16..c63960e759 100644 --- a/src/mc/server/editor/selection/ServerSelectionContainer.h +++ b/src/mc/server/editor/selection/ServerSelectionContainer.h @@ -22,12 +22,6 @@ namespace mce { class UUID; } namespace Editor::Selection { class ServerSelectionContainer : public ::Editor::Selection::SelectionContainer { -public: - // prevent constructor by default - ServerSelectionContainer& operator=(ServerSelectionContainer const&); - ServerSelectionContainer(ServerSelectionContainer const&); - ServerSelectionContainer(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/server/editor/serviceproviders/BrushShapeManagerServiceProvider.h b/src/mc/server/editor/serviceproviders/BrushShapeManagerServiceProvider.h index 5c1917f0af..e5f6dcc778 100644 --- a/src/mc/server/editor/serviceproviders/BrushShapeManagerServiceProvider.h +++ b/src/mc/server/editor/serviceproviders/BrushShapeManagerServiceProvider.h @@ -23,12 +23,6 @@ namespace ScriptModuleMinecraft { class ScriptCompoundBlockVolume; } namespace Editor::Services { class BrushShapeManagerServiceProvider { -public: - // prevent constructor by default - BrushShapeManagerServiceProvider& operator=(BrushShapeManagerServiceProvider const&); - BrushShapeManagerServiceProvider(BrushShapeManagerServiceProvider const&); - BrushShapeManagerServiceProvider(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/server/editor/serviceproviders/EditorPlayerExportProjectServiceProvider.h b/src/mc/server/editor/serviceproviders/EditorPlayerExportProjectServiceProvider.h index 3052d79d16..2501e95593 100644 --- a/src/mc/server/editor/serviceproviders/EditorPlayerExportProjectServiceProvider.h +++ b/src/mc/server/editor/serviceproviders/EditorPlayerExportProjectServiceProvider.h @@ -14,12 +14,6 @@ namespace Editor { class GameOptions; } namespace Editor::Services { class EditorPlayerExportProjectServiceProvider { -public: - // prevent constructor by default - EditorPlayerExportProjectServiceProvider& operator=(EditorPlayerExportProjectServiceProvider const&); - EditorPlayerExportProjectServiceProvider(EditorPlayerExportProjectServiceProvider const&); - EditorPlayerExportProjectServiceProvider(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/server/editor/serviceproviders/EditorPlayerPlaytestServiceProvider.h b/src/mc/server/editor/serviceproviders/EditorPlayerPlaytestServiceProvider.h index f8f59a466f..d3818031de 100644 --- a/src/mc/server/editor/serviceproviders/EditorPlayerPlaytestServiceProvider.h +++ b/src/mc/server/editor/serviceproviders/EditorPlayerPlaytestServiceProvider.h @@ -15,12 +15,6 @@ namespace Editor::Network { class PlaytestBeginSessionTransferResponsePayload; } namespace Editor::Services { class EditorPlayerPlaytestServiceProvider { -public: - // prevent constructor by default - EditorPlayerPlaytestServiceProvider& operator=(EditorPlayerPlaytestServiceProvider const&); - EditorPlayerPlaytestServiceProvider(EditorPlayerPlaytestServiceProvider const&); - EditorPlayerPlaytestServiceProvider(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/server/editor/serviceproviders/EditorPlaytestManagerServiceProvider.h b/src/mc/server/editor/serviceproviders/EditorPlaytestManagerServiceProvider.h index 70b3afa7ed..f3d0862646 100644 --- a/src/mc/server/editor/serviceproviders/EditorPlaytestManagerServiceProvider.h +++ b/src/mc/server/editor/serviceproviders/EditorPlaytestManagerServiceProvider.h @@ -5,12 +5,6 @@ namespace Editor::Services { class EditorPlaytestManagerServiceProvider { -public: - // prevent constructor by default - EditorPlaytestManagerServiceProvider& operator=(EditorPlaytestManagerServiceProvider const&); - EditorPlaytestManagerServiceProvider(EditorPlaytestManagerServiceProvider const&); - EditorPlaytestManagerServiceProvider(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/server/editor/serviceproviders/ServerBlockUtilityServiceProvider.h b/src/mc/server/editor/serviceproviders/ServerBlockUtilityServiceProvider.h index 9c79617856..22cbdccac0 100644 --- a/src/mc/server/editor/serviceproviders/ServerBlockUtilityServiceProvider.h +++ b/src/mc/server/editor/serviceproviders/ServerBlockUtilityServiceProvider.h @@ -13,12 +13,6 @@ namespace Editor::BlockUtils { class CommonBlockUtilityServiceProvider; } namespace Editor::BlockUtils { class ServerBlockUtilityServiceProvider { -public: - // prevent constructor by default - ServerBlockUtilityServiceProvider& operator=(ServerBlockUtilityServiceProvider const&); - ServerBlockUtilityServiceProvider(ServerBlockUtilityServiceProvider const&); - ServerBlockUtilityServiceProvider(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/server/editor/serviceproviders/ServerCursorServiceProvider.h b/src/mc/server/editor/serviceproviders/ServerCursorServiceProvider.h index 5edace18e4..4769c35a6f 100644 --- a/src/mc/server/editor/serviceproviders/ServerCursorServiceProvider.h +++ b/src/mc/server/editor/serviceproviders/ServerCursorServiceProvider.h @@ -20,12 +20,6 @@ namespace Editor::Cursor { struct Ray; } namespace Editor::Cursor { class ServerCursorServiceProvider { -public: - // prevent constructor by default - ServerCursorServiceProvider& operator=(ServerCursorServiceProvider const&); - ServerCursorServiceProvider(ServerCursorServiceProvider const&); - ServerCursorServiceProvider(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/server/editor/serviceproviders/ServerPlayerInputServiceProvider.h b/src/mc/server/editor/serviceproviders/ServerPlayerInputServiceProvider.h index 1da9beb1bf..3926b09789 100644 --- a/src/mc/server/editor/serviceproviders/ServerPlayerInputServiceProvider.h +++ b/src/mc/server/editor/serviceproviders/ServerPlayerInputServiceProvider.h @@ -15,12 +15,6 @@ namespace Editor::Input { struct BindingInfo; } namespace Editor::Services { class ServerPlayerInputServiceProvider { -public: - // prevent constructor by default - ServerPlayerInputServiceProvider& operator=(ServerPlayerInputServiceProvider const&); - ServerPlayerInputServiceProvider(ServerPlayerInputServiceProvider const&); - ServerPlayerInputServiceProvider(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/server/editor/serviceproviders/TransactionManagerServiceProvider.h b/src/mc/server/editor/serviceproviders/TransactionManagerServiceProvider.h index 345d4bbc0f..5c61049db6 100644 --- a/src/mc/server/editor/serviceproviders/TransactionManagerServiceProvider.h +++ b/src/mc/server/editor/serviceproviders/TransactionManagerServiceProvider.h @@ -20,12 +20,6 @@ namespace Scripting { struct Error; } namespace Editor::Services { class TransactionManagerServiceProvider { -public: - // prevent constructor by default - TransactionManagerServiceProvider& operator=(TransactionManagerServiceProvider const&); - TransactionManagerServiceProvider(TransactionManagerServiceProvider const&); - TransactionManagerServiceProvider(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/server/editor/services/blockeventlistenerservice/BlockEventListenerService.h b/src/mc/server/editor/services/blockeventlistenerservice/BlockEventListenerService.h index f4f50a75a1..22b86c4d8f 100644 --- a/src/mc/server/editor/services/blockeventlistenerservice/BlockEventListenerService.h +++ b/src/mc/server/editor/services/blockeventlistenerservice/BlockEventListenerService.h @@ -22,12 +22,6 @@ namespace Editor::Services { class BlockEventListenerService : public ::Editor::Services::IEditorService, public ::EventListenerDispatcher<::BlockEventListener> { -public: - // prevent constructor by default - BlockEventListenerService& operator=(BlockEventListenerService const&); - BlockEventListenerService(BlockEventListenerService const&); - BlockEventListenerService(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/server/editor/services/blocks/ServerBlockPaletteService.h b/src/mc/server/editor/services/blocks/ServerBlockPaletteService.h index 2e9a876a92..44aeb77460 100644 --- a/src/mc/server/editor/services/blocks/ServerBlockPaletteService.h +++ b/src/mc/server/editor/services/blocks/ServerBlockPaletteService.h @@ -23,12 +23,6 @@ namespace Editor::Network { class BlockPaletteSelectedIndexChangedPayload; } namespace Editor::Services { class ServerBlockPaletteService : public ::Editor::Services::EditorBlockPaletteService { -public: - // prevent constructor by default - ServerBlockPaletteService& operator=(ServerBlockPaletteService const&); - ServerBlockPaletteService(ServerBlockPaletteService const&); - ServerBlockPaletteService(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/server/editor/services/datastore/ServerDataStoreService.h b/src/mc/server/editor/services/datastore/ServerDataStoreService.h index 180cda8751..f824c742a0 100644 --- a/src/mc/server/editor/services/datastore/ServerDataStoreService.h +++ b/src/mc/server/editor/services/datastore/ServerDataStoreService.h @@ -18,12 +18,6 @@ namespace Json { class Value; } namespace Editor::Services { class ServerDataStoreService : public ::Editor::Services::DataStoreService { -public: - // prevent constructor by default - ServerDataStoreService& operator=(ServerDataStoreService const&); - ServerDataStoreService(ServerDataStoreService const&); - ServerDataStoreService(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/server/editor/services/input/ServerPlayerInputService.h b/src/mc/server/editor/services/input/ServerPlayerInputService.h index 70158a8a23..5b5e3c1d3f 100644 --- a/src/mc/server/editor/services/input/ServerPlayerInputService.h +++ b/src/mc/server/editor/services/input/ServerPlayerInputService.h @@ -18,12 +18,6 @@ namespace Editor::Services { class ServerPlayerInputService : public ::Editor::Services::IEditorService, public ::Editor::Services::ServerPlayerInputServiceProvider { -public: - // prevent constructor by default - ServerPlayerInputService& operator=(ServerPlayerInputService const&); - ServerPlayerInputService(ServerPlayerInputService const&); - ServerPlayerInputService(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/server/editor/services/settings/EditorServerSettingsService.h b/src/mc/server/editor/services/settings/EditorServerSettingsService.h index 4454a7bbd1..0a53c1e71c 100644 --- a/src/mc/server/editor/services/settings/EditorServerSettingsService.h +++ b/src/mc/server/editor/services/settings/EditorServerSettingsService.h @@ -26,12 +26,6 @@ namespace mce { class Color; } namespace Editor::Services { class EditorServerSettingsService : public ::Editor::Services::EditorSettingsService { -public: - // prevent constructor by default - EditorServerSettingsService& operator=(EditorServerSettingsService const&); - EditorServerSettingsService(EditorServerSettingsService const&); - EditorServerSettingsService(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/server/editor/state/ServerModeService.h b/src/mc/server/editor/state/ServerModeService.h index 3042a62531..e06e282ad8 100644 --- a/src/mc/server/editor/state/ServerModeService.h +++ b/src/mc/server/editor/state/ServerModeService.h @@ -15,12 +15,6 @@ namespace Editor::Network { class ModeChangedPayload; } namespace Editor::Services { class ServerModeService : public ::Editor::Services::ModeService { -public: - // prevent constructor by default - ServerModeService& operator=(ServerModeService const&); - ServerModeService(ServerModeService const&); - ServerModeService(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/server/editor/transactions/IOperation.h b/src/mc/server/editor/transactions/IOperation.h index fae1f6d79d..a88211a5b2 100644 --- a/src/mc/server/editor/transactions/IOperation.h +++ b/src/mc/server/editor/transactions/IOperation.h @@ -13,12 +13,6 @@ namespace Editor { class ServiceProviderCollection; } namespace Editor::Transactions { class IOperation { -public: - // prevent constructor by default - IOperation& operator=(IOperation const&); - IOperation(IOperation const&); - IOperation(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/server/editor/transactions/IPendingOperation.h b/src/mc/server/editor/transactions/IPendingOperation.h index 88577b414b..1b063abdcf 100644 --- a/src/mc/server/editor/transactions/IPendingOperation.h +++ b/src/mc/server/editor/transactions/IPendingOperation.h @@ -14,12 +14,6 @@ namespace Editor::Transactions { class IOperation; } namespace Editor::Transactions { class IPendingOperation { -public: - // prevent constructor by default - IPendingOperation& operator=(IPendingOperation const&); - IPendingOperation(IPendingOperation const&); - IPendingOperation(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/server/module/VanillaEntityInitializerCommon.h b/src/mc/server/module/VanillaEntityInitializerCommon.h index 168ef89236..84e9f59aa8 100644 --- a/src/mc/server/module/VanillaEntityInitializerCommon.h +++ b/src/mc/server/module/VanillaEntityInitializerCommon.h @@ -12,12 +12,6 @@ class EntityContext; // clang-format on struct VanillaEntityInitializerCommon { -public: - // prevent constructor by default - VanillaEntityInitializerCommon& operator=(VanillaEntityInitializerCommon const&); - VanillaEntityInitializerCommon(VanillaEntityInitializerCommon const&); - VanillaEntityInitializerCommon(); - public: // static functions // NOLINTBEGIN diff --git a/src/mc/server/module/VanillaEntityInitializerServer.h b/src/mc/server/module/VanillaEntityInitializerServer.h index 99687a446b..d62ff88267 100644 --- a/src/mc/server/module/VanillaEntityInitializerServer.h +++ b/src/mc/server/module/VanillaEntityInitializerServer.h @@ -2,10 +2,4 @@ #include "mc/_HeaderOutputPredefine.h" -struct VanillaEntityInitializerServer { -public: - // prevent constructor by default - VanillaEntityInitializerServer& operator=(VanillaEntityInitializerServer const&); - VanillaEntityInitializerServer(VanillaEntityInitializerServer const&); - VanillaEntityInitializerServer(); -}; +struct VanillaEntityInitializerServer {}; diff --git a/src/mc/server/module/VanillaNetworkEventListener.h b/src/mc/server/module/VanillaNetworkEventListener.h index 76eef68a6c..70ef6ae1cf 100644 --- a/src/mc/server/module/VanillaNetworkEventListener.h +++ b/src/mc/server/module/VanillaNetworkEventListener.h @@ -15,12 +15,6 @@ struct PlayerDamageEvent; class VanillaNetworkEventListener : public ::EventListenerDispatcher<::ActorEventListener>, public ::EventListenerDispatcher<::PlayerEventListener> { -public: - // prevent constructor by default - VanillaNetworkEventListener& operator=(VanillaNetworkEventListener const&); - VanillaNetworkEventListener(VanillaNetworkEventListener const&); - VanillaNetworkEventListener(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/server/module/VanillaServerGameplayEventListener.h b/src/mc/server/module/VanillaServerGameplayEventListener.h index dfe0d606f2..d52ddc3a35 100644 --- a/src/mc/server/module/VanillaServerGameplayEventListener.h +++ b/src/mc/server/module/VanillaServerGameplayEventListener.h @@ -25,12 +25,6 @@ class VanillaServerGameplayEventListener : public ::EventListenerDispatcher<::Ac public ::EventListenerDispatcher<::BlockEventListener>, public ::EventListenerDispatcher<::PlayerEventListener>, public ::EventListenerDispatcher<::LevelEventListener> { -public: - // prevent constructor by default - VanillaServerGameplayEventListener& operator=(VanillaServerGameplayEventListener const&); - VanillaServerGameplayEventListener(VanillaServerGameplayEventListener const&); - VanillaServerGameplayEventListener(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/server/safety/ChatFloodingActionEnumHasher.h b/src/mc/server/safety/ChatFloodingActionEnumHasher.h index 09552a03ff..9005ca4b80 100644 --- a/src/mc/server/safety/ChatFloodingActionEnumHasher.h +++ b/src/mc/server/safety/ChatFloodingActionEnumHasher.h @@ -4,12 +4,6 @@ namespace Safety { -struct ChatFloodingActionEnumHasher { -public: - // prevent constructor by default - ChatFloodingActionEnumHasher& operator=(ChatFloodingActionEnumHasher const&); - ChatFloodingActionEnumHasher(ChatFloodingActionEnumHasher const&); - ChatFloodingActionEnumHasher(); -}; +struct ChatFloodingActionEnumHasher {}; } // namespace Safety diff --git a/src/mc/server/sim/ContinuousBuildIntent.h b/src/mc/server/sim/ContinuousBuildIntent.h index 7ef4f064e6..80f0070774 100644 --- a/src/mc/server/sim/ContinuousBuildIntent.h +++ b/src/mc/server/sim/ContinuousBuildIntent.h @@ -4,12 +4,6 @@ namespace sim { -struct ContinuousBuildIntent { -public: - // prevent constructor by default - ContinuousBuildIntent& operator=(ContinuousBuildIntent const&); - ContinuousBuildIntent(ContinuousBuildIntent const&); - ContinuousBuildIntent(); -}; +struct ContinuousBuildIntent {}; } // namespace sim diff --git a/src/mc/server/sim/VoidBuildIntent.h b/src/mc/server/sim/VoidBuildIntent.h index 1d244a3d13..e416b37a39 100644 --- a/src/mc/server/sim/VoidBuildIntent.h +++ b/src/mc/server/sim/VoidBuildIntent.h @@ -4,12 +4,6 @@ namespace sim { -struct VoidBuildIntent { -public: - // prevent constructor by default - VoidBuildIntent& operator=(VoidBuildIntent const&); - VoidBuildIntent(VoidBuildIntent const&); - VoidBuildIntent(); -}; +struct VoidBuildIntent {}; } // namespace sim diff --git a/src/mc/server/sim/VoidLookAtIntent.h b/src/mc/server/sim/VoidLookAtIntent.h index af42dd1aef..02c19a6958 100644 --- a/src/mc/server/sim/VoidLookAtIntent.h +++ b/src/mc/server/sim/VoidLookAtIntent.h @@ -4,12 +4,6 @@ namespace sim { -struct VoidLookAtIntent { -public: - // prevent constructor by default - VoidLookAtIntent& operator=(VoidLookAtIntent const&); - VoidLookAtIntent(VoidLookAtIntent const&); - VoidLookAtIntent(); -}; +struct VoidLookAtIntent {}; } // namespace sim diff --git a/src/mc/server/sim/VoidMoveIntent.h b/src/mc/server/sim/VoidMoveIntent.h index 007eb0ba07..06ddfc1fa7 100644 --- a/src/mc/server/sim/VoidMoveIntent.h +++ b/src/mc/server/sim/VoidMoveIntent.h @@ -4,12 +4,6 @@ namespace sim { -struct VoidMoveIntent { -public: - // prevent constructor by default - VoidMoveIntent& operator=(VoidMoveIntent const&); - VoidMoveIntent(VoidMoveIntent const&); - VoidMoveIntent(); -}; +struct VoidMoveIntent {}; } // namespace sim diff --git a/src/mc/textobject/ITextObject.h b/src/mc/textobject/ITextObject.h index d98538a5b8..805877888d 100644 --- a/src/mc/textobject/ITextObject.h +++ b/src/mc/textobject/ITextObject.h @@ -9,12 +9,6 @@ namespace Json { class Value; } // clang-format on class ITextObject { -public: - // prevent constructor by default - ITextObject& operator=(ITextObject const&); - ITextObject(ITextObject const&); - ITextObject(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/textobject/TextObjectParser.h b/src/mc/textobject/TextObjectParser.h index 289b4cae76..4f6d547d63 100644 --- a/src/mc/textobject/TextObjectParser.h +++ b/src/mc/textobject/TextObjectParser.h @@ -82,12 +82,6 @@ class TextObjectParser { // NOLINTEND }; -public: - // prevent constructor by default - TextObjectParser& operator=(TextObjectParser const&); - TextObjectParser(TextObjectParser const&); - TextObjectParser(); - public: // static functions // NOLINTBEGIN diff --git a/src/mc/util/AccessorTypeEnumHasher.h b/src/mc/util/AccessorTypeEnumHasher.h index 2e58d617ee..58ea94637c 100644 --- a/src/mc/util/AccessorTypeEnumHasher.h +++ b/src/mc/util/AccessorTypeEnumHasher.h @@ -2,10 +2,4 @@ #include "mc/_HeaderOutputPredefine.h" -struct AccessorTypeEnumHasher { -public: - // prevent constructor by default - AccessorTypeEnumHasher& operator=(AccessorTypeEnumHasher const&); - AccessorTypeEnumHasher(AccessorTypeEnumHasher const&); - AccessorTypeEnumHasher(); -}; +struct AccessorTypeEnumHasher {}; diff --git a/src/mc/util/ActorDefinitionEventLoader.h b/src/mc/util/ActorDefinitionEventLoader.h index eade55abd1..e2ff4b1f40 100644 --- a/src/mc/util/ActorDefinitionEventLoader.h +++ b/src/mc/util/ActorDefinitionEventLoader.h @@ -15,12 +15,6 @@ namespace Json { class Value; } // clang-format on class ActorDefinitionEventLoader { -public: - // prevent constructor by default - ActorDefinitionEventLoader& operator=(ActorDefinitionEventLoader const&); - ActorDefinitionEventLoader(ActorDefinitionEventLoader const&); - ActorDefinitionEventLoader(); - public: // static functions // NOLINTBEGIN diff --git a/src/mc/util/BidirectionalUnorderedMap.h b/src/mc/util/BidirectionalUnorderedMap.h index 597dfdba1b..8861b5e364 100644 --- a/src/mc/util/BidirectionalUnorderedMap.h +++ b/src/mc/util/BidirectionalUnorderedMap.h @@ -3,10 +3,4 @@ #include "mc/_HeaderOutputPredefine.h" template -class BidirectionalUnorderedMap { -public: - // prevent constructor by default - BidirectionalUnorderedMap& operator=(BidirectionalUnorderedMap const&); - BidirectionalUnorderedMap(BidirectionalUnorderedMap const&); - BidirectionalUnorderedMap(); -}; +class BidirectionalUnorderedMap {}; diff --git a/src/mc/util/BlockCerealSchemaUpgrade.h b/src/mc/util/BlockCerealSchemaUpgrade.h index d3afd28583..d3850c39cd 100644 --- a/src/mc/util/BlockCerealSchemaUpgrade.h +++ b/src/mc/util/BlockCerealSchemaUpgrade.h @@ -11,12 +11,6 @@ class SemVersion; // clang-format on class BlockCerealSchemaUpgrade : public ::CerealSchemaUpgrade { -public: - // prevent constructor by default - BlockCerealSchemaUpgrade& operator=(BlockCerealSchemaUpgrade const&); - BlockCerealSchemaUpgrade(BlockCerealSchemaUpgrade const&); - BlockCerealSchemaUpgrade(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/util/BlockListSerializer.h b/src/mc/util/BlockListSerializer.h index c01b79d5c1..7107e84020 100644 --- a/src/mc/util/BlockListSerializer.h +++ b/src/mc/util/BlockListSerializer.h @@ -12,12 +12,6 @@ namespace Json { class Value; } // clang-format on class BlockListSerializer { -public: - // prevent constructor by default - BlockListSerializer& operator=(BlockListSerializer const&); - BlockListSerializer(BlockListSerializer const&); - BlockListSerializer(); - public: // static functions // NOLINTBEGIN diff --git a/src/mc/util/CallbackTokenContext.h b/src/mc/util/CallbackTokenContext.h index 710230a49f..e3be50936f 100644 --- a/src/mc/util/CallbackTokenContext.h +++ b/src/mc/util/CallbackTokenContext.h @@ -3,10 +3,4 @@ #include "mc/_HeaderOutputPredefine.h" template -class CallbackTokenContext { -public: - // prevent constructor by default - CallbackTokenContext& operator=(CallbackTokenContext const&); - CallbackTokenContext(CallbackTokenContext const&); - CallbackTokenContext(); -}; +class CallbackTokenContext {}; diff --git a/src/mc/util/CaseInsensitiveCompare.h b/src/mc/util/CaseInsensitiveCompare.h index 8d8104dfdd..c5d718c060 100644 --- a/src/mc/util/CaseInsensitiveCompare.h +++ b/src/mc/util/CaseInsensitiveCompare.h @@ -4,12 +4,6 @@ namespace Util { -struct CaseInsensitiveCompare { -public: - // prevent constructor by default - CaseInsensitiveCompare& operator=(CaseInsensitiveCompare const&); - CaseInsensitiveCompare(CaseInsensitiveCompare const&); - CaseInsensitiveCompare(); -}; +struct CaseInsensitiveCompare {}; } // namespace Util diff --git a/src/mc/util/CaseInsensitiveHash.h b/src/mc/util/CaseInsensitiveHash.h index e28f134ab0..44afaa691d 100644 --- a/src/mc/util/CaseInsensitiveHash.h +++ b/src/mc/util/CaseInsensitiveHash.h @@ -4,12 +4,6 @@ namespace Util { -struct CaseInsensitiveHash { -public: - // prevent constructor by default - CaseInsensitiveHash& operator=(CaseInsensitiveHash const&); - CaseInsensitiveHash(CaseInsensitiveHash const&); - CaseInsensitiveHash(); -}; +struct CaseInsensitiveHash {}; } // namespace Util diff --git a/src/mc/util/CopyCoordinatesUtils.h b/src/mc/util/CopyCoordinatesUtils.h index 721cbac2de..82f72fb569 100644 --- a/src/mc/util/CopyCoordinatesUtils.h +++ b/src/mc/util/CopyCoordinatesUtils.h @@ -2,10 +2,4 @@ #include "mc/_HeaderOutputPredefine.h" -class CopyCoordinatesUtils { -public: - // prevent constructor by default - CopyCoordinatesUtils& operator=(CopyCoordinatesUtils const&); - CopyCoordinatesUtils(CopyCoordinatesUtils const&); - CopyCoordinatesUtils(); -}; +class CopyCoordinatesUtils {}; diff --git a/src/mc/util/DefinitionEventLoader.h b/src/mc/util/DefinitionEventLoader.h index 1407a56341..013d372264 100644 --- a/src/mc/util/DefinitionEventLoader.h +++ b/src/mc/util/DefinitionEventLoader.h @@ -14,12 +14,6 @@ namespace Json { class Value; } // clang-format on class DefinitionEventLoader { -public: - // prevent constructor by default - DefinitionEventLoader& operator=(DefinitionEventLoader const&); - DefinitionEventLoader(DefinitionEventLoader const&); - DefinitionEventLoader(); - public: // static functions // NOLINTBEGIN diff --git a/src/mc/util/EasingInverse.h b/src/mc/util/EasingInverse.h index 19d7019a48..0737f9e548 100644 --- a/src/mc/util/EasingInverse.h +++ b/src/mc/util/EasingInverse.h @@ -3,12 +3,6 @@ #include "mc/_HeaderOutputPredefine.h" class EasingInverse { -public: - // prevent constructor by default - EasingInverse& operator=(EasingInverse const&); - EasingInverse(EasingInverse const&); - EasingInverse(); - public: // static variables // NOLINTBEGIN diff --git a/src/mc/util/Factory.h b/src/mc/util/Factory.h index 80a31f04fc..245b772ba3 100644 --- a/src/mc/util/Factory.h +++ b/src/mc/util/Factory.h @@ -3,10 +3,4 @@ #include "mc/_HeaderOutputPredefine.h" template -class Factory { -public: - // prevent constructor by default - Factory& operator=(Factory const&); - Factory(Factory const&); - Factory(); -}; +class Factory {}; diff --git a/src/mc/util/FormJsonValidator.h b/src/mc/util/FormJsonValidator.h index 0fad4d616b..0874e6f5ed 100644 --- a/src/mc/util/FormJsonValidator.h +++ b/src/mc/util/FormJsonValidator.h @@ -6,12 +6,6 @@ #include "mc/common/JsonValidator.h" class FormJsonValidator { -public: - // prevent constructor by default - FormJsonValidator& operator=(FormJsonValidator const&); - FormJsonValidator(FormJsonValidator const&); - FormJsonValidator(); - public: // static functions // NOLINTBEGIN diff --git a/src/mc/util/GridArea.h b/src/mc/util/GridArea.h index e9960eadc6..64872619c9 100644 --- a/src/mc/util/GridArea.h +++ b/src/mc/util/GridArea.h @@ -3,10 +3,4 @@ #include "mc/_HeaderOutputPredefine.h" template -class GridArea { -public: - // prevent constructor by default - GridArea& operator=(GridArea const&); - GridArea(GridArea const&); - GridArea(); -}; +class GridArea {}; diff --git a/src/mc/util/IDType.h b/src/mc/util/IDType.h index 7b4083001c..f95a429580 100644 --- a/src/mc/util/IDType.h +++ b/src/mc/util/IDType.h @@ -3,10 +3,4 @@ #include "mc/_HeaderOutputPredefine.h" template -struct IDType { -public: - // prevent constructor by default - IDType& operator=(IDType const&); - IDType(IDType const&); - IDType(); -}; +struct IDType {}; diff --git a/src/mc/util/IFileChunkDownloader.h b/src/mc/util/IFileChunkDownloader.h index e13e6d7472..cdd3488354 100644 --- a/src/mc/util/IFileChunkDownloader.h +++ b/src/mc/util/IFileChunkDownloader.h @@ -12,12 +12,6 @@ struct FileInfo; // clang-format on class IFileChunkDownloader { -public: - // prevent constructor by default - IFileChunkDownloader& operator=(IFileChunkDownloader const&); - IFileChunkDownloader(IFileChunkDownloader const&); - IFileChunkDownloader(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/util/IFileChunkUploader.h b/src/mc/util/IFileChunkUploader.h index 1f4f834827..6a6763130f 100644 --- a/src/mc/util/IFileChunkUploader.h +++ b/src/mc/util/IFileChunkUploader.h @@ -38,11 +38,6 @@ class IFileChunkUploader { None = 5, }; -public: - // prevent constructor by default - IFileChunkUploader& operator=(IFileChunkUploader const&); - IFileChunkUploader(IFileChunkUploader const&); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/util/IFilePicker.h b/src/mc/util/IFilePicker.h index 4b0da79233..56cebafe44 100644 --- a/src/mc/util/IFilePicker.h +++ b/src/mc/util/IFilePicker.h @@ -9,12 +9,6 @@ namespace Core { class Path; } // clang-format on class IFilePicker { -public: - // prevent constructor by default - IFilePicker& operator=(IFilePicker const&); - IFilePicker(IFilePicker const&); - IFilePicker(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/util/IMolangInstruction.h b/src/mc/util/IMolangInstruction.h index b06f6f8e7f..d68f32c331 100644 --- a/src/mc/util/IMolangInstruction.h +++ b/src/mc/util/IMolangInstruction.h @@ -8,12 +8,6 @@ struct MolangEvalParams; // clang-format on class IMolangInstruction { -public: - // prevent constructor by default - IMolangInstruction& operator=(IMolangInstruction const&); - IMolangInstruction(IMolangInstruction const&); - IMolangInstruction(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/util/ImageMimeTypeEnumHasher.h b/src/mc/util/ImageMimeTypeEnumHasher.h index 6da1389266..b95fa00ea5 100644 --- a/src/mc/util/ImageMimeTypeEnumHasher.h +++ b/src/mc/util/ImageMimeTypeEnumHasher.h @@ -2,10 +2,4 @@ #include "mc/_HeaderOutputPredefine.h" -struct ImageMimeTypeEnumHasher { -public: - // prevent constructor by default - ImageMimeTypeEnumHasher& operator=(ImageMimeTypeEnumHasher const&); - ImageMimeTypeEnumHasher(ImageMimeTypeEnumHasher const&); - ImageMimeTypeEnumHasher(); -}; +struct ImageMimeTypeEnumHasher {}; diff --git a/src/mc/util/ItemCerealSchemaUpgrade.h b/src/mc/util/ItemCerealSchemaUpgrade.h index 4238a3b213..9ab487a084 100644 --- a/src/mc/util/ItemCerealSchemaUpgrade.h +++ b/src/mc/util/ItemCerealSchemaUpgrade.h @@ -11,12 +11,6 @@ class SemVersion; // clang-format on class ItemCerealSchemaUpgrade : public ::CerealSchemaUpgrade { -public: - // prevent constructor by default - ItemCerealSchemaUpgrade& operator=(ItemCerealSchemaUpgrade const&); - ItemCerealSchemaUpgrade(ItemCerealSchemaUpgrade const&); - ItemCerealSchemaUpgrade(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/util/ItemListSerializer.h b/src/mc/util/ItemListSerializer.h index d38c06d334..76148e2fe4 100644 --- a/src/mc/util/ItemListSerializer.h +++ b/src/mc/util/ItemListSerializer.h @@ -2,10 +2,4 @@ #include "mc/_HeaderOutputPredefine.h" -class ItemListSerializer { -public: - // prevent constructor by default - ItemListSerializer& operator=(ItemListSerializer const&); - ItemListSerializer(ItemListSerializer const&); - ItemListSerializer(); -}; +class ItemListSerializer {}; diff --git a/src/mc/util/ItemReplacementCommandUtil.h b/src/mc/util/ItemReplacementCommandUtil.h index 8e7414acc9..6a63b5d972 100644 --- a/src/mc/util/ItemReplacementCommandUtil.h +++ b/src/mc/util/ItemReplacementCommandUtil.h @@ -17,12 +17,6 @@ namespace Util { struct ReplacementResults; } namespace Util { class ItemReplacementCommandUtil { -public: - // prevent constructor by default - ItemReplacementCommandUtil& operator=(ItemReplacementCommandUtil const&); - ItemReplacementCommandUtil(ItemReplacementCommandUtil const&); - ItemReplacementCommandUtil(); - public: // static functions // NOLINTBEGIN diff --git a/src/mc/util/JpegData.h b/src/mc/util/JpegData.h index 9e49aec4b2..972e6cfe1f 100644 --- a/src/mc/util/JpegData.h +++ b/src/mc/util/JpegData.h @@ -2,10 +2,4 @@ #include "mc/_HeaderOutputPredefine.h" -class JpegData { -public: - // prevent constructor by default - JpegData& operator=(JpegData const&); - JpegData(JpegData const&); - JpegData(); -}; +class JpegData {}; diff --git a/src/mc/util/LootTableUtils.h b/src/mc/util/LootTableUtils.h index 62b519ada4..56a24e1df5 100644 --- a/src/mc/util/LootTableUtils.h +++ b/src/mc/util/LootTableUtils.h @@ -26,12 +26,6 @@ class Spawner; namespace Util { class LootTableUtils { -public: - // prevent constructor by default - LootTableUtils& operator=(LootTableUtils const&); - LootTableUtils(LootTableUtils const&); - LootTableUtils(); - public: // static functions // NOLINTBEGIN diff --git a/src/mc/util/LowMemoryWatcher.h b/src/mc/util/LowMemoryWatcher.h index 070eb9fe0d..53c868dbbb 100644 --- a/src/mc/util/LowMemoryWatcher.h +++ b/src/mc/util/LowMemoryWatcher.h @@ -3,12 +3,6 @@ #include "mc/_HeaderOutputPredefine.h" class LowMemoryWatcher { -public: - // prevent constructor by default - LowMemoryWatcher& operator=(LowMemoryWatcher const&); - LowMemoryWatcher(LowMemoryWatcher const&); - LowMemoryWatcher(); - public: // static variables // NOLINTBEGIN diff --git a/src/mc/util/MaterialAlphaModeEnumHasher.h b/src/mc/util/MaterialAlphaModeEnumHasher.h index 56b28beaee..6f833afeaa 100644 --- a/src/mc/util/MaterialAlphaModeEnumHasher.h +++ b/src/mc/util/MaterialAlphaModeEnumHasher.h @@ -2,10 +2,4 @@ #include "mc/_HeaderOutputPredefine.h" -struct MaterialAlphaModeEnumHasher { -public: - // prevent constructor by default - MaterialAlphaModeEnumHasher& operator=(MaterialAlphaModeEnumHasher const&); - MaterialAlphaModeEnumHasher(MaterialAlphaModeEnumHasher const&); - MaterialAlphaModeEnumHasher(); -}; +struct MaterialAlphaModeEnumHasher {}; diff --git a/src/mc/util/MolangHashStringVariable.h b/src/mc/util/MolangHashStringVariable.h index 81ab8df5ba..c6475c7106 100644 --- a/src/mc/util/MolangHashStringVariable.h +++ b/src/mc/util/MolangHashStringVariable.h @@ -3,10 +3,4 @@ #include "mc/_HeaderOutputPredefine.h" template -struct MolangHashStringVariable { -public: - // prevent constructor by default - MolangHashStringVariable& operator=(MolangHashStringVariable const&); - MolangHashStringVariable(MolangHashStringVariable const&); - MolangHashStringVariable(); -}; +struct MolangHashStringVariable {}; diff --git a/src/mc/util/MolangLoopBreak.h b/src/mc/util/MolangLoopBreak.h index 3567db8f27..0b9d5bc42e 100644 --- a/src/mc/util/MolangLoopBreak.h +++ b/src/mc/util/MolangLoopBreak.h @@ -2,10 +2,4 @@ #include "mc/_HeaderOutputPredefine.h" -struct MolangLoopBreak { -public: - // prevent constructor by default - MolangLoopBreak& operator=(MolangLoopBreak const&); - MolangLoopBreak(MolangLoopBreak const&); - MolangLoopBreak(); -}; +struct MolangLoopBreak {}; diff --git a/src/mc/util/MolangLoopContinue.h b/src/mc/util/MolangLoopContinue.h index 73191a71e1..7c400774c0 100644 --- a/src/mc/util/MolangLoopContinue.h +++ b/src/mc/util/MolangLoopContinue.h @@ -2,10 +2,4 @@ #include "mc/_HeaderOutputPredefine.h" -struct MolangLoopContinue { -public: - // prevent constructor by default - MolangLoopContinue& operator=(MolangLoopContinue const&); - MolangLoopContinue(MolangLoopContinue const&); - MolangLoopContinue(); -}; +struct MolangLoopContinue {}; diff --git a/src/mc/util/MultidimensionalArray.h b/src/mc/util/MultidimensionalArray.h index 8080331c96..b455c4e290 100644 --- a/src/mc/util/MultidimensionalArray.h +++ b/src/mc/util/MultidimensionalArray.h @@ -5,12 +5,6 @@ namespace Util { template -class MultidimensionalArray { -public: - // prevent constructor by default - MultidimensionalArray& operator=(MultidimensionalArray const&); - MultidimensionalArray(MultidimensionalArray const&); - MultidimensionalArray(); -}; +class MultidimensionalArray {}; } // namespace Util diff --git a/src/mc/util/NewType.h b/src/mc/util/NewType.h index f4f6208e53..8856672650 100644 --- a/src/mc/util/NewType.h +++ b/src/mc/util/NewType.h @@ -3,10 +3,4 @@ #include "mc/_HeaderOutputPredefine.h" template -struct NewType { -public: - // prevent constructor by default - NewType& operator=(NewType const&); - NewType(NewType const&); - NewType(); -}; +struct NewType {}; diff --git a/src/mc/util/OwnerPtrFactory.h b/src/mc/util/OwnerPtrFactory.h index 2105db532a..135aad5a50 100644 --- a/src/mc/util/OwnerPtrFactory.h +++ b/src/mc/util/OwnerPtrFactory.h @@ -3,10 +3,4 @@ #include "mc/_HeaderOutputPredefine.h" template -class OwnerPtrFactory { -public: - // prevent constructor by default - OwnerPtrFactory& operator=(OwnerPtrFactory const&); - OwnerPtrFactory(OwnerPtrFactory const&); - OwnerPtrFactory(); -}; +class OwnerPtrFactory {}; diff --git a/src/mc/util/PackSettingsJsonValidator.h b/src/mc/util/PackSettingsJsonValidator.h index 99dd9900f6..ad7a12e0bc 100644 --- a/src/mc/util/PackSettingsJsonValidator.h +++ b/src/mc/util/PackSettingsJsonValidator.h @@ -6,12 +6,6 @@ #include "mc/common/JsonValidator.h" class PackSettingsJsonValidator { -public: - // prevent constructor by default - PackSettingsJsonValidator& operator=(PackSettingsJsonValidator const&); - PackSettingsJsonValidator(PackSettingsJsonValidator const&); - PackSettingsJsonValidator(); - public: // static functions // NOLINTBEGIN diff --git a/src/mc/util/Palette.h b/src/mc/util/Palette.h index 24e0b3f590..c2164fb264 100644 --- a/src/mc/util/Palette.h +++ b/src/mc/util/Palette.h @@ -11,12 +11,6 @@ namespace mce { class Color; } // clang-format on class Palette { -public: - // prevent constructor by default - Palette& operator=(Palette const&); - Palette(Palette const&); - Palette(); - public: // static functions // NOLINTBEGIN diff --git a/src/mc/util/PaletteSwapUtils.h b/src/mc/util/PaletteSwapUtils.h index 9c5dfe3208..af397f3043 100644 --- a/src/mc/util/PaletteSwapUtils.h +++ b/src/mc/util/PaletteSwapUtils.h @@ -2,10 +2,4 @@ #include "mc/_HeaderOutputPredefine.h" -class PaletteSwapUtils { -public: - // prevent constructor by default - PaletteSwapUtils& operator=(PaletteSwapUtils const&); - PaletteSwapUtils(PaletteSwapUtils const&); - PaletteSwapUtils(); -}; +class PaletteSwapUtils {}; diff --git a/src/mc/util/PauseChecks.h b/src/mc/util/PauseChecks.h index 5cf11b7ddf..ac3bfacd3e 100644 --- a/src/mc/util/PauseChecks.h +++ b/src/mc/util/PauseChecks.h @@ -9,12 +9,6 @@ class ILevel; // clang-format on struct PauseChecks { -public: - // prevent constructor by default - PauseChecks& operator=(PauseChecks const&); - PauseChecks(PauseChecks const&); - PauseChecks(); - public: // static functions // NOLINTBEGIN diff --git a/src/mc/util/ResetCallbackObject.h b/src/mc/util/ResetCallbackObject.h index 5f812d9404..666ea2a1bd 100644 --- a/src/mc/util/ResetCallbackObject.h +++ b/src/mc/util/ResetCallbackObject.h @@ -2,10 +2,4 @@ #include "mc/_HeaderOutputPredefine.h" -class ResetCallbackObject { -public: - // prevent constructor by default - ResetCallbackObject& operator=(ResetCallbackObject const&); - ResetCallbackObject(ResetCallbackObject const&); - ResetCallbackObject(); -}; +class ResetCallbackObject {}; diff --git a/src/mc/util/SystemFilePicker.h b/src/mc/util/SystemFilePicker.h index 3e45cdc195..0243dad19d 100644 --- a/src/mc/util/SystemFilePicker.h +++ b/src/mc/util/SystemFilePicker.h @@ -12,11 +12,6 @@ namespace Core { class Path; } // clang-format on class SystemFilePicker : public ::IFilePicker, public ::std::enable_shared_from_this<::SystemFilePicker> { -public: - // prevent constructor by default - SystemFilePicker& operator=(SystemFilePicker const&); - SystemFilePicker(SystemFilePicker const&); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/util/TagRegistry.h b/src/mc/util/TagRegistry.h index 27ba46fe4f..172433a376 100644 --- a/src/mc/util/TagRegistry.h +++ b/src/mc/util/TagRegistry.h @@ -3,10 +3,4 @@ #include "mc/_HeaderOutputPredefine.h" template -class TagRegistry { -public: - // prevent constructor by default - TagRegistry& operator=(TagRegistry const&); - TagRegistry(TagRegistry const&); - TagRegistry(); -}; +class TagRegistry {}; diff --git a/src/mc/util/TextFilteringUtils.h b/src/mc/util/TextFilteringUtils.h index 1108a8af9f..2e95395fb0 100644 --- a/src/mc/util/TextFilteringUtils.h +++ b/src/mc/util/TextFilteringUtils.h @@ -13,12 +13,6 @@ class PacketSender; // clang-format on class TextFilteringUtils { -public: - // prevent constructor by default - TextFilteringUtils& operator=(TextFilteringUtils const&); - TextFilteringUtils(TextFilteringUtils const&); - TextFilteringUtils(); - public: // static functions // NOLINTBEGIN diff --git a/src/mc/util/ThreadOwner.h b/src/mc/util/ThreadOwner.h index 7a755927e5..b8d0d3af45 100644 --- a/src/mc/util/ThreadOwner.h +++ b/src/mc/util/ThreadOwner.h @@ -5,12 +5,6 @@ namespace Bedrock::Application { template -class ThreadOwner { -public: - // prevent constructor by default - ThreadOwner& operator=(ThreadOwner const&); - ThreadOwner(ThreadOwner const&); - ThreadOwner(); -}; +class ThreadOwner {}; } // namespace Bedrock::Application diff --git a/src/mc/util/WeightedChoices.h b/src/mc/util/WeightedChoices.h index 310c960570..dddc549a11 100644 --- a/src/mc/util/WeightedChoices.h +++ b/src/mc/util/WeightedChoices.h @@ -3,10 +3,4 @@ #include "mc/_HeaderOutputPredefine.h" template -class WeightedChoices { -public: - // prevent constructor by default - WeightedChoices& operator=(WeightedChoices const&); - WeightedChoices(WeightedChoices const&); - WeightedChoices(); -}; +class WeightedChoices {}; diff --git a/src/mc/util/WeightedRandom.h b/src/mc/util/WeightedRandom.h index 30d0683836..f404626d41 100644 --- a/src/mc/util/WeightedRandom.h +++ b/src/mc/util/WeightedRandom.h @@ -23,10 +23,4 @@ class WeightedRandom { WeighedRandomItem(WeighedRandomItem const&); WeighedRandomItem(); }; - -public: - // prevent constructor by default - WeightedRandom& operator=(WeightedRandom const&); - WeightedRandom(WeightedRandom const&); - WeightedRandom(); }; diff --git a/src/mc/util/WeightedRandomList.h b/src/mc/util/WeightedRandomList.h index e0de7c985f..73129af37d 100644 --- a/src/mc/util/WeightedRandomList.h +++ b/src/mc/util/WeightedRandomList.h @@ -3,10 +3,4 @@ #include "mc/_HeaderOutputPredefine.h" template -class WeightedRandomList { -public: - // prevent constructor by default - WeightedRandomList& operator=(WeightedRandomList const&); - WeightedRandomList(WeightedRandomList const&); - WeightedRandomList(); -}; +class WeightedRandomList {}; diff --git a/src/mc/util/_ProfilerLiteCounter.h b/src/mc/util/_ProfilerLiteCounter.h index 3adfae7f5d..8537cc52df 100644 --- a/src/mc/util/_ProfilerLiteCounter.h +++ b/src/mc/util/_ProfilerLiteCounter.h @@ -2,10 +2,4 @@ #include "mc/_HeaderOutputPredefine.h" -class _ProfilerLiteCounter { -public: - // prevent constructor by default - _ProfilerLiteCounter& operator=(_ProfilerLiteCounter const&); - _ProfilerLiteCounter(_ProfilerLiteCounter const&); - _ProfilerLiteCounter(); -}; +class _ProfilerLiteCounter {}; diff --git a/src/mc/util/debug_info_utility/DebugBlockUtility.h b/src/mc/util/debug_info_utility/DebugBlockUtility.h index faf238d151..656102aeef 100644 --- a/src/mc/util/debug_info_utility/DebugBlockUtility.h +++ b/src/mc/util/debug_info_utility/DebugBlockUtility.h @@ -4,12 +4,6 @@ namespace DebugInfoUtility { -class DebugBlockUtility { -public: - // prevent constructor by default - DebugBlockUtility& operator=(DebugBlockUtility const&); - DebugBlockUtility(DebugBlockUtility const&); - DebugBlockUtility(); -}; +class DebugBlockUtility {}; } // namespace DebugInfoUtility diff --git a/src/mc/util/gltf/Animation.h b/src/mc/util/gltf/Animation.h index 85d72dd8f1..ff9e61b63e 100644 --- a/src/mc/util/gltf/Animation.h +++ b/src/mc/util/gltf/Animation.h @@ -4,12 +4,6 @@ namespace glTF { -struct Animation { -public: - // prevent constructor by default - Animation& operator=(Animation const&); - Animation(Animation const&); - Animation(); -}; +struct Animation {}; } // namespace glTF diff --git a/src/mc/util/gltf/Primitive.h b/src/mc/util/gltf/Primitive.h index 51b9fa7d65..05cebd670a 100644 --- a/src/mc/util/gltf/Primitive.h +++ b/src/mc/util/gltf/Primitive.h @@ -14,12 +14,6 @@ struct Primitive { UnsignedShort = 5123, Float = 5126, }; - -public: - // prevent constructor by default - Primitive& operator=(Primitive const&); - Primitive(Primitive const&); - Primitive(); }; } // namespace glTF diff --git a/src/mc/util/texture_set_helpers/TextureSetDefinitionLoader.h b/src/mc/util/texture_set_helpers/TextureSetDefinitionLoader.h index d37d3d4d8e..44e5e1ab64 100644 --- a/src/mc/util/texture_set_helpers/TextureSetDefinitionLoader.h +++ b/src/mc/util/texture_set_helpers/TextureSetDefinitionLoader.h @@ -32,12 +32,6 @@ class TextureSetDefinitionLoader { }; class ResourceHelper { - public: - // prevent constructor by default - ResourceHelper& operator=(ResourceHelper const&); - ResourceHelper(ResourceHelper const&); - ResourceHelper(); - public: // virtual functions // NOLINTBEGIN @@ -86,12 +80,6 @@ class TextureSetDefinitionLoader { NoLayer = 2, ErrorLoading = 3, }; - -public: - // prevent constructor by default - TextureSetDefinitionLoader& operator=(TextureSetDefinitionLoader const&); - TextureSetDefinitionLoader(TextureSetDefinitionLoader const&); - TextureSetDefinitionLoader(); }; } // namespace TextureSetHelpers diff --git a/src/mc/util/texture_set_helpers/TextureSetDefinitionParser.h b/src/mc/util/texture_set_helpers/TextureSetDefinitionParser.h index b25bade0f8..2ee3e78cae 100644 --- a/src/mc/util/texture_set_helpers/TextureSetDefinitionParser.h +++ b/src/mc/util/texture_set_helpers/TextureSetDefinitionParser.h @@ -4,12 +4,6 @@ namespace TextureSetHelpers { -class TextureSetDefinitionParser { -public: - // prevent constructor by default - TextureSetDefinitionParser& operator=(TextureSetDefinitionParser const&); - TextureSetDefinitionParser(TextureSetDefinitionParser const&); - TextureSetDefinitionParser(); -}; +class TextureSetDefinitionParser {}; } // namespace TextureSetHelpers diff --git a/src/mc/util/texture_set_helpers/TextureSetLayerDefinitionParser.h b/src/mc/util/texture_set_helpers/TextureSetLayerDefinitionParser.h index deca4ac195..f2dc357023 100644 --- a/src/mc/util/texture_set_helpers/TextureSetLayerDefinitionParser.h +++ b/src/mc/util/texture_set_helpers/TextureSetLayerDefinitionParser.h @@ -4,12 +4,6 @@ namespace TextureSetHelpers { -class TextureSetLayerDefinitionParser { -public: - // prevent constructor by default - TextureSetLayerDefinitionParser& operator=(TextureSetLayerDefinitionParser const&); - TextureSetLayerDefinitionParser(TextureSetLayerDefinitionParser const&); - TextureSetLayerDefinitionParser(); -}; +class TextureSetLayerDefinitionParser {}; } // namespace TextureSetHelpers diff --git a/src/mc/volume/VolumeComponentFactory.h b/src/mc/volume/VolumeComponentFactory.h index 9ae6fe1cab..9e8dfb33a7 100644 --- a/src/mc/volume/VolumeComponentFactory.h +++ b/src/mc/volume/VolumeComponentFactory.h @@ -6,12 +6,6 @@ #include "mc/entity/factory/EntityComponentFactoryCereal.h" class VolumeComponentFactory : public ::EntityComponentFactoryCereal<::VolumeComponentFactory> { -public: - // prevent constructor by default - VolumeComponentFactory& operator=(VolumeComponentFactory const&); - VolumeComponentFactory(VolumeComponentFactory const&); - VolumeComponentFactory(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/volume/components/VolumeTriggerConstraint.h b/src/mc/volume/components/VolumeTriggerConstraint.h index dcc292071a..42d2ae41fd 100644 --- a/src/mc/volume/components/VolumeTriggerConstraint.h +++ b/src/mc/volume/components/VolumeTriggerConstraint.h @@ -12,12 +12,6 @@ namespace cereal::internal { struct ConstraintDescription; } // clang-format on class VolumeTriggerConstraint : public ::cereal::Constraint { -public: - // prevent constructor by default - VolumeTriggerConstraint& operator=(VolumeTriggerConstraint const&); - VolumeTriggerConstraint(VolumeTriggerConstraint const&); - VolumeTriggerConstraint(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/websockets/RakWebSocketClient.h b/src/mc/websockets/RakWebSocketClient.h index d6cbe62ddc..7b930a2bef 100644 --- a/src/mc/websockets/RakWebSocketClient.h +++ b/src/mc/websockets/RakWebSocketClient.h @@ -6,12 +6,6 @@ #include "mc/websockets/RakWebSocket.h" class RakWebSocketClient : public ::RakWebSocket { -public: - // prevent constructor by default - RakWebSocketClient& operator=(RakWebSocketClient const&); - RakWebSocketClient(RakWebSocketClient const&); - RakWebSocketClient(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/websockets/TcpProxy.h b/src/mc/websockets/TcpProxy.h index f0db1771dc..47117b396f 100644 --- a/src/mc/websockets/TcpProxy.h +++ b/src/mc/websockets/TcpProxy.h @@ -9,12 +9,6 @@ namespace RakNet { struct SystemAddress; } // clang-format on class TcpProxy { -public: - // prevent constructor by default - TcpProxy& operator=(TcpProxy const&); - TcpProxy(TcpProxy const&); - TcpProxy(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/websockets/automation/AutomationObserver.h b/src/mc/websockets/automation/AutomationObserver.h index e5286762da..eb805d647b 100644 --- a/src/mc/websockets/automation/AutomationObserver.h +++ b/src/mc/websockets/automation/AutomationObserver.h @@ -13,12 +13,6 @@ namespace Core { class SingleThreadedLock; } namespace Automation { class AutomationObserver : public ::Core::Observer<::Automation::AutomationObserver, ::Core::SingleThreadedLock> { -public: - // prevent constructor by default - AutomationObserver& operator=(AutomationObserver const&); - AutomationObserver(AutomationObserver const&); - AutomationObserver(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/win/PDFHelpers.h b/src/mc/win/PDFHelpers.h index ec7f2a8a2b..f4e574c22c 100644 --- a/src/mc/win/PDFHelpers.h +++ b/src/mc/win/PDFHelpers.h @@ -2,10 +2,4 @@ #include "mc/_HeaderOutputPredefine.h" -class PDFHelpers { -public: - // prevent constructor by default - PDFHelpers& operator=(PDFHelpers const&); - PDFHelpers(PDFHelpers const&); - PDFHelpers(); -}; +class PDFHelpers {}; diff --git a/src/mc/win/PDFWriterWindows.h b/src/mc/win/PDFWriterWindows.h index 9655c5de97..21f3ff1480 100644 --- a/src/mc/win/PDFWriterWindows.h +++ b/src/mc/win/PDFWriterWindows.h @@ -12,12 +12,6 @@ struct PDFOptions; // clang-format on class PDFWriterWindows : public ::PDFWriter { -public: - // prevent constructor by default - PDFWriterWindows& operator=(PDFWriterWindows const&); - PDFWriterWindows(PDFWriterWindows const&); - PDFWriterWindows(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/ContainerCloseListener.h b/src/mc/world/ContainerCloseListener.h index 9997681165..7bef15527a 100644 --- a/src/mc/world/ContainerCloseListener.h +++ b/src/mc/world/ContainerCloseListener.h @@ -8,12 +8,6 @@ class Player; // clang-format on class ContainerCloseListener { -public: - // prevent constructor by default - ContainerCloseListener& operator=(ContainerCloseListener const&); - ContainerCloseListener(ContainerCloseListener const&); - ContainerCloseListener(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/ContainerContentChangeListener.h b/src/mc/world/ContainerContentChangeListener.h index 045b601955..181fe56404 100644 --- a/src/mc/world/ContainerContentChangeListener.h +++ b/src/mc/world/ContainerContentChangeListener.h @@ -3,12 +3,6 @@ #include "mc/_HeaderOutputPredefine.h" class ContainerContentChangeListener { -public: - // prevent constructor by default - ContainerContentChangeListener& operator=(ContainerContentChangeListener const&); - ContainerContentChangeListener(ContainerContentChangeListener const&); - ContainerContentChangeListener(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/ContainerRuntimeIdTag.h b/src/mc/world/ContainerRuntimeIdTag.h index 7f95872ab7..2d99caf11e 100644 --- a/src/mc/world/ContainerRuntimeIdTag.h +++ b/src/mc/world/ContainerRuntimeIdTag.h @@ -2,10 +2,4 @@ #include "mc/_HeaderOutputPredefine.h" -struct ContainerRuntimeIdTag { -public: - // prevent constructor by default - ContainerRuntimeIdTag& operator=(ContainerRuntimeIdTag const&); - ContainerRuntimeIdTag(ContainerRuntimeIdTag const&); - ContainerRuntimeIdTag(); -}; +struct ContainerRuntimeIdTag {}; diff --git a/src/mc/world/ContainerSizeChangeListener.h b/src/mc/world/ContainerSizeChangeListener.h index 2ebed4d25d..a17919c3b0 100644 --- a/src/mc/world/ContainerSizeChangeListener.h +++ b/src/mc/world/ContainerSizeChangeListener.h @@ -3,12 +3,6 @@ #include "mc/_HeaderOutputPredefine.h" class ContainerSizeChangeListener { -public: - // prevent constructor by default - ContainerSizeChangeListener& operator=(ContainerSizeChangeListener const&); - ContainerSizeChangeListener(ContainerSizeChangeListener const&); - ContainerSizeChangeListener(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/Direction.h b/src/mc/world/Direction.h index eb9cac922a..dbb492af37 100644 --- a/src/mc/world/Direction.h +++ b/src/mc/world/Direction.h @@ -17,12 +17,6 @@ class Direction { Undefined = 255, }; -public: - // prevent constructor by default - Direction& operator=(Direction const&); - Direction(Direction const&); - Direction(); - public: // static functions // NOLINTBEGIN diff --git a/src/mc/world/GameCallbacks.h b/src/mc/world/GameCallbacks.h index 8a16f9f700..5d06ae0d52 100644 --- a/src/mc/world/GameCallbacks.h +++ b/src/mc/world/GameCallbacks.h @@ -3,12 +3,6 @@ #include "mc/_HeaderOutputPredefine.h" class GameCallbacks { -public: - // prevent constructor by default - GameCallbacks& operator=(GameCallbacks const&); - GameCallbacks(GameCallbacks const&); - GameCallbacks(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/ParticleSystemInterface.h b/src/mc/world/ParticleSystemInterface.h index 0710607b5a..81562f7cc0 100644 --- a/src/mc/world/ParticleSystemInterface.h +++ b/src/mc/world/ParticleSystemInterface.h @@ -15,12 +15,6 @@ class Vec3; // clang-format on class ParticleSystemInterface { -public: - // prevent constructor by default - ParticleSystemInterface& operator=(ParticleSystemInterface const&); - ParticleSystemInterface(ParticleSystemInterface const&); - ParticleSystemInterface(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/PlayerUIContainer.h b/src/mc/world/PlayerUIContainer.h index 8db3d6182e..4ad1eef6f6 100644 --- a/src/mc/world/PlayerUIContainer.h +++ b/src/mc/world/PlayerUIContainer.h @@ -13,12 +13,6 @@ class SemVersion; // clang-format on class PlayerUIContainer : public ::SimpleContainer { -public: - // prevent constructor by default - PlayerUIContainer& operator=(PlayerUIContainer const&); - PlayerUIContainer(PlayerUIContainer const&); - PlayerUIContainer(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/TypedRuntimeId.h b/src/mc/world/TypedRuntimeId.h index 0a425488df..6f9630c93f 100644 --- a/src/mc/world/TypedRuntimeId.h +++ b/src/mc/world/TypedRuntimeId.h @@ -3,10 +3,4 @@ #include "mc/_HeaderOutputPredefine.h" template -class TypedRuntimeId { -public: - // prevent constructor by default - TypedRuntimeId& operator=(TypedRuntimeId const&); - TypedRuntimeId(TypedRuntimeId const&); - TypedRuntimeId(); -}; +class TypedRuntimeId {}; diff --git a/src/mc/world/actor/ActorClassTree.h b/src/mc/world/actor/ActorClassTree.h index 38564df5b0..b9cfb957e8 100644 --- a/src/mc/world/actor/ActorClassTree.h +++ b/src/mc/world/actor/ActorClassTree.h @@ -12,12 +12,6 @@ class Actor; // clang-format on class ActorClassTree { -public: - // prevent constructor by default - ActorClassTree& operator=(ActorClassTree const&); - ActorClassTree(ActorClassTree const&); - ActorClassTree(); - public: // static functions // NOLINTBEGIN diff --git a/src/mc/world/actor/ActorComponentDescription.h b/src/mc/world/actor/ActorComponentDescription.h index 61cc38a63c..34a9daa487 100644 --- a/src/mc/world/actor/ActorComponentDescription.h +++ b/src/mc/world/actor/ActorComponentDescription.h @@ -6,12 +6,6 @@ #include "mc/world/actor/Description.h" struct ActorComponentDescription : public ::Description { -public: - // prevent constructor by default - ActorComponentDescription& operator=(ActorComponentDescription const&); - ActorComponentDescription(ActorComponentDescription const&); - ActorComponentDescription(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/actor/ActorComponentFactory.h b/src/mc/world/actor/ActorComponentFactory.h index 074b0ce9a8..70a7a3f6cb 100644 --- a/src/mc/world/actor/ActorComponentFactory.h +++ b/src/mc/world/actor/ActorComponentFactory.h @@ -11,12 +11,6 @@ class Experiments; // clang-format on class ActorComponentFactory : public ::EntityComponentFactoryJson { -public: - // prevent constructor by default - ActorComponentFactory& operator=(ActorComponentFactory const&); - ActorComponentFactory(ActorComponentFactory const&); - ActorComponentFactory(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/actor/ActorDefinitionDescriptor.h b/src/mc/world/actor/ActorDefinitionDescriptor.h index c5b69921ac..7d21aece8b 100644 --- a/src/mc/world/actor/ActorDefinitionDescriptor.h +++ b/src/mc/world/actor/ActorDefinitionDescriptor.h @@ -19,13 +19,7 @@ class ActorDefinitionDescriptor { // clang-format on // ActorDefinitionDescriptor inner types define - struct IsHiddenWhenInvisibleDescription { - public: - // prevent constructor by default - IsHiddenWhenInvisibleDescription& operator=(IsHiddenWhenInvisibleDescription const&); - IsHiddenWhenInvisibleDescription(IsHiddenWhenInvisibleDescription const&); - IsHiddenWhenInvisibleDescription(); - }; + struct IsHiddenWhenInvisibleDescription {}; public: // member variables diff --git a/src/mc/world/actor/ActorFilterGroup.h b/src/mc/world/actor/ActorFilterGroup.h index c948c1066c..cb6d8d07b0 100644 --- a/src/mc/world/actor/ActorFilterGroup.h +++ b/src/mc/world/actor/ActorFilterGroup.h @@ -49,11 +49,6 @@ class ActorFilterGroup : public ::FilterGroup { LegacyMapping(); }; -public: - // prevent constructor by default - ActorFilterGroup(ActorFilterGroup const&); - ActorFilterGroup(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/actor/ActorLegacySaveConverter.h b/src/mc/world/actor/ActorLegacySaveConverter.h index 27f419a985..12d2e115ad 100644 --- a/src/mc/world/actor/ActorLegacySaveConverter.h +++ b/src/mc/world/actor/ActorLegacySaveConverter.h @@ -9,12 +9,6 @@ class CompoundTag; // clang-format on class ActorLegacySaveConverter { -public: - // prevent constructor by default - ActorLegacySaveConverter& operator=(ActorLegacySaveConverter const&); - ActorLegacySaveConverter(ActorLegacySaveConverter const&); - ActorLegacySaveConverter(); - public: // static functions // NOLINTBEGIN diff --git a/src/mc/world/actor/AttributeDescription.h b/src/mc/world/actor/AttributeDescription.h index 6cf7de10e4..56db0d6e72 100644 --- a/src/mc/world/actor/AttributeDescription.h +++ b/src/mc/world/actor/AttributeDescription.h @@ -6,12 +6,6 @@ #include "mc/world/actor/Description.h" struct AttributeDescription : public ::Description { -public: - // prevent constructor by default - AttributeDescription& operator=(AttributeDescription const&); - AttributeDescription(AttributeDescription const&); - AttributeDescription(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/actor/DefintionDescription.h b/src/mc/world/actor/DefintionDescription.h index e4a15c8a25..e0421b2194 100644 --- a/src/mc/world/actor/DefintionDescription.h +++ b/src/mc/world/actor/DefintionDescription.h @@ -3,12 +3,6 @@ #include "mc/_HeaderOutputPredefine.h" struct DefintionDescription { -public: - // prevent constructor by default - DefintionDescription& operator=(DefintionDescription const&); - DefintionDescription(DefintionDescription const&); - DefintionDescription(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/actor/Description.h b/src/mc/world/actor/Description.h index 33a39d1441..a5af7bfd21 100644 --- a/src/mc/world/actor/Description.h +++ b/src/mc/world/actor/Description.h @@ -8,12 +8,6 @@ struct DeserializeDataParams; // clang-format on struct Description { -public: - // prevent constructor by default - Description& operator=(Description const&); - Description(Description const&); - Description(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/actor/IEntityInitializer.h b/src/mc/world/actor/IEntityInitializer.h index b9e24cc6aa..cb78dda334 100644 --- a/src/mc/world/actor/IEntityInitializer.h +++ b/src/mc/world/actor/IEntityInitializer.h @@ -9,12 +9,6 @@ class EntityContext; // clang-format on class IEntityInitializer { -public: - // prevent constructor by default - IEntityInitializer& operator=(IEntityInitializer const&); - IEntityInitializer(IEntityInitializer const&); - IEntityInitializer(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/actor/ISynchedActorDataAdapter.h b/src/mc/world/actor/ISynchedActorDataAdapter.h index 43ee7dd421..2f735887e3 100644 --- a/src/mc/world/actor/ISynchedActorDataAdapter.h +++ b/src/mc/world/actor/ISynchedActorDataAdapter.h @@ -11,12 +11,6 @@ namespace SynchedActorDataSerializer { struct DeserializeResult; } // clang-format on struct ISynchedActorDataAdapter { -public: - // prevent constructor by default - ISynchedActorDataAdapter& operator=(ISynchedActorDataAdapter const&); - ISynchedActorDataAdapter(ISynchedActorDataAdapter const&); - ISynchedActorDataAdapter(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/actor/KnockbackArmorUpdater.h b/src/mc/world/actor/KnockbackArmorUpdater.h index 3a49308cb6..f25f1bca93 100644 --- a/src/mc/world/actor/KnockbackArmorUpdater.h +++ b/src/mc/world/actor/KnockbackArmorUpdater.h @@ -13,12 +13,6 @@ struct ActorEquippedArmorEvent; // clang-format on class KnockbackArmorUpdater : public ::EventListenerDispatcher<::ActorEventListener> { -public: - // prevent constructor by default - KnockbackArmorUpdater& operator=(KnockbackArmorUpdater const&); - KnockbackArmorUpdater(KnockbackArmorUpdater const&); - KnockbackArmorUpdater(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/actor/LeashFenceKnotActor.h b/src/mc/world/actor/LeashFenceKnotActor.h index 52fbf38f02..a47a15bdc5 100644 --- a/src/mc/world/actor/LeashFenceKnotActor.h +++ b/src/mc/world/actor/LeashFenceKnotActor.h @@ -21,12 +21,6 @@ struct VariantParameterList; // clang-format on class LeashFenceKnotActor : public ::HangingActor { -public: - // prevent constructor by default - LeashFenceKnotActor& operator=(LeashFenceKnotActor const&); - LeashFenceKnotActor(LeashFenceKnotActor const&); - LeashFenceKnotActor(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/actor/NetheriteArmorEquippedListener.h b/src/mc/world/actor/NetheriteArmorEquippedListener.h index 7e2a619788..000c2792f4 100644 --- a/src/mc/world/actor/NetheriteArmorEquippedListener.h +++ b/src/mc/world/actor/NetheriteArmorEquippedListener.h @@ -13,12 +13,6 @@ struct ActorEquippedArmorEvent; // clang-format on class NetheriteArmorEquippedListener : public ::EventListenerDispatcher<::ActorEventListener> { -public: - // prevent constructor by default - NetheriteArmorEquippedListener& operator=(NetheriteArmorEquippedListener const&); - NetheriteArmorEquippedListener(NetheriteArmorEquippedListener const&); - NetheriteArmorEquippedListener(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/actor/Parser.h b/src/mc/world/actor/Parser.h index 9ae53e32b8..01014547fb 100644 --- a/src/mc/world/actor/Parser.h +++ b/src/mc/world/actor/Parser.h @@ -29,12 +29,6 @@ namespace Json { class Value; } // clang-format on class Parser { -public: - // prevent constructor by default - Parser& operator=(Parser const&); - Parser(Parser const&); - Parser(); - public: // static functions // NOLINTBEGIN diff --git a/src/mc/world/actor/ParticleTypeMap.h b/src/mc/world/actor/ParticleTypeMap.h index 4cddbe2ba9..90b7e89e5f 100644 --- a/src/mc/world/actor/ParticleTypeMap.h +++ b/src/mc/world/actor/ParticleTypeMap.h @@ -12,12 +12,6 @@ class HashedString; // clang-format on class ParticleTypeMap { -public: - // prevent constructor by default - ParticleTypeMap& operator=(ParticleTypeMap const&); - ParticleTypeMap(ParticleTypeMap const&); - ParticleTypeMap(); - public: // static functions // NOLINTBEGIN diff --git a/src/mc/world/actor/SpawnChecks.h b/src/mc/world/actor/SpawnChecks.h index e681e3cb62..9ec1fb118e 100644 --- a/src/mc/world/actor/SpawnChecks.h +++ b/src/mc/world/actor/SpawnChecks.h @@ -11,12 +11,6 @@ class ServerLevel; // clang-format on class SpawnChecks { -public: - // prevent constructor by default - SpawnChecks& operator=(SpawnChecks const&); - SpawnChecks(SpawnChecks const&); - SpawnChecks(); - public: // static functions // NOLINTBEGIN diff --git a/src/mc/world/actor/VehicleUtils.h b/src/mc/world/actor/VehicleUtils.h index cbca608690..92faf740ed 100644 --- a/src/mc/world/actor/VehicleUtils.h +++ b/src/mc/world/actor/VehicleUtils.h @@ -34,12 +34,6 @@ class VehicleUtils { VehicleDirections(); }; -public: - // prevent constructor by default - VehicleUtils& operator=(VehicleUtils const&); - VehicleUtils(VehicleUtils const&); - VehicleUtils(); - public: // static functions // NOLINTBEGIN diff --git a/src/mc/world/actor/_TickPtr.h b/src/mc/world/actor/_TickPtr.h index 81f113ffb9..122b6e2f24 100644 --- a/src/mc/world/actor/_TickPtr.h +++ b/src/mc/world/actor/_TickPtr.h @@ -3,12 +3,6 @@ #include "mc/_HeaderOutputPredefine.h" class _TickPtr { -public: - // prevent constructor by default - _TickPtr& operator=(_TickPtr const&); - _TickPtr(_TickPtr const&); - _TickPtr(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/actor/agent/AgentBodyControl.h b/src/mc/world/actor/agent/AgentBodyControl.h index 093823141e..b7b19d58a8 100644 --- a/src/mc/world/actor/agent/AgentBodyControl.h +++ b/src/mc/world/actor/agent/AgentBodyControl.h @@ -11,12 +11,6 @@ class Mob; // clang-format on class AgentBodyControl : public ::BodyControl { -public: - // prevent constructor by default - AgentBodyControl& operator=(AgentBodyControl const&); - AgentBodyControl(AgentBodyControl const&); - AgentBodyControl(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/actor/agent/AgentLookControl.h b/src/mc/world/actor/agent/AgentLookControl.h index bc5430c494..df374befd5 100644 --- a/src/mc/world/actor/agent/AgentLookControl.h +++ b/src/mc/world/actor/agent/AgentLookControl.h @@ -11,11 +11,6 @@ class Mob; // clang-format on class AgentLookControl : public ::LookControl { -public: - // prevent constructor by default - AgentLookControl& operator=(AgentLookControl const&); - AgentLookControl(AgentLookControl const&); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/actor/ai/control/AmphibiousMoveControl.h b/src/mc/world/actor/ai/control/AmphibiousMoveControl.h index 9e9528ea17..96efdaaffd 100644 --- a/src/mc/world/actor/ai/control/AmphibiousMoveControl.h +++ b/src/mc/world/actor/ai/control/AmphibiousMoveControl.h @@ -12,11 +12,6 @@ class MoveControlComponent; // clang-format on class AmphibiousMoveControl : public ::GenericMoveControl { -public: - // prevent constructor by default - AmphibiousMoveControl& operator=(AmphibiousMoveControl const&); - AmphibiousMoveControl(AmphibiousMoveControl const&); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/actor/ai/control/Control.h b/src/mc/world/actor/ai/control/Control.h index 5741be6808..05a90c85b4 100644 --- a/src/mc/world/actor/ai/control/Control.h +++ b/src/mc/world/actor/ai/control/Control.h @@ -3,12 +3,6 @@ #include "mc/_HeaderOutputPredefine.h" class Control { -public: - // prevent constructor by default - Control& operator=(Control const&); - Control(Control const&); - Control(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/actor/ai/control/DynamicJumpControl.h b/src/mc/world/actor/ai/control/DynamicJumpControl.h index 9d801417e8..3e81e4bb22 100644 --- a/src/mc/world/actor/ai/control/DynamicJumpControl.h +++ b/src/mc/world/actor/ai/control/DynamicJumpControl.h @@ -14,11 +14,6 @@ struct JumpControlDescription; // clang-format on class DynamicJumpControl : public ::JumpControl { -public: - // prevent constructor by default - DynamicJumpControl& operator=(DynamicJumpControl const&); - DynamicJumpControl(DynamicJumpControl const&); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/actor/ai/control/FlyMoveControl.h b/src/mc/world/actor/ai/control/FlyMoveControl.h index e687404dfb..ca4c00ea57 100644 --- a/src/mc/world/actor/ai/control/FlyMoveControl.h +++ b/src/mc/world/actor/ai/control/FlyMoveControl.h @@ -12,11 +12,6 @@ class MoveControlComponent; // clang-format on class FlyMoveControl : public ::MoveControl { -public: - // prevent constructor by default - FlyMoveControl& operator=(FlyMoveControl const&); - FlyMoveControl(FlyMoveControl const&); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/actor/ai/control/GenericMoveControl.h b/src/mc/world/actor/ai/control/GenericMoveControl.h index 5dda1dc4ac..0c88181bed 100644 --- a/src/mc/world/actor/ai/control/GenericMoveControl.h +++ b/src/mc/world/actor/ai/control/GenericMoveControl.h @@ -13,11 +13,6 @@ struct MoveControlDescription; // clang-format on class GenericMoveControl : public ::MoveControl { -public: - // prevent constructor by default - GenericMoveControl& operator=(GenericMoveControl const&); - GenericMoveControl(GenericMoveControl const&); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/actor/ai/control/HoverMoveControl.h b/src/mc/world/actor/ai/control/HoverMoveControl.h index 3bebb745ef..bac4657018 100644 --- a/src/mc/world/actor/ai/control/HoverMoveControl.h +++ b/src/mc/world/actor/ai/control/HoverMoveControl.h @@ -12,11 +12,6 @@ class MoveControlComponent; // clang-format on class HoverMoveControl : public ::MoveControl { -public: - // prevent constructor by default - HoverMoveControl& operator=(HoverMoveControl const&); - HoverMoveControl(HoverMoveControl const&); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/actor/ai/control/JumpControl.h b/src/mc/world/actor/ai/control/JumpControl.h index cac569d7b7..13dcfdfcf1 100644 --- a/src/mc/world/actor/ai/control/JumpControl.h +++ b/src/mc/world/actor/ai/control/JumpControl.h @@ -14,11 +14,6 @@ struct JumpControlDescription; // clang-format on class JumpControl : public ::Control { -public: - // prevent constructor by default - JumpControl& operator=(JumpControl const&); - JumpControl(JumpControl const&); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/actor/ai/control/LegacyBodyControl.h b/src/mc/world/actor/ai/control/LegacyBodyControl.h index 2f1fb19d9c..e177471c6c 100644 --- a/src/mc/world/actor/ai/control/LegacyBodyControl.h +++ b/src/mc/world/actor/ai/control/LegacyBodyControl.h @@ -11,11 +11,6 @@ class Mob; // clang-format on class LegacyBodyControl : public ::BodyControl { -public: - // prevent constructor by default - LegacyBodyControl& operator=(LegacyBodyControl const&); - LegacyBodyControl(LegacyBodyControl const&); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/actor/ai/control/LookControl.h b/src/mc/world/actor/ai/control/LookControl.h index 7e7f32a26b..1873cfe9f4 100644 --- a/src/mc/world/actor/ai/control/LookControl.h +++ b/src/mc/world/actor/ai/control/LookControl.h @@ -11,11 +11,6 @@ class Mob; // clang-format on class LookControl : public ::Control { -public: - // prevent constructor by default - LookControl& operator=(LookControl const&); - LookControl(LookControl const&); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/actor/ai/control/MoveControl.h b/src/mc/world/actor/ai/control/MoveControl.h index 320fe3a160..b1f4caf3f0 100644 --- a/src/mc/world/actor/ai/control/MoveControl.h +++ b/src/mc/world/actor/ai/control/MoveControl.h @@ -14,11 +14,6 @@ struct MoveControlDescription; // clang-format on class MoveControl : public ::Control { -public: - // prevent constructor by default - MoveControl& operator=(MoveControl const&); - MoveControl(MoveControl const&); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/actor/ai/control/SwimMoveControl.h b/src/mc/world/actor/ai/control/SwimMoveControl.h index 75b1f87669..63862095c1 100644 --- a/src/mc/world/actor/ai/control/SwimMoveControl.h +++ b/src/mc/world/actor/ai/control/SwimMoveControl.h @@ -13,11 +13,6 @@ struct MoveControlDescription; // clang-format on class SwimMoveControl : public ::MoveControl { -public: - // prevent constructor by default - SwimMoveControl& operator=(SwimMoveControl const&); - SwimMoveControl(SwimMoveControl const&); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/actor/ai/goal/EquipItemGoal.h b/src/mc/world/actor/ai/goal/EquipItemGoal.h index ecd2de0a37..99b0a97b32 100644 --- a/src/mc/world/actor/ai/goal/EquipItemGoal.h +++ b/src/mc/world/actor/ai/goal/EquipItemGoal.h @@ -25,12 +25,6 @@ class EquipItemGoal : public ::Goal { // EquipItemGoal inner types define class Definition : public ::BaseGoalDefinition { - public: - // prevent constructor by default - Definition& operator=(Definition const&); - Definition(Definition const&); - Definition(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/actor/ai/goal/FleeSunGoal.h b/src/mc/world/actor/ai/goal/FleeSunGoal.h index e8f688efbb..655e9ea890 100644 --- a/src/mc/world/actor/ai/goal/FleeSunGoal.h +++ b/src/mc/world/actor/ai/goal/FleeSunGoal.h @@ -11,12 +11,6 @@ class Mob; // clang-format on class FleeSunGoal : public ::FindCoverGoal { -public: - // prevent constructor by default - FleeSunGoal& operator=(FleeSunGoal const&); - FleeSunGoal(FleeSunGoal const&); - FleeSunGoal(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/actor/ai/goal/IdleState.h b/src/mc/world/actor/ai/goal/IdleState.h index 055646efa4..24f1b8b817 100644 --- a/src/mc/world/actor/ai/goal/IdleState.h +++ b/src/mc/world/actor/ai/goal/IdleState.h @@ -6,12 +6,6 @@ #include "mc/world/actor/ai/goal/PetSleepWithOwnerState.h" class IdleState : public ::PetSleepWithOwnerState { -public: - // prevent constructor by default - IdleState& operator=(IdleState const&); - IdleState(IdleState const&); - IdleState(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/actor/ai/goal/KnockbackRoarGoalMinEngineVersionUtils.h b/src/mc/world/actor/ai/goal/KnockbackRoarGoalMinEngineVersionUtils.h index a6d9b1ed63..e6f0b0c5e6 100644 --- a/src/mc/world/actor/ai/goal/KnockbackRoarGoalMinEngineVersionUtils.h +++ b/src/mc/world/actor/ai/goal/KnockbackRoarGoalMinEngineVersionUtils.h @@ -8,12 +8,6 @@ class MinEngineVersion; // clang-format on class KnockbackRoarGoalMinEngineVersionUtils { -public: - // prevent constructor by default - KnockbackRoarGoalMinEngineVersionUtils& operator=(KnockbackRoarGoalMinEngineVersionUtils const&); - KnockbackRoarGoalMinEngineVersionUtils(KnockbackRoarGoalMinEngineVersionUtils const&); - KnockbackRoarGoalMinEngineVersionUtils(); - public: // static functions // NOLINTBEGIN diff --git a/src/mc/world/actor/ai/goal/LookAtEntityGoal.h b/src/mc/world/actor/ai/goal/LookAtEntityGoal.h index 8d8c0370d5..2e84b99891 100644 --- a/src/mc/world/actor/ai/goal/LookAtEntityGoal.h +++ b/src/mc/world/actor/ai/goal/LookAtEntityGoal.h @@ -6,12 +6,6 @@ #include "mc/world/actor/ai/goal/LookAtActorGoal.h" class LookAtEntityGoal : public ::LookAtActorGoal { -public: - // prevent constructor by default - LookAtEntityGoal& operator=(LookAtEntityGoal const&); - LookAtEntityGoal(LookAtEntityGoal const&); - LookAtEntityGoal(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/actor/ai/goal/LookAtPlayerGoal.h b/src/mc/world/actor/ai/goal/LookAtPlayerGoal.h index 301a33454d..d3a5b5de8c 100644 --- a/src/mc/world/actor/ai/goal/LookAtPlayerGoal.h +++ b/src/mc/world/actor/ai/goal/LookAtPlayerGoal.h @@ -6,12 +6,6 @@ #include "mc/world/actor/ai/goal/LookAtActorGoal.h" class LookAtPlayerGoal : public ::LookAtActorGoal { -public: - // prevent constructor by default - LookAtPlayerGoal& operator=(LookAtPlayerGoal const&); - LookAtPlayerGoal(LookAtPlayerGoal const&); - LookAtPlayerGoal(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/actor/ai/goal/LookAtTargetGoal.h b/src/mc/world/actor/ai/goal/LookAtTargetGoal.h index 1f7dd05022..c63f211020 100644 --- a/src/mc/world/actor/ai/goal/LookAtTargetGoal.h +++ b/src/mc/world/actor/ai/goal/LookAtTargetGoal.h @@ -6,12 +6,6 @@ #include "mc/world/actor/ai/goal/LookAtActorGoal.h" class LookAtTargetGoal : public ::LookAtActorGoal { -public: - // prevent constructor by default - LookAtTargetGoal& operator=(LookAtTargetGoal const&); - LookAtTargetGoal(LookAtTargetGoal const&); - LookAtTargetGoal(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/actor/ai/goal/MoveToLandGoal.h b/src/mc/world/actor/ai/goal/MoveToLandGoal.h index 2def034c07..28c644d50c 100644 --- a/src/mc/world/actor/ai/goal/MoveToLandGoal.h +++ b/src/mc/world/actor/ai/goal/MoveToLandGoal.h @@ -13,12 +13,6 @@ class Mob; // clang-format on class MoveToLandGoal : public ::BaseMoveToBlockGoal { -public: - // prevent constructor by default - MoveToLandGoal& operator=(MoveToLandGoal const&); - MoveToLandGoal(MoveToLandGoal const&); - MoveToLandGoal(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/actor/ai/goal/MoveToLavaGoal.h b/src/mc/world/actor/ai/goal/MoveToLavaGoal.h index 3c1b6179ff..21db4f2612 100644 --- a/src/mc/world/actor/ai/goal/MoveToLavaGoal.h +++ b/src/mc/world/actor/ai/goal/MoveToLavaGoal.h @@ -11,12 +11,6 @@ class Mob; // clang-format on class MoveToLavaGoal : public ::MoveToLiquidGoal { -public: - // prevent constructor by default - MoveToLavaGoal& operator=(MoveToLavaGoal const&); - MoveToLavaGoal(MoveToLavaGoal const&); - MoveToLavaGoal(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/actor/ai/goal/MoveToWaterGoal.h b/src/mc/world/actor/ai/goal/MoveToWaterGoal.h index 43eb45832f..79a3983b59 100644 --- a/src/mc/world/actor/ai/goal/MoveToWaterGoal.h +++ b/src/mc/world/actor/ai/goal/MoveToWaterGoal.h @@ -6,12 +6,6 @@ #include "mc/world/actor/ai/goal/MoveToLiquidGoal.h" class MoveToWaterGoal : public ::MoveToLiquidGoal { -public: - // prevent constructor by default - MoveToWaterGoal& operator=(MoveToWaterGoal const&); - MoveToWaterGoal(MoveToWaterGoal const&); - MoveToWaterGoal(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/actor/ai/goal/MoveTowardsDwellingRestrictionDefinition.h b/src/mc/world/actor/ai/goal/MoveTowardsDwellingRestrictionDefinition.h index 70ad09006f..2c46378634 100644 --- a/src/mc/world/actor/ai/goal/MoveTowardsDwellingRestrictionDefinition.h +++ b/src/mc/world/actor/ai/goal/MoveTowardsDwellingRestrictionDefinition.h @@ -12,11 +12,6 @@ namespace JsonUtil { class EmptyClass; } // clang-format on class MoveTowardsDwellingRestrictionDefinition : public ::MoveTowardsRestrictionDefinition { -public: - // prevent constructor by default - MoveTowardsDwellingRestrictionDefinition& operator=(MoveTowardsDwellingRestrictionDefinition const&); - MoveTowardsDwellingRestrictionDefinition(MoveTowardsDwellingRestrictionDefinition const&); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/actor/ai/goal/MoveTowardsDwellingRestrictionGoal.h b/src/mc/world/actor/ai/goal/MoveTowardsDwellingRestrictionGoal.h index 087e823088..830481b983 100644 --- a/src/mc/world/actor/ai/goal/MoveTowardsDwellingRestrictionGoal.h +++ b/src/mc/world/actor/ai/goal/MoveTowardsDwellingRestrictionGoal.h @@ -11,12 +11,6 @@ class Mob; // clang-format on class MoveTowardsDwellingRestrictionGoal : public ::MoveTowardsRestrictionGoal { -public: - // prevent constructor by default - MoveTowardsDwellingRestrictionGoal& operator=(MoveTowardsDwellingRestrictionGoal const&); - MoveTowardsDwellingRestrictionGoal(MoveTowardsDwellingRestrictionGoal const&); - MoveTowardsDwellingRestrictionGoal(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/actor/ai/goal/MoveTowardsHomeRestrictionDefinition.h b/src/mc/world/actor/ai/goal/MoveTowardsHomeRestrictionDefinition.h index 1d00b56ce9..974e095203 100644 --- a/src/mc/world/actor/ai/goal/MoveTowardsHomeRestrictionDefinition.h +++ b/src/mc/world/actor/ai/goal/MoveTowardsHomeRestrictionDefinition.h @@ -12,11 +12,6 @@ namespace JsonUtil { class EmptyClass; } // clang-format on class MoveTowardsHomeRestrictionDefinition : public ::MoveTowardsRestrictionDefinition { -public: - // prevent constructor by default - MoveTowardsHomeRestrictionDefinition& operator=(MoveTowardsHomeRestrictionDefinition const&); - MoveTowardsHomeRestrictionDefinition(MoveTowardsHomeRestrictionDefinition const&); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/actor/ai/goal/MoveTowardsHomeRestrictionGoal.h b/src/mc/world/actor/ai/goal/MoveTowardsHomeRestrictionGoal.h index 07ad4c61df..264f046242 100644 --- a/src/mc/world/actor/ai/goal/MoveTowardsHomeRestrictionGoal.h +++ b/src/mc/world/actor/ai/goal/MoveTowardsHomeRestrictionGoal.h @@ -11,12 +11,6 @@ class Mob; // clang-format on class MoveTowardsHomeRestrictionGoal : public ::MoveTowardsRestrictionGoal { -public: - // prevent constructor by default - MoveTowardsHomeRestrictionGoal& operator=(MoveTowardsHomeRestrictionGoal const&); - MoveTowardsHomeRestrictionGoal(MoveTowardsHomeRestrictionGoal const&); - MoveTowardsHomeRestrictionGoal(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/actor/ai/goal/SleepState.h b/src/mc/world/actor/ai/goal/SleepState.h index d4686d95e6..b3d122b0d3 100644 --- a/src/mc/world/actor/ai/goal/SleepState.h +++ b/src/mc/world/actor/ai/goal/SleepState.h @@ -6,12 +6,6 @@ #include "mc/world/actor/ai/goal/PetSleepWithOwnerState.h" class SleepState : public ::PetSleepWithOwnerState { -public: - // prevent constructor by default - SleepState& operator=(SleepState const&); - SleepState(SleepState const&); - SleepState(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/actor/ai/goal/StompEggGoal.h b/src/mc/world/actor/ai/goal/StompEggGoal.h index 4853331a56..b52c9c43ce 100644 --- a/src/mc/world/actor/ai/goal/StompEggGoal.h +++ b/src/mc/world/actor/ai/goal/StompEggGoal.h @@ -14,12 +14,6 @@ class Mob; // clang-format on class StompEggGoal : public ::StompBlockGoal { -public: - // prevent constructor by default - StompEggGoal& operator=(StompEggGoal const&); - StompEggGoal(StompEggGoal const&); - StompEggGoal(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/actor/ai/goal/TimerActorFlag1Goal.h b/src/mc/world/actor/ai/goal/TimerActorFlag1Goal.h index 040a2a69fb..de98a7dee4 100644 --- a/src/mc/world/actor/ai/goal/TimerActorFlag1Goal.h +++ b/src/mc/world/actor/ai/goal/TimerActorFlag1Goal.h @@ -15,12 +15,6 @@ class TimerActorFlag1Goal : public ::TimerActorFlagBaseGoal { // TimerActorFlag1Goal inner types define class Definition : public ::TimerActorFlagBaseDefinition { - public: - // prevent constructor by default - Definition& operator=(Definition const&); - Definition(Definition const&); - Definition(); - public: // virtual functions // NOLINTBEGIN @@ -41,12 +35,6 @@ class TimerActorFlag1Goal : public ::TimerActorFlagBaseGoal { // NOLINTEND }; -public: - // prevent constructor by default - TimerActorFlag1Goal& operator=(TimerActorFlag1Goal const&); - TimerActorFlag1Goal(TimerActorFlag1Goal const&); - TimerActorFlag1Goal(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/actor/ai/goal/TimerActorFlag2Goal.h b/src/mc/world/actor/ai/goal/TimerActorFlag2Goal.h index 038a39cf24..08a5ccd4ff 100644 --- a/src/mc/world/actor/ai/goal/TimerActorFlag2Goal.h +++ b/src/mc/world/actor/ai/goal/TimerActorFlag2Goal.h @@ -15,12 +15,6 @@ class TimerActorFlag2Goal : public ::TimerActorFlagBaseGoal { // TimerActorFlag2Goal inner types define class Definition : public ::TimerActorFlagBaseDefinition { - public: - // prevent constructor by default - Definition& operator=(Definition const&); - Definition(Definition const&); - Definition(); - public: // virtual functions // NOLINTBEGIN @@ -41,12 +35,6 @@ class TimerActorFlag2Goal : public ::TimerActorFlagBaseGoal { // NOLINTEND }; -public: - // prevent constructor by default - TimerActorFlag2Goal& operator=(TimerActorFlag2Goal const&); - TimerActorFlag2Goal(TimerActorFlag2Goal const&); - TimerActorFlag2Goal(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/actor/ai/goal/TimerActorFlag3Goal.h b/src/mc/world/actor/ai/goal/TimerActorFlag3Goal.h index 3f302c5217..63c637b83c 100644 --- a/src/mc/world/actor/ai/goal/TimerActorFlag3Goal.h +++ b/src/mc/world/actor/ai/goal/TimerActorFlag3Goal.h @@ -15,12 +15,6 @@ class TimerActorFlag3Goal : public ::TimerActorFlagBaseGoal { // TimerActorFlag3Goal inner types define class Definition : public ::TimerActorFlagBaseDefinition { - public: - // prevent constructor by default - Definition& operator=(Definition const&); - Definition(Definition const&); - Definition(); - public: // virtual functions // NOLINTBEGIN @@ -41,12 +35,6 @@ class TimerActorFlag3Goal : public ::TimerActorFlagBaseGoal { // NOLINTEND }; -public: - // prevent constructor by default - TimerActorFlag3Goal& operator=(TimerActorFlag3Goal const&); - TimerActorFlag3Goal(TimerActorFlag3Goal const&); - TimerActorFlag3Goal(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/actor/ai/goal/WalkState.h b/src/mc/world/actor/ai/goal/WalkState.h index bd25373bf0..4ea74530f0 100644 --- a/src/mc/world/actor/ai/goal/WalkState.h +++ b/src/mc/world/actor/ai/goal/WalkState.h @@ -6,12 +6,6 @@ #include "mc/world/actor/ai/goal/PetSleepWithOwnerState.h" class WalkState : public ::PetSleepWithOwnerState { -public: - // prevent constructor by default - WalkState& operator=(WalkState const&); - WalkState(WalkState const&); - WalkState(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/actor/ai/goal/ram_attack_goal_utils/RamGoalItemDropperInterface.h b/src/mc/world/actor/ai/goal/ram_attack_goal_utils/RamGoalItemDropperInterface.h index 9693160e95..c57929601f 100644 --- a/src/mc/world/actor/ai/goal/ram_attack_goal_utils/RamGoalItemDropperInterface.h +++ b/src/mc/world/actor/ai/goal/ram_attack_goal_utils/RamGoalItemDropperInterface.h @@ -10,12 +10,6 @@ class Vec3; namespace RamAttackGoalUtils { class RamGoalItemDropperInterface { -public: - // prevent constructor by default - RamGoalItemDropperInterface& operator=(RamGoalItemDropperInterface const&); - RamGoalItemDropperInterface(RamGoalItemDropperInterface const&); - RamGoalItemDropperInterface(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/actor/ai/goal/ram_attack_goal_utils/RamGoalNoItemDropper.h b/src/mc/world/actor/ai/goal/ram_attack_goal_utils/RamGoalNoItemDropper.h index ea1ab9a216..952f6476e8 100644 --- a/src/mc/world/actor/ai/goal/ram_attack_goal_utils/RamGoalNoItemDropper.h +++ b/src/mc/world/actor/ai/goal/ram_attack_goal_utils/RamGoalNoItemDropper.h @@ -13,12 +13,6 @@ class Vec3; namespace RamAttackGoalUtils { class RamGoalNoItemDropper : public ::RamAttackGoalUtils::RamGoalItemDropperInterface { -public: - // prevent constructor by default - RamGoalNoItemDropper& operator=(RamGoalNoItemDropper const&); - RamGoalNoItemDropper(RamGoalNoItemDropper const&); - RamGoalNoItemDropper(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/actor/ai/goal/target/HurtByTargetGoal.h b/src/mc/world/actor/ai/goal/target/HurtByTargetGoal.h index 7f636088e9..51c3bea0a6 100644 --- a/src/mc/world/actor/ai/goal/target/HurtByTargetGoal.h +++ b/src/mc/world/actor/ai/goal/target/HurtByTargetGoal.h @@ -12,12 +12,6 @@ struct MobDescriptor; // clang-format on class HurtByTargetGoal : public ::TargetGoal { -public: - // prevent constructor by default - HurtByTargetGoal& operator=(HurtByTargetGoal const&); - HurtByTargetGoal(HurtByTargetGoal const&); - HurtByTargetGoal(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/actor/ai/goal/target/NearestPrioritizedAttackableTargetGoal.h b/src/mc/world/actor/ai/goal/target/NearestPrioritizedAttackableTargetGoal.h index 1bc7447f97..ed77ca2db9 100644 --- a/src/mc/world/actor/ai/goal/target/NearestPrioritizedAttackableTargetGoal.h +++ b/src/mc/world/actor/ai/goal/target/NearestPrioritizedAttackableTargetGoal.h @@ -13,12 +13,6 @@ struct MobDescriptor; // clang-format on class NearestPrioritizedAttackableTargetGoal : public ::NearestAttackableTargetGoal { -public: - // prevent constructor by default - NearestPrioritizedAttackableTargetGoal& operator=(NearestPrioritizedAttackableTargetGoal const&); - NearestPrioritizedAttackableTargetGoal(NearestPrioritizedAttackableTargetGoal const&); - NearestPrioritizedAttackableTargetGoal(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/actor/ai/goal/target/VexCopyOwnerTargetGoal.h b/src/mc/world/actor/ai/goal/target/VexCopyOwnerTargetGoal.h index db05bb4795..dc41cec266 100644 --- a/src/mc/world/actor/ai/goal/target/VexCopyOwnerTargetGoal.h +++ b/src/mc/world/actor/ai/goal/target/VexCopyOwnerTargetGoal.h @@ -12,12 +12,6 @@ struct MobDescriptor; // clang-format on class VexCopyOwnerTargetGoal : public ::TargetGoal { -public: - // prevent constructor by default - VexCopyOwnerTargetGoal& operator=(VexCopyOwnerTargetGoal const&); - VexCopyOwnerTargetGoal(VexCopyOwnerTargetGoal const&); - VexCopyOwnerTargetGoal(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/actor/ai/navigation/FloatNavigation.h b/src/mc/world/actor/ai/navigation/FloatNavigation.h index a21745fd12..1e4d8f405f 100644 --- a/src/mc/world/actor/ai/navigation/FloatNavigation.h +++ b/src/mc/world/actor/ai/navigation/FloatNavigation.h @@ -12,12 +12,6 @@ class NavigationComponent; // clang-format on class FloatNavigation : public ::PathNavigation { -public: - // prevent constructor by default - FloatNavigation& operator=(FloatNavigation const&); - FloatNavigation(FloatNavigation const&); - FloatNavigation(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/actor/ai/navigation/GenericPathNavigation.h b/src/mc/world/actor/ai/navigation/GenericPathNavigation.h index 1995ba8aac..3264673893 100644 --- a/src/mc/world/actor/ai/navigation/GenericPathNavigation.h +++ b/src/mc/world/actor/ai/navigation/GenericPathNavigation.h @@ -14,12 +14,6 @@ struct NavigationDescription; // clang-format on class GenericPathNavigation : public ::PathNavigation { -public: - // prevent constructor by default - GenericPathNavigation& operator=(GenericPathNavigation const&); - GenericPathNavigation(GenericPathNavigation const&); - GenericPathNavigation(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/actor/ai/navigation/PathNavigation.h b/src/mc/world/actor/ai/navigation/PathNavigation.h index 0c9c484aed..3dc999da75 100644 --- a/src/mc/world/actor/ai/navigation/PathNavigation.h +++ b/src/mc/world/actor/ai/navigation/PathNavigation.h @@ -20,12 +20,6 @@ struct NavigationDescription; // clang-format on class PathNavigation { -public: - // prevent constructor by default - PathNavigation& operator=(PathNavigation const&); - PathNavigation(PathNavigation const&); - PathNavigation(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/actor/ai/util/RandomPos.h b/src/mc/world/actor/ai/util/RandomPos.h index f1a5083cfc..50cc974e87 100644 --- a/src/mc/world/actor/ai/util/RandomPos.h +++ b/src/mc/world/actor/ai/util/RandomPos.h @@ -17,12 +17,6 @@ struct IntRange; // clang-format on class RandomPos { -public: - // prevent constructor by default - RandomPos& operator=(RandomPos const&); - RandomPos(RandomPos const&); - RandomPos(); - public: // static functions // NOLINTBEGIN diff --git a/src/mc/world/actor/ai/village/IVillageManager.h b/src/mc/world/actor/ai/village/IVillageManager.h index 68ad41ae53..d4d2407bef 100644 --- a/src/mc/world/actor/ai/village/IVillageManager.h +++ b/src/mc/world/actor/ai/village/IVillageManager.h @@ -13,12 +13,6 @@ namespace mce { class UUID; } // clang-format on class IVillageManager : public ::Bedrock::EnableNonOwnerReferences { -public: - // prevent constructor by default - IVillageManager& operator=(IVillageManager const&); - IVillageManager(IVillageManager const&); - IVillageManager(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/actor/ai/village/Village.h b/src/mc/world/actor/ai/village/Village.h index db24dc1962..b09fc0f65e 100644 --- a/src/mc/world/actor/ai/village/Village.h +++ b/src/mc/world/actor/ai/village/Village.h @@ -39,12 +39,6 @@ class Village { // Village inner types define struct StandingModifiers { - public: - // prevent constructor by default - StandingModifiers& operator=(StandingModifiers const&); - StandingModifiers(StandingModifiers const&); - StandingModifiers(); - public: // static variables // NOLINTBEGIN diff --git a/src/mc/world/actor/animal/Animal.h b/src/mc/world/actor/animal/Animal.h index 3fbd0fee74..0ac3daa372 100644 --- a/src/mc/world/actor/animal/Animal.h +++ b/src/mc/world/actor/animal/Animal.h @@ -17,12 +17,6 @@ struct VariantParameterList; // clang-format on class Animal : public ::Mob { -public: - // prevent constructor by default - Animal& operator=(Animal const&); - Animal(Animal const&); - Animal(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/actor/animal/Armadillo.h b/src/mc/world/actor/animal/Armadillo.h index 3acfddb8aa..13ed6e3b54 100644 --- a/src/mc/world/actor/animal/Armadillo.h +++ b/src/mc/world/actor/animal/Armadillo.h @@ -15,12 +15,6 @@ struct ActorDefinitionIdentifier; // clang-format on class Armadillo : public ::Animal { -public: - // prevent constructor by default - Armadillo& operator=(Armadillo const&); - Armadillo(Armadillo const&); - Armadillo(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/actor/animal/Axolotl.h b/src/mc/world/actor/animal/Axolotl.h index 34deca6d79..9d42de6f41 100644 --- a/src/mc/world/actor/animal/Axolotl.h +++ b/src/mc/world/actor/animal/Axolotl.h @@ -18,12 +18,6 @@ struct VariantParameterList; // clang-format on class Axolotl : public ::Animal { -public: - // prevent constructor by default - Axolotl& operator=(Axolotl const&); - Axolotl(Axolotl const&); - Axolotl(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/actor/animal/Cat.h b/src/mc/world/actor/animal/Cat.h index a01eefc381..bda31caa7a 100644 --- a/src/mc/world/actor/animal/Cat.h +++ b/src/mc/world/actor/animal/Cat.h @@ -14,12 +14,6 @@ struct ActorDefinitionIdentifier; // clang-format on class Cat : public ::Animal { -public: - // prevent constructor by default - Cat& operator=(Cat const&); - Cat(Cat const&); - Cat(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/actor/animal/Chicken.h b/src/mc/world/actor/animal/Chicken.h index 1ee24fdc6f..563725f6a6 100644 --- a/src/mc/world/actor/animal/Chicken.h +++ b/src/mc/world/actor/animal/Chicken.h @@ -15,12 +15,6 @@ struct ActorDefinitionIdentifier; // clang-format on class Chicken : public ::Animal { -public: - // prevent constructor by default - Chicken& operator=(Chicken const&); - Chicken(Chicken const&); - Chicken(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/actor/animal/Fish.h b/src/mc/world/actor/animal/Fish.h index 2260af8056..0f6374b40d 100644 --- a/src/mc/world/actor/animal/Fish.h +++ b/src/mc/world/actor/animal/Fish.h @@ -16,12 +16,6 @@ struct VariantParameterList; // clang-format on class Fish : public ::WaterAnimal { -public: - // prevent constructor by default - Fish& operator=(Fish const&); - Fish(Fish const&); - Fish(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/actor/animal/Goat.h b/src/mc/world/actor/animal/Goat.h index 9a24903017..e47b3435a3 100644 --- a/src/mc/world/actor/animal/Goat.h +++ b/src/mc/world/actor/animal/Goat.h @@ -20,12 +20,6 @@ struct VariantParameterList; // clang-format on class Goat : public ::Animal { -public: - // prevent constructor by default - Goat& operator=(Goat const&); - Goat(Goat const&); - Goat(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/actor/animal/Horse.h b/src/mc/world/actor/animal/Horse.h index f6348437d1..3b0f4aed9c 100644 --- a/src/mc/world/actor/animal/Horse.h +++ b/src/mc/world/actor/animal/Horse.h @@ -28,12 +28,6 @@ struct VariantParameterList; // clang-format on class Horse : public ::Animal { -public: - // prevent constructor by default - Horse& operator=(Horse const&); - Horse(Horse const&); - Horse(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/actor/animal/IronGolem.h b/src/mc/world/actor/animal/IronGolem.h index a0962264bc..e904d6eaf6 100644 --- a/src/mc/world/actor/animal/IronGolem.h +++ b/src/mc/world/actor/animal/IronGolem.h @@ -28,12 +28,6 @@ class IronGolem : public ::Mob { None = 3, }; -public: - // prevent constructor by default - IronGolem& operator=(IronGolem const&); - IronGolem(IronGolem const&); - IronGolem(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/actor/animal/Llama.h b/src/mc/world/actor/animal/Llama.h index 37c70a0023..ed298b1745 100644 --- a/src/mc/world/actor/animal/Llama.h +++ b/src/mc/world/actor/animal/Llama.h @@ -16,12 +16,6 @@ struct ActorDefinitionIdentifier; // clang-format on class Llama : public ::Animal { -public: - // prevent constructor by default - Llama& operator=(Llama const&); - Llama(Llama const&); - Llama(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/actor/animal/MushroomCow.h b/src/mc/world/actor/animal/MushroomCow.h index a2a707a21c..567a4e643c 100644 --- a/src/mc/world/actor/animal/MushroomCow.h +++ b/src/mc/world/actor/animal/MushroomCow.h @@ -14,12 +14,6 @@ struct ActorDefinitionIdentifier; // clang-format on class MushroomCow : public ::Animal { -public: - // prevent constructor by default - MushroomCow& operator=(MushroomCow const&); - MushroomCow(MushroomCow const&); - MushroomCow(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/actor/animal/Ocelot.h b/src/mc/world/actor/animal/Ocelot.h index d733ae2b52..e2d463f456 100644 --- a/src/mc/world/actor/animal/Ocelot.h +++ b/src/mc/world/actor/animal/Ocelot.h @@ -13,12 +13,6 @@ struct ActorDefinitionIdentifier; // clang-format on class Ocelot : public ::Animal { -public: - // prevent constructor by default - Ocelot& operator=(Ocelot const&); - Ocelot(Ocelot const&); - Ocelot(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/actor/animal/Parrot.h b/src/mc/world/actor/animal/Parrot.h index e6f7a30c8a..176a97192c 100644 --- a/src/mc/world/actor/animal/Parrot.h +++ b/src/mc/world/actor/animal/Parrot.h @@ -18,12 +18,6 @@ struct ActorDefinitionIdentifier; // clang-format on class Parrot : public ::Animal { -public: - // prevent constructor by default - Parrot& operator=(Parrot const&); - Parrot(Parrot const&); - Parrot(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/actor/animal/Pig.h b/src/mc/world/actor/animal/Pig.h index 504256a85a..a94c56c3cc 100644 --- a/src/mc/world/actor/animal/Pig.h +++ b/src/mc/world/actor/animal/Pig.h @@ -16,12 +16,6 @@ struct ActorDefinitionIdentifier; // clang-format on class Pig : public ::Animal { -public: - // prevent constructor by default - Pig& operator=(Pig const&); - Pig(Pig const&); - Pig(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/actor/animal/Pufferfish.h b/src/mc/world/actor/animal/Pufferfish.h index 790b57638d..01e35e4aef 100644 --- a/src/mc/world/actor/animal/Pufferfish.h +++ b/src/mc/world/actor/animal/Pufferfish.h @@ -15,12 +15,6 @@ struct ActorDefinitionIdentifier; // clang-format on class Pufferfish : public ::Fish { -public: - // prevent constructor by default - Pufferfish& operator=(Pufferfish const&); - Pufferfish(Pufferfish const&); - Pufferfish(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/actor/animal/Rabbit.h b/src/mc/world/actor/animal/Rabbit.h index 25b20e687b..debb8e41de 100644 --- a/src/mc/world/actor/animal/Rabbit.h +++ b/src/mc/world/actor/animal/Rabbit.h @@ -13,12 +13,6 @@ struct ActorDefinitionIdentifier; // clang-format on class Rabbit : public ::Animal { -public: - // prevent constructor by default - Rabbit& operator=(Rabbit const&); - Rabbit(Rabbit const&); - Rabbit(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/actor/animal/Salmon.h b/src/mc/world/actor/animal/Salmon.h index 55036ccdd2..78148e60fa 100644 --- a/src/mc/world/actor/animal/Salmon.h +++ b/src/mc/world/actor/animal/Salmon.h @@ -13,12 +13,6 @@ struct ActorDefinitionIdentifier; // clang-format on class Salmon : public ::Fish { -public: - // prevent constructor by default - Salmon& operator=(Salmon const&); - Salmon(Salmon const&); - Salmon(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/actor/animal/Sniffer.h b/src/mc/world/actor/animal/Sniffer.h index 0246dc137e..4863fc0bce 100644 --- a/src/mc/world/actor/animal/Sniffer.h +++ b/src/mc/world/actor/animal/Sniffer.h @@ -14,12 +14,6 @@ struct ActorDefinitionIdentifier; // clang-format on class Sniffer : public ::Animal { -public: - // prevent constructor by default - Sniffer& operator=(Sniffer const&); - Sniffer(Sniffer const&); - Sniffer(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/actor/animal/Tadpole.h b/src/mc/world/actor/animal/Tadpole.h index 4e3dfb2190..9a15e5e63b 100644 --- a/src/mc/world/actor/animal/Tadpole.h +++ b/src/mc/world/actor/animal/Tadpole.h @@ -15,12 +15,6 @@ struct VariantParameterList; // clang-format on class Tadpole : public ::WaterAnimal { -public: - // prevent constructor by default - Tadpole& operator=(Tadpole const&); - Tadpole(Tadpole const&); - Tadpole(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/actor/animal/TropicalFish.h b/src/mc/world/actor/animal/TropicalFish.h index 0d63b3548b..9cdf4e2169 100644 --- a/src/mc/world/actor/animal/TropicalFish.h +++ b/src/mc/world/actor/animal/TropicalFish.h @@ -16,12 +16,6 @@ struct VariantParameterList; // clang-format on class TropicalFish : public ::WaterAnimal { -public: - // prevent constructor by default - TropicalFish& operator=(TropicalFish const&); - TropicalFish(TropicalFish const&); - TropicalFish(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/actor/animal/Turtle.h b/src/mc/world/actor/animal/Turtle.h index 08b2bd5a83..2f5d09376d 100644 --- a/src/mc/world/actor/animal/Turtle.h +++ b/src/mc/world/actor/animal/Turtle.h @@ -15,12 +15,6 @@ struct ActorDefinitionIdentifier; // clang-format on class Turtle : public ::Animal { -public: - // prevent constructor by default - Turtle& operator=(Turtle const&); - Turtle(Turtle const&); - Turtle(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/actor/animal/WaterAnimal.h b/src/mc/world/actor/animal/WaterAnimal.h index 1083f349c7..aad35e25fd 100644 --- a/src/mc/world/actor/animal/WaterAnimal.h +++ b/src/mc/world/actor/animal/WaterAnimal.h @@ -13,12 +13,6 @@ struct ActorDefinitionIdentifier; // clang-format on class WaterAnimal : public ::Mob { -public: - // prevent constructor by default - WaterAnimal& operator=(WaterAnimal const&); - WaterAnimal(WaterAnimal const&); - WaterAnimal(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/actor/animation/ActorAnimationBase.h b/src/mc/world/actor/animation/ActorAnimationBase.h index a500e34559..355fbcc967 100644 --- a/src/mc/world/actor/animation/ActorAnimationBase.h +++ b/src/mc/world/actor/animation/ActorAnimationBase.h @@ -2,10 +2,4 @@ #include "mc/_HeaderOutputPredefine.h" -class ActorAnimationBase { -public: - // prevent constructor by default - ActorAnimationBase& operator=(ActorAnimationBase const&); - ActorAnimationBase(ActorAnimationBase const&); - ActorAnimationBase(); -}; +class ActorAnimationBase {}; diff --git a/src/mc/world/actor/animation/ActorAnimationMinEngineVersionUtils.h b/src/mc/world/actor/animation/ActorAnimationMinEngineVersionUtils.h index ae3976ca73..2aff32002b 100644 --- a/src/mc/world/actor/animation/ActorAnimationMinEngineVersionUtils.h +++ b/src/mc/world/actor/animation/ActorAnimationMinEngineVersionUtils.h @@ -9,12 +9,6 @@ class SemVersion; // clang-format on class ActorAnimationMinEngineVersionUtils { -public: - // prevent constructor by default - ActorAnimationMinEngineVersionUtils& operator=(ActorAnimationMinEngineVersionUtils const&); - ActorAnimationMinEngineVersionUtils(ActorAnimationMinEngineVersionUtils const&); - ActorAnimationMinEngineVersionUtils(); - public: // static functions // NOLINTBEGIN diff --git a/src/mc/world/actor/animation/AnimationComponentGroup.h b/src/mc/world/actor/animation/AnimationComponentGroup.h index 594d434b5d..6cd6568dc5 100644 --- a/src/mc/world/actor/animation/AnimationComponentGroup.h +++ b/src/mc/world/actor/animation/AnimationComponentGroup.h @@ -12,12 +12,6 @@ class AnimationComponentID; // clang-format on class AnimationComponentGroup { -public: - // prevent constructor by default - AnimationComponentGroup& operator=(AnimationComponentGroup const&); - AnimationComponentGroup(AnimationComponentGroup const&); - AnimationComponentGroup(); - public: // static functions // NOLINTBEGIN diff --git a/src/mc/world/actor/animation/DefaultEmptyActorAnimationPlayer.h b/src/mc/world/actor/animation/DefaultEmptyActorAnimationPlayer.h index e0438a7c67..1ddf058174 100644 --- a/src/mc/world/actor/animation/DefaultEmptyActorAnimationPlayer.h +++ b/src/mc/world/actor/animation/DefaultEmptyActorAnimationPlayer.h @@ -15,12 +15,6 @@ class RenderParams; // clang-format on class DefaultEmptyActorAnimationPlayer : public ::ActorAnimationPlayer { -public: - // prevent constructor by default - DefaultEmptyActorAnimationPlayer& operator=(DefaultEmptyActorAnimationPlayer const&); - DefaultEmptyActorAnimationPlayer(DefaultEmptyActorAnimationPlayer const&); - DefaultEmptyActorAnimationPlayer(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/actor/bhave/definition/ConsumeItemDefinition.h b/src/mc/world/actor/bhave/definition/ConsumeItemDefinition.h index 71835d7c13..d8f1548042 100644 --- a/src/mc/world/actor/bhave/definition/ConsumeItemDefinition.h +++ b/src/mc/world/actor/bhave/definition/ConsumeItemDefinition.h @@ -6,12 +6,6 @@ #include "mc/world/actor/bhave/definition/BehaviorDefinition.h" class ConsumeItemDefinition : public ::BehaviorDefinition { -public: - // prevent constructor by default - ConsumeItemDefinition& operator=(ConsumeItemDefinition const&); - ConsumeItemDefinition(ConsumeItemDefinition const&); - ConsumeItemDefinition(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/actor/bhave/definition/InverterDefinition.h b/src/mc/world/actor/bhave/definition/InverterDefinition.h index 4e1dcf2df0..63e8b76b40 100644 --- a/src/mc/world/actor/bhave/definition/InverterDefinition.h +++ b/src/mc/world/actor/bhave/definition/InverterDefinition.h @@ -12,12 +12,6 @@ namespace Json { class Value; } // clang-format on class InverterDefinition : public ::DecoratorDefinition { -public: - // prevent constructor by default - InverterDefinition& operator=(InverterDefinition const&); - InverterDefinition(InverterDefinition const&); - InverterDefinition(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/actor/bhave/definition/PlaceBlockDefinition.h b/src/mc/world/actor/bhave/definition/PlaceBlockDefinition.h index aa7789580b..cc55148ca1 100644 --- a/src/mc/world/actor/bhave/definition/PlaceBlockDefinition.h +++ b/src/mc/world/actor/bhave/definition/PlaceBlockDefinition.h @@ -6,12 +6,6 @@ #include "mc/world/actor/bhave/definition/BehaviorDefinition.h" class PlaceBlockDefinition : public ::BehaviorDefinition { -public: - // prevent constructor by default - PlaceBlockDefinition& operator=(PlaceBlockDefinition const&); - PlaceBlockDefinition(PlaceBlockDefinition const&); - PlaceBlockDefinition(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/actor/bhave/definition/RepeatUntilFailureDefinition.h b/src/mc/world/actor/bhave/definition/RepeatUntilFailureDefinition.h index 4caf659056..6337fc59eb 100644 --- a/src/mc/world/actor/bhave/definition/RepeatUntilFailureDefinition.h +++ b/src/mc/world/actor/bhave/definition/RepeatUntilFailureDefinition.h @@ -12,12 +12,6 @@ namespace Json { class Value; } // clang-format on class RepeatUntilFailureDefinition : public ::DecoratorDefinition { -public: - // prevent constructor by default - RepeatUntilFailureDefinition& operator=(RepeatUntilFailureDefinition const&); - RepeatUntilFailureDefinition(RepeatUntilFailureDefinition const&); - RepeatUntilFailureDefinition(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/actor/bhave/definition/SelectorDefinition.h b/src/mc/world/actor/bhave/definition/SelectorDefinition.h index 46c4221afb..2125f1f3a1 100644 --- a/src/mc/world/actor/bhave/definition/SelectorDefinition.h +++ b/src/mc/world/actor/bhave/definition/SelectorDefinition.h @@ -12,12 +12,6 @@ namespace Json { class Value; } // clang-format on class SelectorDefinition : public ::CompositeDefinition { -public: - // prevent constructor by default - SelectorDefinition& operator=(SelectorDefinition const&); - SelectorDefinition(SelectorDefinition const&); - SelectorDefinition(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/actor/bhave/definition/SequenceDefinition.h b/src/mc/world/actor/bhave/definition/SequenceDefinition.h index 942822d173..28ba639227 100644 --- a/src/mc/world/actor/bhave/definition/SequenceDefinition.h +++ b/src/mc/world/actor/bhave/definition/SequenceDefinition.h @@ -12,12 +12,6 @@ namespace Json { class Value; } // clang-format on class SequenceDefinition : public ::CompositeDefinition { -public: - // prevent constructor by default - SequenceDefinition& operator=(SequenceDefinition const&); - SequenceDefinition(SequenceDefinition const&); - SequenceDefinition(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/actor/bhave/definition/UseActorDefinition.h b/src/mc/world/actor/bhave/definition/UseActorDefinition.h index d80ec38002..8fa5ea06f4 100644 --- a/src/mc/world/actor/bhave/definition/UseActorDefinition.h +++ b/src/mc/world/actor/bhave/definition/UseActorDefinition.h @@ -6,12 +6,6 @@ #include "mc/world/actor/bhave/definition/BehaviorDefinition.h" class UseActorDefinition : public ::BehaviorDefinition { -public: - // prevent constructor by default - UseActorDefinition& operator=(UseActorDefinition const&); - UseActorDefinition(UseActorDefinition const&); - UseActorDefinition(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/actor/item/Balloon.h b/src/mc/world/actor/item/Balloon.h index d11f1fd504..5e24fa5ca8 100644 --- a/src/mc/world/actor/item/Balloon.h +++ b/src/mc/world/actor/item/Balloon.h @@ -16,12 +16,6 @@ struct VariantParameterList; // clang-format on class Balloon : public ::PredictableProjectile { -public: - // prevent constructor by default - Balloon& operator=(Balloon const&); - Balloon(Balloon const&); - Balloon(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/actor/item/ChestBoat.h b/src/mc/world/actor/item/ChestBoat.h index 94b2046a17..0acc7de227 100644 --- a/src/mc/world/actor/item/ChestBoat.h +++ b/src/mc/world/actor/item/ChestBoat.h @@ -14,12 +14,6 @@ struct ActorDefinitionIdentifier; // clang-format on class ChestBoat : public ::Boat { -public: - // prevent constructor by default - ChestBoat& operator=(ChestBoat const&); - ChestBoat(ChestBoat const&); - ChestBoat(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/actor/item/FallingBlockActorDelegate.h b/src/mc/world/actor/item/FallingBlockActorDelegate.h index 4f00bbb75e..867c3572cf 100644 --- a/src/mc/world/actor/item/FallingBlockActorDelegate.h +++ b/src/mc/world/actor/item/FallingBlockActorDelegate.h @@ -14,12 +14,6 @@ class IBlockSource; // clang-format on class FallingBlockActorDelegate : public ::ITickDelegate { -public: - // prevent constructor by default - FallingBlockActorDelegate& operator=(FallingBlockActorDelegate const&); - FallingBlockActorDelegate(FallingBlockActorDelegate const&); - FallingBlockActorDelegate(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/actor/item/ITickDelegate.h b/src/mc/world/actor/item/ITickDelegate.h index d338974297..2d7a1afee3 100644 --- a/src/mc/world/actor/item/ITickDelegate.h +++ b/src/mc/world/actor/item/ITickDelegate.h @@ -11,12 +11,6 @@ class IBlockSource; // clang-format on class ITickDelegate { -public: - // prevent constructor by default - ITickDelegate& operator=(ITickDelegate const&); - ITickDelegate(ITickDelegate const&); - ITickDelegate(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/actor/item/MinecartChest.h b/src/mc/world/actor/item/MinecartChest.h index b6d3c4f7d0..cc2916e4c6 100644 --- a/src/mc/world/actor/item/MinecartChest.h +++ b/src/mc/world/actor/item/MinecartChest.h @@ -17,12 +17,6 @@ struct ActorDefinitionIdentifier; // clang-format on class MinecartChest : public ::Minecart { -public: - // prevent constructor by default - MinecartChest& operator=(MinecartChest const&); - MinecartChest(MinecartChest const&); - MinecartChest(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/actor/item/MinecartRideable.h b/src/mc/world/actor/item/MinecartRideable.h index 5a24e15b70..dea2b00dcb 100644 --- a/src/mc/world/actor/item/MinecartRideable.h +++ b/src/mc/world/actor/item/MinecartRideable.h @@ -14,12 +14,6 @@ struct ActorDefinitionIdentifier; // clang-format on class MinecartRideable : public ::Minecart { -public: - // prevent constructor by default - MinecartRideable& operator=(MinecartRideable const&); - MinecartRideable(MinecartRideable const&); - MinecartRideable(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/actor/item/MinecartTNT.h b/src/mc/world/actor/item/MinecartTNT.h index 35c13fabf2..31b353dbad 100644 --- a/src/mc/world/actor/item/MinecartTNT.h +++ b/src/mc/world/actor/item/MinecartTNT.h @@ -18,12 +18,6 @@ struct ActorDefinitionIdentifier; // clang-format on class MinecartTNT : public ::Minecart { -public: - // prevent constructor by default - MinecartTNT& operator=(MinecartTNT const&); - MinecartTNT(MinecartTNT const&); - MinecartTNT(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/actor/item/MinecartTypeEnumHasher.h b/src/mc/world/actor/item/MinecartTypeEnumHasher.h index 07364e8802..2cfe3c9972 100644 --- a/src/mc/world/actor/item/MinecartTypeEnumHasher.h +++ b/src/mc/world/actor/item/MinecartTypeEnumHasher.h @@ -2,10 +2,4 @@ #include "mc/_HeaderOutputPredefine.h" -struct MinecartTypeEnumHasher { -public: - // prevent constructor by default - MinecartTypeEnumHasher& operator=(MinecartTypeEnumHasher const&); - MinecartTypeEnumHasher(MinecartTypeEnumHasher const&); - MinecartTypeEnumHasher(); -}; +struct MinecartTypeEnumHasher {}; diff --git a/src/mc/world/actor/monster/Breeze.h b/src/mc/world/actor/monster/Breeze.h index 6144c64f42..c608508dfc 100644 --- a/src/mc/world/actor/monster/Breeze.h +++ b/src/mc/world/actor/monster/Breeze.h @@ -14,12 +14,6 @@ struct ActorDefinitionIdentifier; // clang-format on class Breeze : public ::Monster { -public: - // prevent constructor by default - Breeze& operator=(Breeze const&); - Breeze(Breeze const&); - Breeze(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/actor/monster/CaveSpider.h b/src/mc/world/actor/monster/CaveSpider.h index 4183611105..01bbf4ea32 100644 --- a/src/mc/world/actor/monster/CaveSpider.h +++ b/src/mc/world/actor/monster/CaveSpider.h @@ -13,12 +13,6 @@ struct ActorDefinitionIdentifier; // clang-format on class CaveSpider : public ::Spider { -public: - // prevent constructor by default - CaveSpider& operator=(CaveSpider const&); - CaveSpider(CaveSpider const&); - CaveSpider(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/actor/monster/Creaking.h b/src/mc/world/actor/monster/Creaking.h index a87d6d414e..47151444eb 100644 --- a/src/mc/world/actor/monster/Creaking.h +++ b/src/mc/world/actor/monster/Creaking.h @@ -13,12 +13,6 @@ struct ActorDefinitionIdentifier; // clang-format on class Creaking : public ::Monster { -public: - // prevent constructor by default - Creaking& operator=(Creaking const&); - Creaking(Creaking const&); - Creaking(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/actor/monster/EvocationIllager.h b/src/mc/world/actor/monster/EvocationIllager.h index b2f2919251..189cd87949 100644 --- a/src/mc/world/actor/monster/EvocationIllager.h +++ b/src/mc/world/actor/monster/EvocationIllager.h @@ -14,12 +14,6 @@ struct ActorDefinitionIdentifier; // clang-format on class EvocationIllager : public ::HumanoidMonster { -public: - // prevent constructor by default - EvocationIllager& operator=(EvocationIllager const&); - EvocationIllager(EvocationIllager const&); - EvocationIllager(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/actor/monster/Ghast.h b/src/mc/world/actor/monster/Ghast.h index 84728a6168..e9c2051702 100644 --- a/src/mc/world/actor/monster/Ghast.h +++ b/src/mc/world/actor/monster/Ghast.h @@ -17,12 +17,6 @@ struct VariantParameterList; // clang-format on class Ghast : public ::Monster { -public: - // prevent constructor by default - Ghast& operator=(Ghast const&); - Ghast(Ghast const&); - Ghast(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/actor/monster/HumanoidMonster.h b/src/mc/world/actor/monster/HumanoidMonster.h index 63ee8e18f9..4892df3583 100644 --- a/src/mc/world/actor/monster/HumanoidMonster.h +++ b/src/mc/world/actor/monster/HumanoidMonster.h @@ -12,12 +12,6 @@ class DataLoadHelper; // clang-format on class HumanoidMonster : public ::Monster { -public: - // prevent constructor by default - HumanoidMonster& operator=(HumanoidMonster const&); - HumanoidMonster(HumanoidMonster const&); - HumanoidMonster(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/actor/monster/IllagerBeast.h b/src/mc/world/actor/monster/IllagerBeast.h index 00ca75c33c..cbd3e189d3 100644 --- a/src/mc/world/actor/monster/IllagerBeast.h +++ b/src/mc/world/actor/monster/IllagerBeast.h @@ -15,12 +15,6 @@ struct ActorDefinitionIdentifier; // clang-format on class IllagerBeast : public ::Monster { -public: - // prevent constructor by default - IllagerBeast& operator=(IllagerBeast const&); - IllagerBeast(IllagerBeast const&); - IllagerBeast(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/actor/monster/LavaSlime.h b/src/mc/world/actor/monster/LavaSlime.h index f8862b3d75..668f036a18 100644 --- a/src/mc/world/actor/monster/LavaSlime.h +++ b/src/mc/world/actor/monster/LavaSlime.h @@ -17,12 +17,6 @@ struct VariantParameterList; // clang-format on class LavaSlime : public ::Slime { -public: - // prevent constructor by default - LavaSlime& operator=(LavaSlime const&); - LavaSlime(LavaSlime const&); - LavaSlime(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/actor/monster/Phantom.h b/src/mc/world/actor/monster/Phantom.h index bbdfe2fc57..8f238faf47 100644 --- a/src/mc/world/actor/monster/Phantom.h +++ b/src/mc/world/actor/monster/Phantom.h @@ -13,12 +13,6 @@ struct ActorDefinitionIdentifier; // clang-format on class Phantom : public ::Monster { -public: - // prevent constructor by default - Phantom& operator=(Phantom const&); - Phantom(Phantom const&); - Phantom(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/actor/monster/Piglin.h b/src/mc/world/actor/monster/Piglin.h index 1ede625bd4..1f18bbcc2d 100644 --- a/src/mc/world/actor/monster/Piglin.h +++ b/src/mc/world/actor/monster/Piglin.h @@ -16,12 +16,6 @@ struct ActorDefinitionIdentifier; // clang-format on class Piglin : public ::HumanoidMonster { -public: - // prevent constructor by default - Piglin& operator=(Piglin const&); - Piglin(Piglin const&); - Piglin(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/actor/monster/Pillager.h b/src/mc/world/actor/monster/Pillager.h index 8a6c6dcc56..266616c90d 100644 --- a/src/mc/world/actor/monster/Pillager.h +++ b/src/mc/world/actor/monster/Pillager.h @@ -16,12 +16,6 @@ struct ActorDefinitionIdentifier; // clang-format on class Pillager : public ::HumanoidMonster { -public: - // prevent constructor by default - Pillager& operator=(Pillager const&); - Pillager(Pillager const&); - Pillager(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/actor/monster/Shulker.h b/src/mc/world/actor/monster/Shulker.h index dd7e2f1a4c..d9f3558dc5 100644 --- a/src/mc/world/actor/monster/Shulker.h +++ b/src/mc/world/actor/monster/Shulker.h @@ -25,12 +25,6 @@ namespace mce { class UUID; } // clang-format on class Shulker : public ::Mob { -public: - // prevent constructor by default - Shulker& operator=(Shulker const&); - Shulker(Shulker const&); - Shulker(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/actor/monster/Silverfish.h b/src/mc/world/actor/monster/Silverfish.h index adea909973..498a0843ea 100644 --- a/src/mc/world/actor/monster/Silverfish.h +++ b/src/mc/world/actor/monster/Silverfish.h @@ -16,12 +16,6 @@ struct ActorDefinitionIdentifier; // clang-format on class Silverfish : public ::Monster { -public: - // prevent constructor by default - Silverfish& operator=(Silverfish const&); - Silverfish(Silverfish const&); - Silverfish(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/actor/monster/Spider.h b/src/mc/world/actor/monster/Spider.h index 15e115dfd3..65b0f1f077 100644 --- a/src/mc/world/actor/monster/Spider.h +++ b/src/mc/world/actor/monster/Spider.h @@ -22,12 +22,6 @@ class Spider : public ::Monster { Cave = 1, }; -public: - // prevent constructor by default - Spider& operator=(Spider const&); - Spider(Spider const&); - Spider(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/actor/monster/Vex.h b/src/mc/world/actor/monster/Vex.h index 8735e89fc4..d6d7268b8d 100644 --- a/src/mc/world/actor/monster/Vex.h +++ b/src/mc/world/actor/monster/Vex.h @@ -17,12 +17,6 @@ struct VariantParameterList; // clang-format on class Vex : public ::Monster { -public: - // prevent constructor by default - Vex& operator=(Vex const&); - Vex(Vex const&); - Vex(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/actor/monster/VindicationIllager.h b/src/mc/world/actor/monster/VindicationIllager.h index ecc63096af..3950711d7e 100644 --- a/src/mc/world/actor/monster/VindicationIllager.h +++ b/src/mc/world/actor/monster/VindicationIllager.h @@ -14,12 +14,6 @@ struct ActorDefinitionIdentifier; // clang-format on class VindicationIllager : public ::HumanoidMonster { -public: - // prevent constructor by default - VindicationIllager& operator=(VindicationIllager const&); - VindicationIllager(VindicationIllager const&); - VindicationIllager(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/actor/monster/Zombie.h b/src/mc/world/actor/monster/Zombie.h index b02c78f301..dc2dbdfe07 100644 --- a/src/mc/world/actor/monster/Zombie.h +++ b/src/mc/world/actor/monster/Zombie.h @@ -28,12 +28,6 @@ class Zombie : public ::HumanoidMonster { Drowned = 4, }; -public: - // prevent constructor by default - Zombie& operator=(Zombie const&); - Zombie(Zombie const&); - Zombie(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/actor/npc/INpcDialogueData.h b/src/mc/world/actor/npc/INpcDialogueData.h index 5ce65e4661..df4e6dc6c0 100644 --- a/src/mc/world/actor/npc/INpcDialogueData.h +++ b/src/mc/world/actor/npc/INpcDialogueData.h @@ -10,12 +10,6 @@ namespace npc { struct ActionContainer; } // clang-format on struct INpcDialogueData { -public: - // prevent constructor by default - INpcDialogueData& operator=(INpcDialogueData const&); - INpcDialogueData(INpcDialogueData const&); - INpcDialogueData(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/actor/npc/Villager.h b/src/mc/world/actor/npc/Villager.h index 2a7148b606..2515a2c02a 100644 --- a/src/mc/world/actor/npc/Villager.h +++ b/src/mc/world/actor/npc/Villager.h @@ -15,12 +15,6 @@ struct VariantParameterList; // clang-format on class Villager : public ::VillagerBase { -public: - // prevent constructor by default - Villager& operator=(Villager const&); - Villager(Villager const&); - Villager(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/actor/npc/VillagerV2.h b/src/mc/world/actor/npc/VillagerV2.h index 924db55326..204651280b 100644 --- a/src/mc/world/actor/npc/VillagerV2.h +++ b/src/mc/world/actor/npc/VillagerV2.h @@ -20,12 +20,6 @@ struct VariantParameterList; // clang-format on class VillagerV2 : public ::VillagerBase { -public: - // prevent constructor by default - VillagerV2& operator=(VillagerV2 const&); - VillagerV2(VillagerV2 const&); - VillagerV2(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/actor/npc/WanderingTrader.h b/src/mc/world/actor/npc/WanderingTrader.h index 2be1834c31..ef51b0ee7c 100644 --- a/src/mc/world/actor/npc/WanderingTrader.h +++ b/src/mc/world/actor/npc/WanderingTrader.h @@ -13,12 +13,6 @@ struct ActorDefinitionIdentifier; // clang-format on class WanderingTrader : public ::Mob { -public: - // prevent constructor by default - WanderingTrader& operator=(WanderingTrader const&); - WanderingTrader(WanderingTrader const&); - WanderingTrader(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/actor/npc/npc.h b/src/mc/world/actor/npc/npc.h index 2ec852a220..b146109f8e 100644 --- a/src/mc/world/actor/npc/npc.h +++ b/src/mc/world/actor/npc/npc.h @@ -18,12 +18,6 @@ namespace mce { class Color; } // clang-format on class Npc : public ::Mob { -public: - // prevent constructor by default - Npc& operator=(Npc const&); - Npc(Npc const&); - Npc(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/actor/player/AbilityHelpers.h b/src/mc/world/actor/player/AbilityHelpers.h index 8a847b7695..1101d96de4 100644 --- a/src/mc/world/actor/player/AbilityHelpers.h +++ b/src/mc/world/actor/player/AbilityHelpers.h @@ -2,10 +2,4 @@ #include "mc/_HeaderOutputPredefine.h" -class AbilityHelpers { -public: - // prevent constructor by default - AbilityHelpers& operator=(AbilityHelpers const&); - AbilityHelpers(AbilityHelpers const&); - AbilityHelpers(); -}; +class AbilityHelpers {}; diff --git a/src/mc/world/actor/player/IMovementStop.h b/src/mc/world/actor/player/IMovementStop.h index 9f93b2f8e2..b5eab9751a 100644 --- a/src/mc/world/actor/player/IMovementStop.h +++ b/src/mc/world/actor/player/IMovementStop.h @@ -3,12 +3,6 @@ #include "mc/_HeaderOutputPredefine.h" class IMovementStop { -public: - // prevent constructor by default - IMovementStop& operator=(IMovementStop const&); - IMovementStop(IMovementStop const&); - IMovementStop(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/actor/player/IPlayerDeathManagerConnector.h b/src/mc/world/actor/player/IPlayerDeathManagerConnector.h index 4feef07e3e..ab08a17eac 100644 --- a/src/mc/world/actor/player/IPlayerDeathManagerConnector.h +++ b/src/mc/world/actor/player/IPlayerDeathManagerConnector.h @@ -11,12 +11,6 @@ class Player; // clang-format on class IPlayerDeathManagerConnector { -public: - // prevent constructor by default - IPlayerDeathManagerConnector& operator=(IPlayerDeathManagerConnector const&); - IPlayerDeathManagerConnector(IPlayerDeathManagerConnector const&); - IPlayerDeathManagerConnector(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/actor/player/IPlayerDeathManagerProxy.h b/src/mc/world/actor/player/IPlayerDeathManagerProxy.h index ca85d82be6..139283250e 100644 --- a/src/mc/world/actor/player/IPlayerDeathManagerProxy.h +++ b/src/mc/world/actor/player/IPlayerDeathManagerProxy.h @@ -9,12 +9,6 @@ struct ActorUniqueID; // clang-format on class IPlayerDeathManagerProxy { -public: - // prevent constructor by default - IPlayerDeathManagerProxy& operator=(IPlayerDeathManagerProxy const&); - IPlayerDeathManagerProxy(IPlayerDeathManagerProxy const&); - IPlayerDeathManagerProxy(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/actor/player/Inventory.h b/src/mc/world/actor/player/Inventory.h index ee5f2da600..c290242a64 100644 --- a/src/mc/world/actor/player/Inventory.h +++ b/src/mc/world/actor/player/Inventory.h @@ -12,12 +12,6 @@ class Player; // clang-format on class Inventory : public ::FillingContainer { -public: - // prevent constructor by default - Inventory& operator=(Inventory const&); - Inventory(Inventory const&); - Inventory(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/actor/player/MarketplaceSkinValidator.h b/src/mc/world/actor/player/MarketplaceSkinValidator.h index 927957ccff..5ad4afb5f4 100644 --- a/src/mc/world/actor/player/MarketplaceSkinValidator.h +++ b/src/mc/world/actor/player/MarketplaceSkinValidator.h @@ -3,12 +3,6 @@ #include "mc/_HeaderOutputPredefine.h" class MarketplaceSkinValidator { -public: - // prevent constructor by default - MarketplaceSkinValidator& operator=(MarketplaceSkinValidator const&); - MarketplaceSkinValidator(MarketplaceSkinValidator const&); - MarketplaceSkinValidator(); - public: // static functions // NOLINTBEGIN diff --git a/src/mc/world/actor/player/PlayerListener.h b/src/mc/world/actor/player/PlayerListener.h index 0af8b8cd80..27b2bea84c 100644 --- a/src/mc/world/actor/player/PlayerListener.h +++ b/src/mc/world/actor/player/PlayerListener.h @@ -8,12 +8,6 @@ class Player; // clang-format on class PlayerListener { -public: - // prevent constructor by default - PlayerListener& operator=(PlayerListener const&); - PlayerListener(PlayerListener const&); - PlayerListener(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/actor/player/SetSleep.h b/src/mc/world/actor/player/SetSleep.h index 1c41ae29eb..8e7f9a78ec 100644 --- a/src/mc/world/actor/player/SetSleep.h +++ b/src/mc/world/actor/player/SetSleep.h @@ -2,10 +2,4 @@ #include "mc/_HeaderOutputPredefine.h" -struct SetSleep { -public: - // prevent constructor by default - SetSleep& operator=(SetSleep const&); - SetSleep(SetSleep const&); - SetSleep(); -}; +struct SetSleep {}; diff --git a/src/mc/world/actor/player/persona/BodySize.h b/src/mc/world/actor/player/persona/BodySize.h index cf736d0c27..53d760210b 100644 --- a/src/mc/world/actor/player/persona/BodySize.h +++ b/src/mc/world/actor/player/persona/BodySize.h @@ -21,12 +21,6 @@ class BodySize { Unknown = 5, }; -public: - // prevent constructor by default - BodySize& operator=(BodySize const&); - BodySize(BodySize const&); - BodySize(); - public: // static variables // NOLINTBEGIN diff --git a/src/mc/world/actor/projectile/DragonFireball.h b/src/mc/world/actor/projectile/DragonFireball.h index dde9552f82..a87bec0cb0 100644 --- a/src/mc/world/actor/projectile/DragonFireball.h +++ b/src/mc/world/actor/projectile/DragonFireball.h @@ -15,12 +15,6 @@ struct ActorDefinitionIdentifier; // clang-format on class DragonFireball : public ::Fireball { -public: - // prevent constructor by default - DragonFireball& operator=(DragonFireball const&); - DragonFireball(DragonFireball const&); - DragonFireball(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/actor/projectile/ExperiencePotion.h b/src/mc/world/actor/projectile/ExperiencePotion.h index a73dec4a65..1885d96313 100644 --- a/src/mc/world/actor/projectile/ExperiencePotion.h +++ b/src/mc/world/actor/projectile/ExperiencePotion.h @@ -13,12 +13,6 @@ struct ActorDefinitionIdentifier; // clang-format on class ExperiencePotion : public ::Throwable { -public: - // prevent constructor by default - ExperiencePotion& operator=(ExperiencePotion const&); - ExperiencePotion(ExperiencePotion const&); - ExperiencePotion(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/actor/projectile/PredictableProjectile.h b/src/mc/world/actor/projectile/PredictableProjectile.h index 40d02db275..6fc81e09f5 100644 --- a/src/mc/world/actor/projectile/PredictableProjectile.h +++ b/src/mc/world/actor/projectile/PredictableProjectile.h @@ -13,12 +13,6 @@ struct ActorDefinitionIdentifier; // clang-format on class PredictableProjectile : public ::Actor { -public: - // prevent constructor by default - PredictableProjectile& operator=(PredictableProjectile const&); - PredictableProjectile(PredictableProjectile const&); - PredictableProjectile(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/actor/projectile/SmallFireball.h b/src/mc/world/actor/projectile/SmallFireball.h index 7fb76e9d59..1401d20cbc 100644 --- a/src/mc/world/actor/projectile/SmallFireball.h +++ b/src/mc/world/actor/projectile/SmallFireball.h @@ -14,12 +14,6 @@ struct ActorDefinitionIdentifier; // clang-format on class SmallFireball : public ::Fireball { -public: - // prevent constructor by default - SmallFireball& operator=(SmallFireball const&); - SmallFireball(SmallFireball const&); - SmallFireball(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/actor/projectile/Snowball.h b/src/mc/world/actor/projectile/Snowball.h index 672d8ab1dc..264b88867a 100644 --- a/src/mc/world/actor/projectile/Snowball.h +++ b/src/mc/world/actor/projectile/Snowball.h @@ -15,12 +15,6 @@ struct VariantParameterList; // clang-format on class Snowball : public ::Throwable { -public: - // prevent constructor by default - Snowball& operator=(Snowball const&); - Snowball(Snowball const&); - Snowball(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/actor/projectile/ThrownEgg.h b/src/mc/world/actor/projectile/ThrownEgg.h index 0f5a70bce3..757ca8613a 100644 --- a/src/mc/world/actor/projectile/ThrownEgg.h +++ b/src/mc/world/actor/projectile/ThrownEgg.h @@ -15,12 +15,6 @@ struct VariantParameterList; // clang-format on class ThrownEgg : public ::Throwable { -public: - // prevent constructor by default - ThrownEgg& operator=(ThrownEgg const&); - ThrownEgg(ThrownEgg const&); - ThrownEgg(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/actor/projectile/ThrownEnderpearl.h b/src/mc/world/actor/projectile/ThrownEnderpearl.h index a8a32428d2..3dffd3191a 100644 --- a/src/mc/world/actor/projectile/ThrownEnderpearl.h +++ b/src/mc/world/actor/projectile/ThrownEnderpearl.h @@ -15,12 +15,6 @@ struct VariantParameterList; // clang-format on class ThrownEnderpearl : public ::Throwable { -public: - // prevent constructor by default - ThrownEnderpearl& operator=(ThrownEnderpearl const&); - ThrownEnderpearl(ThrownEnderpearl const&); - ThrownEnderpearl(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/actor/projectile/ThrownIceBomb.h b/src/mc/world/actor/projectile/ThrownIceBomb.h index ac03479908..c73d06d31b 100644 --- a/src/mc/world/actor/projectile/ThrownIceBomb.h +++ b/src/mc/world/actor/projectile/ThrownIceBomb.h @@ -15,12 +15,6 @@ struct VariantParameterList; // clang-format on class ThrownIceBomb : public ::Throwable { -public: - // prevent constructor by default - ThrownIceBomb& operator=(ThrownIceBomb const&); - ThrownIceBomb(ThrownIceBomb const&); - ThrownIceBomb(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/actor/projectile/ThrownPotion.h b/src/mc/world/actor/projectile/ThrownPotion.h index 25ba6a2fa2..54f2fc3adf 100644 --- a/src/mc/world/actor/projectile/ThrownPotion.h +++ b/src/mc/world/actor/projectile/ThrownPotion.h @@ -18,12 +18,6 @@ struct VariantParameterList; // clang-format on class ThrownPotion : public ::Throwable { -public: - // prevent constructor by default - ThrownPotion& operator=(ThrownPotion const&); - ThrownPotion(ThrownPotion const&); - ThrownPotion(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/actor/projectile/WindChargeProjectile.h b/src/mc/world/actor/projectile/WindChargeProjectile.h index d473658fcf..4530a1d6f7 100644 --- a/src/mc/world/actor/projectile/WindChargeProjectile.h +++ b/src/mc/world/actor/projectile/WindChargeProjectile.h @@ -18,12 +18,6 @@ struct VariantParameterList; // clang-format on class WindChargeProjectile : public ::PredictableProjectile { -public: - // prevent constructor by default - WindChargeProjectile& operator=(WindChargeProjectile const&); - WindChargeProjectile(WindChargeProjectile const&); - WindChargeProjectile(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/actor/provider/SynchedActorDataInitializer.h b/src/mc/world/actor/provider/SynchedActorDataInitializer.h index 42dc0f1605..a25f0ce4c1 100644 --- a/src/mc/world/actor/provider/SynchedActorDataInitializer.h +++ b/src/mc/world/actor/provider/SynchedActorDataInitializer.h @@ -2,10 +2,4 @@ #include "mc/_HeaderOutputPredefine.h" -struct SynchedActorDataInitializer { -public: - // prevent constructor by default - SynchedActorDataInitializer& operator=(SynchedActorDataInitializer const&); - SynchedActorDataInitializer(SynchedActorDataInitializer const&); - SynchedActorDataInitializer(); -}; +struct SynchedActorDataInitializer {}; diff --git a/src/mc/world/actor/selectors/InvertableFilter.h b/src/mc/world/actor/selectors/InvertableFilter.h index 0c835fd8e6..6912521e69 100644 --- a/src/mc/world/actor/selectors/InvertableFilter.h +++ b/src/mc/world/actor/selectors/InvertableFilter.h @@ -3,10 +3,4 @@ #include "mc/_HeaderOutputPredefine.h" template -struct InvertableFilter { -public: - // prevent constructor by default - InvertableFilter& operator=(InvertableFilter const&); - InvertableFilter(InvertableFilter const&); - InvertableFilter(); -}; +struct InvertableFilter {}; diff --git a/src/mc/world/attribute/Amplifier.h b/src/mc/world/attribute/Amplifier.h index ae43c1213a..84c713de8d 100644 --- a/src/mc/world/attribute/Amplifier.h +++ b/src/mc/world/attribute/Amplifier.h @@ -3,12 +3,6 @@ #include "mc/_HeaderOutputPredefine.h" class Amplifier { -public: - // prevent constructor by default - Amplifier& operator=(Amplifier const&); - Amplifier(Amplifier const&); - Amplifier(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/attribute/ExhaustionAttributeDelegate.h b/src/mc/world/attribute/ExhaustionAttributeDelegate.h index 27d8d14215..ab0719def9 100644 --- a/src/mc/world/attribute/ExhaustionAttributeDelegate.h +++ b/src/mc/world/attribute/ExhaustionAttributeDelegate.h @@ -11,12 +11,6 @@ class AttributeInstance; // clang-format on class ExhaustionAttributeDelegate : public ::AttributeInstanceDelegate { -public: - // prevent constructor by default - ExhaustionAttributeDelegate& operator=(ExhaustionAttributeDelegate const&); - ExhaustionAttributeDelegate(ExhaustionAttributeDelegate const&); - ExhaustionAttributeDelegate(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/attribute/InstantaneousAttributeBuff.h b/src/mc/world/attribute/InstantaneousAttributeBuff.h index 52c08b8dc1..8a87226141 100644 --- a/src/mc/world/attribute/InstantaneousAttributeBuff.h +++ b/src/mc/world/attribute/InstantaneousAttributeBuff.h @@ -12,12 +12,6 @@ class ActorDamageSource; // clang-format on class InstantaneousAttributeBuff : public ::AttributeBuff { -public: - // prevent constructor by default - InstantaneousAttributeBuff& operator=(InstantaneousAttributeBuff const&); - InstantaneousAttributeBuff(InstantaneousAttributeBuff const&); - InstantaneousAttributeBuff(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/attribute/SharedAmplifiers.h b/src/mc/world/attribute/SharedAmplifiers.h index e16398fab1..311f943693 100644 --- a/src/mc/world/attribute/SharedAmplifiers.h +++ b/src/mc/world/attribute/SharedAmplifiers.h @@ -8,12 +8,6 @@ class Amplifier; // clang-format on class SharedAmplifiers { -public: - // prevent constructor by default - SharedAmplifiers& operator=(SharedAmplifiers const&); - SharedAmplifiers(SharedAmplifiers const&); - SharedAmplifiers(); - public: // static variables // NOLINTBEGIN diff --git a/src/mc/world/attribute/SharedAttributes.h b/src/mc/world/attribute/SharedAttributes.h index 301461f095..49d6c23307 100644 --- a/src/mc/world/attribute/SharedAttributes.h +++ b/src/mc/world/attribute/SharedAttributes.h @@ -14,12 +14,6 @@ class TemporalAttributeBuff; // clang-format on class SharedAttributes { -public: - // prevent constructor by default - SharedAttributes& operator=(SharedAttributes const&); - SharedAttributes(SharedAttributes const&); - SharedAttributes(); - public: // static functions // NOLINTBEGIN diff --git a/src/mc/world/attribute/SharedBuffs.h b/src/mc/world/attribute/SharedBuffs.h index aded707539..4f17e5648b 100644 --- a/src/mc/world/attribute/SharedBuffs.h +++ b/src/mc/world/attribute/SharedBuffs.h @@ -8,12 +8,6 @@ class AttributeBuff; // clang-format on class SharedBuffs { -public: - // prevent constructor by default - SharedBuffs& operator=(SharedBuffs const&); - SharedBuffs(SharedBuffs const&); - SharedBuffs(); - public: // static variables // NOLINTBEGIN diff --git a/src/mc/world/attribute/SharedModifiers.h b/src/mc/world/attribute/SharedModifiers.h index 8d13c37811..6570dcac84 100644 --- a/src/mc/world/attribute/SharedModifiers.h +++ b/src/mc/world/attribute/SharedModifiers.h @@ -8,12 +8,6 @@ class AttributeModifier; // clang-format on class SharedModifiers { -public: - // prevent constructor by default - SharedModifiers& operator=(SharedModifiers const&); - SharedModifiers(SharedModifiers const&); - SharedModifiers(); - public: // static variables // NOLINTBEGIN diff --git a/src/mc/world/containers/ContainerFactory.h b/src/mc/world/containers/ContainerFactory.h index 52db72754b..2739c908ab 100644 --- a/src/mc/world/containers/ContainerFactory.h +++ b/src/mc/world/containers/ContainerFactory.h @@ -8,12 +8,6 @@ struct FullContainerName; // clang-format on class ContainerFactory { -public: - // prevent constructor by default - ContainerFactory& operator=(ContainerFactory const&); - ContainerFactory(ContainerFactory const&); - ContainerFactory(); - public: // static variables // NOLINTBEGIN diff --git a/src/mc/world/containers/ContainerTransferScope.h b/src/mc/world/containers/ContainerTransferScope.h index f5a419015d..714cc19644 100644 --- a/src/mc/world/containers/ContainerTransferScope.h +++ b/src/mc/world/containers/ContainerTransferScope.h @@ -9,12 +9,6 @@ class SimpleSparseContainer; // clang-format on struct ContainerTransferScope { -public: - // prevent constructor by default - ContainerTransferScope& operator=(ContainerTransferScope const&); - ContainerTransferScope(ContainerTransferScope const&); - ContainerTransferScope(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/containers/ContainerValidation.h b/src/mc/world/containers/ContainerValidation.h index 2963102ee7..84b5e8815f 100644 --- a/src/mc/world/containers/ContainerValidation.h +++ b/src/mc/world/containers/ContainerValidation.h @@ -7,10 +7,4 @@ class ItemStackBase; // clang-format on -struct ContainerValidation { -public: - // prevent constructor by default - ContainerValidation& operator=(ContainerValidation const&); - ContainerValidation(ContainerValidation const&); - ContainerValidation(); -}; +struct ContainerValidation {}; diff --git a/src/mc/world/containers/IContainerRegistryAccess.h b/src/mc/world/containers/IContainerRegistryAccess.h index b91d56ce9e..89dd06ad17 100644 --- a/src/mc/world/containers/IContainerRegistryAccess.h +++ b/src/mc/world/containers/IContainerRegistryAccess.h @@ -11,12 +11,6 @@ struct FullContainerName; // clang-format on class IContainerRegistryAccess { -public: - // prevent constructor by default - IContainerRegistryAccess& operator=(IContainerRegistryAccess const&); - IContainerRegistryAccess(IContainerRegistryAccess const&); - IContainerRegistryAccess(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/containers/IContainerRegistryTracker.h b/src/mc/world/containers/IContainerRegistryTracker.h index 010c74d6d5..49ff4df44c 100644 --- a/src/mc/world/containers/IContainerRegistryTracker.h +++ b/src/mc/world/containers/IContainerRegistryTracker.h @@ -12,12 +12,6 @@ struct FullContainerName; // clang-format on class IContainerRegistryTracker { -public: - // prevent constructor by default - IContainerRegistryTracker& operator=(IContainerRegistryTracker const&); - IContainerRegistryTracker(IContainerRegistryTracker const&); - IContainerRegistryTracker(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/containers/IContainerTransfer.h b/src/mc/world/containers/IContainerTransfer.h index 10f79350e6..65c7fdcde0 100644 --- a/src/mc/world/containers/IContainerTransfer.h +++ b/src/mc/world/containers/IContainerTransfer.h @@ -9,12 +9,6 @@ struct ContainerTransferScope; // clang-format on class IContainerTransfer { -public: - // prevent constructor by default - IContainerTransfer& operator=(IContainerTransfer const&); - IContainerTransfer(IContainerTransfer const&); - IContainerTransfer(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/containers/IDynamicContainerSerialization.h b/src/mc/world/containers/IDynamicContainerSerialization.h index b6a455dca5..128e196e59 100644 --- a/src/mc/world/containers/IDynamicContainerSerialization.h +++ b/src/mc/world/containers/IDynamicContainerSerialization.h @@ -10,12 +10,6 @@ struct FullContainerName; // clang-format on class IDynamicContainerSerialization { -public: - // prevent constructor by default - IDynamicContainerSerialization& operator=(IDynamicContainerSerialization const&); - IDynamicContainerSerialization(IDynamicContainerSerialization const&); - IDynamicContainerSerialization(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/containers/controllers/BeaconPaymentContainerController.h b/src/mc/world/containers/controllers/BeaconPaymentContainerController.h index 058870b26a..93c3453439 100644 --- a/src/mc/world/containers/controllers/BeaconPaymentContainerController.h +++ b/src/mc/world/containers/controllers/BeaconPaymentContainerController.h @@ -12,12 +12,6 @@ class Recipes; // clang-format on class BeaconPaymentContainerController : public ::ContainerController { -public: - // prevent constructor by default - BeaconPaymentContainerController& operator=(BeaconPaymentContainerController const&); - BeaconPaymentContainerController(BeaconPaymentContainerController const&); - BeaconPaymentContainerController(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/containers/controllers/CreativeContainerController.h b/src/mc/world/containers/controllers/CreativeContainerController.h index fbc76122a3..c20b43486e 100644 --- a/src/mc/world/containers/controllers/CreativeContainerController.h +++ b/src/mc/world/containers/controllers/CreativeContainerController.h @@ -13,12 +13,6 @@ class Recipes; // clang-format on class CreativeContainerController : public ::CraftingContainerController { -public: - // prevent constructor by default - CreativeContainerController& operator=(CreativeContainerController const&); - CreativeContainerController(CreativeContainerController const&); - CreativeContainerController(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/containers/controllers/EnchantingInputContainerController.h b/src/mc/world/containers/controllers/EnchantingInputContainerController.h index 4ab6d090ac..2d25d13c16 100644 --- a/src/mc/world/containers/controllers/EnchantingInputContainerController.h +++ b/src/mc/world/containers/controllers/EnchantingInputContainerController.h @@ -12,12 +12,6 @@ class Recipes; // clang-format on class EnchantingInputContainerController : public ::ContainerController { -public: - // prevent constructor by default - EnchantingInputContainerController& operator=(EnchantingInputContainerController const&); - EnchantingInputContainerController(EnchantingInputContainerController const&); - EnchantingInputContainerController(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/containers/managers/IContainerManager.h b/src/mc/world/containers/managers/IContainerManager.h index 22740e3b86..bbb686192f 100644 --- a/src/mc/world/containers/managers/IContainerManager.h +++ b/src/mc/world/containers/managers/IContainerManager.h @@ -14,12 +14,6 @@ namespace Bedrock::PubSub { class Subscription; } // clang-format on class IContainerManager { -public: - // prevent constructor by default - IContainerManager& operator=(IContainerManager const&); - IContainerManager(IContainerManager const&); - IContainerManager(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/containers/managers/controllers/BlastFurnaceContainerManagerController.h b/src/mc/world/containers/managers/controllers/BlastFurnaceContainerManagerController.h index 0e078bfd46..f2bdae7293 100644 --- a/src/mc/world/containers/managers/controllers/BlastFurnaceContainerManagerController.h +++ b/src/mc/world/containers/managers/controllers/BlastFurnaceContainerManagerController.h @@ -6,12 +6,6 @@ #include "mc/world/containers/managers/controllers/FurnaceContainerManagerController.h" class BlastFurnaceContainerManagerController : public ::FurnaceContainerManagerController { -public: - // prevent constructor by default - BlastFurnaceContainerManagerController& operator=(BlastFurnaceContainerManagerController const&); - BlastFurnaceContainerManagerController(BlastFurnaceContainerManagerController const&); - BlastFurnaceContainerManagerController(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/containers/managers/controllers/SmokerContainerManagerController.h b/src/mc/world/containers/managers/controllers/SmokerContainerManagerController.h index 235ded117d..7548d61e35 100644 --- a/src/mc/world/containers/managers/controllers/SmokerContainerManagerController.h +++ b/src/mc/world/containers/managers/controllers/SmokerContainerManagerController.h @@ -6,12 +6,6 @@ #include "mc/world/containers/managers/controllers/FurnaceContainerManagerController.h" class SmokerContainerManagerController : public ::FurnaceContainerManagerController { -public: - // prevent constructor by default - SmokerContainerManagerController& operator=(SmokerContainerManagerController const&); - SmokerContainerManagerController(SmokerContainerManagerController const&); - SmokerContainerManagerController(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/containers/managers/models/BlastFurnaceContainerManagerModel.h b/src/mc/world/containers/managers/models/BlastFurnaceContainerManagerModel.h index 7c15172beb..39847d0b8e 100644 --- a/src/mc/world/containers/managers/models/BlastFurnaceContainerManagerModel.h +++ b/src/mc/world/containers/managers/models/BlastFurnaceContainerManagerModel.h @@ -13,12 +13,6 @@ class Player; // clang-format on class BlastFurnaceContainerManagerModel : public ::FurnaceContainerManagerModel { -public: - // prevent constructor by default - BlastFurnaceContainerManagerModel& operator=(BlastFurnaceContainerManagerModel const&); - BlastFurnaceContainerManagerModel(BlastFurnaceContainerManagerModel const&); - BlastFurnaceContainerManagerModel(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/containers/managers/models/DispenserContainerManagerModel.h b/src/mc/world/containers/managers/models/DispenserContainerManagerModel.h index 38a3d67c53..bcf6b92ff5 100644 --- a/src/mc/world/containers/managers/models/DispenserContainerManagerModel.h +++ b/src/mc/world/containers/managers/models/DispenserContainerManagerModel.h @@ -14,12 +14,6 @@ class Player; // clang-format on class DispenserContainerManagerModel : public ::LevelContainerManagerModel { -public: - // prevent constructor by default - DispenserContainerManagerModel& operator=(DispenserContainerManagerModel const&); - DispenserContainerManagerModel(DispenserContainerManagerModel const&); - DispenserContainerManagerModel(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/containers/managers/models/DropperContainerManagerModel.h b/src/mc/world/containers/managers/models/DropperContainerManagerModel.h index 6ae4f74784..1fa1724ad7 100644 --- a/src/mc/world/containers/managers/models/DropperContainerManagerModel.h +++ b/src/mc/world/containers/managers/models/DropperContainerManagerModel.h @@ -14,12 +14,6 @@ class Player; // clang-format on class DropperContainerManagerModel : public ::LevelContainerManagerModel { -public: - // prevent constructor by default - DropperContainerManagerModel& operator=(DropperContainerManagerModel const&); - DropperContainerManagerModel(DropperContainerManagerModel const&); - DropperContainerManagerModel(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/containers/managers/models/HopperContainerManagerModel.h b/src/mc/world/containers/managers/models/HopperContainerManagerModel.h index 01699e052a..512dcc9b31 100644 --- a/src/mc/world/containers/managers/models/HopperContainerManagerModel.h +++ b/src/mc/world/containers/managers/models/HopperContainerManagerModel.h @@ -15,12 +15,6 @@ struct ActorUniqueID; // clang-format on class HopperContainerManagerModel : public ::LevelContainerManagerModel { -public: - // prevent constructor by default - HopperContainerManagerModel& operator=(HopperContainerManagerModel const&); - HopperContainerManagerModel(HopperContainerManagerModel const&); - HopperContainerManagerModel(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/containers/managers/models/SmokerContainerManagerModel.h b/src/mc/world/containers/managers/models/SmokerContainerManagerModel.h index c5a2f87436..8eaf1dbc07 100644 --- a/src/mc/world/containers/managers/models/SmokerContainerManagerModel.h +++ b/src/mc/world/containers/managers/models/SmokerContainerManagerModel.h @@ -13,12 +13,6 @@ class Player; // clang-format on class SmokerContainerManagerModel : public ::FurnaceContainerManagerModel { -public: - // prevent constructor by default - SmokerContainerManagerModel& operator=(SmokerContainerManagerModel const&); - SmokerContainerManagerModel(SmokerContainerManagerModel const&); - SmokerContainerManagerModel(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/containers/models/PlayerUIContainerModel.h b/src/mc/world/containers/models/PlayerUIContainerModel.h index 7e0f504e54..b5aaebc2d3 100644 --- a/src/mc/world/containers/models/PlayerUIContainerModel.h +++ b/src/mc/world/containers/models/PlayerUIContainerModel.h @@ -12,12 +12,6 @@ class Player; // clang-format on class PlayerUIContainerModel : public ::PlayerUIContainerModelBase { -public: - // prevent constructor by default - PlayerUIContainerModel& operator=(PlayerUIContainerModel const&); - PlayerUIContainerModel(PlayerUIContainerModel const&); - PlayerUIContainerModel(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/effect/AbsorptionMobEffect.h b/src/mc/world/effect/AbsorptionMobEffect.h index a07f54a698..560ed8577b 100644 --- a/src/mc/world/effect/AbsorptionMobEffect.h +++ b/src/mc/world/effect/AbsorptionMobEffect.h @@ -13,12 +13,6 @@ struct EffectDuration; // clang-format on class AbsorptionMobEffect : public ::MobEffect { -public: - // prevent constructor by default - AbsorptionMobEffect& operator=(AbsorptionMobEffect const&); - AbsorptionMobEffect(AbsorptionMobEffect const&); - AbsorptionMobEffect(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/effect/AttackDamageMobEffect.h b/src/mc/world/effect/AttackDamageMobEffect.h index 2471953b0e..27557ffaa1 100644 --- a/src/mc/world/effect/AttackDamageMobEffect.h +++ b/src/mc/world/effect/AttackDamageMobEffect.h @@ -11,12 +11,6 @@ class AttributeModifier; // clang-format on class AttackDamageMobEffect : public ::MobEffect { -public: - // prevent constructor by default - AttackDamageMobEffect& operator=(AttackDamageMobEffect const&); - AttackDamageMobEffect(AttackDamageMobEffect const&); - AttackDamageMobEffect(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/effect/InfestedMobEffect.h b/src/mc/world/effect/InfestedMobEffect.h index a7b9519e49..e5f747a455 100644 --- a/src/mc/world/effect/InfestedMobEffect.h +++ b/src/mc/world/effect/InfestedMobEffect.h @@ -12,12 +12,6 @@ class ActorDamageSource; // clang-format on class InfestedMobEffect : public ::MobEffect { -public: - // prevent constructor by default - InfestedMobEffect& operator=(InfestedMobEffect const&); - InfestedMobEffect(InfestedMobEffect const&); - InfestedMobEffect(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/effect/InstantaneousMobEffect.h b/src/mc/world/effect/InstantaneousMobEffect.h index 058760ceda..9d55e16e8f 100644 --- a/src/mc/world/effect/InstantaneousMobEffect.h +++ b/src/mc/world/effect/InstantaneousMobEffect.h @@ -6,12 +6,6 @@ #include "mc/world/effect/MobEffect.h" class InstantaneousMobEffect : public ::MobEffect { -public: - // prevent constructor by default - InstantaneousMobEffect& operator=(InstantaneousMobEffect const&); - InstantaneousMobEffect(InstantaneousMobEffect const&); - InstantaneousMobEffect(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/effect/OozingMobEffect.h b/src/mc/world/effect/OozingMobEffect.h index 4c6eb6fff7..7706cc918a 100644 --- a/src/mc/world/effect/OozingMobEffect.h +++ b/src/mc/world/effect/OozingMobEffect.h @@ -11,12 +11,6 @@ class Actor; // clang-format on class OozingMobEffect : public ::MobEffect { -public: - // prevent constructor by default - OozingMobEffect& operator=(OozingMobEffect const&); - OozingMobEffect(OozingMobEffect const&); - OozingMobEffect(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/effect/RaidOmenMobEffect.h b/src/mc/world/effect/RaidOmenMobEffect.h index ff20924b5e..ccea0fe112 100644 --- a/src/mc/world/effect/RaidOmenMobEffect.h +++ b/src/mc/world/effect/RaidOmenMobEffect.h @@ -12,12 +12,6 @@ struct EffectDuration; // clang-format on class RaidOmenMobEffect : public ::MobEffect { -public: - // prevent constructor by default - RaidOmenMobEffect& operator=(RaidOmenMobEffect const&); - RaidOmenMobEffect(RaidOmenMobEffect const&); - RaidOmenMobEffect(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/effect/WeavingMobEffect.h b/src/mc/world/effect/WeavingMobEffect.h index 6e4a1908f6..52edc0b48f 100644 --- a/src/mc/world/effect/WeavingMobEffect.h +++ b/src/mc/world/effect/WeavingMobEffect.h @@ -12,12 +12,6 @@ class Vec3; // clang-format on class WeavingMobEffect : public ::MobEffect { -public: - // prevent constructor by default - WeavingMobEffect& operator=(WeavingMobEffect const&); - WeavingMobEffect(WeavingMobEffect const&); - WeavingMobEffect(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/effect/WindChargedMobEffect.h b/src/mc/world/effect/WindChargedMobEffect.h index da7fd2ee2f..473cc4e487 100644 --- a/src/mc/world/effect/WindChargedMobEffect.h +++ b/src/mc/world/effect/WindChargedMobEffect.h @@ -11,12 +11,6 @@ class Actor; // clang-format on class WindChargedMobEffect : public ::MobEffect { -public: - // prevent constructor by default - WindChargedMobEffect& operator=(WindChargedMobEffect const&); - WindChargedMobEffect(WindChargedMobEffect const&); - WindChargedMobEffect(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/events/ActorEventListener.h b/src/mc/world/events/ActorEventListener.h index e569d7d3a3..bb032dd5d5 100644 --- a/src/mc/world/events/ActorEventListener.h +++ b/src/mc/world/events/ActorEventListener.h @@ -18,12 +18,6 @@ struct ActorNotificationEvent; // clang-format on class ActorEventListener { -public: - // prevent constructor by default - ActorEventListener& operator=(ActorEventListener const&); - ActorEventListener(ActorEventListener const&); - ActorEventListener(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/events/ActorGameplayEvent.h b/src/mc/world/events/ActorGameplayEvent.h index af4abe0b91..f1b4031782 100644 --- a/src/mc/world/events/ActorGameplayEvent.h +++ b/src/mc/world/events/ActorGameplayEvent.h @@ -3,10 +3,4 @@ #include "mc/_HeaderOutputPredefine.h" template -struct ActorGameplayEvent { -public: - // prevent constructor by default - ActorGameplayEvent& operator=(ActorGameplayEvent const&); - ActorGameplayEvent(ActorGameplayEvent const&); - ActorGameplayEvent(); -}; +struct ActorGameplayEvent {}; diff --git a/src/mc/world/events/ActorNotificationEvent.h b/src/mc/world/events/ActorNotificationEvent.h index 9204716859..89e2c41a3c 100644 --- a/src/mc/world/events/ActorNotificationEvent.h +++ b/src/mc/world/events/ActorNotificationEvent.h @@ -58,12 +58,6 @@ struct ActorNotificationEvent : public ::EventVariantImpl< ::ActorStopRidingEvent const, ::ActorDefinitionStartedEvent const, ::ActorAddEffectEvent const> { -public: - // prevent constructor by default - ActorNotificationEvent& operator=(ActorNotificationEvent const&); - ActorNotificationEvent(ActorNotificationEvent const&); - ActorNotificationEvent(); - public: // member functions // NOLINTBEGIN diff --git a/src/mc/world/events/BlockEventListener.h b/src/mc/world/events/BlockEventListener.h index 29223aac64..441ca73738 100644 --- a/src/mc/world/events/BlockEventListener.h +++ b/src/mc/world/events/BlockEventListener.h @@ -20,12 +20,6 @@ struct NewBlockID; // clang-format on class BlockEventListener { -public: - // prevent constructor by default - BlockEventListener& operator=(BlockEventListener const&); - BlockEventListener(BlockEventListener const&); - BlockEventListener(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/events/BlockGameplayEvent.h b/src/mc/world/events/BlockGameplayEvent.h index 510c7c7cf1..78e5d71c0e 100644 --- a/src/mc/world/events/BlockGameplayEvent.h +++ b/src/mc/world/events/BlockGameplayEvent.h @@ -3,10 +3,4 @@ #include "mc/_HeaderOutputPredefine.h" template -struct BlockGameplayEvent { -public: - // prevent constructor by default - BlockGameplayEvent& operator=(BlockGameplayEvent const&); - BlockGameplayEvent(BlockGameplayEvent const&); - BlockGameplayEvent(); -}; +struct BlockGameplayEvent {}; diff --git a/src/mc/world/events/BlockNotificationEvent.h b/src/mc/world/events/BlockNotificationEvent.h index 20366db411..f565e76080 100644 --- a/src/mc/world/events/BlockNotificationEvent.h +++ b/src/mc/world/events/BlockNotificationEvent.h @@ -44,12 +44,6 @@ struct BlockNotificationEvent : public ::EventVariantImpl< ::CraftUISetResultNameEvent const, ::ExplosionStartedEvent const, ::BlockTryDestroyByPlayerEvent const> { -public: - // prevent constructor by default - BlockNotificationEvent& operator=(BlockNotificationEvent const&); - BlockNotificationEvent(BlockNotificationEvent const&); - BlockNotificationEvent(); - public: // member functions // NOLINTBEGIN diff --git a/src/mc/world/events/BlockPatternPostEvent.h b/src/mc/world/events/BlockPatternPostEvent.h index 5b1a4d882c..d31f320f29 100644 --- a/src/mc/world/events/BlockPatternPostEvent.h +++ b/src/mc/world/events/BlockPatternPostEvent.h @@ -6,12 +6,6 @@ #include "mc/world/events/BlockPatternEvent.h" struct BlockPatternPostEvent : public ::BlockPatternEvent { -public: - // prevent constructor by default - BlockPatternPostEvent& operator=(BlockPatternPostEvent const&); - BlockPatternPostEvent(BlockPatternPostEvent const&); - BlockPatternPostEvent(); - public: // member functions // NOLINTBEGIN diff --git a/src/mc/world/events/BlockPatternPreEvent.h b/src/mc/world/events/BlockPatternPreEvent.h index fef17e12cd..13f89b1da4 100644 --- a/src/mc/world/events/BlockPatternPreEvent.h +++ b/src/mc/world/events/BlockPatternPreEvent.h @@ -6,12 +6,6 @@ #include "mc/world/events/BlockPatternEvent.h" struct BlockPatternPreEvent : public ::BlockPatternEvent { -public: - // prevent constructor by default - BlockPatternPreEvent& operator=(BlockPatternPreEvent const&); - BlockPatternPreEvent(BlockPatternPreEvent const&); - BlockPatternPreEvent(); - public: // member functions // NOLINTBEGIN diff --git a/src/mc/world/events/ClientHitDetectCoordinator.h b/src/mc/world/events/ClientHitDetectCoordinator.h index 5b29e98499..c533ef53b9 100644 --- a/src/mc/world/events/ClientHitDetectCoordinator.h +++ b/src/mc/world/events/ClientHitDetectCoordinator.h @@ -11,12 +11,6 @@ class ClientHitDetectListener; // clang-format on class ClientHitDetectCoordinator : public ::EventCoordinator<::ClientHitDetectListener> { -public: - // prevent constructor by default - ClientHitDetectCoordinator& operator=(ClientHitDetectCoordinator const&); - ClientHitDetectCoordinator(ClientHitDetectCoordinator const&); - ClientHitDetectCoordinator(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/events/ClientHitDetectListener.h b/src/mc/world/events/ClientHitDetectListener.h index 2c5df36cb5..a17a0a8797 100644 --- a/src/mc/world/events/ClientHitDetectListener.h +++ b/src/mc/world/events/ClientHitDetectListener.h @@ -11,12 +11,6 @@ class HitResult; // clang-format on class ClientHitDetectListener { -public: - // prevent constructor by default - ClientHitDetectListener& operator=(ClientHitDetectListener const&); - ClientHitDetectListener(ClientHitDetectListener const&); - ClientHitDetectListener(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/events/ClientInstanceEventListener.h b/src/mc/world/events/ClientInstanceEventListener.h index ec8385314f..26075cf5d7 100644 --- a/src/mc/world/events/ClientInstanceEventListener.h +++ b/src/mc/world/events/ClientInstanceEventListener.h @@ -14,12 +14,6 @@ struct ClientInstanceNotificationEvent; // clang-format on class ClientInstanceEventListener { -public: - // prevent constructor by default - ClientInstanceEventListener& operator=(ClientInstanceEventListener const&); - ClientInstanceEventListener(ClientInstanceEventListener const&); - ClientInstanceEventListener(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/events/ClientInstanceGameplayEvent.h b/src/mc/world/events/ClientInstanceGameplayEvent.h index c72dedf1c7..8f02e41371 100644 --- a/src/mc/world/events/ClientInstanceGameplayEvent.h +++ b/src/mc/world/events/ClientInstanceGameplayEvent.h @@ -3,10 +3,4 @@ #include "mc/_HeaderOutputPredefine.h" template -struct ClientInstanceGameplayEvent { -public: - // prevent constructor by default - ClientInstanceGameplayEvent& operator=(ClientInstanceGameplayEvent const&); - ClientInstanceGameplayEvent(ClientInstanceGameplayEvent const&); - ClientInstanceGameplayEvent(); -}; +struct ClientInstanceGameplayEvent {}; diff --git a/src/mc/world/events/ClientInstanceNotificationEvent.h b/src/mc/world/events/ClientInstanceNotificationEvent.h index 548cfeb4cc..bed7bd121d 100644 --- a/src/mc/world/events/ClientInstanceNotificationEvent.h +++ b/src/mc/world/events/ClientInstanceNotificationEvent.h @@ -12,10 +12,4 @@ struct ScreenSizeChangedEvent; // clang-format on struct ClientInstanceNotificationEvent -: public ::EventVariantImpl<::PlayerViewPerspectiveChangedEvent const, ::ScreenSizeChangedEvent const> { -public: - // prevent constructor by default - ClientInstanceNotificationEvent& operator=(ClientInstanceNotificationEvent const&); - ClientInstanceNotificationEvent(ClientInstanceNotificationEvent const&); - ClientInstanceNotificationEvent(); -}; +: public ::EventVariantImpl<::PlayerViewPerspectiveChangedEvent const, ::ScreenSizeChangedEvent const> {}; diff --git a/src/mc/world/events/ClientLevelEventCoordinator.h b/src/mc/world/events/ClientLevelEventCoordinator.h index 7dcaed8d09..6c761b5a9f 100644 --- a/src/mc/world/events/ClientLevelEventCoordinator.h +++ b/src/mc/world/events/ClientLevelEventCoordinator.h @@ -6,12 +6,6 @@ #include "mc/world/events/LevelEventCoordinator.h" class ClientLevelEventCoordinator : public ::LevelEventCoordinator { -public: - // prevent constructor by default - ClientLevelEventCoordinator& operator=(ClientLevelEventCoordinator const&); - ClientLevelEventCoordinator(ClientLevelEventCoordinator const&); - ClientLevelEventCoordinator(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/events/ClientMessageEvent.h b/src/mc/world/events/ClientMessageEvent.h index c705f9834c..36181695e5 100644 --- a/src/mc/world/events/ClientMessageEvent.h +++ b/src/mc/world/events/ClientMessageEvent.h @@ -2,10 +2,4 @@ #include "mc/_HeaderOutputPredefine.h" -struct ClientMessageEvent { -public: - // prevent constructor by default - ClientMessageEvent& operator=(ClientMessageEvent const&); - ClientMessageEvent(ClientMessageEvent const&); - ClientMessageEvent(); -}; +struct ClientMessageEvent {}; diff --git a/src/mc/world/events/ClientNetworkEventCoordinator.h b/src/mc/world/events/ClientNetworkEventCoordinator.h index a30581b17e..7f4cdd23c2 100644 --- a/src/mc/world/events/ClientNetworkEventCoordinator.h +++ b/src/mc/world/events/ClientNetworkEventCoordinator.h @@ -11,12 +11,6 @@ class ClientNetworkEventListener; // clang-format on class ClientNetworkEventCoordinator : public ::EventCoordinator<::ClientNetworkEventListener> { -public: - // prevent constructor by default - ClientNetworkEventCoordinator& operator=(ClientNetworkEventCoordinator const&); - ClientNetworkEventCoordinator(ClientNetworkEventCoordinator const&); - ClientNetworkEventCoordinator(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/events/ClientNetworkEventListener.h b/src/mc/world/events/ClientNetworkEventListener.h index ca361dd369..d0be014a90 100644 --- a/src/mc/world/events/ClientNetworkEventListener.h +++ b/src/mc/world/events/ClientNetworkEventListener.h @@ -11,12 +11,6 @@ struct ClientMessageEvent; // clang-format on class ClientNetworkEventListener { -public: - // prevent constructor by default - ClientNetworkEventListener& operator=(ClientNetworkEventListener const&); - ClientNetworkEventListener(ClientNetworkEventListener const&); - ClientNetworkEventListener(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/events/ClientPlayerEventCoordinator.h b/src/mc/world/events/ClientPlayerEventCoordinator.h index 35bb0297d2..91a671b316 100644 --- a/src/mc/world/events/ClientPlayerEventCoordinator.h +++ b/src/mc/world/events/ClientPlayerEventCoordinator.h @@ -13,12 +13,6 @@ class Player; // clang-format on class ClientPlayerEventCoordinator : public ::PlayerEventCoordinator { -public: - // prevent constructor by default - ClientPlayerEventCoordinator& operator=(ClientPlayerEventCoordinator const&); - ClientPlayerEventCoordinator(ClientPlayerEventCoordinator const&); - ClientPlayerEventCoordinator(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/events/ClientScriptEventCoordinator.h b/src/mc/world/events/ClientScriptEventCoordinator.h index 209e16319e..3dfdb5677c 100644 --- a/src/mc/world/events/ClientScriptEventCoordinator.h +++ b/src/mc/world/events/ClientScriptEventCoordinator.h @@ -11,12 +11,6 @@ class ClientScriptEventListener; // clang-format on class ClientScriptEventCoordinator : public ::EventCoordinator<::ClientScriptEventListener> { -public: - // prevent constructor by default - ClientScriptEventCoordinator& operator=(ClientScriptEventCoordinator const&); - ClientScriptEventCoordinator(ClientScriptEventCoordinator const&); - ClientScriptEventCoordinator(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/events/ClientScriptEventListener.h b/src/mc/world/events/ClientScriptEventListener.h index 619bcb970a..81f2430bb7 100644 --- a/src/mc/world/events/ClientScriptEventListener.h +++ b/src/mc/world/events/ClientScriptEventListener.h @@ -6,12 +6,6 @@ #include "mc/world/events/EventResult.h" class ClientScriptEventListener { -public: - // prevent constructor by default - ClientScriptEventListener& operator=(ClientScriptEventListener const&); - ClientScriptEventListener(ClientScriptEventListener const&); - ClientScriptEventListener(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/events/EventCoordinator.h b/src/mc/world/events/EventCoordinator.h index 82a879e8ae..7ad003bea3 100644 --- a/src/mc/world/events/EventCoordinator.h +++ b/src/mc/world/events/EventCoordinator.h @@ -3,10 +3,4 @@ #include "mc/_HeaderOutputPredefine.h" template -class EventCoordinator { -public: - // prevent constructor by default - EventCoordinator& operator=(EventCoordinator const&); - EventCoordinator(EventCoordinator const&); - EventCoordinator(); -}; +class EventCoordinator {}; diff --git a/src/mc/world/events/EventCoordinatorNoTracking.h b/src/mc/world/events/EventCoordinatorNoTracking.h index ca9ec59682..0f428d5e5a 100644 --- a/src/mc/world/events/EventCoordinatorNoTracking.h +++ b/src/mc/world/events/EventCoordinatorNoTracking.h @@ -3,10 +3,4 @@ #include "mc/_HeaderOutputPredefine.h" template -class EventCoordinatorNoTracking { -public: - // prevent constructor by default - EventCoordinatorNoTracking& operator=(EventCoordinatorNoTracking const&); - EventCoordinatorNoTracking(EventCoordinatorNoTracking const&); - EventCoordinatorNoTracking(); -}; +class EventCoordinatorNoTracking {}; diff --git a/src/mc/world/events/EventListenerDispatcher.h b/src/mc/world/events/EventListenerDispatcher.h index 472cde0679..6fe4aafef6 100644 --- a/src/mc/world/events/EventListenerDispatcher.h +++ b/src/mc/world/events/EventListenerDispatcher.h @@ -3,10 +3,4 @@ #include "mc/_HeaderOutputPredefine.h" template -class EventListenerDispatcher { -public: - // prevent constructor by default - EventListenerDispatcher& operator=(EventListenerDispatcher const&); - EventListenerDispatcher(EventListenerDispatcher const&); - EventListenerDispatcher(); -}; +class EventListenerDispatcher {}; diff --git a/src/mc/world/events/EventRef.h b/src/mc/world/events/EventRef.h index 5f5f5e24fe..75c582794a 100644 --- a/src/mc/world/events/EventRef.h +++ b/src/mc/world/events/EventRef.h @@ -3,10 +3,4 @@ #include "mc/_HeaderOutputPredefine.h" template -class EventRef { -public: - // prevent constructor by default - EventRef& operator=(EventRef const&); - EventRef(EventRef const&); - EventRef(); -}; +class EventRef {}; diff --git a/src/mc/world/events/EventVariantImpl.h b/src/mc/world/events/EventVariantImpl.h index d45c173140..d81d2af8fc 100644 --- a/src/mc/world/events/EventVariantImpl.h +++ b/src/mc/world/events/EventVariantImpl.h @@ -3,10 +3,4 @@ #include "mc/_HeaderOutputPredefine.h" template -class EventVariantImpl { -public: - // prevent constructor by default - EventVariantImpl& operator=(EventVariantImpl const&); - EventVariantImpl(EventVariantImpl const&); - EventVariantImpl(); -}; +class EventVariantImpl {}; diff --git a/src/mc/world/events/IRealmEventLogger.h b/src/mc/world/events/IRealmEventLogger.h index 0230fbf001..f88c9c8cc2 100644 --- a/src/mc/world/events/IRealmEventLogger.h +++ b/src/mc/world/events/IRealmEventLogger.h @@ -3,12 +3,6 @@ #include "mc/_HeaderOutputPredefine.h" class IRealmEventLogger { -public: - // prevent constructor by default - IRealmEventLogger& operator=(IRealmEventLogger const&); - IRealmEventLogger(IRealmEventLogger const&); - IRealmEventLogger(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/events/ItemCompleteUseEvent.h b/src/mc/world/events/ItemCompleteUseEvent.h index 6e6bf5a34b..430367e79f 100644 --- a/src/mc/world/events/ItemCompleteUseEvent.h +++ b/src/mc/world/events/ItemCompleteUseEvent.h @@ -6,12 +6,6 @@ #include "mc/world/events/ItemChargeEvent.h" struct ItemCompleteUseEvent : public ::ItemChargeEvent { -public: - // prevent constructor by default - ItemCompleteUseEvent& operator=(ItemCompleteUseEvent const&); - ItemCompleteUseEvent(ItemCompleteUseEvent const&); - ItemCompleteUseEvent(); - public: // member functions // NOLINTBEGIN diff --git a/src/mc/world/events/ItemEventListener.h b/src/mc/world/events/ItemEventListener.h index d2cda17bbe..3c3ce74bdd 100644 --- a/src/mc/world/events/ItemEventListener.h +++ b/src/mc/world/events/ItemEventListener.h @@ -15,12 +15,6 @@ struct ItemNotificationEvent; // clang-format on class ItemEventListener { -public: - // prevent constructor by default - ItemEventListener& operator=(ItemEventListener const&); - ItemEventListener(ItemEventListener const&); - ItemEventListener(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/events/ItemGameplayEvent.h b/src/mc/world/events/ItemGameplayEvent.h index 0361202b4b..be51d825a9 100644 --- a/src/mc/world/events/ItemGameplayEvent.h +++ b/src/mc/world/events/ItemGameplayEvent.h @@ -3,10 +3,4 @@ #include "mc/_HeaderOutputPredefine.h" template -struct ItemGameplayEvent { -public: - // prevent constructor by default - ItemGameplayEvent& operator=(ItemGameplayEvent const&); - ItemGameplayEvent(ItemGameplayEvent const&); - ItemGameplayEvent(); -}; +struct ItemGameplayEvent {}; diff --git a/src/mc/world/events/ItemNotificationEvent.h b/src/mc/world/events/ItemNotificationEvent.h index b1ae2ccc87..817b1385c5 100644 --- a/src/mc/world/events/ItemNotificationEvent.h +++ b/src/mc/world/events/ItemNotificationEvent.h @@ -34,12 +34,6 @@ struct ItemNotificationEvent : public ::EventVariantImpl< ::ItemCompleteUseEvent const, ::ItemReleaseUseEvent const, ::ItemStopUseEvent const> { -public: - // prevent constructor by default - ItemNotificationEvent& operator=(ItemNotificationEvent const&); - ItemNotificationEvent(ItemNotificationEvent const&); - ItemNotificationEvent(); - public: // member functions // NOLINTBEGIN diff --git a/src/mc/world/events/ItemReleaseUseEvent.h b/src/mc/world/events/ItemReleaseUseEvent.h index c1f89c2f5f..899f3bdbb7 100644 --- a/src/mc/world/events/ItemReleaseUseEvent.h +++ b/src/mc/world/events/ItemReleaseUseEvent.h @@ -6,12 +6,6 @@ #include "mc/world/events/ItemChargeEvent.h" struct ItemReleaseUseEvent : public ::ItemChargeEvent { -public: - // prevent constructor by default - ItemReleaseUseEvent& operator=(ItemReleaseUseEvent const&); - ItemReleaseUseEvent(ItemReleaseUseEvent const&); - ItemReleaseUseEvent(); - public: // member functions // NOLINTBEGIN diff --git a/src/mc/world/events/ItemStartUseEvent.h b/src/mc/world/events/ItemStartUseEvent.h index 18567ba81e..0cb9f0b923 100644 --- a/src/mc/world/events/ItemStartUseEvent.h +++ b/src/mc/world/events/ItemStartUseEvent.h @@ -6,12 +6,6 @@ #include "mc/world/events/ItemChargeEvent.h" struct ItemStartUseEvent : public ::ItemChargeEvent { -public: - // prevent constructor by default - ItemStartUseEvent& operator=(ItemStartUseEvent const&); - ItemStartUseEvent(ItemStartUseEvent const&); - ItemStartUseEvent(); - public: // member functions // NOLINTBEGIN diff --git a/src/mc/world/events/ItemStopUseEvent.h b/src/mc/world/events/ItemStopUseEvent.h index daf731e94d..233e65cee3 100644 --- a/src/mc/world/events/ItemStopUseEvent.h +++ b/src/mc/world/events/ItemStopUseEvent.h @@ -6,12 +6,6 @@ #include "mc/world/events/ItemChargeEvent.h" struct ItemStopUseEvent : public ::ItemChargeEvent { -public: - // prevent constructor by default - ItemStopUseEvent& operator=(ItemStopUseEvent const&); - ItemStopUseEvent(ItemStopUseEvent const&); - ItemStopUseEvent(); - public: // member functions // NOLINTBEGIN diff --git a/src/mc/world/events/LevelEventListener.h b/src/mc/world/events/LevelEventListener.h index 3686a9edbe..a4caa90764 100644 --- a/src/mc/world/events/LevelEventListener.h +++ b/src/mc/world/events/LevelEventListener.h @@ -14,12 +14,6 @@ struct LevelNotificationEvent; // clang-format on class LevelEventListener { -public: - // prevent constructor by default - LevelEventListener& operator=(LevelEventListener const&); - LevelEventListener(LevelEventListener const&); - LevelEventListener(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/events/LevelGameplayEvent.h b/src/mc/world/events/LevelGameplayEvent.h index 52d811cdf3..c484b48741 100644 --- a/src/mc/world/events/LevelGameplayEvent.h +++ b/src/mc/world/events/LevelGameplayEvent.h @@ -3,10 +3,4 @@ #include "mc/_HeaderOutputPredefine.h" template -struct LevelGameplayEvent { -public: - // prevent constructor by default - LevelGameplayEvent& operator=(LevelGameplayEvent const&); - LevelGameplayEvent(LevelGameplayEvent const&); - LevelGameplayEvent(); -}; +struct LevelGameplayEvent {}; diff --git a/src/mc/world/events/LevelNotificationEvent.h b/src/mc/world/events/LevelNotificationEvent.h index 12ff0f64fd..fdb2b3e9d2 100644 --- a/src/mc/world/events/LevelNotificationEvent.h +++ b/src/mc/world/events/LevelNotificationEvent.h @@ -26,12 +26,6 @@ struct LevelNotificationEvent : public ::EventVariantImpl< ::LevelGameRuleChangeEvent const, ::ScriptingWorldInitializeEvent const, ::LevelWeatherChangedEvent const> { -public: - // prevent constructor by default - LevelNotificationEvent& operator=(LevelNotificationEvent const&); - LevelNotificationEvent(LevelNotificationEvent const&); - LevelNotificationEvent(); - public: // member functions // NOLINTBEGIN diff --git a/src/mc/world/events/MutableActorGameplayEvent.h b/src/mc/world/events/MutableActorGameplayEvent.h index 01da203a4c..947cf848cb 100644 --- a/src/mc/world/events/MutableActorGameplayEvent.h +++ b/src/mc/world/events/MutableActorGameplayEvent.h @@ -3,10 +3,4 @@ #include "mc/_HeaderOutputPredefine.h" template -struct MutableActorGameplayEvent { -public: - // prevent constructor by default - MutableActorGameplayEvent& operator=(MutableActorGameplayEvent const&); - MutableActorGameplayEvent(MutableActorGameplayEvent const&); - MutableActorGameplayEvent(); -}; +struct MutableActorGameplayEvent {}; diff --git a/src/mc/world/events/MutableBlockGameplayEvent.h b/src/mc/world/events/MutableBlockGameplayEvent.h index 655717da32..8591799f60 100644 --- a/src/mc/world/events/MutableBlockGameplayEvent.h +++ b/src/mc/world/events/MutableBlockGameplayEvent.h @@ -3,10 +3,4 @@ #include "mc/_HeaderOutputPredefine.h" template -struct MutableBlockGameplayEvent { -public: - // prevent constructor by default - MutableBlockGameplayEvent& operator=(MutableBlockGameplayEvent const&); - MutableBlockGameplayEvent(MutableBlockGameplayEvent const&); - MutableBlockGameplayEvent(); -}; +struct MutableBlockGameplayEvent {}; diff --git a/src/mc/world/events/MutableItemGameplayEvent.h b/src/mc/world/events/MutableItemGameplayEvent.h index a811575c79..e76c10f5af 100644 --- a/src/mc/world/events/MutableItemGameplayEvent.h +++ b/src/mc/world/events/MutableItemGameplayEvent.h @@ -3,10 +3,4 @@ #include "mc/_HeaderOutputPredefine.h" template -struct MutableItemGameplayEvent { -public: - // prevent constructor by default - MutableItemGameplayEvent& operator=(MutableItemGameplayEvent const&); - MutableItemGameplayEvent(MutableItemGameplayEvent const&); - MutableItemGameplayEvent(); -}; +struct MutableItemGameplayEvent {}; diff --git a/src/mc/world/events/MutableLevelGameplayEvent.h b/src/mc/world/events/MutableLevelGameplayEvent.h index 9f35d35be5..4bb18d1457 100644 --- a/src/mc/world/events/MutableLevelGameplayEvent.h +++ b/src/mc/world/events/MutableLevelGameplayEvent.h @@ -3,10 +3,4 @@ #include "mc/_HeaderOutputPredefine.h" template -struct MutableLevelGameplayEvent { -public: - // prevent constructor by default - MutableLevelGameplayEvent& operator=(MutableLevelGameplayEvent const&); - MutableLevelGameplayEvent(MutableLevelGameplayEvent const&); - MutableLevelGameplayEvent(); -}; +struct MutableLevelGameplayEvent {}; diff --git a/src/mc/world/events/MutablePlayerGameplayEvent.h b/src/mc/world/events/MutablePlayerGameplayEvent.h index 9011d8d1e6..9168aec825 100644 --- a/src/mc/world/events/MutablePlayerGameplayEvent.h +++ b/src/mc/world/events/MutablePlayerGameplayEvent.h @@ -3,10 +3,4 @@ #include "mc/_HeaderOutputPredefine.h" template -struct MutablePlayerGameplayEvent { -public: - // prevent constructor by default - MutablePlayerGameplayEvent& operator=(MutablePlayerGameplayEvent const&); - MutablePlayerGameplayEvent(MutablePlayerGameplayEvent const&); - MutablePlayerGameplayEvent(); -}; +struct MutablePlayerGameplayEvent {}; diff --git a/src/mc/world/events/MutableScriptingGameplayEvent.h b/src/mc/world/events/MutableScriptingGameplayEvent.h index cf68b27ca1..3dfb9b3265 100644 --- a/src/mc/world/events/MutableScriptingGameplayEvent.h +++ b/src/mc/world/events/MutableScriptingGameplayEvent.h @@ -3,10 +3,4 @@ #include "mc/_HeaderOutputPredefine.h" template -struct MutableScriptingGameplayEvent { -public: - // prevent constructor by default - MutableScriptingGameplayEvent& operator=(MutableScriptingGameplayEvent const&); - MutableScriptingGameplayEvent(MutableScriptingGameplayEvent const&); - MutableScriptingGameplayEvent(); -}; +struct MutableScriptingGameplayEvent {}; diff --git a/src/mc/world/events/MutableServerNetworkGameplayEvent.h b/src/mc/world/events/MutableServerNetworkGameplayEvent.h index 1a758fdcef..74342760cf 100644 --- a/src/mc/world/events/MutableServerNetworkGameplayEvent.h +++ b/src/mc/world/events/MutableServerNetworkGameplayEvent.h @@ -3,10 +3,4 @@ #include "mc/_HeaderOutputPredefine.h" template -struct MutableServerNetworkGameplayEvent { -public: - // prevent constructor by default - MutableServerNetworkGameplayEvent& operator=(MutableServerNetworkGameplayEvent const&); - MutableServerNetworkGameplayEvent(MutableServerNetworkGameplayEvent const&); - MutableServerNetworkGameplayEvent(); -}; +struct MutableServerNetworkGameplayEvent {}; diff --git a/src/mc/world/events/NetworkPacketEventListener.h b/src/mc/world/events/NetworkPacketEventListener.h index 6d1f17f1e8..06c1b4b9af 100644 --- a/src/mc/world/events/NetworkPacketEventListener.h +++ b/src/mc/world/events/NetworkPacketEventListener.h @@ -12,12 +12,6 @@ class PacketHeader; // clang-format on class NetworkPacketEventListener { -public: - // prevent constructor by default - NetworkPacketEventListener& operator=(NetworkPacketEventListener const&); - NetworkPacketEventListener(NetworkPacketEventListener const&); - NetworkPacketEventListener(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/events/NpcEventCoordinator.h b/src/mc/world/events/NpcEventCoordinator.h index d695f92e0c..55b8cb2f99 100644 --- a/src/mc/world/events/NpcEventCoordinator.h +++ b/src/mc/world/events/NpcEventCoordinator.h @@ -11,12 +11,6 @@ class NpcEventListener; // clang-format on class NpcEventCoordinator : public ::EventCoordinator<::NpcEventListener> { -public: - // prevent constructor by default - NpcEventCoordinator& operator=(NpcEventCoordinator const&); - NpcEventCoordinator(NpcEventCoordinator const&); - NpcEventCoordinator(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/events/NpcEventListener.h b/src/mc/world/events/NpcEventListener.h index 95da505eca..2d406b5f61 100644 --- a/src/mc/world/events/NpcEventListener.h +++ b/src/mc/world/events/NpcEventListener.h @@ -12,12 +12,6 @@ struct INpcDialogueData; // clang-format on class NpcEventListener { -public: - // prevent constructor by default - NpcEventListener& operator=(NpcEventListener const&); - NpcEventListener(NpcEventListener const&); - NpcEventListener(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/events/PlayerEventListener.h b/src/mc/world/events/PlayerEventListener.h index 2bac495d39..b4a4a7e6a0 100644 --- a/src/mc/world/events/PlayerEventListener.h +++ b/src/mc/world/events/PlayerEventListener.h @@ -27,12 +27,6 @@ struct PlayerNotificationEvent; // clang-format on class PlayerEventListener { -public: - // prevent constructor by default - PlayerEventListener& operator=(PlayerEventListener const&); - PlayerEventListener(PlayerEventListener const&); - PlayerEventListener(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/events/PlayerGameplayEvent.h b/src/mc/world/events/PlayerGameplayEvent.h index 876578cb11..d1becd9504 100644 --- a/src/mc/world/events/PlayerGameplayEvent.h +++ b/src/mc/world/events/PlayerGameplayEvent.h @@ -3,10 +3,4 @@ #include "mc/_HeaderOutputPredefine.h" template -struct PlayerGameplayEvent { -public: - // prevent constructor by default - PlayerGameplayEvent& operator=(PlayerGameplayEvent const&); - PlayerGameplayEvent(PlayerGameplayEvent const&); - PlayerGameplayEvent(); -}; +struct PlayerGameplayEvent {}; diff --git a/src/mc/world/events/PlayerNotificationEvent.h b/src/mc/world/events/PlayerNotificationEvent.h index 190427be8c..988b73f4a2 100644 --- a/src/mc/world/events/PlayerNotificationEvent.h +++ b/src/mc/world/events/PlayerNotificationEvent.h @@ -78,12 +78,6 @@ struct PlayerNotificationEvent : public ::EventVariantImpl< ::PlayerInteractWithEntityBeforeEvent const, ::PlayerInteractWithBlockBeforeEvent const, ::PlayerGameModeChangeEvent const> { -public: - // prevent constructor by default - PlayerNotificationEvent& operator=(PlayerNotificationEvent const&); - PlayerNotificationEvent(PlayerNotificationEvent const&); - PlayerNotificationEvent(); - public: // member functions // NOLINTBEGIN diff --git a/src/mc/world/events/RealmEventServerLogger.h b/src/mc/world/events/RealmEventServerLogger.h index 4c00827c68..96f63090b7 100644 --- a/src/mc/world/events/RealmEventServerLogger.h +++ b/src/mc/world/events/RealmEventServerLogger.h @@ -6,12 +6,6 @@ #include "mc/world/events/IRealmEventLogger.h" class RealmEventServerLogger : public ::IRealmEventLogger { -public: - // prevent constructor by default - RealmEventServerLogger& operator=(RealmEventServerLogger const&); - RealmEventServerLogger(RealmEventServerLogger const&); - RealmEventServerLogger(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/events/ScoreboardEventListener.h b/src/mc/world/events/ScoreboardEventListener.h index 570e92403e..90afa65192 100644 --- a/src/mc/world/events/ScoreboardEventListener.h +++ b/src/mc/world/events/ScoreboardEventListener.h @@ -11,12 +11,6 @@ struct ScoreboardId; // clang-format on class ScoreboardEventListener { -public: - // prevent constructor by default - ScoreboardEventListener& operator=(ScoreboardEventListener const&); - ScoreboardEventListener(ScoreboardEventListener const&); - ScoreboardEventListener(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/events/ScriptDeferredEventCoordinator.h b/src/mc/world/events/ScriptDeferredEventCoordinator.h index 6a8f22b21b..367ed23313 100644 --- a/src/mc/world/events/ScriptDeferredEventCoordinator.h +++ b/src/mc/world/events/ScriptDeferredEventCoordinator.h @@ -47,12 +47,6 @@ class ScriptDeferredEventCoordinator : public ::EventCoordinatorNoTracking<::Scr // NOLINTEND }; -public: - // prevent constructor by default - ScriptDeferredEventCoordinator& operator=(ScriptDeferredEventCoordinator const&); - ScriptDeferredEventCoordinator(ScriptDeferredEventCoordinator const&); - ScriptDeferredEventCoordinator(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/events/ScriptDeferredEventListener.h b/src/mc/world/events/ScriptDeferredEventListener.h index 8cc14b519d..e50014ad56 100644 --- a/src/mc/world/events/ScriptDeferredEventListener.h +++ b/src/mc/world/events/ScriptDeferredEventListener.h @@ -3,12 +3,6 @@ #include "mc/_HeaderOutputPredefine.h" class ScriptDeferredEventListener { -public: - // prevent constructor by default - ScriptDeferredEventListener& operator=(ScriptDeferredEventListener const&); - ScriptDeferredEventListener(ScriptDeferredEventListener const&); - ScriptDeferredEventListener(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/events/ScriptingEventListener.h b/src/mc/world/events/ScriptingEventListener.h index 0aa526a5f8..5b7b3852d4 100644 --- a/src/mc/world/events/ScriptingEventListener.h +++ b/src/mc/world/events/ScriptingEventListener.h @@ -11,12 +11,6 @@ struct ScriptingNotificationEvent; // clang-format on class ScriptingEventListener { -public: - // prevent constructor by default - ScriptingEventListener& operator=(ScriptingEventListener const&); - ScriptingEventListener(ScriptingEventListener const&); - ScriptingEventListener(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/events/ScriptingGameplayEvent.h b/src/mc/world/events/ScriptingGameplayEvent.h index 41895db4ac..1b2cafc29a 100644 --- a/src/mc/world/events/ScriptingGameplayEvent.h +++ b/src/mc/world/events/ScriptingGameplayEvent.h @@ -3,10 +3,4 @@ #include "mc/_HeaderOutputPredefine.h" template -struct ScriptingGameplayEvent { -public: - // prevent constructor by default - ScriptingGameplayEvent& operator=(ScriptingGameplayEvent const&); - ScriptingGameplayEvent(ScriptingGameplayEvent const&); - ScriptingGameplayEvent(); -}; +struct ScriptingGameplayEvent {}; diff --git a/src/mc/world/events/ScriptingNotificationEvent.h b/src/mc/world/events/ScriptingNotificationEvent.h index a2263cdb4d..b523b45f4a 100644 --- a/src/mc/world/events/ScriptingNotificationEvent.h +++ b/src/mc/world/events/ScriptingNotificationEvent.h @@ -18,12 +18,6 @@ struct ScriptingNotificationEvent : public ::EventVariantImpl< ::ScriptCommandMessageEvent const, ::ScriptModuleStartupEvent const, ::ScriptModuleShutdownEvent const> { -public: - // prevent constructor by default - ScriptingNotificationEvent& operator=(ScriptingNotificationEvent const&); - ScriptingNotificationEvent(ScriptingNotificationEvent const&); - ScriptingNotificationEvent(); - public: // member functions // NOLINTBEGIN diff --git a/src/mc/world/events/ServerInstanceEventListener.h b/src/mc/world/events/ServerInstanceEventListener.h index 7f974d99fd..be3ba4e73e 100644 --- a/src/mc/world/events/ServerInstanceEventListener.h +++ b/src/mc/world/events/ServerInstanceEventListener.h @@ -15,12 +15,6 @@ struct ServerInstanceNotificationEvent; // clang-format on class ServerInstanceEventListener { -public: - // prevent constructor by default - ServerInstanceEventListener& operator=(ServerInstanceEventListener const&); - ServerInstanceEventListener(ServerInstanceEventListener const&); - ServerInstanceEventListener(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/events/ServerInstanceGameplayEvent.h b/src/mc/world/events/ServerInstanceGameplayEvent.h index dad85862a9..520da73318 100644 --- a/src/mc/world/events/ServerInstanceGameplayEvent.h +++ b/src/mc/world/events/ServerInstanceGameplayEvent.h @@ -3,10 +3,4 @@ #include "mc/_HeaderOutputPredefine.h" template -struct ServerInstanceGameplayEvent { -public: - // prevent constructor by default - ServerInstanceGameplayEvent& operator=(ServerInstanceGameplayEvent const&); - ServerInstanceGameplayEvent(ServerInstanceGameplayEvent const&); - ServerInstanceGameplayEvent(); -}; +struct ServerInstanceGameplayEvent {}; diff --git a/src/mc/world/events/ServerInstanceNotificationEvent.h b/src/mc/world/events/ServerInstanceNotificationEvent.h index 6f782d7add..c2a8f9988c 100644 --- a/src/mc/world/events/ServerInstanceNotificationEvent.h +++ b/src/mc/world/events/ServerInstanceNotificationEvent.h @@ -13,12 +13,6 @@ struct ServerInstanceRequestResourceReload; struct ServerInstanceNotificationEvent : public ::EventVariantImpl<::ServerInstanceLeaveGameDoneEvent const, ::ServerInstanceRequestResourceReload const> { -public: - // prevent constructor by default - ServerInstanceNotificationEvent& operator=(ServerInstanceNotificationEvent const&); - ServerInstanceNotificationEvent(ServerInstanceNotificationEvent const&); - ServerInstanceNotificationEvent(); - public: // member functions // NOLINTBEGIN diff --git a/src/mc/world/events/ServerNetworkEventListener.h b/src/mc/world/events/ServerNetworkEventListener.h index 774c228613..e58bd3cb37 100644 --- a/src/mc/world/events/ServerNetworkEventListener.h +++ b/src/mc/world/events/ServerNetworkEventListener.h @@ -13,12 +13,6 @@ struct ServerNetworkGameplayNotificationEvent; // clang-format on class ServerNetworkEventListener { -public: - // prevent constructor by default - ServerNetworkEventListener& operator=(ServerNetworkEventListener const&); - ServerNetworkEventListener(ServerNetworkEventListener const&); - ServerNetworkEventListener(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/events/ServerNetworkGameplayNotificationEvent.h b/src/mc/world/events/ServerNetworkGameplayNotificationEvent.h index 2bffbbf447..932213ab08 100644 --- a/src/mc/world/events/ServerNetworkGameplayNotificationEvent.h +++ b/src/mc/world/events/ServerNetworkGameplayNotificationEvent.h @@ -14,12 +14,6 @@ struct OutgoingPacketEvent; struct ServerNetworkGameplayNotificationEvent : public ::EventVariantImpl<::ChatEvent const, ::IncomingPacketEvent const, ::OutgoingPacketEvent const> { -public: - // prevent constructor by default - ServerNetworkGameplayNotificationEvent& operator=(ServerNetworkGameplayNotificationEvent const&); - ServerNetworkGameplayNotificationEvent(ServerNetworkGameplayNotificationEvent const&); - ServerNetworkGameplayNotificationEvent(); - public: // member functions // NOLINTBEGIN diff --git a/src/mc/world/events/ServerPlayerEventCoordinator.h b/src/mc/world/events/ServerPlayerEventCoordinator.h index f7fbe63caa..86fbbb03c2 100644 --- a/src/mc/world/events/ServerPlayerEventCoordinator.h +++ b/src/mc/world/events/ServerPlayerEventCoordinator.h @@ -6,12 +6,6 @@ #include "mc/world/events/PlayerEventCoordinator.h" class ServerPlayerEventCoordinator : public ::PlayerEventCoordinator { -public: - // prevent constructor by default - ServerPlayerEventCoordinator& operator=(ServerPlayerEventCoordinator const&); - ServerPlayerEventCoordinator(ServerPlayerEventCoordinator const&); - ServerPlayerEventCoordinator(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/events/UIEventCoordinator.h b/src/mc/world/events/UIEventCoordinator.h index b7b898ef87..0d9ed7d060 100644 --- a/src/mc/world/events/UIEventCoordinator.h +++ b/src/mc/world/events/UIEventCoordinator.h @@ -11,12 +11,6 @@ class UIEventListener; // clang-format on class UIEventCoordinator : public ::EventCoordinator<::UIEventListener> { -public: - // prevent constructor by default - UIEventCoordinator& operator=(UIEventCoordinator const&); - UIEventCoordinator(UIEventCoordinator const&); - UIEventCoordinator(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/events/UIEventListener.h b/src/mc/world/events/UIEventListener.h index bcbfce54f5..5d9fa06b36 100644 --- a/src/mc/world/events/UIEventListener.h +++ b/src/mc/world/events/UIEventListener.h @@ -11,12 +11,6 @@ class AbstractScene; // clang-format on class UIEventListener { -public: - // prevent constructor by default - UIEventListener& operator=(UIEventListener const&); - UIEventListener(UIEventListener const&); - UIEventListener(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/events/gameevents/GameEventDispatcher.h b/src/mc/world/events/gameevents/GameEventDispatcher.h index 194809fd7c..375793b8b9 100644 --- a/src/mc/world/events/gameevents/GameEventDispatcher.h +++ b/src/mc/world/events/gameevents/GameEventDispatcher.h @@ -13,12 +13,6 @@ class Vec3; // clang-format on class GameEventDispatcher { -public: - // prevent constructor by default - GameEventDispatcher& operator=(GameEventDispatcher const&); - GameEventDispatcher(GameEventDispatcher const&); - GameEventDispatcher(); - public: // member functions // NOLINTBEGIN diff --git a/src/mc/world/events/gameevents/GameEventListener.h b/src/mc/world/events/gameevents/GameEventListener.h index e672434849..155b89711b 100644 --- a/src/mc/world/events/gameevents/GameEventListener.h +++ b/src/mc/world/events/gameevents/GameEventListener.h @@ -18,12 +18,6 @@ class GameEventListener { ByDistance = 1, }; -public: - // prevent constructor by default - GameEventListener& operator=(GameEventListener const&); - GameEventListener(GameEventListener const&); - GameEventListener(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/events/gameevents/GameEventMapping.h b/src/mc/world/events/gameevents/GameEventMapping.h index 79940d08e7..1680110fbc 100644 --- a/src/mc/world/events/gameevents/GameEventMapping.h +++ b/src/mc/world/events/gameevents/GameEventMapping.h @@ -10,12 +10,6 @@ struct GameEventPair; // clang-format on class GameEventMapping { -public: - // prevent constructor by default - GameEventMapping& operator=(GameEventMapping const&); - GameEventMapping(GameEventMapping const&); - GameEventMapping(); - public: // static functions // NOLINTBEGIN diff --git a/src/mc/world/events/gameevents/VibrationListenerConfig.h b/src/mc/world/events/gameevents/VibrationListenerConfig.h index 7fdb307006..b0b991ddb3 100644 --- a/src/mc/world/events/gameevents/VibrationListenerConfig.h +++ b/src/mc/world/events/gameevents/VibrationListenerConfig.h @@ -12,12 +12,6 @@ struct GameEventContext; // clang-format on class VibrationListenerConfig { -public: - // prevent constructor by default - VibrationListenerConfig& operator=(VibrationListenerConfig const&); - VibrationListenerConfig(VibrationListenerConfig const&); - VibrationListenerConfig(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/filters/ActorHasAbilityTest.h b/src/mc/world/filters/ActorHasAbilityTest.h index 78794a5d9c..02cb49fa41 100644 --- a/src/mc/world/filters/ActorHasAbilityTest.h +++ b/src/mc/world/filters/ActorHasAbilityTest.h @@ -11,12 +11,6 @@ struct FilterContext; // clang-format on class ActorHasAbilityTest : public ::SimpleIntFilterTest { -public: - // prevent constructor by default - ActorHasAbilityTest& operator=(ActorHasAbilityTest const&); - ActorHasAbilityTest(ActorHasAbilityTest const&); - ActorHasAbilityTest(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/filters/ActorHasComponentTest.h b/src/mc/world/filters/ActorHasComponentTest.h index 189796d931..d845818ffc 100644 --- a/src/mc/world/filters/ActorHasComponentTest.h +++ b/src/mc/world/filters/ActorHasComponentTest.h @@ -11,12 +11,6 @@ struct FilterContext; // clang-format on class ActorHasComponentTest : public ::SimpleHashStringFilterTest { -public: - // prevent constructor by default - ActorHasComponentTest& operator=(ActorHasComponentTest const&); - ActorHasComponentTest(ActorHasComponentTest const&); - ActorHasComponentTest(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/filters/ActorHasContainerOpenTest.h b/src/mc/world/filters/ActorHasContainerOpenTest.h index 688e22a53f..97b9302489 100644 --- a/src/mc/world/filters/ActorHasContainerOpenTest.h +++ b/src/mc/world/filters/ActorHasContainerOpenTest.h @@ -11,12 +11,6 @@ struct FilterContext; // clang-format on class ActorHasContainerOpenTest : public ::SimpleBoolFilterTest { -public: - // prevent constructor by default - ActorHasContainerOpenTest& operator=(ActorHasContainerOpenTest const&); - ActorHasContainerOpenTest(ActorHasContainerOpenTest const&); - ActorHasContainerOpenTest(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/filters/ActorHasDamageTest.h b/src/mc/world/filters/ActorHasDamageTest.h index a80197fa74..8d1dd25b0b 100644 --- a/src/mc/world/filters/ActorHasDamageTest.h +++ b/src/mc/world/filters/ActorHasDamageTest.h @@ -11,12 +11,6 @@ struct FilterContext; // clang-format on class ActorHasDamageTest : public ::SimpleIntFilterTest { -public: - // prevent constructor by default - ActorHasDamageTest& operator=(ActorHasDamageTest const&); - ActorHasDamageTest(ActorHasDamageTest const&); - ActorHasDamageTest(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/filters/ActorHasDamagedEquipmentTest.h b/src/mc/world/filters/ActorHasDamagedEquipmentTest.h index 3eb5e1b48b..6381daaeaa 100644 --- a/src/mc/world/filters/ActorHasDamagedEquipmentTest.h +++ b/src/mc/world/filters/ActorHasDamagedEquipmentTest.h @@ -11,12 +11,6 @@ class ItemStack; // clang-format on class ActorHasDamagedEquipmentTest : public ::ActorHasEquipmentTest { -public: - // prevent constructor by default - ActorHasDamagedEquipmentTest& operator=(ActorHasDamagedEquipmentTest const&); - ActorHasDamagedEquipmentTest(ActorHasDamagedEquipmentTest const&); - ActorHasDamagedEquipmentTest(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/filters/ActorHasNameTagTest.h b/src/mc/world/filters/ActorHasNameTagTest.h index 20c04a23f5..27b4c5c1ce 100644 --- a/src/mc/world/filters/ActorHasNameTagTest.h +++ b/src/mc/world/filters/ActorHasNameTagTest.h @@ -11,12 +11,6 @@ struct FilterContext; // clang-format on class ActorHasNameTagTest : public ::SimpleBoolFilterTest { -public: - // prevent constructor by default - ActorHasNameTagTest& operator=(ActorHasNameTagTest const&); - ActorHasNameTagTest(ActorHasNameTagTest const&); - ActorHasNameTagTest(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/filters/ActorHasRangedWeaponTest.h b/src/mc/world/filters/ActorHasRangedWeaponTest.h index 342eb6e4d4..b7b730bdae 100644 --- a/src/mc/world/filters/ActorHasRangedWeaponTest.h +++ b/src/mc/world/filters/ActorHasRangedWeaponTest.h @@ -11,12 +11,6 @@ struct FilterContext; // clang-format on class ActorHasRangedWeaponTest : public ::SimpleBoolFilterTest { -public: - // prevent constructor by default - ActorHasRangedWeaponTest& operator=(ActorHasRangedWeaponTest const&); - ActorHasRangedWeaponTest(ActorHasRangedWeaponTest const&); - ActorHasRangedWeaponTest(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/filters/ActorHasSneakHeldTest.h b/src/mc/world/filters/ActorHasSneakHeldTest.h index f8673116a9..b4ac2acf63 100644 --- a/src/mc/world/filters/ActorHasSneakHeldTest.h +++ b/src/mc/world/filters/ActorHasSneakHeldTest.h @@ -11,12 +11,6 @@ struct FilterContext; // clang-format on class ActorHasSneakHeldTest : public ::SimpleBoolFilterTest { -public: - // prevent constructor by default - ActorHasSneakHeldTest& operator=(ActorHasSneakHeldTest const&); - ActorHasSneakHeldTest(ActorHasSneakHeldTest const&); - ActorHasSneakHeldTest(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/filters/ActorHasTagTest.h b/src/mc/world/filters/ActorHasTagTest.h index 90b7751991..6a66e6f31f 100644 --- a/src/mc/world/filters/ActorHasTagTest.h +++ b/src/mc/world/filters/ActorHasTagTest.h @@ -11,12 +11,6 @@ struct FilterContext; // clang-format on class ActorHasTagTest : public ::SimpleHashStringFilterTest { -public: - // prevent constructor by default - ActorHasTagTest& operator=(ActorHasTagTest const&); - ActorHasTagTest(ActorHasTagTest const&); - ActorHasTagTest(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/filters/ActorHasTargetTest.h b/src/mc/world/filters/ActorHasTargetTest.h index f9c9cc88e1..77d8b5f6a2 100644 --- a/src/mc/world/filters/ActorHasTargetTest.h +++ b/src/mc/world/filters/ActorHasTargetTest.h @@ -11,12 +11,6 @@ struct FilterContext; // clang-format on class ActorHasTargetTest : public ::SimpleBoolFilterTest { -public: - // prevent constructor by default - ActorHasTargetTest& operator=(ActorHasTargetTest const&); - ActorHasTargetTest(ActorHasTargetTest const&); - ActorHasTargetTest(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/filters/ActorHealthTest.h b/src/mc/world/filters/ActorHealthTest.h index c2c23b6e68..b9ba84dd40 100644 --- a/src/mc/world/filters/ActorHealthTest.h +++ b/src/mc/world/filters/ActorHealthTest.h @@ -11,12 +11,6 @@ struct FilterContext; // clang-format on class ActorHealthTest : public ::SimpleIntFilterTest { -public: - // prevent constructor by default - ActorHealthTest& operator=(ActorHealthTest const&); - ActorHealthTest(ActorHealthTest const&); - ActorHealthTest(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/filters/ActorInBlockTest.h b/src/mc/world/filters/ActorInBlockTest.h index 7e228881da..8a512693f9 100644 --- a/src/mc/world/filters/ActorInBlockTest.h +++ b/src/mc/world/filters/ActorInBlockTest.h @@ -11,12 +11,6 @@ struct FilterContext; // clang-format on class ActorInBlockTest : public ::SimpleHashStringFilterTest { -public: - // prevent constructor by default - ActorInBlockTest& operator=(ActorInBlockTest const&); - ActorInBlockTest(ActorInBlockTest const&); - ActorInBlockTest(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/filters/ActorInCaravanTest.h b/src/mc/world/filters/ActorInCaravanTest.h index 3d2adc36f4..4d7e6fb905 100644 --- a/src/mc/world/filters/ActorInCaravanTest.h +++ b/src/mc/world/filters/ActorInCaravanTest.h @@ -11,12 +11,6 @@ struct FilterContext; // clang-format on class ActorInCaravanTest : public ::SimpleBoolFilterTest { -public: - // prevent constructor by default - ActorInCaravanTest& operator=(ActorInCaravanTest const&); - ActorInCaravanTest(ActorInCaravanTest const&); - ActorInCaravanTest(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/filters/ActorInCloudsTest.h b/src/mc/world/filters/ActorInCloudsTest.h index 83f70632ba..15cffe68b3 100644 --- a/src/mc/world/filters/ActorInCloudsTest.h +++ b/src/mc/world/filters/ActorInCloudsTest.h @@ -11,12 +11,6 @@ struct FilterContext; // clang-format on class ActorInCloudsTest : public ::SimpleBoolFilterTest { -public: - // prevent constructor by default - ActorInCloudsTest& operator=(ActorInCloudsTest const&); - ActorInCloudsTest(ActorInCloudsTest const&); - ActorInCloudsTest(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/filters/ActorInContactWithWater.h b/src/mc/world/filters/ActorInContactWithWater.h index 0c641d6585..ea744948b6 100644 --- a/src/mc/world/filters/ActorInContactWithWater.h +++ b/src/mc/world/filters/ActorInContactWithWater.h @@ -11,12 +11,6 @@ struct FilterContext; // clang-format on class ActorInContactWithWater : public ::SimpleBoolFilterTest { -public: - // prevent constructor by default - ActorInContactWithWater& operator=(ActorInContactWithWater const&); - ActorInContactWithWater(ActorInContactWithWater const&); - ActorInContactWithWater(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/filters/ActorInLavaTest.h b/src/mc/world/filters/ActorInLavaTest.h index 72b38f7541..aecacee371 100644 --- a/src/mc/world/filters/ActorInLavaTest.h +++ b/src/mc/world/filters/ActorInLavaTest.h @@ -11,12 +11,6 @@ struct FilterContext; // clang-format on class ActorInLavaTest : public ::SimpleBoolFilterTest { -public: - // prevent constructor by default - ActorInLavaTest& operator=(ActorInLavaTest const&); - ActorInLavaTest(ActorInLavaTest const&); - ActorInLavaTest(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/filters/ActorInNetherTest.h b/src/mc/world/filters/ActorInNetherTest.h index bbfea576e4..f38043147d 100644 --- a/src/mc/world/filters/ActorInNetherTest.h +++ b/src/mc/world/filters/ActorInNetherTest.h @@ -11,12 +11,6 @@ struct FilterContext; // clang-format on class ActorInNetherTest : public ::SimpleBoolFilterTest { -public: - // prevent constructor by default - ActorInNetherTest& operator=(ActorInNetherTest const&); - ActorInNetherTest(ActorInNetherTest const&); - ActorInNetherTest(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/filters/ActorInOverworldTest.h b/src/mc/world/filters/ActorInOverworldTest.h index cc62049a8f..b4996bd200 100644 --- a/src/mc/world/filters/ActorInOverworldTest.h +++ b/src/mc/world/filters/ActorInOverworldTest.h @@ -11,12 +11,6 @@ struct FilterContext; // clang-format on class ActorInOverworldTest : public ::SimpleBoolFilterTest { -public: - // prevent constructor by default - ActorInOverworldTest& operator=(ActorInOverworldTest const&); - ActorInOverworldTest(ActorInOverworldTest const&); - ActorInOverworldTest(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/filters/ActorInVillageTest.h b/src/mc/world/filters/ActorInVillageTest.h index f472b904af..dda97b8fe0 100644 --- a/src/mc/world/filters/ActorInVillageTest.h +++ b/src/mc/world/filters/ActorInVillageTest.h @@ -11,12 +11,6 @@ struct FilterContext; // clang-format on class ActorInVillageTest : public ::SimpleBoolFilterTest { -public: - // prevent constructor by default - ActorInVillageTest& operator=(ActorInVillageTest const&); - ActorInVillageTest(ActorInVillageTest const&); - ActorInVillageTest(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/filters/ActorInWaterOrRainTest.h b/src/mc/world/filters/ActorInWaterOrRainTest.h index 25e1f18416..4e1e1eeabf 100644 --- a/src/mc/world/filters/ActorInWaterOrRainTest.h +++ b/src/mc/world/filters/ActorInWaterOrRainTest.h @@ -11,12 +11,6 @@ struct FilterContext; // clang-format on class ActorInWaterOrRainTest : public ::SimpleBoolFilterTest { -public: - // prevent constructor by default - ActorInWaterOrRainTest& operator=(ActorInWaterOrRainTest const&); - ActorInWaterOrRainTest(ActorInWaterOrRainTest const&); - ActorInWaterOrRainTest(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/filters/ActorInWaterTest.h b/src/mc/world/filters/ActorInWaterTest.h index 019ace7b43..4053f5dad8 100644 --- a/src/mc/world/filters/ActorInWaterTest.h +++ b/src/mc/world/filters/ActorInWaterTest.h @@ -11,12 +11,6 @@ struct FilterContext; // clang-format on class ActorInWaterTest : public ::SimpleBoolFilterTest { -public: - // prevent constructor by default - ActorInWaterTest& operator=(ActorInWaterTest const&); - ActorInWaterTest(ActorInWaterTest const&); - ActorInWaterTest(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/filters/ActorInactivityTimerTest.h b/src/mc/world/filters/ActorInactivityTimerTest.h index ddea6c2b45..51c332ee16 100644 --- a/src/mc/world/filters/ActorInactivityTimerTest.h +++ b/src/mc/world/filters/ActorInactivityTimerTest.h @@ -11,12 +11,6 @@ struct FilterContext; // clang-format on class ActorInactivityTimerTest : public ::SimpleIntFilterTest { -public: - // prevent constructor by default - ActorInactivityTimerTest& operator=(ActorInactivityTimerTest const&); - ActorInactivityTimerTest(ActorInactivityTimerTest const&); - ActorInactivityTimerTest(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/filters/ActorIsAvoidingMobsTest.h b/src/mc/world/filters/ActorIsAvoidingMobsTest.h index c9c36bcff5..75de7e6bce 100644 --- a/src/mc/world/filters/ActorIsAvoidingMobsTest.h +++ b/src/mc/world/filters/ActorIsAvoidingMobsTest.h @@ -11,12 +11,6 @@ struct FilterContext; // clang-format on class ActorIsAvoidingMobsTest : public ::SimpleBoolFilterTest { -public: - // prevent constructor by default - ActorIsAvoidingMobsTest& operator=(ActorIsAvoidingMobsTest const&); - ActorIsAvoidingMobsTest(ActorIsAvoidingMobsTest const&); - ActorIsAvoidingMobsTest(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/filters/ActorIsBabyTest.h b/src/mc/world/filters/ActorIsBabyTest.h index ba51c7572b..b6ea018e1c 100644 --- a/src/mc/world/filters/ActorIsBabyTest.h +++ b/src/mc/world/filters/ActorIsBabyTest.h @@ -11,12 +11,6 @@ struct FilterContext; // clang-format on class ActorIsBabyTest : public ::SimpleBoolFilterTest { -public: - // prevent constructor by default - ActorIsBabyTest& operator=(ActorIsBabyTest const&); - ActorIsBabyTest(ActorIsBabyTest const&); - ActorIsBabyTest(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/filters/ActorIsClimbingTest.h b/src/mc/world/filters/ActorIsClimbingTest.h index 8a61cf4afc..8087720371 100644 --- a/src/mc/world/filters/ActorIsClimbingTest.h +++ b/src/mc/world/filters/ActorIsClimbingTest.h @@ -11,12 +11,6 @@ struct FilterContext; // clang-format on class ActorIsClimbingTest : public ::SimpleBoolFilterTest { -public: - // prevent constructor by default - ActorIsClimbingTest& operator=(ActorIsClimbingTest const&); - ActorIsClimbingTest(ActorIsClimbingTest const&); - ActorIsClimbingTest(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/filters/ActorIsColorTest.h b/src/mc/world/filters/ActorIsColorTest.h index f9d144f4fe..1c00fa1372 100644 --- a/src/mc/world/filters/ActorIsColorTest.h +++ b/src/mc/world/filters/ActorIsColorTest.h @@ -11,12 +11,6 @@ struct FilterContext; // clang-format on class ActorIsColorTest : public ::SimpleIntFilterTest { -public: - // prevent constructor by default - ActorIsColorTest& operator=(ActorIsColorTest const&); - ActorIsColorTest(ActorIsColorTest const&); - ActorIsColorTest(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/filters/ActorIsFamilyTest.h b/src/mc/world/filters/ActorIsFamilyTest.h index 021a932ca5..6ea34d2ed0 100644 --- a/src/mc/world/filters/ActorIsFamilyTest.h +++ b/src/mc/world/filters/ActorIsFamilyTest.h @@ -11,12 +11,6 @@ struct FilterContext; // clang-format on class ActorIsFamilyTest : public ::SimpleHashStringFilterTest { -public: - // prevent constructor by default - ActorIsFamilyTest& operator=(ActorIsFamilyTest const&); - ActorIsFamilyTest(ActorIsFamilyTest const&); - ActorIsFamilyTest(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/filters/ActorIsImmobileTest.h b/src/mc/world/filters/ActorIsImmobileTest.h index 575ee674c1..7120f29723 100644 --- a/src/mc/world/filters/ActorIsImmobileTest.h +++ b/src/mc/world/filters/ActorIsImmobileTest.h @@ -11,12 +11,6 @@ struct FilterContext; // clang-format on class ActorIsImmobileTest : public ::SimpleBoolFilterTest { -public: - // prevent constructor by default - ActorIsImmobileTest& operator=(ActorIsImmobileTest const&); - ActorIsImmobileTest(ActorIsImmobileTest const&); - ActorIsImmobileTest(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/filters/ActorIsLeashedTest.h b/src/mc/world/filters/ActorIsLeashedTest.h index db4b8b73f1..63f4495788 100644 --- a/src/mc/world/filters/ActorIsLeashedTest.h +++ b/src/mc/world/filters/ActorIsLeashedTest.h @@ -11,12 +11,6 @@ struct FilterContext; // clang-format on class ActorIsLeashedTest : public ::SimpleBoolFilterTest { -public: - // prevent constructor by default - ActorIsLeashedTest& operator=(ActorIsLeashedTest const&); - ActorIsLeashedTest(ActorIsLeashedTest const&); - ActorIsLeashedTest(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/filters/ActorIsLeashedToTest.h b/src/mc/world/filters/ActorIsLeashedToTest.h index b61cbd1001..d49f171189 100644 --- a/src/mc/world/filters/ActorIsLeashedToTest.h +++ b/src/mc/world/filters/ActorIsLeashedToTest.h @@ -11,12 +11,6 @@ struct FilterContext; // clang-format on class ActorIsLeashedToTest : public ::SimpleBoolFilterTest { -public: - // prevent constructor by default - ActorIsLeashedToTest& operator=(ActorIsLeashedToTest const&); - ActorIsLeashedToTest(ActorIsLeashedToTest const&); - ActorIsLeashedToTest(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/filters/ActorIsMarkVariantTest.h b/src/mc/world/filters/ActorIsMarkVariantTest.h index 24aceeb29d..065b5567ee 100644 --- a/src/mc/world/filters/ActorIsMarkVariantTest.h +++ b/src/mc/world/filters/ActorIsMarkVariantTest.h @@ -11,12 +11,6 @@ struct FilterContext; // clang-format on class ActorIsMarkVariantTest : public ::SimpleIntFilterTest { -public: - // prevent constructor by default - ActorIsMarkVariantTest& operator=(ActorIsMarkVariantTest const&); - ActorIsMarkVariantTest(ActorIsMarkVariantTest const&); - ActorIsMarkVariantTest(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/filters/ActorIsMovingTest.h b/src/mc/world/filters/ActorIsMovingTest.h index 1db18da3f6..d65c623a82 100644 --- a/src/mc/world/filters/ActorIsMovingTest.h +++ b/src/mc/world/filters/ActorIsMovingTest.h @@ -11,12 +11,6 @@ struct FilterContext; // clang-format on class ActorIsMovingTest : public ::SimpleBoolFilterTest { -public: - // prevent constructor by default - ActorIsMovingTest& operator=(ActorIsMovingTest const&); - ActorIsMovingTest(ActorIsMovingTest const&); - ActorIsMovingTest(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/filters/ActorIsNavigatingTest.h b/src/mc/world/filters/ActorIsNavigatingTest.h index e66267ede8..73422629f4 100644 --- a/src/mc/world/filters/ActorIsNavigatingTest.h +++ b/src/mc/world/filters/ActorIsNavigatingTest.h @@ -11,12 +11,6 @@ struct FilterContext; // clang-format on class ActorIsNavigatingTest : public ::SimpleBoolFilterTest { -public: - // prevent constructor by default - ActorIsNavigatingTest& operator=(ActorIsNavigatingTest const&); - ActorIsNavigatingTest(ActorIsNavigatingTest const&); - ActorIsNavigatingTest(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/filters/ActorIsOwnerTest.h b/src/mc/world/filters/ActorIsOwnerTest.h index f1ca1c1a31..13037c8083 100644 --- a/src/mc/world/filters/ActorIsOwnerTest.h +++ b/src/mc/world/filters/ActorIsOwnerTest.h @@ -11,12 +11,6 @@ struct FilterContext; // clang-format on class ActorIsOwnerTest : public ::SimpleBoolFilterTest { -public: - // prevent constructor by default - ActorIsOwnerTest& operator=(ActorIsOwnerTest const&); - ActorIsOwnerTest(ActorIsOwnerTest const&); - ActorIsOwnerTest(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/filters/ActorIsPanickingTest.h b/src/mc/world/filters/ActorIsPanickingTest.h index 9ecbca4665..9c0f97cfc6 100644 --- a/src/mc/world/filters/ActorIsPanickingTest.h +++ b/src/mc/world/filters/ActorIsPanickingTest.h @@ -11,12 +11,6 @@ struct FilterContext; // clang-format on class ActorIsPanickingTest : public ::SimpleBoolFilterTest { -public: - // prevent constructor by default - ActorIsPanickingTest& operator=(ActorIsPanickingTest const&); - ActorIsPanickingTest(ActorIsPanickingTest const&); - ActorIsPanickingTest(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/filters/ActorIsPersistentTest.h b/src/mc/world/filters/ActorIsPersistentTest.h index 13ffe7e7db..317c4c1870 100644 --- a/src/mc/world/filters/ActorIsPersistentTest.h +++ b/src/mc/world/filters/ActorIsPersistentTest.h @@ -11,12 +11,6 @@ struct FilterContext; // clang-format on class ActorIsPersistentTest : public ::SimpleBoolFilterTest { -public: - // prevent constructor by default - ActorIsPersistentTest& operator=(ActorIsPersistentTest const&); - ActorIsPersistentTest(ActorIsPersistentTest const&); - ActorIsPersistentTest(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/filters/ActorIsRaiderTest.h b/src/mc/world/filters/ActorIsRaiderTest.h index b13b18e564..24da28c5d8 100644 --- a/src/mc/world/filters/ActorIsRaiderTest.h +++ b/src/mc/world/filters/ActorIsRaiderTest.h @@ -11,12 +11,6 @@ struct FilterContext; // clang-format on class ActorIsRaiderTest : public ::SimpleBoolFilterTest { -public: - // prevent constructor by default - ActorIsRaiderTest& operator=(ActorIsRaiderTest const&); - ActorIsRaiderTest(ActorIsRaiderTest const&); - ActorIsRaiderTest(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/filters/ActorIsRidingTest.h b/src/mc/world/filters/ActorIsRidingTest.h index 627b07843c..f398313ec8 100644 --- a/src/mc/world/filters/ActorIsRidingTest.h +++ b/src/mc/world/filters/ActorIsRidingTest.h @@ -11,12 +11,6 @@ struct FilterContext; // clang-format on class ActorIsRidingTest : public ::SimpleBoolFilterTest { -public: - // prevent constructor by default - ActorIsRidingTest& operator=(ActorIsRidingTest const&); - ActorIsRidingTest(ActorIsRidingTest const&); - ActorIsRidingTest(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/filters/ActorIsSittingTest.h b/src/mc/world/filters/ActorIsSittingTest.h index 779d356f53..818c00d685 100644 --- a/src/mc/world/filters/ActorIsSittingTest.h +++ b/src/mc/world/filters/ActorIsSittingTest.h @@ -11,12 +11,6 @@ struct FilterContext; // clang-format on class ActorIsSittingTest : public ::SimpleBoolFilterTest { -public: - // prevent constructor by default - ActorIsSittingTest& operator=(ActorIsSittingTest const&); - ActorIsSittingTest(ActorIsSittingTest const&); - ActorIsSittingTest(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/filters/ActorIsSkinIDTest.h b/src/mc/world/filters/ActorIsSkinIDTest.h index bb9c153989..403a359c84 100644 --- a/src/mc/world/filters/ActorIsSkinIDTest.h +++ b/src/mc/world/filters/ActorIsSkinIDTest.h @@ -11,12 +11,6 @@ struct FilterContext; // clang-format on class ActorIsSkinIDTest : public ::SimpleIntFilterTest { -public: - // prevent constructor by default - ActorIsSkinIDTest& operator=(ActorIsSkinIDTest const&); - ActorIsSkinIDTest(ActorIsSkinIDTest const&); - ActorIsSkinIDTest(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/filters/ActorIsSleepingTest.h b/src/mc/world/filters/ActorIsSleepingTest.h index 8deeca834f..ebfb66e480 100644 --- a/src/mc/world/filters/ActorIsSleepingTest.h +++ b/src/mc/world/filters/ActorIsSleepingTest.h @@ -11,12 +11,6 @@ struct FilterContext; // clang-format on class ActorIsSleepingTest : public ::SimpleBoolFilterTest { -public: - // prevent constructor by default - ActorIsSleepingTest& operator=(ActorIsSleepingTest const&); - ActorIsSleepingTest(ActorIsSleepingTest const&); - ActorIsSleepingTest(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/filters/ActorIsSneakingTest.h b/src/mc/world/filters/ActorIsSneakingTest.h index a9f3cf3505..694cab5b3c 100644 --- a/src/mc/world/filters/ActorIsSneakingTest.h +++ b/src/mc/world/filters/ActorIsSneakingTest.h @@ -11,12 +11,6 @@ struct FilterContext; // clang-format on class ActorIsSneakingTest : public ::SimpleBoolFilterTest { -public: - // prevent constructor by default - ActorIsSneakingTest& operator=(ActorIsSneakingTest const&); - ActorIsSneakingTest(ActorIsSneakingTest const&); - ActorIsSneakingTest(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/filters/ActorIsSprintingTest.h b/src/mc/world/filters/ActorIsSprintingTest.h index ed63e9510a..e54771a2b5 100644 --- a/src/mc/world/filters/ActorIsSprintingTest.h +++ b/src/mc/world/filters/ActorIsSprintingTest.h @@ -11,12 +11,6 @@ struct FilterContext; // clang-format on class ActorIsSprintingTest : public ::SimpleBoolFilterTest { -public: - // prevent constructor by default - ActorIsSprintingTest& operator=(ActorIsSprintingTest const&); - ActorIsSprintingTest(ActorIsSprintingTest const&); - ActorIsSprintingTest(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/filters/ActorIsTargetTest.h b/src/mc/world/filters/ActorIsTargetTest.h index 120b5634a4..b4a428cb18 100644 --- a/src/mc/world/filters/ActorIsTargetTest.h +++ b/src/mc/world/filters/ActorIsTargetTest.h @@ -11,12 +11,6 @@ struct FilterContext; // clang-format on class ActorIsTargetTest : public ::SimpleBoolFilterTest { -public: - // prevent constructor by default - ActorIsTargetTest& operator=(ActorIsTargetTest const&); - ActorIsTargetTest(ActorIsTargetTest const&); - ActorIsTargetTest(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/filters/ActorIsVariantTest.h b/src/mc/world/filters/ActorIsVariantTest.h index bfa06d4f28..6b3eeb99d9 100644 --- a/src/mc/world/filters/ActorIsVariantTest.h +++ b/src/mc/world/filters/ActorIsVariantTest.h @@ -11,12 +11,6 @@ struct FilterContext; // clang-format on class ActorIsVariantTest : public ::SimpleIntFilterTest { -public: - // prevent constructor by default - ActorIsVariantTest& operator=(ActorIsVariantTest const&); - ActorIsVariantTest(ActorIsVariantTest const&); - ActorIsVariantTest(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/filters/ActorIsVisibleTest.h b/src/mc/world/filters/ActorIsVisibleTest.h index 94de64f1b4..dda1419a52 100644 --- a/src/mc/world/filters/ActorIsVisibleTest.h +++ b/src/mc/world/filters/ActorIsVisibleTest.h @@ -11,12 +11,6 @@ struct FilterContext; // clang-format on class ActorIsVisibleTest : public ::SimpleBoolFilterTest { -public: - // prevent constructor by default - ActorIsVisibleTest& operator=(ActorIsVisibleTest const&); - ActorIsVisibleTest(ActorIsVisibleTest const&); - ActorIsVisibleTest(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/filters/ActorMissingHealthTest.h b/src/mc/world/filters/ActorMissingHealthTest.h index 760030939b..5b4ad159d2 100644 --- a/src/mc/world/filters/ActorMissingHealthTest.h +++ b/src/mc/world/filters/ActorMissingHealthTest.h @@ -11,12 +11,6 @@ struct FilterContext; // clang-format on class ActorMissingHealthTest : public ::SimpleBoolFilterTest { -public: - // prevent constructor by default - ActorMissingHealthTest& operator=(ActorMissingHealthTest const&); - ActorMissingHealthTest(ActorMissingHealthTest const&); - ActorMissingHealthTest(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/filters/ActorOnGroundTest.h b/src/mc/world/filters/ActorOnGroundTest.h index 381c2655fd..037ff7f934 100644 --- a/src/mc/world/filters/ActorOnGroundTest.h +++ b/src/mc/world/filters/ActorOnGroundTest.h @@ -11,12 +11,6 @@ struct FilterContext; // clang-format on class ActorOnGroundTest : public ::SimpleBoolFilterTest { -public: - // prevent constructor by default - ActorOnGroundTest& operator=(ActorOnGroundTest const&); - ActorOnGroundTest(ActorOnGroundTest const&); - ActorOnGroundTest(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/filters/ActorOnLadderTest.h b/src/mc/world/filters/ActorOnLadderTest.h index cdb80e0703..6c2861c414 100644 --- a/src/mc/world/filters/ActorOnLadderTest.h +++ b/src/mc/world/filters/ActorOnLadderTest.h @@ -11,12 +11,6 @@ struct FilterContext; // clang-format on class ActorOnLadderTest : public ::SimpleBoolFilterTest { -public: - // prevent constructor by default - ActorOnLadderTest& operator=(ActorOnLadderTest const&); - ActorOnLadderTest(ActorOnLadderTest const&); - ActorOnLadderTest(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/filters/ActorPassengerCountTest.h b/src/mc/world/filters/ActorPassengerCountTest.h index 8788f7eae3..c9abd5fb48 100644 --- a/src/mc/world/filters/ActorPassengerCountTest.h +++ b/src/mc/world/filters/ActorPassengerCountTest.h @@ -11,12 +11,6 @@ struct FilterContext; // clang-format on class ActorPassengerCountTest : public ::SimpleIntFilterTest { -public: - // prevent constructor by default - ActorPassengerCountTest& operator=(ActorPassengerCountTest const&); - ActorPassengerCountTest(ActorPassengerCountTest const&); - ActorPassengerCountTest(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/filters/ActorRandomChanceTest.h b/src/mc/world/filters/ActorRandomChanceTest.h index c81967cfd0..c0b4c9299c 100644 --- a/src/mc/world/filters/ActorRandomChanceTest.h +++ b/src/mc/world/filters/ActorRandomChanceTest.h @@ -11,12 +11,6 @@ struct FilterContext; // clang-format on class ActorRandomChanceTest : public ::SimpleIntFilterTest { -public: - // prevent constructor by default - ActorRandomChanceTest& operator=(ActorRandomChanceTest const&); - ActorRandomChanceTest(ActorRandomChanceTest const&); - ActorRandomChanceTest(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/filters/ActorSurfaceMobTest.h b/src/mc/world/filters/ActorSurfaceMobTest.h index 5a1d883231..959df940c3 100644 --- a/src/mc/world/filters/ActorSurfaceMobTest.h +++ b/src/mc/world/filters/ActorSurfaceMobTest.h @@ -11,12 +11,6 @@ struct FilterContext; // clang-format on class ActorSurfaceMobTest : public ::SimpleBoolFilterTest { -public: - // prevent constructor by default - ActorSurfaceMobTest& operator=(ActorSurfaceMobTest const&); - ActorSurfaceMobTest(ActorSurfaceMobTest const&); - ActorSurfaceMobTest(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/filters/ActorTrustsSubjectTest.h b/src/mc/world/filters/ActorTrustsSubjectTest.h index 2ba3ecc35c..e534cde05f 100644 --- a/src/mc/world/filters/ActorTrustsSubjectTest.h +++ b/src/mc/world/filters/ActorTrustsSubjectTest.h @@ -11,12 +11,6 @@ struct FilterContext; // clang-format on class ActorTrustsSubjectTest : public ::SimpleBoolFilterTest { -public: - // prevent constructor by default - ActorTrustsSubjectTest& operator=(ActorTrustsSubjectTest const&); - ActorTrustsSubjectTest(ActorTrustsSubjectTest const&); - ActorTrustsSubjectTest(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/filters/ActorUndergroundTest.h b/src/mc/world/filters/ActorUndergroundTest.h index 03eb36cb44..6af65da679 100644 --- a/src/mc/world/filters/ActorUndergroundTest.h +++ b/src/mc/world/filters/ActorUndergroundTest.h @@ -11,12 +11,6 @@ struct FilterContext; // clang-format on class ActorUndergroundTest : public ::SimpleBoolFilterTest { -public: - // prevent constructor by default - ActorUndergroundTest& operator=(ActorUndergroundTest const&); - ActorUndergroundTest(ActorUndergroundTest const&); - ActorUndergroundTest(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/filters/ActorUnderwaterTest.h b/src/mc/world/filters/ActorUnderwaterTest.h index a66d5fa79f..6a6413ed5d 100644 --- a/src/mc/world/filters/ActorUnderwaterTest.h +++ b/src/mc/world/filters/ActorUnderwaterTest.h @@ -11,12 +11,6 @@ struct FilterContext; // clang-format on class ActorUnderwaterTest : public ::SimpleBoolFilterTest { -public: - // prevent constructor by default - ActorUnderwaterTest& operator=(ActorUnderwaterTest const&); - ActorUnderwaterTest(ActorUnderwaterTest const&); - ActorUnderwaterTest(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/filters/ActorWasLastHurtByTest.h b/src/mc/world/filters/ActorWasLastHurtByTest.h index 8ac8a14ca3..1f407f8bb4 100644 --- a/src/mc/world/filters/ActorWasLastHurtByTest.h +++ b/src/mc/world/filters/ActorWasLastHurtByTest.h @@ -11,12 +11,6 @@ struct FilterContext; // clang-format on class ActorWasLastHurtByTest : public ::SimpleBoolFilterTest { -public: - // prevent constructor by default - ActorWasLastHurtByTest& operator=(ActorWasLastHurtByTest const&); - ActorWasLastHurtByTest(ActorWasLastHurtByTest const&); - ActorWasLastHurtByTest(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/filters/BlockIsNameTest.h b/src/mc/world/filters/BlockIsNameTest.h index 4b64c6695e..e877ea125d 100644 --- a/src/mc/world/filters/BlockIsNameTest.h +++ b/src/mc/world/filters/BlockIsNameTest.h @@ -11,12 +11,6 @@ struct FilterContext; // clang-format on class BlockIsNameTest : public ::SimpleHashStringFilterTest { -public: - // prevent constructor by default - BlockIsNameTest& operator=(BlockIsNameTest const&); - BlockIsNameTest(BlockIsNameTest const&); - BlockIsNameTest(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/filters/FilterStringMap.h b/src/mc/world/filters/FilterStringMap.h index f2d46f2344..55ead860e1 100644 --- a/src/mc/world/filters/FilterStringMap.h +++ b/src/mc/world/filters/FilterStringMap.h @@ -8,12 +8,6 @@ struct FilterInputDefinition; // clang-format on struct FilterStringMap : public ::std::unordered_map<::std::string, ::FilterInputDefinition> { -public: - // prevent constructor by default - FilterStringMap& operator=(FilterStringMap const&); - FilterStringMap(FilterStringMap const&); - FilterStringMap(); - public: // member functions // NOLINTBEGIN diff --git a/src/mc/world/filters/FilterTestAltitude.h b/src/mc/world/filters/FilterTestAltitude.h index a33f8b8dff..2ce0252dfc 100644 --- a/src/mc/world/filters/FilterTestAltitude.h +++ b/src/mc/world/filters/FilterTestAltitude.h @@ -11,12 +11,6 @@ struct FilterContext; // clang-format on class FilterTestAltitude : public ::SimpleIntFilterTest { -public: - // prevent constructor by default - FilterTestAltitude& operator=(FilterTestAltitude const&); - FilterTestAltitude(FilterTestAltitude const&); - FilterTestAltitude(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/filters/FilterTestBiome.h b/src/mc/world/filters/FilterTestBiome.h index 54119ce66d..fb4b44b849 100644 --- a/src/mc/world/filters/FilterTestBiome.h +++ b/src/mc/world/filters/FilterTestBiome.h @@ -11,12 +11,6 @@ struct FilterContext; // clang-format on class FilterTestBiome : public ::SimpleIntFilterTest { -public: - // prevent constructor by default - FilterTestBiome& operator=(FilterTestBiome const&); - FilterTestBiome(FilterTestBiome const&); - FilterTestBiome(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/filters/FilterTestBiomeHasTag.h b/src/mc/world/filters/FilterTestBiomeHasTag.h index d76682f0e4..db76ca8001 100644 --- a/src/mc/world/filters/FilterTestBiomeHasTag.h +++ b/src/mc/world/filters/FilterTestBiomeHasTag.h @@ -12,12 +12,6 @@ struct FilterContext; // clang-format on class FilterTestBiomeHasTag : public ::SimpleTagIDFilterTest { -public: - // prevent constructor by default - FilterTestBiomeHasTag& operator=(FilterTestBiomeHasTag const&); - FilterTestBiomeHasTag(FilterTestBiomeHasTag const&); - FilterTestBiomeHasTag(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/filters/FilterTestBiomeHumid.h b/src/mc/world/filters/FilterTestBiomeHumid.h index 260d3e1d2b..94df0fce67 100644 --- a/src/mc/world/filters/FilterTestBiomeHumid.h +++ b/src/mc/world/filters/FilterTestBiomeHumid.h @@ -11,12 +11,6 @@ struct FilterContext; // clang-format on class FilterTestBiomeHumid : public ::SimpleBoolFilterTest { -public: - // prevent constructor by default - FilterTestBiomeHumid& operator=(FilterTestBiomeHumid const&); - FilterTestBiomeHumid(FilterTestBiomeHumid const&); - FilterTestBiomeHumid(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/filters/FilterTestBiomeSnowCovered.h b/src/mc/world/filters/FilterTestBiomeSnowCovered.h index 60fe2f0f3e..36edd5b839 100644 --- a/src/mc/world/filters/FilterTestBiomeSnowCovered.h +++ b/src/mc/world/filters/FilterTestBiomeSnowCovered.h @@ -11,12 +11,6 @@ struct FilterContext; // clang-format on class FilterTestBiomeSnowCovered : public ::SimpleBoolFilterTest { -public: - // prevent constructor by default - FilterTestBiomeSnowCovered& operator=(FilterTestBiomeSnowCovered const&); - FilterTestBiomeSnowCovered(FilterTestBiomeSnowCovered const&); - FilterTestBiomeSnowCovered(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/filters/FilterTestBrightness.h b/src/mc/world/filters/FilterTestBrightness.h index d54b96dcfa..d806c45c58 100644 --- a/src/mc/world/filters/FilterTestBrightness.h +++ b/src/mc/world/filters/FilterTestBrightness.h @@ -11,12 +11,6 @@ struct FilterContext; // clang-format on class FilterTestBrightness : public ::SimpleFloatFilterTest { -public: - // prevent constructor by default - FilterTestBrightness& operator=(FilterTestBrightness const&); - FilterTestBrightness(FilterTestBrightness const&); - FilterTestBrightness(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/filters/FilterTestClock.h b/src/mc/world/filters/FilterTestClock.h index b1b9a78137..44ea947b71 100644 --- a/src/mc/world/filters/FilterTestClock.h +++ b/src/mc/world/filters/FilterTestClock.h @@ -11,12 +11,6 @@ struct FilterContext; // clang-format on class FilterTestClock : public ::SimpleFloatFilterTest { -public: - // prevent constructor by default - FilterTestClock& operator=(FilterTestClock const&); - FilterTestClock(FilterTestClock const&); - FilterTestClock(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/filters/FilterTestDaytime.h b/src/mc/world/filters/FilterTestDaytime.h index ff718bd64e..d1a9c52c59 100644 --- a/src/mc/world/filters/FilterTestDaytime.h +++ b/src/mc/world/filters/FilterTestDaytime.h @@ -11,12 +11,6 @@ struct FilterContext; // clang-format on class FilterTestDaytime : public ::SimpleBoolFilterTest { -public: - // prevent constructor by default - FilterTestDaytime& operator=(FilterTestDaytime const&); - FilterTestDaytime(FilterTestDaytime const&); - FilterTestDaytime(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/filters/FilterTestDifficulty.h b/src/mc/world/filters/FilterTestDifficulty.h index caa31ce925..91273c00a0 100644 --- a/src/mc/world/filters/FilterTestDifficulty.h +++ b/src/mc/world/filters/FilterTestDifficulty.h @@ -11,12 +11,6 @@ struct FilterContext; // clang-format on class FilterTestDifficulty : public ::SimpleIntFilterTest { -public: - // prevent constructor by default - FilterTestDifficulty& operator=(FilterTestDifficulty const&); - FilterTestDifficulty(FilterTestDifficulty const&); - FilterTestDifficulty(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/filters/FilterTestDistanceToNearestPlayer.h b/src/mc/world/filters/FilterTestDistanceToNearestPlayer.h index 75fa7c9afe..9cc239e1b3 100644 --- a/src/mc/world/filters/FilterTestDistanceToNearestPlayer.h +++ b/src/mc/world/filters/FilterTestDistanceToNearestPlayer.h @@ -11,12 +11,6 @@ struct FilterContext; // clang-format on class FilterTestDistanceToNearestPlayer : public ::SimpleFloatFilterTest { -public: - // prevent constructor by default - FilterTestDistanceToNearestPlayer& operator=(FilterTestDistanceToNearestPlayer const&); - FilterTestDistanceToNearestPlayer(FilterTestDistanceToNearestPlayer const&); - FilterTestDistanceToNearestPlayer(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/filters/FilterTestHasTradeSupply.h b/src/mc/world/filters/FilterTestHasTradeSupply.h index abc931ba2f..c2d58b2e8f 100644 --- a/src/mc/world/filters/FilterTestHasTradeSupply.h +++ b/src/mc/world/filters/FilterTestHasTradeSupply.h @@ -11,12 +11,6 @@ struct FilterContext; // clang-format on class FilterTestHasTradeSupply : public ::SimpleBoolFilterTest { -public: - // prevent constructor by default - FilterTestHasTradeSupply& operator=(FilterTestHasTradeSupply const&); - FilterTestHasTradeSupply(FilterTestHasTradeSupply const&); - FilterTestHasTradeSupply(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/filters/FilterTestLightLevel.h b/src/mc/world/filters/FilterTestLightLevel.h index 41dae1f864..549a5db5e4 100644 --- a/src/mc/world/filters/FilterTestLightLevel.h +++ b/src/mc/world/filters/FilterTestLightLevel.h @@ -11,12 +11,6 @@ struct FilterContext; // clang-format on class FilterTestLightLevel : public ::SimpleIntFilterTest { -public: - // prevent constructor by default - FilterTestLightLevel& operator=(FilterTestLightLevel const&); - FilterTestLightLevel(FilterTestLightLevel const&); - FilterTestLightLevel(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/filters/FilterTestMoonIntensity.h b/src/mc/world/filters/FilterTestMoonIntensity.h index 61b660550b..604a420dbc 100644 --- a/src/mc/world/filters/FilterTestMoonIntensity.h +++ b/src/mc/world/filters/FilterTestMoonIntensity.h @@ -11,12 +11,6 @@ struct FilterContext; // clang-format on class FilterTestMoonIntensity : public ::SimpleFloatFilterTest { -public: - // prevent constructor by default - FilterTestMoonIntensity& operator=(FilterTestMoonIntensity const&); - FilterTestMoonIntensity(FilterTestMoonIntensity const&); - FilterTestMoonIntensity(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/filters/FilterTestMoonPhase.h b/src/mc/world/filters/FilterTestMoonPhase.h index 5fbb14aac4..9917d8a721 100644 --- a/src/mc/world/filters/FilterTestMoonPhase.h +++ b/src/mc/world/filters/FilterTestMoonPhase.h @@ -11,12 +11,6 @@ struct FilterContext; // clang-format on class FilterTestMoonPhase : public ::SimpleFloatFilterTest { -public: - // prevent constructor by default - FilterTestMoonPhase& operator=(FilterTestMoonPhase const&); - FilterTestMoonPhase(FilterTestMoonPhase const&); - FilterTestMoonPhase(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/filters/FilterTestTemperatureType.h b/src/mc/world/filters/FilterTestTemperatureType.h index 1e566c9022..d14489f1c8 100644 --- a/src/mc/world/filters/FilterTestTemperatureType.h +++ b/src/mc/world/filters/FilterTestTemperatureType.h @@ -11,12 +11,6 @@ struct FilterContext; // clang-format on class FilterTestTemperatureType : public ::SimpleIntFilterTest { -public: - // prevent constructor by default - FilterTestTemperatureType& operator=(FilterTestTemperatureType const&); - FilterTestTemperatureType(FilterTestTemperatureType const&); - FilterTestTemperatureType(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/filters/FilterTestTemperatureValue.h b/src/mc/world/filters/FilterTestTemperatureValue.h index 63fc023dc5..2e54eda5b4 100644 --- a/src/mc/world/filters/FilterTestTemperatureValue.h +++ b/src/mc/world/filters/FilterTestTemperatureValue.h @@ -11,12 +11,6 @@ struct FilterContext; // clang-format on class FilterTestTemperatureValue : public ::SimpleFloatFilterTest { -public: - // prevent constructor by default - FilterTestTemperatureValue& operator=(FilterTestTemperatureValue const&); - FilterTestTemperatureValue(FilterTestTemperatureValue const&); - FilterTestTemperatureValue(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/filters/IsHoldingSilkTouchTest.h b/src/mc/world/filters/IsHoldingSilkTouchTest.h index 3701854ac6..17b2e2086e 100644 --- a/src/mc/world/filters/IsHoldingSilkTouchTest.h +++ b/src/mc/world/filters/IsHoldingSilkTouchTest.h @@ -11,12 +11,6 @@ struct FilterContext; // clang-format on class IsHoldingSilkTouchTest : public ::SimpleBoolFilterTest { -public: - // prevent constructor by default - IsHoldingSilkTouchTest& operator=(IsHoldingSilkTouchTest const&); - IsHoldingSilkTouchTest(IsHoldingSilkTouchTest const&); - IsHoldingSilkTouchTest(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/filters/IsOnFireTest.h b/src/mc/world/filters/IsOnFireTest.h index c392420ca6..0d0f4eb2d3 100644 --- a/src/mc/world/filters/IsOnFireTest.h +++ b/src/mc/world/filters/IsOnFireTest.h @@ -11,12 +11,6 @@ struct FilterContext; // clang-format on class IsOnFireTest : public ::SimpleBoolFilterTest { -public: - // prevent constructor by default - IsOnFireTest& operator=(IsOnFireTest const&); - IsOnFireTest(IsOnFireTest const&); - IsOnFireTest(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/filters/IsOnHotBlockTest.h b/src/mc/world/filters/IsOnHotBlockTest.h index ab86c284bb..15edc7f7f3 100644 --- a/src/mc/world/filters/IsOnHotBlockTest.h +++ b/src/mc/world/filters/IsOnHotBlockTest.h @@ -11,12 +11,6 @@ struct FilterContext; // clang-format on class IsOnHotBlockTest : public ::SimpleBoolFilterTest { -public: - // prevent constructor by default - IsOnHotBlockTest& operator=(IsOnHotBlockTest const&); - IsOnHotBlockTest(IsOnHotBlockTest const&); - IsOnHotBlockTest(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/filters/IsTakingFireDamageTest.h b/src/mc/world/filters/IsTakingFireDamageTest.h index 5ee4e6c5cf..085fb385ef 100644 --- a/src/mc/world/filters/IsTakingFireDamageTest.h +++ b/src/mc/world/filters/IsTakingFireDamageTest.h @@ -11,12 +11,6 @@ struct FilterContext; // clang-format on class IsTakingFireDamageTest : public ::SimpleBoolFilterTest { -public: - // prevent constructor by default - IsTakingFireDamageTest& operator=(IsTakingFireDamageTest const&); - IsTakingFireDamageTest(IsTakingFireDamageTest const&); - IsTakingFireDamageTest(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/filters/IsWaterLoggedTest.h b/src/mc/world/filters/IsWaterLoggedTest.h index 2c24df3753..560aa2ed34 100644 --- a/src/mc/world/filters/IsWaterLoggedTest.h +++ b/src/mc/world/filters/IsWaterLoggedTest.h @@ -11,12 +11,6 @@ struct FilterContext; // clang-format on class IsWaterLoggedTest : public ::SimpleBoolFilterTest { -public: - // prevent constructor by default - IsWaterLoggedTest& operator=(IsWaterLoggedTest const&); - IsWaterLoggedTest(IsWaterLoggedTest const&); - IsWaterLoggedTest(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/filters/OwnerDistanceTest.h b/src/mc/world/filters/OwnerDistanceTest.h index d63d45a56b..db8f55815f 100644 --- a/src/mc/world/filters/OwnerDistanceTest.h +++ b/src/mc/world/filters/OwnerDistanceTest.h @@ -11,12 +11,6 @@ struct FilterContext; // clang-format on class OwnerDistanceTest : public ::SimpleFloatFilterTest { -public: - // prevent constructor by default - OwnerDistanceTest& operator=(OwnerDistanceTest const&); - OwnerDistanceTest(OwnerDistanceTest const&); - OwnerDistanceTest(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/filters/TargetDistanceTest.h b/src/mc/world/filters/TargetDistanceTest.h index d02caf8267..1f84fb8b11 100644 --- a/src/mc/world/filters/TargetDistanceTest.h +++ b/src/mc/world/filters/TargetDistanceTest.h @@ -11,12 +11,6 @@ struct FilterContext; // clang-format on class TargetDistanceTest : public ::SimpleFloatFilterTest { -public: - // prevent constructor by default - TargetDistanceTest& operator=(TargetDistanceTest const&); - TargetDistanceTest(TargetDistanceTest const&); - TargetDistanceTest(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/gamemode/IGameModeMessenger.h b/src/mc/world/gamemode/IGameModeMessenger.h index 490b95a145..e85a3a2e0d 100644 --- a/src/mc/world/gamemode/IGameModeMessenger.h +++ b/src/mc/world/gamemode/IGameModeMessenger.h @@ -10,12 +10,6 @@ class ItemStack; // clang-format on struct IGameModeMessenger { -public: - // prevent constructor by default - IGameModeMessenger& operator=(IGameModeMessenger const&); - IGameModeMessenger(IGameModeMessenger const&); - IGameModeMessenger(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/gamemode/IGameModeTimer.h b/src/mc/world/gamemode/IGameModeTimer.h index 0a59b9cd40..c7ac26a8c3 100644 --- a/src/mc/world/gamemode/IGameModeTimer.h +++ b/src/mc/world/gamemode/IGameModeTimer.h @@ -3,12 +3,6 @@ #include "mc/_HeaderOutputPredefine.h" struct IGameModeTimer { -public: - // prevent constructor by default - IGameModeTimer& operator=(IGameModeTimer const&); - IGameModeTimer(IGameModeTimer const&); - IGameModeTimer(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/interactions/IActorEventCoordinatorDependencies.h b/src/mc/world/interactions/IActorEventCoordinatorDependencies.h index a91d65b774..e75a64cd4a 100644 --- a/src/mc/world/interactions/IActorEventCoordinatorDependencies.h +++ b/src/mc/world/interactions/IActorEventCoordinatorDependencies.h @@ -14,12 +14,6 @@ class ItemStack; namespace Interactions { class IActorEventCoordinatorDependencies { -public: - // prevent constructor by default - IActorEventCoordinatorDependencies& operator=(IActorEventCoordinatorDependencies const&); - IActorEventCoordinatorDependencies(IActorEventCoordinatorDependencies const&); - IActorEventCoordinatorDependencies(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/interactions/ILegacyActorDependencies.h b/src/mc/world/interactions/ILegacyActorDependencies.h index fdea671686..5c32ba4d5c 100644 --- a/src/mc/world/interactions/ILegacyActorDependencies.h +++ b/src/mc/world/interactions/ILegacyActorDependencies.h @@ -5,12 +5,6 @@ namespace Interactions { class ILegacyActorDependencies { -public: - // prevent constructor by default - ILegacyActorDependencies& operator=(ILegacyActorDependencies const&); - ILegacyActorDependencies(ILegacyActorDependencies const&); - ILegacyActorDependencies(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/interactions/mining/ILegacyDependencies.h b/src/mc/world/interactions/mining/ILegacyDependencies.h index 6c2844bb6d..dabb1af13d 100644 --- a/src/mc/world/interactions/mining/ILegacyDependencies.h +++ b/src/mc/world/interactions/mining/ILegacyDependencies.h @@ -5,12 +5,6 @@ namespace Interactions::Mining { class ILegacyDependencies { -public: - // prevent constructor by default - ILegacyDependencies& operator=(ILegacyDependencies const&); - ILegacyDependencies(ILegacyDependencies const&); - ILegacyDependencies(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/interactions/mining/IMinecraftApiDependencies.h b/src/mc/world/interactions/mining/IMinecraftApiDependencies.h index 25c0107425..395bf85ffa 100644 --- a/src/mc/world/interactions/mining/IMinecraftApiDependencies.h +++ b/src/mc/world/interactions/mining/IMinecraftApiDependencies.h @@ -5,12 +5,6 @@ namespace Interactions::Mining { class IMinecraftApiDependencies { -public: - // prevent constructor by default - IMinecraftApiDependencies& operator=(IMinecraftApiDependencies const&); - IMinecraftApiDependencies(IMinecraftApiDependencies const&); - IMinecraftApiDependencies(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/inventory/network/ClientScratchContainer.h b/src/mc/world/inventory/network/ClientScratchContainer.h index b70391c26e..fc9ce3b44b 100644 --- a/src/mc/world/inventory/network/ClientScratchContainer.h +++ b/src/mc/world/inventory/network/ClientScratchContainer.h @@ -11,12 +11,6 @@ class ItemStack; // clang-format on class ClientScratchContainer : public ::SimpleContainer { -public: - // prevent constructor by default - ClientScratchContainer& operator=(ClientScratchContainer const&); - ClientScratchContainer(ClientScratchContainer const&); - ClientScratchContainer(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/inventory/network/IPlayerContainerSetter.h b/src/mc/world/inventory/network/IPlayerContainerSetter.h index b36b823494..0b112e536f 100644 --- a/src/mc/world/inventory/network/IPlayerContainerSetter.h +++ b/src/mc/world/inventory/network/IPlayerContainerSetter.h @@ -8,12 +8,6 @@ class ItemStack; // clang-format on class IPlayerContainerSetter { -public: - // prevent constructor by default - IPlayerContainerSetter& operator=(IPlayerContainerSetter const&); - IPlayerContainerSetter(IPlayerContainerSetter const&); - IPlayerContainerSetter(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/inventory/network/ISparseContainerSetListener.h b/src/mc/world/inventory/network/ISparseContainerSetListener.h index 1b50b0a850..179af34e77 100644 --- a/src/mc/world/inventory/network/ISparseContainerSetListener.h +++ b/src/mc/world/inventory/network/ISparseContainerSetListener.h @@ -9,12 +9,6 @@ class ItemStack; // clang-format on class ISparseContainerSetListener { -public: - // prevent constructor by default - ISparseContainerSetListener& operator=(ISparseContainerSetListener const&); - ISparseContainerSetListener(ISparseContainerSetListener const&); - ISparseContainerSetListener(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/inventory/network/ItemStackLegacyRequestIdTag.h b/src/mc/world/inventory/network/ItemStackLegacyRequestIdTag.h index 984e91903a..62ed47135d 100644 --- a/src/mc/world/inventory/network/ItemStackLegacyRequestIdTag.h +++ b/src/mc/world/inventory/network/ItemStackLegacyRequestIdTag.h @@ -2,10 +2,4 @@ #include "mc/_HeaderOutputPredefine.h" -struct ItemStackLegacyRequestIdTag { -public: - // prevent constructor by default - ItemStackLegacyRequestIdTag& operator=(ItemStackLegacyRequestIdTag const&); - ItemStackLegacyRequestIdTag(ItemStackLegacyRequestIdTag const&); - ItemStackLegacyRequestIdTag(); -}; +struct ItemStackLegacyRequestIdTag {}; diff --git a/src/mc/world/inventory/network/ItemStackNetIdTag.h b/src/mc/world/inventory/network/ItemStackNetIdTag.h index 0e83059790..5a30b85476 100644 --- a/src/mc/world/inventory/network/ItemStackNetIdTag.h +++ b/src/mc/world/inventory/network/ItemStackNetIdTag.h @@ -2,10 +2,4 @@ #include "mc/_HeaderOutputPredefine.h" -struct ItemStackNetIdTag { -public: - // prevent constructor by default - ItemStackNetIdTag& operator=(ItemStackNetIdTag const&); - ItemStackNetIdTag(ItemStackNetIdTag const&); - ItemStackNetIdTag(); -}; +struct ItemStackNetIdTag {}; diff --git a/src/mc/world/inventory/network/ItemStackNetResultMap.h b/src/mc/world/inventory/network/ItemStackNetResultMap.h index f160fb6425..1f6ca33004 100644 --- a/src/mc/world/inventory/network/ItemStackNetResultMap.h +++ b/src/mc/world/inventory/network/ItemStackNetResultMap.h @@ -7,12 +7,6 @@ #include "mc/world/inventory/network/ItemStackNetResult.h" class ItemStackNetResultMap { -public: - // prevent constructor by default - ItemStackNetResultMap& operator=(ItemStackNetResultMap const&); - ItemStackNetResultMap(ItemStackNetResultMap const&); - ItemStackNetResultMap(); - public: // static functions // NOLINTBEGIN diff --git a/src/mc/world/inventory/network/ItemStackRequestActionConsume.h b/src/mc/world/inventory/network/ItemStackRequestActionConsume.h index d118a141a5..7a0a407a2e 100644 --- a/src/mc/world/inventory/network/ItemStackRequestActionConsume.h +++ b/src/mc/world/inventory/network/ItemStackRequestActionConsume.h @@ -6,12 +6,6 @@ #include "mc/world/inventory/network/ItemStackRequestActionTransferBase.h" class ItemStackRequestActionConsume : public ::ItemStackRequestActionTransferBase { -public: - // prevent constructor by default - ItemStackRequestActionConsume& operator=(ItemStackRequestActionConsume const&); - ItemStackRequestActionConsume(ItemStackRequestActionConsume const&); - ItemStackRequestActionConsume(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/inventory/network/ItemStackRequestActionDataless.h b/src/mc/world/inventory/network/ItemStackRequestActionDataless.h index 2ef73da732..cb0ee979df 100644 --- a/src/mc/world/inventory/network/ItemStackRequestActionDataless.h +++ b/src/mc/world/inventory/network/ItemStackRequestActionDataless.h @@ -3,10 +3,4 @@ #include "mc/_HeaderOutputPredefine.h" template -class ItemStackRequestActionDataless { -public: - // prevent constructor by default - ItemStackRequestActionDataless& operator=(ItemStackRequestActionDataless const&); - ItemStackRequestActionDataless(ItemStackRequestActionDataless const&); - ItemStackRequestActionDataless(); -}; +class ItemStackRequestActionDataless {}; diff --git a/src/mc/world/inventory/network/ItemStackRequestActionDestroy.h b/src/mc/world/inventory/network/ItemStackRequestActionDestroy.h index 38373af0d7..3b6f558aac 100644 --- a/src/mc/world/inventory/network/ItemStackRequestActionDestroy.h +++ b/src/mc/world/inventory/network/ItemStackRequestActionDestroy.h @@ -6,12 +6,6 @@ #include "mc/world/inventory/network/ItemStackRequestActionTransferBase.h" class ItemStackRequestActionDestroy : public ::ItemStackRequestActionTransferBase { -public: - // prevent constructor by default - ItemStackRequestActionDestroy& operator=(ItemStackRequestActionDestroy const&); - ItemStackRequestActionDestroy(ItemStackRequestActionDestroy const&); - ItemStackRequestActionDestroy(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/inventory/network/ItemStackRequestActionPlace.h b/src/mc/world/inventory/network/ItemStackRequestActionPlace.h index 781b70314b..346ed504ac 100644 --- a/src/mc/world/inventory/network/ItemStackRequestActionPlace.h +++ b/src/mc/world/inventory/network/ItemStackRequestActionPlace.h @@ -6,12 +6,6 @@ #include "mc/world/inventory/network/ItemStackRequestActionTransferBase.h" class ItemStackRequestActionPlace : public ::ItemStackRequestActionTransferBase { -public: - // prevent constructor by default - ItemStackRequestActionPlace& operator=(ItemStackRequestActionPlace const&); - ItemStackRequestActionPlace(ItemStackRequestActionPlace const&); - ItemStackRequestActionPlace(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/inventory/network/ItemStackRequestActionSwap.h b/src/mc/world/inventory/network/ItemStackRequestActionSwap.h index 9378cdc96e..0287b95735 100644 --- a/src/mc/world/inventory/network/ItemStackRequestActionSwap.h +++ b/src/mc/world/inventory/network/ItemStackRequestActionSwap.h @@ -6,12 +6,6 @@ #include "mc/world/inventory/network/ItemStackRequestActionTransferBase.h" class ItemStackRequestActionSwap : public ::ItemStackRequestActionTransferBase { -public: - // prevent constructor by default - ItemStackRequestActionSwap& operator=(ItemStackRequestActionSwap const&); - ItemStackRequestActionSwap(ItemStackRequestActionSwap const&); - ItemStackRequestActionSwap(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/inventory/network/ItemStackRequestActionTake.h b/src/mc/world/inventory/network/ItemStackRequestActionTake.h index b2fa0d5ba8..b25cf898b9 100644 --- a/src/mc/world/inventory/network/ItemStackRequestActionTake.h +++ b/src/mc/world/inventory/network/ItemStackRequestActionTake.h @@ -6,12 +6,6 @@ #include "mc/world/inventory/network/ItemStackRequestActionTransferBase.h" class ItemStackRequestActionTake : public ::ItemStackRequestActionTransferBase { -public: - // prevent constructor by default - ItemStackRequestActionTake& operator=(ItemStackRequestActionTake const&); - ItemStackRequestActionTake(ItemStackRequestActionTake const&); - ItemStackRequestActionTake(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/inventory/network/ItemStackRequestIdTag.h b/src/mc/world/inventory/network/ItemStackRequestIdTag.h index 7927cd657b..72d10978fa 100644 --- a/src/mc/world/inventory/network/ItemStackRequestIdTag.h +++ b/src/mc/world/inventory/network/ItemStackRequestIdTag.h @@ -2,10 +2,4 @@ #include "mc/_HeaderOutputPredefine.h" -struct ItemStackRequestIdTag { -public: - // prevent constructor by default - ItemStackRequestIdTag& operator=(ItemStackRequestIdTag const&); - ItemStackRequestIdTag(ItemStackRequestIdTag const&); - ItemStackRequestIdTag(); -}; +struct ItemStackRequestIdTag {}; diff --git a/src/mc/world/inventory/network/ScreenHandlerHUD.h b/src/mc/world/inventory/network/ScreenHandlerHUD.h index 5c2571f9af..90d2157fb5 100644 --- a/src/mc/world/inventory/network/ScreenHandlerHUD.h +++ b/src/mc/world/inventory/network/ScreenHandlerHUD.h @@ -12,12 +12,6 @@ class ItemStackRequestAction; // clang-format on class ScreenHandlerHUD : public ::ScreenHandlerBase { -public: - // prevent constructor by default - ScreenHandlerHUD& operator=(ScreenHandlerHUD const&); - ScreenHandlerHUD(ScreenHandlerHUD const&); - ScreenHandlerHUD(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/inventory/network/SparseContainerClient.h b/src/mc/world/inventory/network/SparseContainerClient.h index 744ccea2d3..243803c05a 100644 --- a/src/mc/world/inventory/network/SparseContainerClient.h +++ b/src/mc/world/inventory/network/SparseContainerClient.h @@ -20,12 +20,6 @@ class SparseContainerClient : public ::SparseContainer { FailedWithError = 2, }; -public: - // prevent constructor by default - SparseContainerClient& operator=(SparseContainerClient const&); - SparseContainerClient(SparseContainerClient const&); - SparseContainerClient(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/inventory/network/TypedClientNetId.h b/src/mc/world/inventory/network/TypedClientNetId.h index 8b1b90a53b..d532227fb7 100644 --- a/src/mc/world/inventory/network/TypedClientNetId.h +++ b/src/mc/world/inventory/network/TypedClientNetId.h @@ -3,10 +3,4 @@ #include "mc/_HeaderOutputPredefine.h" template -class TypedClientNetId { -public: - // prevent constructor by default - TypedClientNetId& operator=(TypedClientNetId const&); - TypedClientNetId(TypedClientNetId const&); - TypedClientNetId(); -}; +class TypedClientNetId {}; diff --git a/src/mc/world/inventory/network/TypedServerNetId.h b/src/mc/world/inventory/network/TypedServerNetId.h index 1e205fba71..053e363cae 100644 --- a/src/mc/world/inventory/network/TypedServerNetId.h +++ b/src/mc/world/inventory/network/TypedServerNetId.h @@ -3,10 +3,4 @@ #include "mc/_HeaderOutputPredefine.h" template -class TypedServerNetId { -public: - // prevent constructor by default - TypedServerNetId& operator=(TypedServerNetId const&); - TypedServerNetId(TypedServerNetId const&); - TypedServerNetId(); -}; +class TypedServerNetId {}; diff --git a/src/mc/world/inventory/network/crafting/CraftHandleNonImplemented_DEPRECATEDASKTYLAING.h b/src/mc/world/inventory/network/crafting/CraftHandleNonImplemented_DEPRECATEDASKTYLAING.h index a4cb1db2db..b247cac7f0 100644 --- a/src/mc/world/inventory/network/crafting/CraftHandleNonImplemented_DEPRECATEDASKTYLAING.h +++ b/src/mc/world/inventory/network/crafting/CraftHandleNonImplemented_DEPRECATEDASKTYLAING.h @@ -13,12 +13,6 @@ class ItemStackRequestActionCraftHandler; // clang-format on class CraftHandleNonImplemented_DEPRECATEDASKTYLAING : public ::CraftHandlerBase { -public: - // prevent constructor by default - CraftHandleNonImplemented_DEPRECATEDASKTYLAING& operator=(CraftHandleNonImplemented_DEPRECATEDASKTYLAING const&); - CraftHandleNonImplemented_DEPRECATEDASKTYLAING(CraftHandleNonImplemented_DEPRECATEDASKTYLAING const&); - CraftHandleNonImplemented_DEPRECATEDASKTYLAING(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/inventory/network/crafting/CraftHandlerLoom.h b/src/mc/world/inventory/network/crafting/CraftHandlerLoom.h index 2adeba08fc..fcddd88d7a 100644 --- a/src/mc/world/inventory/network/crafting/CraftHandlerLoom.h +++ b/src/mc/world/inventory/network/crafting/CraftHandlerLoom.h @@ -12,12 +12,6 @@ class ItemStackRequestActionCraftBase; // clang-format on class CraftHandlerLoom : public ::CraftHandlerBase { -public: - // prevent constructor by default - CraftHandlerLoom& operator=(CraftHandlerLoom const&); - CraftHandlerLoom(CraftHandlerLoom const&); - CraftHandlerLoom(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/inventory/network/crafting/ItemStackRequestActionCraft.h b/src/mc/world/inventory/network/crafting/ItemStackRequestActionCraft.h index 96da542883..d47f0a23b1 100644 --- a/src/mc/world/inventory/network/crafting/ItemStackRequestActionCraft.h +++ b/src/mc/world/inventory/network/crafting/ItemStackRequestActionCraft.h @@ -3,10 +3,4 @@ #include "mc/_HeaderOutputPredefine.h" template -class ItemStackRequestActionCraft { -public: - // prevent constructor by default - ItemStackRequestActionCraft& operator=(ItemStackRequestActionCraft const&); - ItemStackRequestActionCraft(ItemStackRequestActionCraft const&); - ItemStackRequestActionCraft(); -}; +class ItemStackRequestActionCraft {}; diff --git a/src/mc/world/inventory/network/crafting/ItemStackRequestActionCraftNonImplemented_DEPRECATEDASKTYLAING.h b/src/mc/world/inventory/network/crafting/ItemStackRequestActionCraftNonImplemented_DEPRECATEDASKTYLAING.h index 679ad5c4c9..ad4ab74fcb 100644 --- a/src/mc/world/inventory/network/crafting/ItemStackRequestActionCraftNonImplemented_DEPRECATEDASKTYLAING.h +++ b/src/mc/world/inventory/network/crafting/ItemStackRequestActionCraftNonImplemented_DEPRECATEDASKTYLAING.h @@ -13,12 +13,6 @@ class ReadOnlyBinaryStream; // clang-format on class ItemStackRequestActionCraftNonImplemented_DEPRECATEDASKTYLAING : public ::ItemStackRequestActionCraftBase { -public: - // prevent constructor by default - ItemStackRequestActionCraftNonImplemented_DEPRECATEDASKTYLAING& - operator=(ItemStackRequestActionCraftNonImplemented_DEPRECATEDASKTYLAING const&); - ItemStackRequestActionCraftNonImplemented_DEPRECATEDASKTYLAING(ItemStackRequestActionCraftNonImplemented_DEPRECATEDASKTYLAING const&); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/inventory/network/crafting/RecipeNetIdTag.h b/src/mc/world/inventory/network/crafting/RecipeNetIdTag.h index 51082565a3..9fe345b9b6 100644 --- a/src/mc/world/inventory/network/crafting/RecipeNetIdTag.h +++ b/src/mc/world/inventory/network/crafting/RecipeNetIdTag.h @@ -2,10 +2,4 @@ #include "mc/_HeaderOutputPredefine.h" -struct RecipeNetIdTag { -public: - // prevent constructor by default - RecipeNetIdTag& operator=(RecipeNetIdTag const&); - RecipeNetIdTag(RecipeNetIdTag const&); - RecipeNetIdTag(); -}; +struct RecipeNetIdTag {}; diff --git a/src/mc/world/inventory/simulation/ContainerScreenSimulationActivate.h b/src/mc/world/inventory/simulation/ContainerScreenSimulationActivate.h index e925a61086..aa5e45aea8 100644 --- a/src/mc/world/inventory/simulation/ContainerScreenSimulationActivate.h +++ b/src/mc/world/inventory/simulation/ContainerScreenSimulationActivate.h @@ -11,12 +11,6 @@ struct ContainerScreenActionResult; // clang-format on class ContainerScreenSimulationActivate : public ::ContainerScreenSimulation { -public: - // prevent constructor by default - ContainerScreenSimulationActivate& operator=(ContainerScreenSimulationActivate const&); - ContainerScreenSimulationActivate(ContainerScreenSimulationActivate const&); - ContainerScreenSimulationActivate(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/inventory/simulation/ContainerScreenSimulationCrafting.h b/src/mc/world/inventory/simulation/ContainerScreenSimulationCrafting.h index c34f522f86..297a407592 100644 --- a/src/mc/world/inventory/simulation/ContainerScreenSimulationCrafting.h +++ b/src/mc/world/inventory/simulation/ContainerScreenSimulationCrafting.h @@ -13,12 +13,6 @@ struct ContainerValidationCraftResult; // clang-format on class ContainerScreenSimulationCrafting : public ::ContainerScreenSimulation { -public: - // prevent constructor by default - ContainerScreenSimulationCrafting& operator=(ContainerScreenSimulationCrafting const&); - ContainerScreenSimulationCrafting(ContainerScreenSimulationCrafting const&); - ContainerScreenSimulationCrafting(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/inventory/simulation/ContainerScreenTemporaryActionScope.h b/src/mc/world/inventory/simulation/ContainerScreenTemporaryActionScope.h index d775469058..605a9a1306 100644 --- a/src/mc/world/inventory/simulation/ContainerScreenTemporaryActionScope.h +++ b/src/mc/world/inventory/simulation/ContainerScreenTemporaryActionScope.h @@ -6,12 +6,6 @@ #include "mc/world/inventory/simulation/ContainerScreenActionScope.h" class ContainerScreenTemporaryActionScope : public ::ContainerScreenActionScope { -public: - // prevent constructor by default - ContainerScreenTemporaryActionScope& operator=(ContainerScreenTemporaryActionScope const&); - ContainerScreenTemporaryActionScope(ContainerScreenTemporaryActionScope const&); - ContainerScreenTemporaryActionScope(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/inventory/simulation/ContainerScreenValidationActivate.h b/src/mc/world/inventory/simulation/ContainerScreenValidationActivate.h index 686b92a79d..4dbfd0b789 100644 --- a/src/mc/world/inventory/simulation/ContainerScreenValidationActivate.h +++ b/src/mc/world/inventory/simulation/ContainerScreenValidationActivate.h @@ -11,12 +11,6 @@ struct ContainerValidationResult; // clang-format on class ContainerScreenValidationActivate : public ::ContainerScreenValidation { -public: - // prevent constructor by default - ContainerScreenValidationActivate& operator=(ContainerScreenValidationActivate const&); - ContainerScreenValidationActivate(ContainerScreenValidationActivate const&); - ContainerScreenValidationActivate(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/inventory/simulation/ContainerScreenValidationCrafting.h b/src/mc/world/inventory/simulation/ContainerScreenValidationCrafting.h index ad6daa489e..083f164d46 100644 --- a/src/mc/world/inventory/simulation/ContainerScreenValidationCrafting.h +++ b/src/mc/world/inventory/simulation/ContainerScreenValidationCrafting.h @@ -13,12 +13,6 @@ struct ContainerValidationResult; // clang-format on class ContainerScreenValidationCrafting : public ::ContainerScreenValidation { -public: - // prevent constructor by default - ContainerScreenValidationCrafting& operator=(ContainerScreenValidationCrafting const&); - ContainerScreenValidationCrafting(ContainerScreenValidationCrafting const&); - ContainerScreenValidationCrafting(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/inventory/simulation/ContainerValidationCraftInputs.h b/src/mc/world/inventory/simulation/ContainerValidationCraftInputs.h index cd66b21e31..2cef9ceb06 100644 --- a/src/mc/world/inventory/simulation/ContainerValidationCraftInputs.h +++ b/src/mc/world/inventory/simulation/ContainerValidationCraftInputs.h @@ -2,10 +2,4 @@ #include "mc/_HeaderOutputPredefine.h" -struct ContainerValidationCraftInputs { -public: - // prevent constructor by default - ContainerValidationCraftInputs& operator=(ContainerValidationCraftInputs const&); - ContainerValidationCraftInputs(ContainerValidationCraftInputs const&); - ContainerValidationCraftInputs(); -}; +struct ContainerValidationCraftInputs {}; diff --git a/src/mc/world/inventory/simulation/ContainerValidatorFactory.h b/src/mc/world/inventory/simulation/ContainerValidatorFactory.h index f6e126ce35..b5bf37bfd3 100644 --- a/src/mc/world/inventory/simulation/ContainerValidatorFactory.h +++ b/src/mc/world/inventory/simulation/ContainerValidatorFactory.h @@ -15,12 +15,6 @@ struct FullContainerName; // clang-format on class ContainerValidatorFactory { -public: - // prevent constructor by default - ContainerValidatorFactory& operator=(ContainerValidatorFactory const&); - ContainerValidatorFactory(ContainerValidatorFactory const&); - ContainerValidatorFactory(); - public: // static functions // NOLINTBEGIN diff --git a/src/mc/world/inventory/simulation/validation/AnvilContainerScreenValidator.h b/src/mc/world/inventory/simulation/validation/AnvilContainerScreenValidator.h index b69f8ed144..9197fdc696 100644 --- a/src/mc/world/inventory/simulation/validation/AnvilContainerScreenValidator.h +++ b/src/mc/world/inventory/simulation/validation/AnvilContainerScreenValidator.h @@ -14,12 +14,6 @@ struct ContainerValidationCraftResult; // clang-format on class AnvilContainerScreenValidator : public ::ContainerScreenValidatorBase { -public: - // prevent constructor by default - AnvilContainerScreenValidator& operator=(AnvilContainerScreenValidator const&); - AnvilContainerScreenValidator(AnvilContainerScreenValidator const&); - AnvilContainerScreenValidator(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/inventory/simulation/validation/AnvilInputContainerValidation.h b/src/mc/world/inventory/simulation/validation/AnvilInputContainerValidation.h index 8d7beb0db4..c152360f92 100644 --- a/src/mc/world/inventory/simulation/validation/AnvilInputContainerValidation.h +++ b/src/mc/world/inventory/simulation/validation/AnvilInputContainerValidation.h @@ -11,12 +11,6 @@ class ContainerScreenContext; // clang-format on class AnvilInputContainerValidation : public ::ContainerValidationBase { -public: - // prevent constructor by default - AnvilInputContainerValidation& operator=(AnvilInputContainerValidation const&); - AnvilInputContainerValidation(AnvilInputContainerValidation const&); - AnvilInputContainerValidation(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/inventory/simulation/validation/AnvilMaterialContainerValidation.h b/src/mc/world/inventory/simulation/validation/AnvilMaterialContainerValidation.h index 704f4d9352..e994288f22 100644 --- a/src/mc/world/inventory/simulation/validation/AnvilMaterialContainerValidation.h +++ b/src/mc/world/inventory/simulation/validation/AnvilMaterialContainerValidation.h @@ -11,12 +11,6 @@ class ContainerScreenContext; // clang-format on class AnvilMaterialContainerValidation : public ::ContainerValidationBase { -public: - // prevent constructor by default - AnvilMaterialContainerValidation& operator=(AnvilMaterialContainerValidation const&); - AnvilMaterialContainerValidation(AnvilMaterialContainerValidation const&); - AnvilMaterialContainerValidation(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/inventory/simulation/validation/ArmorContainerValidation.h b/src/mc/world/inventory/simulation/validation/ArmorContainerValidation.h index b705939af0..afe570e29c 100644 --- a/src/mc/world/inventory/simulation/validation/ArmorContainerValidation.h +++ b/src/mc/world/inventory/simulation/validation/ArmorContainerValidation.h @@ -13,12 +13,6 @@ class ItemStackBase; // clang-format on class ArmorContainerValidation : public ::ContainerValidationBase { -public: - // prevent constructor by default - ArmorContainerValidation& operator=(ArmorContainerValidation const&); - ArmorContainerValidation(ArmorContainerValidation const&); - ArmorContainerValidation(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/inventory/simulation/validation/BarrelContainerScreenValidator.h b/src/mc/world/inventory/simulation/validation/BarrelContainerScreenValidator.h index c775fda369..8707fc463f 100644 --- a/src/mc/world/inventory/simulation/validation/BarrelContainerScreenValidator.h +++ b/src/mc/world/inventory/simulation/validation/BarrelContainerScreenValidator.h @@ -6,12 +6,6 @@ #include "mc/world/inventory/simulation/validation/ContainerScreenValidatorBase.h" class BarrelContainerScreenValidator : public ::ContainerScreenValidatorBase { -public: - // prevent constructor by default - BarrelContainerScreenValidator& operator=(BarrelContainerScreenValidator const&); - BarrelContainerScreenValidator(BarrelContainerScreenValidator const&); - BarrelContainerScreenValidator(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/inventory/simulation/validation/BarrelContainerValidation.h b/src/mc/world/inventory/simulation/validation/BarrelContainerValidation.h index 301e2f800b..eee6a16081 100644 --- a/src/mc/world/inventory/simulation/validation/BarrelContainerValidation.h +++ b/src/mc/world/inventory/simulation/validation/BarrelContainerValidation.h @@ -12,12 +12,6 @@ class ContainerScreenContext; // clang-format on class BarrelContainerValidation : public ::ContainerValidationBase { -public: - // prevent constructor by default - BarrelContainerValidation& operator=(BarrelContainerValidation const&); - BarrelContainerValidation(BarrelContainerValidation const&); - BarrelContainerValidation(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/inventory/simulation/validation/BeaconContainerScreenValidator.h b/src/mc/world/inventory/simulation/validation/BeaconContainerScreenValidator.h index 93e4755920..6c6eb17c7a 100644 --- a/src/mc/world/inventory/simulation/validation/BeaconContainerScreenValidator.h +++ b/src/mc/world/inventory/simulation/validation/BeaconContainerScreenValidator.h @@ -6,12 +6,6 @@ #include "mc/world/inventory/simulation/validation/ContainerScreenValidatorBase.h" class BeaconContainerScreenValidator : public ::ContainerScreenValidatorBase { -public: - // prevent constructor by default - BeaconContainerScreenValidator& operator=(BeaconContainerScreenValidator const&); - BeaconContainerScreenValidator(BeaconContainerScreenValidator const&); - BeaconContainerScreenValidator(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/inventory/simulation/validation/BeaconPaymentContainerValidation.h b/src/mc/world/inventory/simulation/validation/BeaconPaymentContainerValidation.h index 5c8e702ea9..ce4b311203 100644 --- a/src/mc/world/inventory/simulation/validation/BeaconPaymentContainerValidation.h +++ b/src/mc/world/inventory/simulation/validation/BeaconPaymentContainerValidation.h @@ -12,12 +12,6 @@ class ItemStackBase; // clang-format on class BeaconPaymentContainerValidation : public ::ContainerValidationBase { -public: - // prevent constructor by default - BeaconPaymentContainerValidation& operator=(BeaconPaymentContainerValidation const&); - BeaconPaymentContainerValidation(BeaconPaymentContainerValidation const&); - BeaconPaymentContainerValidation(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/inventory/simulation/validation/BlastFurnaceContainerScreenValidator.h b/src/mc/world/inventory/simulation/validation/BlastFurnaceContainerScreenValidator.h index 28aae3e6a0..d695a77205 100644 --- a/src/mc/world/inventory/simulation/validation/BlastFurnaceContainerScreenValidator.h +++ b/src/mc/world/inventory/simulation/validation/BlastFurnaceContainerScreenValidator.h @@ -6,12 +6,6 @@ #include "mc/world/inventory/simulation/validation/FurnaceContainerScreenValidator.h" class BlastFurnaceContainerScreenValidator : public ::FurnaceContainerScreenValidator { -public: - // prevent constructor by default - BlastFurnaceContainerScreenValidator& operator=(BlastFurnaceContainerScreenValidator const&); - BlastFurnaceContainerScreenValidator(BlastFurnaceContainerScreenValidator const&); - BlastFurnaceContainerScreenValidator(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/inventory/simulation/validation/BrewingStandContainerScreenValidator.h b/src/mc/world/inventory/simulation/validation/BrewingStandContainerScreenValidator.h index 2829816bd1..e5c68d8d3f 100644 --- a/src/mc/world/inventory/simulation/validation/BrewingStandContainerScreenValidator.h +++ b/src/mc/world/inventory/simulation/validation/BrewingStandContainerScreenValidator.h @@ -6,12 +6,6 @@ #include "mc/world/inventory/simulation/validation/ContainerScreenValidatorBase.h" class BrewingStandContainerScreenValidator : public ::ContainerScreenValidatorBase { -public: - // prevent constructor by default - BrewingStandContainerScreenValidator& operator=(BrewingStandContainerScreenValidator const&); - BrewingStandContainerScreenValidator(BrewingStandContainerScreenValidator const&); - BrewingStandContainerScreenValidator(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/inventory/simulation/validation/BrewingStandFuelContainerValidation.h b/src/mc/world/inventory/simulation/validation/BrewingStandFuelContainerValidation.h index 87ebd2fb30..a0ef1a101f 100644 --- a/src/mc/world/inventory/simulation/validation/BrewingStandFuelContainerValidation.h +++ b/src/mc/world/inventory/simulation/validation/BrewingStandFuelContainerValidation.h @@ -12,12 +12,6 @@ class ItemStackBase; // clang-format on class BrewingStandFuelContainerValidation : public ::ContainerValidationBase { -public: - // prevent constructor by default - BrewingStandFuelContainerValidation& operator=(BrewingStandFuelContainerValidation const&); - BrewingStandFuelContainerValidation(BrewingStandFuelContainerValidation const&); - BrewingStandFuelContainerValidation(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/inventory/simulation/validation/BrewingStandInputContainerValidation.h b/src/mc/world/inventory/simulation/validation/BrewingStandInputContainerValidation.h index 8cf54be0b7..ea8d835385 100644 --- a/src/mc/world/inventory/simulation/validation/BrewingStandInputContainerValidation.h +++ b/src/mc/world/inventory/simulation/validation/BrewingStandInputContainerValidation.h @@ -12,12 +12,6 @@ class ItemStackBase; // clang-format on class BrewingStandInputContainerValidation : public ::ContainerValidationBase { -public: - // prevent constructor by default - BrewingStandInputContainerValidation& operator=(BrewingStandInputContainerValidation const&); - BrewingStandInputContainerValidation(BrewingStandInputContainerValidation const&); - BrewingStandInputContainerValidation(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/inventory/simulation/validation/BrewingStandResultContainerValidation.h b/src/mc/world/inventory/simulation/validation/BrewingStandResultContainerValidation.h index 1cad6e0970..3b483f2aa8 100644 --- a/src/mc/world/inventory/simulation/validation/BrewingStandResultContainerValidation.h +++ b/src/mc/world/inventory/simulation/validation/BrewingStandResultContainerValidation.h @@ -13,12 +13,6 @@ class ItemStackBase; // clang-format on class BrewingStandResultContainerValidation : public ::ContainerValidationBase { -public: - // prevent constructor by default - BrewingStandResultContainerValidation& operator=(BrewingStandResultContainerValidation const&); - BrewingStandResultContainerValidation(BrewingStandResultContainerValidation const&); - BrewingStandResultContainerValidation(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/inventory/simulation/validation/CartographyAdditionalContainerValidation.h b/src/mc/world/inventory/simulation/validation/CartographyAdditionalContainerValidation.h index 2c9aff3626..d60b0153ed 100644 --- a/src/mc/world/inventory/simulation/validation/CartographyAdditionalContainerValidation.h +++ b/src/mc/world/inventory/simulation/validation/CartographyAdditionalContainerValidation.h @@ -12,12 +12,6 @@ class ItemStackBase; // clang-format on class CartographyAdditionalContainerValidation : public ::ContainerValidationBase { -public: - // prevent constructor by default - CartographyAdditionalContainerValidation& operator=(CartographyAdditionalContainerValidation const&); - CartographyAdditionalContainerValidation(CartographyAdditionalContainerValidation const&); - CartographyAdditionalContainerValidation(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/inventory/simulation/validation/CartographyContainerScreenValidator.h b/src/mc/world/inventory/simulation/validation/CartographyContainerScreenValidator.h index b0ba36a8ab..ceed1690ac 100644 --- a/src/mc/world/inventory/simulation/validation/CartographyContainerScreenValidator.h +++ b/src/mc/world/inventory/simulation/validation/CartographyContainerScreenValidator.h @@ -14,12 +14,6 @@ struct ContainerValidationCraftResult; // clang-format on class CartographyContainerScreenValidator : public ::ContainerScreenValidatorBase { -public: - // prevent constructor by default - CartographyContainerScreenValidator& operator=(CartographyContainerScreenValidator const&); - CartographyContainerScreenValidator(CartographyContainerScreenValidator const&); - CartographyContainerScreenValidator(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/inventory/simulation/validation/CartographyInputContainerValidation.h b/src/mc/world/inventory/simulation/validation/CartographyInputContainerValidation.h index 82619bc14f..c49e8e1dfa 100644 --- a/src/mc/world/inventory/simulation/validation/CartographyInputContainerValidation.h +++ b/src/mc/world/inventory/simulation/validation/CartographyInputContainerValidation.h @@ -12,12 +12,6 @@ class ItemStackBase; // clang-format on class CartographyInputContainerValidation : public ::ContainerValidationBase { -public: - // prevent constructor by default - CartographyInputContainerValidation& operator=(CartographyInputContainerValidation const&); - CartographyInputContainerValidation(CartographyInputContainerValidation const&); - CartographyInputContainerValidation(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/inventory/simulation/validation/ChestContainerScreenValidator.h b/src/mc/world/inventory/simulation/validation/ChestContainerScreenValidator.h index e5b9f6646b..19cb5a69bc 100644 --- a/src/mc/world/inventory/simulation/validation/ChestContainerScreenValidator.h +++ b/src/mc/world/inventory/simulation/validation/ChestContainerScreenValidator.h @@ -6,12 +6,6 @@ #include "mc/world/inventory/simulation/validation/ContainerScreenValidatorBase.h" class ChestContainerScreenValidator : public ::ContainerScreenValidatorBase { -public: - // prevent constructor by default - ChestContainerScreenValidator& operator=(ChestContainerScreenValidator const&); - ChestContainerScreenValidator(ChestContainerScreenValidator const&); - ChestContainerScreenValidator(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/inventory/simulation/validation/CombinedHotbarAndInventoryContainerValidation.h b/src/mc/world/inventory/simulation/validation/CombinedHotbarAndInventoryContainerValidation.h index 703ba3fad8..823e09e885 100644 --- a/src/mc/world/inventory/simulation/validation/CombinedHotbarAndInventoryContainerValidation.h +++ b/src/mc/world/inventory/simulation/validation/CombinedHotbarAndInventoryContainerValidation.h @@ -13,12 +13,6 @@ class ItemStackBase; // clang-format on class CombinedHotbarAndInventoryContainerValidation : public ::ContainerValidationBase { -public: - // prevent constructor by default - CombinedHotbarAndInventoryContainerValidation& operator=(CombinedHotbarAndInventoryContainerValidation const&); - CombinedHotbarAndInventoryContainerValidation(CombinedHotbarAndInventoryContainerValidation const&); - CombinedHotbarAndInventoryContainerValidation(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/inventory/simulation/validation/CompoundCreatorContainerScreenValidator.h b/src/mc/world/inventory/simulation/validation/CompoundCreatorContainerScreenValidator.h index 2c2e981ad6..1f93d2fa6b 100644 --- a/src/mc/world/inventory/simulation/validation/CompoundCreatorContainerScreenValidator.h +++ b/src/mc/world/inventory/simulation/validation/CompoundCreatorContainerScreenValidator.h @@ -6,12 +6,6 @@ #include "mc/world/inventory/simulation/validation/ContainerScreenValidatorBase.h" class CompoundCreatorContainerScreenValidator : public ::ContainerScreenValidatorBase { -public: - // prevent constructor by default - CompoundCreatorContainerScreenValidator& operator=(CompoundCreatorContainerScreenValidator const&); - CompoundCreatorContainerScreenValidator(CompoundCreatorContainerScreenValidator const&); - CompoundCreatorContainerScreenValidator(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/inventory/simulation/validation/CompoundCreatorInputValidation.h b/src/mc/world/inventory/simulation/validation/CompoundCreatorInputValidation.h index 0205d9a9e0..424f6c50f4 100644 --- a/src/mc/world/inventory/simulation/validation/CompoundCreatorInputValidation.h +++ b/src/mc/world/inventory/simulation/validation/CompoundCreatorInputValidation.h @@ -13,12 +13,6 @@ class ItemStackBase; // clang-format on class CompoundCreatorInputValidation : public ::ContainerValidationBase { -public: - // prevent constructor by default - CompoundCreatorInputValidation& operator=(CompoundCreatorInputValidation const&); - CompoundCreatorInputValidation(CompoundCreatorInputValidation const&); - CompoundCreatorInputValidation(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/inventory/simulation/validation/ContainerValidationBase.h b/src/mc/world/inventory/simulation/validation/ContainerValidationBase.h index cc560fbb3b..e4219a166d 100644 --- a/src/mc/world/inventory/simulation/validation/ContainerValidationBase.h +++ b/src/mc/world/inventory/simulation/validation/ContainerValidationBase.h @@ -10,12 +10,6 @@ class ItemStackBase; // clang-format on class ContainerValidationBase { -public: - // prevent constructor by default - ContainerValidationBase& operator=(ContainerValidationBase const&); - ContainerValidationBase(ContainerValidationBase const&); - ContainerValidationBase(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/inventory/simulation/validation/CrafterContainerScreenValidator.h b/src/mc/world/inventory/simulation/validation/CrafterContainerScreenValidator.h index d3a539fa4a..a07705ba72 100644 --- a/src/mc/world/inventory/simulation/validation/CrafterContainerScreenValidator.h +++ b/src/mc/world/inventory/simulation/validation/CrafterContainerScreenValidator.h @@ -6,12 +6,6 @@ #include "mc/world/inventory/simulation/validation/ContainerScreenValidatorBase.h" class CrafterContainerScreenValidator : public ::ContainerScreenValidatorBase { -public: - // prevent constructor by default - CrafterContainerScreenValidator& operator=(CrafterContainerScreenValidator const&); - CrafterContainerScreenValidator(CrafterContainerScreenValidator const&); - CrafterContainerScreenValidator(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/inventory/simulation/validation/CrafterContainerValidation.h b/src/mc/world/inventory/simulation/validation/CrafterContainerValidation.h index 52eb3852e9..9bc8164457 100644 --- a/src/mc/world/inventory/simulation/validation/CrafterContainerValidation.h +++ b/src/mc/world/inventory/simulation/validation/CrafterContainerValidation.h @@ -13,12 +13,6 @@ class ItemStackBase; // clang-format on class CrafterContainerValidation : public ::ContainerValidationBase { -public: - // prevent constructor by default - CrafterContainerValidation& operator=(CrafterContainerValidation const&); - CrafterContainerValidation(CrafterContainerValidation const&); - CrafterContainerValidation(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/inventory/simulation/validation/CraftingContainerScreenValidator.h b/src/mc/world/inventory/simulation/validation/CraftingContainerScreenValidator.h index 2311f592e5..6ed606857a 100644 --- a/src/mc/world/inventory/simulation/validation/CraftingContainerScreenValidator.h +++ b/src/mc/world/inventory/simulation/validation/CraftingContainerScreenValidator.h @@ -6,12 +6,6 @@ #include "mc/world/inventory/simulation/validation/ContainerScreenValidatorBase.h" class CraftingContainerScreenValidator : public ::ContainerScreenValidatorBase { -public: - // prevent constructor by default - CraftingContainerScreenValidator& operator=(CraftingContainerScreenValidator const&); - CraftingContainerScreenValidator(CraftingContainerScreenValidator const&); - CraftingContainerScreenValidator(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/inventory/simulation/validation/CraftingInputContainerValidation.h b/src/mc/world/inventory/simulation/validation/CraftingInputContainerValidation.h index 5b742197a1..1076455410 100644 --- a/src/mc/world/inventory/simulation/validation/CraftingInputContainerValidation.h +++ b/src/mc/world/inventory/simulation/validation/CraftingInputContainerValidation.h @@ -12,12 +12,6 @@ class ContainerScreenContext; // clang-format on class CraftingInputContainerValidation : public ::ContainerValidationBase { -public: - // prevent constructor by default - CraftingInputContainerValidation& operator=(CraftingInputContainerValidation const&); - CraftingInputContainerValidation(CraftingInputContainerValidation const&); - CraftingInputContainerValidation(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/inventory/simulation/validation/CreatedOutputContainerValidation.h b/src/mc/world/inventory/simulation/validation/CreatedOutputContainerValidation.h index cf723f30e9..f5a356a14b 100644 --- a/src/mc/world/inventory/simulation/validation/CreatedOutputContainerValidation.h +++ b/src/mc/world/inventory/simulation/validation/CreatedOutputContainerValidation.h @@ -12,12 +12,6 @@ class ItemStackBase; // clang-format on class CreatedOutputContainerValidation : public ::ContainerValidationBase { -public: - // prevent constructor by default - CreatedOutputContainerValidation& operator=(CreatedOutputContainerValidation const&); - CreatedOutputContainerValidation(CreatedOutputContainerValidation const&); - CreatedOutputContainerValidation(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/inventory/simulation/validation/CursorContainerValidation.h b/src/mc/world/inventory/simulation/validation/CursorContainerValidation.h index 59a41824a7..266cc4e699 100644 --- a/src/mc/world/inventory/simulation/validation/CursorContainerValidation.h +++ b/src/mc/world/inventory/simulation/validation/CursorContainerValidation.h @@ -12,12 +12,6 @@ class ItemStackBase; // clang-format on class CursorContainerValidation : public ::ContainerValidationBase { -public: - // prevent constructor by default - CursorContainerValidation& operator=(CursorContainerValidation const&); - CursorContainerValidation(CursorContainerValidation const&); - CursorContainerValidation(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/inventory/simulation/validation/ElementConstructorContainerScreenValidator.h b/src/mc/world/inventory/simulation/validation/ElementConstructorContainerScreenValidator.h index e8cb6c5b02..783b09dda7 100644 --- a/src/mc/world/inventory/simulation/validation/ElementConstructorContainerScreenValidator.h +++ b/src/mc/world/inventory/simulation/validation/ElementConstructorContainerScreenValidator.h @@ -6,12 +6,6 @@ #include "mc/world/inventory/simulation/validation/ContainerScreenValidatorBase.h" class ElementConstructorContainerScreenValidator : public ::ContainerScreenValidatorBase { -public: - // prevent constructor by default - ElementConstructorContainerScreenValidator& operator=(ElementConstructorContainerScreenValidator const&); - ElementConstructorContainerScreenValidator(ElementConstructorContainerScreenValidator const&); - ElementConstructorContainerScreenValidator(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/inventory/simulation/validation/EnchantingContainerScreenValidator.h b/src/mc/world/inventory/simulation/validation/EnchantingContainerScreenValidator.h index 962ec66869..99342d7c83 100644 --- a/src/mc/world/inventory/simulation/validation/EnchantingContainerScreenValidator.h +++ b/src/mc/world/inventory/simulation/validation/EnchantingContainerScreenValidator.h @@ -6,12 +6,6 @@ #include "mc/world/inventory/simulation/validation/ContainerScreenValidatorBase.h" class EnchantingContainerScreenValidator : public ::ContainerScreenValidatorBase { -public: - // prevent constructor by default - EnchantingContainerScreenValidator& operator=(EnchantingContainerScreenValidator const&); - EnchantingContainerScreenValidator(EnchantingContainerScreenValidator const&); - EnchantingContainerScreenValidator(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/inventory/simulation/validation/EnchantingInputContainerValidation.h b/src/mc/world/inventory/simulation/validation/EnchantingInputContainerValidation.h index e94c96fe87..06abdcb7d4 100644 --- a/src/mc/world/inventory/simulation/validation/EnchantingInputContainerValidation.h +++ b/src/mc/world/inventory/simulation/validation/EnchantingInputContainerValidation.h @@ -12,12 +12,6 @@ class ItemStackBase; // clang-format on class EnchantingInputContainerValidation : public ::ContainerValidationBase { -public: - // prevent constructor by default - EnchantingInputContainerValidation& operator=(EnchantingInputContainerValidation const&); - EnchantingInputContainerValidation(EnchantingInputContainerValidation const&); - EnchantingInputContainerValidation(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/inventory/simulation/validation/EnchantingMaterialContainerValidation.h b/src/mc/world/inventory/simulation/validation/EnchantingMaterialContainerValidation.h index 390c9535a8..a9c19a06a7 100644 --- a/src/mc/world/inventory/simulation/validation/EnchantingMaterialContainerValidation.h +++ b/src/mc/world/inventory/simulation/validation/EnchantingMaterialContainerValidation.h @@ -12,12 +12,6 @@ class ItemStackBase; // clang-format on class EnchantingMaterialContainerValidation : public ::ContainerValidationBase { -public: - // prevent constructor by default - EnchantingMaterialContainerValidation& operator=(EnchantingMaterialContainerValidation const&); - EnchantingMaterialContainerValidation(EnchantingMaterialContainerValidation const&); - EnchantingMaterialContainerValidation(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/inventory/simulation/validation/FurnaceFuelContainerValidation.h b/src/mc/world/inventory/simulation/validation/FurnaceFuelContainerValidation.h index d94fbcf6d5..aa019bba63 100644 --- a/src/mc/world/inventory/simulation/validation/FurnaceFuelContainerValidation.h +++ b/src/mc/world/inventory/simulation/validation/FurnaceFuelContainerValidation.h @@ -12,12 +12,6 @@ class ItemStackBase; // clang-format on class FurnaceFuelContainerValidation : public ::ContainerValidationBase { -public: - // prevent constructor by default - FurnaceFuelContainerValidation& operator=(FurnaceFuelContainerValidation const&); - FurnaceFuelContainerValidation(FurnaceFuelContainerValidation const&); - FurnaceFuelContainerValidation(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/inventory/simulation/validation/FurnaceIngredientContainerValidation.h b/src/mc/world/inventory/simulation/validation/FurnaceIngredientContainerValidation.h index 4ae71ad7d8..2dbdca7cfa 100644 --- a/src/mc/world/inventory/simulation/validation/FurnaceIngredientContainerValidation.h +++ b/src/mc/world/inventory/simulation/validation/FurnaceIngredientContainerValidation.h @@ -11,12 +11,6 @@ class ContainerScreenContext; // clang-format on class FurnaceIngredientContainerValidation : public ::ContainerValidationBase { -public: - // prevent constructor by default - FurnaceIngredientContainerValidation& operator=(FurnaceIngredientContainerValidation const&); - FurnaceIngredientContainerValidation(FurnaceIngredientContainerValidation const&); - FurnaceIngredientContainerValidation(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/inventory/simulation/validation/FurnaceResultContainerValidation.h b/src/mc/world/inventory/simulation/validation/FurnaceResultContainerValidation.h index 7e76785b6c..072ae32e43 100644 --- a/src/mc/world/inventory/simulation/validation/FurnaceResultContainerValidation.h +++ b/src/mc/world/inventory/simulation/validation/FurnaceResultContainerValidation.h @@ -11,12 +11,6 @@ class ContainerScreenContext; // clang-format on class FurnaceResultContainerValidation : public ::ContainerValidationBase { -public: - // prevent constructor by default - FurnaceResultContainerValidation& operator=(FurnaceResultContainerValidation const&); - FurnaceResultContainerValidation(FurnaceResultContainerValidation const&); - FurnaceResultContainerValidation(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/inventory/simulation/validation/GrindstoneAdditionalContainerValidation.h b/src/mc/world/inventory/simulation/validation/GrindstoneAdditionalContainerValidation.h index 294c104b2c..fba4257490 100644 --- a/src/mc/world/inventory/simulation/validation/GrindstoneAdditionalContainerValidation.h +++ b/src/mc/world/inventory/simulation/validation/GrindstoneAdditionalContainerValidation.h @@ -12,12 +12,6 @@ class ItemStackBase; // clang-format on class GrindstoneAdditionalContainerValidation : public ::ContainerValidationBase { -public: - // prevent constructor by default - GrindstoneAdditionalContainerValidation& operator=(GrindstoneAdditionalContainerValidation const&); - GrindstoneAdditionalContainerValidation(GrindstoneAdditionalContainerValidation const&); - GrindstoneAdditionalContainerValidation(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/inventory/simulation/validation/GrindstoneContainerScreenValidator.h b/src/mc/world/inventory/simulation/validation/GrindstoneContainerScreenValidator.h index 35dac0afa5..27c8cab973 100644 --- a/src/mc/world/inventory/simulation/validation/GrindstoneContainerScreenValidator.h +++ b/src/mc/world/inventory/simulation/validation/GrindstoneContainerScreenValidator.h @@ -6,12 +6,6 @@ #include "mc/world/inventory/simulation/validation/ContainerScreenValidatorBase.h" class GrindstoneContainerScreenValidator : public ::ContainerScreenValidatorBase { -public: - // prevent constructor by default - GrindstoneContainerScreenValidator& operator=(GrindstoneContainerScreenValidator const&); - GrindstoneContainerScreenValidator(GrindstoneContainerScreenValidator const&); - GrindstoneContainerScreenValidator(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/inventory/simulation/validation/GrindstoneInputContainerValidation.h b/src/mc/world/inventory/simulation/validation/GrindstoneInputContainerValidation.h index 108fdb6b0d..836cb2ffc2 100644 --- a/src/mc/world/inventory/simulation/validation/GrindstoneInputContainerValidation.h +++ b/src/mc/world/inventory/simulation/validation/GrindstoneInputContainerValidation.h @@ -12,12 +12,6 @@ class ItemStackBase; // clang-format on class GrindstoneInputContainerValidation : public ::ContainerValidationBase { -public: - // prevent constructor by default - GrindstoneInputContainerValidation& operator=(GrindstoneInputContainerValidation const&); - GrindstoneInputContainerValidation(GrindstoneInputContainerValidation const&); - GrindstoneInputContainerValidation(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/inventory/simulation/validation/HUDContainerScreenValidator.h b/src/mc/world/inventory/simulation/validation/HUDContainerScreenValidator.h index 39997afcf1..bbe6b9c86d 100644 --- a/src/mc/world/inventory/simulation/validation/HUDContainerScreenValidator.h +++ b/src/mc/world/inventory/simulation/validation/HUDContainerScreenValidator.h @@ -6,12 +6,6 @@ #include "mc/world/inventory/simulation/validation/ContainerScreenValidatorBase.h" class HUDContainerScreenValidator : public ::ContainerScreenValidatorBase { -public: - // prevent constructor by default - HUDContainerScreenValidator& operator=(HUDContainerScreenValidator const&); - HUDContainerScreenValidator(HUDContainerScreenValidator const&); - HUDContainerScreenValidator(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/inventory/simulation/validation/HorseContainerScreenValidator.h b/src/mc/world/inventory/simulation/validation/HorseContainerScreenValidator.h index 6c9a56f946..255deb08ae 100644 --- a/src/mc/world/inventory/simulation/validation/HorseContainerScreenValidator.h +++ b/src/mc/world/inventory/simulation/validation/HorseContainerScreenValidator.h @@ -6,12 +6,6 @@ #include "mc/world/inventory/simulation/validation/ContainerScreenValidatorBase.h" class HorseContainerScreenValidator : public ::ContainerScreenValidatorBase { -public: - // prevent constructor by default - HorseContainerScreenValidator& operator=(HorseContainerScreenValidator const&); - HorseContainerScreenValidator(HorseContainerScreenValidator const&); - HorseContainerScreenValidator(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/inventory/simulation/validation/HotbarContainerValidation.h b/src/mc/world/inventory/simulation/validation/HotbarContainerValidation.h index a4099ba180..4d0a7f521e 100644 --- a/src/mc/world/inventory/simulation/validation/HotbarContainerValidation.h +++ b/src/mc/world/inventory/simulation/validation/HotbarContainerValidation.h @@ -13,12 +13,6 @@ class ItemStackBase; // clang-format on class HotbarContainerValidation : public ::ContainerValidationBase { -public: - // prevent constructor by default - HotbarContainerValidation& operator=(HotbarContainerValidation const&); - HotbarContainerValidation(HotbarContainerValidation const&); - HotbarContainerValidation(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/inventory/simulation/validation/InventoryContainerValidation.h b/src/mc/world/inventory/simulation/validation/InventoryContainerValidation.h index b26e1367aa..04fce2e809 100644 --- a/src/mc/world/inventory/simulation/validation/InventoryContainerValidation.h +++ b/src/mc/world/inventory/simulation/validation/InventoryContainerValidation.h @@ -13,12 +13,6 @@ class ItemStackBase; // clang-format on class InventoryContainerValidation : public ::ContainerValidationBase { -public: - // prevent constructor by default - InventoryContainerValidation& operator=(InventoryContainerValidation const&); - InventoryContainerValidation(InventoryContainerValidation const&); - InventoryContainerValidation(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/inventory/simulation/validation/LabTableContainerScreenValidator.h b/src/mc/world/inventory/simulation/validation/LabTableContainerScreenValidator.h index 4016359dc0..14658b7811 100644 --- a/src/mc/world/inventory/simulation/validation/LabTableContainerScreenValidator.h +++ b/src/mc/world/inventory/simulation/validation/LabTableContainerScreenValidator.h @@ -6,12 +6,6 @@ #include "mc/world/inventory/simulation/validation/ContainerScreenValidatorBase.h" class LabTableContainerScreenValidator : public ::ContainerScreenValidatorBase { -public: - // prevent constructor by default - LabTableContainerScreenValidator& operator=(LabTableContainerScreenValidator const&); - LabTableContainerScreenValidator(LabTableContainerScreenValidator const&); - LabTableContainerScreenValidator(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/inventory/simulation/validation/LabTableInputValidation.h b/src/mc/world/inventory/simulation/validation/LabTableInputValidation.h index b98d49eb34..8d262157f8 100644 --- a/src/mc/world/inventory/simulation/validation/LabTableInputValidation.h +++ b/src/mc/world/inventory/simulation/validation/LabTableInputValidation.h @@ -13,12 +13,6 @@ class ItemStackBase; // clang-format on class LabTableInputValidation : public ::ContainerValidationBase { -public: - // prevent constructor by default - LabTableInputValidation& operator=(LabTableInputValidation const&); - LabTableInputValidation(LabTableInputValidation const&); - LabTableInputValidation(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/inventory/simulation/validation/LevelEntityContainerValidation.h b/src/mc/world/inventory/simulation/validation/LevelEntityContainerValidation.h index 9836e9d789..8835e38534 100644 --- a/src/mc/world/inventory/simulation/validation/LevelEntityContainerValidation.h +++ b/src/mc/world/inventory/simulation/validation/LevelEntityContainerValidation.h @@ -12,12 +12,6 @@ class ContainerScreenContext; // clang-format on class LevelEntityContainerValidation : public ::ContainerValidationBase { -public: - // prevent constructor by default - LevelEntityContainerValidation& operator=(LevelEntityContainerValidation const&); - LevelEntityContainerValidation(LevelEntityContainerValidation const&); - LevelEntityContainerValidation(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/inventory/simulation/validation/LoomContainerScreenValidator.h b/src/mc/world/inventory/simulation/validation/LoomContainerScreenValidator.h index e50b909cea..0b40234b52 100644 --- a/src/mc/world/inventory/simulation/validation/LoomContainerScreenValidator.h +++ b/src/mc/world/inventory/simulation/validation/LoomContainerScreenValidator.h @@ -6,12 +6,6 @@ #include "mc/world/inventory/simulation/validation/ContainerScreenValidatorBase.h" class LoomContainerScreenValidator : public ::ContainerScreenValidatorBase { -public: - // prevent constructor by default - LoomContainerScreenValidator& operator=(LoomContainerScreenValidator const&); - LoomContainerScreenValidator(LoomContainerScreenValidator const&); - LoomContainerScreenValidator(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/inventory/simulation/validation/LoomDyeContainerValidation.h b/src/mc/world/inventory/simulation/validation/LoomDyeContainerValidation.h index 982d453a4c..deb04873e9 100644 --- a/src/mc/world/inventory/simulation/validation/LoomDyeContainerValidation.h +++ b/src/mc/world/inventory/simulation/validation/LoomDyeContainerValidation.h @@ -12,12 +12,6 @@ class ItemStackBase; // clang-format on class LoomDyeContainerValidation : public ::ContainerValidationBase { -public: - // prevent constructor by default - LoomDyeContainerValidation& operator=(LoomDyeContainerValidation const&); - LoomDyeContainerValidation(LoomDyeContainerValidation const&); - LoomDyeContainerValidation(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/inventory/simulation/validation/LoomInputContainerValidation.h b/src/mc/world/inventory/simulation/validation/LoomInputContainerValidation.h index faa2841d7f..c0671c7e19 100644 --- a/src/mc/world/inventory/simulation/validation/LoomInputContainerValidation.h +++ b/src/mc/world/inventory/simulation/validation/LoomInputContainerValidation.h @@ -12,12 +12,6 @@ class ItemStackBase; // clang-format on class LoomInputContainerValidation : public ::ContainerValidationBase { -public: - // prevent constructor by default - LoomInputContainerValidation& operator=(LoomInputContainerValidation const&); - LoomInputContainerValidation(LoomInputContainerValidation const&); - LoomInputContainerValidation(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/inventory/simulation/validation/LoomMaterialContainerValidation.h b/src/mc/world/inventory/simulation/validation/LoomMaterialContainerValidation.h index da3124ad13..75375dea9d 100644 --- a/src/mc/world/inventory/simulation/validation/LoomMaterialContainerValidation.h +++ b/src/mc/world/inventory/simulation/validation/LoomMaterialContainerValidation.h @@ -12,12 +12,6 @@ class ItemStackBase; // clang-format on class LoomMaterialContainerValidation : public ::ContainerValidationBase { -public: - // prevent constructor by default - LoomMaterialContainerValidation& operator=(LoomMaterialContainerValidation const&); - LoomMaterialContainerValidation(LoomMaterialContainerValidation const&); - LoomMaterialContainerValidation(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/inventory/simulation/validation/MaterialReducerContainerScreenValidator.h b/src/mc/world/inventory/simulation/validation/MaterialReducerContainerScreenValidator.h index 274ead72e0..9bd30177fa 100644 --- a/src/mc/world/inventory/simulation/validation/MaterialReducerContainerScreenValidator.h +++ b/src/mc/world/inventory/simulation/validation/MaterialReducerContainerScreenValidator.h @@ -6,12 +6,6 @@ #include "mc/world/inventory/simulation/validation/ContainerScreenValidatorBase.h" class MaterialReducerContainerScreenValidator : public ::ContainerScreenValidatorBase { -public: - // prevent constructor by default - MaterialReducerContainerScreenValidator& operator=(MaterialReducerContainerScreenValidator const&); - MaterialReducerContainerScreenValidator(MaterialReducerContainerScreenValidator const&); - MaterialReducerContainerScreenValidator(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/inventory/simulation/validation/MaterialReducerOutputValidation.h b/src/mc/world/inventory/simulation/validation/MaterialReducerOutputValidation.h index a62c4e75df..9488cb39cb 100644 --- a/src/mc/world/inventory/simulation/validation/MaterialReducerOutputValidation.h +++ b/src/mc/world/inventory/simulation/validation/MaterialReducerOutputValidation.h @@ -12,12 +12,6 @@ class ContainerScreenContext; // clang-format on class MaterialReducerOutputValidation : public ::ContainerValidationBase { -public: - // prevent constructor by default - MaterialReducerOutputValidation& operator=(MaterialReducerOutputValidation const&); - MaterialReducerOutputValidation(MaterialReducerOutputValidation const&); - MaterialReducerOutputValidation(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/inventory/simulation/validation/OffhandContainerValidation.h b/src/mc/world/inventory/simulation/validation/OffhandContainerValidation.h index 25022a3583..91d3374004 100644 --- a/src/mc/world/inventory/simulation/validation/OffhandContainerValidation.h +++ b/src/mc/world/inventory/simulation/validation/OffhandContainerValidation.h @@ -12,12 +12,6 @@ class ItemStackBase; // clang-format on class OffhandContainerValidation : public ::ContainerValidationBase { -public: - // prevent constructor by default - OffhandContainerValidation& operator=(OffhandContainerValidation const&); - OffhandContainerValidation(OffhandContainerValidation const&); - OffhandContainerValidation(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/inventory/simulation/validation/PreviewContainerValidation.h b/src/mc/world/inventory/simulation/validation/PreviewContainerValidation.h index 1d11eee21e..73d8a80fb2 100644 --- a/src/mc/world/inventory/simulation/validation/PreviewContainerValidation.h +++ b/src/mc/world/inventory/simulation/validation/PreviewContainerValidation.h @@ -13,12 +13,6 @@ class ItemStackBase; // clang-format on class PreviewContainerValidation : public ::ContainerValidationBase { -public: - // prevent constructor by default - PreviewContainerValidation& operator=(PreviewContainerValidation const&); - PreviewContainerValidation(PreviewContainerValidation const&); - PreviewContainerValidation(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/inventory/simulation/validation/ShulkerBoxContainerScreenValidator.h b/src/mc/world/inventory/simulation/validation/ShulkerBoxContainerScreenValidator.h index 54ae8bebe2..42e4060395 100644 --- a/src/mc/world/inventory/simulation/validation/ShulkerBoxContainerScreenValidator.h +++ b/src/mc/world/inventory/simulation/validation/ShulkerBoxContainerScreenValidator.h @@ -6,12 +6,6 @@ #include "mc/world/inventory/simulation/validation/ContainerScreenValidatorBase.h" class ShulkerBoxContainerScreenValidator : public ::ContainerScreenValidatorBase { -public: - // prevent constructor by default - ShulkerBoxContainerScreenValidator& operator=(ShulkerBoxContainerScreenValidator const&); - ShulkerBoxContainerScreenValidator(ShulkerBoxContainerScreenValidator const&); - ShulkerBoxContainerScreenValidator(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/inventory/simulation/validation/ShulkerBoxContainerValidation.h b/src/mc/world/inventory/simulation/validation/ShulkerBoxContainerValidation.h index 3f81da73db..e2abfb1602 100644 --- a/src/mc/world/inventory/simulation/validation/ShulkerBoxContainerValidation.h +++ b/src/mc/world/inventory/simulation/validation/ShulkerBoxContainerValidation.h @@ -13,12 +13,6 @@ class ItemStackBase; // clang-format on class ShulkerBoxContainerValidation : public ::ContainerValidationBase { -public: - // prevent constructor by default - ShulkerBoxContainerValidation& operator=(ShulkerBoxContainerValidation const&); - ShulkerBoxContainerValidation(ShulkerBoxContainerValidation const&); - ShulkerBoxContainerValidation(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/inventory/simulation/validation/SmithingTableContainerScreenValidator.h b/src/mc/world/inventory/simulation/validation/SmithingTableContainerScreenValidator.h index ffdc2e16b1..2e20fc6725 100644 --- a/src/mc/world/inventory/simulation/validation/SmithingTableContainerScreenValidator.h +++ b/src/mc/world/inventory/simulation/validation/SmithingTableContainerScreenValidator.h @@ -6,12 +6,6 @@ #include "mc/world/inventory/simulation/validation/ContainerScreenValidatorBase.h" class SmithingTableContainerScreenValidator : public ::ContainerScreenValidatorBase { -public: - // prevent constructor by default - SmithingTableContainerScreenValidator& operator=(SmithingTableContainerScreenValidator const&); - SmithingTableContainerScreenValidator(SmithingTableContainerScreenValidator const&); - SmithingTableContainerScreenValidator(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/inventory/simulation/validation/SmithingTableInputContainerValidation.h b/src/mc/world/inventory/simulation/validation/SmithingTableInputContainerValidation.h index d422d6f687..b398a3bffe 100644 --- a/src/mc/world/inventory/simulation/validation/SmithingTableInputContainerValidation.h +++ b/src/mc/world/inventory/simulation/validation/SmithingTableInputContainerValidation.h @@ -12,12 +12,6 @@ class ItemStackBase; // clang-format on class SmithingTableInputContainerValidation : public ::ContainerValidationBase { -public: - // prevent constructor by default - SmithingTableInputContainerValidation& operator=(SmithingTableInputContainerValidation const&); - SmithingTableInputContainerValidation(SmithingTableInputContainerValidation const&); - SmithingTableInputContainerValidation(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/inventory/simulation/validation/SmithingTableMaterialContainerValidation.h b/src/mc/world/inventory/simulation/validation/SmithingTableMaterialContainerValidation.h index 11359d753c..bbfdb0d6b8 100644 --- a/src/mc/world/inventory/simulation/validation/SmithingTableMaterialContainerValidation.h +++ b/src/mc/world/inventory/simulation/validation/SmithingTableMaterialContainerValidation.h @@ -12,12 +12,6 @@ class ItemStackBase; // clang-format on class SmithingTableMaterialContainerValidation : public ::ContainerValidationBase { -public: - // prevent constructor by default - SmithingTableMaterialContainerValidation& operator=(SmithingTableMaterialContainerValidation const&); - SmithingTableMaterialContainerValidation(SmithingTableMaterialContainerValidation const&); - SmithingTableMaterialContainerValidation(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/inventory/simulation/validation/SmithingTableTemplateContainerValidation.h b/src/mc/world/inventory/simulation/validation/SmithingTableTemplateContainerValidation.h index 4b3b2e850c..7288dfac2d 100644 --- a/src/mc/world/inventory/simulation/validation/SmithingTableTemplateContainerValidation.h +++ b/src/mc/world/inventory/simulation/validation/SmithingTableTemplateContainerValidation.h @@ -12,12 +12,6 @@ class ItemStackBase; // clang-format on class SmithingTableTemplateContainerValidation : public ::ContainerValidationBase { -public: - // prevent constructor by default - SmithingTableTemplateContainerValidation& operator=(SmithingTableTemplateContainerValidation const&); - SmithingTableTemplateContainerValidation(SmithingTableTemplateContainerValidation const&); - SmithingTableTemplateContainerValidation(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/inventory/simulation/validation/SmokerContainerScreenValidator.h b/src/mc/world/inventory/simulation/validation/SmokerContainerScreenValidator.h index ca57f3b759..40976305c6 100644 --- a/src/mc/world/inventory/simulation/validation/SmokerContainerScreenValidator.h +++ b/src/mc/world/inventory/simulation/validation/SmokerContainerScreenValidator.h @@ -6,12 +6,6 @@ #include "mc/world/inventory/simulation/validation/FurnaceContainerScreenValidator.h" class SmokerContainerScreenValidator : public ::FurnaceContainerScreenValidator { -public: - // prevent constructor by default - SmokerContainerScreenValidator& operator=(SmokerContainerScreenValidator const&); - SmokerContainerScreenValidator(SmokerContainerScreenValidator const&); - SmokerContainerScreenValidator(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/inventory/simulation/validation/StoneCutterContainerScreenValidator.h b/src/mc/world/inventory/simulation/validation/StoneCutterContainerScreenValidator.h index 27c72051e8..3d900219f3 100644 --- a/src/mc/world/inventory/simulation/validation/StoneCutterContainerScreenValidator.h +++ b/src/mc/world/inventory/simulation/validation/StoneCutterContainerScreenValidator.h @@ -17,12 +17,6 @@ struct RecipeNetIdTag; // clang-format on class StoneCutterContainerScreenValidator : public ::ContainerScreenValidatorBase { -public: - // prevent constructor by default - StoneCutterContainerScreenValidator& operator=(StoneCutterContainerScreenValidator const&); - StoneCutterContainerScreenValidator(StoneCutterContainerScreenValidator const&); - StoneCutterContainerScreenValidator(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/inventory/simulation/validation/StoneCutterInputContainerValidation.h b/src/mc/world/inventory/simulation/validation/StoneCutterInputContainerValidation.h index 1da7ac0d0a..f2edd1f0ce 100644 --- a/src/mc/world/inventory/simulation/validation/StoneCutterInputContainerValidation.h +++ b/src/mc/world/inventory/simulation/validation/StoneCutterInputContainerValidation.h @@ -11,12 +11,6 @@ class ContainerScreenContext; // clang-format on class StoneCutterInputContainerValidation : public ::ContainerValidationBase { -public: - // prevent constructor by default - StoneCutterInputContainerValidation& operator=(StoneCutterInputContainerValidation const&); - StoneCutterInputContainerValidation(StoneCutterInputContainerValidation const&); - StoneCutterInputContainerValidation(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/inventory/simulation/validation/Trade1ContainerScreenValidator.h b/src/mc/world/inventory/simulation/validation/Trade1ContainerScreenValidator.h index d5e2f0c052..63ab2457de 100644 --- a/src/mc/world/inventory/simulation/validation/Trade1ContainerScreenValidator.h +++ b/src/mc/world/inventory/simulation/validation/Trade1ContainerScreenValidator.h @@ -6,12 +6,6 @@ #include "mc/world/inventory/simulation/validation/ContainerScreenValidatorBase.h" class Trade1ContainerScreenValidator : public ::ContainerScreenValidatorBase { -public: - // prevent constructor by default - Trade1ContainerScreenValidator& operator=(Trade1ContainerScreenValidator const&); - Trade1ContainerScreenValidator(Trade1ContainerScreenValidator const&); - Trade1ContainerScreenValidator(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/inventory/simulation/validation/Trade2ContainerScreenValidator.h b/src/mc/world/inventory/simulation/validation/Trade2ContainerScreenValidator.h index 07dc4e9d96..7d9f81cab6 100644 --- a/src/mc/world/inventory/simulation/validation/Trade2ContainerScreenValidator.h +++ b/src/mc/world/inventory/simulation/validation/Trade2ContainerScreenValidator.h @@ -6,12 +6,6 @@ #include "mc/world/inventory/simulation/validation/ContainerScreenValidatorBase.h" class Trade2ContainerScreenValidator : public ::ContainerScreenValidatorBase { -public: - // prevent constructor by default - Trade2ContainerScreenValidator& operator=(Trade2ContainerScreenValidator const&); - Trade2ContainerScreenValidator(Trade2ContainerScreenValidator const&); - Trade2ContainerScreenValidator(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/inventory/simulation/validation/Trade2Ingredient1ContainerValidation.h b/src/mc/world/inventory/simulation/validation/Trade2Ingredient1ContainerValidation.h index db2baadf8a..0ae3be3005 100644 --- a/src/mc/world/inventory/simulation/validation/Trade2Ingredient1ContainerValidation.h +++ b/src/mc/world/inventory/simulation/validation/Trade2Ingredient1ContainerValidation.h @@ -11,12 +11,6 @@ class ContainerScreenContext; // clang-format on class Trade2Ingredient1ContainerValidation : public ::ContainerValidationBase { -public: - // prevent constructor by default - Trade2Ingredient1ContainerValidation& operator=(Trade2Ingredient1ContainerValidation const&); - Trade2Ingredient1ContainerValidation(Trade2Ingredient1ContainerValidation const&); - Trade2Ingredient1ContainerValidation(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/inventory/simulation/validation/Trade2Ingredient2ContainerValidation.h b/src/mc/world/inventory/simulation/validation/Trade2Ingredient2ContainerValidation.h index 5937bd9edc..01ee5c74ed 100644 --- a/src/mc/world/inventory/simulation/validation/Trade2Ingredient2ContainerValidation.h +++ b/src/mc/world/inventory/simulation/validation/Trade2Ingredient2ContainerValidation.h @@ -11,12 +11,6 @@ class ContainerScreenContext; // clang-format on class Trade2Ingredient2ContainerValidation : public ::ContainerValidationBase { -public: - // prevent constructor by default - Trade2Ingredient2ContainerValidation& operator=(Trade2Ingredient2ContainerValidation const&); - Trade2Ingredient2ContainerValidation(Trade2Ingredient2ContainerValidation const&); - Trade2Ingredient2ContainerValidation(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/inventory/transaction/IItemUseTransactionSubject.h b/src/mc/world/inventory/transaction/IItemUseTransactionSubject.h index ca29c5ba19..87f1b29c66 100644 --- a/src/mc/world/inventory/transaction/IItemUseTransactionSubject.h +++ b/src/mc/world/inventory/transaction/IItemUseTransactionSubject.h @@ -20,12 +20,6 @@ struct PlayerInventorySlotData; // clang-format on class IItemUseTransactionSubject { -public: - // prevent constructor by default - IItemUseTransactionSubject& operator=(IItemUseTransactionSubject const&); - IItemUseTransactionSubject(IItemUseTransactionSubject const&); - IItemUseTransactionSubject(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/inventory/transaction/ILegacyItemUseTransactionSubject.h b/src/mc/world/inventory/transaction/ILegacyItemUseTransactionSubject.h index e2d34f4754..801d346247 100644 --- a/src/mc/world/inventory/transaction/ILegacyItemUseTransactionSubject.h +++ b/src/mc/world/inventory/transaction/ILegacyItemUseTransactionSubject.h @@ -8,12 +8,6 @@ class BlockPos; // clang-format on class ILegacyItemUseTransactionSubject { -public: - // prevent constructor by default - ILegacyItemUseTransactionSubject& operator=(ILegacyItemUseTransactionSubject const&); - ILegacyItemUseTransactionSubject(ILegacyItemUseTransactionSubject const&); - ILegacyItemUseTransactionSubject(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/item/BedrockItems.h b/src/mc/world/item/BedrockItems.h index a659390bf5..0fe9d95e3f 100644 --- a/src/mc/world/item/BedrockItems.h +++ b/src/mc/world/item/BedrockItems.h @@ -12,12 +12,6 @@ class ItemRegistryRef; // clang-format on class BedrockItems { -public: - // prevent constructor by default - BedrockItems& operator=(BedrockItems const&); - BedrockItems(BedrockItems const&); - BedrockItems(); - public: // static functions // NOLINTBEGIN diff --git a/src/mc/world/item/CreativeItemNetIdTag.h b/src/mc/world/item/CreativeItemNetIdTag.h index 8a29cff8e7..77767c5a62 100644 --- a/src/mc/world/item/CreativeItemNetIdTag.h +++ b/src/mc/world/item/CreativeItemNetIdTag.h @@ -2,10 +2,4 @@ #include "mc/_HeaderOutputPredefine.h" -struct CreativeItemNetIdTag { -public: - // prevent constructor by default - CreativeItemNetIdTag& operator=(CreativeItemNetIdTag const&); - CreativeItemNetIdTag(CreativeItemNetIdTag const&); - CreativeItemNetIdTag(); -}; +struct CreativeItemNetIdTag {}; diff --git a/src/mc/world/item/DyeColorUtil.h b/src/mc/world/item/DyeColorUtil.h index ee42d0f2ee..5c1da7828d 100644 --- a/src/mc/world/item/DyeColorUtil.h +++ b/src/mc/world/item/DyeColorUtil.h @@ -11,12 +11,6 @@ class Random; // clang-format on class DyeColorUtil { -public: - // prevent constructor by default - DyeColorUtil& operator=(DyeColorUtil const&); - DyeColorUtil(DyeColorUtil const&); - DyeColorUtil(); - public: // static functions // NOLINTBEGIN diff --git a/src/mc/world/item/ILegacyItemTriggerHandler.h b/src/mc/world/item/ILegacyItemTriggerHandler.h index 281454d05a..f6fba12e29 100644 --- a/src/mc/world/item/ILegacyItemTriggerHandler.h +++ b/src/mc/world/item/ILegacyItemTriggerHandler.h @@ -11,12 +11,6 @@ class RenderParams; // clang-format on class ILegacyItemTriggerHandler { -public: - // prevent constructor by default - ILegacyItemTriggerHandler& operator=(ILegacyItemTriggerHandler const&); - ILegacyItemTriggerHandler(ILegacyItemTriggerHandler const&); - ILegacyItemTriggerHandler(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/item/ItemAcquisitionMethodMap.h b/src/mc/world/item/ItemAcquisitionMethodMap.h index 88a66785c1..750a04ad00 100644 --- a/src/mc/world/item/ItemAcquisitionMethodMap.h +++ b/src/mc/world/item/ItemAcquisitionMethodMap.h @@ -7,12 +7,6 @@ #include "mc/world/item/ItemAcquisitionMethod.h" class ItemAcquisitionMethodMap { -public: - // prevent constructor by default - ItemAcquisitionMethodMap& operator=(ItemAcquisitionMethodMap const&); - ItemAcquisitionMethodMap(ItemAcquisitionMethodMap const&); - ItemAcquisitionMethodMap(); - public: // static variables // NOLINTBEGIN diff --git a/src/mc/world/item/ItemEventResponseFactory.h b/src/mc/world/item/ItemEventResponseFactory.h index 3a6e6981ae..317b88e298 100644 --- a/src/mc/world/item/ItemEventResponseFactory.h +++ b/src/mc/world/item/ItemEventResponseFactory.h @@ -12,12 +12,6 @@ class IPackLoadContext; // clang-format on class ItemEventResponseFactory : public ::EventResponseFactory, public ::IPackLoadScoped { -public: - // prevent constructor by default - ItemEventResponseFactory& operator=(ItemEventResponseFactory const&); - ItemEventResponseFactory(ItemEventResponseFactory const&); - ItemEventResponseFactory(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/item/ItemLockHelper.h b/src/mc/world/item/ItemLockHelper.h index 505794ff27..47dd88fd3b 100644 --- a/src/mc/world/item/ItemLockHelper.h +++ b/src/mc/world/item/ItemLockHelper.h @@ -13,12 +13,6 @@ namespace Json { class Value; } // clang-format on class ItemLockHelper { -public: - // prevent constructor by default - ItemLockHelper& operator=(ItemLockHelper const&); - ItemLockHelper(ItemLockHelper const&); - ItemLockHelper(); - public: // static functions // NOLINTBEGIN diff --git a/src/mc/world/item/ItemStackBaseComponentsHelper.h b/src/mc/world/item/ItemStackBaseComponentsHelper.h index 0c69a28e4b..93ba97992f 100644 --- a/src/mc/world/item/ItemStackBaseComponentsHelper.h +++ b/src/mc/world/item/ItemStackBaseComponentsHelper.h @@ -9,12 +9,6 @@ namespace Json { class Value; } // clang-format on class ItemStackBaseComponentsHelper { -public: - // prevent constructor by default - ItemStackBaseComponentsHelper& operator=(ItemStackBaseComponentsHelper const&); - ItemStackBaseComponentsHelper(ItemStackBaseComponentsHelper const&); - ItemStackBaseComponentsHelper(); - public: // static functions // NOLINTBEGIN diff --git a/src/mc/world/item/ItemUseMethodMap.h b/src/mc/world/item/ItemUseMethodMap.h index 22c3817150..e6a37e4f45 100644 --- a/src/mc/world/item/ItemUseMethodMap.h +++ b/src/mc/world/item/ItemUseMethodMap.h @@ -7,12 +7,6 @@ #include "mc/world/item/ItemUseMethod.h" class ItemUseMethodMap { -public: - // prevent constructor by default - ItemUseMethodMap& operator=(ItemUseMethodMap const&); - ItemUseMethodMap(ItemUseMethodMap const&); - ItemUseMethodMap(); - public: // static functions // NOLINTBEGIN diff --git a/src/mc/world/item/ItemUtilities.h b/src/mc/world/item/ItemUtilities.h index 98b592a391..947cfce615 100644 --- a/src/mc/world/item/ItemUtilities.h +++ b/src/mc/world/item/ItemUtilities.h @@ -2,10 +2,4 @@ #include "mc/_HeaderOutputPredefine.h" -class ItemUtilities { -public: - // prevent constructor by default - ItemUtilities& operator=(ItemUtilities const&); - ItemUtilities(ItemUtilities const&); - ItemUtilities(); -}; +class ItemUtilities {}; diff --git a/src/mc/world/item/SortItemInstanceIdAux.h b/src/mc/world/item/SortItemInstanceIdAux.h index 0ba0400456..e2f1c611fc 100644 --- a/src/mc/world/item/SortItemInstanceIdAux.h +++ b/src/mc/world/item/SortItemInstanceIdAux.h @@ -8,12 +8,6 @@ class ItemInstance; // clang-format on struct SortItemInstanceIdAux { -public: - // prevent constructor by default - SortItemInstanceIdAux& operator=(SortItemInstanceIdAux const&); - SortItemInstanceIdAux(SortItemInstanceIdAux const&); - SortItemInstanceIdAux(); - public: // member functions // NOLINTBEGIN diff --git a/src/mc/world/item/UseAnimationUtils.h b/src/mc/world/item/UseAnimationUtils.h index 9bdbd1d033..0b3b8c4302 100644 --- a/src/mc/world/item/UseAnimationUtils.h +++ b/src/mc/world/item/UseAnimationUtils.h @@ -11,12 +11,6 @@ namespace cereal { struct ReflectionCtx; } // clang-format on class UseAnimationUtils { -public: - // prevent constructor by default - UseAnimationUtils& operator=(UseAnimationUtils const&); - UseAnimationUtils(UseAnimationUtils const&); - UseAnimationUtils(); - public: // static functions // NOLINTBEGIN diff --git a/src/mc/world/item/VanillaItemTags.h b/src/mc/world/item/VanillaItemTags.h index 54cd218193..577f759ad7 100644 --- a/src/mc/world/item/VanillaItemTags.h +++ b/src/mc/world/item/VanillaItemTags.h @@ -8,12 +8,6 @@ struct ItemTag; // clang-format on class VanillaItemTags { -public: - // prevent constructor by default - VanillaItemTags& operator=(VanillaItemTags const&); - VanillaItemTags(VanillaItemTags const&); - VanillaItemTags(); - public: // static variables // NOLINTBEGIN diff --git a/src/mc/world/item/VanillaItemTiers.h b/src/mc/world/item/VanillaItemTiers.h index 8b4a0bc260..4794d2947c 100644 --- a/src/mc/world/item/VanillaItemTiers.h +++ b/src/mc/world/item/VanillaItemTiers.h @@ -12,12 +12,6 @@ class ItemStack; // clang-format on class VanillaItemTiers { -public: - // prevent constructor by default - VanillaItemTiers& operator=(VanillaItemTiers const&); - VanillaItemTiers(VanillaItemTiers const&); - VanillaItemTiers(); - public: // static functions // NOLINTBEGIN diff --git a/src/mc/world/item/VanillaItems.h b/src/mc/world/item/VanillaItems.h index d1989cebd2..b7046e3086 100644 --- a/src/mc/world/item/VanillaItems.h +++ b/src/mc/world/item/VanillaItems.h @@ -15,12 +15,6 @@ namespace cereal { struct ReflectionCtx; } // clang-format on class VanillaItems { -public: - // prevent constructor by default - VanillaItems& operator=(VanillaItems const&); - VanillaItems(VanillaItems const&); - VanillaItems(); - public: // static functions // NOLINTBEGIN diff --git a/src/mc/world/item/alchemy/PotionBrewing.h b/src/mc/world/item/alchemy/PotionBrewing.h index 21dad9e8a3..5ece68013a 100644 --- a/src/mc/world/item/alchemy/PotionBrewing.h +++ b/src/mc/world/item/alchemy/PotionBrewing.h @@ -50,19 +50,7 @@ class PotionBrewing { }; template - class Mix { - public: - // prevent constructor by default - Mix& operator=(Mix const&); - Mix(Mix const&); - Mix(); - }; - -public: - // prevent constructor by default - PotionBrewing& operator=(PotionBrewing const&); - PotionBrewing(PotionBrewing const&); - PotionBrewing(); + class Mix {}; public: // static functions diff --git a/src/mc/world/item/alchemy/PotionTypeEnumHasher.h b/src/mc/world/item/alchemy/PotionTypeEnumHasher.h index 5040799d5d..16735f6204 100644 --- a/src/mc/world/item/alchemy/PotionTypeEnumHasher.h +++ b/src/mc/world/item/alchemy/PotionTypeEnumHasher.h @@ -2,10 +2,4 @@ #include "mc/_HeaderOutputPredefine.h" -struct PotionTypeEnumHasher { -public: - // prevent constructor by default - PotionTypeEnumHasher& operator=(PotionTypeEnumHasher const&); - PotionTypeEnumHasher(PotionTypeEnumHasher const&); - PotionTypeEnumHasher(); -}; +struct PotionTypeEnumHasher {}; diff --git a/src/mc/world/item/components/ArmorItemComponent.h b/src/mc/world/item/components/ArmorItemComponent.h index 1fc446e85d..de699ef091 100644 --- a/src/mc/world/item/components/ArmorItemComponent.h +++ b/src/mc/world/item/components/ArmorItemComponent.h @@ -15,11 +15,6 @@ namespace cereal { struct ReflectionCtx; } // clang-format on class ArmorItemComponent : public ::NetworkedItemComponent<::ArmorItemComponent> { -public: - // prevent constructor by default - ArmorItemComponent& operator=(ArmorItemComponent const&); - ArmorItemComponent(ArmorItemComponent const&); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/item/components/BetaItemComponentData.h b/src/mc/world/item/components/BetaItemComponentData.h index eaca1836dc..9201722d01 100644 --- a/src/mc/world/item/components/BetaItemComponentData.h +++ b/src/mc/world/item/components/BetaItemComponentData.h @@ -8,12 +8,6 @@ namespace Puv { class VersionRange; } // clang-format on struct BetaItemComponentData { -public: - // prevent constructor by default - BetaItemComponentData& operator=(BetaItemComponentData const&); - BetaItemComponentData(BetaItemComponentData const&); - BetaItemComponentData(); - public: // static variables // NOLINTBEGIN diff --git a/src/mc/world/item/components/CameraCallbacks.h b/src/mc/world/item/components/CameraCallbacks.h index 8d474026e0..f3075edfbb 100644 --- a/src/mc/world/item/components/CameraCallbacks.h +++ b/src/mc/world/item/components/CameraCallbacks.h @@ -9,12 +9,6 @@ class Player; // clang-format on class CameraCallbacks { -public: - // prevent constructor by default - CameraCallbacks& operator=(CameraCallbacks const&); - CameraCallbacks(CameraCallbacks const&); - CameraCallbacks(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/item/components/ComponentItemUpgraderToStrict.h b/src/mc/world/item/components/ComponentItemUpgraderToStrict.h index 8e64687e4f..d70451d47b 100644 --- a/src/mc/world/item/components/ComponentItemUpgraderToStrict.h +++ b/src/mc/world/item/components/ComponentItemUpgraderToStrict.h @@ -11,12 +11,6 @@ namespace Puv { class LoadResultAny; } // clang-format on class ComponentItemUpgraderToStrict : public ::Puv::Upgrader { -public: - // prevent constructor by default - ComponentItemUpgraderToStrict& operator=(ComponentItemUpgraderToStrict const&); - ComponentItemUpgraderToStrict(ComponentItemUpgraderToStrict const&); - ComponentItemUpgraderToStrict(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/item/components/ICameraItemComponent.h b/src/mc/world/item/components/ICameraItemComponent.h index 2234532e08..ae1cc8e500 100644 --- a/src/mc/world/item/components/ICameraItemComponent.h +++ b/src/mc/world/item/components/ICameraItemComponent.h @@ -13,12 +13,6 @@ class Vec3; // clang-format on class ICameraItemComponent { -public: - // prevent constructor by default - ICameraItemComponent& operator=(ICameraItemComponent const&); - ICameraItemComponent(ICameraItemComponent const&); - ICameraItemComponent(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/item/components/IFoodItemComponent.h b/src/mc/world/item/components/IFoodItemComponent.h index f73960ec9d..86ed0861aa 100644 --- a/src/mc/world/item/components/IFoodItemComponent.h +++ b/src/mc/world/item/components/IFoodItemComponent.h @@ -15,12 +15,6 @@ class Player; // clang-format on class IFoodItemComponent { -public: - // prevent constructor by default - IFoodItemComponent& operator=(IFoodItemComponent const&); - IFoodItemComponent(IFoodItemComponent const&); - IFoodItemComponent(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/item/components/IItemComponentLegacyFactoryData.h b/src/mc/world/item/components/IItemComponentLegacyFactoryData.h index 0632914e76..220d771ed2 100644 --- a/src/mc/world/item/components/IItemComponentLegacyFactoryData.h +++ b/src/mc/world/item/components/IItemComponentLegacyFactoryData.h @@ -30,12 +30,6 @@ struct IItemComponentLegacyFactoryData { // NOLINTEND }; -public: - // prevent constructor by default - IItemComponentLegacyFactoryData& operator=(IItemComponentLegacyFactoryData const&); - IItemComponentLegacyFactoryData(IItemComponentLegacyFactoryData const&); - IItemComponentLegacyFactoryData(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/item/components/NetworkedItemComponent.h b/src/mc/world/item/components/NetworkedItemComponent.h index 9f8d9190bb..8c25a855c4 100644 --- a/src/mc/world/item/components/NetworkedItemComponent.h +++ b/src/mc/world/item/components/NetworkedItemComponent.h @@ -3,10 +3,4 @@ #include "mc/_HeaderOutputPredefine.h" template -class NetworkedItemComponent { -public: - // prevent constructor by default - NetworkedItemComponent& operator=(NetworkedItemComponent const&); - NetworkedItemComponent(NetworkedItemComponent const&); - NetworkedItemComponent(); -}; +class NetworkedItemComponent {}; diff --git a/src/mc/world/item/components/armor_item_component_versioning/UpgradeTo12020.h b/src/mc/world/item/components/armor_item_component_versioning/UpgradeTo12020.h index 3b0b86ceb1..a6a59b2d09 100644 --- a/src/mc/world/item/components/armor_item_component_versioning/UpgradeTo12020.h +++ b/src/mc/world/item/components/armor_item_component_versioning/UpgradeTo12020.h @@ -13,11 +13,6 @@ class SemVersion; namespace ArmorItemComponentVersioning { class UpgradeTo12020 : public ::ItemCerealSchemaUpgrade { -public: - // prevent constructor by default - UpgradeTo12020& operator=(UpgradeTo12020 const&); - UpgradeTo12020(UpgradeTo12020 const&); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/item/components/durability_item_component_versioning/UpgradeTo118.h b/src/mc/world/item/components/durability_item_component_versioning/UpgradeTo118.h index 56b0fc3633..ef2a8dc052 100644 --- a/src/mc/world/item/components/durability_item_component_versioning/UpgradeTo118.h +++ b/src/mc/world/item/components/durability_item_component_versioning/UpgradeTo118.h @@ -13,11 +13,6 @@ class SemVersion; namespace DurabilityItemComponentVersioning { class UpgradeTo118 : public ::ItemCerealSchemaUpgrade { -public: - // prevent constructor by default - UpgradeTo118& operator=(UpgradeTo118 const&); - UpgradeTo118(UpgradeTo118 const&); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/item/components/food_item_versioning/FoodItem118Upgrade.h b/src/mc/world/item/components/food_item_versioning/FoodItem118Upgrade.h index 1bf9744294..55fa93f5fb 100644 --- a/src/mc/world/item/components/food_item_versioning/FoodItem118Upgrade.h +++ b/src/mc/world/item/components/food_item_versioning/FoodItem118Upgrade.h @@ -13,11 +13,6 @@ class SemVersion; namespace FoodItemVersioning { class FoodItem118Upgrade : public ::ItemCerealSchemaUpgrade { -public: - // prevent constructor by default - FoodItem118Upgrade& operator=(FoodItem118Upgrade const&); - FoodItem118Upgrade(FoodItem118Upgrade const&); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/item/components/publisher_item_component/MiningBlock.h b/src/mc/world/item/components/publisher_item_component/MiningBlock.h index 1945426837..328f21fcc2 100644 --- a/src/mc/world/item/components/publisher_item_component/MiningBlock.h +++ b/src/mc/world/item/components/publisher_item_component/MiningBlock.h @@ -20,12 +20,6 @@ class MiningBlock : public ::ItemComponent, public ::Bedrock::PubSub::Publisher< void(bool&, ::ItemStack&, ::Block const&, int, int, int, ::Actor&), ::Bedrock::PubSub::ThreadModel::MultiThreaded> { -public: - // prevent constructor by default - MiningBlock& operator=(MiningBlock const&); - MiningBlock(MiningBlock const&); - MiningBlock(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/item/components/publisher_item_component/OnBeforeDurabilityDamage.h b/src/mc/world/item/components/publisher_item_component/OnBeforeDurabilityDamage.h index 25e05598ab..46fa04d833 100644 --- a/src/mc/world/item/components/publisher_item_component/OnBeforeDurabilityDamage.h +++ b/src/mc/world/item/components/publisher_item_component/OnBeforeDurabilityDamage.h @@ -20,12 +20,6 @@ class OnBeforeDurabilityDamage : public ::ItemComponent, public ::Bedrock::PubSub:: Publisher { -public: - // prevent constructor by default - OnBeforeDurabilityDamage& operator=(OnBeforeDurabilityDamage const&); - OnBeforeDurabilityDamage(OnBeforeDurabilityDamage const&); - OnBeforeDurabilityDamage(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/item/components/publisher_item_component/OnHitActor.h b/src/mc/world/item/components/publisher_item_component/OnHitActor.h index c04af80918..65699141a5 100644 --- a/src/mc/world/item/components/publisher_item_component/OnHitActor.h +++ b/src/mc/world/item/components/publisher_item_component/OnHitActor.h @@ -19,12 +19,6 @@ namespace PublisherItemComponent { class OnHitActor : public ::ItemComponent, public ::Bedrock::PubSub:: Publisher { -public: - // prevent constructor by default - OnHitActor& operator=(OnHitActor const&); - OnHitActor(OnHitActor const&); - OnHitActor(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/item/components/publisher_item_component/OnHitBlock.h b/src/mc/world/item/components/publisher_item_component/OnHitBlock.h index 54138a6796..1368713b65 100644 --- a/src/mc/world/item/components/publisher_item_component/OnHitBlock.h +++ b/src/mc/world/item/components/publisher_item_component/OnHitBlock.h @@ -21,12 +21,6 @@ class OnHitBlock : public ::ItemComponent, public ::Bedrock::PubSub::Publisher< void(::ItemStack&, ::Block const&, ::BlockPos const&, ::Mob&), ::Bedrock::PubSub::ThreadModel::MultiThreaded> { -public: - // prevent constructor by default - OnHitBlock& operator=(OnHitBlock const&); - OnHitBlock(OnHitBlock const&); - OnHitBlock(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/item/components/publisher_item_component/OnHurtActor.h b/src/mc/world/item/components/publisher_item_component/OnHurtActor.h index 3d2ae16fc6..db09503da1 100644 --- a/src/mc/world/item/components/publisher_item_component/OnHurtActor.h +++ b/src/mc/world/item/components/publisher_item_component/OnHurtActor.h @@ -19,12 +19,6 @@ namespace PublisherItemComponent { class OnHurtActor : public ::ItemComponent, public ::Bedrock::PubSub:: Publisher { -public: - // prevent constructor by default - OnHurtActor& operator=(OnHurtActor const&); - OnHurtActor(OnHurtActor const&); - OnHurtActor(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/item/components/publisher_item_component/OnUse.h b/src/mc/world/item/components/publisher_item_component/OnUse.h index 255b6c1626..5b729855ef 100644 --- a/src/mc/world/item/components/publisher_item_component/OnUse.h +++ b/src/mc/world/item/components/publisher_item_component/OnUse.h @@ -18,12 +18,6 @@ namespace PublisherItemComponent { class OnUse : public ::ItemComponent, public ::Bedrock::PubSub:: Publisher { -public: - // prevent constructor by default - OnUse& operator=(OnUse const&); - OnUse(OnUse const&); - OnUse(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/item/components/publisher_item_component/UseTimeDepleted.h b/src/mc/world/item/components/publisher_item_component/UseTimeDepleted.h index 1f0361ee3e..89c898612a 100644 --- a/src/mc/world/item/components/publisher_item_component/UseTimeDepleted.h +++ b/src/mc/world/item/components/publisher_item_component/UseTimeDepleted.h @@ -21,12 +21,6 @@ class UseTimeDepleted : public ::ItemComponent, public ::Bedrock::PubSub::Publisher< void(::ItemUseMethod&, ::ItemStack const&, ::ItemStack&, ::Player&, ::Level&), ::Bedrock::PubSub::ThreadModel::MultiThreaded> { -public: - // prevent constructor by default - UseTimeDepleted& operator=(UseTimeDepleted const&); - UseTimeDepleted(UseTimeDepleted const&); - UseTimeDepleted(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/item/components/repairable_item_component_versioning/UpgradeTo118.h b/src/mc/world/item/components/repairable_item_component_versioning/UpgradeTo118.h index 07ae9da6c3..16bd16999d 100644 --- a/src/mc/world/item/components/repairable_item_component_versioning/UpgradeTo118.h +++ b/src/mc/world/item/components/repairable_item_component_versioning/UpgradeTo118.h @@ -13,11 +13,6 @@ class SemVersion; namespace RepairableItemComponentVersioning { class UpgradeTo118 : public ::ItemCerealSchemaUpgrade { -public: - // prevent constructor by default - UpgradeTo118& operator=(UpgradeTo118 const&); - UpgradeTo118(UpgradeTo118 const&); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/item/components/wearable_item_component_versioning/UpgradeTo12020.h b/src/mc/world/item/components/wearable_item_component_versioning/UpgradeTo12020.h index dcc8791c8e..51edf50a39 100644 --- a/src/mc/world/item/components/wearable_item_component_versioning/UpgradeTo12020.h +++ b/src/mc/world/item/components/wearable_item_component_versioning/UpgradeTo12020.h @@ -8,11 +8,6 @@ namespace WearableItemComponentVersioning { class UpgradeTo12020 : public ::ItemCerealSchemaUpgrade { -public: - // prevent constructor by default - UpgradeTo12020& operator=(UpgradeTo12020 const&); - UpgradeTo12020(UpgradeTo12020 const&); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/item/crafting/ChemistryRecipes.h b/src/mc/world/item/crafting/ChemistryRecipes.h index e5a48ca666..1008eb8f1f 100644 --- a/src/mc/world/item/crafting/ChemistryRecipes.h +++ b/src/mc/world/item/crafting/ChemistryRecipes.h @@ -8,12 +8,6 @@ class Recipes; // clang-format on class ChemistryRecipes { -public: - // prevent constructor by default - ChemistryRecipes& operator=(ChemistryRecipes const&); - ChemistryRecipes(ChemistryRecipes const&); - ChemistryRecipes(); - public: // static functions // NOLINTBEGIN diff --git a/src/mc/world/item/crafting/MultiRecipe.h b/src/mc/world/item/crafting/MultiRecipe.h index 6a8371a1a3..b863fe1307 100644 --- a/src/mc/world/item/crafting/MultiRecipe.h +++ b/src/mc/world/item/crafting/MultiRecipe.h @@ -11,12 +11,6 @@ class HashedString; // clang-format on class MultiRecipe : public ::Recipe { -public: - // prevent constructor by default - MultiRecipe& operator=(MultiRecipe const&); - MultiRecipe(MultiRecipe const&); - MultiRecipe(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/item/crafting/RecipesMinEngineVersionUtils.h b/src/mc/world/item/crafting/RecipesMinEngineVersionUtils.h index bdc1b71f39..6d7a851af1 100644 --- a/src/mc/world/item/crafting/RecipesMinEngineVersionUtils.h +++ b/src/mc/world/item/crafting/RecipesMinEngineVersionUtils.h @@ -8,12 +8,6 @@ class MinEngineVersion; // clang-format on class RecipesMinEngineVersionUtils { -public: - // prevent constructor by default - RecipesMinEngineVersionUtils& operator=(RecipesMinEngineVersionUtils const&); - RecipesMinEngineVersionUtils(RecipesMinEngineVersionUtils const&); - RecipesMinEngineVersionUtils(); - public: // static functions // NOLINTBEGIN diff --git a/src/mc/world/item/crafting/ShapedChemistryRecipe.h b/src/mc/world/item/crafting/ShapedChemistryRecipe.h index 8def3856df..670cb077ff 100644 --- a/src/mc/world/item/crafting/ShapedChemistryRecipe.h +++ b/src/mc/world/item/crafting/ShapedChemistryRecipe.h @@ -13,12 +13,6 @@ namespace mce { class UUID; } // clang-format on class ShapedChemistryRecipe : public ::ShapedRecipe { -public: - // prevent constructor by default - ShapedChemistryRecipe& operator=(ShapedChemistryRecipe const&); - ShapedChemistryRecipe(ShapedChemistryRecipe const&); - ShapedChemistryRecipe(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/item/crafting/ShapelessChemistryRecipe.h b/src/mc/world/item/crafting/ShapelessChemistryRecipe.h index d4839e9df2..e95d479cfc 100644 --- a/src/mc/world/item/crafting/ShapelessChemistryRecipe.h +++ b/src/mc/world/item/crafting/ShapelessChemistryRecipe.h @@ -13,12 +13,6 @@ namespace mce { class UUID; } // clang-format on class ShapelessChemistryRecipe : public ::ShapelessRecipe { -public: - // prevent constructor by default - ShapelessChemistryRecipe& operator=(ShapelessChemistryRecipe const&); - ShapelessChemistryRecipe(ShapelessChemistryRecipe const&); - ShapelessChemistryRecipe(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/item/crafting/ShapelessRecipe.h b/src/mc/world/item/crafting/ShapelessRecipe.h index ad40b09075..839ce80167 100644 --- a/src/mc/world/item/crafting/ShapelessRecipe.h +++ b/src/mc/world/item/crafting/ShapelessRecipe.h @@ -14,12 +14,6 @@ class RecipeIngredient; // clang-format on class ShapelessRecipe : public ::Recipe { -public: - // prevent constructor by default - ShapelessRecipe& operator=(ShapelessRecipe const&); - ShapelessRecipe(ShapelessRecipe const&); - ShapelessRecipe(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/item/enchanting/BowEnchant.h b/src/mc/world/item/enchanting/BowEnchant.h index 167d82fece..75c0d5680c 100644 --- a/src/mc/world/item/enchanting/BowEnchant.h +++ b/src/mc/world/item/enchanting/BowEnchant.h @@ -6,12 +6,6 @@ #include "mc/world/item/enchanting/Enchant.h" class BowEnchant : public ::Enchant { -public: - // prevent constructor by default - BowEnchant& operator=(BowEnchant const&); - BowEnchant(BowEnchant const&); - BowEnchant(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/item/enchanting/BreachEnchant.h b/src/mc/world/item/enchanting/BreachEnchant.h index 7010a9e175..a4685d7cba 100644 --- a/src/mc/world/item/enchanting/BreachEnchant.h +++ b/src/mc/world/item/enchanting/BreachEnchant.h @@ -11,12 +11,6 @@ class Actor; // clang-format on class BreachEnchant : public ::Enchant { -public: - // prevent constructor by default - BreachEnchant& operator=(BreachEnchant const&); - BreachEnchant(BreachEnchant const&); - BreachEnchant(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/item/enchanting/CrossbowEnchant.h b/src/mc/world/item/enchanting/CrossbowEnchant.h index c088a44c22..c75fa39ddc 100644 --- a/src/mc/world/item/enchanting/CrossbowEnchant.h +++ b/src/mc/world/item/enchanting/CrossbowEnchant.h @@ -6,12 +6,6 @@ #include "mc/world/item/enchanting/Enchant.h" class CrossbowEnchant : public ::Enchant { -public: - // prevent constructor by default - CrossbowEnchant& operator=(CrossbowEnchant const&); - CrossbowEnchant(CrossbowEnchant const&); - CrossbowEnchant(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/item/enchanting/CurseBindingEnchant.h b/src/mc/world/item/enchanting/CurseBindingEnchant.h index 18f6bc3026..4b40c249dd 100644 --- a/src/mc/world/item/enchanting/CurseBindingEnchant.h +++ b/src/mc/world/item/enchanting/CurseBindingEnchant.h @@ -6,12 +6,6 @@ #include "mc/world/item/enchanting/Enchant.h" class CurseBindingEnchant : public ::Enchant { -public: - // prevent constructor by default - CurseBindingEnchant& operator=(CurseBindingEnchant const&); - CurseBindingEnchant(CurseBindingEnchant const&); - CurseBindingEnchant(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/item/enchanting/CurseVanishingEnchant.h b/src/mc/world/item/enchanting/CurseVanishingEnchant.h index 87e63b5a70..4dd7d6a662 100644 --- a/src/mc/world/item/enchanting/CurseVanishingEnchant.h +++ b/src/mc/world/item/enchanting/CurseVanishingEnchant.h @@ -6,12 +6,6 @@ #include "mc/world/item/enchanting/Enchant.h" class CurseVanishingEnchant : public ::Enchant { -public: - // prevent constructor by default - CurseVanishingEnchant& operator=(CurseVanishingEnchant const&); - CurseVanishingEnchant(CurseVanishingEnchant const&); - CurseVanishingEnchant(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/item/enchanting/DensityEnchant.h b/src/mc/world/item/enchanting/DensityEnchant.h index d80d23059d..6071bed24c 100644 --- a/src/mc/world/item/enchanting/DensityEnchant.h +++ b/src/mc/world/item/enchanting/DensityEnchant.h @@ -11,12 +11,6 @@ class Actor; // clang-format on class DensityEnchant : public ::Enchant { -public: - // prevent constructor by default - DensityEnchant& operator=(DensityEnchant const&); - DensityEnchant(DensityEnchant const&); - DensityEnchant(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/item/enchanting/DiggingEnchant.h b/src/mc/world/item/enchanting/DiggingEnchant.h index 29862c5d04..0afd90ad28 100644 --- a/src/mc/world/item/enchanting/DiggingEnchant.h +++ b/src/mc/world/item/enchanting/DiggingEnchant.h @@ -6,12 +6,6 @@ #include "mc/world/item/enchanting/Enchant.h" class DiggingEnchant : public ::Enchant { -public: - // prevent constructor by default - DiggingEnchant& operator=(DiggingEnchant const&); - DiggingEnchant(DiggingEnchant const&); - DiggingEnchant(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/item/enchanting/EnchantSlotEnumHasher.h b/src/mc/world/item/enchanting/EnchantSlotEnumHasher.h index 5ebf571d5b..9c06477c5a 100644 --- a/src/mc/world/item/enchanting/EnchantSlotEnumHasher.h +++ b/src/mc/world/item/enchanting/EnchantSlotEnumHasher.h @@ -2,10 +2,4 @@ #include "mc/_HeaderOutputPredefine.h" -struct EnchantSlotEnumHasher { -public: - // prevent constructor by default - EnchantSlotEnumHasher& operator=(EnchantSlotEnumHasher const&); - EnchantSlotEnumHasher(EnchantSlotEnumHasher const&); - EnchantSlotEnumHasher(); -}; +struct EnchantSlotEnumHasher {}; diff --git a/src/mc/world/item/enchanting/EnchantUtils.h b/src/mc/world/item/enchanting/EnchantUtils.h index d028d34ab8..67da953039 100644 --- a/src/mc/world/item/enchanting/EnchantUtils.h +++ b/src/mc/world/item/enchanting/EnchantUtils.h @@ -27,12 +27,6 @@ namespace Bedrock::Safety { class RedactableString; } // clang-format on class EnchantUtils { -public: - // prevent constructor by default - EnchantUtils& operator=(EnchantUtils const&); - EnchantUtils(EnchantUtils const&); - EnchantUtils(); - public: // static functions // NOLINTBEGIN diff --git a/src/mc/world/item/enchanting/FishingEnchant.h b/src/mc/world/item/enchanting/FishingEnchant.h index d2bbd7cdca..7d3e586b48 100644 --- a/src/mc/world/item/enchanting/FishingEnchant.h +++ b/src/mc/world/item/enchanting/FishingEnchant.h @@ -6,12 +6,6 @@ #include "mc/world/item/enchanting/Enchant.h" class FishingEnchant : public ::Enchant { -public: - // prevent constructor by default - FishingEnchant& operator=(FishingEnchant const&); - FishingEnchant(FishingEnchant const&); - FishingEnchant(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/item/enchanting/FrostWalkerEnchant.h b/src/mc/world/item/enchanting/FrostWalkerEnchant.h index c2fd06ae55..621affda61 100644 --- a/src/mc/world/item/enchanting/FrostWalkerEnchant.h +++ b/src/mc/world/item/enchanting/FrostWalkerEnchant.h @@ -6,12 +6,6 @@ #include "mc/world/item/enchanting/Enchant.h" class FrostWalkerEnchant : public ::Enchant { -public: - // prevent constructor by default - FrostWalkerEnchant& operator=(FrostWalkerEnchant const&); - FrostWalkerEnchant(FrostWalkerEnchant const&); - FrostWalkerEnchant(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/item/enchanting/LootEnchant.h b/src/mc/world/item/enchanting/LootEnchant.h index eeaba7afab..d5e832ab5c 100644 --- a/src/mc/world/item/enchanting/LootEnchant.h +++ b/src/mc/world/item/enchanting/LootEnchant.h @@ -6,12 +6,6 @@ #include "mc/world/item/enchanting/Enchant.h" class LootEnchant : public ::Enchant { -public: - // prevent constructor by default - LootEnchant& operator=(LootEnchant const&); - LootEnchant(LootEnchant const&); - LootEnchant(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/item/enchanting/MeleeWeaponEnchant.h b/src/mc/world/item/enchanting/MeleeWeaponEnchant.h index 03a914376a..41e1896005 100644 --- a/src/mc/world/item/enchanting/MeleeWeaponEnchant.h +++ b/src/mc/world/item/enchanting/MeleeWeaponEnchant.h @@ -11,12 +11,6 @@ class Actor; // clang-format on class MeleeWeaponEnchant : public ::Enchant { -public: - // prevent constructor by default - MeleeWeaponEnchant& operator=(MeleeWeaponEnchant const&); - MeleeWeaponEnchant(MeleeWeaponEnchant const&); - MeleeWeaponEnchant(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/item/enchanting/MendingEnchant.h b/src/mc/world/item/enchanting/MendingEnchant.h index 5bbe817a1c..23da6ecaa7 100644 --- a/src/mc/world/item/enchanting/MendingEnchant.h +++ b/src/mc/world/item/enchanting/MendingEnchant.h @@ -6,12 +6,6 @@ #include "mc/world/item/enchanting/Enchant.h" class MendingEnchant : public ::Enchant { -public: - // prevent constructor by default - MendingEnchant& operator=(MendingEnchant const&); - MendingEnchant(MendingEnchant const&); - MendingEnchant(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/item/enchanting/ProtectionEnchant.h b/src/mc/world/item/enchanting/ProtectionEnchant.h index 3c7c6f7357..5d344c613c 100644 --- a/src/mc/world/item/enchanting/ProtectionEnchant.h +++ b/src/mc/world/item/enchanting/ProtectionEnchant.h @@ -13,12 +13,6 @@ class ItemInstance; // clang-format on class ProtectionEnchant : public ::Enchant { -public: - // prevent constructor by default - ProtectionEnchant& operator=(ProtectionEnchant const&); - ProtectionEnchant(ProtectionEnchant const&); - ProtectionEnchant(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/item/enchanting/SoulSpeedEnchant.h b/src/mc/world/item/enchanting/SoulSpeedEnchant.h index a64ad1d9a9..36eabdc72a 100644 --- a/src/mc/world/item/enchanting/SoulSpeedEnchant.h +++ b/src/mc/world/item/enchanting/SoulSpeedEnchant.h @@ -12,12 +12,6 @@ namespace mce { class UUID; } // clang-format on class SoulSpeedEnchant : public ::Enchant { -public: - // prevent constructor by default - SoulSpeedEnchant& operator=(SoulSpeedEnchant const&); - SoulSpeedEnchant(SoulSpeedEnchant const&); - SoulSpeedEnchant(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/item/enchanting/SwiftSneakEnchant.h b/src/mc/world/item/enchanting/SwiftSneakEnchant.h index 6cdef8b8a4..7d1a956e40 100644 --- a/src/mc/world/item/enchanting/SwiftSneakEnchant.h +++ b/src/mc/world/item/enchanting/SwiftSneakEnchant.h @@ -11,12 +11,6 @@ class Actor; // clang-format on class SwiftSneakEnchant : public ::Enchant { -public: - // prevent constructor by default - SwiftSneakEnchant& operator=(SwiftSneakEnchant const&); - SwiftSneakEnchant(SwiftSneakEnchant const&); - SwiftSneakEnchant(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/item/enchanting/SwimEnchant.h b/src/mc/world/item/enchanting/SwimEnchant.h index 4292cc68fb..03251323b7 100644 --- a/src/mc/world/item/enchanting/SwimEnchant.h +++ b/src/mc/world/item/enchanting/SwimEnchant.h @@ -6,12 +6,6 @@ #include "mc/world/item/enchanting/Enchant.h" class SwimEnchant : public ::Enchant { -public: - // prevent constructor by default - SwimEnchant& operator=(SwimEnchant const&); - SwimEnchant(SwimEnchant const&); - SwimEnchant(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/item/enchanting/TridentChannelingEnchant.h b/src/mc/world/item/enchanting/TridentChannelingEnchant.h index 67037c46ca..79152a44e0 100644 --- a/src/mc/world/item/enchanting/TridentChannelingEnchant.h +++ b/src/mc/world/item/enchanting/TridentChannelingEnchant.h @@ -6,12 +6,6 @@ #include "mc/world/item/enchanting/Enchant.h" class TridentChannelingEnchant : public ::Enchant { -public: - // prevent constructor by default - TridentChannelingEnchant& operator=(TridentChannelingEnchant const&); - TridentChannelingEnchant(TridentChannelingEnchant const&); - TridentChannelingEnchant(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/item/enchanting/TridentImpalerEnchant.h b/src/mc/world/item/enchanting/TridentImpalerEnchant.h index bf14a84a55..58ebc91430 100644 --- a/src/mc/world/item/enchanting/TridentImpalerEnchant.h +++ b/src/mc/world/item/enchanting/TridentImpalerEnchant.h @@ -11,12 +11,6 @@ class Actor; // clang-format on class TridentImpalerEnchant : public ::Enchant { -public: - // prevent constructor by default - TridentImpalerEnchant& operator=(TridentImpalerEnchant const&); - TridentImpalerEnchant(TridentImpalerEnchant const&); - TridentImpalerEnchant(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/item/enchanting/TridentLoyaltyEnchant.h b/src/mc/world/item/enchanting/TridentLoyaltyEnchant.h index 4b598ec2be..011d6ae58e 100644 --- a/src/mc/world/item/enchanting/TridentLoyaltyEnchant.h +++ b/src/mc/world/item/enchanting/TridentLoyaltyEnchant.h @@ -6,12 +6,6 @@ #include "mc/world/item/enchanting/Enchant.h" class TridentLoyaltyEnchant : public ::Enchant { -public: - // prevent constructor by default - TridentLoyaltyEnchant& operator=(TridentLoyaltyEnchant const&); - TridentLoyaltyEnchant(TridentLoyaltyEnchant const&); - TridentLoyaltyEnchant(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/item/enchanting/TridentRiptideEnchant.h b/src/mc/world/item/enchanting/TridentRiptideEnchant.h index 6dc3415b47..1fd53f51fe 100644 --- a/src/mc/world/item/enchanting/TridentRiptideEnchant.h +++ b/src/mc/world/item/enchanting/TridentRiptideEnchant.h @@ -6,12 +6,6 @@ #include "mc/world/item/enchanting/Enchant.h" class TridentRiptideEnchant : public ::Enchant { -public: - // prevent constructor by default - TridentRiptideEnchant& operator=(TridentRiptideEnchant const&); - TridentRiptideEnchant(TridentRiptideEnchant const&); - TridentRiptideEnchant(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/item/enchanting/WindBurstEnchant.h b/src/mc/world/item/enchanting/WindBurstEnchant.h index 5d1b40c2e8..4a74c49727 100644 --- a/src/mc/world/item/enchanting/WindBurstEnchant.h +++ b/src/mc/world/item/enchanting/WindBurstEnchant.h @@ -11,12 +11,6 @@ class Actor; // clang-format on class WindBurstEnchant : public ::Enchant { -public: - // prevent constructor by default - WindBurstEnchant& operator=(WindBurstEnchant const&); - WindBurstEnchant(WindBurstEnchant const&); - WindBurstEnchant(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/item/registry/ExplorationMapRegistry.h b/src/mc/world/item/registry/ExplorationMapRegistry.h index 2d65d5e3de..2b42d514ff 100644 --- a/src/mc/world/item/registry/ExplorationMapRegistry.h +++ b/src/mc/world/item/registry/ExplorationMapRegistry.h @@ -12,12 +12,6 @@ struct ExplorationMapData; // clang-format on class ExplorationMapRegistry { -public: - // prevent constructor by default - ExplorationMapRegistry& operator=(ExplorationMapRegistry const&); - ExplorationMapRegistry(ExplorationMapRegistry const&); - ExplorationMapRegistry(); - public: // static functions // NOLINTBEGIN diff --git a/src/mc/world/item/registry/ItemRegistryManager.h b/src/mc/world/item/registry/ItemRegistryManager.h index bdb1c9e9ae..f22b3755a0 100644 --- a/src/mc/world/item/registry/ItemRegistryManager.h +++ b/src/mc/world/item/registry/ItemRegistryManager.h @@ -60,12 +60,6 @@ class ItemRegistryManager { // NOLINTEND }; -public: - // prevent constructor by default - ItemRegistryManager& operator=(ItemRegistryManager const&); - ItemRegistryManager(ItemRegistryManager const&); - ItemRegistryManager(); - public: // static functions // NOLINTBEGIN diff --git a/src/mc/world/level/ActorDimensionTransferProxy.h b/src/mc/world/level/ActorDimensionTransferProxy.h index 170efa65cd..17884f173d 100644 --- a/src/mc/world/level/ActorDimensionTransferProxy.h +++ b/src/mc/world/level/ActorDimensionTransferProxy.h @@ -14,11 +14,6 @@ class Vec3; // clang-format on class ActorDimensionTransferProxy : public ::IActorDimensionTransferProxy { -public: - // prevent constructor by default - ActorDimensionTransferProxy& operator=(ActorDimensionTransferProxy const&); - ActorDimensionTransferProxy(ActorDimensionTransferProxy const&); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/level/ActorEventBroadcaster.h b/src/mc/world/level/ActorEventBroadcaster.h index e4f4a5bd04..267abe90a2 100644 --- a/src/mc/world/level/ActorEventBroadcaster.h +++ b/src/mc/world/level/ActorEventBroadcaster.h @@ -12,12 +12,6 @@ class Dimension; // clang-format on class ActorEventBroadcaster { -public: - // prevent constructor by default - ActorEventBroadcaster& operator=(ActorEventBroadcaster const&); - ActorEventBroadcaster(ActorEventBroadcaster const&); - ActorEventBroadcaster(); - public: // member functions // NOLINTBEGIN diff --git a/src/mc/world/level/ActorManagerProxy.h b/src/mc/world/level/ActorManagerProxy.h index b3875a7b51..c8f259b77f 100644 --- a/src/mc/world/level/ActorManagerProxy.h +++ b/src/mc/world/level/ActorManagerProxy.h @@ -11,12 +11,6 @@ class Actor; // clang-format on class ActorManagerProxy : public ::IActorManagerProxy { -public: - // prevent constructor by default - ActorManagerProxy& operator=(ActorManagerProxy const&); - ActorManagerProxy(ActorManagerProxy const&); - ActorManagerProxy(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/level/ArmorTrimUnloader.h b/src/mc/world/level/ArmorTrimUnloader.h index 6e4f599779..a1f9345693 100644 --- a/src/mc/world/level/ArmorTrimUnloader.h +++ b/src/mc/world/level/ArmorTrimUnloader.h @@ -2,10 +2,4 @@ #include "mc/_HeaderOutputPredefine.h" -class ArmorTrimUnloader { -public: - // prevent constructor by default - ArmorTrimUnloader& operator=(ArmorTrimUnloader const&); - ArmorTrimUnloader(ArmorTrimUnloader const&); - ArmorTrimUnloader(); -}; +class ArmorTrimUnloader {}; diff --git a/src/mc/world/level/BiomeFilterGroup.h b/src/mc/world/level/BiomeFilterGroup.h index f10d44f599..d8d11d0dfe 100644 --- a/src/mc/world/level/BiomeFilterGroup.h +++ b/src/mc/world/level/BiomeFilterGroup.h @@ -11,12 +11,6 @@ class IWorldRegistriesProvider; // clang-format on class BiomeFilterGroup : public ::FilterGroup { -public: - // prevent constructor by default - BiomeFilterGroup& operator=(BiomeFilterGroup const&); - BiomeFilterGroup(BiomeFilterGroup const&); - BiomeFilterGroup(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/level/BlockActorLevelListener.h b/src/mc/world/level/BlockActorLevelListener.h index 8944d48323..711bd13c31 100644 --- a/src/mc/world/level/BlockActorLevelListener.h +++ b/src/mc/world/level/BlockActorLevelListener.h @@ -12,11 +12,6 @@ class LevelChunk; // clang-format on class BlockActorLevelListener : public ::LevelListener { -public: - // prevent constructor by default - BlockActorLevelListener& operator=(BlockActorLevelListener const&); - BlockActorLevelListener(BlockActorLevelListener const&); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/level/BlockDataFetchResult.h b/src/mc/world/level/BlockDataFetchResult.h index 4805a01f5c..0c00e886b8 100644 --- a/src/mc/world/level/BlockDataFetchResult.h +++ b/src/mc/world/level/BlockDataFetchResult.h @@ -3,10 +3,4 @@ #include "mc/_HeaderOutputPredefine.h" template -class BlockDataFetchResult { -public: - // prevent constructor by default - BlockDataFetchResult& operator=(BlockDataFetchResult const&); - BlockDataFetchResult(BlockDataFetchResult const&); - BlockDataFetchResult(); -}; +class BlockDataFetchResult {}; diff --git a/src/mc/world/level/BlockSourceValidityProxy.h b/src/mc/world/level/BlockSourceValidityProxy.h index 0c494f6cec..c19f796a7c 100644 --- a/src/mc/world/level/BlockSourceValidityProxy.h +++ b/src/mc/world/level/BlockSourceValidityProxy.h @@ -12,12 +12,6 @@ class Player; // clang-format on class BlockSourceValidityProxy : public ::IBlockSourceValidityProxy { -public: - // prevent constructor by default - BlockSourceValidityProxy& operator=(BlockSourceValidityProxy const&); - BlockSourceValidityProxy(BlockSourceValidityProxy const&); - BlockSourceValidityProxy(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/level/BossEventSubscriptionManager.h b/src/mc/world/level/BossEventSubscriptionManager.h index 4c967a4741..5c1cfec71b 100644 --- a/src/mc/world/level/BossEventSubscriptionManager.h +++ b/src/mc/world/level/BossEventSubscriptionManager.h @@ -15,12 +15,6 @@ namespace Bedrock::PubSub { class Subscription; } class BossEventSubscriptionManager : public ::Bedrock::EnableNonOwnerReferences, public ::Bedrock::ImplBase<::BossEventSubscriptionManager> { -public: - // prevent constructor by default - BossEventSubscriptionManager& operator=(BossEventSubscriptionManager const&); - BossEventSubscriptionManager(BossEventSubscriptionManager const&); - BossEventSubscriptionManager(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/level/ClassroomModeListener.h b/src/mc/world/level/ClassroomModeListener.h index 3e83f24d3e..6101768652 100644 --- a/src/mc/world/level/ClassroomModeListener.h +++ b/src/mc/world/level/ClassroomModeListener.h @@ -19,12 +19,6 @@ struct ActorBlockSyncMessage; // clang-format on class ClassroomModeListener : public ::LevelListener { -public: - // prevent constructor by default - ClassroomModeListener& operator=(ClassroomModeListener const&); - ClassroomModeListener(ClassroomModeListener const&); - ClassroomModeListener(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/level/DeregisterTagsFromActorProxy.h b/src/mc/world/level/DeregisterTagsFromActorProxy.h index 5c0182e875..e6f9b40c93 100644 --- a/src/mc/world/level/DeregisterTagsFromActorProxy.h +++ b/src/mc/world/level/DeregisterTagsFromActorProxy.h @@ -11,12 +11,6 @@ class Actor; // clang-format on class DeregisterTagsFromActorProxy : public ::IDeregisterTagsFromActorProxy { -public: - // prevent constructor by default - DeregisterTagsFromActorProxy& operator=(DeregisterTagsFromActorProxy const&); - DeregisterTagsFromActorProxy(DeregisterTagsFromActorProxy const&); - DeregisterTagsFromActorProxy(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/level/DividedPos.h b/src/mc/world/level/DividedPos.h index 88527ce2ae..641b7c8a8a 100644 --- a/src/mc/world/level/DividedPos.h +++ b/src/mc/world/level/DividedPos.h @@ -3,10 +3,4 @@ #include "mc/_HeaderOutputPredefine.h" template -class DividedPos { -public: - // prevent constructor by default - DividedPos& operator=(DividedPos const&); - DividedPos(DividedPos const&); - DividedPos(); -}; +class DividedPos {}; diff --git a/src/mc/world/level/DividedPos2d.h b/src/mc/world/level/DividedPos2d.h index 16fa433a8c..b39ef03c29 100644 --- a/src/mc/world/level/DividedPos2d.h +++ b/src/mc/world/level/DividedPos2d.h @@ -3,10 +3,4 @@ #include "mc/_HeaderOutputPredefine.h" template -class DividedPos2d { -public: - // prevent constructor by default - DividedPos2d& operator=(DividedPos2d const&); - DividedPos2d(DividedPos2d const&); - DividedPos2d(); -}; +class DividedPos2d {}; diff --git a/src/mc/world/level/FileArchiver.h b/src/mc/world/level/FileArchiver.h index 80e291142e..77e2f5397d 100644 --- a/src/mc/world/level/FileArchiver.h +++ b/src/mc/world/level/FileArchiver.h @@ -184,12 +184,6 @@ class FileArchiver : public ::Bedrock::EnableNonOwnerReferences { }; class IWorldConverter { - public: - // prevent constructor by default - IWorldConverter& operator=(IWorldConverter const&); - IWorldConverter(IWorldConverter const&); - IWorldConverter(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/level/FoliageColor.h b/src/mc/world/level/FoliageColor.h index 1e3f0e0dee..87cea4460d 100644 --- a/src/mc/world/level/FoliageColor.h +++ b/src/mc/world/level/FoliageColor.h @@ -10,12 +10,6 @@ namespace mce { class Color; } // clang-format on class FoliageColor { -public: - // prevent constructor by default - FoliageColor& operator=(FoliageColor const&); - FoliageColor(FoliageColor const&); - FoliageColor(); - public: // static functions // NOLINTBEGIN diff --git a/src/mc/world/level/GameplayUserManagerProxy.h b/src/mc/world/level/GameplayUserManagerProxy.h index aa447610d9..d411c0e045 100644 --- a/src/mc/world/level/GameplayUserManagerProxy.h +++ b/src/mc/world/level/GameplayUserManagerProxy.h @@ -9,12 +9,6 @@ class GameplayUserManager; // clang-format on class GameplayUserManagerProxy { -public: - // prevent constructor by default - GameplayUserManagerProxy& operator=(GameplayUserManagerProxy const&); - GameplayUserManagerProxy(GameplayUserManagerProxy const&); - GameplayUserManagerProxy(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/level/IActorDimensionTransferProxy.h b/src/mc/world/level/IActorDimensionTransferProxy.h index fec5f6a008..6d96cf48df 100644 --- a/src/mc/world/level/IActorDimensionTransferProxy.h +++ b/src/mc/world/level/IActorDimensionTransferProxy.h @@ -11,12 +11,6 @@ class Vec3; // clang-format on class IActorDimensionTransferProxy { -public: - // prevent constructor by default - IActorDimensionTransferProxy& operator=(IActorDimensionTransferProxy const&); - IActorDimensionTransferProxy(IActorDimensionTransferProxy const&); - IActorDimensionTransferProxy(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/level/IActorDimensionTransferer.h b/src/mc/world/level/IActorDimensionTransferer.h index 7f2aab9ba7..7f4ad09721 100644 --- a/src/mc/world/level/IActorDimensionTransferer.h +++ b/src/mc/world/level/IActorDimensionTransferer.h @@ -15,12 +15,6 @@ class Vec3; // clang-format on class IActorDimensionTransferer { -public: - // prevent constructor by default - IActorDimensionTransferer& operator=(IActorDimensionTransferer const&); - IActorDimensionTransferer(IActorDimensionTransferer const&); - IActorDimensionTransferer(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/level/IActorManagerConnector.h b/src/mc/world/level/IActorManagerConnector.h index 3ffc9bc435..94027460f7 100644 --- a/src/mc/world/level/IActorManagerConnector.h +++ b/src/mc/world/level/IActorManagerConnector.h @@ -12,12 +12,6 @@ class Actor; // clang-format on class IActorManagerConnector { -public: - // prevent constructor by default - IActorManagerConnector& operator=(IActorManagerConnector const&); - IActorManagerConnector(IActorManagerConnector const&); - IActorManagerConnector(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/level/IActorManagerProxy.h b/src/mc/world/level/IActorManagerProxy.h index 5bd389d163..45eb594631 100644 --- a/src/mc/world/level/IActorManagerProxy.h +++ b/src/mc/world/level/IActorManagerProxy.h @@ -8,12 +8,6 @@ class Actor; // clang-format on class IActorManagerProxy { -public: - // prevent constructor by default - IActorManagerProxy& operator=(IActorManagerProxy const&); - IActorManagerProxy(IActorManagerProxy const&); - IActorManagerProxy(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/level/IAddActorEntityProxy.h b/src/mc/world/level/IAddActorEntityProxy.h index 702f73f493..143cbb11c8 100644 --- a/src/mc/world/level/IAddActorEntityProxy.h +++ b/src/mc/world/level/IAddActorEntityProxy.h @@ -8,12 +8,6 @@ class Actor; // clang-format on class IAddActorEntityProxy { -public: - // prevent constructor by default - IAddActorEntityProxy& operator=(IAddActorEntityProxy const&); - IAddActorEntityProxy(IAddActorEntityProxy const&); - IAddActorEntityProxy(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/level/IAddDisplayActorEntityProxy.h b/src/mc/world/level/IAddDisplayActorEntityProxy.h index 9843bd7d62..839dee7b04 100644 --- a/src/mc/world/level/IAddDisplayActorEntityProxy.h +++ b/src/mc/world/level/IAddDisplayActorEntityProxy.h @@ -8,12 +8,6 @@ class Actor; // clang-format on class IAddDisplayActorEntityProxy { -public: - // prevent constructor by default - IAddDisplayActorEntityProxy& operator=(IAddDisplayActorEntityProxy const&); - IAddDisplayActorEntityProxy(IAddDisplayActorEntityProxy const&); - IAddDisplayActorEntityProxy(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/level/IBlockSourceValidityProxy.h b/src/mc/world/level/IBlockSourceValidityProxy.h index 8c9d4f7101..f437fbbdbc 100644 --- a/src/mc/world/level/IBlockSourceValidityProxy.h +++ b/src/mc/world/level/IBlockSourceValidityProxy.h @@ -9,12 +9,6 @@ class Player; // clang-format on class IBlockSourceValidityProxy { -public: - // prevent constructor by default - IBlockSourceValidityProxy& operator=(IBlockSourceValidityProxy const&); - IBlockSourceValidityProxy(IBlockSourceValidityProxy const&); - IBlockSourceValidityProxy(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/level/IDeregisterTagsFromActorProxy.h b/src/mc/world/level/IDeregisterTagsFromActorProxy.h index 457fd288a1..e202dcc7ed 100644 --- a/src/mc/world/level/IDeregisterTagsFromActorProxy.h +++ b/src/mc/world/level/IDeregisterTagsFromActorProxy.h @@ -8,12 +8,6 @@ class Actor; // clang-format on class IDeregisterTagsFromActorProxy { -public: - // prevent constructor by default - IDeregisterTagsFromActorProxy& operator=(IDeregisterTagsFromActorProxy const&); - IDeregisterTagsFromActorProxy(IDeregisterTagsFromActorProxy const&); - IDeregisterTagsFromActorProxy(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/level/IDimensionFactory.h b/src/mc/world/level/IDimensionFactory.h index f79221d070..a43a5bb577 100644 --- a/src/mc/world/level/IDimensionFactory.h +++ b/src/mc/world/level/IDimensionFactory.h @@ -11,12 +11,6 @@ class Dimension; // clang-format on class IDimensionFactory { -public: - // prevent constructor by default - IDimensionFactory& operator=(IDimensionFactory const&); - IDimensionFactory(IDimensionFactory const&); - IDimensionFactory(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/level/IDimensionManagerConnector.h b/src/mc/world/level/IDimensionManagerConnector.h index 4d7c5a3a35..741aa38281 100644 --- a/src/mc/world/level/IDimensionManagerConnector.h +++ b/src/mc/world/level/IDimensionManagerConnector.h @@ -11,12 +11,6 @@ class Dimension; // clang-format on class IDimensionManagerConnector { -public: - // prevent constructor by default - IDimensionManagerConnector& operator=(IDimensionManagerConnector const&); - IDimensionManagerConnector(IDimensionManagerConnector const&); - IDimensionManagerConnector(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/level/IDisplayActorManagerProxy.h b/src/mc/world/level/IDisplayActorManagerProxy.h index 71a7dafc18..40703aff78 100644 --- a/src/mc/world/level/IDisplayActorManagerProxy.h +++ b/src/mc/world/level/IDisplayActorManagerProxy.h @@ -8,12 +8,6 @@ class Actor; // clang-format on class IDisplayActorManagerProxy { -public: - // prevent constructor by default - IDisplayActorManagerProxy& operator=(IDisplayActorManagerProxy const&); - IDisplayActorManagerProxy(IDisplayActorManagerProxy const&); - IDisplayActorManagerProxy(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/level/IGameplayUserManagerConnector.h b/src/mc/world/level/IGameplayUserManagerConnector.h index 8179a1fe42..a5e97f4da2 100644 --- a/src/mc/world/level/IGameplayUserManagerConnector.h +++ b/src/mc/world/level/IGameplayUserManagerConnector.h @@ -12,12 +12,6 @@ class Player; // clang-format on class IGameplayUserManagerConnector { -public: - // prevent constructor by default - IGameplayUserManagerConnector& operator=(IGameplayUserManagerConnector const&); - IGameplayUserManagerConnector(IGameplayUserManagerConnector const&); - IGameplayUserManagerConnector(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/level/ILevel.h b/src/mc/world/level/ILevel.h index 3e0a3833af..dd52515936 100644 --- a/src/mc/world/level/ILevel.h +++ b/src/mc/world/level/ILevel.h @@ -199,12 +199,6 @@ namespace mce { class UUID; } // clang-format on class ILevel : public ::Bedrock::EnableNonOwnerReferences { -public: - // prevent constructor by default - ILevel& operator=(ILevel const&); - ILevel(ILevel const&); - ILevel(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/level/ILevelBlockDestroyerProxy.h b/src/mc/world/level/ILevelBlockDestroyerProxy.h index 2570cf216c..265b9a9c96 100644 --- a/src/mc/world/level/ILevelBlockDestroyerProxy.h +++ b/src/mc/world/level/ILevelBlockDestroyerProxy.h @@ -11,12 +11,6 @@ class LevelEventManager; // clang-format on class ILevelBlockDestroyerProxy { -public: - // prevent constructor by default - ILevelBlockDestroyerProxy& operator=(ILevelBlockDestroyerProxy const&); - ILevelBlockDestroyerProxy(ILevelBlockDestroyerProxy const&); - ILevelBlockDestroyerProxy(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/level/ILevelCrashDumpManager.h b/src/mc/world/level/ILevelCrashDumpManager.h index 259443df2d..1e858dd543 100644 --- a/src/mc/world/level/ILevelCrashDumpManager.h +++ b/src/mc/world/level/ILevelCrashDumpManager.h @@ -6,12 +6,6 @@ #include "mc/deps/core/utility/CrashDumpLogStringID.h" class ILevelCrashDumpManager { -public: - // prevent constructor by default - ILevelCrashDumpManager& operator=(ILevelCrashDumpManager const&); - ILevelCrashDumpManager(ILevelCrashDumpManager const&); - ILevelCrashDumpManager(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/level/ILevelEventManagerCoordinator.h b/src/mc/world/level/ILevelEventManagerCoordinator.h index 25e935e60f..ab8ef91f70 100644 --- a/src/mc/world/level/ILevelEventManagerCoordinator.h +++ b/src/mc/world/level/ILevelEventManagerCoordinator.h @@ -13,12 +13,6 @@ class Vec3; // clang-format on class ILevelEventManagerCoordinator { -public: - // prevent constructor by default - ILevelEventManagerCoordinator& operator=(ILevelEventManagerCoordinator const&); - ILevelEventManagerCoordinator(ILevelEventManagerCoordinator const&); - ILevelEventManagerCoordinator(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/level/ILevelRandom.h b/src/mc/world/level/ILevelRandom.h index 53ce5aebf3..26fe8e0dbd 100644 --- a/src/mc/world/level/ILevelRandom.h +++ b/src/mc/world/level/ILevelRandom.h @@ -9,12 +9,6 @@ class Random; // clang-format on class ILevelRandom { -public: - // prevent constructor by default - ILevelRandom& operator=(ILevelRandom const&); - ILevelRandom(ILevelRandom const&); - ILevelRandom(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/level/ILevelSoundManagerConnector.h b/src/mc/world/level/ILevelSoundManagerConnector.h index 209b50ad4e..ff84bfc85d 100644 --- a/src/mc/world/level/ILevelSoundManagerConnector.h +++ b/src/mc/world/level/ILevelSoundManagerConnector.h @@ -14,12 +14,6 @@ struct ActorDefinitionIdentifier; // clang-format on class ILevelSoundManagerConnector : public ::Bedrock::EnableNonOwnerReferences { -public: - // prevent constructor by default - ILevelSoundManagerConnector& operator=(ILevelSoundManagerConnector const&); - ILevelSoundManagerConnector(ILevelSoundManagerConnector const&); - ILevelSoundManagerConnector(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/level/IMapDataManagerOptions.h b/src/mc/world/level/IMapDataManagerOptions.h index bdfb1d3e46..f1472ac218 100644 --- a/src/mc/world/level/IMapDataManagerOptions.h +++ b/src/mc/world/level/IMapDataManagerOptions.h @@ -8,12 +8,6 @@ class BlockPos; // clang-format on class IMapDataManagerOptions { -public: - // prevent constructor by default - IMapDataManagerOptions& operator=(IMapDataManagerOptions const&); - IMapDataManagerOptions(IMapDataManagerOptions const&); - IMapDataManagerOptions(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/level/IPhotoManagerConnector.h b/src/mc/world/level/IPhotoManagerConnector.h index 1d915b900a..ab52f98f1e 100644 --- a/src/mc/world/level/IPhotoManagerConnector.h +++ b/src/mc/world/level/IPhotoManagerConnector.h @@ -13,12 +13,6 @@ namespace cg { class ImageBuffer; } // clang-format on class IPhotoManagerConnector { -public: - // prevent constructor by default - IPhotoManagerConnector& operator=(IPhotoManagerConnector const&); - IPhotoManagerConnector(IPhotoManagerConnector const&); - IPhotoManagerConnector(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/level/IPlayerDimensionTransferConnector.h b/src/mc/world/level/IPlayerDimensionTransferConnector.h index 6689003108..38057a98d2 100644 --- a/src/mc/world/level/IPlayerDimensionTransferConnector.h +++ b/src/mc/world/level/IPlayerDimensionTransferConnector.h @@ -12,12 +12,6 @@ class Dimension; // clang-format on class IPlayerDimensionTransferConnector { -public: - // prevent constructor by default - IPlayerDimensionTransferConnector& operator=(IPlayerDimensionTransferConnector const&); - IPlayerDimensionTransferConnector(IPlayerDimensionTransferConnector const&); - IPlayerDimensionTransferConnector(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/level/IPlayerDimensionTransferProxy.h b/src/mc/world/level/IPlayerDimensionTransferProxy.h index 45f71db54d..c0f32a79e0 100644 --- a/src/mc/world/level/IPlayerDimensionTransferProxy.h +++ b/src/mc/world/level/IPlayerDimensionTransferProxy.h @@ -18,12 +18,6 @@ class Vec3; // clang-format on class IPlayerDimensionTransferProxy { -public: - // prevent constructor by default - IPlayerDimensionTransferProxy& operator=(IPlayerDimensionTransferProxy const&); - IPlayerDimensionTransferProxy(IPlayerDimensionTransferProxy const&); - IPlayerDimensionTransferProxy(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/level/IPlayerDimensionTransferer.h b/src/mc/world/level/IPlayerDimensionTransferer.h index dc82f8fecc..107d580a32 100644 --- a/src/mc/world/level/IPlayerDimensionTransferer.h +++ b/src/mc/world/level/IPlayerDimensionTransferer.h @@ -19,12 +19,6 @@ struct AddLimboActorHelper; // clang-format on class IPlayerDimensionTransferer : public ::IPlayerDimensionTransferConnector { -public: - // prevent constructor by default - IPlayerDimensionTransferer& operator=(IPlayerDimensionTransferer const&); - IPlayerDimensionTransferer(IPlayerDimensionTransferer const&); - IPlayerDimensionTransferer(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/level/IPlayerTickProxy.h b/src/mc/world/level/IPlayerTickProxy.h index 4c47650045..c63b1a9ebf 100644 --- a/src/mc/world/level/IPlayerTickProxy.h +++ b/src/mc/world/level/IPlayerTickProxy.h @@ -12,12 +12,6 @@ struct Tick; // clang-format on class IPlayerTickProxy { -public: - // prevent constructor by default - IPlayerTickProxy& operator=(IPlayerTickProxy const&); - IPlayerTickProxy(IPlayerTickProxy const&); - IPlayerTickProxy(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/level/IServerWorldDebugRenderProxy.h b/src/mc/world/level/IServerWorldDebugRenderProxy.h index e918443d01..6db97b2027 100644 --- a/src/mc/world/level/IServerWorldDebugRenderProxy.h +++ b/src/mc/world/level/IServerWorldDebugRenderProxy.h @@ -10,12 +10,6 @@ class Player; // clang-format on class IServerWorldDebugRenderProxy { -public: - // prevent constructor by default - IServerWorldDebugRenderProxy& operator=(IServerWorldDebugRenderProxy const&); - IServerWorldDebugRenderProxy(IServerWorldDebugRenderProxy const&); - IServerWorldDebugRenderProxy(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/level/ISharedSpawnGetter.h b/src/mc/world/level/ISharedSpawnGetter.h index 7dc94eae3f..887a03a051 100644 --- a/src/mc/world/level/ISharedSpawnGetter.h +++ b/src/mc/world/level/ISharedSpawnGetter.h @@ -8,12 +8,6 @@ class BlockPos; // clang-format on class ISharedSpawnGetter { -public: - // prevent constructor by default - ISharedSpawnGetter& operator=(ISharedSpawnGetter const&); - ISharedSpawnGetter(ISharedSpawnGetter const&); - ISharedSpawnGetter(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/level/ITickDeltaTimeManagerProxy.h b/src/mc/world/level/ITickDeltaTimeManagerProxy.h index 18d0f38229..02dadcf4d5 100644 --- a/src/mc/world/level/ITickDeltaTimeManagerProxy.h +++ b/src/mc/world/level/ITickDeltaTimeManagerProxy.h @@ -3,12 +3,6 @@ #include "mc/_HeaderOutputPredefine.h" class ITickDeltaTimeManagerProxy { -public: - // prevent constructor by default - ITickDeltaTimeManagerProxy& operator=(ITickDeltaTimeManagerProxy const&); - ITickDeltaTimeManagerProxy(ITickDeltaTimeManagerProxy const&); - ITickDeltaTimeManagerProxy(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/level/ITickTimeManagerProxy.h b/src/mc/world/level/ITickTimeManagerProxy.h index 9cd7e0dddc..9ee864d57e 100644 --- a/src/mc/world/level/ITickTimeManagerProxy.h +++ b/src/mc/world/level/ITickTimeManagerProxy.h @@ -8,12 +8,6 @@ struct Tick; // clang-format on class ITickTimeManagerProxy { -public: - // prevent constructor by default - ITickTimeManagerProxy& operator=(ITickTimeManagerProxy const&); - ITickTimeManagerProxy(ITickTimeManagerProxy const&); - ITickTimeManagerProxy(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/level/IWeatherManagerProxy.h b/src/mc/world/level/IWeatherManagerProxy.h index f92d583ed1..eff1a6e408 100644 --- a/src/mc/world/level/IWeatherManagerProxy.h +++ b/src/mc/world/level/IWeatherManagerProxy.h @@ -3,12 +3,6 @@ #include "mc/_HeaderOutputPredefine.h" class IWeatherManagerProxy { -public: - // prevent constructor by default - IWeatherManagerProxy& operator=(IWeatherManagerProxy const&); - IWeatherManagerProxy(IWeatherManagerProxy const&); - IWeatherManagerProxy(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/level/IWorldRegistriesProvider.h b/src/mc/world/level/IWorldRegistriesProvider.h index 28d7600e22..6758f71c97 100644 --- a/src/mc/world/level/IWorldRegistriesProvider.h +++ b/src/mc/world/level/IWorldRegistriesProvider.h @@ -24,12 +24,6 @@ class SurfaceBuilderRegistry; // clang-format on class IWorldRegistriesProvider { -public: - // prevent constructor by default - IWorldRegistriesProvider& operator=(IWorldRegistriesProvider const&); - IWorldRegistriesProvider(IWorldRegistriesProvider const&); - IWorldRegistriesProvider(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/level/LevelBlockDestroyerProxy.h b/src/mc/world/level/LevelBlockDestroyerProxy.h index 1f0707e403..9852a9f4d7 100644 --- a/src/mc/world/level/LevelBlockDestroyerProxy.h +++ b/src/mc/world/level/LevelBlockDestroyerProxy.h @@ -14,12 +14,6 @@ class LevelEventManager; // clang-format on class LevelBlockDestroyerProxy : public ::ILevelBlockDestroyerProxy { -public: - // prevent constructor by default - LevelBlockDestroyerProxy& operator=(LevelBlockDestroyerProxy const&); - LevelBlockDestroyerProxy(LevelBlockDestroyerProxy const&); - LevelBlockDestroyerProxy(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/level/LevelListCacheObserver.h b/src/mc/world/level/LevelListCacheObserver.h index 86a5c466f0..d87141955f 100644 --- a/src/mc/world/level/LevelListCacheObserver.h +++ b/src/mc/world/level/LevelListCacheObserver.h @@ -11,12 +11,6 @@ namespace Core { class SingleThreadedLock; } // clang-format on class LevelListCacheObserver : public ::Core::Observer<::LevelListCacheObserver, ::Core::SingleThreadedLock> { -public: - // prevent constructor by default - LevelListCacheObserver& operator=(LevelListCacheObserver const&); - LevelListCacheObserver(LevelListCacheObserver const&); - LevelListCacheObserver(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/level/LevelListener.h b/src/mc/world/level/LevelListener.h index d4052ffe0c..b4e7e4267b 100644 --- a/src/mc/world/level/LevelListener.h +++ b/src/mc/world/level/LevelListener.h @@ -25,12 +25,6 @@ namespace cg { class ImageBuffer; } // clang-format on class LevelListener : public ::BlockSourceListener { -public: - // prevent constructor by default - LevelListener& operator=(LevelListener const&); - LevelListener(LevelListener const&); - LevelListener(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/level/LevelTagIDType.h b/src/mc/world/level/LevelTagIDType.h index 9446746d5b..54fac2e693 100644 --- a/src/mc/world/level/LevelTagIDType.h +++ b/src/mc/world/level/LevelTagIDType.h @@ -2,10 +2,4 @@ #include "mc/_HeaderOutputPredefine.h" -struct LevelTagIDType { -public: - // prevent constructor by default - LevelTagIDType& operator=(LevelTagIDType const&); - LevelTagIDType(LevelTagIDType const&); - LevelTagIDType(); -}; +struct LevelTagIDType {}; diff --git a/src/mc/world/level/LevelTagSetIDType.h b/src/mc/world/level/LevelTagSetIDType.h index a805e29134..22c97aa519 100644 --- a/src/mc/world/level/LevelTagSetIDType.h +++ b/src/mc/world/level/LevelTagSetIDType.h @@ -2,10 +2,4 @@ #include "mc/_HeaderOutputPredefine.h" -struct LevelTagSetIDType { -public: - // prevent constructor by default - LevelTagSetIDType& operator=(LevelTagSetIDType const&); - LevelTagSetIDType(LevelTagSetIDType const&); - LevelTagSetIDType(); -}; +struct LevelTagSetIDType {}; diff --git a/src/mc/world/level/MobSpawnInfo.h b/src/mc/world/level/MobSpawnInfo.h index a3fb2d418a..67353b79ed 100644 --- a/src/mc/world/level/MobSpawnInfo.h +++ b/src/mc/world/level/MobSpawnInfo.h @@ -6,12 +6,6 @@ #include "mc/world/actor/ActorType.h" class MobSpawnInfo { -public: - // prevent constructor by default - MobSpawnInfo& operator=(MobSpawnInfo const&); - MobSpawnInfo(MobSpawnInfo const&); - MobSpawnInfo(); - public: // static functions // NOLINTBEGIN diff --git a/src/mc/world/level/PlayerDimensionTransferProxy.h b/src/mc/world/level/PlayerDimensionTransferProxy.h index ad85055979..689d4cbd6e 100644 --- a/src/mc/world/level/PlayerDimensionTransferProxy.h +++ b/src/mc/world/level/PlayerDimensionTransferProxy.h @@ -19,12 +19,6 @@ class Vec3; // clang-format on class PlayerDimensionTransferProxy : public ::IPlayerDimensionTransferProxy { -public: - // prevent constructor by default - PlayerDimensionTransferProxy& operator=(PlayerDimensionTransferProxy const&); - PlayerDimensionTransferProxy(PlayerDimensionTransferProxy const&); - PlayerDimensionTransferProxy(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/level/PlayerTickProxy.h b/src/mc/world/level/PlayerTickProxy.h index 17264df82e..b3821b3bfc 100644 --- a/src/mc/world/level/PlayerTickProxy.h +++ b/src/mc/world/level/PlayerTickProxy.h @@ -15,12 +15,6 @@ struct Tick; // clang-format on class PlayerTickProxy : public ::IPlayerTickProxy { -public: - // prevent constructor by default - PlayerTickProxy& operator=(PlayerTickProxy const&); - PlayerTickProxy(PlayerTickProxy const&); - PlayerTickProxy(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/level/ScalarOptional.h b/src/mc/world/level/ScalarOptional.h index 55a9543223..9b7e8f52e4 100644 --- a/src/mc/world/level/ScalarOptional.h +++ b/src/mc/world/level/ScalarOptional.h @@ -3,10 +3,4 @@ #include "mc/_HeaderOutputPredefine.h" template -class ScalarOptional { -public: - // prevent constructor by default - ScalarOptional& operator=(ScalarOptional const&); - ScalarOptional(ScalarOptional const&); - ScalarOptional(); -}; +class ScalarOptional {}; diff --git a/src/mc/world/level/ServerLevelRandom.h b/src/mc/world/level/ServerLevelRandom.h index d7fe77753d..705535c6ad 100644 --- a/src/mc/world/level/ServerLevelRandom.h +++ b/src/mc/world/level/ServerLevelRandom.h @@ -11,11 +11,6 @@ class Random; // clang-format on class ServerLevelRandom : public ::LevelRandom { -public: - // prevent constructor by default - ServerLevelRandom& operator=(ServerLevelRandom const&); - ServerLevelRandom(ServerLevelRandom const&); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/level/ServerWorldDebugRenderProxy.h b/src/mc/world/level/ServerWorldDebugRenderProxy.h index 5ab137e982..748b28af2f 100644 --- a/src/mc/world/level/ServerWorldDebugRenderProxy.h +++ b/src/mc/world/level/ServerWorldDebugRenderProxy.h @@ -13,12 +13,6 @@ class Player; // clang-format on class ServerWorldDebugRenderProxy : public ::IServerWorldDebugRenderProxy { -public: - // prevent constructor by default - ServerWorldDebugRenderProxy& operator=(ServerWorldDebugRenderProxy const&); - ServerWorldDebugRenderProxy(ServerWorldDebugRenderProxy const&); - ServerWorldDebugRenderProxy(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/level/SpawnFinder.h b/src/mc/world/level/SpawnFinder.h index 355dad1401..ed010088c7 100644 --- a/src/mc/world/level/SpawnFinder.h +++ b/src/mc/world/level/SpawnFinder.h @@ -9,12 +9,6 @@ class BlockSource; // clang-format on class SpawnFinder { -public: - // prevent constructor by default - SpawnFinder& operator=(SpawnFinder const&); - SpawnFinder(SpawnFinder const&); - SpawnFinder(); - public: // static functions // NOLINTBEGIN diff --git a/src/mc/world/level/biome/BiomeTagComponent.h b/src/mc/world/level/biome/BiomeTagComponent.h index 92262c2e29..33ae823520 100644 --- a/src/mc/world/level/biome/BiomeTagComponent.h +++ b/src/mc/world/level/biome/BiomeTagComponent.h @@ -13,12 +13,6 @@ struct BiomeTagSetIDType; // clang-format on struct BiomeTagComponent : public ::BiomeComponentBase, public ::TagsComponent<::IDType<::BiomeTagSetIDType>> { -public: - // prevent constructor by default - BiomeTagComponent& operator=(BiomeTagComponent const&); - BiomeTagComponent(BiomeTagComponent const&); - BiomeTagComponent(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/level/biome/BiomeTagIDType.h b/src/mc/world/level/biome/BiomeTagIDType.h index 05d314f3d6..406c8b1e8d 100644 --- a/src/mc/world/level/biome/BiomeTagIDType.h +++ b/src/mc/world/level/biome/BiomeTagIDType.h @@ -2,10 +2,4 @@ #include "mc/_HeaderOutputPredefine.h" -struct BiomeTagIDType { -public: - // prevent constructor by default - BiomeTagIDType& operator=(BiomeTagIDType const&); - BiomeTagIDType(BiomeTagIDType const&); - BiomeTagIDType(); -}; +struct BiomeTagIDType {}; diff --git a/src/mc/world/level/biome/BiomeTagSetIDType.h b/src/mc/world/level/biome/BiomeTagSetIDType.h index 3eecdfae98..610ff7bb17 100644 --- a/src/mc/world/level/biome/BiomeTagSetIDType.h +++ b/src/mc/world/level/biome/BiomeTagSetIDType.h @@ -2,10 +2,4 @@ #include "mc/_HeaderOutputPredefine.h" -struct BiomeTagSetIDType { -public: - // prevent constructor by default - BiomeTagSetIDType& operator=(BiomeTagSetIDType const&); - BiomeTagSetIDType(BiomeTagSetIDType const&); - BiomeTagSetIDType(); -}; +struct BiomeTagSetIDType {}; diff --git a/src/mc/world/level/biome/NetherSurfaceFlag.h b/src/mc/world/level/biome/NetherSurfaceFlag.h index 7c3bb6cd12..1a24703bb3 100644 --- a/src/mc/world/level/biome/NetherSurfaceFlag.h +++ b/src/mc/world/level/biome/NetherSurfaceFlag.h @@ -6,12 +6,6 @@ #include "mc/world/level/biome/components/BiomeComponentBase.h" struct NetherSurfaceFlag : public ::BiomeComponentBase { -public: - // prevent constructor by default - NetherSurfaceFlag& operator=(NetherSurfaceFlag const&); - NetherSurfaceFlag(NetherSurfaceFlag const&); - NetherSurfaceFlag(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/level/biome/ToFloatFunction.h b/src/mc/world/level/biome/ToFloatFunction.h index d33ea5051a..5592a34c25 100644 --- a/src/mc/world/level/biome/ToFloatFunction.h +++ b/src/mc/world/level/biome/ToFloatFunction.h @@ -3,10 +3,4 @@ #include "mc/_HeaderOutputPredefine.h" template -class ToFloatFunction { -public: - // prevent constructor by default - ToFloatFunction& operator=(ToFloatFunction const&); - ToFloatFunction(ToFloatFunction const&); - ToFloatFunction(); -}; +class ToFloatFunction {}; diff --git a/src/mc/world/level/biome/VanillaBiomes.h b/src/mc/world/level/biome/VanillaBiomes.h index dcface1eee..cb91626ad8 100644 --- a/src/mc/world/level/biome/VanillaBiomes.h +++ b/src/mc/world/level/biome/VanillaBiomes.h @@ -15,12 +15,6 @@ namespace mce { class Color; } // clang-format on class VanillaBiomes { -public: - // prevent constructor by default - VanillaBiomes& operator=(VanillaBiomes const&); - VanillaBiomes(VanillaBiomes const&); - VanillaBiomes(); - public: // static functions // NOLINTBEGIN diff --git a/src/mc/world/level/biome/component_glue/ClimateBiomeComponentGlue.h b/src/mc/world/level/biome/component_glue/ClimateBiomeComponentGlue.h index 5f76431314..b52d089386 100644 --- a/src/mc/world/level/biome/component_glue/ClimateBiomeComponentGlue.h +++ b/src/mc/world/level/biome/component_glue/ClimateBiomeComponentGlue.h @@ -13,12 +13,6 @@ namespace SharedTypes::v1_20_60 { struct IBiomeJsonComponent; } // clang-format on struct ClimateBiomeComponentGlue : public ::IBiomeComponentGlue { -public: - // prevent constructor by default - ClimateBiomeComponentGlue& operator=(ClimateBiomeComponentGlue const&); - ClimateBiomeComponentGlue(ClimateBiomeComponentGlue const&); - ClimateBiomeComponentGlue(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/level/biome/component_glue/MultinoiseGenerationRulesBiomeComponentGlue.h b/src/mc/world/level/biome/component_glue/MultinoiseGenerationRulesBiomeComponentGlue.h index 5adac3caca..2a016bcb5f 100644 --- a/src/mc/world/level/biome/component_glue/MultinoiseGenerationRulesBiomeComponentGlue.h +++ b/src/mc/world/level/biome/component_glue/MultinoiseGenerationRulesBiomeComponentGlue.h @@ -13,12 +13,6 @@ namespace SharedTypes::v1_20_60 { struct IBiomeJsonComponent; } // clang-format on struct MultinoiseGenerationRulesBiomeComponentGlue : public ::IBiomeComponentGlue { -public: - // prevent constructor by default - MultinoiseGenerationRulesBiomeComponentGlue& operator=(MultinoiseGenerationRulesBiomeComponentGlue const&); - MultinoiseGenerationRulesBiomeComponentGlue(MultinoiseGenerationRulesBiomeComponentGlue const&); - MultinoiseGenerationRulesBiomeComponentGlue(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/level/biome/component_glue/OverworldHeightBiomeComponentGlue.h b/src/mc/world/level/biome/component_glue/OverworldHeightBiomeComponentGlue.h index eb7ee99443..587feae26b 100644 --- a/src/mc/world/level/biome/component_glue/OverworldHeightBiomeComponentGlue.h +++ b/src/mc/world/level/biome/component_glue/OverworldHeightBiomeComponentGlue.h @@ -13,12 +13,6 @@ namespace SharedTypes::v1_20_60 { struct IBiomeJsonComponent; } // clang-format on struct OverworldHeightBiomeComponentGlue : public ::IBiomeComponentGlue { -public: - // prevent constructor by default - OverworldHeightBiomeComponentGlue& operator=(OverworldHeightBiomeComponentGlue const&); - OverworldHeightBiomeComponentGlue(OverworldHeightBiomeComponentGlue const&); - OverworldHeightBiomeComponentGlue(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/level/biome/component_glue/TagsBiomeComponentGlue.h b/src/mc/world/level/biome/component_glue/TagsBiomeComponentGlue.h index 9d1b07ded3..c4a5164fc8 100644 --- a/src/mc/world/level/biome/component_glue/TagsBiomeComponentGlue.h +++ b/src/mc/world/level/biome/component_glue/TagsBiomeComponentGlue.h @@ -13,12 +13,6 @@ namespace SharedTypes::v1_20_60 { struct IBiomeJsonComponent; } // clang-format on struct TagsBiomeComponentGlue : public ::IBiomeComponentGlue { -public: - // prevent constructor by default - TagsBiomeComponentGlue& operator=(TagsBiomeComponentGlue const&); - TagsBiomeComponentGlue(TagsBiomeComponentGlue const&); - TagsBiomeComponentGlue(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/level/biome/component_glue/TheEndSurfaceBiomeComponentGlue.h b/src/mc/world/level/biome/component_glue/TheEndSurfaceBiomeComponentGlue.h index 3dac445366..9593b6bbae 100644 --- a/src/mc/world/level/biome/component_glue/TheEndSurfaceBiomeComponentGlue.h +++ b/src/mc/world/level/biome/component_glue/TheEndSurfaceBiomeComponentGlue.h @@ -13,12 +13,6 @@ namespace SharedTypes::v1_20_60 { struct IBiomeJsonComponent; } // clang-format on struct TheEndSurfaceBiomeComponentGlue : public ::IBiomeComponentGlue { -public: - // prevent constructor by default - TheEndSurfaceBiomeComponentGlue& operator=(TheEndSurfaceBiomeComponentGlue const&); - TheEndSurfaceBiomeComponentGlue(TheEndSurfaceBiomeComponentGlue const&); - TheEndSurfaceBiomeComponentGlue(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/level/biome/components/BiomeComponentBase.h b/src/mc/world/level/biome/components/BiomeComponentBase.h index c63efb84c8..467a44ba93 100644 --- a/src/mc/world/level/biome/components/BiomeComponentBase.h +++ b/src/mc/world/level/biome/components/BiomeComponentBase.h @@ -3,12 +3,6 @@ #include "mc/_HeaderOutputPredefine.h" struct BiomeComponentBase { -public: - // prevent constructor by default - BiomeComponentBase& operator=(BiomeComponentBase const&); - BiomeComponentBase(BiomeComponentBase const&); - BiomeComponentBase(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/level/biome/components/FrozenNoiseBasedTemperatureFlag.h b/src/mc/world/level/biome/components/FrozenNoiseBasedTemperatureFlag.h index 6499a3c9f7..84de853791 100644 --- a/src/mc/world/level/biome/components/FrozenNoiseBasedTemperatureFlag.h +++ b/src/mc/world/level/biome/components/FrozenNoiseBasedTemperatureFlag.h @@ -6,12 +6,6 @@ #include "mc/world/level/biome/components/BiomeComponentBase.h" struct FrozenNoiseBasedTemperatureFlag : public ::BiomeComponentBase { -public: - // prevent constructor by default - FrozenNoiseBasedTemperatureFlag& operator=(FrozenNoiseBasedTemperatureFlag const&); - FrozenNoiseBasedTemperatureFlag(FrozenNoiseBasedTemperatureFlag const&); - FrozenNoiseBasedTemperatureFlag(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/level/biome/components/NoiseBasedColorPaletteFlag.h b/src/mc/world/level/biome/components/NoiseBasedColorPaletteFlag.h index deb7798ade..be9e24bdc5 100644 --- a/src/mc/world/level/biome/components/NoiseBasedColorPaletteFlag.h +++ b/src/mc/world/level/biome/components/NoiseBasedColorPaletteFlag.h @@ -6,12 +6,6 @@ #include "mc/world/level/biome/components/BiomeComponentBase.h" struct NoiseBasedColorPaletteFlag : public ::BiomeComponentBase { -public: - // prevent constructor by default - NoiseBasedColorPaletteFlag& operator=(NoiseBasedColorPaletteFlag const&); - NoiseBasedColorPaletteFlag(NoiseBasedColorPaletteFlag const&); - NoiseBasedColorPaletteFlag(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/level/biome/components/OceanFrozenSurfaceFlag.h b/src/mc/world/level/biome/components/OceanFrozenSurfaceFlag.h index 8b311423b9..d03a1f6881 100644 --- a/src/mc/world/level/biome/components/OceanFrozenSurfaceFlag.h +++ b/src/mc/world/level/biome/components/OceanFrozenSurfaceFlag.h @@ -6,12 +6,6 @@ #include "mc/world/level/biome/components/BiomeComponentBase.h" struct OceanFrozenSurfaceFlag : public ::BiomeComponentBase { -public: - // prevent constructor by default - OceanFrozenSurfaceFlag& operator=(OceanFrozenSurfaceFlag const&); - OceanFrozenSurfaceFlag(OceanFrozenSurfaceFlag const&); - OceanFrozenSurfaceFlag(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/level/biome/components/SwampBiomeSurfaceFlag.h b/src/mc/world/level/biome/components/SwampBiomeSurfaceFlag.h index 6376e75aa4..0f1766e4c6 100644 --- a/src/mc/world/level/biome/components/SwampBiomeSurfaceFlag.h +++ b/src/mc/world/level/biome/components/SwampBiomeSurfaceFlag.h @@ -6,12 +6,6 @@ #include "mc/world/level/biome/components/BiomeComponentBase.h" struct SwampBiomeSurfaceFlag : public ::BiomeComponentBase { -public: - // prevent constructor by default - SwampBiomeSurfaceFlag& operator=(SwampBiomeSurfaceFlag const&); - SwampBiomeSurfaceFlag(SwampBiomeSurfaceFlag const&); - SwampBiomeSurfaceFlag(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/level/biome/components/TheEndBiomeSurfaceFlag.h b/src/mc/world/level/biome/components/TheEndBiomeSurfaceFlag.h index bf3711e231..7c7f426879 100644 --- a/src/mc/world/level/biome/components/TheEndBiomeSurfaceFlag.h +++ b/src/mc/world/level/biome/components/TheEndBiomeSurfaceFlag.h @@ -6,12 +6,6 @@ #include "mc/world/level/biome/components/BiomeComponentBase.h" struct TheEndBiomeSurfaceFlag : public ::BiomeComponentBase { -public: - // prevent constructor by default - TheEndBiomeSurfaceFlag& operator=(TheEndBiomeSurfaceFlag const&); - TheEndBiomeSurfaceFlag(TheEndBiomeSurfaceFlag const&); - TheEndBiomeSurfaceFlag(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/level/biome/glue/IBiomeComponentGlue.h b/src/mc/world/level/biome/glue/IBiomeComponentGlue.h index fd6942e25d..5424832f5e 100644 --- a/src/mc/world/level/biome/glue/IBiomeComponentGlue.h +++ b/src/mc/world/level/biome/glue/IBiomeComponentGlue.h @@ -13,12 +13,6 @@ namespace SharedTypes::v1_20_60 { struct IBiomeJsonComponent; } // clang-format on struct IBiomeComponentGlue { -public: - // prevent constructor by default - IBiomeComponentGlue& operator=(IBiomeComponentGlue const&); - IBiomeComponentGlue(IBiomeComponentGlue const&); - IBiomeComponentGlue(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/level/biome/registry/BiomeJsonDocumentUpgrader.h b/src/mc/world/level/biome/registry/BiomeJsonDocumentUpgrader.h index 361635c4da..2beaf9df78 100644 --- a/src/mc/world/level/biome/registry/BiomeJsonDocumentUpgrader.h +++ b/src/mc/world/level/biome/registry/BiomeJsonDocumentUpgrader.h @@ -9,12 +9,6 @@ namespace cereal { struct ReflectionCtx; } // clang-format on struct BiomeJsonDocumentUpgrader { -public: - // prevent constructor by default - BiomeJsonDocumentUpgrader& operator=(BiomeJsonDocumentUpgrader const&); - BiomeJsonDocumentUpgrader(BiomeJsonDocumentUpgrader const&); - BiomeJsonDocumentUpgrader(); - public: // static functions // NOLINTBEGIN diff --git a/src/mc/world/level/biome/registry/BiomeRegistry.h b/src/mc/world/level/biome/registry/BiomeRegistry.h index 7c50dc285d..e8a1d3be2e 100644 --- a/src/mc/world/level/biome/registry/BiomeRegistry.h +++ b/src/mc/world/level/biome/registry/BiomeRegistry.h @@ -63,13 +63,7 @@ class BiomeRegistry : public ::Bedrock::EnableNonOwnerReferences { using BiomeNameLookupMap = ::std::unordered_map>; - struct BiomeComparator { - public: - // prevent constructor by default - BiomeComparator& operator=(BiomeComparator const&); - BiomeComparator(BiomeComparator const&); - BiomeComparator(); - }; + struct BiomeComparator {}; public: // member variables diff --git a/src/mc/world/level/biome/registry/biome_json_document_upgraders/UpgraderFrom_v1_12_To_v1_13.h b/src/mc/world/level/biome/registry/biome_json_document_upgraders/UpgraderFrom_v1_12_To_v1_13.h index 615e9e8e90..f99977f4d4 100644 --- a/src/mc/world/level/biome/registry/biome_json_document_upgraders/UpgraderFrom_v1_12_To_v1_13.h +++ b/src/mc/world/level/biome/registry/biome_json_document_upgraders/UpgraderFrom_v1_12_To_v1_13.h @@ -13,11 +13,6 @@ class SemVersion; namespace BiomeJsonDocumentUpgraders { class UpgraderFrom_v1_12_To_v1_13 : public ::CerealSchemaUpgrade { -public: - // prevent constructor by default - UpgraderFrom_v1_12_To_v1_13& operator=(UpgraderFrom_v1_12_To_v1_13 const&); - UpgraderFrom_v1_12_To_v1_13(UpgraderFrom_v1_12_To_v1_13 const&); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/level/biome/registry/biome_json_document_upgraders/UpgraderFrom_v1_13_To_v1_20_60.h b/src/mc/world/level/biome/registry/biome_json_document_upgraders/UpgraderFrom_v1_13_To_v1_20_60.h index 3c93175ca9..950d48cd5c 100644 --- a/src/mc/world/level/biome/registry/biome_json_document_upgraders/UpgraderFrom_v1_13_To_v1_20_60.h +++ b/src/mc/world/level/biome/registry/biome_json_document_upgraders/UpgraderFrom_v1_13_To_v1_20_60.h @@ -13,11 +13,6 @@ class SemVersion; namespace BiomeJsonDocumentUpgraders { class UpgraderFrom_v1_13_To_v1_20_60 : public ::CerealSchemaUpgrade { -public: - // prevent constructor by default - UpgraderFrom_v1_13_To_v1_20_60& operator=(UpgraderFrom_v1_13_To_v1_20_60 const&); - UpgraderFrom_v1_13_To_v1_20_60(UpgraderFrom_v1_13_To_v1_20_60 const&); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/level/biome/source/BiomeSource.h b/src/mc/world/level/biome/source/BiomeSource.h index fba73db4ed..8ce2d2a406 100644 --- a/src/mc/world/level/biome/source/BiomeSource.h +++ b/src/mc/world/level/biome/source/BiomeSource.h @@ -15,12 +15,6 @@ struct GetBiomeOptions; // clang-format on class BiomeSource { -public: - // prevent constructor by default - BiomeSource& operator=(BiomeSource const&); - BiomeSource(BiomeSource const&); - BiomeSource(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/level/biome/surface/vanilla/vanilla_surface_builders/CappedSurfaceBuilder.h b/src/mc/world/level/biome/surface/vanilla/vanilla_surface_builders/CappedSurfaceBuilder.h index f00ebffa5d..bae2554c54 100644 --- a/src/mc/world/level/biome/surface/vanilla/vanilla_surface_builders/CappedSurfaceBuilder.h +++ b/src/mc/world/level/biome/surface/vanilla/vanilla_surface_builders/CappedSurfaceBuilder.h @@ -22,12 +22,6 @@ class CappedSurfaceBuilder : public ::ISurfaceBuilder { // CappedSurfaceBuilder inner types define class MaterialHelper { - public: - // prevent constructor by default - MaterialHelper& operator=(MaterialHelper const&); - MaterialHelper(MaterialHelper const&); - MaterialHelper(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/level/biome/surface/vanilla/vanilla_surface_builders/OverworldDefaultSurfaceBuilder.h b/src/mc/world/level/biome/surface/vanilla/vanilla_surface_builders/OverworldDefaultSurfaceBuilder.h index 40dd03a793..bd35b08ff2 100644 --- a/src/mc/world/level/biome/surface/vanilla/vanilla_surface_builders/OverworldDefaultSurfaceBuilder.h +++ b/src/mc/world/level/biome/surface/vanilla/vanilla_surface_builders/OverworldDefaultSurfaceBuilder.h @@ -13,12 +13,6 @@ class Biome; namespace VanillaSurfaceBuilders { class OverworldDefaultSurfaceBuilder : public ::ISurfaceBuilder { -public: - // prevent constructor by default - OverworldDefaultSurfaceBuilder& operator=(OverworldDefaultSurfaceBuilder const&); - OverworldDefaultSurfaceBuilder(OverworldDefaultSurfaceBuilder const&); - OverworldDefaultSurfaceBuilder(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/level/biome/surface/vanilla_surface_builders/TheEndSurfaceBuilder.h b/src/mc/world/level/biome/surface/vanilla_surface_builders/TheEndSurfaceBuilder.h index 1ee5b777e8..8d084ae994 100644 --- a/src/mc/world/level/biome/surface/vanilla_surface_builders/TheEndSurfaceBuilder.h +++ b/src/mc/world/level/biome/surface/vanilla_surface_builders/TheEndSurfaceBuilder.h @@ -13,12 +13,6 @@ class Biome; namespace VanillaSurfaceBuilders { class TheEndSurfaceBuilder : public ::ISurfaceBuilder { -public: - // prevent constructor by default - TheEndSurfaceBuilder& operator=(TheEndSurfaceBuilder const&); - TheEndSurfaceBuilder(TheEndSurfaceBuilder const&); - TheEndSurfaceBuilder(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/level/block/ActorBlockBase.h b/src/mc/world/level/block/ActorBlockBase.h index da14ad1427..9743338be8 100644 --- a/src/mc/world/level/block/ActorBlockBase.h +++ b/src/mc/world/level/block/ActorBlockBase.h @@ -3,10 +3,4 @@ #include "mc/_HeaderOutputPredefine.h" template -class ActorBlockBase { -public: - // prevent constructor by default - ActorBlockBase& operator=(ActorBlockBase const&); - ActorBlockBase(ActorBlockBase const&); - ActorBlockBase(); -}; +class ActorBlockBase {}; diff --git a/src/mc/world/level/block/BlockTintResolver.h b/src/mc/world/level/block/BlockTintResolver.h index 99dc4d6cb6..8e0cfc0c5f 100644 --- a/src/mc/world/level/block/BlockTintResolver.h +++ b/src/mc/world/level/block/BlockTintResolver.h @@ -11,12 +11,6 @@ namespace mce { class Color; } // clang-format on class BlockTintResolver { -public: - // prevent constructor by default - BlockTintResolver& operator=(BlockTintResolver const&); - BlockTintResolver(BlockTintResolver const&); - BlockTintResolver(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/level/block/BlockVolumeBase.h b/src/mc/world/level/block/BlockVolumeBase.h index 66207919d7..215346c5fb 100644 --- a/src/mc/world/level/block/BlockVolumeBase.h +++ b/src/mc/world/level/block/BlockVolumeBase.h @@ -10,12 +10,6 @@ class ChunkPos; // clang-format on class BlockVolumeBase { -public: - // prevent constructor by default - BlockVolumeBase& operator=(BlockVolumeBase const&); - BlockVolumeBase(BlockVolumeBase const&); - BlockVolumeBase(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/level/block/DefaultSculkBehavior.h b/src/mc/world/level/block/DefaultSculkBehavior.h index a02cb5ee15..00d7b7ce8a 100644 --- a/src/mc/world/level/block/DefaultSculkBehavior.h +++ b/src/mc/world/level/block/DefaultSculkBehavior.h @@ -16,12 +16,6 @@ class SculkSpreader; // clang-format on class DefaultSculkBehavior : public ::SculkBehavior { -public: - // prevent constructor by default - DefaultSculkBehavior& operator=(DefaultSculkBehavior const&); - DefaultSculkBehavior(DefaultSculkBehavior const&); - DefaultSculkBehavior(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/level/block/FrontAndTopUtils.h b/src/mc/world/level/block/FrontAndTopUtils.h index f4ab15ae95..62fd5dff19 100644 --- a/src/mc/world/level/block/FrontAndTopUtils.h +++ b/src/mc/world/level/block/FrontAndTopUtils.h @@ -2,10 +2,4 @@ #include "mc/_HeaderOutputPredefine.h" -class FrontAndTopUtils { -public: - // prevent constructor by default - FrontAndTopUtils& operator=(FrontAndTopUtils const&); - FrontAndTopUtils(FrontAndTopUtils const&); - FrontAndTopUtils(); -}; +class FrontAndTopUtils {}; diff --git a/src/mc/world/level/block/GetCollisionShapeInterface.h b/src/mc/world/level/block/GetCollisionShapeInterface.h index b6619d3694..b5e0d10cb1 100644 --- a/src/mc/world/level/block/GetCollisionShapeInterface.h +++ b/src/mc/world/level/block/GetCollisionShapeInterface.h @@ -11,12 +11,6 @@ class AABB; // clang-format on class GetCollisionShapeInterface { -public: - // prevent constructor by default - GetCollisionShapeInterface& operator=(GetCollisionShapeInterface const&); - GetCollisionShapeInterface(GetCollisionShapeInterface const&); - GetCollisionShapeInterface(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/level/block/IResourceDropsStrategy.h b/src/mc/world/level/block/IResourceDropsStrategy.h index 3be1f6c38c..30d63ec253 100644 --- a/src/mc/world/level/block/IResourceDropsStrategy.h +++ b/src/mc/world/level/block/IResourceDropsStrategy.h @@ -11,12 +11,6 @@ struct ResourceDropsContext; // clang-format on class IResourceDropsStrategy { -public: - // prevent constructor by default - IResourceDropsStrategy& operator=(IResourceDropsStrategy const&); - IResourceDropsStrategy(IResourceDropsStrategy const&); - IResourceDropsStrategy(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/level/block/LevelSoundEventMap.h b/src/mc/world/level/block/LevelSoundEventMap.h index 067dc1fc14..6996978fc0 100644 --- a/src/mc/world/level/block/LevelSoundEventMap.h +++ b/src/mc/world/level/block/LevelSoundEventMap.h @@ -7,12 +7,6 @@ #include "mc/util/BidirectionalUnorderedMap.h" class LevelSoundEventMap { -public: - // prevent constructor by default - LevelSoundEventMap& operator=(LevelSoundEventMap const&); - LevelSoundEventMap(LevelSoundEventMap const&); - LevelSoundEventMap(); - public: // static functions // NOLINTBEGIN diff --git a/src/mc/world/level/block/LevelSoundEventUtils.h b/src/mc/world/level/block/LevelSoundEventUtils.h index 292e30d604..0a2c8cbc41 100644 --- a/src/mc/world/level/block/LevelSoundEventUtils.h +++ b/src/mc/world/level/block/LevelSoundEventUtils.h @@ -3,12 +3,6 @@ #include "mc/_HeaderOutputPredefine.h" class LevelSoundEventUtils { -public: - // prevent constructor by default - LevelSoundEventUtils& operator=(LevelSoundEventUtils const&); - LevelSoundEventUtils(LevelSoundEventUtils const&); - LevelSoundEventUtils(); - public: // static functions // NOLINTBEGIN diff --git a/src/mc/world/level/block/LiquidBlockDynamic.h b/src/mc/world/level/block/LiquidBlockDynamic.h index 8076f120b3..c293cc7d06 100644 --- a/src/mc/world/level/block/LiquidBlockDynamic.h +++ b/src/mc/world/level/block/LiquidBlockDynamic.h @@ -17,12 +17,6 @@ namespace BlockEvents { class BlockPlaceEvent; } // clang-format on class LiquidBlockDynamic : public ::LiquidBlock { -public: - // prevent constructor by default - LiquidBlockDynamic& operator=(LiquidBlockDynamic const&); - LiquidBlockDynamic(LiquidBlockDynamic const&); - LiquidBlockDynamic(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/level/block/LiquidBlockStatic.h b/src/mc/world/level/block/LiquidBlockStatic.h index 99cd7672f9..0406e67644 100644 --- a/src/mc/world/level/block/LiquidBlockStatic.h +++ b/src/mc/world/level/block/LiquidBlockStatic.h @@ -15,12 +15,6 @@ class Random; // clang-format on class LiquidBlockStatic : public ::LiquidBlock { -public: - // prevent constructor by default - LiquidBlockStatic& operator=(LiquidBlockStatic const&); - LiquidBlockStatic(LiquidBlockStatic const&); - LiquidBlockStatic(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/level/block/NyliumBlock.h b/src/mc/world/level/block/NyliumBlock.h index 133ffcfb72..881a1a9b04 100644 --- a/src/mc/world/level/block/NyliumBlock.h +++ b/src/mc/world/level/block/NyliumBlock.h @@ -27,21 +27,9 @@ class NyliumBlock : public ::BlockLegacy { // NyliumBlock inner types define using RandomPlantProvider = ::std::function<::Block const&(::Randomize const&)>; - struct WarpedNyliumBlockVegetationProbabilities { - public: - // prevent constructor by default - WarpedNyliumBlockVegetationProbabilities& operator=(WarpedNyliumBlockVegetationProbabilities const&); - WarpedNyliumBlockVegetationProbabilities(WarpedNyliumBlockVegetationProbabilities const&); - WarpedNyliumBlockVegetationProbabilities(); - }; - - struct CrimsonNyliumBlockVegetationProbabilities { - public: - // prevent constructor by default - CrimsonNyliumBlockVegetationProbabilities& operator=(CrimsonNyliumBlockVegetationProbabilities const&); - CrimsonNyliumBlockVegetationProbabilities(CrimsonNyliumBlockVegetationProbabilities const&); - CrimsonNyliumBlockVegetationProbabilities(); - }; + struct WarpedNyliumBlockVegetationProbabilities {}; + + struct CrimsonNyliumBlockVegetationProbabilities {}; public: // virtual functions diff --git a/src/mc/world/level/block/SculkBehavior.h b/src/mc/world/level/block/SculkBehavior.h index e2ca1e5c07..0aa2dd492b 100644 --- a/src/mc/world/level/block/SculkBehavior.h +++ b/src/mc/world/level/block/SculkBehavior.h @@ -13,12 +13,6 @@ class SculkSpreader; // clang-format on class SculkBehavior { -public: - // prevent constructor by default - SculkBehavior& operator=(SculkBehavior const&); - SculkBehavior(SculkBehavior const&); - SculkBehavior(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/level/block/SculkBlockBehavior.h b/src/mc/world/level/block/SculkBlockBehavior.h index 228070029e..3f0600f37e 100644 --- a/src/mc/world/level/block/SculkBlockBehavior.h +++ b/src/mc/world/level/block/SculkBlockBehavior.h @@ -16,12 +16,6 @@ class SculkSpreader; // clang-format on class SculkBlockBehavior : public ::SculkBehavior { -public: - // prevent constructor by default - SculkBlockBehavior& operator=(SculkBlockBehavior const&); - SculkBlockBehavior(SculkBlockBehavior const&); - SculkBlockBehavior(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/level/block/SculkVeinBlockBehavior.h b/src/mc/world/level/block/SculkVeinBlockBehavior.h index f2b142f180..20e7999e23 100644 --- a/src/mc/world/level/block/SculkVeinBlockBehavior.h +++ b/src/mc/world/level/block/SculkVeinBlockBehavior.h @@ -16,12 +16,6 @@ class SculkSpreader; // clang-format on class SculkVeinBlockBehavior : public ::SculkBehavior { -public: - // prevent constructor by default - SculkVeinBlockBehavior& operator=(SculkVeinBlockBehavior const&); - SculkVeinBlockBehavior(SculkVeinBlockBehavior const&); - SculkVeinBlockBehavior(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/level/block/SculkVeinMultifaceSpreader.h b/src/mc/world/level/block/SculkVeinMultifaceSpreader.h index 70beca3762..a69ff8f6c6 100644 --- a/src/mc/world/level/block/SculkVeinMultifaceSpreader.h +++ b/src/mc/world/level/block/SculkVeinMultifaceSpreader.h @@ -13,12 +13,6 @@ class IBlockWorldGenAPI; // clang-format on class SculkVeinMultifaceSpreader : public ::MultifaceSpreader { -public: - // prevent constructor by default - SculkVeinMultifaceSpreader& operator=(SculkVeinMultifaceSpreader const&); - SculkVeinMultifaceSpreader(SculkVeinMultifaceSpreader const&); - SculkVeinMultifaceSpreader(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/level/block/SimpleBlockVolumeIterator.h b/src/mc/world/level/block/SimpleBlockVolumeIterator.h index 1915a9c21b..9fb9a1119b 100644 --- a/src/mc/world/level/block/SimpleBlockVolumeIterator.h +++ b/src/mc/world/level/block/SimpleBlockVolumeIterator.h @@ -11,12 +11,6 @@ class SimpleBlockVolume; // clang-format on class SimpleBlockVolumeIterator : public ::BaseBlockLocationIterator { -public: - // prevent constructor by default - SimpleBlockVolumeIterator& operator=(SimpleBlockVolumeIterator const&); - SimpleBlockVolumeIterator(SimpleBlockVolumeIterator const&); - SimpleBlockVolumeIterator(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/level/block/UpdateEntityAfterFallOnInterface.h b/src/mc/world/level/block/UpdateEntityAfterFallOnInterface.h index 26c08b552c..0a753340cf 100644 --- a/src/mc/world/level/block/UpdateEntityAfterFallOnInterface.h +++ b/src/mc/world/level/block/UpdateEntityAfterFallOnInterface.h @@ -11,12 +11,6 @@ class Vec3; // clang-format on struct UpdateEntityAfterFallOnInterface { -public: - // prevent constructor by default - UpdateEntityAfterFallOnInterface& operator=(UpdateEntityAfterFallOnInterface const&); - UpdateEntityAfterFallOnInterface(UpdateEntityAfterFallOnInterface const&); - UpdateEntityAfterFallOnInterface(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/level/block/VanillaBlockUpdater.h b/src/mc/world/level/block/VanillaBlockUpdater.h index e75407c8ba..4a67db4da4 100644 --- a/src/mc/world/level/block/VanillaBlockUpdater.h +++ b/src/mc/world/level/block/VanillaBlockUpdater.h @@ -8,12 +8,6 @@ class CompoundTagUpdaterContext; // clang-format on class VanillaBlockUpdater { -public: - // prevent constructor by default - VanillaBlockUpdater& operator=(VanillaBlockUpdater const&); - VanillaBlockUpdater(VanillaBlockUpdater const&); - VanillaBlockUpdater(); - public: // static functions // NOLINTBEGIN diff --git a/src/mc/world/level/block/actor/BlockActorFactory.h b/src/mc/world/level/block/actor/BlockActorFactory.h index 4c271065fb..386ab6d799 100644 --- a/src/mc/world/level/block/actor/BlockActorFactory.h +++ b/src/mc/world/level/block/actor/BlockActorFactory.h @@ -13,12 +13,6 @@ class BlockPos; // clang-format on class BlockActorFactory { -public: - // prevent constructor by default - BlockActorFactory& operator=(BlockActorFactory const&); - BlockActorFactory(BlockActorFactory const&); - BlockActorFactory(); - public: // static functions // NOLINTBEGIN diff --git a/src/mc/world/level/block/actor/CalibratedSculkSensorVibrationConfig.h b/src/mc/world/level/block/actor/CalibratedSculkSensorVibrationConfig.h index 1d17fc14a4..9a0df21e07 100644 --- a/src/mc/world/level/block/actor/CalibratedSculkSensorVibrationConfig.h +++ b/src/mc/world/level/block/actor/CalibratedSculkSensorVibrationConfig.h @@ -13,12 +13,6 @@ struct GameEventContext; // clang-format on class CalibratedSculkSensorVibrationConfig : public ::SculkSensorVibrationConfig { -public: - // prevent constructor by default - CalibratedSculkSensorVibrationConfig& operator=(CalibratedSculkSensorVibrationConfig const&); - CalibratedSculkSensorVibrationConfig(CalibratedSculkSensorVibrationConfig const&); - CalibratedSculkSensorVibrationConfig(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/level/block/actor/LabTableReactionComponent.h b/src/mc/world/level/block/actor/LabTableReactionComponent.h index 19fe742a69..17627dbe50 100644 --- a/src/mc/world/level/block/actor/LabTableReactionComponent.h +++ b/src/mc/world/level/block/actor/LabTableReactionComponent.h @@ -9,12 +9,6 @@ class LabTableReaction; // clang-format on class LabTableReactionComponent { -public: - // prevent constructor by default - LabTableReactionComponent& operator=(LabTableReactionComponent const&); - LabTableReactionComponent(LabTableReactionComponent const&); - LabTableReactionComponent(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/level/block/actor/RandomizableBlockActorContainer.h b/src/mc/world/level/block/actor/RandomizableBlockActorContainer.h index 2a2c51423c..65c5f0706b 100644 --- a/src/mc/world/level/block/actor/RandomizableBlockActorContainer.h +++ b/src/mc/world/level/block/actor/RandomizableBlockActorContainer.h @@ -17,12 +17,6 @@ class Vec3; // clang-format on class RandomizableBlockActorContainer : public ::RandomizableBlockActorContainerBase, public ::Container { -public: - // prevent constructor by default - RandomizableBlockActorContainer& operator=(RandomizableBlockActorContainer const&); - RandomizableBlockActorContainer(RandomizableBlockActorContainer const&); - RandomizableBlockActorContainer(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/level/block/actor/RandomizableBlockActorFillingContainer.h b/src/mc/world/level/block/actor/RandomizableBlockActorFillingContainer.h index 5e6b4293dc..3d424b0a47 100644 --- a/src/mc/world/level/block/actor/RandomizableBlockActorFillingContainer.h +++ b/src/mc/world/level/block/actor/RandomizableBlockActorFillingContainer.h @@ -17,12 +17,6 @@ class Vec3; // clang-format on class RandomizableBlockActorFillingContainer : public ::RandomizableBlockActorContainerBase, public ::FillingContainer { -public: - // prevent constructor by default - RandomizableBlockActorFillingContainer& operator=(RandomizableBlockActorFillingContainer const&); - RandomizableBlockActorFillingContainer(RandomizableBlockActorFillingContainer const&); - RandomizableBlockActorFillingContainer(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/level/block/actor/VaultBlockActor.h b/src/mc/world/level/block/actor/VaultBlockActor.h index 89604f0c5c..1f9ac2d53c 100644 --- a/src/mc/world/level/block/actor/VaultBlockActor.h +++ b/src/mc/world/level/block/actor/VaultBlockActor.h @@ -157,12 +157,6 @@ class VaultBlockActor : public ::BlockActor { }; class Server { - public: - // prevent constructor by default - Server& operator=(Server const&); - Server(Server const&); - Server(); - public: // static functions // NOLINTBEGIN @@ -256,12 +250,6 @@ class VaultBlockActor : public ::BlockActor { }; class Client { - public: - // prevent constructor by default - Client& operator=(Client const&); - Client(Client const&); - Client(); - public: // static functions // NOLINTBEGIN diff --git a/src/mc/world/level/block/block_events/BlockPlaceEventExecutor.h b/src/mc/world/level/block/block_events/BlockPlaceEventExecutor.h index 1dad07c76f..3b760f950a 100644 --- a/src/mc/world/level/block/block_events/BlockPlaceEventExecutor.h +++ b/src/mc/world/level/block/block_events/BlockPlaceEventExecutor.h @@ -13,12 +13,6 @@ namespace BlockEvents { class BlockEventBase; } namespace BlockEvents { class BlockPlaceEventExecutor : public ::BlockEvents::BlockEventExecutor { -public: - // prevent constructor by default - BlockPlaceEventExecutor& operator=(BlockPlaceEventExecutor const&); - BlockPlaceEventExecutor(BlockPlaceEventExecutor const&); - BlockPlaceEventExecutor(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/level/block/block_serialization_utils/NbtToBlockCache.h b/src/mc/world/level/block/block_serialization_utils/NbtToBlockCache.h index 39f38f396c..e9ddef5c77 100644 --- a/src/mc/world/level/block/block_serialization_utils/NbtToBlockCache.h +++ b/src/mc/world/level/block/block_serialization_utils/NbtToBlockCache.h @@ -38,13 +38,7 @@ struct NbtToBlockCache { Key(); }; - struct Comparator { - public: - // prevent constructor by default - Comparator& operator=(Comparator const&); - Comparator(Comparator const&); - Comparator(); - }; + struct Comparator {}; public: // member variables diff --git a/src/mc/world/level/block/components/BlockCollisionBoxComponent.h b/src/mc/world/level/block/components/BlockCollisionBoxComponent.h index 591d838572..4d34cba80e 100644 --- a/src/mc/world/level/block/components/BlockCollisionBoxComponent.h +++ b/src/mc/world/level/block/components/BlockCollisionBoxComponent.h @@ -5,10 +5,4 @@ // auto generated inclusion list #include "mc/world/level/block/components/BlockAABBComponentData.h" -struct BlockCollisionBoxComponent : public ::BlockAABBComponentData { -public: - // prevent constructor by default - BlockCollisionBoxComponent& operator=(BlockCollisionBoxComponent const&); - BlockCollisionBoxComponent(BlockCollisionBoxComponent const&); - BlockCollisionBoxComponent(); -}; +struct BlockCollisionBoxComponent : public ::BlockAABBComponentData {}; diff --git a/src/mc/world/level/block/components/BlockComponentStorage.h b/src/mc/world/level/block/components/BlockComponentStorage.h index 7ebf22640d..29a9f80ecc 100644 --- a/src/mc/world/level/block/components/BlockComponentStorage.h +++ b/src/mc/world/level/block/components/BlockComponentStorage.h @@ -14,12 +14,6 @@ class BlockComponentStorage { // BlockComponentStorage inner types define struct ComponentBase { - public: - // prevent constructor by default - ComponentBase& operator=(ComponentBase const&); - ComponentBase(ComponentBase const&); - ComponentBase(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/level/block/components/BlockComponentStorageFinalizer.h b/src/mc/world/level/block/components/BlockComponentStorageFinalizer.h index 00b5d2d6fe..a2e80b1de4 100644 --- a/src/mc/world/level/block/components/BlockComponentStorageFinalizer.h +++ b/src/mc/world/level/block/components/BlockComponentStorageFinalizer.h @@ -8,12 +8,6 @@ class Block; // clang-format on class BlockComponentStorageFinalizer { -public: - // prevent constructor by default - BlockComponentStorageFinalizer& operator=(BlockComponentStorageFinalizer const&); - BlockComponentStorageFinalizer(BlockComponentStorageFinalizer const&); - BlockComponentStorageFinalizer(); - public: // member functions // NOLINTBEGIN diff --git a/src/mc/world/level/block/components/BlockCreativeGroupDescription.h b/src/mc/world/level/block/components/BlockCreativeGroupDescription.h index 907f8e9972..a3c6659b8d 100644 --- a/src/mc/world/level/block/components/BlockCreativeGroupDescription.h +++ b/src/mc/world/level/block/components/BlockCreativeGroupDescription.h @@ -12,12 +12,6 @@ namespace cereal { struct ReflectionCtx; } // clang-format on struct BlockCreativeGroupDescription : public ::BlockComponentDescription { -public: - // prevent constructor by default - BlockCreativeGroupDescription& operator=(BlockCreativeGroupDescription const&); - BlockCreativeGroupDescription(BlockCreativeGroupDescription const&); - BlockCreativeGroupDescription(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/level/block/components/BlockLegacyComponentStorageFinalizer.h b/src/mc/world/level/block/components/BlockLegacyComponentStorageFinalizer.h index 6ddc9c9dc2..c5dd03b27e 100644 --- a/src/mc/world/level/block/components/BlockLegacyComponentStorageFinalizer.h +++ b/src/mc/world/level/block/components/BlockLegacyComponentStorageFinalizer.h @@ -8,12 +8,6 @@ class BlockLegacy; // clang-format on class BlockLegacyComponentStorageFinalizer { -public: - // prevent constructor by default - BlockLegacyComponentStorageFinalizer& operator=(BlockLegacyComponentStorageFinalizer const&); - BlockLegacyComponentStorageFinalizer(BlockLegacyComponentStorageFinalizer const&); - BlockLegacyComponentStorageFinalizer(); - public: // member functions // NOLINTBEGIN diff --git a/src/mc/world/level/block/components/BlockPartVisibilityDescription.h b/src/mc/world/level/block/components/BlockPartVisibilityDescription.h index 60a805c91b..a0252cdc11 100644 --- a/src/mc/world/level/block/components/BlockPartVisibilityDescription.h +++ b/src/mc/world/level/block/components/BlockPartVisibilityDescription.h @@ -6,12 +6,6 @@ #include "mc/world/level/block/components/BlockComponentDescription.h" struct BlockPartVisibilityDescription : public ::BlockComponentDescription { -public: - // prevent constructor by default - BlockPartVisibilityDescription& operator=(BlockPartVisibilityDescription const&); - BlockPartVisibilityDescription(BlockPartVisibilityDescription const&); - BlockPartVisibilityDescription(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/level/block/components/BlockSelectionBoxComponent.h b/src/mc/world/level/block/components/BlockSelectionBoxComponent.h index 10d2bae8d8..0216934708 100644 --- a/src/mc/world/level/block/components/BlockSelectionBoxComponent.h +++ b/src/mc/world/level/block/components/BlockSelectionBoxComponent.h @@ -5,10 +5,4 @@ // auto generated inclusion list #include "mc/world/level/block/components/BlockAABBComponentData.h" -struct BlockSelectionBoxComponent : public ::BlockAABBComponentData { -public: - // prevent constructor by default - BlockSelectionBoxComponent& operator=(BlockSelectionBoxComponent const&); - BlockSelectionBoxComponent(BlockSelectionBoxComponent const&); - BlockSelectionBoxComponent(); -}; +struct BlockSelectionBoxComponent : public ::BlockAABBComponentData {}; diff --git a/src/mc/world/level/block/components/BlockUnitCubeComponent.h b/src/mc/world/level/block/components/BlockUnitCubeComponent.h index 303b27b067..34dc28a57a 100644 --- a/src/mc/world/level/block/components/BlockUnitCubeComponent.h +++ b/src/mc/world/level/block/components/BlockUnitCubeComponent.h @@ -8,12 +8,6 @@ namespace ClientBlockPipeline { struct BlockSchematic; } // clang-format on struct BlockUnitCubeComponent { -public: - // prevent constructor by default - BlockUnitCubeComponent& operator=(BlockUnitCubeComponent const&); - BlockUnitCubeComponent(BlockUnitCubeComponent const&); - BlockUnitCubeComponent(); - public: // static variables // NOLINTBEGIN diff --git a/src/mc/world/level/block/components/BlockUnitCubeDescription.h b/src/mc/world/level/block/components/BlockUnitCubeDescription.h index d8b802f355..fc6747234d 100644 --- a/src/mc/world/level/block/components/BlockUnitCubeDescription.h +++ b/src/mc/world/level/block/components/BlockUnitCubeDescription.h @@ -14,12 +14,6 @@ namespace cereal { struct ReflectionCtx; } // clang-format on struct BlockUnitCubeDescription : public ::BlockComponentDescription { -public: - // prevent constructor by default - BlockUnitCubeDescription& operator=(BlockUnitCubeDescription const&); - BlockUnitCubeDescription(BlockUnitCubeDescription const&); - BlockUnitCubeDescription(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/level/block/components/NetworkedBlockComponentDescription.h b/src/mc/world/level/block/components/NetworkedBlockComponentDescription.h index 20a4b0bcda..ad99d6bca6 100644 --- a/src/mc/world/level/block/components/NetworkedBlockComponentDescription.h +++ b/src/mc/world/level/block/components/NetworkedBlockComponentDescription.h @@ -3,10 +3,4 @@ #include "mc/_HeaderOutputPredefine.h" template -class NetworkedBlockComponentDescription { -public: - // prevent constructor by default - NetworkedBlockComponentDescription& operator=(NetworkedBlockComponentDescription const&); - NetworkedBlockComponentDescription(NetworkedBlockComponentDescription const&); - NetworkedBlockComponentDescription(); -}; +class NetworkedBlockComponentDescription {}; diff --git a/src/mc/world/level/block/components/block_breathability_versioning/BlockBreathability11910Upgrade.h b/src/mc/world/level/block/components/block_breathability_versioning/BlockBreathability11910Upgrade.h index 986d4c7859..bdf271fa97 100644 --- a/src/mc/world/level/block/components/block_breathability_versioning/BlockBreathability11910Upgrade.h +++ b/src/mc/world/level/block/components/block_breathability_versioning/BlockBreathability11910Upgrade.h @@ -13,11 +13,6 @@ class SemVersion; namespace BlockBreathabilityVersioning { class BlockBreathability11910Upgrade : public ::BlockCerealSchemaUpgrade { -public: - // prevent constructor by default - BlockBreathability11910Upgrade& operator=(BlockBreathability11910Upgrade const&); - BlockBreathability11910Upgrade(BlockBreathability11910Upgrade const&); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/level/block/components/block_collision_versioning/BlockCollision118Upgrade.h b/src/mc/world/level/block/components/block_collision_versioning/BlockCollision118Upgrade.h index 50de5aa1ea..cb06da3ad8 100644 --- a/src/mc/world/level/block/components/block_collision_versioning/BlockCollision118Upgrade.h +++ b/src/mc/world/level/block/components/block_collision_versioning/BlockCollision118Upgrade.h @@ -13,11 +13,6 @@ class SemVersion; namespace BlockCollisionVersioning { class BlockCollision118Upgrade : public ::BlockCerealSchemaUpgrade { -public: - // prevent constructor by default - BlockCollision118Upgrade& operator=(BlockCollision118Upgrade const&); - BlockCollision118Upgrade(BlockCollision118Upgrade const&); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/level/block/components/block_collision_versioning/BlockCollision11910Upgrade.h b/src/mc/world/level/block/components/block_collision_versioning/BlockCollision11910Upgrade.h index 3240793720..7b3833b8b0 100644 --- a/src/mc/world/level/block/components/block_collision_versioning/BlockCollision11910Upgrade.h +++ b/src/mc/world/level/block/components/block_collision_versioning/BlockCollision11910Upgrade.h @@ -13,11 +13,6 @@ class SemVersion; namespace BlockCollisionVersioning { class BlockCollision11910Upgrade : public ::BlockCerealSchemaUpgrade { -public: - // prevent constructor by default - BlockCollision11910Upgrade& operator=(BlockCollision11910Upgrade const&); - BlockCollision11910Upgrade(BlockCollision11910Upgrade const&); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/level/block/components/block_crafting_table_versioning/BlockCraftingTable118Upgrade.h b/src/mc/world/level/block/components/block_crafting_table_versioning/BlockCraftingTable118Upgrade.h index 893ab585b6..e298c6608c 100644 --- a/src/mc/world/level/block/components/block_crafting_table_versioning/BlockCraftingTable118Upgrade.h +++ b/src/mc/world/level/block/components/block_crafting_table_versioning/BlockCraftingTable118Upgrade.h @@ -13,11 +13,6 @@ class SemVersion; namespace BlockCraftingTableVersioning { class BlockCraftingTable118Upgrade : public ::BlockCerealSchemaUpgrade { -public: - // prevent constructor by default - BlockCraftingTable118Upgrade& operator=(BlockCraftingTable118Upgrade const&); - BlockCraftingTable118Upgrade(BlockCraftingTable118Upgrade const&); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/level/block/components/block_crafting_table_versioning/BlockCraftingTable11910Upgrade.h b/src/mc/world/level/block/components/block_crafting_table_versioning/BlockCraftingTable11910Upgrade.h index beb75c6fd9..47d8a9b146 100644 --- a/src/mc/world/level/block/components/block_crafting_table_versioning/BlockCraftingTable11910Upgrade.h +++ b/src/mc/world/level/block/components/block_crafting_table_versioning/BlockCraftingTable11910Upgrade.h @@ -13,11 +13,6 @@ class SemVersion; namespace BlockCraftingTableVersioning { class BlockCraftingTable11910Upgrade : public ::BlockCerealSchemaUpgrade { -public: - // prevent constructor by default - BlockCraftingTable11910Upgrade& operator=(BlockCraftingTable11910Upgrade const&); - BlockCraftingTable11910Upgrade(BlockCraftingTable11910Upgrade const&); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/level/block/components/block_creative_group_versioning/BlockCreativeGroup11920Upgrade.h b/src/mc/world/level/block/components/block_creative_group_versioning/BlockCreativeGroup11920Upgrade.h index c7b0c6c345..31f0f86ea3 100644 --- a/src/mc/world/level/block/components/block_creative_group_versioning/BlockCreativeGroup11920Upgrade.h +++ b/src/mc/world/level/block/components/block_creative_group_versioning/BlockCreativeGroup11920Upgrade.h @@ -13,11 +13,6 @@ class SemVersion; namespace BlockCreativeGroupVersioning { class BlockCreativeGroup11920Upgrade : public ::BlockCerealSchemaUpgrade { -public: - // prevent constructor by default - BlockCreativeGroup11920Upgrade& operator=(BlockCreativeGroup11920Upgrade const&); - BlockCreativeGroup11920Upgrade(BlockCreativeGroup11920Upgrade const&); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/level/block/components/block_destroy_time_versioning/BlockDestructibleByMining11910Upgrade.h b/src/mc/world/level/block/components/block_destroy_time_versioning/BlockDestructibleByMining11910Upgrade.h index 14036cae50..da00cc7554 100644 --- a/src/mc/world/level/block/components/block_destroy_time_versioning/BlockDestructibleByMining11910Upgrade.h +++ b/src/mc/world/level/block/components/block_destroy_time_versioning/BlockDestructibleByMining11910Upgrade.h @@ -13,11 +13,6 @@ class SemVersion; namespace BlockDestroyTimeVersioning { class BlockDestructibleByMining11910Upgrade : public ::BlockCerealSchemaUpgrade { -public: - // prevent constructor by default - BlockDestructibleByMining11910Upgrade& operator=(BlockDestructibleByMining11910Upgrade const&); - BlockDestructibleByMining11910Upgrade(BlockDestructibleByMining11910Upgrade const&); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/level/block/components/block_destroy_time_versioning/BlockDestructibleByMining11920Upgrade.h b/src/mc/world/level/block/components/block_destroy_time_versioning/BlockDestructibleByMining11920Upgrade.h index b6c1102891..d365b75aab 100644 --- a/src/mc/world/level/block/components/block_destroy_time_versioning/BlockDestructibleByMining11920Upgrade.h +++ b/src/mc/world/level/block/components/block_destroy_time_versioning/BlockDestructibleByMining11920Upgrade.h @@ -13,11 +13,6 @@ class SemVersion; namespace BlockDestroyTimeVersioning { class BlockDestructibleByMining11920Upgrade : public ::BlockCerealSchemaUpgrade { -public: - // prevent constructor by default - BlockDestructibleByMining11920Upgrade& operator=(BlockDestructibleByMining11920Upgrade const&); - BlockDestructibleByMining11920Upgrade(BlockDestructibleByMining11920Upgrade const&); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/level/block/components/block_destroy_time_versioning/BlockDestructibleByMining12130Upgrade.h b/src/mc/world/level/block/components/block_destroy_time_versioning/BlockDestructibleByMining12130Upgrade.h index fe41e72816..09f7a2c36a 100644 --- a/src/mc/world/level/block/components/block_destroy_time_versioning/BlockDestructibleByMining12130Upgrade.h +++ b/src/mc/world/level/block/components/block_destroy_time_versioning/BlockDestructibleByMining12130Upgrade.h @@ -13,11 +13,6 @@ class SemVersion; namespace BlockDestroyTimeVersioning { class BlockDestructibleByMining12130Upgrade : public ::BlockCerealSchemaUpgrade { -public: - // prevent constructor by default - BlockDestructibleByMining12130Upgrade& operator=(BlockDestructibleByMining12130Upgrade const&); - BlockDestructibleByMining12130Upgrade(BlockDestructibleByMining12130Upgrade const&); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/level/block/components/block_display_name_versioning/BlockDisplayName11910Upgrade.h b/src/mc/world/level/block/components/block_display_name_versioning/BlockDisplayName11910Upgrade.h index 62cca70f58..f1ae1ff1be 100644 --- a/src/mc/world/level/block/components/block_display_name_versioning/BlockDisplayName11910Upgrade.h +++ b/src/mc/world/level/block/components/block_display_name_versioning/BlockDisplayName11910Upgrade.h @@ -13,11 +13,6 @@ class SemVersion; namespace BlockDisplayNameVersioning { class BlockDisplayName11910Upgrade : public ::BlockCerealSchemaUpgrade { -public: - // prevent constructor by default - BlockDisplayName11910Upgrade& operator=(BlockDisplayName11910Upgrade const&); - BlockDisplayName11910Upgrade(BlockDisplayName11910Upgrade const&); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/level/block/components/block_display_name_versioning/BlockDisplayName11930Upgrade.h b/src/mc/world/level/block/components/block_display_name_versioning/BlockDisplayName11930Upgrade.h index 7f87f46735..cc245586c8 100644 --- a/src/mc/world/level/block/components/block_display_name_versioning/BlockDisplayName11930Upgrade.h +++ b/src/mc/world/level/block/components/block_display_name_versioning/BlockDisplayName11930Upgrade.h @@ -13,11 +13,6 @@ class SemVersion; namespace BlockDisplayNameVersioning { class BlockDisplayName11930Upgrade : public ::BlockCerealSchemaUpgrade { -public: - // prevent constructor by default - BlockDisplayName11930Upgrade& operator=(BlockDisplayName11930Upgrade const&); - BlockDisplayName11930Upgrade(BlockDisplayName11930Upgrade const&); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/level/block/components/block_explosion_resistance_versioning/BlockDestructibleByExplosion11920Upgrade.h b/src/mc/world/level/block/components/block_explosion_resistance_versioning/BlockDestructibleByExplosion11920Upgrade.h index 33563ddaac..1c5939bc6d 100644 --- a/src/mc/world/level/block/components/block_explosion_resistance_versioning/BlockDestructibleByExplosion11920Upgrade.h +++ b/src/mc/world/level/block/components/block_explosion_resistance_versioning/BlockDestructibleByExplosion11920Upgrade.h @@ -13,11 +13,6 @@ class SemVersion; namespace BlockExplosionResistanceVersioning { class BlockDestructibleByExplosion11920Upgrade : public ::BlockCerealSchemaUpgrade { -public: - // prevent constructor by default - BlockDestructibleByExplosion11920Upgrade& operator=(BlockDestructibleByExplosion11920Upgrade const&); - BlockDestructibleByExplosion11920Upgrade(BlockDestructibleByExplosion11920Upgrade const&); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/level/block/components/block_explosion_resistance_versioning/BlockExplosionResistance11910Upgrade.h b/src/mc/world/level/block/components/block_explosion_resistance_versioning/BlockExplosionResistance11910Upgrade.h index fb983e91e2..b1b43d5691 100644 --- a/src/mc/world/level/block/components/block_explosion_resistance_versioning/BlockExplosionResistance11910Upgrade.h +++ b/src/mc/world/level/block/components/block_explosion_resistance_versioning/BlockExplosionResistance11910Upgrade.h @@ -13,11 +13,6 @@ class SemVersion; namespace BlockExplosionResistanceVersioning { class BlockExplosionResistance11910Upgrade : public ::BlockCerealSchemaUpgrade { -public: - // prevent constructor by default - BlockExplosionResistance11910Upgrade& operator=(BlockExplosionResistance11910Upgrade const&); - BlockExplosionResistance11910Upgrade(BlockExplosionResistance11910Upgrade const&); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/level/block/components/block_flammable_versioning/BlockFlammable11910Upgrade.h b/src/mc/world/level/block/components/block_flammable_versioning/BlockFlammable11910Upgrade.h index 9972890496..7091686c25 100644 --- a/src/mc/world/level/block/components/block_flammable_versioning/BlockFlammable11910Upgrade.h +++ b/src/mc/world/level/block/components/block_flammable_versioning/BlockFlammable11910Upgrade.h @@ -13,11 +13,6 @@ class SemVersion; namespace BlockFlammableVersioning { class BlockFlammable11910Upgrade : public ::BlockCerealSchemaUpgrade { -public: - // prevent constructor by default - BlockFlammable11910Upgrade& operator=(BlockFlammable11910Upgrade const&); - BlockFlammable11910Upgrade(BlockFlammable11910Upgrade const&); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/level/block/components/block_friction_versioning/BlockFriction11910Upgrade.h b/src/mc/world/level/block/components/block_friction_versioning/BlockFriction11910Upgrade.h index 5e71286245..b147fd71c9 100644 --- a/src/mc/world/level/block/components/block_friction_versioning/BlockFriction11910Upgrade.h +++ b/src/mc/world/level/block/components/block_friction_versioning/BlockFriction11910Upgrade.h @@ -13,11 +13,6 @@ class SemVersion; namespace BlockFrictionVersioning { class BlockFriction11910Upgrade : public ::BlockCerealSchemaUpgrade { -public: - // prevent constructor by default - BlockFriction11910Upgrade& operator=(BlockFriction11910Upgrade const&); - BlockFriction11910Upgrade(BlockFriction11910Upgrade const&); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/level/block/components/block_friction_versioning/BlockFriction11920Upgrade.h b/src/mc/world/level/block/components/block_friction_versioning/BlockFriction11920Upgrade.h index 8cb09f4b67..65db5d8c4b 100644 --- a/src/mc/world/level/block/components/block_friction_versioning/BlockFriction11920Upgrade.h +++ b/src/mc/world/level/block/components/block_friction_versioning/BlockFriction11920Upgrade.h @@ -13,11 +13,6 @@ class SemVersion; namespace BlockFrictionVersioning { class BlockFriction11920Upgrade : public ::BlockCerealSchemaUpgrade { -public: - // prevent constructor by default - BlockFriction11920Upgrade& operator=(BlockFriction11920Upgrade const&); - BlockFriction11920Upgrade(BlockFriction11920Upgrade const&); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/level/block/components/block_geometry_serializer/Constraint.h b/src/mc/world/level/block/components/block_geometry_serializer/Constraint.h index c184292cd8..ef94f28954 100644 --- a/src/mc/world/level/block/components/block_geometry_serializer/Constraint.h +++ b/src/mc/world/level/block/components/block_geometry_serializer/Constraint.h @@ -15,12 +15,6 @@ namespace cereal::internal { struct ConstraintDescription; } namespace BlockGeometrySerializer { struct Constraint : public ::cereal::Constraint { -public: - // prevent constructor by default - Constraint& operator=(Constraint const&); - Constraint(Constraint const&); - Constraint(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/level/block/components/block_geometry_versioning/BlockGeometry11910Upgrade.h b/src/mc/world/level/block/components/block_geometry_versioning/BlockGeometry11910Upgrade.h index 36b5859b22..0bb7f9bc98 100644 --- a/src/mc/world/level/block/components/block_geometry_versioning/BlockGeometry11910Upgrade.h +++ b/src/mc/world/level/block/components/block_geometry_versioning/BlockGeometry11910Upgrade.h @@ -13,11 +13,6 @@ class SemVersion; namespace BlockGeometryVersioning { class BlockGeometry11910Upgrade : public ::BlockCerealSchemaUpgrade { -public: - // prevent constructor by default - BlockGeometry11910Upgrade& operator=(BlockGeometry11910Upgrade const&); - BlockGeometry11910Upgrade(BlockGeometry11910Upgrade const&); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/level/block/components/block_geometry_versioning/BlockGeometry12010Upgrade.h b/src/mc/world/level/block/components/block_geometry_versioning/BlockGeometry12010Upgrade.h index 77424f0468..05bd70fa41 100644 --- a/src/mc/world/level/block/components/block_geometry_versioning/BlockGeometry12010Upgrade.h +++ b/src/mc/world/level/block/components/block_geometry_versioning/BlockGeometry12010Upgrade.h @@ -13,11 +13,6 @@ class SemVersion; namespace BlockGeometryVersioning { class BlockGeometry12010Upgrade : public ::BlockCerealSchemaUpgrade { -public: - // prevent constructor by default - BlockGeometry12010Upgrade& operator=(BlockGeometry12010Upgrade const&); - BlockGeometry12010Upgrade(BlockGeometry12010Upgrade const&); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/level/block/components/block_geometry_versioning/BlockUnitCube12060Upgrade.h b/src/mc/world/level/block/components/block_geometry_versioning/BlockUnitCube12060Upgrade.h index d6bf9401f3..4b720c663b 100644 --- a/src/mc/world/level/block/components/block_geometry_versioning/BlockUnitCube12060Upgrade.h +++ b/src/mc/world/level/block/components/block_geometry_versioning/BlockUnitCube12060Upgrade.h @@ -13,11 +13,6 @@ class SemVersion; namespace BlockGeometryVersioning { class BlockUnitCube12060Upgrade : public ::BlockCerealSchemaUpgrade { -public: - // prevent constructor by default - BlockUnitCube12060Upgrade& operator=(BlockUnitCube12060Upgrade const&); - BlockUnitCube12060Upgrade(BlockUnitCube12060Upgrade const&); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/level/block/components/block_light_dampening_versioning/BlockLightDampening118Upgrade.h b/src/mc/world/level/block/components/block_light_dampening_versioning/BlockLightDampening118Upgrade.h index 77dc52ed35..e690f1c902 100644 --- a/src/mc/world/level/block/components/block_light_dampening_versioning/BlockLightDampening118Upgrade.h +++ b/src/mc/world/level/block/components/block_light_dampening_versioning/BlockLightDampening118Upgrade.h @@ -13,11 +13,6 @@ class SemVersion; namespace BlockLightDampeningVersioning { class BlockLightDampening118Upgrade : public ::BlockCerealSchemaUpgrade { -public: - // prevent constructor by default - BlockLightDampening118Upgrade& operator=(BlockLightDampening118Upgrade const&); - BlockLightDampening118Upgrade(BlockLightDampening118Upgrade const&); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/level/block/components/block_light_dampening_versioning/BlockLightDampening11910Upgrade.h b/src/mc/world/level/block/components/block_light_dampening_versioning/BlockLightDampening11910Upgrade.h index 621f43c246..7e34b8f021 100644 --- a/src/mc/world/level/block/components/block_light_dampening_versioning/BlockLightDampening11910Upgrade.h +++ b/src/mc/world/level/block/components/block_light_dampening_versioning/BlockLightDampening11910Upgrade.h @@ -13,11 +13,6 @@ class SemVersion; namespace BlockLightDampeningVersioning { class BlockLightDampening11910Upgrade : public ::BlockCerealSchemaUpgrade { -public: - // prevent constructor by default - BlockLightDampening11910Upgrade& operator=(BlockLightDampening11910Upgrade const&); - BlockLightDampening11910Upgrade(BlockLightDampening11910Upgrade const&); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/level/block/components/block_light_dampening_versioning/BlockLightDampening11940Upgrade.h b/src/mc/world/level/block/components/block_light_dampening_versioning/BlockLightDampening11940Upgrade.h index ac644aec46..85c4c09bbd 100644 --- a/src/mc/world/level/block/components/block_light_dampening_versioning/BlockLightDampening11940Upgrade.h +++ b/src/mc/world/level/block/components/block_light_dampening_versioning/BlockLightDampening11940Upgrade.h @@ -13,11 +13,6 @@ class SemVersion; namespace BlockLightDampeningVersioning { class BlockLightDampening11940Upgrade : public ::BlockCerealSchemaUpgrade { -public: - // prevent constructor by default - BlockLightDampening11940Upgrade& operator=(BlockLightDampening11940Upgrade const&); - BlockLightDampening11940Upgrade(BlockLightDampening11940Upgrade const&); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/level/block/components/block_light_emission_versioning/BlockLightEmission11910Upgrade.h b/src/mc/world/level/block/components/block_light_emission_versioning/BlockLightEmission11910Upgrade.h index a9aed22493..4ae671364b 100644 --- a/src/mc/world/level/block/components/block_light_emission_versioning/BlockLightEmission11910Upgrade.h +++ b/src/mc/world/level/block/components/block_light_emission_versioning/BlockLightEmission11910Upgrade.h @@ -13,11 +13,6 @@ class SemVersion; namespace BlockLightEmissionVersioning { class BlockLightEmission11910Upgrade : public ::BlockCerealSchemaUpgrade { -public: - // prevent constructor by default - BlockLightEmission11910Upgrade& operator=(BlockLightEmission11910Upgrade const&); - BlockLightEmission11910Upgrade(BlockLightEmission11910Upgrade const&); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/level/block/components/block_loot_versioning/BlockLoot11910Upgrade.h b/src/mc/world/level/block/components/block_loot_versioning/BlockLoot11910Upgrade.h index fbcfe91ce0..2c484e88ee 100644 --- a/src/mc/world/level/block/components/block_loot_versioning/BlockLoot11910Upgrade.h +++ b/src/mc/world/level/block/components/block_loot_versioning/BlockLoot11910Upgrade.h @@ -13,11 +13,6 @@ class SemVersion; namespace BlockLootVersioning { class BlockLoot11910Upgrade : public ::BlockCerealSchemaUpgrade { -public: - // prevent constructor by default - BlockLoot11910Upgrade& operator=(BlockLoot11910Upgrade const&); - BlockLoot11910Upgrade(BlockLoot11910Upgrade const&); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/level/block/components/block_map_color_versioning/BlockMapColor11910Upgrade.h b/src/mc/world/level/block/components/block_map_color_versioning/BlockMapColor11910Upgrade.h index 6e90d95ccc..7a273f2ddb 100644 --- a/src/mc/world/level/block/components/block_map_color_versioning/BlockMapColor11910Upgrade.h +++ b/src/mc/world/level/block/components/block_map_color_versioning/BlockMapColor11910Upgrade.h @@ -13,11 +13,6 @@ class SemVersion; namespace BlockMapColorVersioning { class BlockMapColor11910Upgrade : public ::BlockCerealSchemaUpgrade { -public: - // prevent constructor by default - BlockMapColor11910Upgrade& operator=(BlockMapColor11910Upgrade const&); - BlockMapColor11910Upgrade(BlockMapColor11910Upgrade const&); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/level/block/components/block_matrix_helpers/RotationKeyHasher.h b/src/mc/world/level/block/components/block_matrix_helpers/RotationKeyHasher.h index f7072567d8..9d0e641ef0 100644 --- a/src/mc/world/level/block/components/block_matrix_helpers/RotationKeyHasher.h +++ b/src/mc/world/level/block/components/block_matrix_helpers/RotationKeyHasher.h @@ -4,12 +4,6 @@ namespace BlockMatrixHelpers { -struct RotationKeyHasher { -public: - // prevent constructor by default - RotationKeyHasher& operator=(RotationKeyHasher const&); - RotationKeyHasher(RotationKeyHasher const&); - RotationKeyHasher(); -}; +struct RotationKeyHasher {}; } // namespace BlockMatrixHelpers diff --git a/src/mc/world/level/block/components/block_part_visibility_versioning/BlockPartVisibility11980Upgrade.h b/src/mc/world/level/block/components/block_part_visibility_versioning/BlockPartVisibility11980Upgrade.h index 2cd2e5d43c..5126535796 100644 --- a/src/mc/world/level/block/components/block_part_visibility_versioning/BlockPartVisibility11980Upgrade.h +++ b/src/mc/world/level/block/components/block_part_visibility_versioning/BlockPartVisibility11980Upgrade.h @@ -13,12 +13,6 @@ class SemVersion; namespace BlockPartVisibilityVersioning { class BlockPartVisibility11980Upgrade : public ::BlockCerealSchemaUpgrade { -public: - // prevent constructor by default - BlockPartVisibility11980Upgrade& operator=(BlockPartVisibility11980Upgrade const&); - BlockPartVisibility11980Upgrade(BlockPartVisibility11980Upgrade const&); - BlockPartVisibility11980Upgrade(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/level/block/components/block_queued_ticking_versioning/BlockQueuedTicking11910Upgrade.h b/src/mc/world/level/block/components/block_queued_ticking_versioning/BlockQueuedTicking11910Upgrade.h index 196024f1ae..8014a95ba5 100644 --- a/src/mc/world/level/block/components/block_queued_ticking_versioning/BlockQueuedTicking11910Upgrade.h +++ b/src/mc/world/level/block/components/block_queued_ticking_versioning/BlockQueuedTicking11910Upgrade.h @@ -13,11 +13,6 @@ class SemVersion; namespace BlockQueuedTickingVersioning { class BlockQueuedTicking11910Upgrade : public ::BlockCerealSchemaUpgrade { -public: - // prevent constructor by default - BlockQueuedTicking11910Upgrade& operator=(BlockQueuedTicking11910Upgrade const&); - BlockQueuedTicking11910Upgrade(BlockQueuedTicking11910Upgrade const&); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/level/block/components/block_selection_box_versioning/BlockAimCollision118Upgrade.h b/src/mc/world/level/block/components/block_selection_box_versioning/BlockAimCollision118Upgrade.h index db37809e5d..c9e20031ce 100644 --- a/src/mc/world/level/block/components/block_selection_box_versioning/BlockAimCollision118Upgrade.h +++ b/src/mc/world/level/block/components/block_selection_box_versioning/BlockAimCollision118Upgrade.h @@ -13,11 +13,6 @@ class SemVersion; namespace BlockSelectionBoxVersioning { class BlockAimCollision118Upgrade : public ::BlockCerealSchemaUpgrade { -public: - // prevent constructor by default - BlockAimCollision118Upgrade& operator=(BlockAimCollision118Upgrade const&); - BlockAimCollision118Upgrade(BlockAimCollision118Upgrade const&); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/level/block/components/block_selection_box_versioning/BlockAimCollision11910Upgrade.h b/src/mc/world/level/block/components/block_selection_box_versioning/BlockAimCollision11910Upgrade.h index eeae35f873..cc470b99c2 100644 --- a/src/mc/world/level/block/components/block_selection_box_versioning/BlockAimCollision11910Upgrade.h +++ b/src/mc/world/level/block/components/block_selection_box_versioning/BlockAimCollision11910Upgrade.h @@ -13,11 +13,6 @@ class SemVersion; namespace BlockSelectionBoxVersioning { class BlockAimCollision11910Upgrade : public ::BlockCerealSchemaUpgrade { -public: - // prevent constructor by default - BlockAimCollision11910Upgrade& operator=(BlockAimCollision11910Upgrade const&); - BlockAimCollision11910Upgrade(BlockAimCollision11910Upgrade const&); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/level/block/components/block_selection_box_versioning/BlockSelectionBox11920Upgrade.h b/src/mc/world/level/block/components/block_selection_box_versioning/BlockSelectionBox11920Upgrade.h index a09789583b..f9c8a05894 100644 --- a/src/mc/world/level/block/components/block_selection_box_versioning/BlockSelectionBox11920Upgrade.h +++ b/src/mc/world/level/block/components/block_selection_box_versioning/BlockSelectionBox11920Upgrade.h @@ -13,11 +13,6 @@ class SemVersion; namespace BlockSelectionBoxVersioning { class BlockSelectionBox11920Upgrade : public ::BlockCerealSchemaUpgrade { -public: - // prevent constructor by default - BlockSelectionBox11920Upgrade& operator=(BlockSelectionBox11920Upgrade const&); - BlockSelectionBox11920Upgrade(BlockSelectionBox11920Upgrade const&); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/level/block/components/block_tranformation_versioning/BlockTranformationVersioning11980Upgrade.h b/src/mc/world/level/block/components/block_tranformation_versioning/BlockTranformationVersioning11980Upgrade.h index 5fabefc866..32498bc995 100644 --- a/src/mc/world/level/block/components/block_tranformation_versioning/BlockTranformationVersioning11980Upgrade.h +++ b/src/mc/world/level/block/components/block_tranformation_versioning/BlockTranformationVersioning11980Upgrade.h @@ -13,11 +13,6 @@ class SemVersion; namespace BlockTranformationVersioning { class BlockTranformationVersioning11980Upgrade : public ::BlockCerealSchemaUpgrade { -public: - // prevent constructor by default - BlockTranformationVersioning11980Upgrade& operator=(BlockTranformationVersioning11980Upgrade const&); - BlockTranformationVersioning11980Upgrade(BlockTranformationVersioning11980Upgrade const&); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/level/block/components/triggers/BlockTriggerDescription.h b/src/mc/world/level/block/components/triggers/BlockTriggerDescription.h index 23a819ed1b..4ef9fb0bbb 100644 --- a/src/mc/world/level/block/components/triggers/BlockTriggerDescription.h +++ b/src/mc/world/level/block/components/triggers/BlockTriggerDescription.h @@ -3,10 +3,4 @@ #include "mc/_HeaderOutputPredefine.h" template -struct BlockTriggerDescription { -public: - // prevent constructor by default - BlockTriggerDescription& operator=(BlockTriggerDescription const&); - BlockTriggerDescription(BlockTriggerDescription const&); - BlockTriggerDescription(); -}; +struct BlockTriggerDescription {}; diff --git a/src/mc/world/level/block/components/triggers/OnInteractTriggerDescription.h b/src/mc/world/level/block/components/triggers/OnInteractTriggerDescription.h index e50b6429ea..5660a910b7 100644 --- a/src/mc/world/level/block/components/triggers/OnInteractTriggerDescription.h +++ b/src/mc/world/level/block/components/triggers/OnInteractTriggerDescription.h @@ -13,12 +13,6 @@ namespace cereal { struct ReflectionCtx; } // clang-format on class OnInteractTriggerDescription : public ::BlockTriggerDescription<::OnInteractTrigger> { -public: - // prevent constructor by default - OnInteractTriggerDescription& operator=(OnInteractTriggerDescription const&); - OnInteractTriggerDescription(OnInteractTriggerDescription const&); - OnInteractTriggerDescription(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/level/block/components/triggers/OnPlacedTriggerDescription.h b/src/mc/world/level/block/components/triggers/OnPlacedTriggerDescription.h index baed4b6647..34542c927b 100644 --- a/src/mc/world/level/block/components/triggers/OnPlacedTriggerDescription.h +++ b/src/mc/world/level/block/components/triggers/OnPlacedTriggerDescription.h @@ -11,12 +11,6 @@ class OnPlacedTrigger; // clang-format on class OnPlacedTriggerDescription : public ::BlockTriggerDescription<::OnPlacedTrigger> { -public: - // prevent constructor by default - OnPlacedTriggerDescription& operator=(OnPlacedTriggerDescription const&); - OnPlacedTriggerDescription(OnPlacedTriggerDescription const&); - OnPlacedTriggerDescription(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/level/block/components/triggers/OnPlayerDestroyedTriggerDescription.h b/src/mc/world/level/block/components/triggers/OnPlayerDestroyedTriggerDescription.h index 987eb2a22c..2330c33e9e 100644 --- a/src/mc/world/level/block/components/triggers/OnPlayerDestroyedTriggerDescription.h +++ b/src/mc/world/level/block/components/triggers/OnPlayerDestroyedTriggerDescription.h @@ -11,12 +11,6 @@ class OnPlayerDestroyedTrigger; // clang-format on class OnPlayerDestroyedTriggerDescription : public ::BlockTriggerDescription<::OnPlayerDestroyedTrigger> { -public: - // prevent constructor by default - OnPlayerDestroyedTriggerDescription& operator=(OnPlayerDestroyedTriggerDescription const&); - OnPlayerDestroyedTriggerDescription(OnPlayerDestroyedTriggerDescription const&); - OnPlayerDestroyedTriggerDescription(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/level/block/components/triggers/OnPlayerPlacingTriggerDescription.h b/src/mc/world/level/block/components/triggers/OnPlayerPlacingTriggerDescription.h index 0d187628e0..3b859ecf50 100644 --- a/src/mc/world/level/block/components/triggers/OnPlayerPlacingTriggerDescription.h +++ b/src/mc/world/level/block/components/triggers/OnPlayerPlacingTriggerDescription.h @@ -13,12 +13,6 @@ namespace cereal { struct ReflectionCtx; } // clang-format on class OnPlayerPlacingTriggerDescription : public ::BlockTriggerDescription<::OnPlayerPlacingTrigger> { -public: - // prevent constructor by default - OnPlayerPlacingTriggerDescription& operator=(OnPlayerPlacingTriggerDescription const&); - OnPlayerPlacingTriggerDescription(OnPlayerPlacingTriggerDescription const&); - OnPlayerPlacingTriggerDescription(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/level/block/components/triggers/OnStepOffTriggerDescription.h b/src/mc/world/level/block/components/triggers/OnStepOffTriggerDescription.h index 0e6cc7316f..49c88c6a59 100644 --- a/src/mc/world/level/block/components/triggers/OnStepOffTriggerDescription.h +++ b/src/mc/world/level/block/components/triggers/OnStepOffTriggerDescription.h @@ -11,12 +11,6 @@ class OnStepOffTrigger; // clang-format on class OnStepOffTriggerDescription : public ::BlockTriggerDescription<::OnStepOffTrigger> { -public: - // prevent constructor by default - OnStepOffTriggerDescription& operator=(OnStepOffTriggerDescription const&); - OnStepOffTriggerDescription(OnStepOffTriggerDescription const&); - OnStepOffTriggerDescription(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/level/block/components/triggers/OnStepOnTriggerDescription.h b/src/mc/world/level/block/components/triggers/OnStepOnTriggerDescription.h index 4e4e29342b..e2ff811cb1 100644 --- a/src/mc/world/level/block/components/triggers/OnStepOnTriggerDescription.h +++ b/src/mc/world/level/block/components/triggers/OnStepOnTriggerDescription.h @@ -11,12 +11,6 @@ class OnStepOnTrigger; // clang-format on class OnStepOnTriggerDescription : public ::BlockTriggerDescription<::OnStepOnTrigger> { -public: - // prevent constructor by default - OnStepOnTriggerDescription& operator=(OnStepOnTriggerDescription const&); - OnStepOnTriggerDescription(OnStepOnTriggerDescription const&); - OnStepOnTriggerDescription(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/level/block/definition/block_description_versioning/BlockDescription11940Upgrade.h b/src/mc/world/level/block/definition/block_description_versioning/BlockDescription11940Upgrade.h index 473585b251..719a50eaf8 100644 --- a/src/mc/world/level/block/definition/block_description_versioning/BlockDescription11940Upgrade.h +++ b/src/mc/world/level/block/definition/block_description_versioning/BlockDescription11940Upgrade.h @@ -13,11 +13,6 @@ class SemVersion; namespace BlockDescriptionVersioning { class BlockDescription11940Upgrade : public ::BlockCerealSchemaUpgrade { -public: - // prevent constructor by default - BlockDescription11940Upgrade& operator=(BlockDescription11940Upgrade const&); - BlockDescription11940Upgrade(BlockDescription11940Upgrade const&); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/level/block/events/BlockEventResponseFactory.h b/src/mc/world/level/block/events/BlockEventResponseFactory.h index b504357aa0..02602c797d 100644 --- a/src/mc/world/level/block/events/BlockEventResponseFactory.h +++ b/src/mc/world/level/block/events/BlockEventResponseFactory.h @@ -12,12 +12,6 @@ class IPackLoadContext; // clang-format on class BlockEventResponseFactory : public ::EventResponseFactory, public ::IPackLoadScoped { -public: - // prevent constructor by default - BlockEventResponseFactory& operator=(BlockEventResponseFactory const&); - BlockEventResponseFactory(BlockEventResponseFactory const&); - BlockEventResponseFactory(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/level/block/registry/BlockRegistryManager.h b/src/mc/world/level/block/registry/BlockRegistryManager.h index 56152caf4b..c028f98b99 100644 --- a/src/mc/world/level/block/registry/BlockRegistryManager.h +++ b/src/mc/world/level/block/registry/BlockRegistryManager.h @@ -12,12 +12,6 @@ class BlockTypeRegistry; // clang-format on class BlockRegistryManager { -public: - // prevent constructor by default - BlockRegistryManager& operator=(BlockRegistryManager const&); - BlockRegistryManager(BlockRegistryManager const&); - BlockRegistryManager(); - public: // static variables // NOLINTBEGIN diff --git a/src/mc/world/level/block/registry/ClientUnknownBlockTypeRegistry.h b/src/mc/world/level/block/registry/ClientUnknownBlockTypeRegistry.h index 65815dce8a..0692c23d91 100644 --- a/src/mc/world/level/block/registry/ClientUnknownBlockTypeRegistry.h +++ b/src/mc/world/level/block/registry/ClientUnknownBlockTypeRegistry.h @@ -12,12 +12,6 @@ class CompoundTag; // clang-format on class ClientUnknownBlockTypeRegistry : public ::IUnknownBlockTypeRegistry { -public: - // prevent constructor by default - ClientUnknownBlockTypeRegistry& operator=(ClientUnknownBlockTypeRegistry const&); - ClientUnknownBlockTypeRegistry(ClientUnknownBlockTypeRegistry const&); - ClientUnknownBlockTypeRegistry(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/level/block/registry/IUnknownBlockTypeRegistry.h b/src/mc/world/level/block/registry/IUnknownBlockTypeRegistry.h index b8002a0e24..f55447fc61 100644 --- a/src/mc/world/level/block/registry/IUnknownBlockTypeRegistry.h +++ b/src/mc/world/level/block/registry/IUnknownBlockTypeRegistry.h @@ -12,12 +12,6 @@ class CompoundTag; // clang-format on class IUnknownBlockTypeRegistry : public ::Bedrock::EnableNonOwnerReferences { -public: - // prevent constructor by default - IUnknownBlockTypeRegistry& operator=(IUnknownBlockTypeRegistry const&); - IUnknownBlockTypeRegistry(IUnknownBlockTypeRegistry const&); - IUnknownBlockTypeRegistry(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/level/block/registry/VanillaDataDrivenGeometry.h b/src/mc/world/level/block/registry/VanillaDataDrivenGeometry.h index 7decbb5bce..7405ba7e2b 100644 --- a/src/mc/world/level/block/registry/VanillaDataDrivenGeometry.h +++ b/src/mc/world/level/block/registry/VanillaDataDrivenGeometry.h @@ -8,12 +8,6 @@ class Experiments; // clang-format on class VanillaDataDrivenGeometry { -public: - // prevent constructor by default - VanillaDataDrivenGeometry& operator=(VanillaDataDrivenGeometry const&); - VanillaDataDrivenGeometry(VanillaDataDrivenGeometry const&); - VanillaDataDrivenGeometry(); - public: // static functions // NOLINTBEGIN diff --git a/src/mc/world/level/block/states/BlockStateVariant.h b/src/mc/world/level/block/states/BlockStateVariant.h index 782c531d33..4792d67518 100644 --- a/src/mc/world/level/block/states/BlockStateVariant.h +++ b/src/mc/world/level/block/states/BlockStateVariant.h @@ -3,10 +3,4 @@ #include "mc/_HeaderOutputPredefine.h" template -class BlockStateVariant { -public: - // prevent constructor by default - BlockStateVariant& operator=(BlockStateVariant const&); - BlockStateVariant(BlockStateVariant const&); - BlockStateVariant(); -}; +class BlockStateVariant {}; diff --git a/src/mc/world/level/block/states/BuiltInBlockStateVariant.h b/src/mc/world/level/block/states/BuiltInBlockStateVariant.h index 207391ccd4..33de470243 100644 --- a/src/mc/world/level/block/states/BuiltInBlockStateVariant.h +++ b/src/mc/world/level/block/states/BuiltInBlockStateVariant.h @@ -3,10 +3,4 @@ #include "mc/_HeaderOutputPredefine.h" template -class BuiltInBlockStateVariant { -public: - // prevent constructor by default - BuiltInBlockStateVariant& operator=(BuiltInBlockStateVariant const&); - BuiltInBlockStateVariant(BuiltInBlockStateVariant const&); - BuiltInBlockStateVariant(); -}; +class BuiltInBlockStateVariant {}; diff --git a/src/mc/world/level/block/states/VanillaBlockStateTransformUtils.h b/src/mc/world/level/block/states/VanillaBlockStateTransformUtils.h index 48b46d57ac..586140f9d3 100644 --- a/src/mc/world/level/block/states/VanillaBlockStateTransformUtils.h +++ b/src/mc/world/level/block/states/VanillaBlockStateTransformUtils.h @@ -14,12 +14,6 @@ class Block; // clang-format on class VanillaBlockStateTransformUtils { -public: - // prevent constructor by default - VanillaBlockStateTransformUtils& operator=(VanillaBlockStateTransformUtils const&); - VanillaBlockStateTransformUtils(VanillaBlockStateTransformUtils const&); - VanillaBlockStateTransformUtils(); - public: // static functions // NOLINTBEGIN diff --git a/src/mc/world/level/block/traits/block_trait/IGetPlacementBlockCallback.h b/src/mc/world/level/block/traits/block_trait/IGetPlacementBlockCallback.h index 7c7b8c3bd6..e77cf7a95a 100644 --- a/src/mc/world/level/block/traits/block_trait/IGetPlacementBlockCallback.h +++ b/src/mc/world/level/block/traits/block_trait/IGetPlacementBlockCallback.h @@ -13,12 +13,6 @@ class Vec3; namespace BlockTrait { class IGetPlacementBlockCallback { -public: - // prevent constructor by default - IGetPlacementBlockCallback& operator=(IGetPlacementBlockCallback const&); - IGetPlacementBlockCallback(IGetPlacementBlockCallback const&); - IGetPlacementBlockCallback(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/level/block/traits/block_trait/ITrait.h b/src/mc/world/level/block/traits/block_trait/ITrait.h index 8ef816c61e..058286031a 100644 --- a/src/mc/world/level/block/traits/block_trait/ITrait.h +++ b/src/mc/world/level/block/traits/block_trait/ITrait.h @@ -11,12 +11,6 @@ class CompoundTag; namespace BlockTrait { class ITrait { -public: - // prevent constructor by default - ITrait& operator=(ITrait const&); - ITrait(ITrait const&); - ITrait(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/level/block/traits/block_trait/placement_position/PlacementPosition.h b/src/mc/world/level/block/traits/block_trait/placement_position/PlacementPosition.h index f638cd0647..eb10be2b68 100644 --- a/src/mc/world/level/block/traits/block_trait/placement_position/PlacementPosition.h +++ b/src/mc/world/level/block/traits/block_trait/placement_position/PlacementPosition.h @@ -30,12 +30,6 @@ class PlacementPosition : public ::BlockTrait::ITrait { // PlacementPosition inner types define class UpdateBlockFaceGetPlacementBlockCallback : public ::BlockTrait::IGetPlacementBlockCallback { - public: - // prevent constructor by default - UpdateBlockFaceGetPlacementBlockCallback& operator=(UpdateBlockFaceGetPlacementBlockCallback const&); - UpdateBlockFaceGetPlacementBlockCallback(UpdateBlockFaceGetPlacementBlockCallback const&); - UpdateBlockFaceGetPlacementBlockCallback(); - public: // virtual functions // NOLINTBEGIN @@ -80,12 +74,6 @@ class PlacementPosition : public ::BlockTrait::ITrait { }; class UpdateVerticalHalfGetPlacementBlockCallback : public ::BlockTrait::IGetPlacementBlockCallback { - public: - // prevent constructor by default - UpdateVerticalHalfGetPlacementBlockCallback& operator=(UpdateVerticalHalfGetPlacementBlockCallback const&); - UpdateVerticalHalfGetPlacementBlockCallback(UpdateVerticalHalfGetPlacementBlockCallback const&); - UpdateVerticalHalfGetPlacementBlockCallback(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/level/camera/aimassist/camera_aim_assist_system_util/BlockHitDetectResultEqual.h b/src/mc/world/level/camera/aimassist/camera_aim_assist_system_util/BlockHitDetectResultEqual.h index a89b76ea0e..311a5895a7 100644 --- a/src/mc/world/level/camera/aimassist/camera_aim_assist_system_util/BlockHitDetectResultEqual.h +++ b/src/mc/world/level/camera/aimassist/camera_aim_assist_system_util/BlockHitDetectResultEqual.h @@ -4,12 +4,6 @@ namespace CameraAimAssistSystemUtil { -struct BlockHitDetectResultEqual { -public: - // prevent constructor by default - BlockHitDetectResultEqual& operator=(BlockHitDetectResultEqual const&); - BlockHitDetectResultEqual(BlockHitDetectResultEqual const&); - BlockHitDetectResultEqual(); -}; +struct BlockHitDetectResultEqual {}; } // namespace CameraAimAssistSystemUtil diff --git a/src/mc/world/level/camera/aimassist/camera_aim_assist_system_util/BlockHitDetectResultHash.h b/src/mc/world/level/camera/aimassist/camera_aim_assist_system_util/BlockHitDetectResultHash.h index 3f6fdba448..13fab42d53 100644 --- a/src/mc/world/level/camera/aimassist/camera_aim_assist_system_util/BlockHitDetectResultHash.h +++ b/src/mc/world/level/camera/aimassist/camera_aim_assist_system_util/BlockHitDetectResultHash.h @@ -4,12 +4,6 @@ namespace CameraAimAssistSystemUtil { -struct BlockHitDetectResultHash { -public: - // prevent constructor by default - BlockHitDetectResultHash& operator=(BlockHitDetectResultHash const&); - BlockHitDetectResultHash(BlockHitDetectResultHash const&); - BlockHitDetectResultHash(); -}; +struct BlockHitDetectResultHash {}; } // namespace CameraAimAssistSystemUtil diff --git a/src/mc/world/level/chunk/DynamicSpawnArea.h b/src/mc/world/level/chunk/DynamicSpawnArea.h index a9df6db425..e9f8167eb2 100644 --- a/src/mc/world/level/chunk/DynamicSpawnArea.h +++ b/src/mc/world/level/chunk/DynamicSpawnArea.h @@ -4,12 +4,6 @@ namespace br { -struct DynamicSpawnArea { -public: - // prevent constructor by default - DynamicSpawnArea& operator=(DynamicSpawnArea const&); - DynamicSpawnArea(DynamicSpawnArea const&); - DynamicSpawnArea(); -}; +struct DynamicSpawnArea {}; } // namespace br diff --git a/src/mc/world/level/chunk/EmptyChunkSource.h b/src/mc/world/level/chunk/EmptyChunkSource.h index 384cb24cbb..0851d9cb56 100644 --- a/src/mc/world/level/chunk/EmptyChunkSource.h +++ b/src/mc/world/level/chunk/EmptyChunkSource.h @@ -12,12 +12,6 @@ class LevelChunk; // clang-format on class EmptyChunkSource : public ::ChunkSource { -public: - // prevent constructor by default - EmptyChunkSource& operator=(EmptyChunkSource const&); - EmptyChunkSource(EmptyChunkSource const&); - EmptyChunkSource(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/level/chunk/FullStructureBoundingBox.h b/src/mc/world/level/chunk/FullStructureBoundingBox.h index 92aae0f29d..d4a05275df 100644 --- a/src/mc/world/level/chunk/FullStructureBoundingBox.h +++ b/src/mc/world/level/chunk/FullStructureBoundingBox.h @@ -4,12 +4,6 @@ namespace br { -struct FullStructureBoundingBox { -public: - // prevent constructor by default - FullStructureBoundingBox& operator=(FullStructureBoundingBox const&); - FullStructureBoundingBox(FullStructureBoundingBox const&); - FullStructureBoundingBox(); -}; +struct FullStructureBoundingBox {}; } // namespace br diff --git a/src/mc/world/level/chunk/ILevelChunkEventManagerConnector.h b/src/mc/world/level/chunk/ILevelChunkEventManagerConnector.h index 162740a650..cceea365a1 100644 --- a/src/mc/world/level/chunk/ILevelChunkEventManagerConnector.h +++ b/src/mc/world/level/chunk/ILevelChunkEventManagerConnector.h @@ -12,12 +12,6 @@ class LevelChunk; // clang-format on class ILevelChunkEventManagerConnector { -public: - // prevent constructor by default - ILevelChunkEventManagerConnector& operator=(ILevelChunkEventManagerConnector const&); - ILevelChunkEventManagerConnector(ILevelChunkEventManagerConnector const&); - ILevelChunkEventManagerConnector(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/level/chunk/ILevelChunkEventManagerProxy.h b/src/mc/world/level/chunk/ILevelChunkEventManagerProxy.h index 57877d1744..b2e5f6b6ea 100644 --- a/src/mc/world/level/chunk/ILevelChunkEventManagerProxy.h +++ b/src/mc/world/level/chunk/ILevelChunkEventManagerProxy.h @@ -9,12 +9,6 @@ class LevelChunk; // clang-format on class ILevelChunkEventManagerProxy { -public: - // prevent constructor by default - ILevelChunkEventManagerProxy& operator=(ILevelChunkEventManagerProxy const&); - ILevelChunkEventManagerProxy(ILevelChunkEventManagerProxy const&); - ILevelChunkEventManagerProxy(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/level/chunk/ILevelChunkSaveManagerProxy.h b/src/mc/world/level/chunk/ILevelChunkSaveManagerProxy.h index 77459009ea..7479104a9f 100644 --- a/src/mc/world/level/chunk/ILevelChunkSaveManagerProxy.h +++ b/src/mc/world/level/chunk/ILevelChunkSaveManagerProxy.h @@ -16,12 +16,6 @@ class TaskResult; // clang-format on class ILevelChunkSaveManagerProxy { -public: - // prevent constructor by default - ILevelChunkSaveManagerProxy& operator=(ILevelChunkSaveManagerProxy const&); - ILevelChunkSaveManagerProxy(ILevelChunkSaveManagerProxy const&); - ILevelChunkSaveManagerProxy(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/level/chunk/ImguiProfiler.h b/src/mc/world/level/chunk/ImguiProfiler.h index a97f2df541..1307c0dded 100644 --- a/src/mc/world/level/chunk/ImguiProfiler.h +++ b/src/mc/world/level/chunk/ImguiProfiler.h @@ -82,12 +82,6 @@ struct ImguiProfiler : public ::Bedrock::EnableNonOwnerReferences { }; class ScopedTimer : public ::ImguiProfiler::Timer { - public: - // prevent constructor by default - ScopedTimer& operator=(ScopedTimer const&); - ScopedTimer(ScopedTimer const&); - ScopedTimer(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/level/chunk/LevelChunkGridAreaElement.h b/src/mc/world/level/chunk/LevelChunkGridAreaElement.h index 82b977e6d0..857624332f 100644 --- a/src/mc/world/level/chunk/LevelChunkGridAreaElement.h +++ b/src/mc/world/level/chunk/LevelChunkGridAreaElement.h @@ -3,10 +3,4 @@ #include "mc/_HeaderOutputPredefine.h" template -class LevelChunkGridAreaElement { -public: - // prevent constructor by default - LevelChunkGridAreaElement& operator=(LevelChunkGridAreaElement const&); - LevelChunkGridAreaElement(LevelChunkGridAreaElement const&); - LevelChunkGridAreaElement(); -}; +class LevelChunkGridAreaElement {}; diff --git a/src/mc/world/level/chunk/MetaDataTypeVisitor_Set.h b/src/mc/world/level/chunk/MetaDataTypeVisitor_Set.h index bba59c0a4a..0735363832 100644 --- a/src/mc/world/level/chunk/MetaDataTypeVisitor_Set.h +++ b/src/mc/world/level/chunk/MetaDataTypeVisitor_Set.h @@ -2,10 +2,4 @@ #include "mc/_HeaderOutputPredefine.h" -struct MetaDataTypeVisitor_Set { -public: - // prevent constructor by default - MetaDataTypeVisitor_Set& operator=(MetaDataTypeVisitor_Set const&); - MetaDataTypeVisitor_Set(MetaDataTypeVisitor_Set const&); - MetaDataTypeVisitor_Set(); -}; +struct MetaDataTypeVisitor_Set {}; diff --git a/src/mc/world/level/chunk/RequestActionLoader.h b/src/mc/world/level/chunk/RequestActionLoader.h index 399570f2b2..bd17b20081 100644 --- a/src/mc/world/level/chunk/RequestActionLoader.h +++ b/src/mc/world/level/chunk/RequestActionLoader.h @@ -13,12 +13,6 @@ class IRequestAction; // clang-format on class RequestActionLoader { -public: - // prevent constructor by default - RequestActionLoader& operator=(RequestActionLoader const&); - RequestActionLoader(RequestActionLoader const&); - RequestActionLoader(); - public: // static functions // NOLINTBEGIN diff --git a/src/mc/world/level/chunk/StorageTypeHelper.h b/src/mc/world/level/chunk/StorageTypeHelper.h index 8a098ffa1f..64a9f97480 100644 --- a/src/mc/world/level/chunk/StorageTypeHelper.h +++ b/src/mc/world/level/chunk/StorageTypeHelper.h @@ -5,12 +5,6 @@ namespace br::detail { template -struct StorageTypeHelper { -public: - // prevent constructor by default - StorageTypeHelper& operator=(StorageTypeHelper const&); - StorageTypeHelper(StorageTypeHelper const&); - StorageTypeHelper(); -}; +struct StorageTypeHelper {}; } // namespace br::detail diff --git a/src/mc/world/level/chunk/SubChunkDelayedDeleter.h b/src/mc/world/level/chunk/SubChunkDelayedDeleter.h index 38d4453395..9436a8d8b1 100644 --- a/src/mc/world/level/chunk/SubChunkDelayedDeleter.h +++ b/src/mc/world/level/chunk/SubChunkDelayedDeleter.h @@ -3,10 +3,4 @@ #include "mc/_HeaderOutputPredefine.h" template -class SubChunkDelayedDeleter { -public: - // prevent constructor by default - SubChunkDelayedDeleter& operator=(SubChunkDelayedDeleter const&); - SubChunkDelayedDeleter(SubChunkDelayedDeleter const&); - SubChunkDelayedDeleter(); -}; +class SubChunkDelayedDeleter {}; diff --git a/src/mc/world/level/chunk/SubChunkStorage.h b/src/mc/world/level/chunk/SubChunkStorage.h index 2a0f21b383..7c9ec7031c 100644 --- a/src/mc/world/level/chunk/SubChunkStorage.h +++ b/src/mc/world/level/chunk/SubChunkStorage.h @@ -3,10 +3,4 @@ #include "mc/_HeaderOutputPredefine.h" template -class SubChunkStorage { -public: - // prevent constructor by default - SubChunkStorage& operator=(SubChunkStorage const&); - SubChunkStorage(SubChunkStorage const&); - SubChunkStorage(); -}; +class SubChunkStorage {}; diff --git a/src/mc/world/level/chunk/chunk_performance_tracking_util/ScopedTimedSection.h b/src/mc/world/level/chunk/chunk_performance_tracking_util/ScopedTimedSection.h index 7db4a766c3..c985f5d20f 100644 --- a/src/mc/world/level/chunk/chunk_performance_tracking_util/ScopedTimedSection.h +++ b/src/mc/world/level/chunk/chunk_performance_tracking_util/ScopedTimedSection.h @@ -4,12 +4,6 @@ namespace ChunkPerformanceTrackingUtil { -struct ScopedTimedSection { -public: - // prevent constructor by default - ScopedTimedSection& operator=(ScopedTimedSection const&); - ScopedTimedSection(ScopedTimedSection const&); - ScopedTimedSection(); -}; +struct ScopedTimedSection {}; } // namespace ChunkPerformanceTrackingUtil diff --git a/src/mc/world/level/dimension/ChunkBuildOrderPolicyBase.h b/src/mc/world/level/dimension/ChunkBuildOrderPolicyBase.h index d89d8639d8..88608f9052 100644 --- a/src/mc/world/level/dimension/ChunkBuildOrderPolicyBase.h +++ b/src/mc/world/level/dimension/ChunkBuildOrderPolicyBase.h @@ -9,12 +9,6 @@ class Vec3; // clang-format on class ChunkBuildOrderPolicyBase { -public: - // prevent constructor by default - ChunkBuildOrderPolicyBase& operator=(ChunkBuildOrderPolicyBase const&); - ChunkBuildOrderPolicyBase(ChunkBuildOrderPolicyBase const&); - ChunkBuildOrderPolicyBase(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/level/dimension/ChunkLoadPriority.h b/src/mc/world/level/dimension/ChunkLoadPriority.h index 61277407af..309122ef92 100644 --- a/src/mc/world/level/dimension/ChunkLoadPriority.h +++ b/src/mc/world/level/dimension/ChunkLoadPriority.h @@ -2,10 +2,4 @@ #include "mc/_HeaderOutputPredefine.h" -class ChunkLoadPriority { -public: - // prevent constructor by default - ChunkLoadPriority& operator=(ChunkLoadPriority const&); - ChunkLoadPriority(ChunkLoadPriority const&); - ChunkLoadPriority(); -}; +class ChunkLoadPriority {}; diff --git a/src/mc/world/level/dimension/NetherDimension.h b/src/mc/world/level/dimension/NetherDimension.h index 2ae39dbe50..e092163bed 100644 --- a/src/mc/world/level/dimension/NetherDimension.h +++ b/src/mc/world/level/dimension/NetherDimension.h @@ -22,12 +22,6 @@ namespace br::worldgen { class StructureSetRegistry; } // clang-format on class NetherDimension : public ::Dimension { -public: - // prevent constructor by default - NetherDimension& operator=(NetherDimension const&); - NetherDimension(NetherDimension const&); - NetherDimension(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/level/dimension/VanillaDimensions.h b/src/mc/world/level/dimension/VanillaDimensions.h index 6d576fd61b..b1246f3d2f 100644 --- a/src/mc/world/level/dimension/VanillaDimensions.h +++ b/src/mc/world/level/dimension/VanillaDimensions.h @@ -15,12 +15,6 @@ class Vec3; // clang-format on class VanillaDimensions { -public: - // prevent constructor by default - VanillaDimensions& operator=(VanillaDimensions const&); - VanillaDimensions(VanillaDimensions const&); - VanillaDimensions(); - public: // static functions // NOLINTBEGIN diff --git a/src/mc/world/level/levelgen/feature/AzaleaTreeAndRootsFeature.h b/src/mc/world/level/levelgen/feature/AzaleaTreeAndRootsFeature.h index 1ce014097c..30f0b98e25 100644 --- a/src/mc/world/level/levelgen/feature/AzaleaTreeAndRootsFeature.h +++ b/src/mc/world/level/levelgen/feature/AzaleaTreeAndRootsFeature.h @@ -13,12 +13,6 @@ class Random; // clang-format on class AzaleaTreeAndRootsFeature : public ::Feature { -public: - // prevent constructor by default - AzaleaTreeAndRootsFeature& operator=(AzaleaTreeAndRootsFeature const&); - AzaleaTreeAndRootsFeature(AzaleaTreeAndRootsFeature const&); - AzaleaTreeAndRootsFeature(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/level/levelgen/feature/BambooFeature.h b/src/mc/world/level/levelgen/feature/BambooFeature.h index 39b5f42101..7866a14f87 100644 --- a/src/mc/world/level/levelgen/feature/BambooFeature.h +++ b/src/mc/world/level/levelgen/feature/BambooFeature.h @@ -13,12 +13,6 @@ class Random; // clang-format on class BambooFeature : public ::Feature { -public: - // prevent constructor by default - BambooFeature& operator=(BambooFeature const&); - BambooFeature(BambooFeature const&); - BambooFeature(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/level/levelgen/feature/BasaltColumnsFeature.h b/src/mc/world/level/levelgen/feature/BasaltColumnsFeature.h index 527b606552..6792d3a3f1 100644 --- a/src/mc/world/level/levelgen/feature/BasaltColumnsFeature.h +++ b/src/mc/world/level/levelgen/feature/BasaltColumnsFeature.h @@ -13,12 +13,6 @@ class Random; // clang-format on class BasaltColumnsFeature : public ::Feature { -public: - // prevent constructor by default - BasaltColumnsFeature& operator=(BasaltColumnsFeature const&); - BasaltColumnsFeature(BasaltColumnsFeature const&); - BasaltColumnsFeature(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/level/levelgen/feature/BasaltPillarFeature.h b/src/mc/world/level/levelgen/feature/BasaltPillarFeature.h index 068dd56a9c..ba53a4c58f 100644 --- a/src/mc/world/level/levelgen/feature/BasaltPillarFeature.h +++ b/src/mc/world/level/levelgen/feature/BasaltPillarFeature.h @@ -13,12 +13,6 @@ class Random; // clang-format on class BasaltPillarFeature : public ::Feature { -public: - // prevent constructor by default - BasaltPillarFeature& operator=(BasaltPillarFeature const&); - BasaltPillarFeature(BasaltPillarFeature const&); - BasaltPillarFeature(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/level/levelgen/feature/BlueIceFeature.h b/src/mc/world/level/levelgen/feature/BlueIceFeature.h index abf4ac99ea..33349122d0 100644 --- a/src/mc/world/level/levelgen/feature/BlueIceFeature.h +++ b/src/mc/world/level/levelgen/feature/BlueIceFeature.h @@ -13,12 +13,6 @@ class Random; // clang-format on class BlueIceFeature : public ::Feature { -public: - // prevent constructor by default - BlueIceFeature& operator=(BlueIceFeature const&); - BlueIceFeature(BlueIceFeature const&); - BlueIceFeature(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/level/levelgen/feature/BonusChestFeature.h b/src/mc/world/level/levelgen/feature/BonusChestFeature.h index 8470983a6f..bafe37eec8 100644 --- a/src/mc/world/level/levelgen/feature/BonusChestFeature.h +++ b/src/mc/world/level/levelgen/feature/BonusChestFeature.h @@ -13,12 +13,6 @@ class Random; // clang-format on class BonusChestFeature : public ::Feature { -public: - // prevent constructor by default - BonusChestFeature& operator=(BonusChestFeature const&); - BonusChestFeature(BonusChestFeature const&); - BonusChestFeature(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/level/levelgen/feature/CactusFeature.h b/src/mc/world/level/levelgen/feature/CactusFeature.h index 05a5507a04..63e74737b3 100644 --- a/src/mc/world/level/levelgen/feature/CactusFeature.h +++ b/src/mc/world/level/levelgen/feature/CactusFeature.h @@ -13,12 +13,6 @@ class Random; // clang-format on class CactusFeature : public ::Feature { -public: - // prevent constructor by default - CactusFeature& operator=(CactusFeature const&); - CactusFeature(CactusFeature const&); - CactusFeature(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/level/levelgen/feature/CoralCrustFeature.h b/src/mc/world/level/levelgen/feature/CoralCrustFeature.h index f0cb1ac947..bb23d39e77 100644 --- a/src/mc/world/level/levelgen/feature/CoralCrustFeature.h +++ b/src/mc/world/level/levelgen/feature/CoralCrustFeature.h @@ -16,12 +16,6 @@ class Random; // clang-format on class CoralCrustFeature : public ::Feature { -public: - // prevent constructor by default - CoralCrustFeature& operator=(CoralCrustFeature const&); - CoralCrustFeature(CoralCrustFeature const&); - CoralCrustFeature(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/level/levelgen/feature/CoralFeature.h b/src/mc/world/level/levelgen/feature/CoralFeature.h index 568b5874da..a2b9e09e52 100644 --- a/src/mc/world/level/levelgen/feature/CoralFeature.h +++ b/src/mc/world/level/levelgen/feature/CoralFeature.h @@ -14,12 +14,6 @@ class Random; // clang-format on class CoralFeature : public ::Feature { -public: - // prevent constructor by default - CoralFeature& operator=(CoralFeature const&); - CoralFeature(CoralFeature const&); - CoralFeature(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/level/levelgen/feature/CoralHangFeature.h b/src/mc/world/level/levelgen/feature/CoralHangFeature.h index d3087a94be..2d5a7f87d0 100644 --- a/src/mc/world/level/levelgen/feature/CoralHangFeature.h +++ b/src/mc/world/level/levelgen/feature/CoralHangFeature.h @@ -13,12 +13,6 @@ class Random; // clang-format on class CoralHangFeature : public ::Feature { -public: - // prevent constructor by default - CoralHangFeature& operator=(CoralHangFeature const&); - CoralHangFeature(CoralHangFeature const&); - CoralHangFeature(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/level/levelgen/feature/DeadBushFeature.h b/src/mc/world/level/levelgen/feature/DeadBushFeature.h index 67909cc010..bafc05db7d 100644 --- a/src/mc/world/level/levelgen/feature/DeadBushFeature.h +++ b/src/mc/world/level/levelgen/feature/DeadBushFeature.h @@ -13,12 +13,6 @@ class Random; // clang-format on class DeadBushFeature : public ::Feature { -public: - // prevent constructor by default - DeadBushFeature& operator=(DeadBushFeature const&); - DeadBushFeature(DeadBushFeature const&); - DeadBushFeature(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/level/levelgen/feature/DeltaFeature.h b/src/mc/world/level/levelgen/feature/DeltaFeature.h index 13a63b3153..289a7056f7 100644 --- a/src/mc/world/level/levelgen/feature/DeltaFeature.h +++ b/src/mc/world/level/levelgen/feature/DeltaFeature.h @@ -13,12 +13,6 @@ class Random; // clang-format on class DeltaFeature : public ::Feature { -public: - // prevent constructor by default - DeltaFeature& operator=(DeltaFeature const&); - DeltaFeature(DeltaFeature const&); - DeltaFeature(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/level/levelgen/feature/DesertWellFeature.h b/src/mc/world/level/levelgen/feature/DesertWellFeature.h index a4fd8dc303..048aa583bc 100644 --- a/src/mc/world/level/levelgen/feature/DesertWellFeature.h +++ b/src/mc/world/level/levelgen/feature/DesertWellFeature.h @@ -13,12 +13,6 @@ class Random; // clang-format on class DesertWellFeature : public ::Feature { -public: - // prevent constructor by default - DesertWellFeature& operator=(DesertWellFeature const&); - DesertWellFeature(DesertWellFeature const&); - DesertWellFeature(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/level/levelgen/feature/DoublePlantFeature.h b/src/mc/world/level/levelgen/feature/DoublePlantFeature.h index 2c5cbc9264..7a989c647b 100644 --- a/src/mc/world/level/levelgen/feature/DoublePlantFeature.h +++ b/src/mc/world/level/levelgen/feature/DoublePlantFeature.h @@ -14,12 +14,6 @@ class Random; // clang-format on class DoublePlantFeature : public ::Feature { -public: - // prevent constructor by default - DoublePlantFeature& operator=(DoublePlantFeature const&); - DoublePlantFeature(DoublePlantFeature const&); - DoublePlantFeature(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/level/levelgen/feature/DripleafFeature.h b/src/mc/world/level/levelgen/feature/DripleafFeature.h index 512f129258..7f9a9cab05 100644 --- a/src/mc/world/level/levelgen/feature/DripleafFeature.h +++ b/src/mc/world/level/levelgen/feature/DripleafFeature.h @@ -13,12 +13,6 @@ class Random; // clang-format on class DripleafFeature : public ::Feature { -public: - // prevent constructor by default - DripleafFeature& operator=(DripleafFeature const&); - DripleafFeature(DripleafFeature const&); - DripleafFeature(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/level/levelgen/feature/DripstoneClusterFeature.h b/src/mc/world/level/levelgen/feature/DripstoneClusterFeature.h index 667a8e8b64..50e8f3f00b 100644 --- a/src/mc/world/level/levelgen/feature/DripstoneClusterFeature.h +++ b/src/mc/world/level/levelgen/feature/DripstoneClusterFeature.h @@ -14,12 +14,6 @@ class RenderParams; // clang-format on class DripstoneClusterFeature : public ::IFeature { -public: - // prevent constructor by default - DripstoneClusterFeature& operator=(DripstoneClusterFeature const&); - DripstoneClusterFeature(DripstoneClusterFeature const&); - DripstoneClusterFeature(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/level/levelgen/feature/EndGatewayFeature.h b/src/mc/world/level/levelgen/feature/EndGatewayFeature.h index 0b95bc756c..0332452ec4 100644 --- a/src/mc/world/level/levelgen/feature/EndGatewayFeature.h +++ b/src/mc/world/level/levelgen/feature/EndGatewayFeature.h @@ -13,12 +13,6 @@ class Random; // clang-format on class EndGatewayFeature : public ::Feature { -public: - // prevent constructor by default - EndGatewayFeature& operator=(EndGatewayFeature const&); - EndGatewayFeature(EndGatewayFeature const&); - EndGatewayFeature(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/level/levelgen/feature/EndIslandFeature.h b/src/mc/world/level/levelgen/feature/EndIslandFeature.h index 7d0941dd88..daee6adb1f 100644 --- a/src/mc/world/level/levelgen/feature/EndIslandFeature.h +++ b/src/mc/world/level/levelgen/feature/EndIslandFeature.h @@ -13,12 +13,6 @@ class Random; // clang-format on class EndIslandFeature : public ::Feature { -public: - // prevent constructor by default - EndIslandFeature& operator=(EndIslandFeature const&); - EndIslandFeature(EndIslandFeature const&); - EndIslandFeature(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/level/levelgen/feature/EyeblossomFeature.h b/src/mc/world/level/levelgen/feature/EyeblossomFeature.h index 7410745cf3..cff783772d 100644 --- a/src/mc/world/level/levelgen/feature/EyeblossomFeature.h +++ b/src/mc/world/level/levelgen/feature/EyeblossomFeature.h @@ -13,12 +13,6 @@ class Random; // clang-format on class EyeblossomFeature : public ::Feature { -public: - // prevent constructor by default - EyeblossomFeature& operator=(EyeblossomFeature const&); - EyeblossomFeature(EyeblossomFeature const&); - EyeblossomFeature(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/level/levelgen/feature/GlowStoneFeature.h b/src/mc/world/level/levelgen/feature/GlowStoneFeature.h index ac3d7570e4..fd0f910850 100644 --- a/src/mc/world/level/levelgen/feature/GlowStoneFeature.h +++ b/src/mc/world/level/levelgen/feature/GlowStoneFeature.h @@ -13,12 +13,6 @@ class Random; // clang-format on class GlowStoneFeature : public ::Feature { -public: - // prevent constructor by default - GlowStoneFeature& operator=(GlowStoneFeature const&); - GlowStoneFeature(GlowStoneFeature const&); - GlowStoneFeature(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/level/levelgen/feature/IceSpikeFeature.h b/src/mc/world/level/levelgen/feature/IceSpikeFeature.h index ad3345618e..8dc04934c5 100644 --- a/src/mc/world/level/levelgen/feature/IceSpikeFeature.h +++ b/src/mc/world/level/levelgen/feature/IceSpikeFeature.h @@ -13,12 +13,6 @@ class Random; // clang-format on class IceSpikeFeature : public ::Feature { -public: - // prevent constructor by default - IceSpikeFeature& operator=(IceSpikeFeature const&); - IceSpikeFeature(IceSpikeFeature const&); - IceSpikeFeature(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/level/levelgen/feature/IcebergFeature.h b/src/mc/world/level/levelgen/feature/IcebergFeature.h index a48c8bcb24..35c36fadab 100644 --- a/src/mc/world/level/levelgen/feature/IcebergFeature.h +++ b/src/mc/world/level/levelgen/feature/IcebergFeature.h @@ -14,12 +14,6 @@ class Random; // clang-format on class IcebergFeature : public ::Feature { -public: - // prevent constructor by default - IcebergFeature& operator=(IcebergFeature const&); - IcebergFeature(IcebergFeature const&); - IcebergFeature(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/level/levelgen/feature/KelpFeature.h b/src/mc/world/level/levelgen/feature/KelpFeature.h index 94b9848d00..ef579126c4 100644 --- a/src/mc/world/level/levelgen/feature/KelpFeature.h +++ b/src/mc/world/level/levelgen/feature/KelpFeature.h @@ -13,12 +13,6 @@ class Random; // clang-format on class KelpFeature : public ::Feature { -public: - // prevent constructor by default - KelpFeature& operator=(KelpFeature const&); - KelpFeature(KelpFeature const&); - KelpFeature(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/level/levelgen/feature/LargeDripstoneFeature.h b/src/mc/world/level/levelgen/feature/LargeDripstoneFeature.h index 8f21294176..9bc4528c23 100644 --- a/src/mc/world/level/levelgen/feature/LargeDripstoneFeature.h +++ b/src/mc/world/level/levelgen/feature/LargeDripstoneFeature.h @@ -52,12 +52,6 @@ class LargeDripstoneFeature : public ::IFeature { // NOLINTEND }; -public: - // prevent constructor by default - LargeDripstoneFeature& operator=(LargeDripstoneFeature const&); - LargeDripstoneFeature(LargeDripstoneFeature const&); - LargeDripstoneFeature(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/level/levelgen/feature/LegacyEmeraldOreFeature.h b/src/mc/world/level/levelgen/feature/LegacyEmeraldOreFeature.h index 2f4cba096c..4987db6d64 100644 --- a/src/mc/world/level/levelgen/feature/LegacyEmeraldOreFeature.h +++ b/src/mc/world/level/levelgen/feature/LegacyEmeraldOreFeature.h @@ -13,12 +13,6 @@ class Random; // clang-format on class LegacyEmeraldOreFeature : public ::Feature { -public: - // prevent constructor by default - LegacyEmeraldOreFeature& operator=(LegacyEmeraldOreFeature const&); - LegacyEmeraldOreFeature(LegacyEmeraldOreFeature const&); - LegacyEmeraldOreFeature(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/level/levelgen/feature/MelonFeature.h b/src/mc/world/level/levelgen/feature/MelonFeature.h index deb0b3bcae..8594d4eb0c 100644 --- a/src/mc/world/level/levelgen/feature/MelonFeature.h +++ b/src/mc/world/level/levelgen/feature/MelonFeature.h @@ -13,12 +13,6 @@ class Random; // clang-format on class MelonFeature : public ::Feature { -public: - // prevent constructor by default - MelonFeature& operator=(MelonFeature const&); - MelonFeature(MelonFeature const&); - MelonFeature(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/level/levelgen/feature/MonsterRoomFeature.h b/src/mc/world/level/levelgen/feature/MonsterRoomFeature.h index 2e0d340ebb..557e961a57 100644 --- a/src/mc/world/level/levelgen/feature/MonsterRoomFeature.h +++ b/src/mc/world/level/levelgen/feature/MonsterRoomFeature.h @@ -13,11 +13,6 @@ class Random; // clang-format on class MonsterRoomFeature : public ::Feature { -public: - // prevent constructor by default - MonsterRoomFeature& operator=(MonsterRoomFeature const&); - MonsterRoomFeature(MonsterRoomFeature const&); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/level/levelgen/feature/NetherFireFeature.h b/src/mc/world/level/levelgen/feature/NetherFireFeature.h index c3daa355d5..03f690511d 100644 --- a/src/mc/world/level/levelgen/feature/NetherFireFeature.h +++ b/src/mc/world/level/levelgen/feature/NetherFireFeature.h @@ -13,12 +13,6 @@ class Random; // clang-format on class NetherFireFeature : public ::Feature { -public: - // prevent constructor by default - NetherFireFeature& operator=(NetherFireFeature const&); - NetherFireFeature(NetherFireFeature const&); - NetherFireFeature(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/level/levelgen/feature/PinkPetalsFeature.h b/src/mc/world/level/levelgen/feature/PinkPetalsFeature.h index 5b5048540d..6f235269d6 100644 --- a/src/mc/world/level/levelgen/feature/PinkPetalsFeature.h +++ b/src/mc/world/level/levelgen/feature/PinkPetalsFeature.h @@ -13,12 +13,6 @@ class Random; // clang-format on class PinkPetalsFeature : public ::Feature { -public: - // prevent constructor by default - PinkPetalsFeature& operator=(PinkPetalsFeature const&); - PinkPetalsFeature(PinkPetalsFeature const&); - PinkPetalsFeature(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/level/levelgen/feature/PodzolAreaFeature.h b/src/mc/world/level/levelgen/feature/PodzolAreaFeature.h index 5b7a61450d..f95b58e6cf 100644 --- a/src/mc/world/level/levelgen/feature/PodzolAreaFeature.h +++ b/src/mc/world/level/levelgen/feature/PodzolAreaFeature.h @@ -13,12 +13,6 @@ class Random; // clang-format on class PodzolAreaFeature : public ::Feature { -public: - // prevent constructor by default - PodzolAreaFeature& operator=(PodzolAreaFeature const&); - PodzolAreaFeature(PodzolAreaFeature const&); - PodzolAreaFeature(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/level/levelgen/feature/PointedDripstoneFeature.h b/src/mc/world/level/levelgen/feature/PointedDripstoneFeature.h index 36fda679cc..2e9c99ff6e 100644 --- a/src/mc/world/level/levelgen/feature/PointedDripstoneFeature.h +++ b/src/mc/world/level/levelgen/feature/PointedDripstoneFeature.h @@ -14,12 +14,6 @@ class RenderParams; // clang-format on class PointedDripstoneFeature : public ::IFeature { -public: - // prevent constructor by default - PointedDripstoneFeature& operator=(PointedDripstoneFeature const&); - PointedDripstoneFeature(PointedDripstoneFeature const&); - PointedDripstoneFeature(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/level/levelgen/feature/ReedsFeature.h b/src/mc/world/level/levelgen/feature/ReedsFeature.h index e473ab322f..ba2da98659 100644 --- a/src/mc/world/level/levelgen/feature/ReedsFeature.h +++ b/src/mc/world/level/levelgen/feature/ReedsFeature.h @@ -13,12 +13,6 @@ class Random; // clang-format on class ReedsFeature : public ::Feature { -public: - // prevent constructor by default - ReedsFeature& operator=(ReedsFeature const&); - ReedsFeature(ReedsFeature const&); - ReedsFeature(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/level/levelgen/feature/SeaAnemoneFeature.h b/src/mc/world/level/levelgen/feature/SeaAnemoneFeature.h index 763e2f9962..be79634517 100644 --- a/src/mc/world/level/levelgen/feature/SeaAnemoneFeature.h +++ b/src/mc/world/level/levelgen/feature/SeaAnemoneFeature.h @@ -13,12 +13,6 @@ class Random; // clang-format on class SeaAnemoneFeature : public ::Feature { -public: - // prevent constructor by default - SeaAnemoneFeature& operator=(SeaAnemoneFeature const&); - SeaAnemoneFeature(SeaAnemoneFeature const&); - SeaAnemoneFeature(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/level/levelgen/feature/SeaPickleFeature.h b/src/mc/world/level/levelgen/feature/SeaPickleFeature.h index 5a69ce96f4..0b483283af 100644 --- a/src/mc/world/level/levelgen/feature/SeaPickleFeature.h +++ b/src/mc/world/level/levelgen/feature/SeaPickleFeature.h @@ -13,12 +13,6 @@ class Random; // clang-format on class SeaPickleFeature : public ::Feature { -public: - // prevent constructor by default - SeaPickleFeature& operator=(SeaPickleFeature const&); - SeaPickleFeature(SeaPickleFeature const&); - SeaPickleFeature(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/level/levelgen/feature/SeagrassFeature.h b/src/mc/world/level/levelgen/feature/SeagrassFeature.h index 3c0b0c1195..3836e7d5bb 100644 --- a/src/mc/world/level/levelgen/feature/SeagrassFeature.h +++ b/src/mc/world/level/levelgen/feature/SeagrassFeature.h @@ -13,12 +13,6 @@ class Random; // clang-format on class SeagrassFeature : public ::Feature { -public: - // prevent constructor by default - SeagrassFeature& operator=(SeagrassFeature const&); - SeagrassFeature(SeagrassFeature const&); - SeagrassFeature(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/level/levelgen/feature/TwistingVinesClusterFeature.h b/src/mc/world/level/levelgen/feature/TwistingVinesClusterFeature.h index fd0f3f665f..d056364818 100644 --- a/src/mc/world/level/levelgen/feature/TwistingVinesClusterFeature.h +++ b/src/mc/world/level/levelgen/feature/TwistingVinesClusterFeature.h @@ -13,12 +13,6 @@ class Random; // clang-format on class TwistingVinesClusterFeature : public ::Feature { -public: - // prevent constructor by default - TwistingVinesClusterFeature& operator=(TwistingVinesClusterFeature const&); - TwistingVinesClusterFeature(TwistingVinesClusterFeature const&); - TwistingVinesClusterFeature(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/level/levelgen/feature/UnderwaterCanyonFeature.h b/src/mc/world/level/levelgen/feature/UnderwaterCanyonFeature.h index cb9d456368..fd592b8120 100644 --- a/src/mc/world/level/levelgen/feature/UnderwaterCanyonFeature.h +++ b/src/mc/world/level/levelgen/feature/UnderwaterCanyonFeature.h @@ -17,12 +17,6 @@ struct WorldGenContext; // clang-format on class UnderwaterCanyonFeature : public ::CanyonFeature { -public: - // prevent constructor by default - UnderwaterCanyonFeature& operator=(UnderwaterCanyonFeature const&); - UnderwaterCanyonFeature(UnderwaterCanyonFeature const&); - UnderwaterCanyonFeature(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/level/levelgen/feature/VanillaTreeFeature.h b/src/mc/world/level/levelgen/feature/VanillaTreeFeature.h index 99ee29b1d5..99a0d8e20c 100644 --- a/src/mc/world/level/levelgen/feature/VanillaTreeFeature.h +++ b/src/mc/world/level/levelgen/feature/VanillaTreeFeature.h @@ -21,12 +21,6 @@ namespace JsonUtil { class EmptyClass; } // clang-format on class VanillaTreeFeature : public ::ITreeFeature { -public: - // prevent constructor by default - VanillaTreeFeature& operator=(VanillaTreeFeature const&); - VanillaTreeFeature(VanillaTreeFeature const&); - VanillaTreeFeature(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/level/levelgen/feature/VinesFeature.h b/src/mc/world/level/levelgen/feature/VinesFeature.h index 26a3d54245..ff01377a4c 100644 --- a/src/mc/world/level/levelgen/feature/VinesFeature.h +++ b/src/mc/world/level/levelgen/feature/VinesFeature.h @@ -13,12 +13,6 @@ class Random; // clang-format on class VinesFeature : public ::Feature { -public: - // prevent constructor by default - VinesFeature& operator=(VinesFeature const&); - VinesFeature(VinesFeature const&); - VinesFeature(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/level/levelgen/feature/VinesSingleFaceFeature.h b/src/mc/world/level/levelgen/feature/VinesSingleFaceFeature.h index 7b9df49071..6282bd5535 100644 --- a/src/mc/world/level/levelgen/feature/VinesSingleFaceFeature.h +++ b/src/mc/world/level/levelgen/feature/VinesSingleFaceFeature.h @@ -14,12 +14,6 @@ class RenderParams; // clang-format on class VinesSingleFaceFeature : public ::IFeature { -public: - // prevent constructor by default - VinesSingleFaceFeature& operator=(VinesSingleFaceFeature const&); - VinesSingleFaceFeature(VinesSingleFaceFeature const&); - VinesSingleFaceFeature(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/level/levelgen/feature/WaterlilyFeature.h b/src/mc/world/level/levelgen/feature/WaterlilyFeature.h index e317e1772d..a2ea2ee4bb 100644 --- a/src/mc/world/level/levelgen/feature/WaterlilyFeature.h +++ b/src/mc/world/level/levelgen/feature/WaterlilyFeature.h @@ -13,12 +13,6 @@ class Random; // clang-format on class WaterlilyFeature : public ::Feature { -public: - // prevent constructor by default - WaterlilyFeature& operator=(WaterlilyFeature const&); - WaterlilyFeature(WaterlilyFeature const&); - WaterlilyFeature(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/level/levelgen/feature/WeepingVinesClusterFeature.h b/src/mc/world/level/levelgen/feature/WeepingVinesClusterFeature.h index 2b11a4c5c5..85f7877dfa 100644 --- a/src/mc/world/level/levelgen/feature/WeepingVinesClusterFeature.h +++ b/src/mc/world/level/levelgen/feature/WeepingVinesClusterFeature.h @@ -13,12 +13,6 @@ class Random; // clang-format on class WeepingVinesClusterFeature : public ::Feature { -public: - // prevent constructor by default - WeepingVinesClusterFeature& operator=(WeepingVinesClusterFeature const&); - WeepingVinesClusterFeature(WeepingVinesClusterFeature const&); - WeepingVinesClusterFeature(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/level/levelgen/feature/feature_loading/AbstractFeatureHolder.h b/src/mc/world/level/levelgen/feature/feature_loading/AbstractFeatureHolder.h index 81947ceae3..4677884994 100644 --- a/src/mc/world/level/levelgen/feature/feature_loading/AbstractFeatureHolder.h +++ b/src/mc/world/level/levelgen/feature/feature_loading/AbstractFeatureHolder.h @@ -5,12 +5,6 @@ namespace FeatureLoading { struct AbstractFeatureHolder { -public: - // prevent constructor by default - AbstractFeatureHolder& operator=(AbstractFeatureHolder const&); - AbstractFeatureHolder(AbstractFeatureHolder const&); - AbstractFeatureHolder(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/level/levelgen/feature/feature_loading/ConcreteFeatureHolder.h b/src/mc/world/level/levelgen/feature/feature_loading/ConcreteFeatureHolder.h index 6c2eac1e00..d6e52e7d20 100644 --- a/src/mc/world/level/levelgen/feature/feature_loading/ConcreteFeatureHolder.h +++ b/src/mc/world/level/levelgen/feature/feature_loading/ConcreteFeatureHolder.h @@ -5,12 +5,6 @@ namespace FeatureLoading { template -struct ConcreteFeatureHolder { -public: - // prevent constructor by default - ConcreteFeatureHolder& operator=(ConcreteFeatureHolder const&); - ConcreteFeatureHolder(ConcreteFeatureHolder const&); - ConcreteFeatureHolder(); -}; +struct ConcreteFeatureHolder {}; } // namespace FeatureLoading diff --git a/src/mc/world/level/levelgen/feature/helpers/ITreeCanopy.h b/src/mc/world/level/levelgen/feature/helpers/ITreeCanopy.h index 36bf527975..4f31948de6 100644 --- a/src/mc/world/level/levelgen/feature/helpers/ITreeCanopy.h +++ b/src/mc/world/level/levelgen/feature/helpers/ITreeCanopy.h @@ -12,12 +12,6 @@ namespace TreeHelper { struct TreeParams; } // clang-format on class ITreeCanopy { -public: - // prevent constructor by default - ITreeCanopy& operator=(ITreeCanopy const&); - ITreeCanopy(ITreeCanopy const&); - ITreeCanopy(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/level/levelgen/feature/helpers/ITreeRoot.h b/src/mc/world/level/levelgen/feature/helpers/ITreeRoot.h index 6c4858bf15..827beab0d1 100644 --- a/src/mc/world/level/levelgen/feature/helpers/ITreeRoot.h +++ b/src/mc/world/level/levelgen/feature/helpers/ITreeRoot.h @@ -12,12 +12,6 @@ namespace TreeHelper { struct TreeParams; } // clang-format on class ITreeRoot { -public: - // prevent constructor by default - ITreeRoot& operator=(ITreeRoot const&); - ITreeRoot(ITreeRoot const&); - ITreeRoot(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/level/levelgen/feature/helpers/ITreeTrunk.h b/src/mc/world/level/levelgen/feature/helpers/ITreeTrunk.h index 55bbf9fa49..6397460a03 100644 --- a/src/mc/world/level/levelgen/feature/helpers/ITreeTrunk.h +++ b/src/mc/world/level/levelgen/feature/helpers/ITreeTrunk.h @@ -13,12 +13,6 @@ namespace TreeHelper { struct TreeParams; } // clang-format on class ITreeTrunk { -public: - // prevent constructor by default - ITreeTrunk& operator=(ITreeTrunk const&); - ITreeTrunk(ITreeTrunk const&); - ITreeTrunk(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/level/levelgen/feature/registry/FeatureUpgrader.h b/src/mc/world/level/levelgen/feature/registry/FeatureUpgrader.h index b7a72a2e06..00d29c5e4d 100644 --- a/src/mc/world/level/levelgen/feature/registry/FeatureUpgrader.h +++ b/src/mc/world/level/levelgen/feature/registry/FeatureUpgrader.h @@ -11,12 +11,6 @@ namespace Puv { class LoadResultAny; } // clang-format on class FeatureUpgrader : public ::Puv::Upgrader { -public: - // prevent constructor by default - FeatureUpgrader& operator=(FeatureUpgrader const&); - FeatureUpgrader(FeatureUpgrader const&); - FeatureUpgrader(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/level/levelgen/structure/AncientCityPiece.h b/src/mc/world/level/levelgen/structure/AncientCityPiece.h index 1af7c22064..bd640b84c3 100644 --- a/src/mc/world/level/levelgen/structure/AncientCityPiece.h +++ b/src/mc/world/level/levelgen/structure/AncientCityPiece.h @@ -21,12 +21,6 @@ class StructurePiece; // clang-format on class AncientCityPiece : public ::PoolElementStructurePiece { -public: - // prevent constructor by default - AncientCityPiece& operator=(AncientCityPiece const&); - AncientCityPiece(AncientCityPiece const&); - AncientCityPiece(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/level/levelgen/structure/BastionPiece.h b/src/mc/world/level/levelgen/structure/BastionPiece.h index fec9706991..80b139dd04 100644 --- a/src/mc/world/level/levelgen/structure/BastionPiece.h +++ b/src/mc/world/level/levelgen/structure/BastionPiece.h @@ -21,12 +21,6 @@ class StructurePiece; // clang-format on class BastionPiece : public ::PoolElementStructurePiece { -public: - // prevent constructor by default - BastionPiece& operator=(BastionPiece const&); - BastionPiece(BastionPiece const&); - BastionPiece(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/level/levelgen/structure/BlockSelector.h b/src/mc/world/level/levelgen/structure/BlockSelector.h index 43dfbf3fe0..95dea0cf4e 100644 --- a/src/mc/world/level/levelgen/structure/BlockSelector.h +++ b/src/mc/world/level/levelgen/structure/BlockSelector.h @@ -9,12 +9,6 @@ class Random; // clang-format on class BlockSelector { -public: - // prevent constructor by default - BlockSelector& operator=(BlockSelector const&); - BlockSelector(BlockSelector const&); - BlockSelector(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/level/levelgen/structure/BuriedTreasureStart.h b/src/mc/world/level/levelgen/structure/BuriedTreasureStart.h index 128ac43a21..f14a43506d 100644 --- a/src/mc/world/level/levelgen/structure/BuriedTreasureStart.h +++ b/src/mc/world/level/levelgen/structure/BuriedTreasureStart.h @@ -12,12 +12,6 @@ class Random; // clang-format on class BuriedTreasureStart : public ::StructureStart { -public: - // prevent constructor by default - BuriedTreasureStart& operator=(BuriedTreasureStart const&); - BuriedTreasureStart(BuriedTreasureStart const&); - BuriedTreasureStart(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/level/levelgen/structure/DesertPyramidPiece.h b/src/mc/world/level/levelgen/structure/DesertPyramidPiece.h index 0e4740c149..770ec57039 100644 --- a/src/mc/world/level/levelgen/structure/DesertPyramidPiece.h +++ b/src/mc/world/level/levelgen/structure/DesertPyramidPiece.h @@ -14,12 +14,6 @@ class Random; // clang-format on class DesertPyramidPiece : public ::ScatteredFeaturePiece { -public: - // prevent constructor by default - DesertPyramidPiece& operator=(DesertPyramidPiece const&); - DesertPyramidPiece(DesertPyramidPiece const&); - DesertPyramidPiece(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/level/levelgen/structure/EndCityPieces.h b/src/mc/world/level/levelgen/structure/EndCityPieces.h index f2421694a5..ed9a5a5473 100644 --- a/src/mc/world/level/levelgen/structure/EndCityPieces.h +++ b/src/mc/world/level/levelgen/structure/EndCityPieces.h @@ -127,12 +127,6 @@ class EndCityPieces { }; class SectionGenerator { - public: - // prevent constructor by default - SectionGenerator& operator=(SectionGenerator const&); - SectionGenerator(SectionGenerator const&); - SectionGenerator(); - public: // virtual functions // NOLINTBEGIN @@ -171,12 +165,6 @@ class EndCityPieces { }; class TowerGenerator : public ::EndCityPieces::SectionGenerator { - public: - // prevent constructor by default - TowerGenerator& operator=(TowerGenerator const&); - TowerGenerator(TowerGenerator const&); - TowerGenerator(); - public: // virtual functions // NOLINTBEGIN @@ -223,12 +211,6 @@ class EndCityPieces { }; class FatTowerGenerator : public ::EndCityPieces::SectionGenerator { - public: - // prevent constructor by default - FatTowerGenerator& operator=(FatTowerGenerator const&); - FatTowerGenerator(FatTowerGenerator const&); - FatTowerGenerator(); - public: // virtual functions // NOLINTBEGIN @@ -333,12 +315,6 @@ class EndCityPieces { }; class HouseTowerGenerator : public ::EndCityPieces::SectionGenerator { - public: - // prevent constructor by default - HouseTowerGenerator& operator=(HouseTowerGenerator const&); - HouseTowerGenerator(HouseTowerGenerator const&); - HouseTowerGenerator(); - public: // virtual functions // NOLINTBEGIN @@ -384,12 +360,6 @@ class EndCityPieces { // NOLINTEND }; -public: - // prevent constructor by default - EndCityPieces& operator=(EndCityPieces const&); - EndCityPieces(EndCityPieces const&); - EndCityPieces(); - public: // static functions // NOLINTBEGIN diff --git a/src/mc/world/level/levelgen/structure/FitDoubleXRoom.h b/src/mc/world/level/levelgen/structure/FitDoubleXRoom.h index 8307b8c50e..932e690978 100644 --- a/src/mc/world/level/levelgen/structure/FitDoubleXRoom.h +++ b/src/mc/world/level/levelgen/structure/FitDoubleXRoom.h @@ -13,12 +13,6 @@ class RoomDefinition; // clang-format on class FitDoubleXRoom : public ::MonumentRoomFitter { -public: - // prevent constructor by default - FitDoubleXRoom& operator=(FitDoubleXRoom const&); - FitDoubleXRoom(FitDoubleXRoom const&); - FitDoubleXRoom(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/level/levelgen/structure/FitDoubleXYRoom.h b/src/mc/world/level/levelgen/structure/FitDoubleXYRoom.h index b896dd6312..9ebbe0a8bc 100644 --- a/src/mc/world/level/levelgen/structure/FitDoubleXYRoom.h +++ b/src/mc/world/level/levelgen/structure/FitDoubleXYRoom.h @@ -13,12 +13,6 @@ class RoomDefinition; // clang-format on class FitDoubleXYRoom : public ::MonumentRoomFitter { -public: - // prevent constructor by default - FitDoubleXYRoom& operator=(FitDoubleXYRoom const&); - FitDoubleXYRoom(FitDoubleXYRoom const&); - FitDoubleXYRoom(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/level/levelgen/structure/FitDoubleYRoom.h b/src/mc/world/level/levelgen/structure/FitDoubleYRoom.h index 37d46a3619..6e44d6600c 100644 --- a/src/mc/world/level/levelgen/structure/FitDoubleYRoom.h +++ b/src/mc/world/level/levelgen/structure/FitDoubleYRoom.h @@ -13,12 +13,6 @@ class RoomDefinition; // clang-format on class FitDoubleYRoom : public ::MonumentRoomFitter { -public: - // prevent constructor by default - FitDoubleYRoom& operator=(FitDoubleYRoom const&); - FitDoubleYRoom(FitDoubleYRoom const&); - FitDoubleYRoom(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/level/levelgen/structure/FitDoubleYZRoom.h b/src/mc/world/level/levelgen/structure/FitDoubleYZRoom.h index 7fc6fa2b0e..f179956a21 100644 --- a/src/mc/world/level/levelgen/structure/FitDoubleYZRoom.h +++ b/src/mc/world/level/levelgen/structure/FitDoubleYZRoom.h @@ -13,12 +13,6 @@ class RoomDefinition; // clang-format on class FitDoubleYZRoom : public ::MonumentRoomFitter { -public: - // prevent constructor by default - FitDoubleYZRoom& operator=(FitDoubleYZRoom const&); - FitDoubleYZRoom(FitDoubleYZRoom const&); - FitDoubleYZRoom(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/level/levelgen/structure/FitDoubleZRoom.h b/src/mc/world/level/levelgen/structure/FitDoubleZRoom.h index 8f8ec1225a..85b7f1dfdf 100644 --- a/src/mc/world/level/levelgen/structure/FitDoubleZRoom.h +++ b/src/mc/world/level/levelgen/structure/FitDoubleZRoom.h @@ -13,12 +13,6 @@ class RoomDefinition; // clang-format on class FitDoubleZRoom : public ::MonumentRoomFitter { -public: - // prevent constructor by default - FitDoubleZRoom& operator=(FitDoubleZRoom const&); - FitDoubleZRoom(FitDoubleZRoom const&); - FitDoubleZRoom(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/level/levelgen/structure/FitSimpleRoom.h b/src/mc/world/level/levelgen/structure/FitSimpleRoom.h index 12ffab0c75..4b759333b2 100644 --- a/src/mc/world/level/levelgen/structure/FitSimpleRoom.h +++ b/src/mc/world/level/levelgen/structure/FitSimpleRoom.h @@ -13,12 +13,6 @@ class RoomDefinition; // clang-format on class FitSimpleRoom : public ::MonumentRoomFitter { -public: - // prevent constructor by default - FitSimpleRoom& operator=(FitSimpleRoom const&); - FitSimpleRoom(FitSimpleRoom const&); - FitSimpleRoom(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/level/levelgen/structure/FitSimpleTopRoom.h b/src/mc/world/level/levelgen/structure/FitSimpleTopRoom.h index e0e388a78d..cfd1f1b66f 100644 --- a/src/mc/world/level/levelgen/structure/FitSimpleTopRoom.h +++ b/src/mc/world/level/levelgen/structure/FitSimpleTopRoom.h @@ -13,12 +13,6 @@ class RoomDefinition; // clang-format on class FitSimpleTopRoom : public ::MonumentRoomFitter { -public: - // prevent constructor by default - FitSimpleTopRoom& operator=(FitSimpleTopRoom const&); - FitSimpleTopRoom(FitSimpleTopRoom const&); - FitSimpleTopRoom(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/level/levelgen/structure/ILegacyStructureTemplate.h b/src/mc/world/level/levelgen/structure/ILegacyStructureTemplate.h index ca8b0b401b..d8eb852a6e 100644 --- a/src/mc/world/level/levelgen/structure/ILegacyStructureTemplate.h +++ b/src/mc/world/level/levelgen/structure/ILegacyStructureTemplate.h @@ -11,12 +11,6 @@ class Random; // clang-format on class ILegacyStructureTemplate { -public: - // prevent constructor by default - ILegacyStructureTemplate& operator=(ILegacyStructureTemplate const&); - ILegacyStructureTemplate(ILegacyStructureTemplate const&); - ILegacyStructureTemplate(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/level/levelgen/structure/IStructureTemplate.h b/src/mc/world/level/levelgen/structure/IStructureTemplate.h index 452b17a547..a6dfea0521 100644 --- a/src/mc/world/level/levelgen/structure/IStructureTemplate.h +++ b/src/mc/world/level/levelgen/structure/IStructureTemplate.h @@ -9,12 +9,6 @@ namespace br::worldgen { struct StructureTemplateBlockPalette; } // clang-format on class IStructureTemplate { -public: - // prevent constructor by default - IStructureTemplate& operator=(IStructureTemplate const&); - IStructureTemplate(IStructureTemplate const&); - IStructureTemplate(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/level/levelgen/structure/JunglePyramidPiece.h b/src/mc/world/level/levelgen/structure/JunglePyramidPiece.h index a0113afa65..18e80fd257 100644 --- a/src/mc/world/level/levelgen/structure/JunglePyramidPiece.h +++ b/src/mc/world/level/levelgen/structure/JunglePyramidPiece.h @@ -14,12 +14,6 @@ class Random; // clang-format on class JunglePyramidPiece : public ::ScatteredFeaturePiece { -public: - // prevent constructor by default - JunglePyramidPiece& operator=(JunglePyramidPiece const&); - JunglePyramidPiece(JunglePyramidPiece const&); - JunglePyramidPiece(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/level/levelgen/structure/MineshaftFeature.h b/src/mc/world/level/levelgen/structure/MineshaftFeature.h index 9758b703c0..59a2d491da 100644 --- a/src/mc/world/level/levelgen/structure/MineshaftFeature.h +++ b/src/mc/world/level/levelgen/structure/MineshaftFeature.h @@ -16,12 +16,6 @@ class StructureStart; // clang-format on class MineshaftFeature : public ::StructureFeature { -public: - // prevent constructor by default - MineshaftFeature& operator=(MineshaftFeature const&); - MineshaftFeature(MineshaftFeature const&); - MineshaftFeature(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/level/levelgen/structure/MineshaftStairs.h b/src/mc/world/level/levelgen/structure/MineshaftStairs.h index 40959b8c76..f8ee8813dc 100644 --- a/src/mc/world/level/levelgen/structure/MineshaftStairs.h +++ b/src/mc/world/level/levelgen/structure/MineshaftStairs.h @@ -15,12 +15,6 @@ class StructurePiece; // clang-format on class MineshaftStairs : public ::MineshaftPiece { -public: - // prevent constructor by default - MineshaftStairs& operator=(MineshaftStairs const&); - MineshaftStairs(MineshaftStairs const&); - MineshaftStairs(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/level/levelgen/structure/MineshaftStart.h b/src/mc/world/level/levelgen/structure/MineshaftStart.h index 1e8a37f410..12efe66f1b 100644 --- a/src/mc/world/level/levelgen/structure/MineshaftStart.h +++ b/src/mc/world/level/levelgen/structure/MineshaftStart.h @@ -15,12 +15,6 @@ class Random; // clang-format on class MineshaftStart : public ::StructureStart { -public: - // prevent constructor by default - MineshaftStart& operator=(MineshaftStart const&); - MineshaftStart(MineshaftStart const&); - MineshaftStart(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/level/levelgen/structure/MonumentRoomFitter.h b/src/mc/world/level/levelgen/structure/MonumentRoomFitter.h index 0655bc4df9..a263dec2b3 100644 --- a/src/mc/world/level/levelgen/structure/MonumentRoomFitter.h +++ b/src/mc/world/level/levelgen/structure/MonumentRoomFitter.h @@ -10,12 +10,6 @@ class RoomDefinition; // clang-format on class MonumentRoomFitter { -public: - // prevent constructor by default - MonumentRoomFitter& operator=(MonumentRoomFitter const&); - MonumentRoomFitter(MonumentRoomFitter const&); - MonumentRoomFitter(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/level/levelgen/structure/NBBridgeCrossing.h b/src/mc/world/level/levelgen/structure/NBBridgeCrossing.h index 8b1a7cc22c..b7f64ce282 100644 --- a/src/mc/world/level/levelgen/structure/NBBridgeCrossing.h +++ b/src/mc/world/level/levelgen/structure/NBBridgeCrossing.h @@ -15,12 +15,6 @@ class StructurePiece; // clang-format on class NBBridgeCrossing : public ::NetherFortressPiece { -public: - // prevent constructor by default - NBBridgeCrossing& operator=(NBBridgeCrossing const&); - NBBridgeCrossing(NBBridgeCrossing const&); - NBBridgeCrossing(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/level/levelgen/structure/NBBridgeStraight.h b/src/mc/world/level/levelgen/structure/NBBridgeStraight.h index 2544d2426f..80efcdf327 100644 --- a/src/mc/world/level/levelgen/structure/NBBridgeStraight.h +++ b/src/mc/world/level/levelgen/structure/NBBridgeStraight.h @@ -15,12 +15,6 @@ class StructurePiece; // clang-format on class NBBridgeStraight : public ::NetherFortressPiece { -public: - // prevent constructor by default - NBBridgeStraight& operator=(NBBridgeStraight const&); - NBBridgeStraight(NBBridgeStraight const&); - NBBridgeStraight(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/level/levelgen/structure/NBCastleCorridorStairsPiece.h b/src/mc/world/level/levelgen/structure/NBCastleCorridorStairsPiece.h index 1f9f749321..c88c6cd974 100644 --- a/src/mc/world/level/levelgen/structure/NBCastleCorridorStairsPiece.h +++ b/src/mc/world/level/levelgen/structure/NBCastleCorridorStairsPiece.h @@ -15,12 +15,6 @@ class StructurePiece; // clang-format on class NBCastleCorridorStairsPiece : public ::NetherFortressPiece { -public: - // prevent constructor by default - NBCastleCorridorStairsPiece& operator=(NBCastleCorridorStairsPiece const&); - NBCastleCorridorStairsPiece(NBCastleCorridorStairsPiece const&); - NBCastleCorridorStairsPiece(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/level/levelgen/structure/NBCastleCorridorTBalconyPiece.h b/src/mc/world/level/levelgen/structure/NBCastleCorridorTBalconyPiece.h index 6346dfcca3..33cf86f03c 100644 --- a/src/mc/world/level/levelgen/structure/NBCastleCorridorTBalconyPiece.h +++ b/src/mc/world/level/levelgen/structure/NBCastleCorridorTBalconyPiece.h @@ -15,12 +15,6 @@ class StructurePiece; // clang-format on class NBCastleCorridorTBalconyPiece : public ::NetherFortressPiece { -public: - // prevent constructor by default - NBCastleCorridorTBalconyPiece& operator=(NBCastleCorridorTBalconyPiece const&); - NBCastleCorridorTBalconyPiece(NBCastleCorridorTBalconyPiece const&); - NBCastleCorridorTBalconyPiece(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/level/levelgen/structure/NBCastleEntrance.h b/src/mc/world/level/levelgen/structure/NBCastleEntrance.h index 550fab8030..d89d0cbc7a 100644 --- a/src/mc/world/level/levelgen/structure/NBCastleEntrance.h +++ b/src/mc/world/level/levelgen/structure/NBCastleEntrance.h @@ -15,12 +15,6 @@ class StructurePiece; // clang-format on class NBCastleEntrance : public ::NetherFortressPiece { -public: - // prevent constructor by default - NBCastleEntrance& operator=(NBCastleEntrance const&); - NBCastleEntrance(NBCastleEntrance const&); - NBCastleEntrance(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/level/levelgen/structure/NBCastleSmallCorridorCrossingPiece.h b/src/mc/world/level/levelgen/structure/NBCastleSmallCorridorCrossingPiece.h index 808f7b346b..a62a66d9c1 100644 --- a/src/mc/world/level/levelgen/structure/NBCastleSmallCorridorCrossingPiece.h +++ b/src/mc/world/level/levelgen/structure/NBCastleSmallCorridorCrossingPiece.h @@ -15,12 +15,6 @@ class StructurePiece; // clang-format on class NBCastleSmallCorridorCrossingPiece : public ::NetherFortressPiece { -public: - // prevent constructor by default - NBCastleSmallCorridorCrossingPiece& operator=(NBCastleSmallCorridorCrossingPiece const&); - NBCastleSmallCorridorCrossingPiece(NBCastleSmallCorridorCrossingPiece const&); - NBCastleSmallCorridorCrossingPiece(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/level/levelgen/structure/NBCastleSmallCorridorPiece.h b/src/mc/world/level/levelgen/structure/NBCastleSmallCorridorPiece.h index 0994915f96..d2f1851d87 100644 --- a/src/mc/world/level/levelgen/structure/NBCastleSmallCorridorPiece.h +++ b/src/mc/world/level/levelgen/structure/NBCastleSmallCorridorPiece.h @@ -15,12 +15,6 @@ class StructurePiece; // clang-format on class NBCastleSmallCorridorPiece : public ::NetherFortressPiece { -public: - // prevent constructor by default - NBCastleSmallCorridorPiece& operator=(NBCastleSmallCorridorPiece const&); - NBCastleSmallCorridorPiece(NBCastleSmallCorridorPiece const&); - NBCastleSmallCorridorPiece(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/level/levelgen/structure/NBCastleStalkRoom.h b/src/mc/world/level/levelgen/structure/NBCastleStalkRoom.h index 36dd14a7e7..cc9ff6693b 100644 --- a/src/mc/world/level/levelgen/structure/NBCastleStalkRoom.h +++ b/src/mc/world/level/levelgen/structure/NBCastleStalkRoom.h @@ -15,12 +15,6 @@ class StructurePiece; // clang-format on class NBCastleStalkRoom : public ::NetherFortressPiece { -public: - // prevent constructor by default - NBCastleStalkRoom& operator=(NBCastleStalkRoom const&); - NBCastleStalkRoom(NBCastleStalkRoom const&); - NBCastleStalkRoom(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/level/levelgen/structure/NBMonsterThrone.h b/src/mc/world/level/levelgen/structure/NBMonsterThrone.h index 8b82192394..203d2a1505 100644 --- a/src/mc/world/level/levelgen/structure/NBMonsterThrone.h +++ b/src/mc/world/level/levelgen/structure/NBMonsterThrone.h @@ -15,12 +15,6 @@ class StructurePiece; // clang-format on class NBMonsterThrone : public ::NetherFortressPiece { -public: - // prevent constructor by default - NBMonsterThrone& operator=(NBMonsterThrone const&); - NBMonsterThrone(NBMonsterThrone const&); - NBMonsterThrone(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/level/levelgen/structure/NBRoomCrossing.h b/src/mc/world/level/levelgen/structure/NBRoomCrossing.h index 863dfbe0d6..f630efde53 100644 --- a/src/mc/world/level/levelgen/structure/NBRoomCrossing.h +++ b/src/mc/world/level/levelgen/structure/NBRoomCrossing.h @@ -15,12 +15,6 @@ class StructurePiece; // clang-format on class NBRoomCrossing : public ::NetherFortressPiece { -public: - // prevent constructor by default - NBRoomCrossing& operator=(NBRoomCrossing const&); - NBRoomCrossing(NBRoomCrossing const&); - NBRoomCrossing(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/level/levelgen/structure/NBStairsRoom.h b/src/mc/world/level/levelgen/structure/NBStairsRoom.h index 6d70d8c886..aa6ee68c24 100644 --- a/src/mc/world/level/levelgen/structure/NBStairsRoom.h +++ b/src/mc/world/level/levelgen/structure/NBStairsRoom.h @@ -15,12 +15,6 @@ class StructurePiece; // clang-format on class NBStairsRoom : public ::NetherFortressPiece { -public: - // prevent constructor by default - NBStairsRoom& operator=(NBStairsRoom const&); - NBStairsRoom(NBStairsRoom const&); - NBStairsRoom(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/level/levelgen/structure/NetherFortressStart.h b/src/mc/world/level/levelgen/structure/NetherFortressStart.h index 26d6b07892..09ebecfa48 100644 --- a/src/mc/world/level/levelgen/structure/NetherFortressStart.h +++ b/src/mc/world/level/levelgen/structure/NetherFortressStart.h @@ -11,12 +11,6 @@ class Random; // clang-format on class NetherFortressStart : public ::StructureStart { -public: - // prevent constructor by default - NetherFortressStart& operator=(NetherFortressStart const&); - NetherFortressStart(NetherFortressStart const&); - NetherFortressStart(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/level/levelgen/structure/OceanMonumentCoreRoom.h b/src/mc/world/level/levelgen/structure/OceanMonumentCoreRoom.h index 37686a1716..45ceb15354 100644 --- a/src/mc/world/level/levelgen/structure/OceanMonumentCoreRoom.h +++ b/src/mc/world/level/levelgen/structure/OceanMonumentCoreRoom.h @@ -14,12 +14,6 @@ class Random; // clang-format on class OceanMonumentCoreRoom : public ::OceanMonumentPiece { -public: - // prevent constructor by default - OceanMonumentCoreRoom& operator=(OceanMonumentCoreRoom const&); - OceanMonumentCoreRoom(OceanMonumentCoreRoom const&); - OceanMonumentCoreRoom(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/level/levelgen/structure/OceanMonumentDoubleXRoom.h b/src/mc/world/level/levelgen/structure/OceanMonumentDoubleXRoom.h index 97265996fc..d515c52259 100644 --- a/src/mc/world/level/levelgen/structure/OceanMonumentDoubleXRoom.h +++ b/src/mc/world/level/levelgen/structure/OceanMonumentDoubleXRoom.h @@ -14,12 +14,6 @@ class Random; // clang-format on class OceanMonumentDoubleXRoom : public ::OceanMonumentPiece { -public: - // prevent constructor by default - OceanMonumentDoubleXRoom& operator=(OceanMonumentDoubleXRoom const&); - OceanMonumentDoubleXRoom(OceanMonumentDoubleXRoom const&); - OceanMonumentDoubleXRoom(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/level/levelgen/structure/OceanMonumentDoubleXYRoom.h b/src/mc/world/level/levelgen/structure/OceanMonumentDoubleXYRoom.h index a8ea4974da..b6281ec417 100644 --- a/src/mc/world/level/levelgen/structure/OceanMonumentDoubleXYRoom.h +++ b/src/mc/world/level/levelgen/structure/OceanMonumentDoubleXYRoom.h @@ -14,12 +14,6 @@ class Random; // clang-format on class OceanMonumentDoubleXYRoom : public ::OceanMonumentPiece { -public: - // prevent constructor by default - OceanMonumentDoubleXYRoom& operator=(OceanMonumentDoubleXYRoom const&); - OceanMonumentDoubleXYRoom(OceanMonumentDoubleXYRoom const&); - OceanMonumentDoubleXYRoom(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/level/levelgen/structure/OceanMonumentDoubleYRoom.h b/src/mc/world/level/levelgen/structure/OceanMonumentDoubleYRoom.h index a31bb9a301..d009f77f5b 100644 --- a/src/mc/world/level/levelgen/structure/OceanMonumentDoubleYRoom.h +++ b/src/mc/world/level/levelgen/structure/OceanMonumentDoubleYRoom.h @@ -14,12 +14,6 @@ class Random; // clang-format on class OceanMonumentDoubleYRoom : public ::OceanMonumentPiece { -public: - // prevent constructor by default - OceanMonumentDoubleYRoom& operator=(OceanMonumentDoubleYRoom const&); - OceanMonumentDoubleYRoom(OceanMonumentDoubleYRoom const&); - OceanMonumentDoubleYRoom(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/level/levelgen/structure/OceanMonumentDoubleYZRoom.h b/src/mc/world/level/levelgen/structure/OceanMonumentDoubleYZRoom.h index 87eb2eb826..4d04394589 100644 --- a/src/mc/world/level/levelgen/structure/OceanMonumentDoubleYZRoom.h +++ b/src/mc/world/level/levelgen/structure/OceanMonumentDoubleYZRoom.h @@ -14,12 +14,6 @@ class Random; // clang-format on class OceanMonumentDoubleYZRoom : public ::OceanMonumentPiece { -public: - // prevent constructor by default - OceanMonumentDoubleYZRoom& operator=(OceanMonumentDoubleYZRoom const&); - OceanMonumentDoubleYZRoom(OceanMonumentDoubleYZRoom const&); - OceanMonumentDoubleYZRoom(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/level/levelgen/structure/OceanMonumentDoubleZRoom.h b/src/mc/world/level/levelgen/structure/OceanMonumentDoubleZRoom.h index e1977cf4c3..bc90ce679a 100644 --- a/src/mc/world/level/levelgen/structure/OceanMonumentDoubleZRoom.h +++ b/src/mc/world/level/levelgen/structure/OceanMonumentDoubleZRoom.h @@ -14,12 +14,6 @@ class Random; // clang-format on class OceanMonumentDoubleZRoom : public ::OceanMonumentPiece { -public: - // prevent constructor by default - OceanMonumentDoubleZRoom& operator=(OceanMonumentDoubleZRoom const&); - OceanMonumentDoubleZRoom(OceanMonumentDoubleZRoom const&); - OceanMonumentDoubleZRoom(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/level/levelgen/structure/OceanMonumentEntryRoom.h b/src/mc/world/level/levelgen/structure/OceanMonumentEntryRoom.h index 1373848f0b..faad1a51ec 100644 --- a/src/mc/world/level/levelgen/structure/OceanMonumentEntryRoom.h +++ b/src/mc/world/level/levelgen/structure/OceanMonumentEntryRoom.h @@ -14,12 +14,6 @@ class Random; // clang-format on class OceanMonumentEntryRoom : public ::OceanMonumentPiece { -public: - // prevent constructor by default - OceanMonumentEntryRoom& operator=(OceanMonumentEntryRoom const&); - OceanMonumentEntryRoom(OceanMonumentEntryRoom const&); - OceanMonumentEntryRoom(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/level/levelgen/structure/OceanMonumentPenthouse.h b/src/mc/world/level/levelgen/structure/OceanMonumentPenthouse.h index 6497efc9ff..5ae3dc55e9 100644 --- a/src/mc/world/level/levelgen/structure/OceanMonumentPenthouse.h +++ b/src/mc/world/level/levelgen/structure/OceanMonumentPenthouse.h @@ -14,12 +14,6 @@ class Random; // clang-format on class OceanMonumentPenthouse : public ::OceanMonumentPiece { -public: - // prevent constructor by default - OceanMonumentPenthouse& operator=(OceanMonumentPenthouse const&); - OceanMonumentPenthouse(OceanMonumentPenthouse const&); - OceanMonumentPenthouse(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/level/levelgen/structure/OceanMonumentSimpleTopRoom.h b/src/mc/world/level/levelgen/structure/OceanMonumentSimpleTopRoom.h index 4e02c977a3..c1ad3fe0d3 100644 --- a/src/mc/world/level/levelgen/structure/OceanMonumentSimpleTopRoom.h +++ b/src/mc/world/level/levelgen/structure/OceanMonumentSimpleTopRoom.h @@ -14,12 +14,6 @@ class Random; // clang-format on class OceanMonumentSimpleTopRoom : public ::OceanMonumentPiece { -public: - // prevent constructor by default - OceanMonumentSimpleTopRoom& operator=(OceanMonumentSimpleTopRoom const&); - OceanMonumentSimpleTopRoom(OceanMonumentSimpleTopRoom const&); - OceanMonumentSimpleTopRoom(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/level/levelgen/structure/OceanRuinPieces.h b/src/mc/world/level/levelgen/structure/OceanRuinPieces.h index b5f4ccf214..e54307481c 100644 --- a/src/mc/world/level/levelgen/structure/OceanRuinPieces.h +++ b/src/mc/world/level/levelgen/structure/OceanRuinPieces.h @@ -129,12 +129,6 @@ class OceanRuinPieces { // NOLINTEND }; -public: - // prevent constructor by default - OceanRuinPieces& operator=(OceanRuinPieces const&); - OceanRuinPieces(OceanRuinPieces const&); - OceanRuinPieces(); - public: // static functions // NOLINTBEGIN diff --git a/src/mc/world/level/levelgen/structure/PillagerOutpostPieces.h b/src/mc/world/level/levelgen/structure/PillagerOutpostPieces.h index 0fbc764c5f..454950660d 100644 --- a/src/mc/world/level/levelgen/structure/PillagerOutpostPieces.h +++ b/src/mc/world/level/levelgen/structure/PillagerOutpostPieces.h @@ -146,12 +146,6 @@ class PillagerOutpostPieces { // NOLINTEND }; -public: - // prevent constructor by default - PillagerOutpostPieces& operator=(PillagerOutpostPieces const&); - PillagerOutpostPieces(PillagerOutpostPieces const&); - PillagerOutpostPieces(); - public: // static functions // NOLINTBEGIN diff --git a/src/mc/world/level/levelgen/structure/PillagerOutpostStart.h b/src/mc/world/level/levelgen/structure/PillagerOutpostStart.h index cb24e34e0d..998f6ec4bf 100644 --- a/src/mc/world/level/levelgen/structure/PillagerOutpostStart.h +++ b/src/mc/world/level/levelgen/structure/PillagerOutpostStart.h @@ -14,12 +14,6 @@ class Random; // clang-format on class PillagerOutpostStart : public ::StructureStart { -public: - // prevent constructor by default - PillagerOutpostStart& operator=(PillagerOutpostStart const&); - PillagerOutpostStart(PillagerOutpostStart const&); - PillagerOutpostStart(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/level/levelgen/structure/RuinedPortalStart.h b/src/mc/world/level/levelgen/structure/RuinedPortalStart.h index 8ed18b10a1..a5a0ca8f2a 100644 --- a/src/mc/world/level/levelgen/structure/RuinedPortalStart.h +++ b/src/mc/world/level/levelgen/structure/RuinedPortalStart.h @@ -13,12 +13,6 @@ class IPreliminarySurfaceProvider; // clang-format on class RuinedPortalStart : public ::StructureStart { -public: - // prevent constructor by default - RuinedPortalStart& operator=(RuinedPortalStart const&); - RuinedPortalStart(RuinedPortalStart const&); - RuinedPortalStart(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/level/levelgen/structure/SHChestCorridor.h b/src/mc/world/level/levelgen/structure/SHChestCorridor.h index b2d6a18f89..33d39b1556 100644 --- a/src/mc/world/level/levelgen/structure/SHChestCorridor.h +++ b/src/mc/world/level/levelgen/structure/SHChestCorridor.h @@ -15,12 +15,6 @@ class StructurePiece; // clang-format on class SHChestCorridor : public ::StrongholdPiece { -public: - // prevent constructor by default - SHChestCorridor& operator=(SHChestCorridor const&); - SHChestCorridor(SHChestCorridor const&); - SHChestCorridor(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/level/levelgen/structure/SHLeftTurn.h b/src/mc/world/level/levelgen/structure/SHLeftTurn.h index bff9f92438..06fec4edfc 100644 --- a/src/mc/world/level/levelgen/structure/SHLeftTurn.h +++ b/src/mc/world/level/levelgen/structure/SHLeftTurn.h @@ -15,12 +15,6 @@ class StructurePiece; // clang-format on class SHLeftTurn : public ::StrongholdPiece { -public: - // prevent constructor by default - SHLeftTurn& operator=(SHLeftTurn const&); - SHLeftTurn(SHLeftTurn const&); - SHLeftTurn(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/level/levelgen/structure/SHPortalRoom.h b/src/mc/world/level/levelgen/structure/SHPortalRoom.h index cfe8b69c32..2139dfb684 100644 --- a/src/mc/world/level/levelgen/structure/SHPortalRoom.h +++ b/src/mc/world/level/levelgen/structure/SHPortalRoom.h @@ -15,12 +15,6 @@ class StructurePiece; // clang-format on class SHPortalRoom : public ::StrongholdPiece { -public: - // prevent constructor by default - SHPortalRoom& operator=(SHPortalRoom const&); - SHPortalRoom(SHPortalRoom const&); - SHPortalRoom(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/level/levelgen/structure/SHPrisonHall.h b/src/mc/world/level/levelgen/structure/SHPrisonHall.h index 89f790baab..c1b3832663 100644 --- a/src/mc/world/level/levelgen/structure/SHPrisonHall.h +++ b/src/mc/world/level/levelgen/structure/SHPrisonHall.h @@ -15,12 +15,6 @@ class StructurePiece; // clang-format on class SHPrisonHall : public ::StrongholdPiece { -public: - // prevent constructor by default - SHPrisonHall& operator=(SHPrisonHall const&); - SHPrisonHall(SHPrisonHall const&); - SHPrisonHall(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/level/levelgen/structure/SHRightTurn.h b/src/mc/world/level/levelgen/structure/SHRightTurn.h index eb3a7572a8..0fd835a6b0 100644 --- a/src/mc/world/level/levelgen/structure/SHRightTurn.h +++ b/src/mc/world/level/levelgen/structure/SHRightTurn.h @@ -15,12 +15,6 @@ class StructurePiece; // clang-format on class SHRightTurn : public ::StrongholdPiece { -public: - // prevent constructor by default - SHRightTurn& operator=(SHRightTurn const&); - SHRightTurn(SHRightTurn const&); - SHRightTurn(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/level/levelgen/structure/SHStraightStairsDown.h b/src/mc/world/level/levelgen/structure/SHStraightStairsDown.h index f6618399ba..eda2b490c7 100644 --- a/src/mc/world/level/levelgen/structure/SHStraightStairsDown.h +++ b/src/mc/world/level/levelgen/structure/SHStraightStairsDown.h @@ -15,12 +15,6 @@ class StructurePiece; // clang-format on class SHStraightStairsDown : public ::StrongholdPiece { -public: - // prevent constructor by default - SHStraightStairsDown& operator=(SHStraightStairsDown const&); - SHStraightStairsDown(SHStraightStairsDown const&); - SHStraightStairsDown(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/level/levelgen/structure/ShipwreckPiece.h b/src/mc/world/level/levelgen/structure/ShipwreckPiece.h index fc76fc3123..ea43082fa0 100644 --- a/src/mc/world/level/levelgen/structure/ShipwreckPiece.h +++ b/src/mc/world/level/levelgen/structure/ShipwreckPiece.h @@ -16,12 +16,6 @@ class Random; // clang-format on class ShipwreckPiece : public ::StructurePiece { -public: - // prevent constructor by default - ShipwreckPiece& operator=(ShipwreckPiece const&); - ShipwreckPiece(ShipwreckPiece const&); - ShipwreckPiece(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/level/levelgen/structure/ShipwreckStart.h b/src/mc/world/level/levelgen/structure/ShipwreckStart.h index 40d65a6a21..ac3071f426 100644 --- a/src/mc/world/level/levelgen/structure/ShipwreckStart.h +++ b/src/mc/world/level/levelgen/structure/ShipwreckStart.h @@ -12,12 +12,6 @@ class Random; // clang-format on class ShipwreckStart : public ::StructureStart { -public: - // prevent constructor by default - ShipwreckStart& operator=(ShipwreckStart const&); - ShipwreckStart(ShipwreckStart const&); - ShipwreckStart(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/level/levelgen/structure/StructureHelpers.h b/src/mc/world/level/levelgen/structure/StructureHelpers.h index 06fa6bef36..baa5eb58a8 100644 --- a/src/mc/world/level/levelgen/structure/StructureHelpers.h +++ b/src/mc/world/level/levelgen/structure/StructureHelpers.h @@ -12,12 +12,6 @@ class StructurePiece; // clang-format on class StructureHelpers { -public: - // prevent constructor by default - StructureHelpers& operator=(StructureHelpers const&); - StructureHelpers(StructureHelpers const&); - StructureHelpers(); - public: // static functions // NOLINTBEGIN diff --git a/src/mc/world/level/levelgen/structure/VillagePiece.h b/src/mc/world/level/levelgen/structure/VillagePiece.h index 1af0805518..38a250f222 100644 --- a/src/mc/world/level/levelgen/structure/VillagePiece.h +++ b/src/mc/world/level/levelgen/structure/VillagePiece.h @@ -21,12 +21,6 @@ class StructurePiece; // clang-format on class VillagePiece : public ::PoolElementStructurePiece { -public: - // prevent constructor by default - VillagePiece& operator=(VillagePiece const&); - VillagePiece(VillagePiece const&); - VillagePiece(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/level/levelgen/structure/WoodlandMansionPieces.h b/src/mc/world/level/levelgen/structure/WoodlandMansionPieces.h index 1af1596d99..1ac070db08 100644 --- a/src/mc/world/level/levelgen/structure/WoodlandMansionPieces.h +++ b/src/mc/world/level/levelgen/structure/WoodlandMansionPieces.h @@ -248,12 +248,6 @@ class WoodlandMansionPieces { }; class FloorRoomCollection { - public: - // prevent constructor by default - FloorRoomCollection& operator=(FloorRoomCollection const&); - FloorRoomCollection(FloorRoomCollection const&); - FloorRoomCollection(); - public: // virtual functions // NOLINTBEGIN @@ -388,12 +382,6 @@ class WoodlandMansionPieces { }; class FirstFloorRoomCollection : public ::WoodlandMansionPieces::FloorRoomCollection { - public: - // prevent constructor by default - FirstFloorRoomCollection& operator=(FirstFloorRoomCollection const&); - FirstFloorRoomCollection(FirstFloorRoomCollection const&); - FirstFloorRoomCollection(); - public: // virtual functions // NOLINTBEGIN @@ -454,12 +442,6 @@ class WoodlandMansionPieces { }; class SecondFloorRoomCollection : public ::WoodlandMansionPieces::FloorRoomCollection { - public: - // prevent constructor by default - SecondFloorRoomCollection& operator=(SecondFloorRoomCollection const&); - SecondFloorRoomCollection(SecondFloorRoomCollection const&); - SecondFloorRoomCollection(); - public: // virtual functions // NOLINTBEGIN @@ -520,12 +502,6 @@ class WoodlandMansionPieces { }; class ThirdFloorRoomCollection : public ::WoodlandMansionPieces::SecondFloorRoomCollection { - public: - // prevent constructor by default - ThirdFloorRoomCollection& operator=(ThirdFloorRoomCollection const&); - ThirdFloorRoomCollection(ThirdFloorRoomCollection const&); - ThirdFloorRoomCollection(); - public: // virtual functions // NOLINTBEGIN @@ -546,12 +522,6 @@ class WoodlandMansionPieces { // NOLINTEND }; -public: - // prevent constructor by default - WoodlandMansionPieces& operator=(WoodlandMansionPieces const&); - WoodlandMansionPieces(WoodlandMansionPieces const&); - WoodlandMansionPieces(); - public: // static functions // NOLINTBEGIN diff --git a/src/mc/world/level/levelgen/structure/constraints/IStructureConstraint.h b/src/mc/world/level/levelgen/structure/constraints/IStructureConstraint.h index 877b577eb2..2f2ef92005 100644 --- a/src/mc/world/level/levelgen/structure/constraints/IStructureConstraint.h +++ b/src/mc/world/level/levelgen/structure/constraints/IStructureConstraint.h @@ -12,12 +12,6 @@ class IBlockWorldGenAPI; // clang-format on class IStructureConstraint { -public: - // prevent constructor by default - IStructureConstraint& operator=(IStructureConstraint const&); - IStructureConstraint(IStructureConstraint const&); - IStructureConstraint(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/level/levelgen/structure/registry/StructurePools.h b/src/mc/world/level/levelgen/structure/registry/StructurePools.h index fcadd65326..e7fdcb6c01 100644 --- a/src/mc/world/level/levelgen/structure/registry/StructurePools.h +++ b/src/mc/world/level/levelgen/structure/registry/StructurePools.h @@ -17,12 +17,6 @@ class StructureManager; namespace br::worldgen { struct StructurePools { -public: - // prevent constructor by default - StructurePools& operator=(StructurePools const&); - StructurePools(StructurePools const&); - StructurePools(); - public: // static functions // NOLINTBEGIN diff --git a/src/mc/world/level/levelgen/structure/registry/StructureSets.h b/src/mc/world/level/levelgen/structure/registry/StructureSets.h index c61715c8b5..6faf2c9b62 100644 --- a/src/mc/world/level/levelgen/structure/registry/StructureSets.h +++ b/src/mc/world/level/levelgen/structure/registry/StructureSets.h @@ -14,12 +14,6 @@ namespace br::worldgen { class StructureSetRegistry; } namespace br::worldgen { struct StructureSets { -public: - // prevent constructor by default - StructureSets& operator=(StructureSets const&); - StructureSets(StructureSets const&); - StructureSets(); - public: // static functions // NOLINTBEGIN diff --git a/src/mc/world/level/levelgen/structure/registry/Structures.h b/src/mc/world/level/levelgen/structure/registry/Structures.h index 883f7a58a9..c2d2d2e45c 100644 --- a/src/mc/world/level/levelgen/structure/registry/Structures.h +++ b/src/mc/world/level/levelgen/structure/registry/Structures.h @@ -15,12 +15,6 @@ namespace br::worldgen { struct JigsawStructure; } namespace br::worldgen { struct Structures { -public: - // prevent constructor by default - Structures& operator=(Structures const&); - Structures(Structures const&); - Structures(); - public: // static functions // NOLINTBEGIN diff --git a/src/mc/world/level/levelgen/structure/registry/VanillaAncientCityJigsawStructureBlockRules.h b/src/mc/world/level/levelgen/structure/registry/VanillaAncientCityJigsawStructureBlockRules.h index d2ad6d7185..cfe90f0eaf 100644 --- a/src/mc/world/level/levelgen/structure/registry/VanillaAncientCityJigsawStructureBlockRules.h +++ b/src/mc/world/level/levelgen/structure/registry/VanillaAncientCityJigsawStructureBlockRules.h @@ -8,12 +8,6 @@ class JigsawStructureRegistry; // clang-format on class VanillaAncientCityJigsawStructureBlockRules { -public: - // prevent constructor by default - VanillaAncientCityJigsawStructureBlockRules& operator=(VanillaAncientCityJigsawStructureBlockRules const&); - VanillaAncientCityJigsawStructureBlockRules(VanillaAncientCityJigsawStructureBlockRules const&); - VanillaAncientCityJigsawStructureBlockRules(); - public: // static functions // NOLINTBEGIN diff --git a/src/mc/world/level/levelgen/structure/registry/VanillaAncientCityJigsawStructureElements.h b/src/mc/world/level/levelgen/structure/registry/VanillaAncientCityJigsawStructureElements.h index 712d833a42..cfe00b0366 100644 --- a/src/mc/world/level/levelgen/structure/registry/VanillaAncientCityJigsawStructureElements.h +++ b/src/mc/world/level/levelgen/structure/registry/VanillaAncientCityJigsawStructureElements.h @@ -13,12 +13,6 @@ class StructureManager; // clang-format on class VanillaAncientCityJigsawStructureElements { -public: - // prevent constructor by default - VanillaAncientCityJigsawStructureElements& operator=(VanillaAncientCityJigsawStructureElements const&); - VanillaAncientCityJigsawStructureElements(VanillaAncientCityJigsawStructureElements const&); - VanillaAncientCityJigsawStructureElements(); - public: // static functions // NOLINTBEGIN diff --git a/src/mc/world/level/levelgen/structure/registry/VanillaAncientCityJigsawStructures.h b/src/mc/world/level/levelgen/structure/registry/VanillaAncientCityJigsawStructures.h index 8022c98d20..eef4bb61c8 100644 --- a/src/mc/world/level/levelgen/structure/registry/VanillaAncientCityJigsawStructures.h +++ b/src/mc/world/level/levelgen/structure/registry/VanillaAncientCityJigsawStructures.h @@ -13,12 +13,6 @@ class StructureManager; // clang-format on class VanillaAncientCityJigsawStructures { -public: - // prevent constructor by default - VanillaAncientCityJigsawStructures& operator=(VanillaAncientCityJigsawStructures const&); - VanillaAncientCityJigsawStructures(VanillaAncientCityJigsawStructures const&); - VanillaAncientCityJigsawStructures(); - public: // static functions // NOLINTBEGIN diff --git a/src/mc/world/level/levelgen/structure/registry/VanillaBastionJigsawStructureBlockRules.h b/src/mc/world/level/levelgen/structure/registry/VanillaBastionJigsawStructureBlockRules.h index ee52514bea..e0b7022710 100644 --- a/src/mc/world/level/levelgen/structure/registry/VanillaBastionJigsawStructureBlockRules.h +++ b/src/mc/world/level/levelgen/structure/registry/VanillaBastionJigsawStructureBlockRules.h @@ -8,12 +8,6 @@ class JigsawStructureRegistry; // clang-format on class VanillaBastionJigsawStructureBlockRules { -public: - // prevent constructor by default - VanillaBastionJigsawStructureBlockRules& operator=(VanillaBastionJigsawStructureBlockRules const&); - VanillaBastionJigsawStructureBlockRules(VanillaBastionJigsawStructureBlockRules const&); - VanillaBastionJigsawStructureBlockRules(); - public: // static functions // NOLINTBEGIN diff --git a/src/mc/world/level/levelgen/structure/registry/VanillaBastionJigsawStructureElements.h b/src/mc/world/level/levelgen/structure/registry/VanillaBastionJigsawStructureElements.h index c0d3c5a2e5..1693980e94 100644 --- a/src/mc/world/level/levelgen/structure/registry/VanillaBastionJigsawStructureElements.h +++ b/src/mc/world/level/levelgen/structure/registry/VanillaBastionJigsawStructureElements.h @@ -13,12 +13,6 @@ class StructureManager; // clang-format on class VanillaBastionJigsawStructureElements { -public: - // prevent constructor by default - VanillaBastionJigsawStructureElements& operator=(VanillaBastionJigsawStructureElements const&); - VanillaBastionJigsawStructureElements(VanillaBastionJigsawStructureElements const&); - VanillaBastionJigsawStructureElements(); - public: // static functions // NOLINTBEGIN diff --git a/src/mc/world/level/levelgen/structure/registry/VanillaBastionJigsawStructures.h b/src/mc/world/level/levelgen/structure/registry/VanillaBastionJigsawStructures.h index ad010e688f..a6a74e30cf 100644 --- a/src/mc/world/level/levelgen/structure/registry/VanillaBastionJigsawStructures.h +++ b/src/mc/world/level/levelgen/structure/registry/VanillaBastionJigsawStructures.h @@ -13,12 +13,6 @@ class StructureManager; // clang-format on class VanillaBastionJigsawStructures { -public: - // prevent constructor by default - VanillaBastionJigsawStructures& operator=(VanillaBastionJigsawStructures const&); - VanillaBastionJigsawStructures(VanillaBastionJigsawStructures const&); - VanillaBastionJigsawStructures(); - public: // static functions // NOLINTBEGIN diff --git a/src/mc/world/level/levelgen/structure/registry/VanillaTrailRuinsJigsawStructureBlockRules.h b/src/mc/world/level/levelgen/structure/registry/VanillaTrailRuinsJigsawStructureBlockRules.h index 641c77e83a..ac202a3996 100644 --- a/src/mc/world/level/levelgen/structure/registry/VanillaTrailRuinsJigsawStructureBlockRules.h +++ b/src/mc/world/level/levelgen/structure/registry/VanillaTrailRuinsJigsawStructureBlockRules.h @@ -8,12 +8,6 @@ class JigsawStructureRegistry; // clang-format on class VanillaTrailRuinsJigsawStructureBlockRules { -public: - // prevent constructor by default - VanillaTrailRuinsJigsawStructureBlockRules& operator=(VanillaTrailRuinsJigsawStructureBlockRules const&); - VanillaTrailRuinsJigsawStructureBlockRules(VanillaTrailRuinsJigsawStructureBlockRules const&); - VanillaTrailRuinsJigsawStructureBlockRules(); - public: // static functions // NOLINTBEGIN diff --git a/src/mc/world/level/levelgen/structure/registry/VanillaTrailRuinsJigsawStructures.h b/src/mc/world/level/levelgen/structure/registry/VanillaTrailRuinsJigsawStructures.h index d5f392ae86..cd6909385d 100644 --- a/src/mc/world/level/levelgen/structure/registry/VanillaTrailRuinsJigsawStructures.h +++ b/src/mc/world/level/levelgen/structure/registry/VanillaTrailRuinsJigsawStructures.h @@ -9,12 +9,6 @@ struct StructureTemplateRegistrationContext; // clang-format on class VanillaTrailRuinsJigsawStructures { -public: - // prevent constructor by default - VanillaTrailRuinsJigsawStructures& operator=(VanillaTrailRuinsJigsawStructures const&); - VanillaTrailRuinsJigsawStructures(VanillaTrailRuinsJigsawStructures const&); - VanillaTrailRuinsJigsawStructures(); - public: // static functions // NOLINTBEGIN diff --git a/src/mc/world/level/levelgen/structure/registry/VanillaVillageJigsawStructureActorRules.h b/src/mc/world/level/levelgen/structure/registry/VanillaVillageJigsawStructureActorRules.h index e020900fb9..e1aca52864 100644 --- a/src/mc/world/level/levelgen/structure/registry/VanillaVillageJigsawStructureActorRules.h +++ b/src/mc/world/level/levelgen/structure/registry/VanillaVillageJigsawStructureActorRules.h @@ -8,12 +8,6 @@ class JigsawStructureRegistry; // clang-format on class VanillaVillageJigsawStructureActorRules { -public: - // prevent constructor by default - VanillaVillageJigsawStructureActorRules& operator=(VanillaVillageJigsawStructureActorRules const&); - VanillaVillageJigsawStructureActorRules(VanillaVillageJigsawStructureActorRules const&); - VanillaVillageJigsawStructureActorRules(); - public: // static functions // NOLINTBEGIN diff --git a/src/mc/world/level/levelgen/structure/registry/VanillaVillageJigsawStructureBlockRules.h b/src/mc/world/level/levelgen/structure/registry/VanillaVillageJigsawStructureBlockRules.h index 4bfb97c5d1..dca8c64605 100644 --- a/src/mc/world/level/levelgen/structure/registry/VanillaVillageJigsawStructureBlockRules.h +++ b/src/mc/world/level/levelgen/structure/registry/VanillaVillageJigsawStructureBlockRules.h @@ -8,12 +8,6 @@ class JigsawStructureRegistry; // clang-format on class VanillaVillageJigsawStructureBlockRules { -public: - // prevent constructor by default - VanillaVillageJigsawStructureBlockRules& operator=(VanillaVillageJigsawStructureBlockRules const&); - VanillaVillageJigsawStructureBlockRules(VanillaVillageJigsawStructureBlockRules const&); - VanillaVillageJigsawStructureBlockRules(); - public: // static functions // NOLINTBEGIN diff --git a/src/mc/world/level/levelgen/structure/registry/VanillaVillageJigsawStructureBlockTagRules.h b/src/mc/world/level/levelgen/structure/registry/VanillaVillageJigsawStructureBlockTagRules.h index ae8f97c8c1..7b859562a4 100644 --- a/src/mc/world/level/levelgen/structure/registry/VanillaVillageJigsawStructureBlockTagRules.h +++ b/src/mc/world/level/levelgen/structure/registry/VanillaVillageJigsawStructureBlockTagRules.h @@ -8,12 +8,6 @@ class JigsawStructureRegistry; // clang-format on class VanillaVillageJigsawStructureBlockTagRules { -public: - // prevent constructor by default - VanillaVillageJigsawStructureBlockTagRules& operator=(VanillaVillageJigsawStructureBlockTagRules const&); - VanillaVillageJigsawStructureBlockTagRules(VanillaVillageJigsawStructureBlockTagRules const&); - VanillaVillageJigsawStructureBlockTagRules(); - public: // static functions // NOLINTBEGIN diff --git a/src/mc/world/level/levelgen/structure/registry/VanillaVillageJigsawStructureElements.h b/src/mc/world/level/levelgen/structure/registry/VanillaVillageJigsawStructureElements.h index 978a67b51c..abd727546d 100644 --- a/src/mc/world/level/levelgen/structure/registry/VanillaVillageJigsawStructureElements.h +++ b/src/mc/world/level/levelgen/structure/registry/VanillaVillageJigsawStructureElements.h @@ -13,12 +13,6 @@ class StructureManager; // clang-format on class VanillaVillageJigsawStructureElements { -public: - // prevent constructor by default - VanillaVillageJigsawStructureElements& operator=(VanillaVillageJigsawStructureElements const&); - VanillaVillageJigsawStructureElements(VanillaVillageJigsawStructureElements const&); - VanillaVillageJigsawStructureElements(); - public: // static functions // NOLINTBEGIN diff --git a/src/mc/world/level/levelgen/structure/registry/VanillaVillageJigsawStructures.h b/src/mc/world/level/levelgen/structure/registry/VanillaVillageJigsawStructures.h index be9d51b567..ed274c1044 100644 --- a/src/mc/world/level/levelgen/structure/registry/VanillaVillageJigsawStructures.h +++ b/src/mc/world/level/levelgen/structure/registry/VanillaVillageJigsawStructures.h @@ -13,12 +13,6 @@ class StructureManager; // clang-format on class VanillaVillageJigsawStructures { -public: - // prevent constructor by default - VanillaVillageJigsawStructures& operator=(VanillaVillageJigsawStructures const&); - VanillaVillageJigsawStructures(VanillaVillageJigsawStructures const&); - VanillaVillageJigsawStructures(); - public: // static functions // NOLINTBEGIN diff --git a/src/mc/world/level/levelgen/structure/structurepools/EmptyPoolElement.h b/src/mc/world/level/levelgen/structure/structurepools/EmptyPoolElement.h index cd12a802e2..b44ab096f7 100644 --- a/src/mc/world/level/levelgen/structure/structurepools/EmptyPoolElement.h +++ b/src/mc/world/level/levelgen/structure/structurepools/EmptyPoolElement.h @@ -17,12 +17,6 @@ class LegacyStructureSettings; // clang-format on class EmptyPoolElement : public ::StructurePoolElement { -public: - // prevent constructor by default - EmptyPoolElement& operator=(EmptyPoolElement const&); - EmptyPoolElement(EmptyPoolElement const&); - EmptyPoolElement(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/level/levelgen/structure/structurepools/IStructurePoolActorPredicate.h b/src/mc/world/level/levelgen/structure/structurepools/IStructurePoolActorPredicate.h index 8e339ce827..35071b8752 100644 --- a/src/mc/world/level/levelgen/structure/structurepools/IStructurePoolActorPredicate.h +++ b/src/mc/world/level/levelgen/structure/structurepools/IStructurePoolActorPredicate.h @@ -8,12 +8,6 @@ namespace Util { class XXHash; } // clang-format on class IStructurePoolActorPredicate { -public: - // prevent constructor by default - IStructurePoolActorPredicate& operator=(IStructurePoolActorPredicate const&); - IStructurePoolActorPredicate(IStructurePoolActorPredicate const&); - IStructurePoolActorPredicate(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/level/levelgen/structure/structurepools/IStructurePoolBlockPredicate.h b/src/mc/world/level/levelgen/structure/structurepools/IStructurePoolBlockPredicate.h index 39cc2d5333..77cb4244c0 100644 --- a/src/mc/world/level/levelgen/structure/structurepools/IStructurePoolBlockPredicate.h +++ b/src/mc/world/level/levelgen/structure/structurepools/IStructurePoolBlockPredicate.h @@ -16,12 +16,6 @@ namespace Util { class XXHash; } // clang-format on class IStructurePoolBlockPredicate { -public: - // prevent constructor by default - IStructurePoolBlockPredicate& operator=(IStructurePoolBlockPredicate const&); - IStructurePoolBlockPredicate(IStructurePoolBlockPredicate const&); - IStructurePoolBlockPredicate(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/level/levelgen/structure/structurepools/IStructurePoolBlockTagPredicate.h b/src/mc/world/level/levelgen/structure/structurepools/IStructurePoolBlockTagPredicate.h index 050c05bc40..431b3ea92f 100644 --- a/src/mc/world/level/levelgen/structure/structurepools/IStructurePoolBlockTagPredicate.h +++ b/src/mc/world/level/levelgen/structure/structurepools/IStructurePoolBlockTagPredicate.h @@ -10,12 +10,6 @@ namespace Util { class XXHash; } // clang-format on class IStructurePoolBlockTagPredicate { -public: - // prevent constructor by default - IStructurePoolBlockTagPredicate& operator=(IStructurePoolBlockTagPredicate const&); - IStructurePoolBlockTagPredicate(IStructurePoolBlockTagPredicate const&); - IStructurePoolBlockTagPredicate(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/level/levelgen/structure/structurepools/StructurePoolActorPredicateAlwaysTrue.h b/src/mc/world/level/levelgen/structure/structurepools/StructurePoolActorPredicateAlwaysTrue.h index ad3aa0eaab..203542e62b 100644 --- a/src/mc/world/level/levelgen/structure/structurepools/StructurePoolActorPredicateAlwaysTrue.h +++ b/src/mc/world/level/levelgen/structure/structurepools/StructurePoolActorPredicateAlwaysTrue.h @@ -11,12 +11,6 @@ namespace Util { class XXHash; } // clang-format on class StructurePoolActorPredicateAlwaysTrue : public ::IStructurePoolActorPredicate { -public: - // prevent constructor by default - StructurePoolActorPredicateAlwaysTrue& operator=(StructurePoolActorPredicateAlwaysTrue const&); - StructurePoolActorPredicateAlwaysTrue(StructurePoolActorPredicateAlwaysTrue const&); - StructurePoolActorPredicateAlwaysTrue(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/level/levelgen/structure/structurepools/StructurePoolBlockPredicateAlwaysTrue.h b/src/mc/world/level/levelgen/structure/structurepools/StructurePoolBlockPredicateAlwaysTrue.h index 39c94b195d..15147a39f3 100644 --- a/src/mc/world/level/levelgen/structure/structurepools/StructurePoolBlockPredicateAlwaysTrue.h +++ b/src/mc/world/level/levelgen/structure/structurepools/StructurePoolBlockPredicateAlwaysTrue.h @@ -15,11 +15,6 @@ namespace Util { class XXHash; } // clang-format on class StructurePoolBlockPredicateAlwaysTrue : public ::IStructurePoolBlockPredicate { -public: - // prevent constructor by default - StructurePoolBlockPredicateAlwaysTrue& operator=(StructurePoolBlockPredicateAlwaysTrue const&); - StructurePoolBlockPredicateAlwaysTrue(StructurePoolBlockPredicateAlwaysTrue const&); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/level/levelgen/structure/structurepools/StructurePoolBlockTagPredicateAlwaysTrue.h b/src/mc/world/level/levelgen/structure/structurepools/StructurePoolBlockTagPredicateAlwaysTrue.h index fdbaef5384..d94795c5dd 100644 --- a/src/mc/world/level/levelgen/structure/structurepools/StructurePoolBlockTagPredicateAlwaysTrue.h +++ b/src/mc/world/level/levelgen/structure/structurepools/StructurePoolBlockTagPredicateAlwaysTrue.h @@ -13,12 +13,6 @@ namespace Util { class XXHash; } // clang-format on class StructurePoolBlockTagPredicateAlwaysTrue : public ::IStructurePoolBlockTagPredicate { -public: - // prevent constructor by default - StructurePoolBlockTagPredicateAlwaysTrue& operator=(StructurePoolBlockTagPredicateAlwaysTrue const&); - StructurePoolBlockTagPredicateAlwaysTrue(StructurePoolBlockTagPredicateAlwaysTrue const&); - StructurePoolBlockTagPredicateAlwaysTrue(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/level/levelgen/structure/structurepools/StructurePoolElement.h b/src/mc/world/level/levelgen/structure/structurepools/StructurePoolElement.h index c342337686..10adf4d4ff 100644 --- a/src/mc/world/level/levelgen/structure/structurepools/StructurePoolElement.h +++ b/src/mc/world/level/levelgen/structure/structurepools/StructurePoolElement.h @@ -41,12 +41,6 @@ class StructurePoolElement { // StructurePoolElement inner types define class ITemplate { - public: - // prevent constructor by default - ITemplate& operator=(ITemplate const&); - ITemplate(ITemplate const&); - ITemplate(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/level/levelgen/structure/structurepools/alias/PoolAliasBinding.h b/src/mc/world/level/levelgen/structure/structurepools/alias/PoolAliasBinding.h index 16b8796e0a..b35d5a85d0 100644 --- a/src/mc/world/level/levelgen/structure/structurepools/alias/PoolAliasBinding.h +++ b/src/mc/world/level/levelgen/structure/structurepools/alias/PoolAliasBinding.h @@ -49,12 +49,6 @@ class PoolAliasBinding { // NOLINTEND }; -public: - // prevent constructor by default - PoolAliasBinding& operator=(PoolAliasBinding const&); - PoolAliasBinding(PoolAliasBinding const&); - PoolAliasBinding(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/level/levelgen/synth/MultiOctaveNoiseImpl.h b/src/mc/world/level/levelgen/synth/MultiOctaveNoiseImpl.h index 28d6d52092..c5dfe39582 100644 --- a/src/mc/world/level/levelgen/synth/MultiOctaveNoiseImpl.h +++ b/src/mc/world/level/levelgen/synth/MultiOctaveNoiseImpl.h @@ -3,10 +3,4 @@ #include "mc/_HeaderOutputPredefine.h" template -class MultiOctaveNoiseImpl { -public: - // prevent constructor by default - MultiOctaveNoiseImpl& operator=(MultiOctaveNoiseImpl const&); - MultiOctaveNoiseImpl(MultiOctaveNoiseImpl const&); - MultiOctaveNoiseImpl(); -}; +class MultiOctaveNoiseImpl {}; diff --git a/src/mc/world/level/levelgen/synth/NormalNoiseImpl.h b/src/mc/world/level/levelgen/synth/NormalNoiseImpl.h index 1c35de0cf0..798a5f24ae 100644 --- a/src/mc/world/level/levelgen/synth/NormalNoiseImpl.h +++ b/src/mc/world/level/levelgen/synth/NormalNoiseImpl.h @@ -3,10 +3,4 @@ #include "mc/_HeaderOutputPredefine.h" template -class NormalNoiseImpl { -public: - // prevent constructor by default - NormalNoiseImpl& operator=(NormalNoiseImpl const&); - NormalNoiseImpl(NormalNoiseImpl const&); - NormalNoiseImpl(); -}; +class NormalNoiseImpl {}; diff --git a/src/mc/world/level/levelgen/synth/noise_utils/DoublesForFloatsRandom.h b/src/mc/world/level/levelgen/synth/noise_utils/DoublesForFloatsRandom.h index f13faf9885..a7ceb95b73 100644 --- a/src/mc/world/level/levelgen/synth/noise_utils/DoublesForFloatsRandom.h +++ b/src/mc/world/level/levelgen/synth/noise_utils/DoublesForFloatsRandom.h @@ -8,12 +8,6 @@ namespace NoiseUtils { class DoublesForFloatsRandom : public ::NoiseUtils::DelegatingRandom { -public: - // prevent constructor by default - DoublesForFloatsRandom& operator=(DoublesForFloatsRandom const&); - DoublesForFloatsRandom(DoublesForFloatsRandom const&); - DoublesForFloatsRandom(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/level/levelgen/synth/noise_utils/FloatsForDoublesRandom.h b/src/mc/world/level/levelgen/synth/noise_utils/FloatsForDoublesRandom.h index cd90a54d90..1ed5df6082 100644 --- a/src/mc/world/level/levelgen/synth/noise_utils/FloatsForDoublesRandom.h +++ b/src/mc/world/level/levelgen/synth/noise_utils/FloatsForDoublesRandom.h @@ -8,12 +8,6 @@ namespace NoiseUtils { class FloatsForDoublesRandom : public ::NoiseUtils::DelegatingRandom { -public: - // prevent constructor by default - FloatsForDoublesRandom& operator=(FloatsForDoublesRandom const&); - FloatsForDoublesRandom(FloatsForDoublesRandom const&); - FloatsForDoublesRandom(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/level/levelgen/v1/IPreliminarySurfaceProvider.h b/src/mc/world/level/levelgen/v1/IPreliminarySurfaceProvider.h index 68b5b00dad..7f14062583 100644 --- a/src/mc/world/level/levelgen/v1/IPreliminarySurfaceProvider.h +++ b/src/mc/world/level/levelgen/v1/IPreliminarySurfaceProvider.h @@ -6,12 +6,6 @@ #include "mc/world/level/DividedPos2d.h" class IPreliminarySurfaceProvider { -public: - // prevent constructor by default - IPreliminarySurfaceProvider& operator=(IPreliminarySurfaceProvider const&); - IPreliminarySurfaceProvider(IPreliminarySurfaceProvider const&); - IPreliminarySurfaceProvider(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/level/levelgen/v1/NullPreliminarySurfaceProvider.h b/src/mc/world/level/levelgen/v1/NullPreliminarySurfaceProvider.h index 8103e2003d..346d371fbe 100644 --- a/src/mc/world/level/levelgen/v1/NullPreliminarySurfaceProvider.h +++ b/src/mc/world/level/levelgen/v1/NullPreliminarySurfaceProvider.h @@ -7,12 +7,6 @@ #include "mc/world/level/levelgen/v1/IPreliminarySurfaceProvider.h" class NullPreliminarySurfaceProvider : public ::IPreliminarySurfaceProvider { -public: - // prevent constructor by default - NullPreliminarySurfaceProvider& operator=(NullPreliminarySurfaceProvider const&); - NullPreliminarySurfaceProvider(NullPreliminarySurfaceProvider const&); - NullPreliminarySurfaceProvider(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/level/levelgen/v2/ChunkStructureAccess.h b/src/mc/world/level/levelgen/v2/ChunkStructureAccess.h index 1427d848dd..b69e2a05bf 100644 --- a/src/mc/world/level/levelgen/v2/ChunkStructureAccess.h +++ b/src/mc/world/level/levelgen/v2/ChunkStructureAccess.h @@ -12,12 +12,6 @@ namespace br::worldgen { struct Structure; } namespace br::worldgen { struct ChunkStructureAccess { -public: - // prevent constructor by default - ChunkStructureAccess& operator=(ChunkStructureAccess const&); - ChunkStructureAccess(ChunkStructureAccess const&); - ChunkStructureAccess(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/level/levelgen/v2/HeightProvider.h b/src/mc/world/level/levelgen/v2/HeightProvider.h index 254e5274cb..94323fc1f3 100644 --- a/src/mc/world/level/levelgen/v2/HeightProvider.h +++ b/src/mc/world/level/levelgen/v2/HeightProvider.h @@ -11,12 +11,6 @@ namespace br::worldgen { class WorldGenContext; } namespace br::worldgen { struct HeightProvider { -public: - // prevent constructor by default - HeightProvider& operator=(HeightProvider const&); - HeightProvider(HeightProvider const&); - HeightProvider(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/level/levelgen/v2/JigsawAssembler.h b/src/mc/world/level/levelgen/v2/JigsawAssembler.h index 00828cb8b4..63b9d0af4c 100644 --- a/src/mc/world/level/levelgen/v2/JigsawAssembler.h +++ b/src/mc/world/level/levelgen/v2/JigsawAssembler.h @@ -19,12 +19,6 @@ namespace br::worldgen { struct GenerationContext; } namespace br::worldgen { struct JigsawAssembler { -public: - // prevent constructor by default - JigsawAssembler& operator=(JigsawAssembler const&); - JigsawAssembler(JigsawAssembler const&); - JigsawAssembler(); - public: // static functions // NOLINTBEGIN diff --git a/src/mc/world/level/levelgen/v2/JigsawStructureParser.h b/src/mc/world/level/levelgen/v2/JigsawStructureParser.h index ff3ed44aca..42a05e68ae 100644 --- a/src/mc/world/level/levelgen/v2/JigsawStructureParser.h +++ b/src/mc/world/level/levelgen/v2/JigsawStructureParser.h @@ -22,12 +22,6 @@ namespace br::worldgen { struct StructureSet; } // clang-format on struct JigsawStructureParser { -public: - // prevent constructor by default - JigsawStructureParser& operator=(JigsawStructureParser const&); - JigsawStructureParser(JigsawStructureParser const&); - JigsawStructureParser(); - public: // static functions // NOLINTBEGIN diff --git a/src/mc/world/level/levelgen/v2/StructureBuilder.h b/src/mc/world/level/levelgen/v2/StructureBuilder.h index 540f9ecbb4..f31c784b57 100644 --- a/src/mc/world/level/levelgen/v2/StructureBuilder.h +++ b/src/mc/world/level/levelgen/v2/StructureBuilder.h @@ -5,12 +5,6 @@ namespace br::worldgen { template -class StructureBuilder { -public: - // prevent constructor by default - StructureBuilder& operator=(StructureBuilder const&); - StructureBuilder(StructureBuilder const&); - StructureBuilder(); -}; +class StructureBuilder {}; } // namespace br::worldgen diff --git a/src/mc/world/level/levelgen/v2/processors/AlwaysTrueType.h b/src/mc/world/level/levelgen/v2/processors/AlwaysTrueType.h index ccc7130fbc..a4fde9dc85 100644 --- a/src/mc/world/level/levelgen/v2/processors/AlwaysTrueType.h +++ b/src/mc/world/level/levelgen/v2/processors/AlwaysTrueType.h @@ -4,12 +4,6 @@ namespace br::worldgen::processors { -struct AlwaysTrueType { -public: - // prevent constructor by default - AlwaysTrueType& operator=(AlwaysTrueType const&); - AlwaysTrueType(AlwaysTrueType const&); - AlwaysTrueType(); -}; +struct AlwaysTrueType {}; } // namespace br::worldgen::processors diff --git a/src/mc/world/level/levelgen/v2/processors/JigsawReplacement.h b/src/mc/world/level/levelgen/v2/processors/JigsawReplacement.h index dca05bc047..e7dfdd3e41 100644 --- a/src/mc/world/level/levelgen/v2/processors/JigsawReplacement.h +++ b/src/mc/world/level/levelgen/v2/processors/JigsawReplacement.h @@ -18,12 +18,6 @@ namespace br::worldgen { struct StructurePlaceSettings; } namespace br::worldgen::processors { class JigsawReplacement : public ::br::worldgen::StructureProcessor { -public: - // prevent constructor by default - JigsawReplacement& operator=(JigsawReplacement const&); - JigsawReplacement(JigsawReplacement const&); - JigsawReplacement(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/level/levelgen/v2/processors/StructureProcessor.h b/src/mc/world/level/levelgen/v2/processors/StructureProcessor.h index ef30453d8f..96607eee0a 100644 --- a/src/mc/world/level/levelgen/v2/processors/StructureProcessor.h +++ b/src/mc/world/level/levelgen/v2/processors/StructureProcessor.h @@ -20,12 +20,6 @@ namespace br::worldgen::processors { struct RuleSet; } namespace br::worldgen { struct StructureProcessor { -public: - // prevent constructor by default - StructureProcessor& operator=(StructureProcessor const&); - StructureProcessor(StructureProcessor const&); - StructureProcessor(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/level/levelgen/v2/processors/block_entity/ModifierType.h b/src/mc/world/level/levelgen/v2/processors/block_entity/ModifierType.h index 73266f54cb..7eb18f7005 100644 --- a/src/mc/world/level/levelgen/v2/processors/block_entity/ModifierType.h +++ b/src/mc/world/level/levelgen/v2/processors/block_entity/ModifierType.h @@ -12,12 +12,6 @@ namespace Util { class XXHash; } namespace br::worldgen::processors::BlockEntity { struct ModifierType { -public: - // prevent constructor by default - ModifierType& operator=(ModifierType const&); - ModifierType(ModifierType const&); - ModifierType(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/level/levelgen/v2/processors/block_entity/Passthrough.h b/src/mc/world/level/levelgen/v2/processors/block_entity/Passthrough.h index 5b15bfce77..008b50b1b7 100644 --- a/src/mc/world/level/levelgen/v2/processors/block_entity/Passthrough.h +++ b/src/mc/world/level/levelgen/v2/processors/block_entity/Passthrough.h @@ -15,12 +15,6 @@ namespace Util { class XXHash; } namespace br::worldgen::processors::BlockEntity { struct Passthrough : public ::br::worldgen::processors::BlockEntity::ModifierType { -public: - // prevent constructor by default - Passthrough& operator=(Passthrough const&); - Passthrough(Passthrough const&); - Passthrough(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/level/levelgen/v2/processors/block_rules/AlwaysTrue.h b/src/mc/world/level/levelgen/v2/processors/block_rules/AlwaysTrue.h index 38dcd4a214..abe66009dc 100644 --- a/src/mc/world/level/levelgen/v2/processors/block_rules/AlwaysTrue.h +++ b/src/mc/world/level/levelgen/v2/processors/block_rules/AlwaysTrue.h @@ -15,12 +15,6 @@ namespace Util { class XXHash; } namespace br::worldgen::processors::BlockRules { struct AlwaysTrue : public ::br::worldgen::processors::BlockRules::TestType { -public: - // prevent constructor by default - AlwaysTrue& operator=(AlwaysTrue const&); - AlwaysTrue(AlwaysTrue const&); - AlwaysTrue(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/level/levelgen/v2/processors/block_rules/TestType.h b/src/mc/world/level/levelgen/v2/processors/block_rules/TestType.h index bbbb934789..fe6fe049bc 100644 --- a/src/mc/world/level/levelgen/v2/processors/block_rules/TestType.h +++ b/src/mc/world/level/levelgen/v2/processors/block_rules/TestType.h @@ -12,12 +12,6 @@ namespace Util { class XXHash; } namespace br::worldgen::processors::BlockRules { struct TestType { -public: - // prevent constructor by default - TestType& operator=(TestType const&); - TestType(TestType const&); - TestType(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/level/levelgen/v2/processors/pos_rules/AlwaysTrue.h b/src/mc/world/level/levelgen/v2/processors/pos_rules/AlwaysTrue.h index 8d22242148..0b44168d5a 100644 --- a/src/mc/world/level/levelgen/v2/processors/pos_rules/AlwaysTrue.h +++ b/src/mc/world/level/levelgen/v2/processors/pos_rules/AlwaysTrue.h @@ -15,12 +15,6 @@ namespace Util { class XXHash; } namespace br::worldgen::processors::PosRules { struct AlwaysTrue : public ::br::worldgen::processors::PosRules::TestType { -public: - // prevent constructor by default - AlwaysTrue& operator=(AlwaysTrue const&); - AlwaysTrue(AlwaysTrue const&); - AlwaysTrue(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/level/levelgen/v2/processors/pos_rules/TestType.h b/src/mc/world/level/levelgen/v2/processors/pos_rules/TestType.h index 4a4bcff536..aa34e5d95f 100644 --- a/src/mc/world/level/levelgen/v2/processors/pos_rules/TestType.h +++ b/src/mc/world/level/levelgen/v2/processors/pos_rules/TestType.h @@ -12,12 +12,6 @@ namespace Util { class XXHash; } namespace br::worldgen::processors::PosRules { struct TestType { -public: - // prevent constructor by default - TestType& operator=(TestType const&); - TestType(TestType const&); - TestType(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/level/levelgen/v2/providers/IntProviderType.h b/src/mc/world/level/levelgen/v2/providers/IntProviderType.h index a3b0d012d4..c2517d478e 100644 --- a/src/mc/world/level/levelgen/v2/providers/IntProviderType.h +++ b/src/mc/world/level/levelgen/v2/providers/IntProviderType.h @@ -8,12 +8,6 @@ class IRandom; // clang-format on struct IntProviderType { -public: - // prevent constructor by default - IntProviderType& operator=(IntProviderType const&); - IntProviderType(IntProviderType const&); - IntProviderType(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/level/material/MaterialTypeEnumHasher.h b/src/mc/world/level/material/MaterialTypeEnumHasher.h index f17da6636d..005bfa8c0a 100644 --- a/src/mc/world/level/material/MaterialTypeEnumHasher.h +++ b/src/mc/world/level/material/MaterialTypeEnumHasher.h @@ -2,10 +2,4 @@ #include "mc/_HeaderOutputPredefine.h" -struct MaterialTypeEnumHasher { -public: - // prevent constructor by default - MaterialTypeEnumHasher& operator=(MaterialTypeEnumHasher const&); - MaterialTypeEnumHasher(MaterialTypeEnumHasher const&); - MaterialTypeEnumHasher(); -}; +struct MaterialTypeEnumHasher {}; diff --git a/src/mc/world/level/newbiome/AddOceanTemperatureOperationNode.h b/src/mc/world/level/newbiome/AddOceanTemperatureOperationNode.h index c2c1e56a74..df408e1d79 100644 --- a/src/mc/world/level/newbiome/AddOceanTemperatureOperationNode.h +++ b/src/mc/world/level/newbiome/AddOceanTemperatureOperationNode.h @@ -13,12 +13,6 @@ class Pos2d; // clang-format on class AddOceanTemperatureOperationNode : public ::RootOperationNode<::BiomeTemperatureCategory, ::Pos2d> { -public: - // prevent constructor by default - AddOceanTemperatureOperationNode& operator=(AddOceanTemperatureOperationNode const&); - AddOceanTemperatureOperationNode(AddOceanTemperatureOperationNode const&); - AddOceanTemperatureOperationNode(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/level/newbiome/IslandOperationNode.h b/src/mc/world/level/newbiome/IslandOperationNode.h index 77f5e8bde9..156886dbe4 100644 --- a/src/mc/world/level/newbiome/IslandOperationNode.h +++ b/src/mc/world/level/newbiome/IslandOperationNode.h @@ -13,12 +13,6 @@ class Pos2d; // clang-format on class IslandOperationNode : public ::RootOperationNode<::OperationNodeValues::Terrain, ::Pos2d> { -public: - // prevent constructor by default - IslandOperationNode& operator=(IslandOperationNode const&); - IslandOperationNode(IslandOperationNode const&); - IslandOperationNode(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/level/newbiome/MixerOperationNode.h b/src/mc/world/level/newbiome/MixerOperationNode.h index a5142f1a9b..7075c901fa 100644 --- a/src/mc/world/level/newbiome/MixerOperationNode.h +++ b/src/mc/world/level/newbiome/MixerOperationNode.h @@ -3,10 +3,4 @@ #include "mc/_HeaderOutputPredefine.h" template -class MixerOperationNode { -public: - // prevent constructor by default - MixerOperationNode& operator=(MixerOperationNode const&); - MixerOperationNode(MixerOperationNode const&); - MixerOperationNode(); -}; +class MixerOperationNode {}; diff --git a/src/mc/world/level/newbiome/NetherOperationNode.h b/src/mc/world/level/newbiome/NetherOperationNode.h index 020ae6cb43..c0763d0a7d 100644 --- a/src/mc/world/level/newbiome/NetherOperationNode.h +++ b/src/mc/world/level/newbiome/NetherOperationNode.h @@ -13,12 +13,6 @@ class Pos2d; // clang-format on class NetherOperationNode : public ::RootOperationNode<::OperationNodeValues::Terrain, ::Pos2d> { -public: - // prevent constructor by default - NetherOperationNode& operator=(NetherOperationNode const&); - NetherOperationNode(NetherOperationNode const&); - NetherOperationNode(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/level/newbiome/OperationGraphResult.h b/src/mc/world/level/newbiome/OperationGraphResult.h index 1e3c035fda..3f5534d31e 100644 --- a/src/mc/world/level/newbiome/OperationGraphResult.h +++ b/src/mc/world/level/newbiome/OperationGraphResult.h @@ -3,10 +3,4 @@ #include "mc/_HeaderOutputPredefine.h" template -class OperationGraphResult { -public: - // prevent constructor by default - OperationGraphResult& operator=(OperationGraphResult const&); - OperationGraphResult(OperationGraphResult const&); - OperationGraphResult(); -}; +class OperationGraphResult {}; diff --git a/src/mc/world/level/newbiome/OperationNode.h b/src/mc/world/level/newbiome/OperationNode.h index ee8aa9397f..6ac601336b 100644 --- a/src/mc/world/level/newbiome/OperationNode.h +++ b/src/mc/world/level/newbiome/OperationNode.h @@ -3,10 +3,4 @@ #include "mc/_HeaderOutputPredefine.h" template -class OperationNode { -public: - // prevent constructor by default - OperationNode& operator=(OperationNode const&); - OperationNode(OperationNode const&); - OperationNode(); -}; +class OperationNode {}; diff --git a/src/mc/world/level/newbiome/RootOperationNode.h b/src/mc/world/level/newbiome/RootOperationNode.h index f95b5f04c9..41b3c93ff4 100644 --- a/src/mc/world/level/newbiome/RootOperationNode.h +++ b/src/mc/world/level/newbiome/RootOperationNode.h @@ -3,10 +3,4 @@ #include "mc/_HeaderOutputPredefine.h" template -class RootOperationNode { -public: - // prevent constructor by default - RootOperationNode& operator=(RootOperationNode const&); - RootOperationNode(RootOperationNode const&); - RootOperationNode(); -}; +class RootOperationNode {}; diff --git a/src/mc/world/level/newbiome/operation_node_details/NeighborhoodReader.h b/src/mc/world/level/newbiome/operation_node_details/NeighborhoodReader.h index 29ba724d40..e587869cab 100644 --- a/src/mc/world/level/newbiome/operation_node_details/NeighborhoodReader.h +++ b/src/mc/world/level/newbiome/operation_node_details/NeighborhoodReader.h @@ -5,12 +5,6 @@ namespace OperationNodeDetails { template -struct NeighborhoodReader { -public: - // prevent constructor by default - NeighborhoodReader& operator=(NeighborhoodReader const&); - NeighborhoodReader(NeighborhoodReader const&); - NeighborhoodReader(); -}; +struct NeighborhoodReader {}; } // namespace OperationNodeDetails diff --git a/src/mc/world/level/newbiome/operation_node_details/TransferData.h b/src/mc/world/level/newbiome/operation_node_details/TransferData.h index c80b2c58f0..c2bb0ca44c 100644 --- a/src/mc/world/level/newbiome/operation_node_details/TransferData.h +++ b/src/mc/world/level/newbiome/operation_node_details/TransferData.h @@ -5,12 +5,6 @@ namespace OperationNodeDetails { template -class TransferData { -public: - // prevent constructor by default - TransferData& operator=(TransferData const&); - TransferData(TransferData const&); - TransferData(); -}; +class TransferData {}; } // namespace OperationNodeDetails diff --git a/src/mc/world/level/newbiome/operation_node_details/WorkingData.h b/src/mc/world/level/newbiome/operation_node_details/WorkingData.h index 3afee11b11..5d85772d3b 100644 --- a/src/mc/world/level/newbiome/operation_node_details/WorkingData.h +++ b/src/mc/world/level/newbiome/operation_node_details/WorkingData.h @@ -5,12 +5,6 @@ namespace OperationNodeDetails { template -class WorkingData { -public: - // prevent constructor by default - WorkingData& operator=(WorkingData const&); - WorkingData(WorkingData const&); - WorkingData(); -}; +class WorkingData {}; } // namespace OperationNodeDetails diff --git a/src/mc/world/level/newbiome/operation_node_filters/AddEdgeCoolWarm.h b/src/mc/world/level/newbiome/operation_node_filters/AddEdgeCoolWarm.h index dc709f732f..498232b601 100644 --- a/src/mc/world/level/newbiome/operation_node_filters/AddEdgeCoolWarm.h +++ b/src/mc/world/level/newbiome/operation_node_filters/AddEdgeCoolWarm.h @@ -15,12 +15,6 @@ namespace OperationNodeFilters { struct AddEdgeCoolWarm : public ::OperationNodeFilters::FilterBase<3, 3, ::OperationNodeValues::PreBiome, ::OperationNodeValues::PreBiome> { -public: - // prevent constructor by default - AddEdgeCoolWarm& operator=(AddEdgeCoolWarm const&); - AddEdgeCoolWarm(AddEdgeCoolWarm const&); - AddEdgeCoolWarm(); - public: // member functions // NOLINTBEGIN diff --git a/src/mc/world/level/newbiome/operation_node_filters/AddEdgeHeatIce.h b/src/mc/world/level/newbiome/operation_node_filters/AddEdgeHeatIce.h index 9fa24296d0..a44bfd1a0d 100644 --- a/src/mc/world/level/newbiome/operation_node_filters/AddEdgeHeatIce.h +++ b/src/mc/world/level/newbiome/operation_node_filters/AddEdgeHeatIce.h @@ -15,12 +15,6 @@ namespace OperationNodeFilters { struct AddEdgeHeatIce : public ::OperationNodeFilters::FilterBase<3, 3, ::OperationNodeValues::PreBiome, ::OperationNodeValues::PreBiome> { -public: - // prevent constructor by default - AddEdgeHeatIce& operator=(AddEdgeHeatIce const&); - AddEdgeHeatIce(AddEdgeHeatIce const&); - AddEdgeHeatIce(); - public: // member functions // NOLINTBEGIN diff --git a/src/mc/world/level/newbiome/operation_node_filters/AddEdgeSpecial.h b/src/mc/world/level/newbiome/operation_node_filters/AddEdgeSpecial.h index a351684e2b..ba4a4cd61d 100644 --- a/src/mc/world/level/newbiome/operation_node_filters/AddEdgeSpecial.h +++ b/src/mc/world/level/newbiome/operation_node_filters/AddEdgeSpecial.h @@ -13,12 +13,6 @@ namespace OperationNodeValues { struct PreBiome; } namespace OperationNodeFilters { struct AddEdgeSpecial -: public ::OperationNodeFilters::FilterBase<1, 1, ::OperationNodeValues::PreBiome, ::OperationNodeValues::PreBiome> { -public: - // prevent constructor by default - AddEdgeSpecial& operator=(AddEdgeSpecial const&); - AddEdgeSpecial(AddEdgeSpecial const&); - AddEdgeSpecial(); -}; +: public ::OperationNodeFilters::FilterBase<1, 1, ::OperationNodeValues::PreBiome, ::OperationNodeValues::PreBiome> {}; } // namespace OperationNodeFilters diff --git a/src/mc/world/level/newbiome/operation_node_filters/AddIsland.h b/src/mc/world/level/newbiome/operation_node_filters/AddIsland.h index 9c7d3f6d1e..69e4f87428 100644 --- a/src/mc/world/level/newbiome/operation_node_filters/AddIsland.h +++ b/src/mc/world/level/newbiome/operation_node_filters/AddIsland.h @@ -9,12 +9,6 @@ namespace OperationNodeFilters { struct AddIsland -: public ::OperationNodeFilters::FilterBase<3, 3, ::OperationNodeValues::Terrain, ::OperationNodeValues::Terrain> { -public: - // prevent constructor by default - AddIsland& operator=(AddIsland const&); - AddIsland(AddIsland const&); - AddIsland(); -}; +: public ::OperationNodeFilters::FilterBase<3, 3, ::OperationNodeValues::Terrain, ::OperationNodeValues::Terrain> {}; } // namespace OperationNodeFilters diff --git a/src/mc/world/level/newbiome/operation_node_filters/AddIslandWithTemperature.h b/src/mc/world/level/newbiome/operation_node_filters/AddIslandWithTemperature.h index 4233cde5a2..f469cd2082 100644 --- a/src/mc/world/level/newbiome/operation_node_filters/AddIslandWithTemperature.h +++ b/src/mc/world/level/newbiome/operation_node_filters/AddIslandWithTemperature.h @@ -13,12 +13,6 @@ namespace OperationNodeValues { struct PreBiome; } namespace OperationNodeFilters { struct AddIslandWithTemperature -: public ::OperationNodeFilters::FilterBase<3, 3, ::OperationNodeValues::PreBiome, ::OperationNodeValues::PreBiome> { -public: - // prevent constructor by default - AddIslandWithTemperature& operator=(AddIslandWithTemperature const&); - AddIslandWithTemperature(AddIslandWithTemperature const&); - AddIslandWithTemperature(); -}; +: public ::OperationNodeFilters::FilterBase<3, 3, ::OperationNodeValues::PreBiome, ::OperationNodeValues::PreBiome> {}; } // namespace OperationNodeFilters diff --git a/src/mc/world/level/newbiome/operation_node_filters/AddOceanEdge.h b/src/mc/world/level/newbiome/operation_node_filters/AddOceanEdge.h index cca718d631..3fbc86f4f4 100644 --- a/src/mc/world/level/newbiome/operation_node_filters/AddOceanEdge.h +++ b/src/mc/world/level/newbiome/operation_node_filters/AddOceanEdge.h @@ -11,12 +11,6 @@ namespace OperationNodeFilters { struct AddOceanEdge : public ::OperationNodeFilters::FilterBase<3, 3, ::BiomeTemperatureCategory, ::BiomeTemperatureCategory> { -public: - // prevent constructor by default - AddOceanEdge& operator=(AddOceanEdge const&); - AddOceanEdge(AddOceanEdge const&); - AddOceanEdge(); - public: // member functions // NOLINTBEGIN diff --git a/src/mc/world/level/newbiome/operation_node_filters/AddSnow.h b/src/mc/world/level/newbiome/operation_node_filters/AddSnow.h index 12d6f5ebe3..6449846323 100644 --- a/src/mc/world/level/newbiome/operation_node_filters/AddSnow.h +++ b/src/mc/world/level/newbiome/operation_node_filters/AddSnow.h @@ -14,12 +14,6 @@ namespace OperationNodeValues { struct PreBiome; } namespace OperationNodeFilters { struct AddSnow -: public ::OperationNodeFilters::FilterBase<1, 1, ::OperationNodeValues::PreBiome, ::OperationNodeValues::Terrain> { -public: - // prevent constructor by default - AddSnow& operator=(AddSnow const&); - AddSnow(AddSnow const&); - AddSnow(); -}; +: public ::OperationNodeFilters::FilterBase<1, 1, ::OperationNodeValues::PreBiome, ::OperationNodeValues::Terrain> {}; } // namespace OperationNodeFilters diff --git a/src/mc/world/level/newbiome/operation_node_filters/FilterBase.h b/src/mc/world/level/newbiome/operation_node_filters/FilterBase.h index 4317301fec..e6b4a1bb37 100644 --- a/src/mc/world/level/newbiome/operation_node_filters/FilterBase.h +++ b/src/mc/world/level/newbiome/operation_node_filters/FilterBase.h @@ -5,12 +5,6 @@ namespace OperationNodeFilters { template -struct FilterBase { -public: - // prevent constructor by default - FilterBase& operator=(FilterBase const&); - FilterBase(FilterBase const&); - FilterBase(); -}; +struct FilterBase {}; } // namespace OperationNodeFilters diff --git a/src/mc/world/level/newbiome/operation_node_filters/RemoveTooMuchOcean.h b/src/mc/world/level/newbiome/operation_node_filters/RemoveTooMuchOcean.h index 1386c73750..5d74247d7b 100644 --- a/src/mc/world/level/newbiome/operation_node_filters/RemoveTooMuchOcean.h +++ b/src/mc/world/level/newbiome/operation_node_filters/RemoveTooMuchOcean.h @@ -9,12 +9,6 @@ namespace OperationNodeFilters { struct RemoveTooMuchOcean -: public ::OperationNodeFilters::FilterBase<3, 3, ::OperationNodeValues::Terrain, ::OperationNodeValues::Terrain> { -public: - // prevent constructor by default - RemoveTooMuchOcean& operator=(RemoveTooMuchOcean const&); - RemoveTooMuchOcean(RemoveTooMuchOcean const&); - RemoveTooMuchOcean(); -}; +: public ::OperationNodeFilters::FilterBase<3, 3, ::OperationNodeValues::Terrain, ::OperationNodeValues::Terrain> {}; } // namespace OperationNodeFilters diff --git a/src/mc/world/level/newbiome/operation_node_filters/River.h b/src/mc/world/level/newbiome/operation_node_filters/River.h index 5df3054ddd..3b2f958af3 100644 --- a/src/mc/world/level/newbiome/operation_node_filters/River.h +++ b/src/mc/world/level/newbiome/operation_node_filters/River.h @@ -9,12 +9,6 @@ namespace OperationNodeFilters { struct River : public ::OperationNodeFilters::FilterBase<3, 3, bool, int> { -public: - // prevent constructor by default - River& operator=(River const&); - River(River const&); - River(); - public: // member functions // NOLINTBEGIN diff --git a/src/mc/world/level/newbiome/operation_node_zooms/Zoom2x.h b/src/mc/world/level/newbiome/operation_node_zooms/Zoom2x.h index 4be5d5c5f8..702bce1c65 100644 --- a/src/mc/world/level/newbiome/operation_node_zooms/Zoom2x.h +++ b/src/mc/world/level/newbiome/operation_node_zooms/Zoom2x.h @@ -7,12 +7,6 @@ namespace OperationNodeZooms { -class Zoom2x : public ::OperationNodeZooms::ZoomBase<1, 0> { -public: - // prevent constructor by default - Zoom2x& operator=(Zoom2x const&); - Zoom2x(Zoom2x const&); - Zoom2x(); -}; +class Zoom2x : public ::OperationNodeZooms::ZoomBase<1, 0> {}; } // namespace OperationNodeZooms diff --git a/src/mc/world/level/newbiome/operation_node_zooms/Zoom2xFuzzy.h b/src/mc/world/level/newbiome/operation_node_zooms/Zoom2xFuzzy.h index fbc9161425..6c9643872e 100644 --- a/src/mc/world/level/newbiome/operation_node_zooms/Zoom2xFuzzy.h +++ b/src/mc/world/level/newbiome/operation_node_zooms/Zoom2xFuzzy.h @@ -7,12 +7,6 @@ namespace OperationNodeZooms { -class Zoom2xFuzzy : public ::OperationNodeZooms::ZoomBase<1, 0> { -public: - // prevent constructor by default - Zoom2xFuzzy& operator=(Zoom2xFuzzy const&); - Zoom2xFuzzy(Zoom2xFuzzy const&); - Zoom2xFuzzy(); -}; +class Zoom2xFuzzy : public ::OperationNodeZooms::ZoomBase<1, 0> {}; } // namespace OperationNodeZooms diff --git a/src/mc/world/level/newbiome/operation_node_zooms/Zoom4xVoronoi.h b/src/mc/world/level/newbiome/operation_node_zooms/Zoom4xVoronoi.h index 875f49f91e..a629c0f635 100644 --- a/src/mc/world/level/newbiome/operation_node_zooms/Zoom4xVoronoi.h +++ b/src/mc/world/level/newbiome/operation_node_zooms/Zoom4xVoronoi.h @@ -7,12 +7,6 @@ namespace OperationNodeZooms { -class Zoom4xVoronoi : public ::OperationNodeZooms::ZoomBase<2, 1> { -public: - // prevent constructor by default - Zoom4xVoronoi& operator=(Zoom4xVoronoi const&); - Zoom4xVoronoi(Zoom4xVoronoi const&); - Zoom4xVoronoi(); -}; +class Zoom4xVoronoi : public ::OperationNodeZooms::ZoomBase<2, 1> {}; } // namespace OperationNodeZooms diff --git a/src/mc/world/level/newbiome/operation_node_zooms/ZoomBase.h b/src/mc/world/level/newbiome/operation_node_zooms/ZoomBase.h index 625e91c71e..fc84005051 100644 --- a/src/mc/world/level/newbiome/operation_node_zooms/ZoomBase.h +++ b/src/mc/world/level/newbiome/operation_node_zooms/ZoomBase.h @@ -5,12 +5,6 @@ namespace OperationNodeZooms { template -class ZoomBase { -public: - // prevent constructor by default - ZoomBase& operator=(ZoomBase const&); - ZoomBase(ZoomBase const&); - ZoomBase(); -}; +class ZoomBase {}; } // namespace OperationNodeZooms diff --git a/src/mc/world/level/pathfinder/IPathBlockSource.h b/src/mc/world/level/pathfinder/IPathBlockSource.h index a50c34142a..4dab07eb00 100644 --- a/src/mc/world/level/pathfinder/IPathBlockSource.h +++ b/src/mc/world/level/pathfinder/IPathBlockSource.h @@ -8,12 +8,6 @@ class BlockPos; // clang-format on class IPathBlockSource { -public: - // prevent constructor by default - IPathBlockSource& operator=(IPathBlockSource const&); - IPathBlockSource(IPathBlockSource const&); - IPathBlockSource(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/level/pathfinder/PotentialPositionIndex.h b/src/mc/world/level/pathfinder/PotentialPositionIndex.h index fd32f29630..36752f0312 100644 --- a/src/mc/world/level/pathfinder/PotentialPositionIndex.h +++ b/src/mc/world/level/pathfinder/PotentialPositionIndex.h @@ -34,10 +34,4 @@ struct PotentialPositionIndex { HorizontalDiagonalEnd = 10, FacingEnd = 6, }; - -public: - // prevent constructor by default - PotentialPositionIndex& operator=(PotentialPositionIndex const&); - PotentialPositionIndex(PotentialPositionIndex const&); - PotentialPositionIndex(); }; diff --git a/src/mc/world/level/position_trackingdb/OperationBase.h b/src/mc/world/level/position_trackingdb/OperationBase.h index 1927e8b9ef..25cf32ed33 100644 --- a/src/mc/world/level/position_trackingdb/OperationBase.h +++ b/src/mc/world/level/position_trackingdb/OperationBase.h @@ -11,12 +11,6 @@ namespace PositionTrackingDB { class TrackingRecord; } namespace PositionTrackingDB { class OperationBase { -public: - // prevent constructor by default - OperationBase& operator=(OperationBase const&); - OperationBase(OperationBase const&); - OperationBase(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/level/spawn/InLava.h b/src/mc/world/level/spawn/InLava.h index 1a5c6284bc..a2fa15a389 100644 --- a/src/mc/world/level/spawn/InLava.h +++ b/src/mc/world/level/spawn/InLava.h @@ -15,12 +15,6 @@ namespace br::spawn { struct EntityType; } namespace br::spawn { class InLava : public ::br::spawn::PlacementType { -public: - // prevent constructor by default - InLava& operator=(InLava const&); - InLava(InLava const&); - InLava(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/level/spawn/InWater.h b/src/mc/world/level/spawn/InWater.h index ab2c8f56c0..50be621d3e 100644 --- a/src/mc/world/level/spawn/InWater.h +++ b/src/mc/world/level/spawn/InWater.h @@ -15,12 +15,6 @@ namespace br::spawn { struct EntityType; } namespace br::spawn { class InWater : public ::br::spawn::PlacementType { -public: - // prevent constructor by default - InWater& operator=(InWater const&); - InWater(InWater const&); - InWater(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/level/spawn/NoRestrictions.h b/src/mc/world/level/spawn/NoRestrictions.h index bf26843951..467308ab60 100644 --- a/src/mc/world/level/spawn/NoRestrictions.h +++ b/src/mc/world/level/spawn/NoRestrictions.h @@ -15,12 +15,6 @@ namespace br::spawn { struct EntityType; } namespace br::spawn { class NoRestrictions : public ::br::spawn::PlacementType { -public: - // prevent constructor by default - NoRestrictions& operator=(NoRestrictions const&); - NoRestrictions(NoRestrictions const&); - NoRestrictions(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/level/spawn/NullToken.h b/src/mc/world/level/spawn/NullToken.h index 4c30ecf85c..8e1e574d74 100644 --- a/src/mc/world/level/spawn/NullToken.h +++ b/src/mc/world/level/spawn/NullToken.h @@ -4,12 +4,6 @@ namespace br::spawn { -struct NullToken { -public: - // prevent constructor by default - NullToken& operator=(NullToken const&); - NullToken(NullToken const&); - NullToken(); -}; +struct NullToken {}; } // namespace br::spawn diff --git a/src/mc/world/level/spawn/OnGround.h b/src/mc/world/level/spawn/OnGround.h index 84cbb7c7ae..f277547ef3 100644 --- a/src/mc/world/level/spawn/OnGround.h +++ b/src/mc/world/level/spawn/OnGround.h @@ -15,12 +15,6 @@ namespace br::spawn { struct EntityType; } namespace br::spawn { class OnGround : public ::br::spawn::PlacementType { -public: - // prevent constructor by default - OnGround& operator=(OnGround const&); - OnGround(OnGround const&); - OnGround(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/level/spawn/PlacementType.h b/src/mc/world/level/spawn/PlacementType.h index 9b8a0a26d1..97794574ae 100644 --- a/src/mc/world/level/spawn/PlacementType.h +++ b/src/mc/world/level/spawn/PlacementType.h @@ -12,12 +12,6 @@ namespace br::spawn { struct EntityType; } namespace br::spawn { class PlacementType { -public: - // prevent constructor by default - PlacementType& operator=(PlacementType const&); - PlacementType(PlacementType const&); - PlacementType(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/level/storage/Experiments.h b/src/mc/world/level/storage/Experiments.h index 10032958a2..e64ce68bf2 100644 --- a/src/mc/world/level/storage/Experiments.h +++ b/src/mc/world/level/storage/Experiments.h @@ -12,11 +12,6 @@ class CompoundTag; // clang-format on class Experiments : public ::ExperimentStorage { -public: - // prevent constructor by default - Experiments& operator=(Experiments const&); - Experiments(Experiments const&); - public: // member functions // NOLINTBEGIN diff --git a/src/mc/world/level/storage/FlushableEnv.h b/src/mc/world/level/storage/FlushableEnv.h index 7eec9fe2bb..2d46fbe933 100644 --- a/src/mc/world/level/storage/FlushableEnv.h +++ b/src/mc/world/level/storage/FlushableEnv.h @@ -3,12 +3,6 @@ #include "mc/_HeaderOutputPredefine.h" class FlushableEnv : public ::leveldb::EnvWrapper { -public: - // prevent constructor by default - FlushableEnv& operator=(FlushableEnv const&); - FlushableEnv(FlushableEnv const&); - FlushableEnv(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/level/storage/ILevelListCache.h b/src/mc/world/level/storage/ILevelListCache.h index f06be16be3..1fc1821650 100644 --- a/src/mc/world/level/storage/ILevelListCache.h +++ b/src/mc/world/level/storage/ILevelListCache.h @@ -25,12 +25,6 @@ namespace Core { class Path; } // clang-format on class ILevelListCache : public ::Bedrock::EnableNonOwnerReferences { -public: - // prevent constructor by default - ILevelListCache& operator=(ILevelListCache const&); - ILevelListCache(ILevelListCache const&); - ILevelListCache(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/level/storage/ILevelStorageManagerConnector.h b/src/mc/world/level/storage/ILevelStorageManagerConnector.h index 6d1b002892..a08782535a 100644 --- a/src/mc/world/level/storage/ILevelStorageManagerConnector.h +++ b/src/mc/world/level/storage/ILevelStorageManagerConnector.h @@ -11,12 +11,6 @@ class LevelStorage; // clang-format on class ILevelStorageManagerConnector { -public: - // prevent constructor by default - ILevelStorageManagerConnector& operator=(ILevelStorageManagerConnector const&); - ILevelStorageManagerConnector(ILevelStorageManagerConnector const&); - ILevelStorageManagerConnector(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/level/storage/LevelStorageSource.h b/src/mc/world/level/storage/LevelStorageSource.h index 837112c223..db4d9b0865 100644 --- a/src/mc/world/level/storage/LevelStorageSource.h +++ b/src/mc/world/level/storage/LevelStorageSource.h @@ -23,12 +23,6 @@ namespace Core { class Result; } // clang-format on class LevelStorageSource : public ::Bedrock::EnableNonOwnerReferences { -public: - // prevent constructor by default - LevelStorageSource& operator=(LevelStorageSource const&); - LevelStorageSource(LevelStorageSource const&); - LevelStorageSource(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/level/storage/MockLevelStorage.h b/src/mc/world/level/storage/MockLevelStorage.h index bea1125294..a995eebd23 100644 --- a/src/mc/world/level/storage/MockLevelStorage.h +++ b/src/mc/world/level/storage/MockLevelStorage.h @@ -22,12 +22,6 @@ namespace Core { struct LevelStorageResult; } // clang-format on class MockLevelStorage : public ::LevelStorage { -public: - // prevent constructor by default - MockLevelStorage& operator=(MockLevelStorage const&); - MockLevelStorage(MockLevelStorage const&); - MockLevelStorage(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/level/storage/NullLogger.h b/src/mc/world/level/storage/NullLogger.h index de549a44d5..7f039ec4fb 100644 --- a/src/mc/world/level/storage/NullLogger.h +++ b/src/mc/world/level/storage/NullLogger.h @@ -3,12 +3,6 @@ #include "mc/_HeaderOutputPredefine.h" class NullLogger : public ::leveldb::Logger { -public: - // prevent constructor by default - NullLogger& operator=(NullLogger const&); - NullLogger(NullLogger const&); - NullLogger(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/level/storage/SuspendPlayerSave.h b/src/mc/world/level/storage/SuspendPlayerSave.h index c629d15c57..383f0b7845 100644 --- a/src/mc/world/level/storage/SuspendPlayerSave.h +++ b/src/mc/world/level/storage/SuspendPlayerSave.h @@ -2,10 +2,4 @@ #include "mc/_HeaderOutputPredefine.h" -struct SuspendPlayerSave { -public: - // prevent constructor by default - SuspendPlayerSave& operator=(SuspendPlayerSave const&); - SuspendPlayerSave(SuspendPlayerSave const&); - SuspendPlayerSave(); -}; +struct SuspendPlayerSave {}; diff --git a/src/mc/world/level/storage/loot/functions/ExplosionDecayFunction.h b/src/mc/world/level/storage/loot/functions/ExplosionDecayFunction.h index e033214b81..13633eaa72 100644 --- a/src/mc/world/level/storage/loot/functions/ExplosionDecayFunction.h +++ b/src/mc/world/level/storage/loot/functions/ExplosionDecayFunction.h @@ -14,12 +14,6 @@ class Random; // clang-format on class ExplosionDecayFunction : public ::LootItemFunction { -public: - // prevent constructor by default - ExplosionDecayFunction& operator=(ExplosionDecayFunction const&); - ExplosionDecayFunction(ExplosionDecayFunction const&); - ExplosionDecayFunction(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/level/storage/loot/functions/LootItemFunctions.h b/src/mc/world/level/storage/loot/functions/LootItemFunctions.h index 505a23d039..ca8f232583 100644 --- a/src/mc/world/level/storage/loot/functions/LootItemFunctions.h +++ b/src/mc/world/level/storage/loot/functions/LootItemFunctions.h @@ -9,12 +9,6 @@ namespace Json { class Value; } // clang-format on class LootItemFunctions { -public: - // prevent constructor by default - LootItemFunctions& operator=(LootItemFunctions const&); - LootItemFunctions(LootItemFunctions const&); - LootItemFunctions(); - public: // static functions // NOLINTBEGIN diff --git a/src/mc/world/level/storage/loot/functions/RandomDyeFunction.h b/src/mc/world/level/storage/loot/functions/RandomDyeFunction.h index d0f3061169..0547ad1efb 100644 --- a/src/mc/world/level/storage/loot/functions/RandomDyeFunction.h +++ b/src/mc/world/level/storage/loot/functions/RandomDyeFunction.h @@ -16,12 +16,6 @@ namespace mce { class Color; } // clang-format on class RandomDyeFunction : public ::LootItemFunction { -public: - // prevent constructor by default - RandomDyeFunction& operator=(RandomDyeFunction const&); - RandomDyeFunction(RandomDyeFunction const&); - RandomDyeFunction(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/level/storage/loot/functions/SetDataFromColorIndexFunction.h b/src/mc/world/level/storage/loot/functions/SetDataFromColorIndexFunction.h index 75082732d5..a212fd6c93 100644 --- a/src/mc/world/level/storage/loot/functions/SetDataFromColorIndexFunction.h +++ b/src/mc/world/level/storage/loot/functions/SetDataFromColorIndexFunction.h @@ -16,12 +16,6 @@ class Random; // clang-format on class SetDataFromColorIndexFunction : public ::LootItemFunction { -public: - // prevent constructor by default - SetDataFromColorIndexFunction& operator=(SetDataFromColorIndexFunction const&); - SetDataFromColorIndexFunction(SetDataFromColorIndexFunction const&); - SetDataFromColorIndexFunction(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/level/storage/loot/functions/SmeltItemFunction.h b/src/mc/world/level/storage/loot/functions/SmeltItemFunction.h index c81f61d5a7..e106378966 100644 --- a/src/mc/world/level/storage/loot/functions/SmeltItemFunction.h +++ b/src/mc/world/level/storage/loot/functions/SmeltItemFunction.h @@ -14,12 +14,6 @@ class Random; // clang-format on class SmeltItemFunction : public ::LootItemFunction { -public: - // prevent constructor by default - SmeltItemFunction& operator=(SmeltItemFunction const&); - SmeltItemFunction(SmeltItemFunction const&); - SmeltItemFunction(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/level/storage/loot/predicates/LootItemCondition.h b/src/mc/world/level/storage/loot/predicates/LootItemCondition.h index cd66f3c4e3..eebe6b89c8 100644 --- a/src/mc/world/level/storage/loot/predicates/LootItemCondition.h +++ b/src/mc/world/level/storage/loot/predicates/LootItemCondition.h @@ -10,12 +10,6 @@ namespace Json { class Value; } // clang-format on class LootItemCondition { -public: - // prevent constructor by default - LootItemCondition& operator=(LootItemCondition const&); - LootItemCondition(LootItemCondition const&); - LootItemCondition(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/level/storage/loot/predicates/LootItemConditions.h b/src/mc/world/level/storage/loot/predicates/LootItemConditions.h index 4eeb6817fb..80aab90441 100644 --- a/src/mc/world/level/storage/loot/predicates/LootItemConditions.h +++ b/src/mc/world/level/storage/loot/predicates/LootItemConditions.h @@ -9,12 +9,6 @@ namespace Json { class Value; } // clang-format on class LootItemConditions { -public: - // prevent constructor by default - LootItemConditions& operator=(LootItemConditions const&); - LootItemConditions(LootItemConditions const&); - LootItemConditions(); - public: // static functions // NOLINTBEGIN diff --git a/src/mc/world/level/storage/loot/predicates/LootItemKilledByPlayerCondition.h b/src/mc/world/level/storage/loot/predicates/LootItemKilledByPlayerCondition.h index 4e1861aa38..ccccf46337 100644 --- a/src/mc/world/level/storage/loot/predicates/LootItemKilledByPlayerCondition.h +++ b/src/mc/world/level/storage/loot/predicates/LootItemKilledByPlayerCondition.h @@ -12,12 +12,6 @@ class Random; // clang-format on class LootItemKilledByPlayerCondition : public ::LootItemCondition { -public: - // prevent constructor by default - LootItemKilledByPlayerCondition& operator=(LootItemKilledByPlayerCondition const&); - LootItemKilledByPlayerCondition(LootItemKilledByPlayerCondition const&); - LootItemKilledByPlayerCondition(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/level/storage/loot/predicates/LootItemKilledByPlayerOrPetsCondition.h b/src/mc/world/level/storage/loot/predicates/LootItemKilledByPlayerOrPetsCondition.h index b21c00fac3..975acaab7c 100644 --- a/src/mc/world/level/storage/loot/predicates/LootItemKilledByPlayerOrPetsCondition.h +++ b/src/mc/world/level/storage/loot/predicates/LootItemKilledByPlayerOrPetsCondition.h @@ -12,12 +12,6 @@ class Random; // clang-format on class LootItemKilledByPlayerOrPetsCondition : public ::LootItemCondition { -public: - // prevent constructor by default - LootItemKilledByPlayerOrPetsCondition& operator=(LootItemKilledByPlayerOrPetsCondition const&); - LootItemKilledByPlayerOrPetsCondition(LootItemKilledByPlayerOrPetsCondition const&); - LootItemKilledByPlayerOrPetsCondition(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/level/ticking/ITickingArea.h b/src/mc/world/level/ticking/ITickingArea.h index 3be1e8e89b..7159de8ec5 100644 --- a/src/mc/world/level/ticking/ITickingArea.h +++ b/src/mc/world/level/ticking/ITickingArea.h @@ -23,12 +23,6 @@ namespace mce { class UUID; } // clang-format on class ITickingArea { -public: - // prevent constructor by default - ITickingArea& operator=(ITickingArea const&); - ITickingArea(ITickingArea const&); - ITickingArea(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/level/ticking/ITickingAreaView.h b/src/mc/world/level/ticking/ITickingAreaView.h index 129e7044a9..2fa9baca18 100644 --- a/src/mc/world/level/ticking/ITickingAreaView.h +++ b/src/mc/world/level/ticking/ITickingAreaView.h @@ -18,12 +18,6 @@ struct Tick; // clang-format on class ITickingAreaView { -public: - // prevent constructor by default - ITickingAreaView& operator=(ITickingAreaView const&); - ITickingAreaView(ITickingAreaView const&); - ITickingAreaView(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/level/ticking/TickingAreaList.h b/src/mc/world/level/ticking/TickingAreaList.h index a201530614..aba34e5866 100644 --- a/src/mc/world/level/ticking/TickingAreaList.h +++ b/src/mc/world/level/ticking/TickingAreaList.h @@ -13,11 +13,6 @@ class Vec3; // clang-format on class TickingAreaList : public ::TickingAreaListBase { -public: - // prevent constructor by default - TickingAreaList& operator=(TickingAreaList const&); - TickingAreaList(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/module/GameModuleServer.h b/src/mc/world/module/GameModuleServer.h index 928bce3e5a..c2ba47547a 100644 --- a/src/mc/world/module/GameModuleServer.h +++ b/src/mc/world/module/GameModuleServer.h @@ -23,11 +23,6 @@ class ServerScriptManager; // clang-format on class GameModuleServer { -public: - // prevent constructor by default - GameModuleServer& operator=(GameModuleServer const&); - GameModuleServer(GameModuleServer const&); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/module/IGameModuleDocumentation.h b/src/mc/world/module/IGameModuleDocumentation.h index be7bdec670..4994015a5f 100644 --- a/src/mc/world/module/IGameModuleDocumentation.h +++ b/src/mc/world/module/IGameModuleDocumentation.h @@ -2,10 +2,4 @@ #include "mc/_HeaderOutputPredefine.h" -class IGameModuleDocumentation { -public: - // prevent constructor by default - IGameModuleDocumentation& operator=(IGameModuleDocumentation const&); - IGameModuleDocumentation(IGameModuleDocumentation const&); - IGameModuleDocumentation(); -}; +class IGameModuleDocumentation {}; diff --git a/src/mc/world/module/IGameModuleShared.h b/src/mc/world/module/IGameModuleShared.h index a99a811c4b..2b92ed2a72 100644 --- a/src/mc/world/module/IGameModuleShared.h +++ b/src/mc/world/module/IGameModuleShared.h @@ -10,12 +10,6 @@ class ServerInstanceEventCoordinator; // clang-format on class IGameModuleShared { -public: - // prevent constructor by default - IGameModuleShared& operator=(IGameModuleShared const&); - IGameModuleShared(IGameModuleShared const&); - IGameModuleShared(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/phys/rope/AABBPred.h b/src/mc/world/phys/rope/AABBPred.h index 373bab82b0..74aa208f82 100644 --- a/src/mc/world/phys/rope/AABBPred.h +++ b/src/mc/world/phys/rope/AABBPred.h @@ -2,10 +2,4 @@ #include "mc/_HeaderOutputPredefine.h" -struct AABBPred { -public: - // prevent constructor by default - AABBPred& operator=(AABBPred const&); - AABBPred(AABBPred const&); - AABBPred(); -}; +struct AABBPred {}; diff --git a/src/mc/world/response/ActorCommandResponse.h b/src/mc/world/response/ActorCommandResponse.h index 3da52ed7fc..4c4751b312 100644 --- a/src/mc/world/response/ActorCommandResponse.h +++ b/src/mc/world/response/ActorCommandResponse.h @@ -16,12 +16,6 @@ namespace JsonUtil { class EmptyClass; } // clang-format on class ActorCommandResponse : public ::CommandResponseBase, public ::ActorEventResponse { -public: - // prevent constructor by default - ActorCommandResponse& operator=(ActorCommandResponse const&); - ActorCommandResponse(ActorCommandResponse const&); - ActorCommandResponse(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/response/ActorEventResponse.h b/src/mc/world/response/ActorEventResponse.h index 0484193266..02fe019913 100644 --- a/src/mc/world/response/ActorEventResponse.h +++ b/src/mc/world/response/ActorEventResponse.h @@ -14,12 +14,6 @@ namespace JsonUtil { class EmptyClass; } // clang-format on class ActorEventResponse { -public: - // prevent constructor by default - ActorEventResponse& operator=(ActorEventResponse const&); - ActorEventResponse(ActorEventResponse const&); - ActorEventResponse(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/response/ActorQueueCommandResponse.h b/src/mc/world/response/ActorQueueCommandResponse.h index cb18af0667..6e849fb616 100644 --- a/src/mc/world/response/ActorQueueCommandResponse.h +++ b/src/mc/world/response/ActorQueueCommandResponse.h @@ -17,12 +17,6 @@ namespace JsonUtil { class EmptyClass; } // clang-format on class ActorQueueCommandResponse : public ::CommandResponseBase, public ::ActorEventResponse { -public: - // prevent constructor by default - ActorQueueCommandResponse& operator=(ActorQueueCommandResponse const&); - ActorQueueCommandResponse(ActorQueueCommandResponse const&); - ActorQueueCommandResponse(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/response/CommandResponse.h b/src/mc/world/response/CommandResponse.h index f7cb8f577d..87b7da8ad9 100644 --- a/src/mc/world/response/CommandResponse.h +++ b/src/mc/world/response/CommandResponse.h @@ -16,12 +16,6 @@ namespace JsonUtil { class EmptyClass; } // clang-format on class CommandResponse : public ::CommandResponseBase, public ::EventResponse { -public: - // prevent constructor by default - CommandResponse& operator=(CommandResponse const&); - CommandResponse(CommandResponse const&); - CommandResponse(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/response/EventResponse.h b/src/mc/world/response/EventResponse.h index 4a8901d35d..8b2f2c8222 100644 --- a/src/mc/world/response/EventResponse.h +++ b/src/mc/world/response/EventResponse.h @@ -14,12 +14,6 @@ namespace JsonUtil { class EmptyClass; } // clang-format on class EventResponse { -public: - // prevent constructor by default - EventResponse& operator=(EventResponse const&); - EventResponse(EventResponse const&); - EventResponse(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/response/ResetTargetResponse.h b/src/mc/world/response/ResetTargetResponse.h index 5e7168c736..1a7ea318f4 100644 --- a/src/mc/world/response/ResetTargetResponse.h +++ b/src/mc/world/response/ResetTargetResponse.h @@ -15,12 +15,6 @@ namespace JsonUtil { class EmptyClass; } // clang-format on class ResetTargetResponse : public ::ActorEventResponse { -public: - // prevent constructor by default - ResetTargetResponse& operator=(ResetTargetResponse const&); - ResetTargetResponse(ResetTargetResponse const&); - ResetTargetResponse(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/response/SwingEventResponse.h b/src/mc/world/response/SwingEventResponse.h index edef1e11ec..c116b42612 100644 --- a/src/mc/world/response/SwingEventResponse.h +++ b/src/mc/world/response/SwingEventResponse.h @@ -15,12 +15,6 @@ namespace JsonUtil { class EmptyClass; } // clang-format on class SwingEventResponse : public ::EventResponse { -public: - // prevent constructor by default - SwingEventResponse& operator=(SwingEventResponse const&); - SwingEventResponse(SwingEventResponse const&); - SwingEventResponse(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/scores/ServerScoreboard.h b/src/mc/world/scores/ServerScoreboard.h index 03f4389572..d03530850a 100644 --- a/src/mc/world/scores/ServerScoreboard.h +++ b/src/mc/world/scores/ServerScoreboard.h @@ -39,13 +39,7 @@ class ServerScoreboard : public ::Scoreboard { // clang-format on // ServerScoreboard inner types define - struct unit_test_ctor_t { - public: - // prevent constructor by default - unit_test_ctor_t& operator=(unit_test_ctor_t const&); - unit_test_ctor_t(unit_test_ctor_t const&); - unit_test_ctor_t(); - }; + struct unit_test_ctor_t {}; public: // member variables diff --git a/src/mc/world/vanilla_world_systems/Impl.h b/src/mc/world/vanilla_world_systems/Impl.h index 1998c95229..93ecf43876 100644 --- a/src/mc/world/vanilla_world_systems/Impl.h +++ b/src/mc/world/vanilla_world_systems/Impl.h @@ -17,12 +17,6 @@ class ServerScriptManager; namespace VanillaWorldSystems { class Impl { -public: - // prevent constructor by default - Impl& operator=(Impl const&); - Impl(Impl const&); - Impl(); - public: // member functions // NOLINTBEGIN From 4b6f16c88a0982b504306a3a06c6a835096f30fa Mon Sep 17 00:00:00 2001 From: OEOTYAN Date: Sat, 11 Jan 2025 22:56:54 +0800 Subject: [PATCH 16/20] feat: add icf flag --- docs/api/assets/doxygen-awesome-css | 1 - src/mc/_HeaderOutputPredefine.h | 1 + src/mc/certificates/Certificate.h | 6 +- src/mc/certificates/CertificateSNIType.h | 2 +- src/mc/certificates/UnverifiedCertificate.h | 2 +- .../gui/oreui/resources/AllowListPath.h | 2 +- src/mc/client/sound/NullSoundPlayer.h | 44 +- src/mc/codebuilder/Block.h | 2 +- src/mc/codebuilder/ChatMessage.h | 2 +- src/mc/codebuilder/CommandMessage.h | 2 +- src/mc/codebuilder/CommandRequest.h | 2 +- src/mc/codebuilder/EncryptionRequest.h | 2 +- src/mc/codebuilder/EncryptionResult.h | 2 +- src/mc/codebuilder/ErrorMessage.h | 2 +- src/mc/codebuilder/EventMessage.h | 2 +- src/mc/codebuilder/GameContext.h | 4 +- src/mc/codebuilder/IClient.h | 2 +- src/mc/codebuilder/IManager.h | 2 +- src/mc/codebuilder/Item.h | 2 +- src/mc/codebuilder/RequestHeader.h | 2 +- src/mc/codebuilder/utils/CodeBuilder.h | 2 +- src/mc/codebuilder/utils/Event.h | 2 +- src/mc/common/ActorUniqueID.h | 2 +- src/mc/common/AppPlatformListener.h | 38 +- src/mc/common/BrazeSDKManager.h | 10 +- src/mc/common/Brightness.h | 4 +- src/mc/common/BuildInfo.h | 2 +- src/mc/common/EditorBootstrapper.h | 2 +- src/mc/common/GameVersion.h | 4 +- src/mc/common/Globals.h | 10 +- src/mc/common/IMinecraftApp.h | 2 +- src/mc/common/editor/IEditorManager.h | 2 +- src/mc/common/editor/IEditorPlayer.h | 2 +- .../ActiveDirectoryScreenCapabilities.h | 2 +- .../CodeScreenCapabilities.h | 2 +- .../PauseScreenCapabilities.h | 2 +- src/mc/dataloadhelper/DefaultDataLoadHelper.h | 28 +- .../NewUniqueIdsDataLoadHelper.h | 34 +- .../dataloadhelper/StructureDataLoadHelper.h | 10 +- src/mc/debug/DebugEndPoint.h | 8 +- src/mc/deps/application/AppPlatform.h | 330 +++++------ .../application/AppPlatformNetworkSettings.h | 2 +- .../deps/application/ApplicationDataStores.h | 4 +- src/mc/deps/application/IAppPlatform.h | 2 +- .../deps/application/IApplicationDataStores.h | 2 +- src/mc/deps/application/session/SessionInfo.h | 16 +- .../WorldRecoveryTelemetryHandler.h | 2 +- src/mc/deps/cereal/BasicLoader.h | 2 +- src/mc/deps/cereal/BasicSaver.h | 2 +- src/mc/deps/cereal/BinarySchemaReader.h | 8 +- src/mc/deps/cereal/Constraint.h | 2 +- src/mc/deps/cereal/JSONCppSchemaReader.h | 22 +- src/mc/deps/cereal/JSONCppSchemaReaderBase.h | 8 +- src/mc/deps/cereal/NonStrictJsonLoader.h | 2 +- src/mc/deps/cereal/NullConstraint.h | 6 +- src/mc/deps/cereal/RapidJSONSchemaReader.h | 20 +- src/mc/deps/cereal/SerializerContext.h | 6 +- src/mc/deps/cereal/SerializerEnumMapping.h | 531 +----------------- .../deps/cereal/StrictJSONCppSchemaReader.h | 6 +- src/mc/deps/cereal/StrictJsonLoader.h | 2 +- .../deps/cereal/StrictRapidJSONSchemaReader.h | 20 +- src/mc/deps/cereal/StringConstraint.h | 2 +- .../cereal/ext/json_schema/JSONSchemaInfo.h | 4 +- .../deps/cereal/ext/json_schema/OutRefsMap.h | 2 +- .../deps/cereal/internal/ReflectionContext.h | 2 +- .../deps/cereal/internal/SchemaDescriptor.h | 4 +- src/mc/deps/cereal/schema/BasicSchema.h | 14 +- src/mc/deps/cereal/schema/Schema.h | 4 +- src/mc/deps/cereal/schema/SchemaReader.h | 2 +- src/mc/deps/cereal/schema/SchemaWriter.h | 2 +- src/mc/deps/cereal/schema/VariantHelper.h | 2 +- .../deps/cereal/schema/dynamic/DynamicValue.h | 10 +- .../schema/dynamic/DynamicValueSchemaReader.h | 6 +- .../schema/dynamic/DynamicValueSchemaWriter.h | 6 +- src/mc/deps/core/Bedrock.h | 2 +- src/mc/deps/core/Detail.h | 2 +- src/mc/deps/core/container/Blob.h | 4 +- src/mc/deps/core/data_store/DataStore.h | 4 +- .../debug/debug_utils/ComposedAssertMessage.h | 2 +- src/mc/deps/core/debug/log/ContentLog.h | 4 +- .../deps/core/debug/log/ContentLogEndPoint.h | 2 +- .../core/debug/log/ContentLogFileEndPoint.h | 4 +- .../deps/core/file/DirectoryIterationItem.h | 20 +- src/mc/deps/core/file/FileSizePresetManager.h | 2 +- src/mc/deps/core/file/FileStorageArea.h | 36 +- src/mc/deps/core/file/FileSystem.h | 4 +- src/mc/deps/core/file/LevelStorageResult.h | 2 +- src/mc/deps/core/file/Path.h | 16 +- src/mc/deps/core/file/PathPart.h | 2 +- src/mc/deps/core/file/PathView.h | 4 +- .../deps/core/file/StorageAreaStateListener.h | 6 +- src/mc/deps/core/file/UnzipFile.h | 2 +- src/mc/deps/core/file/UnzipFileLibZip.h | 2 +- .../file/file_system/FileAccessTransforms.h | 4 +- src/mc/deps/core/file/file_system/FileImpl.h | 10 +- .../file/file_system/FileSystemFileAccess.h | 4 +- .../core/file/file_system/FileSystemImpl.h | 16 +- src/mc/deps/core/file/file_system/FlatFile.h | 6 +- .../file/file_system/FlatFileManifestInfo.h | 2 +- .../file/file_system/FlatFileSearchResult.h | 2 +- .../file/file_system/MemoryMappedFileAccess.h | 8 +- src/mc/deps/core/http/BinaryRequestBody.h | 2 +- src/mc/deps/core/http/BufferedResponseBody.h | 2 +- src/mc/deps/core/http/DispatcherProcess.h | 2 +- src/mc/deps/core/http/HeaderCollection.h | 8 +- src/mc/deps/core/http/HttpInterfaceInternal.h | 2 +- src/mc/deps/core/http/IRequestBody.h | 2 +- .../deps/core/http/LoggingInterfaceGeneric.h | 2 +- src/mc/deps/core/http/Response.h | 2 +- src/mc/deps/core/http/WebSocket.h | 6 +- .../core/http/WebSocketInterfaceInternal.h | 8 +- src/mc/deps/core/islands/AppIsland.h | 14 +- src/mc/deps/core/islands/IIslandCore.h | 2 +- src/mc/deps/core/math/Degree.h | 2 +- src/mc/deps/core/math/IRandom.h | 2 +- src/mc/deps/core/math/Radian.h | 2 +- src/mc/deps/core/math/Random.h | 2 +- .../deps/core/memory/InternalHeapAllocator.h | 4 +- .../minecraft/threading/MinecraftWorkerPool.h | 2 +- .../deps/core/platform/AppLifecycleContext.h | 2 +- src/mc/deps/core/platform/PlatformBuildInfo.h | 2 +- src/mc/deps/core/platform/Result.h | 18 +- .../core/platform/win/file/File_c_windows.h | 4 +- src/mc/deps/core/profiler/LoadTimeProfiler.h | 2 +- src/mc/deps/core/resource/ContentIdentity.h | 10 +- .../deps/core/resource/LegacyPackIdVersion.h | 2 +- .../deps/core/resource/LoadedResourceData.h | 2 +- src/mc/deps/core/resource/ResourceLoader.h | 14 +- src/mc/deps/core/resource/ResourceLocation.h | 4 +- .../core/secure_storage/FileSecureStorage.h | 2 +- .../secure_storage/ISecureStorageKeySystem.h | 2 +- .../core/secure_storage/NullSecureStorage.h | 8 +- .../core/secure_storage/SecureStorageKey.h | 2 +- src/mc/deps/core/sem_ver/SemVersion.h | 16 +- src/mc/deps/core/string/HashedString.h | 10 +- .../deps/core/threading/BackgroundTaskBase.h | 14 +- .../deps/core/threading/BackgroundTaskQueue.h | 2 +- src/mc/deps/core/threading/BackgroundWorker.h | 2 +- src/mc/deps/core/threading/CountTracker.h | 4 +- .../deps/core/threading/InternalTaskGroup.h | 14 +- src/mc/deps/core/threading/Scheduler.h | 2 +- .../core/threading/ScopedAutoreleasePool.h | 6 +- src/mc/deps/core/threading/TaskGroup.h | 4 +- src/mc/deps/core/threading/TaskResult.h | 6 +- src/mc/deps/core/threading/TaskStatus.h | 2 +- .../deps/core/threading/WorkerPoolManager.h | 2 +- .../core/threading/WorkerPoolManagerImpl.h | 2 +- src/mc/deps/core/utility/BasicTimer.h | 2 +- src/mc/deps/core/utility/BedrockLoadContext.h | 4 +- src/mc/deps/core/utility/BinaryStream.h | 38 +- src/mc/deps/core/utility/Components.h | 2 +- src/mc/deps/core/utility/MCRESULT.h | 2 +- src/mc/deps/core/utility/PropertyBag.h | 2 +- .../deps/core/utility/ReadOnlyBinaryStream.h | 4 +- src/mc/deps/core/utility/ValidationResult.h | 2 +- src/mc/deps/core/utility/XXHash.h | 4 +- .../core/utility/json_object/ParseHandler.h | 8 +- .../pub_sub/DeferredSubscriptionHubBase.h | 2 +- .../pub_sub/PriorityDeferredSubscriptionHub.h | 6 +- .../core/utility/pub_sub/SubscriptionBase.h | 2 +- .../utility/pub_sub/detail/PublisherBase.h | 2 +- src/mc/deps/crypto/Asymmetric.h | 2 +- src/mc/deps/crypto/Hash.h | 6 +- src/mc/deps/crypto/Random.h | 2 +- src/mc/deps/crypto/Symmetric.h | 14 +- src/mc/deps/crypto/hash/md5.h | 2 +- src/mc/deps/crypto/random/Random.h | 4 +- src/mc/deps/ecs/WeakEntityRef.h | 6 +- .../deps/ecs/gamerefs_entity/EntityContext.h | 2 +- .../gamerefs_entity/IEntityRegistryOwner.h | 2 +- .../ecs/gamerefs_entity/OwnerStorageEntity.h | 4 +- .../StackResultStorageEntity.h | 4 +- .../ecs/gamerefs_entity/WeakStorageEntity.h | 2 +- src/mc/deps/ecs/strict/StrictEntityContext.h | 2 +- src/mc/deps/ecs/systems/ComponentInfo.h | 2 +- src/mc/deps/ecs/systems/ISystem.h | 2 +- src/mc/deps/ecs/systems/ITickingSystem.h | 4 +- src/mc/deps/ecs/systems/InternalSystemInfo.h | 2 +- src/mc/deps/ecs/systems/SystemInfo.h | 2 +- src/mc/deps/ecs/systems/SystemTiming.h | 2 +- src/mc/deps/identity/edu_common/AuthToken.h | 2 +- src/mc/deps/identity/edu_common/MessToken.h | 2 +- src/mc/deps/json/Features.h | 2 +- src/mc/deps/json/Reader.h | 2 +- src/mc/deps/json/Value.h | 16 +- src/mc/deps/json/ValueConstIterator.h | 4 +- src/mc/deps/json/ValueIterator.h | 4 +- src/mc/deps/json/ValueIteratorBase.h | 6 +- src/mc/deps/json/Writer.h | 2 +- .../components/CameraComponent.h | 2 +- src/mc/deps/nether_net/DiscoveryPacket.h | 2 +- .../deps/nether_net/DiscoveryPacketHeader.h | 4 +- src/mc/deps/nether_net/ILanEventHandler.h | 2 +- .../deps/nether_net/ISignalingEventHandler.h | 14 +- src/mc/deps/nether_net/MessageReceived.h | 2 +- src/mc/deps/nether_net/MessageSent.h | 2 +- src/mc/deps/nether_net/NetworkSession.h | 8 +- src/mc/deps/nether_net/RtcThreadManager.h | 2 +- src/mc/deps/nether_net/StunRelayServer.h | 2 +- .../deps/nether_net/signaling/ConnectError.h | 2 +- .../nether_net/signaling/ConnectRequest.h | 4 +- .../nether_net/signaling/ConnectResponse.h | 4 +- .../deps/nether_net/signaling/ErrorReceived.h | 2 +- .../nether_net/signaling/MessageAccepted.h | 2 +- .../nether_net/signaling/MessageDelivered.h | 2 +- .../nether_net/signaling/MessageReceived.h | 2 +- .../deps/nether_net/signaling/MessageSent.h | 2 +- .../nether_net/signaling/MessageTracker.h | 2 +- .../signaling/prototype/ClientHello.h | 4 +- .../signaling/prototype/ServerHello.h | 4 +- .../TcpClientSignalingInterfaceImpl.h | 4 +- .../TcpServerSignalingInterfaceImpl.h | 4 +- .../prototype/TcpSignalingInterfaceBase.h | 8 +- .../file_picker/FilePickerManager.h | 2 +- .../file_picker/FilePickerManagerImpl.h | 2 +- src/mc/deps/profiler/Profile.h | 12 +- src/mc/deps/profiler/ProfileThread.h | 4 +- src/mc/deps/puv/BinaryInput.h | 2 +- src/mc/deps/puv/CerealUpgraderBase.h | 2 +- src/mc/deps/puv/Input.h | 10 +- src/mc/deps/puv/LoadResultAny.h | 149 +---- src/mc/deps/puv/Logger.h | 4 +- src/mc/deps/puv/ParserBase.h | 4 +- src/mc/deps/puv/Upgrader.h | 6 +- src/mc/deps/puv/VersionRange.h | 4 +- src/mc/deps/puv/internal/Context.h | 2 +- src/mc/deps/raknet/BPSTracker.h | 4 +- src/mc/deps/raknet/BitStream.h | 4 +- src/mc/deps/raknet/CCRakNetSlidingWindow.h | 12 +- src/mc/deps/raknet/CSHA1.h | 6 +- src/mc/deps/raknet/HuffmanEncodingTree.h | 2 +- src/mc/deps/raknet/LocklessUint32_t.h | 2 +- src/mc/deps/raknet/PluginInterface2.h | 2 +- src/mc/deps/raknet/RNS2EventHandler.h | 2 +- src/mc/deps/raknet/RakNet.h | 22 +- src/mc/deps/raknet/RakNetGUID.h | 2 +- src/mc/deps/raknet/RakNetRandom.h | 2 +- src/mc/deps/raknet/RakNetSocket2.h | 6 +- src/mc/deps/raknet/RakNetSocket2Allocator.h | 2 +- src/mc/deps/raknet/RakPeer.h | 15 +- src/mc/deps/raknet/RakPeerInterface.h | 2 +- src/mc/deps/raknet/RakString.h | 2 +- src/mc/deps/raknet/ReliabilityLayer.h | 2 +- src/mc/deps/raknet/SimpleMutex.h | 8 +- src/mc/deps/raknet/SystemAddress.h | 2 +- .../resource_processing/PreloadedPathHandle.h | 4 +- src/mc/deps/shared_types/Constraints.h | 4 +- src/mc/deps/shared_types/ExpressionNode.h | 6 +- src/mc/deps/shared_types/IntRangeConstraint.h | 2 +- src/mc/deps/shared_types/ItemDescriptor.h | 2 +- src/mc/deps/shared_types/Legacy.h | 2 +- .../deps/shared_types/NamespaceConstraint.h | 2 +- .../deps/shared_types/SemVersionConstraint.h | 2 +- .../shared_types/v1_20_50/BlockDescriptor.h | 6 +- .../v1_20_50/BlockDescriptorProxy.h | 4 +- .../v1_20_50/BlockDescriptorProxyConstraint.h | 2 +- .../v1_20_50/CooldownItemComponent.h | 4 +- .../v1_20_50/DisplayNameItemComponent.h | 4 +- .../v1_20_50/EnchantSlotConstraint.h | 2 +- .../shared_types/v1_20_50/FoodItemComponent.h | 2 +- .../v1_20_50/HoverTextColorItemComponent.h | 6 +- .../shared_types/v1_20_50/IconItemComponent.h | 4 +- .../v1_20_50/InteractButtonItemComponent.h | 4 +- .../v1_20_50/PlanterItemComponent.h | 2 +- .../v1_20_50/ProjectileItemComponent.h | 6 +- .../shared_types/v1_20_50/TagsItemComponent.h | 4 +- .../shared_types/v1_20_60/BiomeJsonDocument.h | 8 +- .../deps/shared_types/v1_20_60/BlockCulling.h | 6 +- .../FrozenOceanSurfaceBiomeJsonComponent.h | 6 +- .../shared_types/v1_20_60/IconItemComponent.h | 2 +- .../MountainParametersBiomeJsonComponent.h | 2 +- ...erworldGenerationRulesBiomeJsonComponent.h | 4 +- .../SurfaceParametersBiomeJsonComponent.h | 6 +- .../v1_20_60/SwampSurfaceBiomeJsonComponent.h | 6 +- .../v1_20_80/CustomComponentsItemComponent.h | 2 +- .../v1_21_10/DamageAbsorptionItemComponent.h | 2 +- .../v1_21_10/DurabilitySensorItemComponent.h | 2 +- .../AutomaticFeatureRuleDescription.h | 6 +- .../v1_21_20/structure/AppendLoot.h | 6 +- .../v1_21_20/structure/BlockIgnore.h | 2 +- .../v1_21_20/structure/BlockMatch.h | 6 +- .../v1_21_20/structure/ProtectedBlock.h | 6 +- .../v1_21_20/structure/RandomBlockMatch.h | 2 +- .../v1_21_20/structure/TagMatch.h | 6 +- .../structure/definition/Description.h | 6 +- .../structure/processor_list/Description.h | 6 +- .../v1_21_20/structure/set/Description.h | 6 +- .../v1_21_20/structure/set/Structure.h | 2 +- .../structure/template_pool/Description.h | 6 +- .../v1_21_30/QuantityConstraint.h | 2 +- .../v1_21_30/RarityItemComponent.h | 4 +- .../v1_21_40/PlanterItemComponent.h | 2 +- .../CameraPresetAimAssistDefinition.h | 2 +- .../v1_21_50/JigsawBlockMetadata.h | 2 +- .../MovementAbilitiesComponent.h | 2 +- .../MovementAttributesComponent.h | 2 +- .../utilities/CollisionShapes.h | 4 +- src/mc/editor/BlockMaskList.h | 4 +- src/mc/editor/EditorManager.h | 8 +- src/mc/editor/EditorPlayerCommon.h | 2 +- src/mc/editor/GameOptions.h | 4 +- src/mc/editor/PlayerHelpers.h | 4 +- .../block_utils/CommonBlockUtilityService.h | 2 +- .../BlockPaletteActivePaletteChangedPayload.h | 2 +- .../blocks/BlockPaletteRemovedPayload.h | 2 +- .../EditorBlockPaletteEventItemUpdated.h | 2 +- .../EditorBlockPaletteEventPaletteRemoved.h | 2 +- src/mc/editor/blocks/SimpleBlockPaletteItem.h | 2 +- src/mc/editor/blocks/WeightedRandomBlock.h | 4 +- src/mc/editor/cursor/Cursor.h | 2 +- .../editor/datastore/DeprecatedEventFactory.h | 2 +- src/mc/editor/datastore/PayloadDescription.h | 2 +- .../editor/datastore/PayloadEventDispatcher.h | 2 +- .../datastore/container/ActionBarContainer.h | 8 +- .../datastore/container/MenuContainer.h | 6 +- .../datastore/container/ModalToolContainer.h | 4 +- .../editor/logging/EditorContentLogEndPoint.h | 8 +- src/mc/editor/logging/LoggingService.h | 6 +- src/mc/editor/persistence/PersistentData.h | 2 +- .../PlaytestBeginSessionTransferPayload.h | 2 +- .../editor/script/ScriptBlockPaletteService.h | 2 +- .../editor/script/ScriptBlockUtilityService.h | 2 +- .../script/ScriptClipboardChangeAfterEvent.h | 4 +- src/mc/editor/script/ScriptClipboardItem.h | 2 +- src/mc/editor/script/ScriptClipboardService.h | 2 +- .../ScriptCurrentThemeChangeAfterEvent.h | 4 +- .../ScriptCurrentThemeColorChangeAfterEvent.h | 2 +- src/mc/editor/script/ScriptCursorService.h | 2 +- .../ScriptDataStoreActionBarContainer.h | 2 +- .../script/ScriptDataStoreActionContainer.h | 2 +- .../script/ScriptDataStoreMenuContainer.h | 2 +- .../script/ScriptDataStorePayloadAfterEvent.h | 2 +- .../editor/script/ScriptDataTransferService.h | 2 +- src/mc/editor/script/ScriptGameOptions.h | 4 +- .../editor/script/ScriptIBlockPaletteItem.h | 2 +- .../editor/script/ScriptPlayerInputService.h | 2 +- .../ScriptPrimarySelectionChangedEvent.h | 2 +- src/mc/editor/script/ScriptSelectionService.h | 6 +- .../script/ScriptTransferCollectionNameData.h | 6 +- .../ScriptTransferServiceDataResponse.h | 4 +- src/mc/editor/script/ScriptWeightedBlock.h | 2 +- src/mc/editor/script/ScriptWidget.h | 4 +- .../script/ScriptWidgetComponentBaseOptions.h | 2 +- .../script/ScriptWidgetComponentClipboard.h | 2 +- .../script/ScriptWidgetComponentEntity.h | 4 +- ...riptWidgetComponentErrorInvalidComponent.h | 2 +- .../script/ScriptWidgetComponentGizmo.h | 4 +- .../ScriptWidgetComponentGizmoOptions.h | 2 +- .../script/ScriptWidgetComponentGuideSensor.h | 2 +- .../ScriptWidgetComponentGuideSensorOptions.h | 4 +- .../script/ScriptWidgetComponentRenderPrim.h | 2 +- .../ScriptWidgetComponentRenderPrimOptions.h | 4 +- ...idgetComponentRenderPrimType_AxialSphere.h | 4 +- .../script/ScriptWidgetComponentSpline.h | 2 +- .../editor/script/ScriptWidgetComponentText.h | 2 +- .../script/ScriptWidgetErrorInvalidObject.h | 2 +- .../ScriptWidgetGroupErrorInvalidObject.h | 2 +- .../ScriptWidgetStateChangeEventParameters.h | 2 +- src/mc/editor/selection/SelectionContainer.h | 18 +- .../SelectionContainerErrorPayload.h | 2 +- .../selection/SelectionContainerPushPayload.h | 2 +- .../SelectionContainerReplacePayload.h | 2 +- src/mc/editor/selection/SelectionService.h | 2 +- .../selection/SelectionServicePayload.h | 8 +- src/mc/editor/serviceproviders/Speed.h | 4 +- src/mc/editor/serviceproviders/Theme.h | 2 +- src/mc/editor/services/IEditorService.h | 4 +- .../blocks/EditorBlockPaletteService.h | 6 +- .../editor/services/clipboard/ClipboardItem.h | 6 +- .../services/clipboard/ClipboardService.h | 8 +- .../services/datastore/DataStoreService.h | 6 +- .../DataTransferServiceRequestDataPayload.h | 2 +- ...aTransferServiceSendClipboardDataPayload.h | 2 +- .../DataTransferServiceSendDataPayload.h | 2 +- .../datatransfer/ServerDataTransferService.h | 4 +- .../NativeBrushSetBrushBlockMaskPayload.h | 2 +- .../NativeBrushSetBrushShapeOffsetsPayload.h | 2 +- .../editor/services/network/PayloadService.h | 4 +- .../persistence/EditorPersistenceService.h | 10 +- .../services/sample/EmptySampleService.h | 6 +- .../services/settings/EditorSettingsService.h | 30 +- .../settings/GraphicsSettingsChangedPayload.h | 2 +- .../settings/SpeedSettingsChangedPayload.h | 2 +- .../settings/ThemeSettingsChangedPayload.h | 2 +- .../ThemeSettingsCurrentThemeChangedPayload.h | 4 +- .../ThemeSettingsNewThemeCreatedPayload.h | 6 +- .../ThemeSettingsThemeColorUpdatedPayload.h | 8 +- .../ThemeSettingsThemeDeletedPayload.h | 4 +- .../services/state/ModeChangedPayload.h | 2 +- src/mc/editor/services/state/ModeService.h | 4 +- .../state/PlayerStateControllerService.h | 2 +- .../structure/ServerStructureService.h | 2 +- .../services/telemetry/TelemetryService.h | 4 +- .../tickingarea/EditorTickingAreaService.h | 2 +- .../WidgetAddClipboardComponentPayload.h | 2 +- .../widgets/WidgetAddGizmoComponentPayload.h | 2 +- .../WidgetAddGuideSensorComponentPayload.h | 2 +- .../WidgetAddRenderPrimComponentPayload.h | 2 +- .../widgets/WidgetAddTextComponentPayload.h | 2 +- src/mc/editor/settings/Graphics.h | 8 +- .../structure/EditorStructureTemplate.h | 2 +- .../StructureCopyToClipboardPayload.h | 2 +- .../editor/structure/StructureDataPayload.h | 2 +- .../structure/StructureFromClipboardPayload.h | 2 +- .../editor/structure/StructureListPayload.h | 2 +- .../ActorDefinitionIdentifierComponent.h | 2 +- .../components/ActorEquipmentComponent.h | 2 +- .../ActorLimitedLifetimeComponent.h | 2 +- .../entity/components/ActorOwnerComponent.h | 6 +- .../entity/components/AgentCommandComponent.h | 4 +- .../components/AttributeRequestComponent.h | 4 +- .../entity/components/AttributesComponent.h | 4 +- .../components/BehaviorTreeDescription.h | 2 +- .../entity/components/BlockSourceComponent.h | 2 +- .../components/BlockSourceFactoryImpl.h | 2 +- .../BreakDoorAnnotationDescription.h | 2 +- .../components/ClientInputLockComponent.h | 2 +- .../components/ClientReplayStatePolicy.h | 4 +- .../entity/components/CodebuilderComponent.h | 2 +- .../entity/components/CommandBlockComponent.h | 6 +- .../components/CommandBlockDescription.h | 4 +- src/mc/entity/components/DebugInfoComponent.h | 4 +- .../components/DepenetrationComponent.h | 2 +- .../DisplayObjectMessageRequestComponent.h | 2 +- .../components/DynamicPropertiesComponent.h | 2 +- src/mc/entity/components/EquipItemComponent.h | 2 +- .../components/ExecuteEventOnBlockRequest.h | 2 +- .../entity/components/ExternalDataComponent.h | 2 +- src/mc/entity/components/FogCommandSettings.h | 2 +- src/mc/entity/components/FreezingComponent.h | 4 +- .../components/GameEventListenerComponent.h | 6 +- .../entity/components/GoalSelectorComponent.h | 2 +- .../entity/components/InsideBlockEventMap.h | 10 +- src/mc/entity/components/LevelComponent.h | 6 +- .../LoadingScreenPacketSenderComponent.h | 4 +- .../entity/components/LocalConstBlockSource.h | 2 +- .../components/LocalSpatialEntityFetcher.h | 2 +- .../entity/components/LookControlComponent.h | 16 +- src/mc/entity/components/MingleComponent.h | 2 +- .../components/MobEffectImmunityComponent.h | 8 +- .../entity/components/MobEffectsComponent.h | 13 +- .../components/MockableOwnedBlockSource.h | 2 +- src/mc/entity/components/PlayerBlockActions.h | 2 +- .../entity/components/PlayerTickComponent.h | 2 +- .../components/PredictedMovementComponent.h | 16 +- src/mc/entity/components/PrioritizedGoal.h | 12 +- src/mc/entity/components/RaidBossComponent.h | 8 +- .../components/RemovePassengersComponent.h | 2 +- .../components/RenderingRidingOffsetInfo.h | 2 +- .../entity/components/ReplayStateComponent.h | 2 +- .../entity/components/SendPacketsComponent.h | 2 +- .../components/ServerCameraStatesComponent.h | 2 +- .../components/ServerCorrectionPolicy.h | 8 +- ...erverPlayerInventoryTransactionComponent.h | 2 +- .../ServerPlayerMovementComponent.h | 6 +- src/mc/entity/components/SoundEventRequest.h | 2 +- .../components/TripodCameraDescription.h | 4 +- .../UnlockedRecipesServerComponent.h | 15 +- .../UserEntityIdentifierComponent.h | 2 +- src/mc/entity/components/VehicleComponent.h | 2 +- .../components/VibrationDataComponent.h | 4 +- .../components/WardenSpawnTrackerComponent.h | 4 +- .../CameraAimAssistDataRegistryComponent.h | 4 +- .../AddRiderComponent.h | 2 +- .../AdmireItemComponent.h | 6 +- .../components_json_legacy/AgeableComponent.h | 2 +- .../AngerLevelComponent.h | 2 +- .../components_json_legacy/AngryComponent.h | 16 +- .../components_json_legacy/BalloonComponent.h | 2 +- .../BoostableComponent.h | 10 +- .../components_json_legacy/BossComponent.h | 20 +- .../BreathableComponent.h | 12 +- .../BreathableDefinition.h | 2 +- .../BreedableComponent.h | 8 +- .../BribeableComponent.h | 4 +- .../BribeableDefinition.h | 2 +- .../BucketableComponent.h | 2 +- .../BucketableDescription.h | 2 +- .../BuoyancyComponent.h | 10 +- .../CelebrateHuntComponent.h | 6 +- .../CollisionBoxComponent.h | 2 +- .../ContainerComponent.h | 2 +- .../ContainerDescription.h | 2 +- .../DamageOverTimeComponent.h | 8 +- .../DamageSensorComponent.h | 4 +- .../components_json_legacy/DespawnComponent.h | 4 +- .../DouseFireSubcomponent.h | 4 +- .../components_json_legacy/DwellerComponent.h | 24 +- .../EconomyTradeableComponent.h | 8 +- .../EnvironmentRequirement.h | 2 +- .../EnvironmentSensorDefinition.h | 2 +- .../EquippableComponent.h | 4 +- .../ExperienceRewardComponent.h | 4 +- .../components_json_legacy/ExplodeComponent.h | 16 +- .../ExplodeDefinition.h | 2 +- .../components_json_legacy/GiveableTrigger.h | 2 +- .../GrowsCropDefinition.h | 2 +- .../components_json_legacy/HideComponent.h | 8 +- .../components_json_legacy/HideDescription.h | 2 +- .../components_json_legacy/HomeComponent.h | 4 +- .../components_json_legacy/HopperComponent.h | 2 +- .../components_json_legacy/HopperDefinition.h | 2 +- .../IgniteSubcomponent.h | 4 +- .../InsideBlockNotifierComponent.h | 2 +- .../InsomniaComponent.h | 6 +- .../InteractComponent.h | 2 +- .../JumpControlComponent.h | 8 +- .../LegacyTradeableComponent.h | 24 +- .../ManagedWanderingTraderDescription.h | 2 +- .../MobEffectComponent.h | 20 +- .../MobEffectDefinition.h | 16 +- .../MobEffectSubcomponent.h | 8 +- .../MountTamingComponent.h | 8 +- .../MoveControlComponent.h | 14 +- .../components_json_legacy/NameAction.h | 2 +- .../NavigationComponent.h | 60 +- .../components_json_legacy/NpcComponent.h | 4 +- .../components_json_legacy/NpcI18nObserver.h | 6 +- .../OnHitSubcomponent.h | 2 +- .../OpenDoorAnnotationDescription.h | 2 +- .../ProjectileComponent.h | 18 +- .../PushableComponent.h | 4 +- .../PushableDescription.h | 2 +- .../RemoveOnHitSubcomponent.h | 4 +- .../RideableComponent.h | 4 +- .../ScaleByAgeComponent.h | 2 +- .../ScaleByAgeDefinition.h | 2 +- .../SchedulerComponent.h | 4 +- .../components_json_legacy/ShooterComponent.h | 2 +- .../components_json_legacy/SlotDescriptor.h | 2 +- .../components_json_legacy/SoundDefinition.h | 2 +- .../SpawnActorComponent.h | 2 +- .../SpawnActorParameters.h | 2 +- .../SplashPotionEffectSubcomponent.h | 4 +- .../SuspectTrackingComponent.h | 4 +- .../SuspectTrackingDefinition.h | 4 +- .../TameableComponent.h | 2 +- .../TameableDefinition.h | 4 +- .../TeleportComponent.h | 16 +- .../TeleportDescription.h | 2 +- .../TeleportToSubcomponent.h | 4 +- .../ThrownPotionEffectSubcomponent.h | 2 +- .../TickWorldComponent.h | 6 +- .../TickWorldDescription.h | 2 +- .../components_json_legacy/TimerComponent.h | 6 +- .../TradeResupplyComponent.h | 2 +- .../TradeResupplyDescription.h | 2 +- .../TransformationComponent.h | 6 +- .../components_json_legacy/TrustComponent.h | 6 +- .../components_json_legacy/TrustDescription.h | 2 +- .../TrustingComponent.h | 2 +- .../TrustingDefinition.h | 4 +- .../VibrationListenerDefinition.h | 2 +- .../WaterMovementComponent.h | 2 +- .../WindBurstOnHitSubcomponent.h | 4 +- .../AmphibiousMoveControlDescription.h | 2 +- .../definitions/BlockClimberDefinition.h | 2 +- src/mc/entity/definitions/BlockSet.h | 2 +- .../BodyRotationBlockedDefinition.h | 2 +- .../definitions/BurnsInDaylightDefinition.h | 2 +- .../entity/definitions/CanClimbDefinition.h | 2 +- src/mc/entity/definitions/CanFlyDefinition.h | 2 +- .../definitions/CanJoinRaidDefinition.h | 2 +- .../definitions/CanPowerJumpDefinition.h | 2 +- .../definitions/CannotBeAttackedDefinition.h | 2 +- src/mc/entity/definitions/ColorDefinition.h | 2 +- .../definitions/DimensionBoundDefinition.h | 2 +- .../DynamicJumpControlDescription.h | 2 +- .../entity/definitions/EquipItemDefinition.h | 2 +- .../definitions/EquipmentTableDefinition.h | 2 +- .../entity/definitions/FireImmuneDefinition.h | 2 +- .../definitions/FloatsInLiquidDefinition.h | 2 +- .../GenericMoveControlDescription.h | 2 +- .../definitions/GlideMoveControlDescription.h | 2 +- src/mc/entity/definitions/IsBabyDefinition.h | 2 +- .../entity/definitions/IsChargedDefinition.h | 2 +- .../entity/definitions/IsChestedDefinition.h | 2 +- .../IsHiddenWhenInvisibleDefinition.h | 2 +- .../entity/definitions/IsIgnitedDefinition.h | 4 +- .../definitions/IsIllagerCaptainDefinition.h | 2 +- .../entity/definitions/IsPregnantDefinition.h | 2 +- .../entity/definitions/IsSaddledDefinition.h | 2 +- .../entity/definitions/IsShakingDefinition.h | 2 +- .../entity/definitions/IsShearedDefinition.h | 2 +- .../definitions/IsStackableDefinition.h | 2 +- .../entity/definitions/IsStunnedDefinition.h | 2 +- src/mc/entity/definitions/IsTamedDefinition.h | 2 +- .../definitions/JumpControlDescription.h | 2 +- .../definitions/MobEffectChangeDescription.h | 11 +- .../definitions/MobEffectImmunityDefinition.h | 8 +- .../definitions/MoveControlBasicDescription.h | 2 +- .../MoveControlDolphinDescription.h | 2 +- .../definitions/MoveControlFlyDescription.h | 2 +- .../definitions/MoveControlHoverDescription.h | 2 +- .../definitions/MoveControlSkipDescription.h | 2 +- .../definitions/MoveControlSwayDescription.h | 2 +- .../definitions/NavigationClimbDescription.h | 2 +- .../definitions/NavigationFloatDescription.h | 2 +- .../definitions/NavigationFlyDescription.h | 2 +- .../NavigationGenericDescription.h | 2 +- .../definitions/NavigationHoverDescription.h | 2 +- .../definitions/NavigationSwimDescription.h | 2 +- .../definitions/NavigationWalkDescription.h | 2 +- .../definitions/OutOfControlDefinition.h | 2 +- .../definitions/PersistentDescription.h | 2 +- .../definitions/RailMovementDefinition.h | 2 +- .../definitions/SlimeMoveControlDescription.h | 2 +- .../entity/definitions/StrengthDescription.h | 2 +- .../entity/definitions/TransientDefinition.h | 2 +- .../definitions/VibrationDamperDefinition.h | 2 +- .../definitions/WASDControlledDefinition.h | 2 +- .../definitions/WantsJockeyDefinition.h | 2 +- .../entity/factory/DefinitionInstanceGroup.h | 2 +- .../factory/EntityComponentFactoryBase.h | 2 +- src/mc/entity/factory/EntityGoalFactory.h | 4 +- .../factory/IJsonDefinitionSerializer.h | 2 +- .../systems/ClientInputUpdateSystemInternal.h | 96 ++-- src/mc/entity/systems/EntitySystems.h | 2 +- src/mc/entity/systems/HoldBlockSystem.h | 2 +- src/mc/entity/systems/LootSystem.h | 2 +- .../entity/systems/PlayerInteractionSystem.h | 2 +- .../run_initializers_system/RunInitializers.h | 4 +- .../RemoveMobEffectsRequestComponent.h | 2 +- src/mc/entity/utilities/ActorMobilityUtils.h | 2 +- src/mc/entity/utilities/ActorOwnerUtils.h | 2 +- .../entity/utilities/GetAttachPositionViews.h | 2 +- .../utilities/InsideBlockComponentUtility.h | 2 +- .../utilities/ReflectProjectileUtility.h | 6 +- src/mc/events/AchievementEventing.h | 2 +- src/mc/events/AggregationEventListener.h | 6 +- src/mc/events/EventManager.h | 4 +- src/mc/events/IConnectionEventing.h | 2 +- src/mc/events/IEventListener.h | 2 +- src/mc/events/IMinecraftEventing.h | 2 +- src/mc/events/IPackTelemetry.h | 2 +- src/mc/events/IScreenChangedEventing.h | 2 +- src/mc/events/Measurement.h | 2 +- src/mc/events/MinecraftEventing.h | 108 ++-- src/mc/events/OneDSEditorEventListener.h | 2 +- src/mc/events/OneDSEventHelper.h | 4 +- src/mc/events/OneDSEventListener.h | 2 +- src/mc/events/Property.h | 2 +- src/mc/events/ScreenFlow.h | 2 +- .../ComplexAliasBlockPreSplitBlockInfo.h | 2 +- src/mc/external/absl/internal_any_invocable.h | 2 +- src/mc/external/cereal/cereal.h | 4 +- src/mc/external/rtc/IPAddress.h | 2 +- src/mc/external/rtc/Socket.h | 2 +- src/mc/external/scripting/JSON.h | 2 +- src/mc/external/scripting/Scripting.h | 2 +- src/mc/external/scripting/UUID.h | 4 +- src/mc/external/scripting/Version.h | 2 +- .../GenericModuleBindingFactory.h | 4 +- .../binding_type/ModuleBindingBundle.h | 2 +- .../external/scripting/binding_type/Release.h | 2 +- .../scripting/binding_type/TaggedBinding.h | 4 +- .../lifetime_registry/ContextIdFreeList.h | 2 +- .../ILifetimeScopeListener.h | 2 +- .../lifetime_registry/StrongObjectHandle.h | 12 +- .../lifetime_registry/WeakLifetimeScope.h | 10 +- .../lifetime_registry/WeakObjectHandle.h | 18 +- .../scripting/quickjs/QuickJSRuntime.h | 4 +- .../bindings/CurrentlyOwnedArrayProperties.h | 2 +- .../quickjs/bindings/OwnedProperty.h | 2 +- .../scripting/quickjs/context/ContextObject.h | 2 +- .../quickjs/context/ContextScopeListener.h | 9 +- .../scripting/reflection/IPropertySetter.h | 2 +- .../scripting/runtime/AnyAndJSValue.h | 2 +- .../runtime/ArgumentOutOfBoundsError.h | 2 +- .../external/scripting/runtime/EngineError.h | 2 +- src/mc/external/scripting/runtime/Error.h | 2 +- src/mc/external/scripting/runtime/IRuntime.h | 4 +- .../scripting/runtime/InvalidArgumentError.h | 2 +- .../scripting/runtime/NativeRuntime.h | 24 +- .../runtime/PropertyOutOfBoundsError.h | 2 +- src/mc/external/scripting/runtime/ResultAny.h | 101 +--- .../scripting/runtime/RuntimeCondition.h | 4 +- .../scripting/runtime/RuntimeConditionError.h | 2 +- .../scripting/runtime/RuntimeConditions.h | 4 +- .../external/scripting/runtime/TypeNameInfo.h | 2 +- .../runtime/watchdog/WatchdogEvent.h | 2 +- .../scripting/script_engine/ClosureAny.h | 16 +- .../scripting/script_engine/FutureAny.h | 12 +- .../scripting/script_engine/GeneratorAny.h | 12 +- .../script_engine/GeneratorIteratorAny.h | 6 +- .../script_engine/ModuleDescriptor.h | 2 +- .../script_engine/ModuleResolveResult.h | 2 +- .../scripting/script_engine/PromiseAny.h | 12 +- .../scripting/script_engine/ScriptContext.h | 4 +- .../scripting/script_engine/ScriptEngine.h | 4 +- .../scripting/script_engine/ScriptValue.h | 4 +- .../script_engine/VersionRequestKey.h | 2 +- .../webrtc/CreateSessionDescriptionObserver.h | 2 +- src/mc/external/webrtc/DataChannelInit.h | 2 +- src/mc/external/webrtc/DataChannelObserver.h | 4 +- .../external/webrtc/PeerConnectionObserver.h | 20 +- src/mc/external/webrtc/RTCError.h | 2 +- src/mc/external/webrtc/RefCountInterface.h | 2 +- src/mc/external/webrtc/SdpParseError.h | 2 +- .../SetLocalDescriptionObserverInterface.h | 2 +- src/mc/gametest/BaseGameTestFunction.h | 2 +- src/mc/gametest/MinecraftGameTest.h | 6 +- src/mc/gametest/TestSummaryDisplayer.h | 4 +- .../gametest/framework/BaseGameTestInstance.h | 6 +- .../GameTestBatchRunnerGameTestListener.h | 8 +- src/mc/gametest/framework/GameTestRegistry.h | 6 +- src/mc/gametest/framework/GameTestSaveData.h | 2 +- src/mc/gametest/framework/IGameTestListener.h | 12 +- .../framework/SyncGameTestFunctionRunResult.h | 2 +- src/mc/identity/PlayerIDs.h | 2 +- src/mc/leveldb/LevelDbEnv.h | 2 +- src/mc/leveldb/LevelDbLogger.h | 2 +- src/mc/locale/I18nImpl.h | 2 +- src/mc/locale/Localization.h | 2 +- src/mc/locale/OptionalString.h | 2 +- .../molang/molang_version_map/VersionInfo.h | 2 +- src/mc/nbt/ByteArrayTag.h | 2 +- src/mc/nbt/ByteTag.h | 4 +- src/mc/nbt/CompoundTag.h | 20 +- src/mc/nbt/CompoundTagVariant.h | 2 +- src/mc/nbt/DoubleTag.h | 2 +- src/mc/nbt/EndTag.h | 10 +- src/mc/nbt/FloatTag.h | 4 +- src/mc/nbt/Int64Tag.h | 2 +- src/mc/nbt/IntArrayTag.h | 2 +- src/mc/nbt/IntTag.h | 4 +- src/mc/nbt/ListTag.h | 8 +- src/mc/nbt/ListTagFloatAdder.h | 2 +- src/mc/nbt/ListTagIntAdder.h | 2 +- src/mc/nbt/ShortTag.h | 2 +- src/mc/nbt/StringTag.h | 4 +- src/mc/nbt/Tag.h | 6 +- src/mc/nbt/cereal/NBTSchemaReader.h | 6 +- src/mc/nbt/cereal/NBTSchemaWriter.h | 20 +- src/mc/network/BatchedNetworkPeer.h | 2 +- src/mc/network/ClassroomModeNetworkHandler.h | 4 +- src/mc/network/CompressedNetworkPeer.h | 2 +- src/mc/network/ConnectionRequest.h | 78 +-- src/mc/network/Connector.h | 20 +- src/mc/network/EncryptedNetworkPeer.h | 2 +- src/mc/network/GameConnectionInfo.h | 8 +- src/mc/network/GameSpecificNetEventCallback.h | 2 +- src/mc/network/GameTestNetworkAdapter.h | 2 +- src/mc/network/GatheringServerInfo.h | 2 +- src/mc/network/IPacketObserver.h | 2 +- src/mc/network/LocalConnector.h | 18 +- src/mc/network/LoopbackPacketSender.h | 2 +- src/mc/network/NetEventCallback.h | 444 +++++++-------- src/mc/network/NetherNetConnector.h | 20 +- src/mc/network/NetherNetServerLocator.h | 2 +- src/mc/network/NetworkAddress.h | 4 +- src/mc/network/NetworkConnection.h | 2 +- src/mc/network/NetworkEnableDisableListener.h | 6 +- src/mc/network/NetworkIdentifier.h | 8 +- src/mc/network/NetworkSessionOwner.h | 2 +- src/mc/network/NetworkStatistics.h | 2 +- src/mc/network/NetworkSystem.h | 12 +- src/mc/network/PacketObserver.h | 6 +- .../PacketViolationDetectedTelemetryData.h | 2 +- src/mc/network/RakNetConnector.h | 14 +- src/mc/network/RakNetServerLocator.h | 6 +- src/mc/network/RakPeerHelper.h | 6 +- src/mc/network/ServerLocator.h | 6 +- src/mc/network/ServerNetherNetConnector.h | 6 +- src/mc/network/ServerNetworkController.h | 2 +- src/mc/network/ServerNetworkHandler.h | 18 +- src/mc/network/SpatialActorNetworkData.h | 4 +- src/mc/network/StubServerLocator.h | 18 +- src/mc/network/SubClientConnectionRequest.h | 76 +-- src/mc/network/WebRTCNetworkPeer.h | 8 +- src/mc/network/XboxLiveUserObserver.h | 2 +- src/mc/network/packet/ActorEventPacket.h | 4 +- src/mc/network/packet/AddActorBasePacket.h | 2 +- src/mc/network/packet/AddActorPacket.h | 2 +- src/mc/network/packet/AddItemActorPacket.h | 2 +- src/mc/network/packet/AddPlayerPacket.h | 2 +- src/mc/network/packet/AgentAnimationPacket.h | 2 +- src/mc/network/packet/AnimatePacket.h | 2 +- .../packet/AutomationClientConnectPacket.h | 2 +- .../packet/AvailableActorIdentifiersPacket.h | 4 +- .../network/packet/AvailableCommandsPacket.h | 10 +- .../network/packet/AwardAchievementPacket.h | 2 +- .../packet/BiomeDefinitionListPacket.h | 6 +- src/mc/network/packet/BlockActorDataPacket.h | 2 +- src/mc/network/packet/BlockEventPacket.h | 2 +- src/mc/network/packet/CameraAimAssistPacket.h | 2 +- .../packet/CameraAimAssistPresetsPacket.h | 4 +- .../network/packet/CameraInstructionPacket.h | 4 +- src/mc/network/packet/CameraPacket.h | 4 +- src/mc/network/packet/CameraPresetsPacket.h | 2 +- src/mc/network/packet/CameraShakePacket.h | 2 +- src/mc/network/packet/ChangeDimensionPacket.h | 2 +- .../network/packet/ChunkRadiusUpdatedPacket.h | 4 +- .../packet/ClientToServerHandshakePacket.h | 6 +- .../packet/ClientboundCloseFormPacket.h | 6 +- src/mc/network/packet/CodeBuilderPacket.h | 2 +- src/mc/network/packet/CommandRequestPacket.h | 2 +- .../network/packet/CompletedUsingItemPacket.h | 2 +- .../CompressedBiomeDefinitionListPacket.h | 4 +- src/mc/network/packet/ContainerClosePacket.h | 2 +- src/mc/network/packet/ContainerOpenPacket.h | 2 +- .../network/packet/ContainerSetDataPacket.h | 4 +- .../CorrectPlayerMovePredictionPacket.h | 2 +- src/mc/network/packet/CraftingDataPacket.h | 2 +- .../packet/CurrentStructureFeaturePacket.h | 2 +- src/mc/network/packet/DisconnectPacket.h | 2 +- src/mc/network/packet/EditorNetworkPacket.h | 2 +- src/mc/network/packet/EduUriResourcePacket.h | 2 +- .../packet/GameRulesChangedPacketData.h | 4 +- src/mc/network/packet/GameTestRequestPacket.h | 4 +- src/mc/network/packet/GuiDataPickItemPacket.h | 2 +- src/mc/network/packet/HurtArmorPacket.h | 2 +- src/mc/network/packet/InteractPacket.h | 2 +- src/mc/network/packet/InventorySlotPacket.h | 2 +- src/mc/network/packet/ItemData.h | 2 +- .../network/packet/ItemStackRequestPacket.h | 2 +- .../network/packet/ItemStackResponsePacket.h | 2 +- .../packet/JigsawStructureDataPacket.h | 2 +- src/mc/network/packet/LabTablePacket.h | 2 +- src/mc/network/packet/LessonProgressPacket.h | 2 +- src/mc/network/packet/LevelEventPacket.h | 4 +- src/mc/network/packet/LoginPacket.h | 4 +- .../packet/MapCreateLockedCopyPacket.h | 8 +- src/mc/network/packet/MapInfoRequestPacket.h | 2 +- .../network/packet/MaterialReducerDataEntry.h | 2 +- .../network/packet/MobArmorEquipmentPacket.h | 2 +- .../network/packet/ModalFormRequestPacket.h | 6 +- .../packet/MotionPredictionHintsPacket.h | 2 +- .../network/packet/MoveActorAbsolutePacket.h | 4 +- src/mc/network/packet/MoveActorDeltaPacket.h | 2 +- src/mc/network/packet/MovePlayerPacket.h | 4 +- .../packet/MultiplayerSettingsPacket.h | 2 +- src/mc/network/packet/NetworkSettingsPacket.h | 2 +- src/mc/network/packet/NpcRequestPacket.h | 8 +- .../packet/OnScreenTextureAnimationPacket.h | 2 +- src/mc/network/packet/OpenSignPacket.h | 2 +- src/mc/network/packet/Packet.h | 6 +- src/mc/network/packet/PassengerJumpPacket.h | 2 +- src/mc/network/packet/PlaySoundPacket.h | 2 +- src/mc/network/packet/PlayStatusPacket.h | 4 +- src/mc/network/packet/PlayerActionPacket.h | 6 +- .../network/packet/PlayerArmorDamagePacket.h | 2 +- src/mc/network/packet/PlayerHotbarPacket.h | 2 +- src/mc/network/packet/PlayerInputTick.h | 4 +- src/mc/network/packet/PlayerListPacket.h | 2 +- src/mc/network/packet/PlayerSkinPacket.h | 6 +- .../PositionTrackingDBClientRequestPacket.h | 2 +- src/mc/network/packet/PotionMixDataEntry.h | 18 +- .../packet/RefreshEntitlementsPacket.h | 4 +- src/mc/network/packet/RemoveActorPacket.h | 4 +- src/mc/network/packet/RemoveObjectivePacket.h | 2 +- src/mc/network/packet/RequestAbilityPacket.h | 2 +- .../network/packet/RequestPermissionsPacket.h | 4 +- .../packet/ResourcePackChunkDataPacket.h | 2 +- .../packet/ResourcePackClientResponsePacket.h | 4 +- .../network/packet/ResourcePackStackPacket.h | 2 +- .../network/packet/ResourcePacksInfoPacket.h | 2 +- src/mc/network/packet/RespawnPacket.h | 2 +- src/mc/network/packet/ScorePacketInfo.h | 2 +- src/mc/network/packet/ScriptMessagePacket.h | 6 +- .../ServerPlayerPostMovePositionPacket.h | 4 +- .../packet/ServerSettingsRequestPacket.h | 4 +- .../packet/ServerSettingsResponsePacket.h | 2 +- .../packet/ServerToClientHandshakePacket.h | 4 +- .../packet/ServerboundDiagnosticsPacket.h | 4 +- .../packet/ServerboundLoadingScreenPacket.h | 2 +- src/mc/network/packet/SetActorLinkPacket.h | 4 +- src/mc/network/packet/SetActorMotionPacket.h | 4 +- .../network/packet/SetCommandsEnabledPacket.h | 2 +- src/mc/network/packet/SetDifficultyPacket.h | 4 +- src/mc/network/packet/SetHealthPacket.h | 2 +- src/mc/network/packet/SetLastHurtByPacket.h | 4 +- .../packet/SetMovementAuthorityPacket.h | 2 +- .../packet/SetPlayerInventoryOptionsPacket.h | 4 +- .../network/packet/SetSpawnPositionPacket.h | 2 +- src/mc/network/packet/SetTimePacket.h | 4 +- src/mc/network/packet/SettingsCommandPacket.h | 6 +- src/mc/network/packet/ShowCreditsPacket.h | 2 +- src/mc/network/packet/ShowStoreOfferPacket.h | 2 +- src/mc/network/packet/SimpleEventPacket.h | 6 +- src/mc/network/packet/SimulationTypePacket.h | 2 +- .../network/packet/SpawnExperienceOrbPacket.h | 2 +- src/mc/network/packet/StartGamePacket.h | 2 +- src/mc/network/packet/StopSoundPacket.h | 2 +- .../packet/StructureBlockUpdatePacket.h | 2 +- src/mc/network/packet/SubChunkPacket.h | 2 +- src/mc/network/packet/SubClientLoginPacket.h | 2 +- .../network/packet/SyncActorPropertyPacket.h | 4 +- src/mc/network/packet/SyncedAttribute.h | 2 +- src/mc/network/packet/TakeItemActorPacket.h | 4 +- src/mc/network/packet/TextPacket.h | 2 +- .../packet/TickingAreasLoadStatusPacket.h | 2 +- src/mc/network/packet/ToastRequestPacket.h | 2 +- src/mc/network/packet/TransferPacket.h | 2 +- .../packet/UpdateAdventureSettingsPacket.h | 2 +- src/mc/network/packet/UpdateBlockPacket.h | 2 +- .../network/packet/UpdateBlockSyncedPacket.h | 2 +- .../packet/UpdateClientInputLocksPacket.h | 2 +- src/mc/network/packet/UpdateEquipPacket.h | 2 +- .../packet/UpdatePlayerGameTypePacket.h | 2 +- .../packet/UpdateSubChunkBlocksChangedInfo.h | 2 +- .../packet/UpdateSubChunkNetworkBlockInfo.h | 2 +- src/mc/network/packet/UpdateTradePacket.h | 2 +- src/mc/network/packet/WebSocketPacketData.h | 2 +- src/mc/options/AppConfigs.h | 60 +- src/mc/options/EduSharedUriResource.h | 4 +- src/mc/platform/CallStack.h | 4 +- src/mc/platform/FakeBatteryMonitorInterface.h | 4 +- src/mc/platform/FakeThermalMonitorInterface.h | 6 +- src/mc/platform/MultiplayerServiceObserver.h | 4 +- src/mc/platform/OSInformation.h | 2 +- src/mc/platform/UriListener.h | 2 +- src/mc/platform/WebviewObserver.h | 20 +- src/mc/platform/threading/AssignedThread.h | 2 +- src/mc/platform/threading/Mutex.h | 2 +- src/mc/platform/threading/OSThreadPriority.h | 2 +- src/mc/platform/threading/SpinLockImpl.h | 2 +- .../resources/BaseGamePackLoadRequirement.h | 2 +- src/mc/resources/BaseGamePackSlices.h | 4 +- src/mc/resources/BaseGameVersion.h | 4 +- .../resources/ContentTierIncompatibleReason.h | 2 +- src/mc/resources/ContentTierManager.h | 2 +- .../resources/DirectoryPackAccessStrategy.h | 16 +- src/mc/resources/DirectoryPackSource.h | 8 +- ...irectoryPackWithEncryptionAccessStrategy.h | 14 +- src/mc/resources/EducationMetadataError.h | 2 +- .../resources/EncryptedFileAccessStrategy.h | 8 +- src/mc/resources/EncryptedZipTransforms.h | 2 +- src/mc/resources/ExperimentLoadRequirement.h | 4 +- src/mc/resources/IContentKeyProvider.h | 4 +- src/mc/resources/IContentTierManager.h | 2 +- src/mc/resources/InPackagePackSource.h | 8 +- src/mc/resources/MinEngineVersion.h | 4 +- src/mc/resources/Pack.h | 6 +- src/mc/resources/PackAccessStrategy.h | 10 +- src/mc/resources/PackCapability.h | 6 +- src/mc/resources/PackCapabilityRegistry.h | 2 +- src/mc/resources/PackDiscoveryError.h | 6 +- src/mc/resources/PackError.h | 2 +- src/mc/resources/PackInstance.h | 2 +- src/mc/resources/PackLoadContext.h | 14 +- src/mc/resources/PackLoadError.h | 6 +- src/mc/resources/PackLoadRequirement.h | 15 - src/mc/resources/PackManifest.h | 12 +- src/mc/resources/PackReport.h | 12 +- src/mc/resources/PackSettings.h | 2 +- src/mc/resources/PackSettingsError.h | 2 +- src/mc/resources/PackSource.h | 4 +- src/mc/resources/PackSourceReport.h | 2 +- src/mc/resources/RealmsUnknownPackSource.h | 8 +- src/mc/resources/ResourceGroup.h | 2 +- src/mc/resources/ResourcePackListener.h | 8 +- src/mc/resources/ResourcePackManager.h | 23 +- src/mc/resources/ResourcePackRepository.h | 14 +- src/mc/resources/ResourceSignature.h | 2 +- src/mc/resources/ServerContentKeyProvider.h | 6 +- src/mc/resources/SubpackInfo.h | 2 +- src/mc/resources/SubpackInfoCollection.h | 2 +- src/mc/resources/ValidatorRegistry.h | 2 +- src/mc/resources/WorldHistoryPackSource.h | 10 +- src/mc/resources/WorldPacksHistoryFile.h | 4 +- src/mc/resources/WorldTemplateManager.h | 2 +- src/mc/resources/WorldTemplateManagerProxy.h | 2 +- .../WorldTemplateManagerProxyCallbacks.h | 2 +- src/mc/resources/ZipPackAccessStrategy.h | 12 +- .../ZippedEncryptedFilesAccessStrategy.h | 8 +- .../interface/IPackManifestFactory.h | 2 +- src/mc/resources/persona/Swatch.h | 2 +- src/mc/safety/RedactableString.h | 6 +- src/mc/scripting/ScriptBindingReleaseList.h | 2 +- src/mc/scripting/ScriptContentLogEndPoint.h | 8 +- src/mc/scripting/ScriptFormPromiseTracker.h | 2 +- src/mc/scripting/ScriptPackConfiguration.h | 6 +- .../ScriptPackConfigurationManager.h | 2 +- src/mc/scripting/ScriptPlugin.h | 16 +- src/mc/scripting/ScriptPluginHandleCounter.h | 12 +- src/mc/scripting/ScriptPluginManager.h | 2 +- src/mc/scripting/ScriptPluginManagerResult.h | 2 +- .../ScriptPluginPackSourceEnumerator.h | 2 +- src/mc/scripting/ScriptPluginResult.h | 14 +- src/mc/scripting/ScriptRuntimeMetadata.h | 2 +- src/mc/scripting/ServerScriptManager.h | 6 +- src/mc/scripting/commands/ScriptCommand.h | 4 +- .../scripting/commands/ScriptCommandOrigin.h | 24 +- .../scripting/commands/ScriptCommandUtils.h | 4 +- .../commands/ScriptDebuggerCommandOrigin.h | 22 +- src/mc/scripting/debugger/ScriptDebugger.h | 2 +- .../debugger/ScriptDebuggerTransport.h | 2 +- .../debugger/ScriptDebuggerWatchdog.h | 2 +- .../script_debugger_messages/CommandMessage.h | 4 +- .../NotificationEvent.h | 8 +- .../script_debugger_messages/PluginDetails.h | 4 +- .../script_debugger_messages/PrintEvent.h | 8 +- .../ProfilerCapture.h | 4 +- .../ProfilerMessage.h | 4 +- .../scripting/diagnostics/ScriptDiagnostics.h | 2 +- .../diagnostics/ScriptPluginHandleStats.h | 2 +- .../modules/gametest/ScriptNavigationResult.h | 2 +- .../modules/gametest/ScriptSculkSpreader.h | 2 +- .../modules/gametest/ScriptSimulatedPlayer.h | 2 +- .../modules/minecraft/EqualsComparison.h | 4 +- .../modules/minecraft/NotEqualsComparison.h | 4 +- .../minecraft/PropertyComponentRegistration.h | 2 +- .../minecraft/ScriptActorEventFilterData.h | 2 +- .../modules/minecraft/ScriptBlockRaycastHit.h | 2 +- .../modules/minecraft/ScriptBlockVolumeBase.h | 2 +- .../modules/minecraft/ScriptChunkValidator.h | 2 +- .../scripting/modules/minecraft/ScriptColor.h | 2 +- .../minecraft/ScriptContainerWrapper.h | 2 +- ...criptCustomComponentInvalidRegistryError.h | 2 +- .../ScriptCustomComponentNameError.h | 2 +- .../minecraft/ScriptCustomComponentRegistry.h | 4 +- .../ScriptDataDrivenActorTriggerEventFilter.h | 2 +- ...iptDataDrivenActorTriggerEventFilterData.h | 2 +- .../minecraft/ScriptDimensionLocation.h | 2 +- .../minecraft/ScriptEntityRaycastHit.h | 2 +- .../minecraft/ScriptEntityRaycastOptions.h | 2 +- .../minecraft/ScriptInputEventFilter.h | 4 +- .../minecraft/ScriptInvalidIteratorError.h | 2 +- .../ScriptInventoryComponentContainer.h | 6 +- .../modules/minecraft/ScriptListBlockVolume.h | 2 +- .../ScriptMessageReceiveEventFilter.h | 4 +- .../ScriptMessageReceiveEventFilterData.h | 2 +- .../ScriptPlayerInventoryComponentContainer.h | 4 +- .../scripting/modules/minecraft/ScriptRGB.h | 2 +- .../minecraft/ScriptSimpleBlockVolume.h | 2 +- .../modules/minecraft/ScriptSystem.h | 5 +- .../minecraft/ScriptUnloadedChunksError.h | 2 +- .../scripting/modules/minecraft/ScriptWorld.h | 4 +- .../scripting/modules/minecraft/ValueParams.h | 2 +- .../modules/minecraft/VersionRelease.h | 2 +- .../modules/minecraft/actor/ScriptActor.h | 4 +- .../minecraft/actor/ScriptActorIterator.h | 2 +- .../minecraft/biomes/ScriptBiomeType.h | 6 +- .../modules/minecraft/block/ScriptBlock.h | 2 +- ...ockCustomComponentAlreadyRegisteredError.h | 2 +- ...ckCustomComponentReloadNewComponentError.h | 2 +- ...tBlockCustomComponentReloadNewEventError.h | 2 +- ...ptBlockCustomComponentReloadVersionError.h | 2 +- .../minecraft/block/ScriptBlockPermutation.h | 7 +- .../modules/minecraft/block/ScriptBlockType.h | 6 +- .../ScriptLocationOutOfWorldBoundsError.h | 2 +- .../BaseScriptBlockLiquidContainerComponent.h | 2 +- .../ScriptBlockFluidContainerComponent.h | 2 +- .../ScriptBlockInventoryComponentContainer.h | 2 +- .../ScriptBlockRecordPlayerComponent.h | 2 +- .../ScriptBlockRecordPlayerComponentV010.h | 2 +- .../modules/minecraft/camera/ScriptCamera.h | 4 +- .../commands/ScriptActorQueryOptions.h | 2 +- .../minecraft/commands/ScriptCommandError.h | 2 +- .../ScriptCursorInventoryComponentFactory.h | 2 +- .../ScriptEquippableComponentFactory.h | 2 +- .../minecraft/effects/ScriptEffectType.h | 2 +- .../events/IScriptEventSignalAsync.h | 6 +- .../events/IScriptWorldAfterEvents.h | 126 ++--- .../events/IScriptWorldBeforeEvents.h | 28 +- .../events/ScriptActorEventListener.h | 2 +- .../ScriptActorHealthChangedAfterEvent.h | 2 +- .../events/ScriptActorHitEntityAfterEvent.h | 2 +- .../events/ScriptActorRemoveAfterEvent.h | 4 +- ...ockCustomComponentEntityFallOnAfterEvent.h | 2 +- ...ntityFallOnAfterEventIntermediateStorage.h | 2 +- ...iptBlockCustomComponentOnPlaceAfterEvent.h | 2 +- ...ckCustomComponentPlayerDestroyAfterEvent.h | 4 +- ...ayerDestroyAfterEventIntermediateStorage.h | 2 +- ...kCustomComponentPlayerInteractAfterEvent.h | 2 +- ...yerInteractAfterEventIntermediateStorage.h | 2 +- ...ockCustomComponentPlayerPlaceBeforeEvent.h | 2 +- ...BlockCustomComponentRandomTickAfterEvent.h | 4 +- ...iptBlockCustomComponentStepOffAfterEvent.h | 6 +- ...nentStepOffAfterEventIntermediateStorage.h | 2 +- ...riptBlockCustomComponentStepOnAfterEvent.h | 6 +- ...onentStepOnAfterEventIntermediateStorage.h | 2 +- ...ScriptBlockCustomComponentTickAfterEvent.h | 4 +- .../minecraft/events/ScriptBlockEvent.h | 2 +- .../events/ScriptBlockExplodedAfterEvent.h | 2 +- .../events/ScriptBlockHitInformation.h | 2 +- .../events/ScriptEntityHitInformation.h | 2 +- .../events/ScriptGlobalEventListeners.h | 2 +- ...stomComponentBeforeDurabilityDamageEvent.h | 2 +- ...criptItemCustomComponentCompleteUseEvent.h | 2 +- .../ScriptItemCustomComponentConsumeEvent.h | 2 +- ...ptItemCustomComponentIntermediateStorage.h | 2 +- .../ScriptItemCustomComponentMineBlockEvent.h | 2 +- .../ScriptItemCustomComponentUseEvent.h | 2 +- .../ScriptItemCustomComponentUseOnEvent.h | 2 +- .../events/ScriptItemReleaseUseAfterEvent.h | 2 +- .../events/ScriptItemStopUseAfterEvent.h | 2 +- .../events/ScriptItemStopUseOnAfterEvent.h | 2 +- .../modules/minecraft/events/ScriptListener.h | 2 +- .../events/ScriptPlayerInteractEvent.h | 2 +- .../ScriptPlayerInteractWithBlockEvent.h | 2 +- .../ScriptPlayerInteractWithEntityEvent.h | 2 +- .../events/ScriptPlayerLeaveAfterEvent.h | 2 +- .../events/ScriptSystemAfterEvents.h | 6 +- .../events/ScriptSystemBeforeEvents.h | 2 +- .../minecraft/events/ScriptTickSignal.h | 4 +- .../minecraft/events/ScriptV010Events.h | 2 +- .../minecraft/events/ScriptWorldAfterEvents.h | 2 +- .../events/ScriptWorldInitializeAfterEvent.h | 2 +- .../events/ScriptWorldInitializeBeforeEvent.h | 2 +- .../events/SignalNameSubscriberCount.h | 2 +- .../ScriptCustomComponentAsyncEventList.h | 2 +- .../ScriptCustomComponentAsyncSignalHandle.h | 2 +- .../ScriptRawMessageScoreInterface.h | 4 +- .../interfaces/ScriptRawTextInterface.h | 2 +- .../items/ScriptInvalidContainerSlotError.h | 2 +- ...temCustomComponentAlreadyRegisteredError.h | 2 +- .../items/ScriptItemCustomComponentRegistry.h | 4 +- ...emCustomComponentReloadNewComponentError.h | 2 +- ...ptItemCustomComponentReloadNewEventError.h | 2 +- ...iptItemCustomComponentReloadVersionError.h | 2 +- .../items/ScriptItemEnchantmentInstance.h | 2 +- .../items/ScriptItemEnchantmentType.h | 2 +- .../ScriptItemEnchantmentUnknownIdError.h | 2 +- .../modules/minecraft/items/ScriptItemStack.h | 2 +- .../modules/minecraft/items/ScriptItemType.h | 2 +- .../items/potions/ScriptPotionEffectType.h | 7 +- .../items/potions/ScriptPotionLiquidType.h | 7 +- .../items/potions/ScriptPotionModifierType.h | 4 +- .../molang/ScriptMolangVariableMap.h | 2 +- .../options/ScriptCameraFadeOptions.h | 4 +- .../options/ScriptCameraSetFacingOptions.h | 2 +- .../minecraft/options/ScriptMoveToOptions.h | 2 +- .../minecraft/options/ScriptMusicOptions.h | 4 +- .../minecraft/options/ScriptTeleportOptions.h | 2 +- .../options/ScriptTitleDisplayOptions.h | 2 +- .../options/ScriptWorldSoundOptions.h | 2 +- .../ScriptDynamicPropertiesDefinition.h | 2 +- .../persistence/ScriptPropertyRegistry.h | 2 +- .../player/ScriptPlayerInputPermissions.h | 2 +- .../minecraft/player/ScriptPlayerIterator.h | 2 +- .../ScriptScoreboardObjectiveDisplayOptions.h | 2 +- .../scoreboard/ScriptScoreboardScoreInfo.h | 2 +- .../screendisplay/ScriptScreenDisplay.h | 4 +- .../structure/ScriptInvalidStructureError.h | 2 +- .../structure/ScriptPlaceJigsawError.h | 2 +- .../structure/ScriptStructureTemplate.h | 2 +- .../scripting/modules/minecraft_ui/IControl.h | 2 +- .../minecraft_ui/ScriptFormRejectError.h | 2 +- .../minecraft_ui/ScriptModalFormData.h | 2 +- .../modules/minecraft_ui/ScriptUIManager.h | 4 +- .../server_admin/ScriptServerSecrets.h | 4 +- .../server_admin/ScriptServerVariables.h | 4 +- src/mc/server/AllowList.h | 2 +- src/mc/server/AllowListFile.h | 4 +- src/mc/server/AsynchronousIPResolver.h | 2 +- src/mc/server/DedicatedServer.h | 6 +- src/mc/server/IJsonSerializable.h | 2 +- src/mc/server/PermissionsFile.h | 2 +- src/mc/server/PropertiesSettings.h | 38 +- .../server/ServerGameplayUserManagerProxy.h | 2 +- src/mc/server/ServerInstance.h | 12 +- src/mc/server/ServerLevel.h | 16 +- src/mc/server/ServerMapDataManager.h | 4 +- src/mc/server/ServerMetrics.h | 2 +- src/mc/server/ServerPlayer.h | 8 +- src/mc/server/ServerPlayerSleepManager.h | 6 +- src/mc/server/ServerTextSettings.h | 2 +- src/mc/server/SimulatedPlayer.h | 6 +- src/mc/server/TestConfig.h | 6 +- .../blob_cache/ActiveTransfersManager.h | 2 +- src/mc/server/commands/ActorCommandOrigin.h | 10 +- .../commands/ActorServerCommandOrigin.h | 6 +- .../commands/AutomationPlayerCommandOrigin.h | 10 +- src/mc/server/commands/BlockCommandOrigin.h | 22 +- .../server/commands/BlockStateCommandParam.h | 2 +- .../commands/ClientAutomationCommandOrigin.h | 28 +- src/mc/server/commands/Command.h | 4 +- src/mc/server/commands/CommandArea.h | 4 +- src/mc/server/commands/CommandAreaFactory.h | 2 +- src/mc/server/commands/CommandBlockName.h | 4 +- .../server/commands/CommandBlockNameResult.h | 8 +- .../commands/CommandChainedSubcommand.h | 4 +- src/mc/server/commands/CommandContext.h | 4 +- src/mc/server/commands/CommandFilePath.h | 6 +- src/mc/server/commands/CommandIntegerRange.h | 2 +- src/mc/server/commands/CommandItem.h | 6 +- src/mc/server/commands/CommandLexer.h | 2 +- src/mc/server/commands/CommandMessage.h | 4 +- src/mc/server/commands/CommandOrigin.h | 22 +- src/mc/server/commands/CommandOriginData.h | 2 +- .../server/commands/CommandOriginIdentity.h | 2 +- src/mc/server/commands/CommandOutput.h | 12 +- src/mc/server/commands/CommandOutputMessage.h | 8 +- .../server/commands/CommandOutputParameter.h | 14 +- src/mc/server/commands/CommandOutputSender.h | 2 +- src/mc/server/commands/CommandParameterData.h | 2 +- src/mc/server/commands/CommandRawText.h | 2 +- src/mc/server/commands/CommandRegistry.h | 16 +- src/mc/server/commands/CommandRunStats.h | 2 +- src/mc/server/commands/CommandSelectorBase.h | 6 +- .../server/commands/CommandSoftEnumRegistry.h | 4 +- src/mc/server/commands/CommandVersion.h | 2 +- src/mc/server/commands/CommandWildcardInt.h | 4 +- src/mc/server/commands/DeferredCommandBase.h | 2 +- src/mc/server/commands/DelayRequest.h | 4 +- .../commands/ExecuteContextCommandOrigin.h | 10 +- .../GameDirectorEntityServerCommandOrigin.h | 6 +- .../server/commands/GenerateMessageResult.h | 2 +- .../commands/MinecartBlockCommandOrigin.h | 10 +- src/mc/server/commands/MinecraftCommands.h | 2 +- src/mc/server/commands/PlayerCommandOrigin.h | 10 +- .../commands/PrecompiledCommandOrigin.h | 34 +- src/mc/server/commands/RelativeFloat.h | 4 +- src/mc/server/commands/ServerCommand.h | 2 +- src/mc/server/commands/ServerCommandOrigin.h | 22 +- src/mc/server/commands/VirtualCommandOrigin.h | 6 +- .../server/commands/functions/FunctionEntry.h | 2 +- .../commands/functions/FunctionManager.h | 2 +- .../commands/shared/ScriptDebugCommand.h | 2 +- .../commands/standard/MessagingCommand.h | 2 +- .../commands/standard/ScheduleCommand.h | 2 +- .../commands/standard/ScoreboardCommand.h | 2 +- src/mc/server/editor/EditorManagerServer.h | 2 +- .../api/EditorExtensionOptionalParameters.h | 2 +- .../editor/api/EditorExtensionService.h | 2 +- .../block_utils/ServerBlockUtilityService.h | 6 +- .../editor/brush/BrushShapeManagerService.h | 2 +- .../editor/logging/ServerLoggingService.h | 4 +- .../ServerPlayerLogMessageHandlerService.h | 4 +- .../server/editor/script/ScriptBrushShape.h | 6 +- .../script/ScriptBrushShapeManagerService.h | 2 +- .../selection/ServerSelectionContainer.h | 2 +- .../blocks/ServerBlockPaletteService.h | 6 +- .../datastore/ServerDataStoreService.h | 2 +- .../EditorExportProjectManagerService.h | 6 +- .../services/input/ServerPlayerInputService.h | 4 +- .../playtest/EditorPlaytestManagerService.h | 4 +- .../settings/EditorServerSettingsService.h | 2 +- .../transactions/BlockChangeIntentData.h | 2 +- .../server/editor/transactions/IOperation.h | 2 +- .../editor/transactions/TransactionContext.h | 2 +- .../utilities/ExternalDataServerLevel.h | 10 +- .../server/module/VanillaGameModuleServer.h | 4 +- .../VanillaServerGameplayEventListener.h | 4 +- src/mc/server/sim/MovementIntent.h | 2 +- src/mc/server/sim/NavigateToPositionsIntent.h | 2 +- src/mc/textobject/ResolvedTextObject.h | 4 +- src/mc/textobject/TextObjectLocalizedText.h | 2 +- src/mc/textobject/TextObjectParser.h | 2 +- src/mc/textobject/TextObjectRoot.h | 6 +- src/mc/textobject/TextObjectScore.h | 2 +- src/mc/textobject/TextObjectSelector.h | 2 +- src/mc/textobject/TextObjectText.h | 4 +- src/mc/util/BigEndianStringByteInput.h | 2 +- src/mc/util/BigEndianStringByteOutput.h | 2 +- src/mc/util/BiomeLoadingUtil.h | 2 +- src/mc/util/BlockCerealSchemaUpgrade.h | 2 +- src/mc/util/BlockColorUtil.h | 2 +- src/mc/util/CallbackToken.h | 6 +- src/mc/util/CallbackTokenCancelState.h | 2 +- src/mc/util/CerealSchemaDeprecate.h | 6 +- src/mc/util/CerealSchemaUpgrade.h | 4 +- src/mc/util/CerealSchemaUpgradeSet.h | 2 +- src/mc/util/CompoundTagUpdater.h | 2 +- src/mc/util/ConstDeserializeDataParams.h | 2 +- .../DataDrivenVanillaBlocksAndItemsUtil.h | 2 +- src/mc/util/DeserializeDataParams.h | 2 +- src/mc/util/ExpressionNode.h | 6 +- src/mc/util/ExpressionNodeCerealConstraint.h | 4 +- src/mc/util/ExternalHandlers.h | 2 +- src/mc/util/FileChunkInfo.h | 2 +- src/mc/util/FileChunkManager.h | 4 +- src/mc/util/FileInfo.h | 2 +- src/mc/util/FilePickerSettings.h | 2 +- src/mc/util/FileUploadManager.h | 2 +- src/mc/util/FloatRange.h | 2 +- src/mc/util/IFileChunkUploader.h | 4 +- src/mc/util/IndexSet.h | 6 +- src/mc/util/IntRange.h | 8 +- src/mc/util/ItemCerealSchemaUpgrade.h | 2 +- src/mc/util/ItemColorUtil.h | 2 +- src/mc/util/MolangActorArrayPtr.h | 4 +- src/mc/util/MolangActorIdArrayPtr.h | 4 +- src/mc/util/MolangArrayVariable.h | 2 +- src/mc/util/MolangContextVariable.h | 2 +- src/mc/util/MolangDataDrivenGeometry.h | 4 +- src/mc/util/MolangEntityVariable.h | 2 +- src/mc/util/MolangGeometryVariable.h | 2 +- src/mc/util/MolangJsonContainer.h | 2 +- src/mc/util/MolangMaterialVariable.h | 2 +- src/mc/util/MolangMemberAccessor.h | 2 +- src/mc/util/MolangMemberArray.h | 4 +- src/mc/util/MolangQueryFunctionPtr.h | 2 +- src/mc/util/MolangScriptArg.h | 16 +- src/mc/util/MolangTempVariable.h | 2 +- src/mc/util/MolangTextureVariable.h | 2 +- src/mc/util/MolangVariableMap.h | 2 +- src/mc/util/NamedMolangScript.h | 2 +- src/mc/util/PauseChecks.h | 4 +- src/mc/util/PauseManager.h | 2 +- src/mc/util/PerfContextTracker.h | 2 +- src/mc/util/PerfContextTrackerReport.h | 2 +- src/mc/util/PrintStream.h | 2 +- src/mc/util/ProfilerLite.h | 93 +-- src/mc/util/RakDataInput.h | 2 +- src/mc/util/RakDataOutput.h | 2 +- src/mc/util/Randomize.h | 2 +- src/mc/util/ServerFileChunkUploader.h | 12 +- src/mc/util/SimpleRandom.h | 4 +- src/mc/util/StringByteInput.h | 2 +- src/mc/util/StringByteOutput.h | 2 +- src/mc/util/Timer.h | 2 +- src/mc/util/Token.h | 2 +- src/mc/util/VarIntDataInput.h | 8 +- src/mc/util/VarIntDataOutput.h | 2 +- src/mc/util/VariantParameterList.h | 2 +- src/mc/util/cereal_helpers/CerealHelpers.h | 2 +- .../json_util/SchemaConverterCollection.h | 2 +- .../random/XoroshiroPositionalRandomFactory.h | 2 +- src/mc/util/random/XoroshiroRandom.h | 8 +- src/mc/util/texture_set_helpers/NamePair.h | 2 +- src/mc/util/value_providers/UniformFloat.h | 2 +- src/mc/util/value_providers/UniformInt.h | 2 +- src/mc/volume/VolumeDefinitionGroup.h | 2 +- .../websockets/RakWebSocketDataFrameParser.h | 2 +- src/mc/websockets/TcpProxy.h | 2 +- .../websockets/automation/AutomationClient.h | 4 +- src/mc/win/AppPlatformWindows.h | 16 +- src/mc/win/AppPlatform_win32.h | 30 +- src/mc/world/Container.h | 24 +- src/mc/world/ContainerCloseListener.h | 2 +- src/mc/world/ContainerContentChangeListener.h | 2 +- src/mc/world/ContainerOwner.h | 4 +- src/mc/world/ContainerSizeChangeListener.h | 2 +- src/mc/world/GameCallbacks.h | 2 +- src/mc/world/Minecraft.h | 16 +- src/mc/world/ParticleProvider.h | 6 +- src/mc/world/SimpleContainer.h | 8 +- src/mc/world/SimpleSparseContainer.h | 2 +- src/mc/world/WorldSessionEndPoint.h | 8 +- src/mc/world/WorldTemplateInfo.h | 6 +- src/mc/world/actor/ActionEvent.h | 2 +- src/mc/world/actor/ActionQueue.h | 2 +- src/mc/world/actor/Actor.h | 148 ++--- src/mc/world/actor/ActorClassTree.h | 2 +- .../world/actor/ActorComponentDescription.h | 2 +- src/mc/world/actor/ActorDamageByActorSource.h | 18 +- src/mc/world/actor/ActorDamageByBlockSource.h | 2 +- .../actor/ActorDamageByChildActorSource.h | 8 +- src/mc/world/actor/ActorDamageSource.h | 32 +- src/mc/world/actor/ActorDefinitionAttribute.h | 2 +- src/mc/world/actor/ActorDefinitionDiffList.h | 10 +- src/mc/world/actor/ActorDefinitionFeedItem.h | 2 +- src/mc/world/actor/ActorDefinitionGroup.h | 2 +- .../world/actor/ActorDefinitionIdentifier.h | 14 +- src/mc/world/actor/ActorDefinitionPtr.h | 2 +- src/mc/world/actor/ActorDefinitionTrigger.h | 2 +- src/mc/world/actor/ActorFactory.h | 4 +- src/mc/world/actor/ActorFilterGroup.h | 4 +- src/mc/world/actor/ActorHistory.h | 2 +- src/mc/world/actor/ActorInteraction.h | 8 +- .../world/actor/ActorPropertiesDescription.h | 2 +- src/mc/world/actor/ActorSpawnRuleDataLoader.h | 2 +- src/mc/world/actor/AreaEffectCloud.h | 4 +- src/mc/world/actor/ArmorStand.h | 4 +- src/mc/world/actor/DataItem.h | 2 +- src/mc/world/actor/FeedItem.h | 2 +- src/mc/world/actor/FishingHook.h | 39 +- src/mc/world/actor/HangingActor.h | 6 +- src/mc/world/actor/Hopper.h | 6 +- src/mc/world/actor/IdentifierDescription.h | 4 +- .../world/actor/InternalComponentRegistry.h | 4 +- src/mc/world/actor/KeyOrNameResult.h | 2 +- src/mc/world/actor/LeashFenceKnotActor.h | 12 +- src/mc/world/actor/Mob.h | 24 +- src/mc/world/actor/Motif.h | 2 +- .../actor/NetheriteArmorEquippedListener.h | 2 +- src/mc/world/actor/Painting.h | 2 +- src/mc/world/actor/RenderParams.h | 2 +- .../actor/RuntimeIdentifierDescription.h | 2 +- src/mc/world/actor/SerializedAbilitiesData.h | 2 +- src/mc/world/actor/SpawnChecks.h | 20 +- src/mc/world/actor/SpawnGroupData.h | 4 +- src/mc/world/actor/SpawnGroupDataLoader.h | 2 +- src/mc/world/actor/SynchedActorData.h | 2 +- .../actor/SynchedActorDataEntityWrapper.h | 8 +- src/mc/world/actor/SynchedActorDataReader.h | 2 +- src/mc/world/actor/SynchedActorDataWriter.h | 4 +- src/mc/world/actor/TempEPtr.h | 6 + .../world/actor/VersionedActorDamageCause.h | 6 +- src/mc/world/actor/_TickPtr.h | 2 +- src/mc/world/actor/agent/Agent.h | 18 +- .../agent/agent_commands/CollectCommand.h | 2 +- .../actor/agent/agent_commands/Command.h | 2 +- .../agent/agent_commands/DropAllCommand.h | 2 +- .../actor/agent/agent_commands/DropCommand.h | 2 +- .../agent_commands/GetItemCountCommand.h | 4 +- .../agent_commands/GetItemDetailsCommand.h | 4 +- .../agent_commands/GetItemSpaceCommand.h | 4 +- .../agent/agent_commands/InspectDataCommand.h | 4 +- .../agent/agent_commands/TransferToCommand.h | 2 +- .../agent_components/actions/PlaceBlock.h | 2 +- .../agent/agent_components/actions/Till.h | 2 +- src/mc/world/actor/ai/control/BodyControl.h | 2 +- .../actor/ai/control/DynamicJumpControl.h | 2 +- .../actor/ai/control/GenericMoveControl.h | 2 +- src/mc/world/actor/ai/control/JumpControl.h | 10 +- src/mc/world/actor/ai/control/JumpInfo.h | 8 +- src/mc/world/actor/ai/control/LookControl.h | 2 +- src/mc/world/actor/ai/control/MoveControl.h | 2 +- src/mc/world/actor/ai/goal/AdmireItemGoal.h | 2 +- .../actor/ai/goal/AgentCommandExecutionGoal.h | 2 +- src/mc/world/actor/ai/goal/BarterGoal.h | 2 +- .../world/actor/ai/goal/BaseGoalDefinition.h | 4 +- .../world/actor/ai/goal/BaseMoveToBlockGoal.h | 2 +- src/mc/world/actor/ai/goal/BaseMoveToGoal.h | 6 +- .../actor/ai/goal/CircleAroundAnchorGoal.h | 2 +- .../world/actor/ai/goal/DelayedAttackGoal.h | 4 +- src/mc/world/actor/ai/goal/DigGoal.h | 2 +- .../actor/ai/goal/DragonBaseGoalDefinition.h | 2 +- src/mc/world/actor/ai/goal/DragonDeathGoal.h | 4 +- .../actor/ai/goal/DragonFlamingDefinition.h | 2 +- .../world/actor/ai/goal/DragonFlamingGoal.h | 29 +- .../actor/ai/goal/DragonStrafePlayerGoal.h | 28 +- src/mc/world/actor/ai/goal/DrinkPotionGoal.h | 2 +- src/mc/world/actor/ai/goal/EatBlockGoal.h | 2 +- .../world/actor/ai/goal/EatCarriedItemGoal.h | 2 +- src/mc/world/actor/ai/goal/EmergeGoal.h | 2 +- src/mc/world/actor/ai/goal/EquipItemGoal.h | 2 +- .../ai/goal/FindUnderwaterTreasureGoal.h | 2 +- src/mc/world/actor/ai/goal/FollowFlockGoal.h | 2 +- src/mc/world/actor/ai/goal/FollowMobGoal.h | 4 +- src/mc/world/actor/ai/goal/FollowParentGoal.h | 2 +- .../actor/ai/goal/FollowTargetCaptainGoal.h | 2 +- .../ai/goal/GoAndGiveItemsToNoteblockGoal.h | 4 +- .../actor/ai/goal/GoAndGiveItemsToOwnerGoal.h | 4 +- src/mc/world/actor/ai/goal/Goal.h | 20 +- .../actor/ai/goal/HarvestFarmBlockGoal.h | 4 +- src/mc/world/actor/ai/goal/HideGoal.h | 2 +- src/mc/world/actor/ai/goal/HoverGoal.h | 2 +- src/mc/world/actor/ai/goal/IdleState.h | 2 +- .../actor/ai/goal/JumpAroundTargetGoal.h | 2 +- src/mc/world/actor/ai/goal/JumpToBlockGoal.h | 2 +- src/mc/world/actor/ai/goal/LayDownGoal.h | 2 +- .../actor/ai/goal/LegacyGoalDefinition.h | 2 +- src/mc/world/actor/ai/goal/LookAtActorGoal.h | 2 +- src/mc/world/actor/ai/goal/MobDescriptor.h | 2 +- src/mc/world/actor/ai/goal/MountPathingGoal.h | 2 +- src/mc/world/actor/ai/goal/MoveOutdoorsGoal.h | 2 +- .../actor/ai/goal/MoveThroughVillageGoal.h | 6 +- ...MoveTowardsDwellingRestrictionDefinition.h | 2 +- .../MoveTowardsHomeRestrictionDefinition.h | 2 +- .../ai/goal/MoveTowardsRestrictionGoal.h | 2 +- .../actor/ai/goal/MoveTowardsTargetGoal.h | 2 +- .../actor/ai/goal/OcelotSitOnBlockGoal.h | 4 +- src/mc/world/actor/ai/goal/OfferFlowerGoal.h | 2 +- .../actor/ai/goal/OwnerHurtByTargetGoal.h | 2 +- .../world/actor/ai/goal/OwnerHurtTargetGoal.h | 2 +- src/mc/world/actor/ai/goal/PanicGoal.h | 2 +- .../actor/ai/goal/PetSleepWithOwnerState.h | 2 +- src/mc/world/actor/ai/goal/PickupItemsGoal.h | 46 +- .../actor/ai/goal/PlayerVehicleTamedGoal.h | 8 +- .../world/actor/ai/goal/RandomBreachingGoal.h | 2 +- src/mc/world/actor/ai/goal/RandomStrollGoal.h | 2 +- src/mc/world/actor/ai/goal/ReceiveLoveGoal.h | 4 +- src/mc/world/actor/ai/goal/RollGoal.h | 2 +- src/mc/world/actor/ai/goal/SendEventStage.h | 2 +- src/mc/world/actor/ai/goal/SitGoal.h | 4 +- .../actor/ai/goal/SkeletonHorseTrapGoal.h | 2 +- src/mc/world/actor/ai/goal/SleepGoal.h | 2 +- src/mc/world/actor/ai/goal/SleepState.h | 2 +- .../actor/ai/goal/SlimeKeepOnJumpingGoal.h | 2 +- src/mc/world/actor/ai/goal/SnackGoal.h | 2 +- src/mc/world/actor/ai/goal/SniffGoal.h | 2 +- .../actor/ai/goal/StayNearNoteblockGoal.h | 2 +- src/mc/world/actor/ai/goal/StompAttackGoal.h | 4 +- src/mc/world/actor/ai/goal/StompBlockGoal.h | 10 +- src/mc/world/actor/ai/goal/SwimIdleGoal.h | 2 +- .../world/actor/ai/goal/SwimUpForBreathGoal.h | 2 +- src/mc/world/actor/ai/goal/SwimWanderGoal.h | 2 +- .../world/actor/ai/goal/SwimWithEntityGoal.h | 4 +- .../actor/ai/goal/TargetWhenPushedGoal.h | 6 +- .../world/actor/ai/goal/TeleportToOwnerGoal.h | 2 +- .../actor/ai/goal/TimerActorFlagBaseGoal.h | 2 +- .../world/actor/ai/goal/VexRandomMoveGoal.h | 2 +- .../actor/ai/goal/VillagerCelebrationGoal.h | 2 +- .../RamGoalNoItemDropper.h | 6 +- .../world/actor/ai/goal/target/TargetGoal.h | 4 +- .../actor/ai/navigation/HoverPathNavigation.h | 4 +- .../actor/ai/navigation/PathNavigation.h | 6 +- src/mc/world/actor/ai/util/ExpiringTick.h | 2 +- src/mc/world/actor/ai/village/POIInstance.h | 8 +- src/mc/world/actor/ai/village/Raid.h | 2 +- src/mc/world/actor/ai/village/Village.h | 10 +- .../world/actor/ai/village/VillageManager.h | 4 +- src/mc/world/actor/animal/Animal.h | 2 +- src/mc/world/actor/animal/Axolotl.h | 2 +- src/mc/world/actor/animal/Bat.h | 2 +- src/mc/world/actor/animal/Chicken.h | 2 +- src/mc/world/actor/animal/Dolphin.h | 2 +- src/mc/world/actor/animal/Fish.h | 4 +- src/mc/world/actor/animal/GlowSquid.h | 2 +- src/mc/world/actor/animal/Horse.h | 10 +- src/mc/world/actor/animal/IronGolem.h | 6 +- src/mc/world/actor/animal/Llama.h | 2 +- src/mc/world/actor/animal/Parrot.h | 2 +- src/mc/world/actor/animal/Pig.h | 2 +- src/mc/world/actor/animal/PolarBear.h | 2 +- src/mc/world/actor/animal/Pufferfish.h | 2 +- src/mc/world/actor/animal/Squid.h | 4 +- src/mc/world/actor/animal/SquidDiveGoal.h | 6 +- src/mc/world/actor/animal/SquidFleeGoal.h | 6 +- src/mc/world/actor/animal/SquidIdleGoal.h | 4 +- .../animal/SquidMoveAwayFromGroundGoal.h | 8 +- .../world/actor/animal/SquidOutOfWaterGoal.h | 8 +- src/mc/world/actor/animal/Tadpole.h | 2 +- src/mc/world/actor/animal/TropicalFish.h | 2 +- src/mc/world/actor/animal/WaterAnimal.h | 4 +- .../ActorAnimationControllerPlayer.h | 2 +- .../animation/ActorAnimationControllerPtr.h | 4 +- .../ActorAnimationControllerStatePlayer.h | 10 +- .../ActorAnimationGroupParseMetaData.h | 2 +- .../actor/animation/ActorAnimationPlayer.h | 6 +- .../animation/ActorSkeletalAnimationPlayer.h | 8 +- .../animation/ActorSkeletalAnimationPtr.h | 4 +- .../actor/animation/ActorSoundEffectEvent.h | 2 +- .../actor/animation/AnimationComponent.h | 6 +- .../actor/animation/AnimationComponentID.h | 2 +- .../world/actor/animation/BoneOrientation.h | 4 +- .../animation/CommonResourceDefinitionMap.h | 6 +- .../actor/bhave/BehaviorTreeDefinitionPtr.h | 6 +- .../bhave/definition/ActivateToolDefinition.h | 2 +- .../actor/bhave/definition/AttackDefinition.h | 2 +- .../bhave/definition/FindActorDefinition.h | 4 +- .../bhave/definition/FindBlockDefinition.h | 2 +- .../definition/InteractActionDefinition.h | 2 +- .../bhave/definition/InverterDefinition.h | 2 +- .../bhave/definition/LookAtActorDefinition.h | 4 +- .../bhave/definition/LookAtBlockDefinition.h | 2 +- .../definition/RepeatUntilFailureDefinition.h | 2 +- .../bhave/definition/SelectorDefinition.h | 2 +- .../bhave/definition/SequenceDefinition.h | 2 +- .../bhave/definition/WaitTicksDefinition.h | 2 +- .../world/actor/bhave/node/ActivateToolNode.h | 2 +- src/mc/world/actor/bhave/node/AttackNode.h | 2 +- src/mc/world/actor/bhave/node/BehaviorNode.h | 2 +- .../actor/bhave/node/InteractActionNode.h | 2 +- src/mc/world/actor/bhave/node/InverterNode.h | 2 +- .../world/actor/bhave/node/LookAtBlockNode.h | 2 +- .../actor/bhave/node/RepeatUntilFailureNode.h | 2 +- .../actor/bhave/node/SelectorBehaviorNode.h | 2 +- .../actor/bhave/node/SequenceBehaviorNode.h | 2 +- src/mc/world/actor/bhave/node/ShootBowNode.h | 2 +- src/mc/world/actor/boss/WitherBoss.h | 14 +- src/mc/world/actor/global/LightningBolt.h | 8 +- src/mc/world/actor/item/Balloon.h | 2 +- src/mc/world/actor/item/Boat.h | 4 +- src/mc/world/actor/item/ExperienceOrb.h | 6 +- src/mc/world/actor/item/EyeOfEnder.h | 2 +- src/mc/world/actor/item/FallingBlockActor.h | 6 +- .../world/actor/item/FireworksRocketActor.h | 4 +- src/mc/world/actor/item/ItemActor.h | 2 +- src/mc/world/actor/item/Minecart.h | 10 +- src/mc/world/actor/item/MinecartChest.h | 4 +- .../world/actor/item/MinecartCommandBlock.h | 4 +- src/mc/world/actor/item/MinecartHopper.h | 6 +- src/mc/world/actor/item/MinecartRideable.h | 2 +- src/mc/world/actor/item/MinecartTNT.h | 2 +- src/mc/world/actor/item/PrimedTnt.h | 10 +- src/mc/world/actor/item/TripodCamera.h | 6 +- src/mc/world/actor/monster/Blaze.h | 4 +- src/mc/world/actor/monster/Creaking.h | 2 +- src/mc/world/actor/monster/Creeper.h | 2 +- src/mc/world/actor/monster/EnderCrystal.h | 4 +- src/mc/world/actor/monster/EnderDragon.h | 6 +- src/mc/world/actor/monster/EnderMan.h | 4 +- .../actor/monster/EndermanTakeBlockGoal.h | 8 +- src/mc/world/actor/monster/EvocationIllager.h | 2 +- src/mc/world/actor/monster/Ghast.h | 4 +- src/mc/world/actor/monster/Guardian.h | 8 +- src/mc/world/actor/monster/HumanoidMonster.h | 6 +- src/mc/world/actor/monster/LavaSlime.h | 10 +- src/mc/world/actor/monster/Monster.h | 4 +- src/mc/world/actor/monster/Phantom.h | 2 +- src/mc/world/actor/monster/PigZombie.h | 4 +- src/mc/world/actor/monster/Piglin.h | 2 +- src/mc/world/actor/monster/Pillager.h | 4 +- src/mc/world/actor/monster/Shulker.h | 10 +- src/mc/world/actor/monster/Silverfish.h | 4 +- src/mc/world/actor/monster/Skeleton.h | 2 +- src/mc/world/actor/monster/Slime.h | 2 +- src/mc/world/actor/monster/Spider.h | 8 +- src/mc/world/actor/monster/Vex.h | 6 +- .../world/actor/monster/VindicationIllager.h | 2 +- src/mc/world/actor/monster/Warden.h | 6 +- src/mc/world/actor/monster/Zombie.h | 4 +- src/mc/world/actor/npc/ActionContainer.h | 6 +- src/mc/world/actor/npc/ActionValue.h | 6 +- src/mc/world/actor/npc/Button.h | 4 +- src/mc/world/actor/npc/INpcDialogueData.h | 4 +- src/mc/world/actor/npc/NpcSceneDialogueData.h | 10 +- src/mc/world/actor/npc/StoredCommand.h | 2 +- src/mc/world/actor/npc/UrlAction.h | 2 +- src/mc/world/actor/npc/VillagerBase.h | 6 +- src/mc/world/actor/npc/VillagerV2.h | 2 +- .../actor/npc/allay/AllayVibrationConfig.h | 2 +- src/mc/world/actor/npc/npc.h | 16 +- src/mc/world/actor/player/Abilities.h | 2 +- src/mc/world/actor/player/Ability.h | 4 +- src/mc/world/actor/player/Inventory.h | 2 +- src/mc/world/actor/player/LayeredAbilities.h | 10 +- .../world/actor/player/PermissionsHandler.h | 10 +- src/mc/world/actor/player/Player.h | 102 ++-- .../world/actor/player/PlayerDeathManager.h | 2 +- src/mc/world/actor/player/PlayerInventory.h | 4 +- src/mc/world/actor/player/PlayerItemInUse.h | 4 +- .../actor/player/PlayerRespawnTelemetryData.h | 8 +- src/mc/world/actor/player/SerializedSkin.h | 2 +- src/mc/world/actor/projectile/AbstractArrow.h | 4 +- .../world/actor/projectile/DragonFireball.h | 4 +- src/mc/world/actor/projectile/EvocationFang.h | 4 +- .../world/actor/projectile/ExperiencePotion.h | 4 +- src/mc/world/actor/projectile/Fireball.h | 10 +- src/mc/world/actor/projectile/LlamaSpit.h | 4 +- .../actor/projectile/PredictableProjectile.h | 2 +- .../actor/projectile/ProjectileFactory.h | 2 +- src/mc/world/actor/projectile/ShulkerBullet.h | 8 +- src/mc/world/actor/projectile/SmallFireball.h | 2 +- src/mc/world/actor/projectile/Snowball.h | 4 +- src/mc/world/actor/projectile/Throwable.h | 4 +- src/mc/world/actor/projectile/ThrownEgg.h | 4 +- .../world/actor/projectile/ThrownEnderpearl.h | 4 +- src/mc/world/actor/projectile/ThrownIceBomb.h | 4 +- src/mc/world/actor/projectile/WitherSkull.h | 4 +- src/mc/world/actor/provider/ActorCollision.h | 10 +- .../world/actor/provider/ActorEnvironment.h | 2 +- src/mc/world/actor/provider/ActorEquipment.h | 4 +- src/mc/world/actor/provider/ActorMovement.h | 2 +- src/mc/world/actor/provider/HorseMovement.h | 4 +- src/mc/world/actor/provider/MobJump.h | 2 +- src/mc/world/actor/provider/PlayerMovement.h | 2 +- .../actor/provider/SynchedActorDataAccess.h | 8 +- .../world/actor/selectors/ActorSelectorArgs.h | 58 +- .../selectors/CodeBuilderSelectorFilter.h | 2 +- .../world/actor/state/PropertyGroupManager.h | 2 +- src/mc/world/actor/state/PropertyMetadata.h | 2 +- src/mc/world/actor/state/PropertySyncData.h | 2 +- src/mc/world/attribute/Amplifier.h | 6 +- src/mc/world/attribute/Attribute.h | 4 +- src/mc/world/attribute/AttributeBuff.h | 12 +- src/mc/world/attribute/AttributeInstance.h | 4 +- .../attribute/AttributeInstanceDelegate.h | 6 +- src/mc/world/attribute/AttributeModifier.h | 12 +- src/mc/world/attribute/BaseAttributeMap.h | 8 +- .../attribute/InstantaneousAttributeBuff.h | 4 +- .../world/attribute/TemporalAttributeBuff.h | 6 +- src/mc/world/containers/ContainerRegistry.h | 2 +- .../containers/DynamicTrackedContainer.h | 2 +- src/mc/world/containers/FullContainerName.h | 13 +- src/mc/world/containers/SlotData.h | 4 +- .../managers/controllers/BlockReducer.h | 2 +- .../controllers/ChemistryIngredient.h | 2 +- .../models/AnvilContainerManagerModel.h | 4 +- .../models/CartographyContainerManagerModel.h | 4 +- .../CompoundCreatorContainerManagerModel.h | 8 +- .../managers/models/ContainerManagerModel.h | 10 +- .../managers/models/DynamicContainerManager.h | 6 +- .../ElementConstructorContainerManagerModel.h | 8 +- .../models/EnchantingContainerManagerModel.h | 6 +- .../models/GrindstoneContainerManagerModel.h | 4 +- .../models/HudContainerManagerModel.h | 4 +- .../models/LabTableContainerManagerModel.h | 4 +- .../models/LevelContainerManagerModel.h | 4 +- .../models/LoomContainerManagerModel.h | 4 +- .../MaterialReducerContainerManagerModel.h | 10 +- .../SmithingTableContainerManagerModel.h | 4 +- .../models/StonecutterContainerManagerModel.h | 4 +- .../models/Trade2ContainerManagerModel.h | 2 +- .../models/TradeContainerManagerModel.h | 2 +- .../world/containers/models/ContainerModel.h | 28 +- .../containers/models/HudContainerModel.h | 6 +- .../models/InventoryContainerModel.h | 6 +- .../containers/models/LevelContainerModel.h | 2 +- .../models/PlayerUIContainerModelBase.h | 4 +- .../models/StorageItemContainerModel.h | 6 +- src/mc/world/effect/EffectDuration.h | 4 +- src/mc/world/effect/InstantaneousMobEffect.h | 2 +- src/mc/world/effect/MobEffect.h | 24 +- src/mc/world/effect/MobEffectInstance.h | 10 +- src/mc/world/events/ActorAddEffectEvent.h | 2 +- src/mc/world/events/ActorAttackEvent.h | 2 +- .../events/ActorDefinitionStartedEvent.h | 2 +- .../events/ActorDefinitionTriggeredEvent.h | 2 +- src/mc/world/events/ActorDiedEvent.h | 2 +- src/mc/world/events/ActorDroppedItemEvent.h | 2 +- src/mc/world/events/ActorEquippedArmorEvent.h | 2 +- src/mc/world/events/ActorEventCoordinator.h | 4 +- src/mc/world/events/ActorEventListener.h | 36 +- src/mc/world/events/ActorHealthChangedEvent.h | 2 +- src/mc/world/events/ActorHurtEvent.h | 2 +- src/mc/world/events/ActorKilledEvent.h | 2 +- src/mc/world/events/ActorRemoveEffectEvent.h | 2 +- src/mc/world/events/ActorRemovedEvent.h | 2 +- src/mc/world/events/ActorStartRidingEvent.h | 2 +- src/mc/world/events/ActorStopRidingEvent.h | 2 +- .../events/BeforeWatchdogTerminateEvent.h | 2 +- src/mc/world/events/BlockEventCoordinator.h | 4 +- .../world/events/BlockEventDispatcherToken.h | 4 +- src/mc/world/events/BlockEventListener.h | 22 +- src/mc/world/events/BlockPatternPostEvent.h | 2 +- src/mc/world/events/BlockPatternPreEvent.h | 2 +- src/mc/world/events/BlockRandomTickEvent.h | 2 +- src/mc/world/events/BlockSourceHandle.h | 2 +- .../world/events/BlockTryPlaceByPlayerEvent.h | 2 +- src/mc/world/events/ButtonPushEvent.h | 2 +- src/mc/world/events/ChestBlockTryPairEvent.h | 2 +- src/mc/world/events/DiagnosticsEvent.h | 2 +- src/mc/world/events/IncomingPacketEvent.h | 2 +- src/mc/world/events/ItemCompleteUseEvent.h | 2 +- src/mc/world/events/ItemEventCoordinator.h | 2 +- src/mc/world/events/ItemEventListener.h | 32 +- src/mc/world/events/ItemReleaseUseEvent.h | 2 +- src/mc/world/events/ItemStartUseEvent.h | 2 +- src/mc/world/events/ItemStartUseOnEvent.h | 2 +- src/mc/world/events/ItemStopUseEvent.h | 2 +- src/mc/world/events/ItemStopUseOnEvent.h | 2 +- src/mc/world/events/ItemUseEvent.h | 2 +- src/mc/world/events/ItemUseOnEvent.h | 2 +- src/mc/world/events/KnockBackEvent.h | 2 +- src/mc/world/events/LevelEventCoordinator.h | 4 +- src/mc/world/events/LevelEventListener.h | 18 +- .../world/events/LevelStartLeaveGameEvent.h | 2 +- src/mc/world/events/LeverActionEvent.h | 2 +- src/mc/world/events/MountTamingEvent.h | 2 +- src/mc/world/events/OutgoingPacketEvent.h | 2 +- src/mc/world/events/PistonActionEvent.h | 2 +- src/mc/world/events/PlayerAddEvent.h | 2 +- src/mc/world/events/PlayerAddExpEvent.h | 2 +- src/mc/world/events/PlayerAddLevelEvent.h | 2 +- src/mc/world/events/PlayerDestroyBlockEvent.h | 2 +- .../events/PlayerDimensionChangeAfterEvent.h | 2 +- .../events/PlayerDimensionChangeBeforeEvent.h | 2 +- src/mc/world/events/PlayerDisconnectEvent.h | 2 +- src/mc/world/events/PlayerDropItemEvent.h | 2 +- src/mc/world/events/PlayerEatFoodEvent.h | 2 +- src/mc/world/events/PlayerEmoteEvent.h | 2 +- src/mc/world/events/PlayerEventCoordinator.h | 4 +- src/mc/world/events/PlayerEventListener.h | 78 +-- src/mc/world/events/PlayerFormCloseEvent.h | 2 +- .../world/events/PlayerGameModeChangeEvent.h | 2 +- .../events/PlayerGetExperienceOrbEvent.h | 2 +- src/mc/world/events/PlayerInitialSpawnEvent.h | 2 +- .../world/events/PlayerInputModeChangeEvent.h | 2 +- ...PlayerInputPermissionCategoryChangeEvent.h | 2 +- src/mc/world/events/PlayerInteractEvent.h | 2 +- .../PlayerInteractWithEntityAfterEvent.h | 2 +- .../PlayerInteractWithEntityBeforeEvent.h | 2 +- .../world/events/PlayerOpenContainerEvent.h | 2 +- src/mc/world/events/PlayerRespawnEvent.h | 2 +- src/mc/world/events/PlayerSayCommandEvent.h | 2 +- src/mc/world/events/PlayerScriptInputEvent.h | 2 +- src/mc/world/events/PlayerShootArrowEvent.h | 2 +- .../events/PlayerUpdateInteractionEvent.h | 2 +- src/mc/world/events/PlayerUseNameTagEvent.h | 2 +- src/mc/world/events/PressurePlatePopEvent.h | 2 +- src/mc/world/events/PressurePlatePushEvent.h | 2 +- src/mc/world/events/ScoreboardEventListener.h | 8 +- .../world/events/ScriptCommandMessageEvent.h | 2 +- .../events/ScriptDeferredEventCoordinator.h | 2 +- .../events/ScriptDeferredEventListener.h | 22 +- .../world/events/ScriptModuleShutdownEvent.h | 2 +- .../world/events/ScriptingEventCoordinator.h | 4 +- src/mc/world/events/ScriptingEventListener.h | 2 +- .../events/ServerInstanceEventCoordinator.h | 2 +- .../events/ServerInstanceEventListener.h | 24 +- .../events/ServerInstanceLeaveGameDoneEvent.h | 2 +- .../events/ServerInstanceNotificationEvent.h | 2 +- .../ServerInstanceRequestResourceReload.h | 2 +- .../events/ServerNetworkEventCoordinator.h | 4 +- .../world/events/ServerNetworkEventListener.h | 6 +- .../ServerNetworkGameplayNotificationEvent.h | 2 +- src/mc/world/events/TargetBlockHitEvent.h | 2 +- src/mc/world/events/gameevents/GameEvent.h | 2 +- .../events/gameevents/GameEventListener.h | 2 +- .../world/events/gameevents/GameEventPair.h | 2 +- .../events/gameevents/VibrationListener.h | 30 +- .../gameevents/VibrationListenerConfig.h | 4 +- src/mc/world/filters/ActorBoolPropertyTest.h | 6 +- src/mc/world/filters/ActorEnumPropertyTest.h | 2 +- src/mc/world/filters/ActorFloatPropertyTest.h | 6 +- src/mc/world/filters/ActorHasAbilityTest.h | 2 +- .../world/filters/ActorHasAllSlotsEmptyTest.h | 6 +- .../world/filters/ActorHasAnySlotEmptyTest.h | 6 +- src/mc/world/filters/ActorHasComponentTest.h | 2 +- .../world/filters/ActorHasContainerOpenTest.h | 2 +- src/mc/world/filters/ActorHasDamageTest.h | 2 +- .../filters/ActorHasDamagedEquipmentTest.h | 2 +- src/mc/world/filters/ActorHasEquipmentTest.h | 2 +- src/mc/world/filters/ActorHasMobEffect.h | 2 +- src/mc/world/filters/ActorHasPropertyTest.h | 6 +- .../world/filters/ActorHasRangedWeaponTest.h | 2 +- src/mc/world/filters/ActorHasSneakHeldTest.h | 2 +- src/mc/world/filters/ActorHasTagTest.h | 2 +- src/mc/world/filters/ActorHasTargetTest.h | 2 +- src/mc/world/filters/ActorInBlockTest.h | 2 +- src/mc/world/filters/ActorInCaravanTest.h | 2 +- src/mc/world/filters/ActorInCloudsTest.h | 2 +- .../world/filters/ActorInContactWithWater.h | 2 +- src/mc/world/filters/ActorInLavaTest.h | 2 +- src/mc/world/filters/ActorInNetherTest.h | 2 +- src/mc/world/filters/ActorInOverworldTest.h | 2 +- src/mc/world/filters/ActorInVillageTest.h | 2 +- src/mc/world/filters/ActorInWaterOrRainTest.h | 2 +- src/mc/world/filters/ActorInWaterTest.h | 2 +- src/mc/world/filters/ActorInWeatherTest.h | 2 +- src/mc/world/filters/ActorIntPropertyTest.h | 6 +- .../world/filters/ActorIsAvoidingMobsTest.h | 2 +- src/mc/world/filters/ActorIsBabyTest.h | 2 +- src/mc/world/filters/ActorIsClimbingTest.h | 2 +- src/mc/world/filters/ActorIsColorTest.h | 2 +- src/mc/world/filters/ActorIsFamilyTest.h | 2 +- src/mc/world/filters/ActorIsImmobileTest.h | 2 +- src/mc/world/filters/ActorIsLeashedTest.h | 2 +- src/mc/world/filters/ActorIsLeashedToTest.h | 2 +- src/mc/world/filters/ActorIsMarkVariantTest.h | 2 +- src/mc/world/filters/ActorIsMovingTest.h | 2 +- src/mc/world/filters/ActorIsOwnerTest.h | 2 +- src/mc/world/filters/ActorIsRidingTest.h | 2 +- src/mc/world/filters/ActorIsSkinIDTest.h | 2 +- src/mc/world/filters/ActorIsSleepingTest.h | 2 +- src/mc/world/filters/ActorIsSneakingTest.h | 2 +- src/mc/world/filters/ActorIsTargetTest.h | 2 +- src/mc/world/filters/ActorIsVariantTest.h | 2 +- src/mc/world/filters/ActorIsVisibleTest.h | 2 +- src/mc/world/filters/ActorOnGroundTest.h | 2 +- src/mc/world/filters/ActorOnLadderTest.h | 2 +- .../world/filters/ActorPassengerCountTest.h | 2 +- src/mc/world/filters/ActorTrustsSubjectTest.h | 2 +- src/mc/world/filters/ActorUndergroundTest.h | 2 +- src/mc/world/filters/ActorUnderwaterTest.h | 2 +- src/mc/world/filters/FilterGroup.h | 4 +- src/mc/world/filters/FilterInput.h | 2 +- src/mc/world/filters/FilterInputDefinition.h | 2 +- src/mc/world/filters/FilterInputs.h | 2 +- src/mc/world/filters/FilterStringMap.h | 2 +- src/mc/world/filters/FilterTest.h | 6 +- src/mc/world/filters/FilterTestAltitude.h | 2 +- src/mc/world/filters/FilterTestBiome.h | 2 +- src/mc/world/filters/FilterTestBiomeHumid.h | 2 +- .../filters/FilterTestBiomeSnowCovered.h | 2 +- src/mc/world/filters/FilterTestBrightness.h | 2 +- src/mc/world/filters/FilterTestClock.h | 2 +- src/mc/world/filters/FilterTestDaytime.h | 2 +- src/mc/world/filters/FilterTestDifficulty.h | 2 +- .../filters/FilterTestDimensionWeather.h | 2 +- .../FilterTestDistanceToNearestPlayer.h | 2 +- .../world/filters/FilterTestHasTradeSupply.h | 2 +- src/mc/world/filters/FilterTestHourlyClock.h | 2 +- .../world/filters/FilterTestMoonIntensity.h | 2 +- src/mc/world/filters/FilterTestMoonPhase.h | 2 +- .../world/filters/FilterTestTemperatureType.h | 2 +- .../filters/FilterTestTemperatureValue.h | 2 +- src/mc/world/filters/SimpleBoolFilterTest.h | 2 +- src/mc/world/filters/SimpleFloatFilterTest.h | 2 +- .../filters/SimpleHashStringFilterTest.h | 4 +- src/mc/world/filters/SimpleIntFilterTest.h | 4 +- src/mc/world/gamemode/GameMode.h | 12 +- src/mc/world/gamemode/SurvivalMode.h | 2 +- src/mc/world/inventory/BaseContainerMenu.h | 14 +- src/mc/world/inventory/CraftingContainer.h | 12 +- src/mc/world/inventory/FillingContainer.h | 12 +- src/mc/world/inventory/InventoryMenu.h | 2 +- .../world/inventory/LockingFillingContainer.h | 4 +- .../network/ContainerScreenContext.h | 4 +- .../inventory/network/ItemStackNetIdVariant.h | 6 +- .../network/ItemStackNetManagerBase.h | 14 +- .../network/ItemStackNetManagerServer.h | 2 +- .../network/ItemStackRequestAction.h | 8 +- .../ItemStackRequestActionBeaconPayment.h | 4 +- .../network/ItemStackRequestActionCreate.h | 2 +- .../network/ItemStackRequestActionHandler.h | 2 +- .../network/ItemStackRequestActionMineBlock.h | 6 +- .../ItemStackRequestActionTransferBase.h | 2 +- .../inventory/network/ItemStackRequestBatch.h | 2 +- .../inventory/network/ItemStackRequestData.h | 17 +- .../network/ItemStackRequestHandlerSlotInfo.h | 2 +- .../inventory/network/ItemTransactionLogger.h | 2 +- .../inventory/network/ScreenHandlerBase.h | 8 +- .../network/crafting/CraftHandlerBase.h | 10 +- .../network/crafting/CraftHandlerTrade.h | 15 +- .../ItemStackRequestActionCraftBase.h | 6 +- .../ItemStackRequestActionCraftGrindstone.h | 4 +- ...CraftNonImplemented_DEPRECATEDASKTYLAING.h | 4 +- .../ItemStackRequestActionCraftRecipeAuto.h | 2 +- ...temStackRequestActionCraftRecipeOptional.h | 2 +- .../simulation/ContainerScreenValidation.h | 4 +- .../ContainerScreenValidationActivate.h | 2 +- .../ContainerValidationCraftResult.h | 2 +- .../simulation/ContainerValidationResult.h | 4 +- .../simulation/ExperienceCostCommitObject.h | 2 +- .../simulation/ExperienceRewardCommitObject.h | 4 +- .../inventory/simulation/RecipeCraftInputs.h | 2 +- .../AnvilContainerScreenValidator.h | 2 +- .../AnvilInputContainerValidation.h | 2 +- .../AnvilMaterialContainerValidation.h | 2 +- .../validation/ArmorContainerValidation.h | 8 +- .../validation/BarrelContainerValidation.h | 2 +- .../BeaconPaymentContainerValidation.h | 8 +- .../BrewingStandFuelContainerValidation.h | 2 +- .../BrewingStandInputContainerValidation.h | 2 +- .../BrewingStandResultContainerValidation.h | 6 +- ...CartographyAdditionalContainerValidation.h | 4 +- .../CartographyContainerScreenValidator.h | 2 +- .../CartographyInputContainerValidation.h | 4 +- ...nedHotbarAndInventoryContainerValidation.h | 7 +- .../CompoundCreatorInputValidation.h | 4 +- .../validation/ContainerScreenValidatorBase.h | 4 +- .../validation/ContainerValidationBase.h | 9 +- .../validation/CrafterContainerValidation.h | 2 +- .../CreatedOutputContainerValidation.h | 8 +- .../validation/CursorContainerValidation.h | 4 +- .../validation/DynamicContainerValidation.h | 6 +- .../EnchantingInputContainerValidation.h | 6 +- .../EnchantingMaterialContainerValidation.h | 2 +- .../FurnaceFuelContainerValidation.h | 2 +- .../FurnaceIngredientContainerValidation.h | 2 +- .../FurnaceResultContainerValidation.h | 2 +- .../GrindstoneAdditionalContainerValidation.h | 4 +- .../GrindstoneInputContainerValidation.h | 4 +- .../HorseEquipContainerValidation.h | 4 +- .../validation/HotbarContainerValidation.h | 7 +- .../validation/InventoryContainerValidation.h | 7 +- .../validation/LabTableInputValidation.h | 4 +- .../validation/LoomDyeContainerValidation.h | 2 +- .../validation/LoomInputContainerValidation.h | 2 +- .../LoomMaterialContainerValidation.h | 2 +- .../MaterialReducerInputValidation.h | 8 +- .../MaterialReducerOutputValidation.h | 6 +- .../validation/OffhandContainerValidation.h | 7 +- .../validation/PreviewContainerValidation.h | 6 +- .../ShulkerBoxContainerValidation.h | 2 +- .../SmithingTableInputContainerValidation.h | 2 +- ...SmithingTableMaterialContainerValidation.h | 2 +- .../StoneCutterContainerScreenValidator.h | 2 +- .../StoneCutterInputContainerValidation.h | 2 +- .../Trade1Ingredient1ContainerValidation.h | 2 +- .../Trade1Ingredient2ContainerValidation.h | 2 +- .../Trade2Ingredient1ContainerValidation.h | 2 +- .../Trade2Ingredient2ContainerValidation.h | 2 +- .../transaction/ComplexInventoryTransaction.h | 8 +- .../transaction/InventoryTransaction.h | 2 +- .../InventoryTransactionItemGroup.h | 2 +- .../transaction/InventoryTransactionManager.h | 4 +- .../ItemReleaseInventoryTransaction.h | 4 +- .../transaction/ItemUseInventoryTransaction.h | 2 +- .../ItemUseOnActorInventoryTransaction.h | 4 +- src/mc/world/item/ActorPlacerItem.h | 12 +- src/mc/world/item/ArmorStandItem.h | 4 +- src/mc/world/item/AuxDataBlockItem.h | 2 +- src/mc/world/item/BalloonItem.h | 6 +- src/mc/world/item/BambooItem.h | 2 +- src/mc/world/item/BannerItem.h | 10 +- src/mc/world/item/BannerPatternItem.h | 4 +- src/mc/world/item/BedItem.h | 4 +- src/mc/world/item/BlockItem.h | 2 +- src/mc/world/item/BlockPlanterItem.h | 8 +- src/mc/world/item/BoatItem.h | 8 +- src/mc/world/item/BoneMealItem.h | 8 +- src/mc/world/item/BottleItem.h | 2 +- src/mc/world/item/BowItem.h | 4 +- src/mc/world/item/BrushItem.h | 6 +- src/mc/world/item/BucketItem.h | 10 +- src/mc/world/item/CameraItemComponentLegacy.h | 10 +- src/mc/world/item/CandleBlockItem.h | 4 +- src/mc/world/item/CarrotOnAStickItem.h | 8 +- src/mc/world/item/ChalkboardItem.h | 2 +- src/mc/world/item/ChemistryBlockItem.h | 2 +- src/mc/world/item/ChemistryItem.h | 4 +- src/mc/world/item/ChemistryStickItem.h | 10 +- src/mc/world/item/ClockSpriteCalculator.h | 2 +- src/mc/world/item/CoalItem.h | 4 +- src/mc/world/item/CocoaBeanItem.h | 8 +- src/mc/world/item/CompassSpriteCalculator.h | 2 +- src/mc/world/item/ComplexAliasDescriptor.h | 2 +- src/mc/world/item/ComplexItem.h | 4 +- src/mc/world/item/CompoundItem.h | 4 +- src/mc/world/item/CoralFanBlockItem.h | 6 +- src/mc/world/item/CrossbowItem.h | 4 +- src/mc/world/item/DeferredDescriptor.h | 10 +- src/mc/world/item/DiggerItem.h | 6 +- src/mc/world/item/DyePowderItem.h | 8 +- src/mc/world/item/EggItem.h | 2 +- src/mc/world/item/EmptyMapItem.h | 2 +- src/mc/world/item/EnchantedBookItem.h | 6 +- src/mc/world/item/EndCrystalItem.h | 4 +- src/mc/world/item/EnderEyeItem.h | 2 +- src/mc/world/item/EnderpearlItem.h | 4 +- src/mc/world/item/ExperiencePotionItem.h | 6 +- src/mc/world/item/FertilizerItem.h | 6 +- src/mc/world/item/FireChargeItem.h | 2 +- src/mc/world/item/FireworkChargeItem.h | 6 +- src/mc/world/item/FireworksItem.h | 2 +- src/mc/world/item/FishingRodItem.h | 16 +- src/mc/world/item/FlintAndSteelItem.h | 6 +- src/mc/world/item/FoodItemComponentLegacy.h | 12 +- src/mc/world/item/FrogSpawnBlockItem.h | 4 +- src/mc/world/item/GlowStickItem.h | 2 +- src/mc/world/item/GoatHornItem.h | 4 +- .../world/item/HardcodedCreativeItemsHelper.h | 2 +- src/mc/world/item/HatchetItem.h | 2 +- src/mc/world/item/HoeItem.h | 2 +- src/mc/world/item/HorseArmorItem.h | 6 +- src/mc/world/item/HumanoidArmorItem.h | 8 +- src/mc/world/item/IceBombItem.h | 4 +- src/mc/world/item/InternalItemDescriptor.h | 2 +- src/mc/world/item/Item.h | 176 +++--- src/mc/world/item/ItemContext.h | 2 +- src/mc/world/item/ItemDescriptor.h | 12 +- src/mc/world/item/ItemDescriptorCount.h | 4 +- src/mc/world/item/ItemGroup.h | 2 +- src/mc/world/item/ItemInstance.h | 4 +- src/mc/world/item/ItemStack.h | 4 +- src/mc/world/item/ItemStackBase.h | 26 +- src/mc/world/item/ItemTag.h | 2 +- src/mc/world/item/ItemTagDescriptor.h | 4 +- src/mc/world/item/LeavesBlockItem.h | 4 +- src/mc/world/item/LegacyDyeItem.h | 2 +- src/mc/world/item/LingeringPotionItem.h | 14 +- src/mc/world/item/MapItem.h | 4 +- src/mc/world/item/MedicineItem.h | 4 +- src/mc/world/item/MolangDescriptor.h | 2 +- .../world/item/NetworkItemStackDescriptor.h | 2 +- src/mc/world/item/OminousBottleItem.h | 11 +- src/mc/world/item/PickaxeItem.h | 2 +- src/mc/world/item/PotionItem.h | 4 +- src/mc/world/item/PumpkinBlockItem.h | 4 +- src/mc/world/item/RangedWeaponItem.h | 6 +- src/mc/world/item/RapidFertilizerItem.h | 2 +- src/mc/world/item/RecordItem.h | 6 +- src/mc/world/item/ResolvedItemIconInfo.h | 2 +- src/mc/world/item/SeaPickleBlockItem.h | 6 +- src/mc/world/item/SeedItemComponentLegacy.h | 2 +- src/mc/world/item/ShearsItem.h | 4 +- src/mc/world/item/ShieldItem.h | 10 +- src/mc/world/item/SkullItem.h | 8 +- src/mc/world/item/SnowballItem.h | 10 +- src/mc/world/item/SparklerItem.h | 8 +- src/mc/world/item/SplashPotionItem.h | 4 +- src/mc/world/item/SpyglassItem.h | 2 +- src/mc/world/item/SuspiciousStewItem.h | 2 +- src/mc/world/item/TopSnowBlockItem.h | 2 +- src/mc/world/item/TridentItem.h | 16 +- src/mc/world/item/TropicalFishInfo.h | 2 +- src/mc/world/item/WarpedFungusOnAStickItem.h | 6 +- src/mc/world/item/WaterLilyBlockItem.h | 8 +- src/mc/world/item/WeaponItem.h | 14 +- src/mc/world/item/WolfArmorItem.h | 4 +- src/mc/world/item/WritableBookItem.h | 2 +- src/mc/world/item/WrittenBookItem.h | 4 +- src/mc/world/item/alchemy/Potion.h | 27 +- src/mc/world/item/alchemy/PotionBrewing.h | 14 +- .../components/AllowOffHandItemComponent.h | 2 +- ...ChargeableItemComponentLegacyFactoryData.h | 2 +- src/mc/world/item/components/ComponentItem.h | 32 +- ...nentItemDeprecatedComponentData_v1_20_30.h | 2 +- .../ComponentItemDescriptionData_v1_20.h | 2 +- .../ComponentItemMenuCategoryData_v1_20_20.h | 2 +- .../item/components/CooldownItemComponent.h | 2 +- .../CustomComponentsItemComponent.h | 2 +- .../item/components/DiggerItemComponent.h | 2 +- .../item/components/DurabilityItemComponent.h | 4 +- .../item/components/DyeableItemComponent.h | 6 +- .../components/EnchantableItemComponent.h | 4 +- .../world/item/components/FoodItemComponent.h | 6 +- .../components/HoverTextColorItemComponent.h | 2 +- .../IItemComponentLegacyFactoryData.h | 2 +- .../IconItemComponentLegacyFactoryData.h | 2 +- .../components/InteractButtonItemComponent.h | 6 +- src/mc/world/item/components/ItemComponent.h | 14 +- ...LegacyOnCompleteTriggerItemComponentData.h | 2 +- .../LegacyOnConsumeTriggerItemComponentData.h | 2 +- ...LegacyOnHitActorTriggerItemComponentData.h | 2 +- ...LegacyOnHitBlockTriggerItemComponentData.h | 2 +- ...egacyOnHurtActorTriggerItemComponentData.h | 2 +- .../LegacyOnUseTriggerItemComponentData.h | 2 +- src/mc/world/item/components/MobEffectPtr.h | 13 +- .../item/components/OnUseItemComponent.h | 6 +- .../OnUseOnItemComponentLegacyFactoryData.h | 6 +- .../item/components/PlanterItemComponent.h | 2 +- .../item/components/RecordItemComponent.h | 6 +- .../world/item/components/RepairItemResult.h | 2 +- .../item/components/ShooterItemComponent.h | 2 +- .../item/components/StorageItemComponent.h | 12 +- .../item/components/WearableItemComponent.h | 2 +- .../publisher_item_component/OnUseOn.h | 2 +- .../item/crafting/BannerAddPatternRecipe.h | 8 +- .../item/crafting/BannerDuplicateRecipe.h | 8 +- .../world/item/crafting/BookCloningRecipe.h | 8 +- .../world/item/crafting/DecoratedPotRecipe.h | 8 +- .../world/item/crafting/ExternalRecipeStore.h | 2 +- src/mc/world/item/crafting/FireworksRecipe.h | 12 +- src/mc/world/item/crafting/MapCloningRecipe.h | 8 +- .../world/item/crafting/MapExtendingRecipe.h | 8 +- src/mc/world/item/crafting/MapLockingRecipe.h | 8 +- .../world/item/crafting/MapUpgradingRecipe.h | 8 +- src/mc/world/item/crafting/MultiRecipe.h | 6 +- src/mc/world/item/crafting/Recipe.h | 18 +- src/mc/world/item/crafting/RecipeIngredient.h | 2 +- src/mc/world/item/crafting/Recipes.h | 6 +- src/mc/world/item/crafting/RepairItemRecipe.h | 8 +- src/mc/world/item/crafting/ShapedRecipe.h | 8 +- src/mc/world/item/crafting/ShapelessRecipe.h | 6 +- src/mc/world/item/crafting/ShieldRecipe.h | 10 +- .../item/crafting/SmithingTransformRecipe.h | 6 +- .../world/item/crafting/SmithingTrimRecipe.h | 8 +- src/mc/world/item/enchanting/BreachEnchant.h | 8 +- .../item/enchanting/CurseBindingEnchant.h | 6 +- .../item/enchanting/CurseVanishingEnchant.h | 6 +- src/mc/world/item/enchanting/DensityEnchant.h | 2 +- src/mc/world/item/enchanting/DiggingEnchant.h | 2 +- src/mc/world/item/enchanting/Enchant.h | 38 +- src/mc/world/item/enchanting/EnchantUtils.h | 2 +- .../item/enchanting/EnchantmentInstance.h | 17 +- src/mc/world/item/enchanting/FishingEnchant.h | 6 +- .../item/enchanting/FrostWalkerEnchant.h | 8 +- src/mc/world/item/enchanting/ItemEnchants.h | 12 +- src/mc/world/item/enchanting/LootEnchant.h | 6 +- .../item/enchanting/MeleeWeaponEnchant.h | 2 +- src/mc/world/item/enchanting/MendingEnchant.h | 4 +- .../world/item/enchanting/ProtectionEnchant.h | 2 +- .../world/item/enchanting/SoulSpeedEnchant.h | 10 +- .../world/item/enchanting/SwiftSneakEnchant.h | 10 +- .../enchanting/TridentChannelingEnchant.h | 6 +- .../item/enchanting/TridentImpalerEnchant.h | 2 +- .../item/enchanting/TridentLoyaltyEnchant.h | 4 +- .../item/enchanting/TridentRiptideEnchant.h | 4 +- .../world/item/enchanting/WindBurstEnchant.h | 12 +- src/mc/world/item/registry/ArmorTrim.h | 6 +- .../world/item/registry/CreativeGroupInfo.h | 21 +- .../world/item/registry/CreativeItemEntry.h | 23 +- .../item/registry/CreativeItemGroupCategory.h | 19 +- .../item/registry/CreativeItemRegistry.h | 16 +- src/mc/world/item/registry/ItemRegistry.h | 71 ++- src/mc/world/item/registry/ItemRegistryRef.h | 17 +- .../item/registry/TrimMaterialRegistry.h | 2 +- src/mc/world/item/registry/TrimPattern.h | 2 +- src/mc/world/item/trading/MerchantRecipe.h | 16 +- src/mc/world/item/trading/TradeTableData.h | 2 +- .../world/item/trading/TradeTableDataLoader.h | 2 +- .../world/level/ActorDimensionTransferProxy.h | 2 +- src/mc/world/level/ActorManager.h | 10 +- src/mc/world/level/ActorRuntimeIDManager.h | 2 +- src/mc/world/level/BedrockSpawner.h | 10 +- src/mc/world/level/BiomeFilterGroup.h | 2 +- src/mc/world/level/BlockActorLevelListener.h | 2 +- src/mc/world/level/BlockHashPalette.h | 2 +- src/mc/world/level/BlockPalette.h | 2 +- src/mc/world/level/BlockPatternBuilder.h | 2 +- src/mc/world/level/BlockPosIterator.h | 10 +- src/mc/world/level/BlockSource.h | 28 +- src/mc/world/level/BlockSourceListener.h | 14 +- src/mc/world/level/BlockTickingQueue.h | 4 +- src/mc/world/level/BlockVolumeTarget.h | 26 +- .../level/BossEventSubscriptionManager.h | 2 +- src/mc/world/level/CachedChunkBlockSource.h | 2 +- src/mc/world/level/ClassroomModeListener.h | 12 +- src/mc/world/level/ClientActorManagerProxy.h | 4 +- .../level/ClientEventCoordinatorManager.h | 6 +- src/mc/world/level/ClipParameters.h | 2 +- src/mc/world/level/CommandManager.h | 10 +- src/mc/world/level/DimensionConversionData.h | 4 +- src/mc/world/level/DimensionFactory.h | 2 +- src/mc/world/level/DimensionManager.h | 8 +- .../world/level/EducationLocalLevelSettings.h | 4 +- src/mc/world/level/EducationSettingsManager.h | 2 +- src/mc/world/level/EntitySystemsManager.h | 2 +- src/mc/world/level/EventCoordinatorManager.h | 12 +- src/mc/world/level/Explosion.h | 6 +- src/mc/world/level/ExternalLinkSettings.h | 2 +- src/mc/world/level/FileArchiver.h | 4 +- src/mc/world/level/GameDataSaveTimer.h | 10 +- src/mc/world/level/GameplayUserManager.h | 10 +- src/mc/world/level/GameplayUserManagerProxy.h | 4 +- src/mc/world/level/IBlockWorldGenAPI.h | 4 +- src/mc/world/level/ILevel.h | 6 +- .../world/level/ILevelSoundManagerConnector.h | 2 +- src/mc/world/level/Level.h | 216 +++---- .../world/level/LevelChunkMetaDataManager.h | 2 +- src/mc/world/level/LevelEventManager.h | 4 +- src/mc/world/level/LevelListener.h | 34 +- src/mc/world/level/LevelRandom.h | 6 +- src/mc/world/level/LevelSeed64.h | 2 +- src/mc/world/level/LevelSettings.h | 80 +-- src/mc/world/level/LevelSoundManager.h | 10 +- src/mc/world/level/MapDataManager.h | 2 +- src/mc/world/level/MobEvent.h | 8 +- src/mc/world/level/PhotoManager.h | 4 +- .../level/PlayerDimensionTransferProxy.h | 2 +- .../world/level/PlayerDimensionTransferer.h | 2 +- src/mc/world/level/PlayerListManager.h | 2 +- src/mc/world/level/PlayerSleepManager.h | 4 +- src/mc/world/level/PortalShape.h | 4 +- src/mc/world/level/PositionTrackingId.h | 4 +- src/mc/world/level/ScatterParams.h | 2 +- .../level/ServerEventCoordinatorManager.h | 6 +- src/mc/world/level/SpawnSettings.h | 2 +- src/mc/world/level/TempEPtrManager.h | 2 +- src/mc/world/level/TickDeltaTimeManager.h | 4 +- .../level/TransactionalWorldBlockTarget.h | 22 +- src/mc/world/level/TrialSpawner.h | 4 +- src/mc/world/level/UniqueIDManager.h | 2 +- .../level/VanillaActorEventListenerManager.h | 2 +- src/mc/world/level/Weather.h | 10 +- src/mc/world/level/WorldBlockTarget.h | 16 +- src/mc/world/level/WorldGenContext.h | 2 +- src/mc/world/level/biome/Biome.h | 8 +- src/mc/world/level/biome/BiomeManager.h | 2 +- src/mc/world/level/biome/BiomeSource3d.h | 2 +- src/mc/world/level/biome/MobSpawnHerdInfo.h | 2 +- src/mc/world/level/biome/MobSpawnRules.h | 28 +- .../world/level/biome/MobSpawnerPermutation.h | 2 +- src/mc/world/level/biome/RTree.h | 4 +- src/mc/world/level/biome/TerrainShaper.h | 8 +- ...tinoiseGenerationRulesBiomeComponentGlue.h | 2 +- .../component_glue/TagsBiomeComponentGlue.h | 2 +- .../TheEndSurfaceBiomeComponentGlue.h | 2 +- .../biome/components/BiomeComponentStorage.h | 4 +- .../SurfaceMaterialAdjustmentAttributes.h | 2 +- .../SurfaceMaterialAdjustmentEvaluated.h | 2 +- .../level/biome/glue/BiomeJsonDocumentGlue.h | 2 +- .../biome/registry/BiomeComponentFactory.h | 2 +- .../level/biome/registry/BiomeRegistry.h | 8 +- .../UpgraderFrom_v1_13_To_v1_20_60.h | 6 +- src/mc/world/level/biome/source/BiomeArea.h | 2 +- .../level/biome/source/FixedBiomeSource.h | 6 +- .../TheEndSurfaceBuilder.h | 2 +- .../world/level/block/AbstractCandleBlock.h | 18 +- src/mc/world/level/block/ActivatorRailBlock.h | 2 +- src/mc/world/level/block/AirBlock.h | 32 +- src/mc/world/level/block/AmethystBlock.h | 4 +- .../world/level/block/AmethystClusterBlock.h | 8 +- src/mc/world/level/block/AnvilBlock.h | 20 +- src/mc/world/level/block/AzaleaBlock.h | 8 +- src/mc/world/level/block/BambooSaplingBlock.h | 14 +- src/mc/world/level/block/BambooStalkBlock.h | 12 +- src/mc/world/level/block/BannerBlock.h | 8 +- src/mc/world/level/block/BarrelBlock.h | 11 +- src/mc/world/level/block/BarrierBlock.h | 2 +- .../level/block/BaseBlockLocationIterator.h | 6 +- .../level/block/BasePressurePlateBlock.h | 20 +- src/mc/world/level/block/BaseRailBlock.h | 12 +- src/mc/world/level/block/BeaconBlock.h | 4 +- src/mc/world/level/block/BedBlock.h | 8 +- src/mc/world/level/block/BedrockBlock.h | 4 +- src/mc/world/level/block/BeehiveBlock.h | 2 +- src/mc/world/level/block/BeetrootBlock.h | 6 +- src/mc/world/level/block/BellBlock.h | 12 +- src/mc/world/level/block/BigDripleafBlock.h | 4 +- src/mc/world/level/block/Block.h | 8 +- src/mc/world/level/block/BlockDescriptor.h | 4 +- src/mc/world/level/block/BlockLegacy.h | 246 ++++---- src/mc/world/level/block/BlockVolume.h | 6 +- src/mc/world/level/block/BorderBlock.h | 6 +- src/mc/world/level/block/BrewingStandBlock.h | 18 +- src/mc/world/level/block/BrushableBlock.h | 4 +- src/mc/world/level/block/BubbleColumnBlock.h | 10 +- .../world/level/block/BuddingAmethystBlock.h | 2 +- src/mc/world/level/block/BushBlock.h | 10 +- src/mc/world/level/block/ButtonBlock.h | 24 +- src/mc/world/level/block/CactusBlock.h | 10 +- src/mc/world/level/block/CakeBlock.h | 14 +- src/mc/world/level/block/CameraBlock.h | 2 +- src/mc/world/level/block/CampfireBlock.h | 6 +- src/mc/world/level/block/CandleBlock.h | 4 +- src/mc/world/level/block/CandleCakeBlock.h | 17 +- src/mc/world/level/block/CarpetBlock.h | 10 +- src/mc/world/level/block/CarrotBlock.h | 4 +- .../world/level/block/CartographyTableBlock.h | 6 +- src/mc/world/level/block/CauldronBlock.h | 8 +- src/mc/world/level/block/CaveVinesBlock.h | 10 +- src/mc/world/level/block/ChainBlock.h | 2 +- src/mc/world/level/block/ChalkboardBlock.h | 8 +- src/mc/world/level/block/ChemicalHeatBlock.h | 6 +- .../world/level/block/ChemistryTableBlock.h | 10 +- src/mc/world/level/block/CherrySaplingBlock.h | 8 +- src/mc/world/level/block/ChestBlock.h | 23 +- .../level/block/ChiseledBookshelfBlock.h | 6 +- src/mc/world/level/block/ChorusFlowerBlock.h | 10 +- src/mc/world/level/block/ChorusPlantBlock.h | 12 +- src/mc/world/level/block/ClayBlock.h | 12 +- .../block/ClientRequestPlaceholderBlock.h | 2 +- src/mc/world/level/block/CocoaBlock.h | 10 +- src/mc/world/level/block/ColoredTorchBlock.h | 2 +- src/mc/world/level/block/CommandBlock.h | 10 +- src/mc/world/level/block/CommandName.h | 2 +- src/mc/world/level/block/ComparatorBlock.h | 18 +- src/mc/world/level/block/ComposterBlock.h | 6 +- .../world/level/block/CompoundBlockVolume.h | 4 +- .../level/block/CompoundBlockVolumeIterator.h | 2 +- .../world/level/block/ConcretePowderBlock.h | 4 +- src/mc/world/level/block/CopperBehavior.h | 4 +- src/mc/world/level/block/CopperBlock.h | 8 +- src/mc/world/level/block/CopperBulbBlock.h | 14 +- src/mc/world/level/block/CopperDoorBlock.h | 4 +- .../world/level/block/CopperTrapDoorBlock.h | 6 +- src/mc/world/level/block/CoralBlock.h | 2 +- src/mc/world/level/block/CoralFan.h | 18 +- src/mc/world/level/block/CoralFanHang.h | 6 +- src/mc/world/level/block/CoralPlantBlock.h | 14 +- src/mc/world/level/block/CrafterBlock.h | 16 +- src/mc/world/level/block/CraftingTableBlock.h | 2 +- src/mc/world/level/block/CreakingHeartBlock.h | 6 +- src/mc/world/level/block/CropBlock.h | 10 +- src/mc/world/level/block/CutCopperSlab.h | 2 +- src/mc/world/level/block/CutCopperStairs.h | 4 +- .../world/level/block/DaylightDetectorBlock.h | 16 +- src/mc/world/level/block/DecoratedPotBlock.h | 6 +- src/mc/world/level/block/DeepslateBlock.h | 2 +- .../world/level/block/DefaultSculkBehavior.h | 6 +- src/mc/world/level/block/DetectorRailBlock.h | 10 +- src/mc/world/level/block/DiodeBlock.h | 14 +- src/mc/world/level/block/DirtBlock.h | 14 +- src/mc/world/level/block/DirtPathBlock.h | 8 +- src/mc/world/level/block/DispenserBlock.h | 21 +- src/mc/world/level/block/DoorBlock.h | 18 +- .../world/level/block/DoublePlantBaseBlock.h | 16 +- .../world/level/block/DoubleVegetationBlock.h | 4 +- src/mc/world/level/block/DragonEggBlock.h | 4 +- src/mc/world/level/block/DropperBlock.h | 2 +- src/mc/world/level/block/ElementBlock.h | 2 +- .../world/level/block/EnchantingTableBlock.h | 10 +- src/mc/world/level/block/EndGatewayBlock.h | 4 +- src/mc/world/level/block/EndPortalBlock.h | 6 +- .../world/level/block/EndPortalFrameBlock.h | 8 +- src/mc/world/level/block/EndRodBlock.h | 10 +- src/mc/world/level/block/EyeblossomBlock.h | 4 +- .../level/block/FaceDirectionalActorBlock.h | 8 +- .../world/level/block/FaceDirectionalBlock.h | 8 +- src/mc/world/level/block/FallingBlock.h | 6 +- src/mc/world/level/block/FarmBlock.h | 2 +- src/mc/world/level/block/FenceBlock.h | 10 +- src/mc/world/level/block/FenceGateBlock.h | 6 +- src/mc/world/level/block/FireBlock.h | 6 +- src/mc/world/level/block/FlowerBlock.h | 16 +- src/mc/world/level/block/FlowerPotBlock.h | 10 +- src/mc/world/level/block/FrogSpawnBlock.h | 12 +- src/mc/world/level/block/FrostedIceBlock.h | 4 +- src/mc/world/level/block/FurnaceBlock.h | 11 +- src/mc/world/level/block/GlassBlock.h | 4 +- .../world/level/block/GlazedTerracottaBlock.h | 2 +- src/mc/world/level/block/GlowLichenBlock.h | 4 +- src/mc/world/level/block/GrassBlock.h | 12 +- src/mc/world/level/block/GravelBlock.h | 12 +- src/mc/world/level/block/GrindstoneBlock.h | 8 +- src/mc/world/level/block/HangingRootsBlock.h | 14 +- src/mc/world/level/block/HangingSignBlock.h | 2 +- src/mc/world/level/block/HayBlock.h | 4 +- src/mc/world/level/block/HeavyCoreBlock.h | 2 +- src/mc/world/level/block/HoneyBlock.h | 4 +- src/mc/world/level/block/HopperBlock.h | 17 +- src/mc/world/level/block/IceBlock.h | 2 +- src/mc/world/level/block/InfestedBlock.h | 2 +- src/mc/world/level/block/InvisibleBlock.h | 2 +- src/mc/world/level/block/ItemFrameBlock.h | 16 +- src/mc/world/level/block/JigsawBlock.h | 4 +- src/mc/world/level/block/JukeboxBlock.h | 6 +- src/mc/world/level/block/KelpBlock.h | 12 +- src/mc/world/level/block/LadderBlock.h | 6 +- src/mc/world/level/block/LanternBlock.h | 6 +- src/mc/world/level/block/LeavesBlock.h | 8 +- src/mc/world/level/block/LecternBlock.h | 14 +- src/mc/world/level/block/LeverBlock.h | 16 +- src/mc/world/level/block/LightBlock.h | 8 +- src/mc/world/level/block/LightningRodBlock.h | 12 +- src/mc/world/level/block/LiquidBlock.h | 4 +- src/mc/world/level/block/LiquidBlockDynamic.h | 2 +- src/mc/world/level/block/LiquidBlockStatic.h | 2 +- src/mc/world/level/block/ListBlockVolume.h | 2 +- .../level/block/ListBlockVolumeIterator.h | 2 +- src/mc/world/level/block/LoomBlock.h | 6 +- src/mc/world/level/block/MagmaBlock.h | 6 +- .../level/block/MangrovePropaguleBlock.h | 2 +- src/mc/world/level/block/MangroveRootsBlock.h | 2 +- src/mc/world/level/block/MelonBlock.h | 2 +- src/mc/world/level/block/MobSpawnerBlock.h | 6 +- src/mc/world/level/block/MudBlock.h | 8 +- src/mc/world/level/block/MultifaceBlock.h | 10 +- src/mc/world/level/block/MultifaceSpreader.h | 2 +- src/mc/world/level/block/MushroomBlock.h | 6 +- src/mc/world/level/block/NetherFungusBlock.h | 14 +- src/mc/world/level/block/NetherSproutsBlock.h | 14 +- src/mc/world/level/block/NetherWartBlock.h | 4 +- src/mc/world/level/block/NoteBlock.h | 6 +- src/mc/world/level/block/NyliumBlock.h | 6 +- src/mc/world/level/block/ObserverBlock.h | 6 +- .../world/level/block/PaleHangingMossBlock.h | 12 +- .../world/level/block/PaleMossCarpetBlock.h | 2 +- src/mc/world/level/block/PinkPetalsBlock.h | 8 +- src/mc/world/level/block/PistonArmBlock.h | 4 +- src/mc/world/level/block/PistonBlock.h | 16 +- src/mc/world/level/block/PitcherCropBlock.h | 12 +- src/mc/world/level/block/PitcherPlantBlock.h | 4 +- .../world/level/block/PointedDripstoneBlock.h | 8 +- src/mc/world/level/block/PortalBlock.h | 8 +- src/mc/world/level/block/PotatoBlock.h | 6 +- src/mc/world/level/block/PowderSnowBlock.h | 10 +- src/mc/world/level/block/PoweredRailBlock.h | 2 +- src/mc/world/level/block/PumpkinBlock.h | 2 +- src/mc/world/level/block/RedStoneOreBlock.h | 2 +- src/mc/world/level/block/RedStoneWireBlock.h | 10 +- src/mc/world/level/block/RedstoneBlock.h | 8 +- src/mc/world/level/block/RedstoneLampBlock.h | 6 +- src/mc/world/level/block/RedstoneTorchBlock.h | 10 +- .../level/block/ReinforcedDeepslateBlock.h | 4 +- src/mc/world/level/block/RepeaterBlock.h | 12 +- src/mc/world/level/block/ResourceDrops.h | 2 +- src/mc/world/level/block/RespawnAnchorBlock.h | 4 +- src/mc/world/level/block/RootedDirtBlock.h | 2 +- src/mc/world/level/block/RotatedPillarBlock.h | 4 +- src/mc/world/level/block/SandBlock.h | 10 +- src/mc/world/level/block/SaplingBlock.h | 10 +- src/mc/world/level/block/ScaffoldingBlock.h | 4 +- src/mc/world/level/block/SculkBlockBehavior.h | 8 +- src/mc/world/level/block/SculkSensorBlock.h | 16 +- src/mc/world/level/block/SculkShriekerBlock.h | 6 +- src/mc/world/level/block/SculkSpreader.h | 2 +- src/mc/world/level/block/SculkVeinBlock.h | 2 +- .../level/block/SculkVeinBlockBehavior.h | 6 +- .../level/block/SculkVeinMultifaceSpreader.h | 2 +- src/mc/world/level/block/SeaPickleBlock.h | 16 +- src/mc/world/level/block/SeagrassBlock.h | 10 +- .../level/block/SeasonsAgnosticLeavesBlock.h | 2 +- src/mc/world/level/block/ShulkerBoxBlock.h | 2 +- src/mc/world/level/block/SignBlock.h | 10 +- src/mc/world/level/block/SimpleBlockVolume.h | 8 +- .../level/block/SimpleBlockVolumeIterator.h | 2 +- src/mc/world/level/block/SkullBlock.h | 2 +- src/mc/world/level/block/SlabBlock.h | 2 +- src/mc/world/level/block/SlimeBlock.h | 8 +- src/mc/world/level/block/SmallDripleafBlock.h | 12 +- src/mc/world/level/block/SmithingTableBlock.h | 6 +- src/mc/world/level/block/SnifferEggBlock.h | 6 +- src/mc/world/level/block/SoulFireBlock.h | 10 +- src/mc/world/level/block/SoulSandBlock.h | 6 +- src/mc/world/level/block/SporeBlossomBlock.h | 10 +- src/mc/world/level/block/StainedGlassBlock.h | 2 +- src/mc/world/level/block/StairBlock.h | 10 +- src/mc/world/level/block/StemBlock.h | 6 +- src/mc/world/level/block/StoneBlock.h | 6 +- src/mc/world/level/block/StoneBricksBlock.h | 4 +- src/mc/world/level/block/StonecutterBlock.h | 8 +- src/mc/world/level/block/StrippedLogBlock.h | 2 +- src/mc/world/level/block/StructureBlock.h | 8 +- src/mc/world/level/block/StructureVoidBlock.h | 8 +- src/mc/world/level/block/SugarCaneBlock.h | 12 +- .../world/level/block/SweetBerryBushBlock.h | 14 +- src/mc/world/level/block/TallGrassBlock.h | 18 +- src/mc/world/level/block/TargetBlock.h | 6 +- src/mc/world/level/block/ThinFenceBlock.h | 12 +- src/mc/world/level/block/TntBlock.h | 4 +- src/mc/world/level/block/TopSnowBlock.h | 6 +- src/mc/world/level/block/TorchBlock.h | 4 +- src/mc/world/level/block/TorchflowerBlock.h | 4 +- .../world/level/block/TorchflowerCropBlock.h | 2 +- src/mc/world/level/block/TrapDoorBlock.h | 4 +- src/mc/world/level/block/TrialSpawnerBlock.h | 4 +- src/mc/world/level/block/TripWireBlock.h | 4 +- src/mc/world/level/block/TripWireHookBlock.h | 8 +- src/mc/world/level/block/TurtleEggBlock.h | 12 +- src/mc/world/level/block/TwistingVinesBlock.h | 8 +- .../world/level/block/UnderwaterTorchBlock.h | 4 +- src/mc/world/level/block/VaultBlock.h | 2 +- src/mc/world/level/block/VineBlock.h | 6 +- src/mc/world/level/block/WallBlock.h | 14 +- src/mc/world/level/block/WaterlilyBlock.h | 6 +- src/mc/world/level/block/WebBlock.h | 2 +- src/mc/world/level/block/WeepingVinesBlock.h | 8 +- .../level/block/WeightedPressurePlateBlock.h | 6 +- src/mc/world/level/block/WitherRoseBlock.h | 6 +- .../level/block/actor/BannerBlockActor.h | 2 +- .../world/level/block/actor/BannerPattern.h | 6 +- .../level/block/actor/BarrelBlockActor.h | 2 +- .../level/block/actor/BaseCommandBlock.h | 16 +- .../level/block/actor/BeaconBlockActor.h | 22 +- .../world/level/block/actor/BedBlockActor.h | 8 +- .../world/level/block/actor/BellBlockActor.h | 4 +- src/mc/world/level/block/actor/BlockActor.h | 92 +-- .../block/actor/BrewingStandBlockActor.h | 32 +- .../level/block/actor/BrushableBlockActor.h | 10 +- .../level/block/actor/CampfireBlockActor.h | 8 +- .../level/block/actor/CauldronBlockActor.h | 26 +- .../level/block/actor/ChalkboardBlockActor.h | 8 +- .../block/actor/ChemistryTableBlockActor.h | 10 +- .../world/level/block/actor/ChestBlockActor.h | 26 +- .../block/actor/ChiseledBookshelfBlockActor.h | 16 +- .../level/block/actor/CommandBlockActor.h | 4 +- .../level/block/actor/ConduitBlockActor.h | 6 +- .../block/actor/CreakingHeartBlockActor.h | 2 +- .../block/actor/DecoratedPotBlockActor.h | 10 +- .../level/block/actor/DispenserBlockActor.h | 16 +- .../level/block/actor/DropperBlockActor.h | 4 +- .../block/actor/EnchantingTableBlockActor.h | 4 +- .../level/block/actor/EndGatewayBlockActor.h | 6 +- .../level/block/actor/EnderChestBlockActor.h | 4 +- .../level/block/actor/FlowerPotBlockActor.h | 6 +- .../level/block/actor/FurnaceBlockActor.h | 26 +- .../level/block/actor/HangingSignBlockActor.h | 2 +- .../level/block/actor/HopperBlockActor.h | 22 +- .../level/block/actor/ItemFrameBlockActor.h | 12 +- .../level/block/actor/JigsawBlockActor.h | 8 +- .../level/block/actor/JukeboxBlockActor.h | 14 +- .../level/block/actor/LabTableReaction.h | 6 +- .../block/actor/LabTableReactionComponent.h | 6 +- .../level/block/actor/LecternBlockActor.h | 22 +- .../level/block/actor/LodestoneBlockActor.h | 6 +- .../level/block/actor/MobSpawnerBlockActor.h | 6 +- src/mc/world/level/block/actor/MovingBlock.h | 6 +- .../level/block/actor/MovingBlockActor.h | 10 +- .../level/block/actor/PistonBlockActor.h | 10 +- .../actor/RandomizableBlockActorContainer.h | 10 +- .../RandomizableBlockActorFillingContainer.h | 10 +- .../block/actor/SculkCatalystBlockActor.h | 8 +- .../level/block/actor/SculkSensorBlockActor.h | 4 +- .../block/actor/SculkSensorVibrationConfig.h | 4 +- .../block/actor/SculkShriekerBlockActor.h | 4 +- .../actor/SculkShriekerVibrationConfig.h | 4 +- .../level/block/actor/ShulkerBoxBlockActor.h | 12 +- .../world/level/block/actor/SignBlockActor.h | 10 +- .../world/level/block/actor/SkullBlockActor.h | 6 +- .../level/block/actor/StructureBlockActor.h | 6 +- .../world/level/block/actor/VaultBlockActor.h | 2 +- .../block_descriptor_serializer/StatesProxy.h | 2 +- .../block_descriptor_serializer/TagsProxy.h | 8 +- .../block_events/BlockEntityFallOnEvent.h | 10 +- .../block/block_events/BlockEventManager.h | 2 +- .../block/block_events/BlockPlaceEvent.h | 4 +- .../block_events/BlockPlayerDestroyEvent.h | 8 +- .../block_events/BlockPlayerInteractEvent.h | 8 +- .../block_events/BlockPlayerPlacingEvent.h | 10 +- .../block/block_events/BlockQueuedTickEvent.h | 8 +- .../block/block_events/BlockRandomTickEvent.h | 8 +- .../block/block_events/BlockStepOffEvent.h | 10 +- .../block/block_events/BlockStepOnEvent.h | 10 +- .../BlockBreathabilityDescription.h | 2 +- .../components/BlockCollisionBoxDescription.h | 10 +- .../components/BlockComponentDescription.h | 24 +- .../components/BlockComponentDirectData.h | 16 +- .../block/components/BlockComponentStorage.h | 6 +- .../BlockCraftingTableDescription.h | 2 +- ...lockCustomComponentsComponentDescription.h | 2 +- .../BlockDestructibleByExplosionDescription.h | 4 +- .../BlockDestructibleByMiningDescription.h | 4 +- .../components/BlockDisplayNameDescription.h | 2 +- .../components/BlockFrictionDescription.h | 2 +- .../components/BlockGeometryDescription.h | 2 +- .../components/BlockItemVisualDescription.h | 4 +- .../BlockLightDampeningDescription.h | 2 +- .../BlockLightEmissionDescription.h | 2 +- .../BlockLiquidDetectionComponent.h | 2 +- .../BlockLiquidDetectionDescription.h | 4 +- .../block/components/BlockLootComponent.h | 2 +- .../BlockMaterialInstancesDescription.h | 4 +- .../components/BlockPlacementCondition.h | 2 +- .../BlockPlacementFilterDescription.h | 2 +- .../components/BlockRandomTickingComponent.h | 2 +- .../components/BlockRedstoneDescription.h | 6 +- .../components/BlockSelectionBoxDescription.h | 10 +- .../BlockTickConfigurationComponent.h | 2 +- .../BlockTransformationDescription.h | 4 +- .../components/BlockUnitCubeDescription.h | 4 +- .../block/components/ItemSpecificSpeed.h | 2 +- .../components/NetEaseBlockComponentStorage.h | 2 +- src/mc/world/level/block/components/RuleSet.h | 2 +- .../ScriptBlockCustomComponentsFinalizer.h | 4 +- .../BlockCollision118Upgrade.h | 6 +- .../BlockCollision11910Upgrade.h | 6 +- .../block_geometry_serializer/Constraint.h | 2 +- .../BlockGeometry11910Upgrade.h | 6 +- .../BlockGeometry12010Upgrade.h | 6 +- .../BlockUnitCube12060Upgrade.h | 6 +- .../BlockAimCollision118Upgrade.h | 6 +- .../BlockAimCollision11910Upgrade.h | 6 +- .../components/triggers/OnFallOnTrigger.h | 2 +- .../components/triggers/OnInteractTrigger.h | 2 +- .../triggers/OnInteractTriggerDescription.h | 6 +- .../components/triggers/OnPlacedTrigger.h | 2 +- .../triggers/OnPlayerDestroyedTrigger.h | 2 +- .../triggers/OnPlayerPlacingTrigger.h | 2 +- .../OnPlayerPlacingTriggerDescription.h | 6 +- .../components/triggers/OnStepOffTrigger.h | 2 +- .../components/triggers/OnStepOnTrigger.h | 2 +- .../BlockComponentGroupDescription.h | 4 +- .../block/definition/BlockDefinitionLoader.h | 2 +- .../level/block/definition/BlockDescription.h | 2 +- .../block/definition/BlockMenuCategory.h | 2 +- .../BlockDescription11940Upgrade.h | 6 +- .../block/json_util/details/BlockReference.h | 2 +- .../level/block/registry/BlockTypeRegistry.h | 4 +- .../registry/TrialSpawnerWeightedLootTable.h | 2 +- .../flattening_utils/RemovedBoolState.h | 4 +- .../flattening_utils/RemovedIntState.h | 4 +- .../world/level/block/states/BlockStateMeta.h | 6 +- .../placement_direction/PlacementDirection.h | 2 +- .../placement_position/PlacementPosition.h | 2 +- src/mc/world/level/camera/CameraPresets.h | 6 +- .../CameraPresetsInternals.h | 2 +- .../world/level/chunk/AtomicTimeAccumulator.h | 2 +- src/mc/world/level/chunk/AverageTracker.h | 2 +- src/mc/world/level/chunk/ChunkBoundingBox.h | 2 +- src/mc/world/level/chunk/ChunkLoadedRequest.h | 2 +- .../world/level/chunk/ChunkPerformanceData.h | 2 +- .../level/chunk/ChunkRecyclerTelemetryData.h | 2 +- .../chunk/ChunkRecyclerTelemetryOutput.h | 2 +- src/mc/world/level/chunk/ChunkSource.h | 24 +- .../level/chunk/ChunkTickOffsetManager.h | 6 +- src/mc/world/level/chunk/ChunkViewSource.h | 4 +- src/mc/world/level/chunk/ChunksLoadedInfo.h | 2 +- .../chunk/DeserializedChunkLoadedRequest.h | 2 +- src/mc/world/level/chunk/DirtyTicksCounter.h | 2 +- src/mc/world/level/chunk/FunctionAction.h | 2 +- src/mc/world/level/chunk/ImguiProfiler.h | 4 +- src/mc/world/level/chunk/LevelChunk.h | 36 +- .../level/chunk/LevelChunkEventManager.h | 6 +- .../world/level/chunk/LevelChunkSaveManager.h | 2 +- .../world/level/chunk/LevelChunkVolumeData.h | 4 +- src/mc/world/level/chunk/MainChunkSource.h | 10 +- .../level/chunk/MetaDataTypeVisitor_Get.h | 2 +- src/mc/world/level/chunk/NetworkChunkSource.h | 12 +- .../world/level/chunk/PostprocessingManager.h | 2 +- .../world/level/chunk/RollingAverageTracker.h | 2 +- src/mc/world/level/chunk/StructureType.h | 2 +- src/mc/world/level/chunk/SubChunk.h | 4 +- src/mc/world/level/chunk/TimeAccumulator.h | 2 +- .../world/level/chunk/WorldLimitChunkSource.h | 2 +- .../ChunkToReload.h | 2 +- .../dimension/ChunkBuildOrderPolicyBase.h | 2 +- src/mc/world/level/dimension/Dimension.h | 56 +- .../level/dimension/DimensionBrightnessRamp.h | 2 +- .../dimension/DimensionDefinitionGroup.h | 4 +- .../world/level/dimension/DimensionDocument.h | 15 +- .../level/dimension/NetherBrightnessRamp.h | 2 +- .../world/level/dimension/NetherDimension.h | 20 +- .../level/dimension/OverworldDimension.h | 8 +- .../level/dimension/end/EndDragonFight.h | 57 +- .../level/dimension/end/TheEndDimension.h | 22 +- src/mc/world/level/levelgen/WorldGenerator.h | 2 +- .../levelgen/feature/BonusChestFeature.h | 2 +- .../levelgen/feature/CoralCrustFeature.h | 2 +- .../level/levelgen/feature/CoralFeature.h | 2 +- .../levelgen/feature/EndGatewayFeature.h | 2 +- .../level/levelgen/feature/EndIslandFeature.h | 2 +- .../level/levelgen/feature/EndPodiumFeature.h | 2 +- src/mc/world/level/levelgen/feature/Feature.h | 2 +- .../level/levelgen/feature/FlowerFeature.h | 2 +- .../level/levelgen/feature/GlowStoneFeature.h | 2 +- .../levelgen/feature/GrowingPlantFeature.h | 2 +- .../levelgen/feature/HugeFungusFeature.h | 2 +- .../levelgen/feature/HugeMushroomFeature.h | 2 +- .../world/level/levelgen/feature/IFeature.h | 10 +- .../levelgen/feature/NetherFireFeature.h | 2 +- .../levelgen/feature/NetherSpringFeature.h | 2 +- .../levelgen/feature/SingleBlockFeature.h | 2 +- .../level/levelgen/feature/SpikeFeature.h | 8 +- .../feature/UnderwaterCanyonFeature.h | 2 +- .../levelgen/feature/UnderwaterCaveFeature.h | 10 +- .../cave_feature_utils/CaveFeatureUtils.h | 2 +- .../feature_loading/FeatureRootParseContext.h | 2 +- .../feature/feature_loading/VersionInfo.h | 2 +- .../gamerefs_feature/OwnerStorageFeature.h | 2 +- .../StackResultStorageFeature.h | 2 +- .../feature/helpers/ITreeCanopyWrapper.h | 2 +- .../feature/helpers/MangroveTreeCanopy.h | 2 +- .../feature/helpers/RandomSpreadTreeCanopy.h | 2 +- .../helpers/dripstone_utils/WindOffsetter.h | 2 +- .../feature/registry/FeatureRegistry.h | 2 +- .../levelgen/feature/registry/FeatureResult.h | 2 +- .../feature/registry/FeatureTypeVersion.h | 4 +- .../level/levelgen/flat/FlatWorldGenerator.h | 14 +- .../levelgen/structure/AncientCityPiece.h | 4 +- .../levelgen/structure/AncientCityStart.h | 2 +- .../level/levelgen/structure/BastionFeature.h | 2 +- .../level/levelgen/structure/BastionPiece.h | 4 +- .../level/levelgen/structure/BastionStart.h | 2 +- .../level/levelgen/structure/BlockSelector.h | 2 +- .../level/levelgen/structure/BoundingBox.h | 2 +- .../level/levelgen/structure/EndCityFeature.h | 2 +- .../level/levelgen/structure/EndCityStart.h | 2 +- .../level/levelgen/structure/FitSimpleRoom.h | 2 +- .../levelgen/structure/JigsawEditorData.h | 20 +- .../level/levelgen/structure/JigsawJunction.h | 2 +- .../structure/LegacyStructureBlockPalette.h | 4 +- .../structure/LegacyStructureSettings.h | 24 +- .../structure/LegacyStructureTemplate.h | 2 +- .../levelgen/structure/MineshaftFeature.h | 2 +- .../level/levelgen/structure/MineshaftPiece.h | 2 +- .../levelgen/structure/MossStoneSelector.h | 2 +- .../levelgen/structure/NBBridgeCrossing.h | 2 +- .../structure/NBCastleCorridorStairsPiece.h | 2 +- .../structure/NBCastleSmallCorridorPiece.h | 2 +- .../structure/NetherFortressFeature.h | 2 +- .../levelgen/structure/NetherFortressPiece.h | 2 +- .../levelgen/structure/OceanMonumentFeature.h | 4 +- .../levelgen/structure/OceanMonumentPiece.h | 2 +- .../level/levelgen/structure/PieceWeight.h | 2 +- .../structure/PillagerOutpostFeature.h | 4 +- .../structure/PoolElementStructurePiece.h | 2 +- .../structure/RandomScatteredLargeFeature.h | 4 +- .../levelgen/structure/SHChestCorridor.h | 2 +- .../level/levelgen/structure/SHPrisonHall.h | 2 +- .../level/levelgen/structure/SHStairsDown.h | 2 +- .../levelgen/structure/SHStraightStairsDown.h | 4 +- .../structure/ScatteredFeaturePiece.h | 2 +- .../levelgen/structure/SmoothStoneSelector.h | 2 +- .../levelgen/structure/StrongholdPiece.h | 2 +- .../levelgen/structure/StrongholdStart.h | 2 +- .../structure/StructureAnimationData.h | 14 +- .../structure/StructureBlockPalette.h | 2 +- .../levelgen/structure/StructureEditorData.h | 34 +- .../levelgen/structure/StructureFeature.h | 4 +- .../structure/StructureFeatureRegistry.h | 2 +- .../level/levelgen/structure/StructurePiece.h | 14 +- .../levelgen/structure/StructureSettings.h | 28 +- .../level/levelgen/structure/StructureStart.h | 4 +- .../structure/StructureTelemetryClientData.h | 8 +- .../structure/StructureTelemetryServerData.h | 4 +- .../levelgen/structure/StructureTemplate.h | 8 +- .../structure/StructureTemplateData.h | 8 +- .../level/levelgen/structure/VillageFeature.h | 2 +- .../level/levelgen/structure/VillagePiece.h | 2 +- .../level/levelgen/structure/VillageStart.h | 2 +- .../structure/WoodlandMansionFeature.h | 2 +- .../structure/WoodlandMansionPieces.h | 10 +- .../JigsawStructureActorRulesRegistry.h | 2 +- .../JigsawStructureBlockRulesRegistry.h | 2 +- .../JigsawStructureBlockTagRulesRegistry.h | 2 +- .../registry/JigsawStructureElementRegistry.h | 2 +- .../registry/JigsawStructureRegistry.h | 12 +- .../structure/registry/StructureRegistry.h | 4 +- .../structurepools/EmptyPoolElement.h | 10 +- .../structurepools/FeaturePoolElement.h | 2 +- .../IStructurePoolBlockPredicate.h | 4 +- .../structurepools/StructurePoolActorRule.h | 2 +- .../StructurePoolBlockPredicateAlwaysTrue.h | 8 +- ...ucturePoolBlockPredicateAlwaysTrueExcept.h | 4 +- ...urePoolBlockPredicateAxisAlignedPosition.h | 4 +- .../StructurePoolBlockPredicateBlockMatch.h | 4 +- ...ucturePoolBlockPredicateBlockMatchRandom.h | 4 +- ...redicateCappedArcheologyBlockReplacement.h | 2 +- ...ockPredicateCappedRandomBlockReplacement.h | 2 +- .../StructurePoolBlockPredicateTrueIfFound.h | 4 +- .../structurepools/StructurePoolBlockRule.h | 2 +- .../structurepools/StructurePoolElement.h | 12 +- .../structurepools/StructureTemplatePool.h | 2 +- .../WeightedStructureTemplateRegistration.h | 2 +- .../structurepools/alias/PoolAliasBinding.h | 2 +- .../level/levelgen/synth/AquiferNoises.h | 6 +- .../levelgen/synth/MesaSurfaceBuilderNoises.h | 2 +- .../synth/noise_utils/DelegatingRandom.h | 14 +- .../noise_utils/DoublesForFloatsRandom.h | 2 +- src/mc/world/level/levelgen/v1/Aquifer.h | 6 +- .../levelgen/v1/BeardAndShaverDescription.h | 2 +- src/mc/world/level/levelgen/v1/BeardKernel.h | 2 +- src/mc/world/level/levelgen/v1/ChunkBlender.h | 2 +- .../levelgen/v1/FeatureTerrainAdjustments.h | 2 +- .../levelgen/v1/IPreliminarySurfaceProvider.h | 2 +- .../world/level/levelgen/v1/NetherGenerator.h | 10 +- .../level/levelgen/v1/NoodleCavifierNoises.h | 2 +- .../level/levelgen/v1/OreVeinifierNoises.h | 6 +- .../level/levelgen/v1/OverworldGenerator.h | 6 +- .../level/levelgen/v1/OverworldGenerator2d.h | 6 +- .../v1/OverworldGeneratorMultinoise.h | 2 +- .../world/level/levelgen/v1/TheEndGenerator.h | 12 +- .../world/level/levelgen/v1/VoidGenerator.h | 16 +- src/mc/world/level/levelgen/v2/Beardifier.h | 4 +- .../world/level/levelgen/v2/ChunkAccessor.h | 2 +- .../level/levelgen/v2/DimensionPadding.h | 2 +- .../level/levelgen/v2/JigsawSectionData.h | 2 +- src/mc/world/level/levelgen/v2/JigsawSpace.h | 2 +- src/mc/world/level/levelgen/v2/SpawnerData.h | 2 +- .../world/level/levelgen/v2/StructureCache.h | 2 +- .../levelgen/v2/StructureHeightProvider.h | 2 +- .../level/levelgen/v2/StructureInstance.h | 8 +- .../level/levelgen/v2/StructureSection.h | 2 +- src/mc/world/level/levelgen/v2/StructureSet.h | 2 +- .../world/level/levelgen/v2/WorldGenContext.h | 4 +- .../world/level/levelgen/v2/WorldGenRandom.h | 2 +- src/mc/world/level/levelgen/v2/br.h | 2 +- .../levelgen/v2/processors/BlockIgnore.h | 4 +- .../level/levelgen/v2/processors/Capped.h | 2 +- .../level/levelgen/v2/processors/Gravity.h | 2 +- .../v2/processors/JigsawReplacement.h | 2 +- .../levelgen/v2/processors/ProtectedBlock.h | 4 +- .../world/level/levelgen/v2/processors/Rule.h | 2 +- .../v2/processors/StructureProcessor.h | 2 +- .../v2/processors/block_entity/AppendLoot.h | 2 +- .../v2/processors/block_entity/Modifier.h | 2 +- .../v2/processors/block_rules/AlwaysTrue.h | 4 +- .../v2/processors/block_rules/TagMatch.h | 2 +- .../v2/processors/pos_rules/AlwaysTrue.h | 4 +- .../level/levelgen/v2/processors/processors.h | 2 +- .../level/levelgen/v2/providers/ConstantInt.h | 6 +- .../level/levelgen/v2/providers/UniformInt.h | 4 +- src/mc/world/level/levelgen/v2/worldgen.h | 4 +- src/mc/world/level/material/Material.h | 10 +- .../level/newbiome/OceanMixerOperationNode.h | 2 +- .../level/newbiome/RegionHillsOperationNode.h | 2 +- .../AddMushroomIsland.h | 2 +- .../operation_node_filters/PromoteCenter.h | 2 +- .../operation_node_filters/RareBiomeSpot.h | 2 +- src/mc/world/level/pathfinder/BinaryHeap.h | 4 +- src/mc/world/level/pathfinder/Path.h | 10 +- .../world/level/pathfinder/PathBlockSource.h | 4 +- .../world/level/pathfinder/PathfinderNode.h | 2 +- .../position_trackingdb/AsyncOperationBase.h | 2 +- .../position_trackingdb/DestroyOperation.h | 2 +- .../level/position_trackingdb/LoadOperation.h | 2 +- .../position_trackingdb/TrackingRecord.h | 2 +- .../level/saveddata/maps/MapDecoration.h | 14 +- .../level/saveddata/maps/MapItemSavedData.h | 10 +- src/mc/world/level/spawn/EntityType.h | 2 +- src/mc/world/level/spawn/IsValidSpawn.h | 4 +- .../world/level/storage/AdventureSettings.h | 2 +- .../world/level/storage/CloudSaveLevelInfo.h | 2 +- .../world/level/storage/ConsoleChunkBlender.h | 2 +- src/mc/world/level/storage/DBChunkStorage.h | 10 +- src/mc/world/level/storage/DBStorage.h | 10 +- .../world/level/storage/ExperimentStorage.h | 2 +- src/mc/world/level/storage/Experiments.h | 2 +- .../ExternalFileLevelStorageMetadata.h | 2 +- .../storage/ExternalFileLevelStorageSource.h | 2 +- .../storage/FolderSizeAndModifyDateSnapshot.h | 2 +- src/mc/world/level/storage/GameRule.h | 20 +- src/mc/world/level/storage/GameRuleId.h | 2 +- src/mc/world/level/storage/GameRules.h | 2 +- src/mc/world/level/storage/ILevelListCache.h | 2 +- .../level/storage/InMemoryWritableFile.h | 4 +- src/mc/world/level/storage/LevelData.h | 193 +++---- src/mc/world/level/storage/LevelDataValue.h | 6 +- src/mc/world/level/storage/LevelStorage.h | 8 +- .../storage/LevelStorageEventingContext.h | 2 +- .../world/level/storage/LevelStorageManager.h | 12 +- .../level/storage/LevelStorageWriteBatch.h | 2 +- src/mc/world/level/storage/NullLogger.h | 2 +- src/mc/world/level/storage/PlayerStorageIds.h | 2 +- .../world/level/storage/RealmEventForPlayer.h | 2 +- src/mc/world/level/storage/SnapshotEnv.h | 2 +- .../world/level/storage/UserStorageChecker.h | 2 +- .../level/storage/WorldTemplateLevelData.h | 6 +- .../level/storage/loot/LootTableContext.h | 4 +- .../storage/loot/entries/EmptyLootItem.h | 2 +- .../functions/EnchantBookForTradingFunction.h | 10 +- .../EnchantRandomEquipmentFunction.h | 4 +- .../loot/functions/EnchantRandomlyFunction.h | 4 +- .../functions/EnchantWithLevelsFunction.h | 8 +- .../loot/functions/ExplorationMapFunction.h | 4 +- .../loot/functions/FillContainerFunction.h | 4 +- .../loot/functions/RandomDyeFunction.h | 4 +- .../loot/functions/SetArmorTrimFunction.h | 4 +- .../loot/functions/SetBannerDetailsFunction.h | 4 +- .../loot/functions/SetBookContentsFunction.h | 4 +- .../loot/functions/SetItemDamageFunction.h | 4 +- .../loot/functions/SetItemLoreFunction.h | 4 +- .../loot/functions/SetItemNameFunction.h | 4 +- .../loot/functions/SetPotionFunction.h | 4 +- .../loot/predicates/LootItemCondition.h | 2 +- src/mc/world/level/ticking/ITickingAreaView.h | 2 +- src/mc/world/level/ticking/PendingArea.h | 2 +- src/mc/world/level/ticking/TickingArea.h | 16 +- .../level/ticking/TickingAreaDescription.h | 2 +- .../world/level/ticking/TickingAreaListBase.h | 2 +- src/mc/world/level/ticking/TickingAreaView.h | 2 +- .../world/level/ticking/TickingAreasManager.h | 2 +- src/mc/world/module/GameModuleServer.h | 2 +- src/mc/world/persistence/DynamicProperties.h | 2 +- .../persistence/DynamicPropertiesManager.h | 2 +- src/mc/world/phys/AABB.h | 4 +- src/mc/world/phys/HitResultWrapper.h | 4 +- src/mc/world/phys/rope/AABBBucket.h | 25 +- src/mc/world/phys/rope/RopeAABB.h | 11 +- src/mc/world/phys/rope/RopeNode.h | 17 +- src/mc/world/phys/rope/RopeParams.h | 35 +- src/mc/world/phys/rope/RopePoint.h | 15 +- src/mc/world/phys/rope/RopePoints.h | 17 +- src/mc/world/phys/rope/RopePointsRef.h | 16 +- src/mc/world/phys/rope/RopeSystem.h | 54 +- src/mc/world/phys/rope/RopeWave.h | 23 +- .../circuit/ChunkCircuitComponentList.h | 2 +- .../redstone/circuit/CircuitSceneGraph.h | 2 +- .../circuit/components/BaseCircuitComponent.h | 42 +- .../circuit/components/BaseRailTransporter.h | 2 +- .../circuit/components/CapacitorComponent.h | 4 +- .../circuit/components/CircuitComponentList.h | 2 +- .../circuit/components/ComparatorCapacitor.h | 6 +- .../circuit/components/ConsumerComponent.h | 6 +- .../circuit/components/PistonConsumer.h | 6 +- .../components/PoweredBlockComponent.h | 8 +- .../circuit/components/ProducerComponent.h | 4 +- .../circuit/components/PulseCapacitor.h | 12 +- .../components/RedstoneTorchCapacitor.h | 6 +- .../circuit/components/RepeaterCapacitor.h | 4 +- .../circuit/components/SidePoweredComponent.h | 8 +- .../circuit/components/TransporterComponent.h | 6 +- src/mc/world/response/ActorCommandResponse.h | 8 +- src/mc/world/response/ActorEventResponse.h | 4 +- .../response/ActorQueueCommandResponse.h | 4 +- src/mc/world/response/CommandResponse.h | 4 +- src/mc/world/response/CommandResponseBase.h | 2 +- src/mc/world/response/EmitVibrationResponse.h | 4 +- src/mc/world/response/EventResponse.h | 4 +- src/mc/world/response/MobEffectResponse.h | 16 +- src/mc/world/response/TeleportResponse.h | 4 +- src/mc/world/scores/DisplayObjective.h | 6 +- src/mc/world/scores/IdentityDefinition.h | 12 +- src/mc/world/scores/Objective.h | 10 +- src/mc/world/scores/ObjectiveCriteria.h | 4 +- src/mc/world/scores/PlayerScore.h | 2 +- src/mc/world/scores/PlayerScoreboardId.h | 2 +- src/mc/world/scores/Scoreboard.h | 26 +- src/mc/world/scores/ScoreboardId.h | 6 +- src/mc/world/scores/ScoreboardIdentityRef.h | 2 +- src/mc/world/scores/ServerScoreboard.h | 6 +- .../RegistrationOptions.h | 2 +- 2914 files changed, 8666 insertions(+), 9542 deletions(-) delete mode 160000 docs/api/assets/doxygen-awesome-css create mode 100644 src/mc/world/actor/TempEPtr.h diff --git a/docs/api/assets/doxygen-awesome-css b/docs/api/assets/doxygen-awesome-css deleted file mode 160000 index df83fbf22c..0000000000 --- a/docs/api/assets/doxygen-awesome-css +++ /dev/null @@ -1 +0,0 @@ -Subproject commit df83fbf22cfff76b875c13d324baf584c74e96d0 diff --git a/src/mc/_HeaderOutputPredefine.h b/src/mc/_HeaderOutputPredefine.h index 2b2abbf822..90ea2696ad 100644 --- a/src/mc/_HeaderOutputPredefine.h +++ b/src/mc/_HeaderOutputPredefine.h @@ -7,6 +7,7 @@ #define MCAPI __declspec(dllimport) #define MCTAPI template<> MCAPI +#define MCFOLD MCAPI /*Identical COMDAT Folding*/ #include // STL general algorithms #include // STL array container diff --git a/src/mc/certificates/Certificate.h b/src/mc/certificates/Certificate.h index 21fde34751..6016a60be6 100644 --- a/src/mc/certificates/Certificate.h +++ b/src/mc/certificates/Certificate.h @@ -38,11 +38,11 @@ class Certificate { MCAPI int64 getNotBeforeDate() const; - MCAPI bool isSelfSigned() const; + MCFOLD bool isSelfSigned() const; - MCAPI bool isValid() const; + MCFOLD bool isValid() const; - MCAPI ::std::string toString() const; + MCFOLD ::std::string toString() const; MCAPI bool validate(int64 currentTime, bool isSelfSigned, bool checkExpired); diff --git a/src/mc/certificates/CertificateSNIType.h b/src/mc/certificates/CertificateSNIType.h index 25600240c4..8c66368184 100644 --- a/src/mc/certificates/CertificateSNIType.h +++ b/src/mc/certificates/CertificateSNIType.h @@ -25,6 +25,6 @@ struct CertificateSNIType { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/certificates/UnverifiedCertificate.h b/src/mc/certificates/UnverifiedCertificate.h index a8bc16c931..fc4bf9eba1 100644 --- a/src/mc/certificates/UnverifiedCertificate.h +++ b/src/mc/certificates/UnverifiedCertificate.h @@ -28,7 +28,7 @@ class UnverifiedCertificate { MCAPI ::std::string getIdentityPublicKey() const; - MCAPI ::std::string toString() const; + MCFOLD ::std::string toString() const; MCAPI ::std::unique_ptr<::Certificate> verify(::std::vector<::std::string> const& trustedKeys) const; diff --git a/src/mc/client/gui/oreui/resources/AllowListPath.h b/src/mc/client/gui/oreui/resources/AllowListPath.h index 8f63d3c7bd..2ebdb6f505 100644 --- a/src/mc/client/gui/oreui/resources/AllowListPath.h +++ b/src/mc/client/gui/oreui/resources/AllowListPath.h @@ -28,7 +28,7 @@ class AllowListPath { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/client/sound/NullSoundPlayer.h b/src/mc/client/sound/NullSoundPlayer.h index d744dc76a9..7410a64abd 100644 --- a/src/mc/client/sound/NullSoundPlayer.h +++ b/src/mc/client/sound/NullSoundPlayer.h @@ -107,53 +107,53 @@ class NullSoundPlayer : public ::SoundPlayerInterface { public: // virtual function thunks // NOLINTBEGIN - MCAPI uint64 $play(::std::string const&, ::Vec3 const&, float, float); + MCFOLD uint64 $play(::std::string const&, ::Vec3 const&, float, float); - MCAPI uint64 $playUI(::std::string const&, float, float); + MCFOLD uint64 $playUI(::std::string const&, float, float); - MCAPI void $playMusic(::std::string const&, float, uint&); + MCFOLD void $playMusic(::std::string const&, float, uint&); - MCAPI void $playMusic(::std::string const&, float); + MCFOLD void $playMusic(::std::string const&, float); - MCAPI bool $isLoadingMusic() const; + MCFOLD bool $isLoadingMusic() const; - MCAPI bool $isPlayingMusicEvent(::std::string const&) const; + MCFOLD bool $isPlayingMusicEvent(::std::string const&) const; - MCAPI bool $isPlayingMusic(::Core::Path const&) const; + MCFOLD bool $isPlayingMusic(::Core::Path const&) const; - MCAPI ::Core::PathBuffer<::std::string> const $getCurrentlyPlayingMusicName(); + MCFOLD ::Core::PathBuffer<::std::string> const $getCurrentlyPlayingMusicName(); - MCAPI bool $getItem(::std::string const&, ::Core::Path const&, ::SoundItem&) const; + MCFOLD bool $getItem(::std::string const&, ::Core::Path const&, ::SoundItem&) const; - MCAPI void $fadeToStopMusic(float); + MCFOLD void $fadeToStopMusic(float); - MCAPI void $setMusicCommandVolumeMultiplier(float); + MCFOLD void $setMusicCommandVolumeMultiplier(float); - MCAPI void $stopMusic(); + MCFOLD void $stopMusic(); MCAPI uint64 $registerLoop(::std::string const&, ::std::function, float, float); - MCAPI void $unregisterLoop(uint64, bool); + MCFOLD void $unregisterLoop(uint64, bool); - MCAPI void $stop(::std::string const&); + MCFOLD void $stop(::std::string const&); - MCAPI void $stop(uint64); + MCFOLD void $stop(uint64); - MCAPI void $fadeOut(uint64, float); + MCFOLD void $fadeOut(uint64, float); - MCAPI void $stopAllSounds(); + MCFOLD void $stopAllSounds(); - MCAPI bool $isPlayingSound(uint64) const; + MCFOLD bool $isPlayingSound(uint64) const; - MCAPI bool $isPlayingSound(::Core::Path const&) const; + MCFOLD bool $isPlayingSound(::Core::Path const&) const; - MCAPI uint64 $playAttached(::std::string const&, ::std::function&&); + MCFOLD uint64 $playAttached(::std::string const&, ::std::function&&); - MCAPI void $stopAllDelayedSoundActions(); + MCFOLD void $stopAllDelayedSoundActions(); MCAPI ::std::optional<::PlayingSoundAttributes> $tryGetPlayingSoundAttributes(uint64) const; - MCAPI ::std::optional<::LoopingSoundAttributes> $tryGetLoopingSoundAttributes(uint64) const; + MCFOLD ::std::optional<::LoopingSoundAttributes> $tryGetLoopingSoundAttributes(uint64) const; // NOLINTEND public: diff --git a/src/mc/codebuilder/Block.h b/src/mc/codebuilder/Block.h index e9eef332c7..135c9bb34c 100644 --- a/src/mc/codebuilder/Block.h +++ b/src/mc/codebuilder/Block.h @@ -28,7 +28,7 @@ struct Block { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/codebuilder/ChatMessage.h b/src/mc/codebuilder/ChatMessage.h index f1d33f416b..28d69799e9 100644 --- a/src/mc/codebuilder/ChatMessage.h +++ b/src/mc/codebuilder/ChatMessage.h @@ -29,7 +29,7 @@ struct ChatMessage { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/codebuilder/CommandMessage.h b/src/mc/codebuilder/CommandMessage.h index 155e6c58d0..50ea3abe4d 100644 --- a/src/mc/codebuilder/CommandMessage.h +++ b/src/mc/codebuilder/CommandMessage.h @@ -27,7 +27,7 @@ struct CommandMessage { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/codebuilder/CommandRequest.h b/src/mc/codebuilder/CommandRequest.h index 8f0d24d5e6..7b1f9093fb 100644 --- a/src/mc/codebuilder/CommandRequest.h +++ b/src/mc/codebuilder/CommandRequest.h @@ -28,7 +28,7 @@ struct CommandRequest { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/codebuilder/EncryptionRequest.h b/src/mc/codebuilder/EncryptionRequest.h index a74e339ee9..f10a62ebd2 100644 --- a/src/mc/codebuilder/EncryptionRequest.h +++ b/src/mc/codebuilder/EncryptionRequest.h @@ -28,7 +28,7 @@ struct EncryptionRequest { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/codebuilder/EncryptionResult.h b/src/mc/codebuilder/EncryptionResult.h index 04e81511e5..9c2a12ce88 100644 --- a/src/mc/codebuilder/EncryptionResult.h +++ b/src/mc/codebuilder/EncryptionResult.h @@ -28,7 +28,7 @@ struct EncryptionResult { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/codebuilder/ErrorMessage.h b/src/mc/codebuilder/ErrorMessage.h index 11d7abaead..1d9a1ed34f 100644 --- a/src/mc/codebuilder/ErrorMessage.h +++ b/src/mc/codebuilder/ErrorMessage.h @@ -44,7 +44,7 @@ struct ErrorMessage { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/codebuilder/EventMessage.h b/src/mc/codebuilder/EventMessage.h index ebfc423ed9..5874d98553 100644 --- a/src/mc/codebuilder/EventMessage.h +++ b/src/mc/codebuilder/EventMessage.h @@ -40,7 +40,7 @@ struct EventMessage { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/codebuilder/GameContext.h b/src/mc/codebuilder/GameContext.h index fa46b0f475..11709207cb 100644 --- a/src/mc/codebuilder/GameContext.h +++ b/src/mc/codebuilder/GameContext.h @@ -43,7 +43,7 @@ class GameContext { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; @@ -78,7 +78,7 @@ class GameContext { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/codebuilder/IClient.h b/src/mc/codebuilder/IClient.h index a076326979..9a7335289b 100644 --- a/src/mc/codebuilder/IClient.h +++ b/src/mc/codebuilder/IClient.h @@ -42,7 +42,7 @@ class IClient : public ::Bedrock::EnableNonOwnerReferences { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND public: diff --git a/src/mc/codebuilder/IManager.h b/src/mc/codebuilder/IManager.h index 8896bbdb67..dfc7c2d533 100644 --- a/src/mc/codebuilder/IManager.h +++ b/src/mc/codebuilder/IManager.h @@ -31,7 +31,7 @@ class IManager : public ::Bedrock::EnableNonOwnerReferences { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND public: diff --git a/src/mc/codebuilder/Item.h b/src/mc/codebuilder/Item.h index a38dae598b..e525e1ae80 100644 --- a/src/mc/codebuilder/Item.h +++ b/src/mc/codebuilder/Item.h @@ -28,7 +28,7 @@ struct Item { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/codebuilder/RequestHeader.h b/src/mc/codebuilder/RequestHeader.h index d4119425a6..9877d04246 100644 --- a/src/mc/codebuilder/RequestHeader.h +++ b/src/mc/codebuilder/RequestHeader.h @@ -28,7 +28,7 @@ struct RequestHeader { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/codebuilder/utils/CodeBuilder.h b/src/mc/codebuilder/utils/CodeBuilder.h index e89757527f..2d6e59ee2a 100644 --- a/src/mc/codebuilder/utils/CodeBuilder.h +++ b/src/mc/codebuilder/utils/CodeBuilder.h @@ -25,7 +25,7 @@ MCAPI ::Json::Value createMobObject(int mobType, int variant, uchar color); MCAPI ::Json::Value createMobObjectWithId(int id, int mobType, int variant); -MCAPI ::Json::Value createObject(::ItemStack const& item); +MCFOLD ::Json::Value createObject(::ItemStack const& item); MCAPI ::Json::Value createObject(::ItemDescriptor const& item); diff --git a/src/mc/codebuilder/utils/Event.h b/src/mc/codebuilder/utils/Event.h index 5b20dc7e1a..45e385b645 100644 --- a/src/mc/codebuilder/utils/Event.h +++ b/src/mc/codebuilder/utils/Event.h @@ -35,7 +35,7 @@ struct Event { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/common/ActorUniqueID.h b/src/mc/common/ActorUniqueID.h index 689313da7f..a0ebfb2fbd 100644 --- a/src/mc/common/ActorUniqueID.h +++ b/src/mc/common/ActorUniqueID.h @@ -17,7 +17,7 @@ struct ActorUniqueID { public: // member functions // NOLINTBEGIN - MCAPI uint64 getHash() const; + MCFOLD uint64 getHash() const; // NOLINTEND public: diff --git a/src/mc/common/AppPlatformListener.h b/src/mc/common/AppPlatformListener.h index 5ec14694cc..913cff2b55 100644 --- a/src/mc/common/AppPlatformListener.h +++ b/src/mc/common/AppPlatformListener.h @@ -106,43 +106,43 @@ class AppPlatformListener { public: // virtual function thunks // NOLINTBEGIN - MCAPI void $onLowMemory(); + MCFOLD void $onLowMemory(); - MCAPI void $onAppPaused(); + MCFOLD void $onAppPaused(); - MCAPI void $onAppUnpaused(); + MCFOLD void $onAppUnpaused(); - MCAPI void $onAppPreSuspended(); + MCFOLD void $onAppPreSuspended(); - MCAPI void $onAppSuspended(); + MCFOLD void $onAppSuspended(); - MCAPI void $onAppResumed(); + MCFOLD void $onAppResumed(); - MCAPI void $onAppFocusLost(); + MCFOLD void $onAppFocusLost(); - MCAPI void $onAppFocusGained(); + MCFOLD void $onAppFocusGained(); - MCAPI void $onAppTerminated(); + MCFOLD void $onAppTerminated(); - MCAPI void $onOperationModeChanged(::OperationMode const operationMode); + MCFOLD void $onOperationModeChanged(::OperationMode const operationMode); - MCAPI void $onPerformanceModeChanged(bool const boost); + MCFOLD void $onPerformanceModeChanged(bool const boost); - MCAPI void $onPushNotificationReceived(::PushNotificationMessage const& msg); + MCFOLD void $onPushNotificationReceived(::PushNotificationMessage const& msg); - MCAPI void $onResizeBegin(); + MCFOLD void $onResizeBegin(); - MCAPI void $onResizeEnd(); + MCFOLD void $onResizeEnd(); - MCAPI void $onDeviceLost(); + MCFOLD void $onDeviceLost(); - MCAPI void $onAppSurfaceCreated(); + MCFOLD void $onAppSurfaceCreated(); - MCAPI void $onAppSurfaceDestroyed(); + MCFOLD void $onAppSurfaceDestroyed(); - MCAPI void $onClipboardCopy(::std::string const&); + MCFOLD void $onClipboardCopy(::std::string const&); - MCAPI void $onClipboardPaste(::std::string const&); + MCFOLD void $onClipboardPaste(::std::string const&); // NOLINTEND public: diff --git a/src/mc/common/BrazeSDKManager.h b/src/mc/common/BrazeSDKManager.h index 79cf859273..401dbee6ea 100644 --- a/src/mc/common/BrazeSDKManager.h +++ b/src/mc/common/BrazeSDKManager.h @@ -56,15 +56,15 @@ class BrazeSDKManager : public ::std::enable_shared_from_this<::BrazeSDKManager> public: // virtual function thunks // NOLINTBEGIN - MCAPI void $enableBrazeSDK(); + MCFOLD void $enableBrazeSDK(); - MCAPI void $disableBrazeSDK(); + MCFOLD void $disableBrazeSDK(); - MCAPI void $setBrazeId(::std::string const&); + MCFOLD void $setBrazeId(::std::string const&); - MCAPI void $_enableBrazeSDK(); + MCFOLD void $_enableBrazeSDK(); - MCAPI void $_disableBrazeSDK(); + MCFOLD void $_disableBrazeSDK(); // NOLINTEND public: diff --git a/src/mc/common/Brightness.h b/src/mc/common/Brightness.h index 7b841750c6..50b38940a9 100644 --- a/src/mc/common/Brightness.h +++ b/src/mc/common/Brightness.h @@ -13,7 +13,7 @@ struct Brightness : public ::NewType { MCAPI Brightness(::Brightness const&); - MCAPI ::Brightness& operator=(::Brightness&&); + MCFOLD ::Brightness& operator=(::Brightness&&); MCAPI ::Brightness& operator=(::Brightness const&); // NOLINTEND @@ -31,7 +31,7 @@ struct Brightness : public ::NewType { public: // constructor thunks // NOLINTBEGIN - MCAPI void* $ctor(uchar const&); + MCFOLD void* $ctor(uchar const&); MCAPI void* $ctor(::Brightness const&); // NOLINTEND diff --git a/src/mc/common/BuildInfo.h b/src/mc/common/BuildInfo.h index f060ca1f6f..24474a1d50 100644 --- a/src/mc/common/BuildInfo.h +++ b/src/mc/common/BuildInfo.h @@ -23,7 +23,7 @@ struct BuildInfo { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/common/EditorBootstrapper.h b/src/mc/common/EditorBootstrapper.h index 12830db5bb..8e58d001c3 100644 --- a/src/mc/common/EditorBootstrapper.h +++ b/src/mc/common/EditorBootstrapper.h @@ -37,7 +37,7 @@ class EditorBootstrapper : public ::Bedrock::EnableNonOwnerReferences { public: // member functions // NOLINTBEGIN - MCAPI bool isEditorModeEnabled() const; + MCFOLD bool isEditorModeEnabled() const; MCAPI void processActivationArguments(::Bedrock::ActivationArguments const& args); diff --git a/src/mc/common/GameVersion.h b/src/mc/common/GameVersion.h index cead877abd..8707a4e156 100644 --- a/src/mc/common/GameVersion.h +++ b/src/mc/common/GameVersion.h @@ -38,7 +38,7 @@ class GameVersion { MCAPI GameVersion(uint major, uint minor, uint patch, uint revision, uint isBeta); - MCAPI ::std::string const& asString() const; + MCFOLD ::std::string const& asString() const; MCAPI bool operator<(::GameVersion const& other) const; @@ -74,6 +74,6 @@ class GameVersion { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/common/Globals.h b/src/mc/common/Globals.h index b8ab8bff59..c1147efdb5 100644 --- a/src/mc/common/Globals.h +++ b/src/mc/common/Globals.h @@ -110,7 +110,7 @@ MCAPI void* DefaultMemAllocFunction(uint64, uint); MCAPI void DefaultMemFreeFunction(void*, uint); -MCAPI void DefaultOutOfMemoryHandler(char const* file, long line); +MCFOLD void DefaultOutOfMemoryHandler(char const* file, long line); MCAPI bool DoesMockCallMatch(::HC_CALL const*, ::HC_CALL const*); @@ -145,7 +145,7 @@ MCAPI uint64 Internal_ThisThreadId(); MCAPI ::std::optional<::LogLevel> LogLevelFromString(::std::string const& str); -MCAPI bool MOCK_ASSERT_HANDLER(::AssertHandlerContext const& context); +MCFOLD bool MOCK_ASSERT_HANDLER(::AssertHandlerContext const& context); MCAPI bool MOCK_ASSERT_HANDLER_NO_THROW(::AssertHandlerContext const& context); @@ -218,7 +218,7 @@ _parseLayersV6(::Json::Value const& root, ::LevelData const& levelData, ::WorldV MCAPI void _tickBribeableComponent(::ActorOwnerComponent& actorOwnerComponent, ::BribeableComponent& bribeableComponent); -MCAPI ::std::vector<::std::string> _versionSplit(::std::string const& str, char delim); +MCFOLD ::std::vector<::std::string> _versionSplit(::std::string const& str, char delim); MCAPI char const* blockSlotToString(::BlockSlot slot); @@ -289,9 +289,9 @@ MCAPI ::std::string getJsonTypeString(::Json::ValueType const& type); MCAPI ::std::bitset<119> const& getMovementActorFlagsBitset(); -MCAPI ::std::unordered_map const& getPackParseErrorTypeEventMapAccess(); +MCFOLD ::std::unordered_map const& getPackParseErrorTypeEventMapAccess(); -MCAPI ::std::unordered_map const& getPackParseErrorTypeLOCMapAccess(); +MCFOLD ::std::unordered_map const& getPackParseErrorTypeLOCMapAccess(); MCAPI ::BidirectionalUnorderedMap<::std::string, ::SharedTypes::Legacy::LevelSoundEvent> initializeLevelSoundEventMap(); diff --git a/src/mc/common/IMinecraftApp.h b/src/mc/common/IMinecraftApp.h index d31336035e..caee6b7c76 100644 --- a/src/mc/common/IMinecraftApp.h +++ b/src/mc/common/IMinecraftApp.h @@ -48,7 +48,7 @@ class IMinecraftApp { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND public: diff --git a/src/mc/common/editor/IEditorManager.h b/src/mc/common/editor/IEditorManager.h index 22c457fb2d..532b183925 100644 --- a/src/mc/common/editor/IEditorManager.h +++ b/src/mc/common/editor/IEditorManager.h @@ -58,7 +58,7 @@ class IEditorManager : public ::Bedrock::EnableNonOwnerReferences { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND public: diff --git a/src/mc/common/editor/IEditorPlayer.h b/src/mc/common/editor/IEditorPlayer.h index 4bbf9543b8..9be2a3d017 100644 --- a/src/mc/common/editor/IEditorPlayer.h +++ b/src/mc/common/editor/IEditorPlayer.h @@ -39,7 +39,7 @@ class IEditorPlayer : public ::Bedrock::EnableNonOwnerReferences { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND public: diff --git a/src/mc/config/screen_capabilities/ActiveDirectoryScreenCapabilities.h b/src/mc/config/screen_capabilities/ActiveDirectoryScreenCapabilities.h index 87bcbc781f..37ee682e15 100644 --- a/src/mc/config/screen_capabilities/ActiveDirectoryScreenCapabilities.h +++ b/src/mc/config/screen_capabilities/ActiveDirectoryScreenCapabilities.h @@ -29,7 +29,7 @@ struct ActiveDirectoryScreenCapabilities : public ::TypedScreenCapabilities<::Ac public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND public: diff --git a/src/mc/config/screen_capabilities/CodeScreenCapabilities.h b/src/mc/config/screen_capabilities/CodeScreenCapabilities.h index 79ba31bbc6..3fb58886a7 100644 --- a/src/mc/config/screen_capabilities/CodeScreenCapabilities.h +++ b/src/mc/config/screen_capabilities/CodeScreenCapabilities.h @@ -30,7 +30,7 @@ struct CodeScreenCapabilities : public ::TypedScreenCapabilities<::CodeScreenCap public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND public: diff --git a/src/mc/config/screen_capabilities/PauseScreenCapabilities.h b/src/mc/config/screen_capabilities/PauseScreenCapabilities.h index 36789a187e..89164eafb6 100644 --- a/src/mc/config/screen_capabilities/PauseScreenCapabilities.h +++ b/src/mc/config/screen_capabilities/PauseScreenCapabilities.h @@ -34,7 +34,7 @@ struct PauseScreenCapabilities : public ::TypedScreenCapabilities<::PauseScreenC public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND public: diff --git a/src/mc/dataloadhelper/DefaultDataLoadHelper.h b/src/mc/dataloadhelper/DefaultDataLoadHelper.h index 0b5f2e5ca6..23a2513547 100644 --- a/src/mc/dataloadhelper/DefaultDataLoadHelper.h +++ b/src/mc/dataloadhelper/DefaultDataLoadHelper.h @@ -89,38 +89,38 @@ class DefaultDataLoadHelper : public ::DataLoadHelper { public: // virtual function thunks // NOLINTBEGIN - MCAPI ::Vec3 $loadPosition(::Vec3 const& position); + MCFOLD ::Vec3 $loadPosition(::Vec3 const& position); - MCAPI ::BlockPos $loadBlockPosition(::BlockPos const& blockPos); + MCFOLD ::BlockPos $loadBlockPosition(::BlockPos const& blockPos); - MCAPI ::BlockPos $loadBlockPositionOffset(::BlockPos const& blockPosOffset); + MCFOLD ::BlockPos $loadBlockPositionOffset(::BlockPos const& blockPosOffset); - MCAPI float $loadRotationDegreesX(float x); + MCFOLD float $loadRotationDegreesX(float x); - MCAPI float $loadRotationDegreesY(float y); + MCFOLD float $loadRotationDegreesY(float y); - MCAPI float $loadRotationRadiansX(float x); + MCFOLD float $loadRotationRadiansX(float x); - MCAPI float $loadRotationRadiansY(float y); + MCFOLD float $loadRotationRadiansY(float y); - MCAPI uchar $loadFacingID(uchar facing); + MCFOLD uchar $loadFacingID(uchar facing); - MCAPI ::Vec3 $loadDirection(::Vec3 const& direction); + MCFOLD ::Vec3 $loadDirection(::Vec3 const& direction); - MCAPI ::Direction::Type $loadDirection(::Direction::Type direction); + MCFOLD ::Direction::Type $loadDirection(::Direction::Type direction); - MCAPI ::ActorUniqueID $loadActorUniqueID(::ActorUniqueID id); + MCFOLD ::ActorUniqueID $loadActorUniqueID(::ActorUniqueID id); - MCAPI ::ActorUniqueID $loadOwnerID(::ActorUniqueID id); + MCFOLD ::ActorUniqueID $loadOwnerID(::ActorUniqueID id); MCAPI ::InternalComponentRegistry::ComponentInfo const* $loadActorInternalComponentInfo( ::std::unordered_map<::HashedString, ::InternalComponentRegistry::ComponentInfo> const& registry, ::std::string const& componentName ); - MCAPI bool $shouldResetTime(); + MCFOLD bool $shouldResetTime(); - MCAPI ::DataLoadHelperType $getType() const; + MCFOLD ::DataLoadHelperType $getType() const; // NOLINTEND public: diff --git a/src/mc/dataloadhelper/NewUniqueIdsDataLoadHelper.h b/src/mc/dataloadhelper/NewUniqueIdsDataLoadHelper.h index 1ed3028e25..da793e12f8 100644 --- a/src/mc/dataloadhelper/NewUniqueIdsDataLoadHelper.h +++ b/src/mc/dataloadhelper/NewUniqueIdsDataLoadHelper.h @@ -103,48 +103,48 @@ class NewUniqueIdsDataLoadHelper : public ::DataLoadHelper { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND public: // virtual function thunks // NOLINTBEGIN - MCAPI ::Vec3 $loadPosition(::Vec3 const& position); + MCFOLD ::Vec3 $loadPosition(::Vec3 const& position); - MCAPI ::BlockPos $loadBlockPosition(::BlockPos const& blockPos); + MCFOLD ::BlockPos $loadBlockPosition(::BlockPos const& blockPos); - MCAPI ::BlockPos $loadBlockPositionOffset(::BlockPos const& blockPosOffset); + MCFOLD ::BlockPos $loadBlockPositionOffset(::BlockPos const& blockPosOffset); - MCAPI float $loadRotationDegreesX(float x); + MCFOLD float $loadRotationDegreesX(float x); - MCAPI float $loadRotationDegreesY(float y); + MCFOLD float $loadRotationDegreesY(float y); - MCAPI float $loadRotationRadiansX(float x); + MCFOLD float $loadRotationRadiansX(float x); - MCAPI float $loadRotationRadiansY(float y); + MCFOLD float $loadRotationRadiansY(float y); - MCAPI uchar $loadFacingID(uchar facing); + MCFOLD uchar $loadFacingID(uchar facing); - MCAPI ::Vec3 $loadDirection(::Vec3 const& direction); + MCFOLD ::Vec3 $loadDirection(::Vec3 const& direction); - MCAPI ::Direction::Type $loadDirection(::Direction::Type direction); + MCFOLD ::Direction::Type $loadDirection(::Direction::Type direction); - MCAPI ::Rotation $loadRotation(::Rotation rotation); + MCFOLD ::Rotation $loadRotation(::Rotation rotation); - MCAPI ::Mirror $loadMirror(::Mirror mirror); + MCFOLD ::Mirror $loadMirror(::Mirror mirror); MCAPI ::ActorUniqueID $loadActorUniqueID(::ActorUniqueID id); - MCAPI ::ActorUniqueID $loadOwnerID(::ActorUniqueID id); + MCFOLD ::ActorUniqueID $loadOwnerID(::ActorUniqueID id); - MCAPI ::InternalComponentRegistry::ComponentInfo const* $loadActorInternalComponentInfo( + MCFOLD ::InternalComponentRegistry::ComponentInfo const* $loadActorInternalComponentInfo( ::std::unordered_map<::HashedString, ::InternalComponentRegistry::ComponentInfo> const& registry, ::std::string const& componentName ); - MCAPI bool $shouldResetTime(); + MCFOLD bool $shouldResetTime(); - MCAPI ::DataLoadHelperType $getType() const; + MCFOLD ::DataLoadHelperType $getType() const; // NOLINTEND public: diff --git a/src/mc/dataloadhelper/StructureDataLoadHelper.h b/src/mc/dataloadhelper/StructureDataLoadHelper.h index 7c87b4b475..3ae777eacc 100644 --- a/src/mc/dataloadhelper/StructureDataLoadHelper.h +++ b/src/mc/dataloadhelper/StructureDataLoadHelper.h @@ -140,11 +140,11 @@ class StructureDataLoadHelper : public ::DataLoadHelper { MCAPI ::BlockPos $loadBlockPositionOffset(::BlockPos const& blockPosOffset); - MCAPI float $loadRotationDegreesX(float x); + MCFOLD float $loadRotationDegreesX(float x); MCAPI float $loadRotationDegreesY(float y); - MCAPI float $loadRotationRadiansX(float x); + MCFOLD float $loadRotationRadiansX(float x); MCAPI float $loadRotationRadiansY(float y); @@ -162,14 +162,14 @@ class StructureDataLoadHelper : public ::DataLoadHelper { MCAPI ::ActorUniqueID $loadOwnerID(::ActorUniqueID id); - MCAPI ::InternalComponentRegistry::ComponentInfo const* $loadActorInternalComponentInfo( + MCFOLD ::InternalComponentRegistry::ComponentInfo const* $loadActorInternalComponentInfo( ::std::unordered_map<::HashedString, ::InternalComponentRegistry::ComponentInfo> const& registry, ::std::string const& componentName ); - MCAPI bool $shouldResetTime(); + MCFOLD bool $shouldResetTime(); - MCAPI ::DataLoadHelperType $getType() const; + MCFOLD ::DataLoadHelperType $getType() const; MCAPI ::ActorUniqueID $_generateNewID(); // NOLINTEND diff --git a/src/mc/debug/DebugEndPoint.h b/src/mc/debug/DebugEndPoint.h index 169c051b45..81cc22109a 100644 --- a/src/mc/debug/DebugEndPoint.h +++ b/src/mc/debug/DebugEndPoint.h @@ -147,15 +147,15 @@ class DebugEndPoint : public ::ContentLogEndPoint { // NOLINTBEGIN MCAPI void $log(::LogArea const area, ::LogLevel const level, char const* message); - MCAPI void $flush(); + MCFOLD void $flush(); MCAPI void $setEnabled(bool newState); - MCAPI bool $isEnabled() const; + MCFOLD bool $isEnabled() const; - MCAPI bool $logOnlyOnce() const; + MCFOLD bool $logOnlyOnce() const; - MCAPI void $contentAssert(::LogArea const area, ::LogLevel const level, char const* message); + MCFOLD void $contentAssert(::LogArea const area, ::LogLevel const level, char const* message); // NOLINTEND public: diff --git a/src/mc/deps/application/AppPlatform.h b/src/mc/deps/application/AppPlatform.h index 34c2bf932d..47246809c6 100644 --- a/src/mc/deps/application/AppPlatform.h +++ b/src/mc/deps/application/AppPlatform.h @@ -888,15 +888,15 @@ class AppPlatform : public ::IAppPlatform, public ::ISecureStorageKeySystem { MCAPI void _initializeLoadProfiler(); - MCAPI ::std::unique_ptr<::Bedrock::PlatformRuntimeInfo>& accessPlatformRuntimeInformation_Shim(); + MCFOLD ::std::unique_ptr<::Bedrock::PlatformRuntimeInfo>& accessPlatformRuntimeInformation_Shim(); - MCAPI ::Core::PathBuffer<::std::string> getCurrentStoragePath() const; + MCFOLD ::Core::PathBuffer<::std::string> getCurrentStoragePath() const; - MCAPI ::Core::PathBuffer<::std::string> getInternalStoragePath() const; + MCFOLD ::Core::PathBuffer<::std::string> getInternalStoragePath() const; - MCAPI ::std::unique_ptr<::Bedrock::PlatformRuntimeInfo> const& getPlatformRuntimeInformation() const; + MCFOLD ::std::unique_ptr<::Bedrock::PlatformRuntimeInfo> const& getPlatformRuntimeInformation() const; - MCAPI ::Core::PathBuffer<::std::string> getUserdataPath() const; + MCFOLD ::Core::PathBuffer<::std::string> getUserdataPath() const; MCAPI bool isTerminating() const; @@ -938,7 +938,7 @@ class AppPlatform : public ::IAppPlatform, public ::ISecureStorageKeySystem { MCAPI void $initAppPlatformNetworkSettings(); - MCAPI void $initializeScreenDependentResources(); + MCFOLD void $initializeScreenDependentResources(); MCAPI uint64 $getHighPerformanceThreadsCount() const; @@ -948,28 +948,28 @@ class AppPlatform : public ::IAppPlatform, public ::ISecureStorageKeySystem { MCAPI void $removeListener(::AppPlatformListener* l); - MCAPI void $restartApp(bool restart); + MCFOLD void $restartApp(bool restart); - MCAPI bool $restartRequested(); + MCFOLD bool $restartRequested(); - MCAPI int const $numberOfThrottledTreatmentPacksToImportPerMinute() const; + MCFOLD int const $numberOfThrottledTreatmentPacksToImportPerMinute() const; - MCAPI bool const $areTreatmentPacksThrottled() const; + MCFOLD bool const $areTreatmentPacksThrottled() const; - MCAPI bool $hasFastAlphaTest() const; + MCFOLD bool $hasFastAlphaTest() const; MCAPI ::std::shared_ptr<::Bedrock::Threading::IAsyncResult<::IntegrityTokenResult>> $requestIntegrityToken(::std::string const& nonceToken); - MCAPI void $setIntegrityToken(::std::string const& integrityToken); + MCFOLD void $setIntegrityToken(::std::string const& integrityToken); - MCAPI void $setIntegrityTokenErrorMessage(::std::string const& errorMessage); + MCFOLD void $setIntegrityTokenErrorMessage(::std::string const& errorMessage); - MCAPI bool $supportsInPackageRecursion() const; + MCFOLD bool $supportsInPackageRecursion() const; - MCAPI bool $supportsXboxLiveAchievements() const; + MCFOLD bool $supportsXboxLiveAchievements() const; - MCAPI void $hideSplashScreen(); + MCFOLD void $hideSplashScreen(); MCAPI ::std::string $getFeedbackBugsLink() const; @@ -977,63 +977,63 @@ class AppPlatform : public ::IAppPlatform, public ::ISecureStorageKeySystem { MCAPI auto $getModalErrorMessageProc() -> ::AssertDialogResponse (*)(::std::string const&, ::std::string const&); - MCAPI void $updateLocalization(::std::string const& loc); + MCFOLD void $updateLocalization(::std::string const& loc); - MCAPI void $setSleepEnabled(bool enabled); + MCFOLD void $setSleepEnabled(bool enabled); MCAPI ::Core::PathBuffer<::std::string> $getScratchPath(); - MCAPI ::Core::PathBuffer<::std::string> $getInternalPackStoragePath() const; + MCFOLD ::Core::PathBuffer<::std::string> $getInternalPackStoragePath() const; MCAPI ::Core::PathBuffer<::std::string> $getSettingsPath(); - MCAPI ::Core::PathBuffer<::std::string> $getLoggingPath() const; + MCFOLD ::Core::PathBuffer<::std::string> $getLoggingPath() const; - MCAPI ::Core::PathBuffer<::std::string> $getPackagedShaderCachePath(); + MCFOLD ::Core::PathBuffer<::std::string> $getPackagedShaderCachePath(); MCAPI ::Core::PathBuffer<::std::string> $getShaderCachePath(); - MCAPI ::Core::PathBuffer<::std::string> $getUserdataPathForLevels() const; + MCFOLD ::Core::PathBuffer<::std::string> $getUserdataPathForLevels() const; - MCAPI ::Core::PathBuffer<::std::string> $getCacheStoragePath(); + MCFOLD ::Core::PathBuffer<::std::string> $getCacheStoragePath(); - MCAPI ::Core::PathBuffer<::std::string> $getOnDiskScratchPath(); + MCFOLD ::Core::PathBuffer<::std::string> $getOnDiskScratchPath(); MCAPI ::Core::PathBuffer<::std::string> $getOnDiskPackScratchPath(); - MCAPI ::Core::PathBuffer<::std::string> $getLevelInfoCachePath() const; + MCFOLD ::Core::PathBuffer<::std::string> $getLevelInfoCachePath() const; - MCAPI ::Core::PathBuffer<::std::string> $getCatalogSearchScratchPath(); + MCFOLD ::Core::PathBuffer<::std::string> $getCatalogSearchScratchPath(); - MCAPI ::Core::PathBuffer<::std::string> $getUserStorageRootPath() const; + MCFOLD ::Core::PathBuffer<::std::string> $getUserStorageRootPath() const; - MCAPI ::std::shared_ptr<::Core::FileStorageArea> $getOrCreateStorageAreaForUser(::Social::UserCreationData const&); + MCFOLD ::std::shared_ptr<::Core::FileStorageArea> $getOrCreateStorageAreaForUser(::Social::UserCreationData const&); - MCAPI bool $hasSeparatedStorageAreasForContentAcquisition() const; + MCFOLD bool $hasSeparatedStorageAreasForContentAcquisition() const; - MCAPI uint64 $getOptimalLDBSize(); + MCFOLD uint64 $getOptimalLDBSize(); - MCAPI int $getMaxLDBFilesOpen() const; + MCFOLD int $getMaxLDBFilesOpen() const; - MCAPI bool $getDisableLDBSeekCompactions() const; + MCFOLD bool $getDisableLDBSeekCompactions() const; - MCAPI void $showDialog(int dialogId); + MCFOLD void $showDialog(int dialogId); - MCAPI void $createUserInput(); + MCFOLD void $createUserInput(); MCAPI void $createUserInput(int dialogId); - MCAPI int $getUserInputStatus(); + MCFOLD int $getUserInputStatus(); - MCAPI ::std::vector<::std::string> $getUserInput(); + MCFOLD ::std::vector<::std::string> $getUserInput(); MCAPI ::Bedrock::NotNullNonOwnerPtr<::IFileAccess> $getFileAccess(::ResourceFileSystem fileSystem); MCAPI ::Core::PathBuffer<::std::string> $copyImportFileToTempFolder(::Core::Path const& filePath); - MCAPI void $registerFileForCollectionWithCrashDump(::Core::Path const& fileName); + MCFOLD void $registerFileForCollectionWithCrashDump(::Core::Path const& fileName); - MCAPI void $registerExperimentsActiveCrashDump(::std::vector<::std::string> const& activeExperiments) const; + MCFOLD void $registerExperimentsActiveCrashDump(::std::vector<::std::string> const& activeExperiments) const; MCAPI int $getScreenWidth() const; @@ -1043,43 +1043,43 @@ class AppPlatform : public ::IAppPlatform, public ::ISecureStorageKeySystem { MCAPI int $getDisplayHeight(); - MCAPI void $setScreenSize(int width, int height); + MCFOLD void $setScreenSize(int width, int height); - MCAPI void $setWindowSize(int width, int height); + MCFOLD void $setWindowSize(int width, int height); - MCAPI void $setWindowText(::std::string const& title); + MCFOLD void $setWindowText(::std::string const& title); - MCAPI ::std::optional<::OperationMode> $getOperationMode() const; + MCFOLD ::std::optional<::OperationMode> $getOperationMode() const; - MCAPI bool $allowContentLogWriteToDisk(); + MCFOLD bool $allowContentLogWriteToDisk(); - MCAPI uint $getMaxClubsRequests() const; + MCFOLD uint $getMaxClubsRequests() const; - MCAPI bool $supportsLaunchingLegacyVersion() const; + MCFOLD bool $supportsLaunchingLegacyVersion() const; - MCAPI void $launchLegacyVersion(); + MCFOLD void $launchLegacyVersion(); - MCAPI bool $canManageLegacyData() const; + MCFOLD bool $canManageLegacyData() const; - MCAPI bool $supportsDayOneExperience() const; + MCFOLD bool $supportsDayOneExperience() const; - MCAPI bool $canMigrateWorldData() const; + MCFOLD bool $canMigrateWorldData() const; - MCAPI bool $isContentAutoUpdateAllowed() const; + MCFOLD bool $isContentAutoUpdateAllowed() const; MCAPI int $getMaxSimultaneousDownloads() const; - MCAPI uint $getMaxSimultaneousServiceRequests() const; + MCFOLD uint $getMaxSimultaneousServiceRequests() const; - MCAPI bool $isDownloadAndImportBlocking() const; + MCFOLD bool $isDownloadAndImportBlocking() const; - MCAPI bool $isDownloadBuffered() const; + MCFOLD bool $isDownloadBuffered() const; - MCAPI bool $supportsAutoSaveOnDBCompaction() const; + MCFOLD bool $supportsAutoSaveOnDBCompaction() const; - MCAPI bool $supportsVibration() const; + MCFOLD bool $supportsVibration() const; - MCAPI void $vibrate(int milliSeconds); + MCFOLD void $vibrate(int milliSeconds); MCAPI ::Core::PathBuffer<::std::string> $getAssetFileFullPath(::Core::Path const& filename); @@ -1092,27 +1092,27 @@ class AppPlatform : public ::IAppPlatform, public ::ISecureStorageKeySystem { MCAPI ::std::set<::Core::PathBuffer<::std::string>> $listAssetFilesIn(::Core::Path const& path, ::std::string const& extension) const; - MCAPI bool $supportsClientUpdate() const; + MCFOLD bool $supportsClientUpdate() const; MCAPI ::std::string $getClientUpdateUrl() const; - MCAPI int $checkLicense(); + MCFOLD int $checkLicense(); - MCAPI bool $hasBuyButtonWhenInvalidLicense(); + MCFOLD bool $hasBuyButtonWhenInvalidLicense(); MCAPI bool $isNetworkAvailable() const; - MCAPI bool $isLANAvailable() const; + MCFOLD bool $isLANAvailable() const; - MCAPI bool $isNetworkEnabled(bool onlyWifiAllowed) const; + MCFOLD bool $isNetworkEnabled(bool onlyWifiAllowed) const; - MCAPI void $setNetworkAllowed(bool allowed); + MCFOLD void $setNetworkAllowed(bool allowed); - MCAPI bool $isNetworkAllowed() const; + MCFOLD bool $isNetworkAllowed() const; - MCAPI bool $isInternetAvailable() const; + MCFOLD bool $isInternetAvailable() const; - MCAPI ::std::optional $isOnWifiConnectionTelemetryValue(); + MCFOLD ::std::optional $isOnWifiConnectionTelemetryValue(); MCAPI ::NetworkConnectionType $getNetworkConnectionType(); @@ -1120,41 +1120,41 @@ class AppPlatform : public ::IAppPlatform, public ::ISecureStorageKeySystem { MCAPI int $getDefaultNetworkMaxPlayers() const; - MCAPI bool $multiplayerRequiresPremiumAccess() const; + MCFOLD bool $multiplayerRequiresPremiumAccess() const; - MCAPI bool $multiplayerRequiresUGCEnabled() const; + MCFOLD bool $multiplayerRequiresUGCEnabled() const; - MCAPI bool $isCrossPlatformToggleVisible() const; + MCFOLD bool $isCrossPlatformToggleVisible() const; - MCAPI bool $isTelemetryAllowed(); + MCFOLD bool $isTelemetryAllowed(); - MCAPI bool $isTrialWorldsTransferToFullGameAllowed() const; + MCFOLD bool $isTrialWorldsTransferToFullGameAllowed() const; - MCAPI void $buyGame(); + MCFOLD void $buyGame(); - MCAPI void $finish(); + MCFOLD void $finish(); - MCAPI bool $canLaunchUri(::std::string const& uri); + MCFOLD bool $canLaunchUri(::std::string const& uri); - MCAPI void $launchUri(::std::string const& uri); + MCFOLD void $launchUri(::std::string const& uri); - MCAPI void $launchSettings(); + MCFOLD void $launchSettings(); - MCAPI bool $useXboxControlHelpers() const; + MCFOLD bool $useXboxControlHelpers() const; - MCAPI ::PlatformType $getPlatformType() const; + MCFOLD ::PlatformType $getPlatformType() const; - MCAPI bool $isCentennial() const; + MCFOLD bool $isCentennial() const; - MCAPI ::std::string $getPackageFamilyName() const; + MCFOLD ::std::string $getPackageFamilyName() const; - MCAPI ::BuildPlatform $getBuildPlatform() const; + MCFOLD ::BuildPlatform $getBuildPlatform() const; MCAPI void $setARVRPlatform(::ARVRPlatform platform); - MCAPI ::ARVRPlatform $getARVRPlatform() const; + MCFOLD ::ARVRPlatform $getARVRPlatform() const; - MCAPI int $getNumberOfParticleFramesToInterpolate() const; + MCFOLD int $getNumberOfParticleFramesToInterpolate() const; MCAPI int $getDpi() const; @@ -1164,17 +1164,17 @@ class AppPlatform : public ::IAppPlatform, public ::ISecureStorageKeySystem { MCAPI void $setUIScalingRules(::UIScalingRules UIScalingRules); - MCAPI void $setVRControllerType(::VRControllerType controllerType); + MCFOLD void $setVRControllerType(::VRControllerType controllerType); - MCAPI ::VRControllerType $getVRControllerType() const; + MCFOLD ::VRControllerType $getVRControllerType() const; - MCAPI bool $hasIDEProfiler(); + MCFOLD bool $hasIDEProfiler(); MCAPI ::std::string $getPlatformStringVar(int stringId); MCAPI uint64 $getMaximumUsedMemory(); - MCAPI uint64 $getLowMemoryEventThreshold() const; + MCFOLD uint64 $getLowMemoryEventThreshold() const; MCAPI uint64 $getLowMemoryEventRecoveryThreshold() const; @@ -1186,216 +1186,216 @@ class AppPlatform : public ::IAppPlatform, public ::ISecureStorageKeySystem { MCAPI bool $isLowPhysicalMemoryDevice() const; - MCAPI ::DeviceSunsetTier $getDeviceSunsetTier() const; + MCFOLD ::DeviceSunsetTier $getDeviceSunsetTier() const; MCAPI int $getMaxSimRadiusInChunks() const; - MCAPI ::std::vector<::std::string> $getBroadcastAddresses(); + MCFOLD ::std::vector<::std::string> $getBroadcastAddresses(); - MCAPI ::std::vector<::std::string> $getIPAddresses(); + MCFOLD ::std::vector<::std::string> $getIPAddresses(); - MCAPI bool $useAppPlatformForTelemetryIPAddress(); + MCFOLD bool $useAppPlatformForTelemetryIPAddress(); MCAPI ::std::string $getModelName(); - MCAPI bool $usesHDRBrightness() const; + MCFOLD bool $usesHDRBrightness() const; - MCAPI void $updateBootstrapSettingsFromTreatmentsAsync(); + MCFOLD void $updateBootstrapSettingsFromTreatmentsAsync(); - MCAPI void $setFullscreenMode(::FullscreenMode const fullscreenMode); + MCFOLD void $setFullscreenMode(::FullscreenMode const fullscreenMode); MCAPI bool $isNetworkThrottled() const; - MCAPI bool $isLANAllowed() const; + MCFOLD bool $isLANAllowed() const; - MCAPI bool $doesLANRequireMultiplayerRestrictions() const; + MCFOLD bool $doesLANRequireMultiplayerRestrictions() const; MCAPI void $collectGraphicsHardwareDetails(); MCAPI ::std::string $getEdition() const; - MCAPI ::OsVersion $getOSVersion() const; + MCFOLD ::OsVersion $getOSVersion() const; - MCAPI bool $isFireTV() const; + MCFOLD bool $isFireTV() const; - MCAPI bool $isWin10Arm() const; + MCFOLD bool $isWin10Arm() const; MCAPI void $setThreadsFrozen(bool frozen); MCAPI bool $areThreadsFrozen() const; - MCAPI float $getDefaultSafeZoneScaleX() const; + MCFOLD float $getDefaultSafeZoneScaleX() const; - MCAPI float $getDefaultSafeZoneScaleY() const; + MCFOLD float $getDefaultSafeZoneScaleY() const; - MCAPI float $getDefaultSafeZoneScaleAll() const; + MCFOLD float $getDefaultSafeZoneScaleAll() const; - MCAPI float $getDefaultScreenPositionX() const; + MCFOLD float $getDefaultScreenPositionX() const; - MCAPI float $getDefaultScreenPositionY() const; + MCFOLD float $getDefaultScreenPositionY() const; MCAPI bool $isQuitCapable() const; - MCAPI bool $requireControllerAtStartup() const; + MCFOLD bool $requireControllerAtStartup() const; - MCAPI bool $notifyControllerConnectionStateChange() const; + MCFOLD bool $notifyControllerConnectionStateChange() const; - MCAPI bool $platformRequiresControllerApplet() const; + MCFOLD bool $platformRequiresControllerApplet() const; MCAPI ::InputMode $getDefaultInputMode() const; MCAPI ::AppFocusState $getFocusState(); - MCAPI ::AppLifecycleContext& $getAppLifecycleContext(); + MCFOLD ::AppLifecycleContext& $getAppLifecycleContext(); - MCAPI bool $supportsFliteTTS() const; + MCFOLD bool $supportsFliteTTS() const; MCAPI ::std::unique_ptr<::SecureStorage> $getSecureStorage(); MCAPI ::SecureStorageKey $getSecureStorageKey(::std::string const& key); - MCAPI void $setSecureStorageKey(::std::string const& key, ::SecureStorageKey const& value); + MCFOLD void $setSecureStorageKey(::std::string const& key, ::SecureStorageKey const& value); - MCAPI bool $devHotReloadRenderResources() const; + MCFOLD bool $devHotReloadRenderResources() const; - MCAPI bool $shouldPauseDownloadsWhenEnterGame() const; + MCFOLD bool $shouldPauseDownloadsWhenEnterGame() const; - MCAPI bool $compareAppReceiptToLocalReceipt(::std::string const& otherReceipt); + MCFOLD bool $compareAppReceiptToLocalReceipt(::std::string const& otherReceipt); MCAPI ::mce::UUID const& $getThirdPartyPackUUID() const; - MCAPI bool $saveTreatmentPacksAsZips() const; + MCFOLD bool $saveTreatmentPacksAsZips() const; - MCAPI bool $saveEncryptedPacksAsZips() const; + MCFOLD bool $saveEncryptedPacksAsZips() const; - MCAPI bool $saveEncryptedWorldTemplatePacksAsZips() const; + MCFOLD bool $saveEncryptedWorldTemplatePacksAsZips() const; - MCAPI bool $allowsResourcePackDevelopment() const; + MCFOLD bool $allowsResourcePackDevelopment() const; - MCAPI bool $supportsLegacySinglePremiumCacheDirectory() const; + MCFOLD bool $supportsLegacySinglePremiumCacheDirectory() const; - MCAPI bool $supportsWorldShare() const; + MCFOLD bool $supportsWorldShare() const; - MCAPI bool $hasJournalingFilesystem() const; + MCFOLD bool $hasJournalingFilesystem() const; - MCAPI bool $isAutoCompactionEnabled() const; + MCFOLD bool $isAutoCompactionEnabled() const; MCAPI ::std::chrono::nanoseconds $getLevelSaveInterval() const; MCAPI ::std::chrono::nanoseconds $getOptionsSaveInterval() const; - MCAPI bool $hasPlatformSpecificInvites() const; + MCFOLD bool $hasPlatformSpecificInvites() const; - MCAPI bool $usePlatformProfilePicturesOnly() const; + MCFOLD bool $usePlatformProfilePicturesOnly() const; - MCAPI bool $allowBetaXblSignIn() const; + MCFOLD bool $allowBetaXblSignIn() const; - MCAPI bool $requiresXboxLiveSigninToPlay() const; + MCFOLD bool $requiresXboxLiveSigninToPlay() const; - MCAPI bool $requiresLiveGoldForMultiplayer() const; + MCFOLD bool $requiresLiveGoldForMultiplayer() const; - MCAPI bool $shouldRegisterForXboxLiveNotifications() const; + MCFOLD bool $shouldRegisterForXboxLiveNotifications() const; MCAPI bool $isRealmsEnabled() const; - MCAPI bool $minimizeBackgroundDownloads() const; + MCFOLD bool $minimizeBackgroundDownloads() const; - MCAPI bool $requiresAutoSaveIconExplanationPopup() const; + MCFOLD bool $requiresAutoSaveIconExplanationPopup() const; MCAPI ::std::optional<::ScreenshotOptions> $getExtraLevelSaveDataIconParams(::std::string const& levelId) const; - MCAPI ::std::vector<::std::shared_ptr<::Social::MultiplayerService>> $getMultiplayerServiceListToRegister() const; + MCFOLD ::std::vector<::std::shared_ptr<::Social::MultiplayerService>> $getMultiplayerServiceListToRegister() const; - MCAPI ::std::vector<::Social::MultiplayerServiceIdentifier> + MCFOLD ::std::vector<::Social::MultiplayerServiceIdentifier> $getBroadcastingMultiplayerServiceIds(bool xblBroadcast, bool platformBroadcast) const; - MCAPI uint $maxFileDataRequestConcurrency() const; + MCFOLD uint $maxFileDataRequestConcurrency() const; - MCAPI void $goToExternalConsumablesStoreListing() const; + MCFOLD void $goToExternalConsumablesStoreListing() const; MCAPI float $getStoreNetworkFailureTimeout() const; MCAPI ::std::shared_ptr<::Core::FileStorageArea> $createLoggingStorageArea(::Core::FileAccessType fileAccessType, ::Core::Path const& loggingPath); - MCAPI void $handlePlatformSpecificCommerceError(uint error); + MCFOLD void $handlePlatformSpecificCommerceError(uint error); - MCAPI bool $isEduMode() const; + MCFOLD bool $isEduMode() const; - MCAPI bool $importAsFlatFile() const; + MCFOLD bool $importAsFlatFile() const; - MCAPI bool $isWebviewSupported() const; + MCFOLD bool $isWebviewSupported() const; - MCAPI ::std::shared_ptr<::WebviewInterface> $createWebview(::Webview::PlatformArguments&&) const; + MCFOLD ::std::shared_ptr<::WebviewInterface> $createWebview(::Webview::PlatformArguments&&) const; - MCAPI bool $getPlatformTTSExists() const; + MCFOLD bool $getPlatformTTSExists() const; - MCAPI bool $getPlatformTTSEnabled() const; + MCFOLD bool $getPlatformTTSEnabled() const; MCAPI ::std::variant<::HWND__*, ::std::monostate> $getRenderSurfaceParameters() const; - MCAPI bool $shouldRemoveGraphicsDeviceOnAppTermination() const; + MCFOLD bool $shouldRemoveGraphicsDeviceOnAppTermination() const; - MCAPI bool $isJoinableViaExternalServers() const; + MCFOLD bool $isJoinableViaExternalServers() const; - MCAPI void $onPrimaryUserNetworkReady(); + MCFOLD void $onPrimaryUserNetworkReady(); - MCAPI bool $isDisplayInitialized() const; + MCFOLD bool $isDisplayInitialized() const; - MCAPI bool $usesAsyncOptionSaving() const; + MCFOLD bool $usesAsyncOptionSaving() const; - MCAPI void $showPlatformStoreIcon(bool shouldShow); + MCFOLD void $showPlatformStoreIcon(bool shouldShow); MCAPI void $showPlatformEmptyStoreDialog(::std::function&& callback); - MCAPI bool $supportsVRModeSwap() const; + MCFOLD bool $supportsVRModeSwap() const; - MCAPI bool $canSwapVRMode(bool const inVRMode) const; + MCFOLD bool $canSwapVRMode(bool const inVRMode) const; - MCAPI void $tryEnterVRMode(bool duringStartup, ::std::function callback); + MCFOLD void $tryEnterVRMode(bool duringStartup, ::std::function callback); - MCAPI void $exitVRMode(::std::function callback); + MCFOLD void $exitVRMode(::std::function callback); - MCAPI void $initializeGameStreaming(); + MCFOLD void $initializeGameStreaming(); MCAPI void $notifyNetworkConfigurationChanged(); - MCAPI void $setKeepScreenOnFlag(bool); + MCFOLD void $setKeepScreenOnFlag(bool); - MCAPI bool $getIsRunningInAppCenter() const; + MCFOLD bool $getIsRunningInAppCenter() const; - MCAPI void $initializeMulticast() const; + MCFOLD void $initializeMulticast() const; - MCAPI void $requestMulticastReceivePermission(); + MCFOLD void $requestMulticastReceivePermission(); - MCAPI bool $hasMulticastReceivePermission() const; + MCFOLD bool $hasMulticastReceivePermission() const; - MCAPI void $releaseMulticastReceivePermission() const; + MCFOLD void $releaseMulticastReceivePermission() const; - MCAPI void $onMinecraftGameInitComplete(); + MCFOLD void $onMinecraftGameInitComplete(); - MCAPI void $onFullGameUnlock(); + MCFOLD void $onFullGameUnlock(); MCAPI ::std::shared_ptr<::Bedrock::Threading::IAsyncResult> $showOSUserDialog(::std::string, ::std::string, ::std::string); - MCAPI bool $allowsExternalCommandExecution() const; + MCFOLD bool $allowsExternalCommandExecution() const; - MCAPI bool $_tryEnableCPUBoost(); + MCFOLD bool $_tryEnableCPUBoost(); - MCAPI void $_disableCPUBoost(); + MCFOLD void $_disableCPUBoost(); - MCAPI void $_initializeFileStorageAreas(); + MCFOLD void $_initializeFileStorageAreas(); MCAPI void $_teardownFileStorageAreas(); - MCAPI int $getPlatformDpi() const; + MCFOLD int $getPlatformDpi() const; MCAPI ::UIScalingRules $getPlatformUIScalingRules() const; - MCAPI void $_onInitialize(); + MCFOLD void $_onInitialize(); - MCAPI void $_onTeardown(); + MCFOLD void $_onTeardown(); // NOLINTEND public: diff --git a/src/mc/deps/application/AppPlatformNetworkSettings.h b/src/mc/deps/application/AppPlatformNetworkSettings.h index 1105092cb7..22c9185548 100644 --- a/src/mc/deps/application/AppPlatformNetworkSettings.h +++ b/src/mc/deps/application/AppPlatformNetworkSettings.h @@ -25,7 +25,7 @@ class AppPlatformNetworkSettings : public ::Bedrock::EnableNonOwnerReferences { public: // virtual function thunks // NOLINTBEGIN - MCAPI bool $requiresNetworkOutageMessaging() const; + MCFOLD bool $requiresNetworkOutageMessaging() const; // NOLINTEND public: diff --git a/src/mc/deps/application/ApplicationDataStores.h b/src/mc/deps/application/ApplicationDataStores.h index 899dc8b5e1..f2714841aa 100644 --- a/src/mc/deps/application/ApplicationDataStores.h +++ b/src/mc/deps/application/ApplicationDataStores.h @@ -73,10 +73,10 @@ class ApplicationDataStores : public ::Bedrock::IApplicationDataStores { // NOLINTBEGIN MCAPI void $init(); - MCAPI ::Bedrock::NonOwnerPointer<::Bedrock::DataStore> + MCFOLD ::Bedrock::NonOwnerPointer<::Bedrock::DataStore> $getDataStore(::Bedrock::IApplicationDataStores::DataStores which); - MCAPI ::Bedrock::NonOwnerPointer<::Bedrock::DataStore const> + MCFOLD ::Bedrock::NonOwnerPointer<::Bedrock::DataStore const> $getDataStore(::Bedrock::IApplicationDataStores::DataStores which) const; // NOLINTEND diff --git a/src/mc/deps/application/IAppPlatform.h b/src/mc/deps/application/IAppPlatform.h index fe6c099089..97b5b70143 100644 --- a/src/mc/deps/application/IAppPlatform.h +++ b/src/mc/deps/application/IAppPlatform.h @@ -81,7 +81,7 @@ class IAppPlatform : public ::Bedrock::EnableNonOwnerReferences { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND public: diff --git a/src/mc/deps/application/IApplicationDataStores.h b/src/mc/deps/application/IApplicationDataStores.h index 9d859cfc05..5334d569fb 100644 --- a/src/mc/deps/application/IApplicationDataStores.h +++ b/src/mc/deps/application/IApplicationDataStores.h @@ -44,7 +44,7 @@ class IApplicationDataStores : public ::Bedrock::EnableNonOwnerReferences { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND public: diff --git a/src/mc/deps/application/session/SessionInfo.h b/src/mc/deps/application/session/SessionInfo.h index f113ffea39..3731436281 100644 --- a/src/mc/deps/application/session/SessionInfo.h +++ b/src/mc/deps/application/session/SessionInfo.h @@ -30,21 +30,21 @@ class SessionInfo { public: // member functions // NOLINTBEGIN - MCAPI ::std::string const& getBranchId() const; + MCFOLD ::std::string const& getBranchId() const; - MCAPI ::std::string const& getBuildId() const; + MCFOLD ::std::string const& getBuildId() const; - MCAPI ::std::string const& getCommitId() const; + MCFOLD ::std::string const& getCommitId() const; - MCAPI int64 getCrashTimestamp() const; + MCFOLD int64 getCrashTimestamp() const; - MCAPI ::std::optional const& getErrorCode() const; + MCFOLD ::std::optional const& getErrorCode() const; - MCAPI ::std::string const& getErrorMessage() const; + MCFOLD ::std::string const& getErrorMessage() const; - MCAPI ::std::string const& getSessionId() const; + MCFOLD ::std::string const& getSessionId() const; - MCAPI ::std::map<::std::string, ::std::string>& getTags(); + MCFOLD ::std::map<::std::string, ::std::string>& getTags(); // NOLINTEND }; diff --git a/src/mc/deps/application/storage_migration/WorldRecoveryTelemetryHandler.h b/src/mc/deps/application/storage_migration/WorldRecoveryTelemetryHandler.h index 5f86718eb4..567f33df5e 100644 --- a/src/mc/deps/application/storage_migration/WorldRecoveryTelemetryHandler.h +++ b/src/mc/deps/application/storage_migration/WorldRecoveryTelemetryHandler.h @@ -26,7 +26,7 @@ class WorldRecoveryTelemetryHandler : public ::Bedrock::EnableNonOwnerReferences public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND public: diff --git a/src/mc/deps/cereal/BasicLoader.h b/src/mc/deps/cereal/BasicLoader.h index 319ad4b23d..e48b4d9e01 100644 --- a/src/mc/deps/cereal/BasicLoader.h +++ b/src/mc/deps/cereal/BasicLoader.h @@ -52,7 +52,7 @@ class BasicLoader : public ::cereal::BasicContextOwner { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND public: diff --git a/src/mc/deps/cereal/BasicSaver.h b/src/mc/deps/cereal/BasicSaver.h index c64d949f93..746223180c 100644 --- a/src/mc/deps/cereal/BasicSaver.h +++ b/src/mc/deps/cereal/BasicSaver.h @@ -46,7 +46,7 @@ class BasicSaver : public ::cereal::BasicContextOwner { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND public: diff --git a/src/mc/deps/cereal/BinarySchemaReader.h b/src/mc/deps/cereal/BinarySchemaReader.h index 95116dadbc..b002aac7ee 100644 --- a/src/mc/deps/cereal/BinarySchemaReader.h +++ b/src/mc/deps/cereal/BinarySchemaReader.h @@ -127,9 +127,9 @@ class BinarySchemaReader : public ::cereal::SchemaReader { // NOLINTBEGIN MCAPI bool $isValid() const; - MCAPI ::cereal::SchemaReaderState $isObject() const; + MCFOLD ::cereal::SchemaReaderState $isObject() const; - MCAPI ::cereal::SchemaReaderState $isArray() const; + MCFOLD ::cereal::SchemaReaderState $isArray() const; MCAPI ::Bedrock::Result $asBool(::cereal::PropertyReader const&); @@ -155,7 +155,7 @@ class BinarySchemaReader : public ::cereal::SchemaReader { MCAPI ::Bedrock::Result<::std::string> $asString(::cereal::PropertyReader const&); - MCAPI uint64 $members(); + MCFOLD uint64 $members(); MCAPI uint64 $length(); @@ -167,7 +167,7 @@ class BinarySchemaReader : public ::cereal::SchemaReader { MCAPI void $pop(); - MCAPI bool $isSequenceReader() const; + MCFOLD bool $isSequenceReader() const; // NOLINTEND public: diff --git a/src/mc/deps/cereal/Constraint.h b/src/mc/deps/cereal/Constraint.h index f96bdee53d..657e9ebcd3 100644 --- a/src/mc/deps/cereal/Constraint.h +++ b/src/mc/deps/cereal/Constraint.h @@ -27,7 +27,7 @@ class Constraint { public: // member functions // NOLINTBEGIN - MCAPI void validate(::entt::meta_any const& any, ::cereal::SerializerContext& context) const; + MCFOLD void validate(::entt::meta_any const& any, ::cereal::SerializerContext& context) const; // NOLINTEND public: diff --git a/src/mc/deps/cereal/JSONCppSchemaReader.h b/src/mc/deps/cereal/JSONCppSchemaReader.h index c69eb11e39..00fc358d9a 100644 --- a/src/mc/deps/cereal/JSONCppSchemaReader.h +++ b/src/mc/deps/cereal/JSONCppSchemaReader.h @@ -74,27 +74,27 @@ class JSONCppSchemaReader : public ::cereal::JSONCppSchemaReaderBase { public: // virtual function thunks // NOLINTBEGIN - MCAPI bool $_allowAsBool(); + MCFOLD bool $_allowAsBool(); - MCAPI bool $_allowAsInt8(); + MCFOLD bool $_allowAsInt8(); - MCAPI bool $_allowAsUInt8(); + MCFOLD bool $_allowAsUInt8(); - MCAPI bool $_allowAsInt16(); + MCFOLD bool $_allowAsInt16(); - MCAPI bool $_allowAsUInt16(); + MCFOLD bool $_allowAsUInt16(); - MCAPI bool $_allowAsInt32(); + MCFOLD bool $_allowAsInt32(); - MCAPI bool $_allowAsUInt32(); + MCFOLD bool $_allowAsUInt32(); - MCAPI bool $_allowAsInt64(); + MCFOLD bool $_allowAsInt64(); - MCAPI bool $_allowAsUInt64(); + MCFOLD bool $_allowAsUInt64(); - MCAPI bool $_allowAsFloat(); + MCFOLD bool $_allowAsFloat(); - MCAPI bool $_allowAsDouble(); + MCFOLD bool $_allowAsDouble(); // NOLINTEND public: diff --git a/src/mc/deps/cereal/JSONCppSchemaReaderBase.h b/src/mc/deps/cereal/JSONCppSchemaReaderBase.h index 7c3dc6a59e..f8998fcda6 100644 --- a/src/mc/deps/cereal/JSONCppSchemaReaderBase.h +++ b/src/mc/deps/cereal/JSONCppSchemaReaderBase.h @@ -46,7 +46,7 @@ class JSONCppSchemaReaderBase : public ::cereal::SchemaReader { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; @@ -181,7 +181,7 @@ class JSONCppSchemaReaderBase : public ::cereal::SchemaReader { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND public: @@ -217,9 +217,9 @@ class JSONCppSchemaReaderBase : public ::cereal::SchemaReader { MCAPI ::Bedrock::Result<::std::string> $asString(::cereal::PropertyReader const&); - MCAPI uint64 $members(); + MCFOLD uint64 $members(); - MCAPI uint64 $length(); + MCFOLD uint64 $length(); MCAPI bool $pushMember(::std::string_view const name, ::cereal::PropertyReader const&); diff --git a/src/mc/deps/cereal/NonStrictJsonLoader.h b/src/mc/deps/cereal/NonStrictJsonLoader.h index fe7557cec4..7498ea8873 100644 --- a/src/mc/deps/cereal/NonStrictJsonLoader.h +++ b/src/mc/deps/cereal/NonStrictJsonLoader.h @@ -18,7 +18,7 @@ class NonStrictJsonLoader : public ::cereal::BasicLoader { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND public: diff --git a/src/mc/deps/cereal/NullConstraint.h b/src/mc/deps/cereal/NullConstraint.h index 9ad70e62e7..4883d4a5a6 100644 --- a/src/mc/deps/cereal/NullConstraint.h +++ b/src/mc/deps/cereal/NullConstraint.h @@ -30,15 +30,15 @@ class NullConstraint : public ::cereal::Constraint { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND public: // virtual function thunks // NOLINTBEGIN - MCAPI void $doValidate(::entt::meta_any const&, ::cereal::SerializerContext&) const; + MCFOLD void $doValidate(::entt::meta_any const&, ::cereal::SerializerContext&) const; - MCAPI ::cereal::internal::ConstraintDescription $description() const; + MCFOLD ::cereal::internal::ConstraintDescription $description() const; // NOLINTEND public: diff --git a/src/mc/deps/cereal/RapidJSONSchemaReader.h b/src/mc/deps/cereal/RapidJSONSchemaReader.h index 1229b136e3..6c967716f2 100644 --- a/src/mc/deps/cereal/RapidJSONSchemaReader.h +++ b/src/mc/deps/cereal/RapidJSONSchemaReader.h @@ -145,17 +145,17 @@ class RapidJSONSchemaReader : public ::cereal::SchemaReader { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND public: // virtual function thunks // NOLINTBEGIN - MCAPI bool $isValid() const; + MCFOLD bool $isValid() const; - MCAPI ::cereal::SchemaReaderState $isObject() const; + MCFOLD ::cereal::SchemaReaderState $isObject() const; - MCAPI ::cereal::SchemaReaderState $isArray() const; + MCFOLD ::cereal::SchemaReaderState $isArray() const; MCAPI ::Bedrock::Result $asBool(::cereal::PropertyReader const&); @@ -181,17 +181,17 @@ class RapidJSONSchemaReader : public ::cereal::SchemaReader { MCAPI ::Bedrock::Result<::std::string> $asString(::cereal::PropertyReader const&); - MCAPI uint64 $members(); + MCFOLD uint64 $members(); - MCAPI uint64 $length(); + MCFOLD uint64 $length(); - MCAPI bool $pushMember(::std::string_view const name, ::cereal::PropertyReader const&); + MCFOLD bool $pushMember(::std::string_view const name, ::cereal::PropertyReader const&); - MCAPI ::std::string_view $pushNextMember(::cereal::PropertyReader const&); + MCFOLD ::std::string_view $pushNextMember(::cereal::PropertyReader const&); - MCAPI void $pushElement(uint64 index, ::cereal::PropertyReader const&); + MCFOLD void $pushElement(uint64 index, ::cereal::PropertyReader const&); - MCAPI void $pop(); + MCFOLD void $pop(); // NOLINTEND public: diff --git a/src/mc/deps/cereal/SerializerContext.h b/src/mc/deps/cereal/SerializerContext.h index 7fa5869c0c..198ae45f32 100644 --- a/src/mc/deps/cereal/SerializerContext.h +++ b/src/mc/deps/cereal/SerializerContext.h @@ -99,9 +99,9 @@ class SerializerContext { MCAPI ::std::vector<::std::string> getErrors() const; - MCAPI ::std::vector<::cereal::SerializerContext::LogEntry> const& getLog() const; + MCFOLD ::std::vector<::cereal::SerializerContext::LogEntry> const& getLog() const; - MCAPI ::cereal::ResultCode getStatus() const; + MCFOLD ::cereal::ResultCode getStatus() const; MCAPI bool isValid() const; @@ -126,7 +126,7 @@ class SerializerContext { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/deps/cereal/SerializerEnumMapping.h b/src/mc/deps/cereal/SerializerEnumMapping.h index bd4c558e36..b59ec20258 100644 --- a/src/mc/deps/cereal/SerializerEnumMapping.h +++ b/src/mc/deps/cereal/SerializerEnumMapping.h @@ -2,71 +2,6 @@ #include "mc/_HeaderOutputPredefine.h" -// auto generated inclusion list -#include "mc/deps/cereal/schema/ReflectedType.h" -#include "mc/deps/core/math/EasingType.h" -#include "mc/deps/shared_types/EquipmentSlot.h" -#include "mc/deps/shared_types/Facing.h" -#include "mc/deps/shared_types/FilterSubject.h" -#include "mc/deps/shared_types/JigsawJointType.h" -#include "mc/deps/shared_types/LevelSoundEvent.h" -#include "mc/deps/shared_types/UseAnimation.h" -#include "mc/deps/shared_types/v1_20_60/OverworldHeightBiomeJsonComponent.h" -#include "mc/deps/shared_types/v1_21_10/CoordinateEvaluationOrder.h" -#include "mc/deps/shared_types/v1_21_10/RandomDistributionType.h" -#include "mc/deps/shared_types/v1_21_20/IntProviderType.h" -#include "mc/deps/shared_types/v1_21_20/structure/Axis.h" -#include "mc/deps/shared_types/v1_21_20/structure/BlockEntityModifierType.h" -#include "mc/deps/shared_types/v1_21_20/structure/BlockType.h" -#include "mc/deps/shared_types/v1_21_20/structure/PosType.h" -#include "mc/deps/shared_types/v1_21_20/structure/Type.h" -#include "mc/deps/shared_types/v1_21_20/structure/definition/GenerationStep.h" -#include "mc/deps/shared_types/v1_21_20/structure/definition/HeightmapProjection.h" -#include "mc/deps/shared_types/v1_21_20/structure/definition/TerrainAdaptation.h" -#include "mc/deps/shared_types/v1_21_20/structure/set/PlacementType.h" -#include "mc/deps/shared_types/v1_21_20/structure/set/SpreadType.h" -#include "mc/deps/shared_types/v1_21_20/structure/template_pool/ElementType.h" -#include "mc/deps/shared_types/v1_21_20/structure/template_pool/Projection.h" -#include "mc/editor/Axis.h" -#include "mc/editor/Mode.h" -#include "mc/editor/OperationType.h" -#include "mc/editor/Plane.h" -#include "mc/editor/ScriptManagerEventType.h" -#include "mc/editor/cursor/ControlMode.h" -#include "mc/editor/cursor/TargetMode.h" -#include "mc/editor/datastore/EventType.h" -#include "mc/editor/input/KeyInputType.h" -#include "mc/editor/logging/LogContext.h" -#include "mc/editor/logging/LogLevel.h" -#include "mc/editor/selection/SelectionContainerColorPayload.h" -#include "mc/editor/selection/SelectionContainerUnaryPayload.h" -#include "mc/editor/selection/SelectionServicePayload.h" -#include "mc/editor/services/native_brush/BrushPaintCompletionState.h" -#include "mc/editor/services/native_brush/BrushPaintMode.h" -#include "mc/editor/services/native_brush/BrushShapeMethod.h" -#include "mc/editor/services/render_helper/PrimitiveType.h" -#include "mc/editor/services/render_helper/SplineType.h" -#include "mc/editor/services/widgets/GroupSelectionMode.h" -#include "mc/editor/settings/ThemeSettingsColorKey.h" -#include "mc/scripting/diagnostics/ScriptStat.h" -#include "mc/util/Mirror.h" -#include "mc/util/Rotation.h" -#include "mc/world/WorldTransferResult.h" -#include "mc/world/actor/ArmorTextureType.h" -#include "mc/world/item/CreativeItemCategory.h" -#include "mc/world/item/Rarity.h" -#include "mc/world/level/WorldVersion.h" -#include "mc/world/level/biome/BiomeTemperatureCategory.h" -#include "mc/world/level/block/BlockRenderLayer.h" -#include "mc/world/level/block/CompoundBlockVolumeAction.h" -#include "mc/world/level/block/CompoundBlockVolumePositionRelativity.h" -#include "mc/world/level/block/LiquidReaction.h" -#include "mc/world/level/block/LiquidType.h" -#include "mc/world/level/block/components/BreathingType.h" -#include "mc/world/level/camera/CameraPreset.h" -#include "mc/world/level/camera/aimassist/camera_aim_assist/TargetMode.h" -#include "mc/world/level/material/MaterialType.h" - namespace cereal { class SerializerEnumMapping { @@ -86,278 +21,6 @@ class SerializerEnumMapping { // NOLINTBEGIN MCAPI SerializerEnumMapping(::cereal::SerializerEnumMapping const&); - MCAPI explicit SerializerEnumMapping( - ::std::initializer_list<::std::pair<::std::string const, ::Editor::ScriptManagerEventType>> mappings - ); - - MCAPI explicit SerializerEnumMapping( - ::std::initializer_list<::std::pair<::std::string const, ::Editor::Settings::ThemeSettingsColorKey>> mappings - ); - - MCAPI explicit SerializerEnumMapping( - ::std::initializer_list< - ::std::pair<::std::string const, ::SharedTypes::v1_21_20::JigsawStructureDefinition::GenerationStep>> - mappings - ); - - MCAPI explicit SerializerEnumMapping( - ::std::initializer_list<::std::pair<::std::string const, ::Editor::LogContext>> mappings - ); - - MCAPI explicit SerializerEnumMapping( - ::std::initializer_list< - ::std::pair<::std::string const, ::Editor::Network::SelectionContainerUnaryPayload::UnaryAction>> mappings - ); - - MCAPI explicit SerializerEnumMapping( - ::std::initializer_list< - ::std::pair<::std::string const, ::SharedTypes::v1_21_20::JigsawStructureSet::PlacementType>> mappings - ); - - MCAPI explicit SerializerEnumMapping( - ::std::initializer_list< - ::std::pair<::std::string const, ::SharedTypes::v1_21_20::JigsawStructureTemplatePool::Projection>> mappings - ); - - MCAPI explicit SerializerEnumMapping( - ::std::initializer_list< - ::std::pair<::std::string const, ::SharedTypes::v1_21_20::JigsawStructure::ProcessorRule::BlockType>> - mappings - ); - - MCAPI explicit SerializerEnumMapping( - ::std::initializer_list<::std::pair<::std::string const, ::Editor::Input::KeyInputType>> mappings - ); - - MCAPI explicit SerializerEnumMapping( - ::std::initializer_list< - ::std::pair<::std::string const, ::SharedTypes::v1_21_20::JigsawStructureTemplatePool::ElementType>> - mappings - ); - - MCAPI explicit SerializerEnumMapping( - ::std::initializer_list<::std::pair<::std::string const, ::SharedTypes::JigsawJointType>> mappings - ); - - MCAPI explicit SerializerEnumMapping( - ::std::initializer_list< - ::std::pair<::std::string const, ::SharedTypes::v1_20_60::OverworldHeightBiomeJsonComponent::NoiseType>> - mappings - ); - - MCAPI explicit SerializerEnumMapping( - ::std::initializer_list<::std::pair<::std::string const, ::CompoundBlockVolumePositionRelativity>> mappings - ); - - MCAPI explicit SerializerEnumMapping( - ::std::initializer_list<::std::pair<::std::string const, ::SharedTypes::v1_21_20::IntProviderType>> mappings - ); - - MCAPI explicit SerializerEnumMapping( - ::std::initializer_list<::std::pair<::std::string const, ::Editor::Cursor::ControlMode>> mappings - ); - - MCAPI explicit SerializerEnumMapping( - ::std::initializer_list< - ::std::pair<::std::string const, ::SharedTypes::v1_21_20::JigsawStructure::Processors::Type>> mappings - ); - - MCAPI explicit SerializerEnumMapping( - ::std::initializer_list< - ::std::pair<::std::string const, ::SharedTypes::v1_21_20::JigsawStructureDefinition::TerrainAdaptation>> - mappings - ); - - MCAPI explicit SerializerEnumMapping( - ::std::initializer_list<::std::pair<::std::string const, ::cereal::internal::ReflectedType>> mappings - ); - - MCAPI explicit SerializerEnumMapping( - ::std::initializer_list<::std::pair<::std::string const, ::CompoundBlockVolumeAction>> mappings - ); - - MCAPI explicit SerializerEnumMapping( - ::std::initializer_list<::std::pair<::std::string const, ::Editor::Widgets::GroupSelectionMode>> mappings - ); - - MCAPI explicit SerializerEnumMapping( - ::std::initializer_list<::std::pair<::std::string const, ::Editor::Network::SelectionServicePayload::Action>> - mappings - ); - - MCAPI explicit SerializerEnumMapping( - ::std::initializer_list<::std::pair<::std::string const, ::Editor::Brush::BrushShapeMethod>> mappings - ); - - MCAPI explicit SerializerEnumMapping( - ::std::initializer_list<::std::pair<::std::string const, ::BreathingType>> mappings - ); - - MCAPI explicit SerializerEnumMapping( - ::std::initializer_list<::std::pair<::std::string const, ::Editor::Axis>> mappings - ); - - MCAPI explicit SerializerEnumMapping( - ::std::initializer_list<::std::pair<::std::string const, ::Editor::Brush::BrushPaintMode>> mappings - ); - - MCAPI explicit SerializerEnumMapping( - ::std::initializer_list<::std::pair<::std::string const, ::SharedTypes::Legacy::UseAnimation>> mappings - ); - - MCAPI explicit SerializerEnumMapping( - ::std::initializer_list<::std::pair<::std::string const, ::Editor::Mode>> mappings - ); - - MCAPI explicit SerializerEnumMapping( - ::std::initializer_list< - ::std::pair<::std::string const, ::SharedTypes::v1_21_20::JigsawStructure::ProcessorRule::Axis>> mappings - ); - - MCAPI explicit SerializerEnumMapping( - ::std::initializer_list<::std::pair<::std::string const, ::WorldTransferResult>> mappings - ); - - MCAPI explicit SerializerEnumMapping( - ::std::initializer_list<::std::pair<::std::string const, ::Editor::LogLevel>> mappings - ); - - MCAPI explicit SerializerEnumMapping( - ::std::initializer_list<::std::pair<::std::string const, ::BiomeTemperatureCategory>> mappings - ); - - MCAPI explicit SerializerEnumMapping( - ::std::initializer_list<::std::pair<::std::string const, ::SharedTypes::Legacy::EquipmentSlot>> mappings - ); - - MCAPI explicit SerializerEnumMapping( - ::std::initializer_list<::std::pair<::std::string const, ::ScriptStat::Type>> mappings - ); - - MCAPI explicit SerializerEnumMapping( - ::std::initializer_list<::std::pair<::std::string const, ::MaterialType>> mappings - ); - - MCAPI explicit SerializerEnumMapping( - ::std::initializer_list<::std::pair<::std::string const, ::ArmorTextureType>> mappings - ); - - MCAPI explicit SerializerEnumMapping( - ::std::initializer_list<::std::pair<::std::string const, ::BlockRenderLayer>> mappings - ); - - MCAPI explicit SerializerEnumMapping( - ::std::initializer_list<::std::pair<::std::string const, ::SharedTypes::v1_21_10::RandomDistributionType>> - mappings - ); - - MCAPI explicit SerializerEnumMapping( - ::std::initializer_list<::std::pair<::std::string const, ::CreativeItemCategory>> mappings - ); - - MCAPI explicit SerializerEnumMapping( - ::std::initializer_list<::std::pair<::std::string const, ::Editor::RenderHelper::PrimitiveType>> mappings - ); - - MCAPI explicit SerializerEnumMapping(::std::initializer_list<::std::pair<::std::string const, ::Rotation>> mappings - ); - - MCAPI explicit SerializerEnumMapping( - ::std::initializer_list< - ::std::pair<::std::string const, ::Editor::Network::SelectionContainerColorPayload::Element>> mappings - ); - - MCAPI explicit SerializerEnumMapping( - ::std::initializer_list<::std::pair<::std::string const, ::SharedTypes::Legacy::FilterSubject>> mappings - ); - - MCAPI explicit SerializerEnumMapping(::std::initializer_list<::std::pair<::std::string const, ::Mirror>> mappings); - - MCAPI explicit SerializerEnumMapping(::std::initializer_list<::std::pair<::std::string const, ::Rarity>> mappings); - - MCAPI explicit SerializerEnumMapping( - ::std::initializer_list<::std::pair<::std::string const, ::EasingType>> mappings - ); - - MCAPI explicit SerializerEnumMapping( - ::std::initializer_list<::std::pair<::std::string const, ::LiquidType>> mappings - ); - - MCAPI explicit SerializerEnumMapping( - ::std::initializer_list<::std::pair<::std::string const, ::LiquidReaction>> mappings - ); - - MCAPI explicit SerializerEnumMapping( - ::std::initializer_list<::std::pair<::std::string const, ::SharedTypes::Facing>> mappings - ); - - MCAPI explicit SerializerEnumMapping( - ::std::initializer_list<::std::pair<::std::string const, ::CameraPreset::AudioListener>> mappings - ); - - MCAPI explicit SerializerEnumMapping( - ::std::initializer_list<::std::pair<::std::string const, ::Editor::DataStore::EventType>> mappings - ); - - MCAPI explicit SerializerEnumMapping( - ::std::initializer_list<::std::pair<::std::string const, ::CameraAimAssist::TargetMode>> mappings - ); - - MCAPI explicit SerializerEnumMapping( - ::std::initializer_list<::std::pair<::std::string const, ::Editor::BlockMask::OperationType>> mappings - ); - - MCAPI explicit SerializerEnumMapping( - ::std::initializer_list<::std::pair<::std::string const, ::Editor::RenderHelper::SplineType>> mappings - ); - - MCAPI explicit SerializerEnumMapping( - ::std::initializer_list<::std::pair<::std::string const, ::SharedTypes::Legacy::LevelSoundEvent>> mappings - ); - - MCAPI explicit SerializerEnumMapping( - ::std::initializer_list<::std::pair<::std::string const, ::Editor::Brush::BrushPaintCompletionState>> mappings - ); - - MCAPI explicit SerializerEnumMapping( - ::std::initializer_list<::std::pair<::std::string const, ::SharedTypes::v1_21_10::CoordinateEvaluationOrder>> - mappings - ); - - MCAPI explicit SerializerEnumMapping( - ::std::initializer_list< - ::std::pair<::std::string const, ::SharedTypes::v1_21_20::JigsawStructureSet::SpreadType>> mappings - ); - - MCAPI explicit SerializerEnumMapping( - ::std::initializer_list< - ::std::pair<::std::string const, ::SharedTypes::v1_21_20::JigsawStructure::ProcessorRule::PosType>> mappings - ); - - MCAPI explicit SerializerEnumMapping( - ::std::initializer_list< - ::std::pair<::std::string const, ::SharedTypes::v1_21_20::JigsawStructureDefinition::HeightmapProjection>> - mappings - ); - - MCAPI explicit SerializerEnumMapping( - ::std::initializer_list<::std::pair< - ::std::string const, - ::SharedTypes::v1_21_20::JigsawStructure::ProcessorRule::BlockEntityModifierType>> mappings - ); - - MCAPI explicit SerializerEnumMapping( - ::std::initializer_list<::std::pair<::std::string const, ::Editor::Plane>> mappings - ); - - MCAPI explicit SerializerEnumMapping( - ::std::initializer_list<::std::pair<::std::string const, ::WorldVersion>> mappings - ); - - MCAPI explicit SerializerEnumMapping( - ::std::initializer_list<::std::pair<::std::string const, ::Editor::Cursor::TargetMode>> mappings - ); - MCAPI ::std::optional<::std::string> lookup(int64 key) const; MCAPI ::std::optional lookup(::std::string_view key) const; @@ -374,204 +37,12 @@ class SerializerEnumMapping { // constructor thunks // NOLINTBEGIN MCAPI void* $ctor(::cereal::SerializerEnumMapping const&); - - MCAPI void* - $ctor(::std::initializer_list<::std::pair<::std::string const, ::Editor::ScriptManagerEventType>> mappings); - - MCAPI void* - $ctor(::std::initializer_list<::std::pair<::std::string const, ::Editor::Settings::ThemeSettingsColorKey>> mappings - ); - - MCAPI void* - $ctor(::std::initializer_list< - ::std::pair<::std::string const, ::SharedTypes::v1_21_20::JigsawStructureDefinition::GenerationStep>> mappings - ); - - MCAPI void* $ctor(::std::initializer_list<::std::pair<::std::string const, ::Editor::LogContext>> mappings); - - MCAPI void* - $ctor(::std::initializer_list< - ::std::pair<::std::string const, ::Editor::Network::SelectionContainerUnaryPayload::UnaryAction>> mappings); - - MCAPI void* - $ctor(::std::initializer_list< - ::std::pair<::std::string const, ::SharedTypes::v1_21_20::JigsawStructureSet::PlacementType>> mappings); - - MCAPI void* - $ctor(::std::initializer_list< - ::std::pair<::std::string const, ::SharedTypes::v1_21_20::JigsawStructureTemplatePool::Projection>> mappings); - - MCAPI void* - $ctor(::std::initializer_list< - ::std::pair<::std::string const, ::SharedTypes::v1_21_20::JigsawStructure::ProcessorRule::BlockType>> mappings - ); - - MCAPI void* $ctor(::std::initializer_list<::std::pair<::std::string const, ::Editor::Input::KeyInputType>> mappings - ); - - MCAPI void* - $ctor(::std::initializer_list< - ::std::pair<::std::string const, ::SharedTypes::v1_21_20::JigsawStructureTemplatePool::ElementType>> mappings - ); - - MCAPI void* $ctor(::std::initializer_list<::std::pair<::std::string const, ::SharedTypes::JigsawJointType>> mappings - ); - - MCAPI void* - $ctor(::std::initializer_list< - ::std::pair<::std::string const, ::SharedTypes::v1_20_60::OverworldHeightBiomeJsonComponent::NoiseType>> - mappings); - - MCAPI void* - $ctor(::std::initializer_list<::std::pair<::std::string const, ::CompoundBlockVolumePositionRelativity>> mappings); - - MCAPI void* - $ctor(::std::initializer_list<::std::pair<::std::string const, ::SharedTypes::v1_21_20::IntProviderType>> mappings); - - MCAPI void* $ctor(::std::initializer_list<::std::pair<::std::string const, ::Editor::Cursor::ControlMode>> mappings - ); - - MCAPI void* - $ctor(::std::initializer_list< - ::std::pair<::std::string const, ::SharedTypes::v1_21_20::JigsawStructure::Processors::Type>> mappings); - - MCAPI void* - $ctor(::std::initializer_list< - ::std::pair<::std::string const, ::SharedTypes::v1_21_20::JigsawStructureDefinition::TerrainAdaptation>> - mappings); - - MCAPI void* - $ctor(::std::initializer_list<::std::pair<::std::string const, ::cereal::internal::ReflectedType>> mappings); - - MCAPI void* $ctor(::std::initializer_list<::std::pair<::std::string const, ::CompoundBlockVolumeAction>> mappings); - - MCAPI void* - $ctor(::std::initializer_list<::std::pair<::std::string const, ::Editor::Widgets::GroupSelectionMode>> mappings); - - MCAPI void* - $ctor(::std::initializer_list<::std::pair<::std::string const, ::Editor::Network::SelectionServicePayload::Action>> - mappings); - - MCAPI void* - $ctor(::std::initializer_list<::std::pair<::std::string const, ::Editor::Brush::BrushShapeMethod>> mappings); - - MCAPI void* $ctor(::std::initializer_list<::std::pair<::std::string const, ::BreathingType>> mappings); - - MCAPI void* $ctor(::std::initializer_list<::std::pair<::std::string const, ::Editor::Axis>> mappings); - - MCAPI void* - $ctor(::std::initializer_list<::std::pair<::std::string const, ::Editor::Brush::BrushPaintMode>> mappings); - - MCAPI void* - $ctor(::std::initializer_list<::std::pair<::std::string const, ::SharedTypes::Legacy::UseAnimation>> mappings); - - MCAPI void* $ctor(::std::initializer_list<::std::pair<::std::string const, ::Editor::Mode>> mappings); - - MCAPI void* - $ctor(::std::initializer_list< - ::std::pair<::std::string const, ::SharedTypes::v1_21_20::JigsawStructure::ProcessorRule::Axis>> mappings); - - MCAPI void* $ctor(::std::initializer_list<::std::pair<::std::string const, ::WorldTransferResult>> mappings); - - MCAPI void* $ctor(::std::initializer_list<::std::pair<::std::string const, ::Editor::LogLevel>> mappings); - - MCAPI void* $ctor(::std::initializer_list<::std::pair<::std::string const, ::BiomeTemperatureCategory>> mappings); - - MCAPI void* - $ctor(::std::initializer_list<::std::pair<::std::string const, ::SharedTypes::Legacy::EquipmentSlot>> mappings); - - MCAPI void* $ctor(::std::initializer_list<::std::pair<::std::string const, ::ScriptStat::Type>> mappings); - - MCAPI void* $ctor(::std::initializer_list<::std::pair<::std::string const, ::MaterialType>> mappings); - - MCAPI void* $ctor(::std::initializer_list<::std::pair<::std::string const, ::ArmorTextureType>> mappings); - - MCAPI void* $ctor(::std::initializer_list<::std::pair<::std::string const, ::BlockRenderLayer>> mappings); - - MCAPI void* - $ctor(::std::initializer_list<::std::pair<::std::string const, ::SharedTypes::v1_21_10::RandomDistributionType>> - mappings); - - MCAPI void* $ctor(::std::initializer_list<::std::pair<::std::string const, ::CreativeItemCategory>> mappings); - - MCAPI void* - $ctor(::std::initializer_list<::std::pair<::std::string const, ::Editor::RenderHelper::PrimitiveType>> mappings); - - MCAPI void* $ctor(::std::initializer_list<::std::pair<::std::string const, ::Rotation>> mappings); - - MCAPI void* - $ctor(::std::initializer_list< - ::std::pair<::std::string const, ::Editor::Network::SelectionContainerColorPayload::Element>> mappings); - - MCAPI void* - $ctor(::std::initializer_list<::std::pair<::std::string const, ::SharedTypes::Legacy::FilterSubject>> mappings); - - MCAPI void* $ctor(::std::initializer_list<::std::pair<::std::string const, ::Mirror>> mappings); - - MCAPI void* $ctor(::std::initializer_list<::std::pair<::std::string const, ::Rarity>> mappings); - - MCAPI void* $ctor(::std::initializer_list<::std::pair<::std::string const, ::EasingType>> mappings); - - MCAPI void* $ctor(::std::initializer_list<::std::pair<::std::string const, ::LiquidType>> mappings); - - MCAPI void* $ctor(::std::initializer_list<::std::pair<::std::string const, ::LiquidReaction>> mappings); - - MCAPI void* $ctor(::std::initializer_list<::std::pair<::std::string const, ::SharedTypes::Facing>> mappings); - - MCAPI void* $ctor(::std::initializer_list<::std::pair<::std::string const, ::CameraPreset::AudioListener>> mappings - ); - - MCAPI void* $ctor(::std::initializer_list<::std::pair<::std::string const, ::Editor::DataStore::EventType>> mappings - ); - - MCAPI void* $ctor(::std::initializer_list<::std::pair<::std::string const, ::CameraAimAssist::TargetMode>> mappings - ); - - MCAPI void* - $ctor(::std::initializer_list<::std::pair<::std::string const, ::Editor::BlockMask::OperationType>> mappings); - - MCAPI void* - $ctor(::std::initializer_list<::std::pair<::std::string const, ::Editor::RenderHelper::SplineType>> mappings); - - MCAPI void* - $ctor(::std::initializer_list<::std::pair<::std::string const, ::SharedTypes::Legacy::LevelSoundEvent>> mappings); - - MCAPI void* - $ctor(::std::initializer_list<::std::pair<::std::string const, ::Editor::Brush::BrushPaintCompletionState>> mappings - ); - - MCAPI void* - $ctor(::std::initializer_list<::std::pair<::std::string const, ::SharedTypes::v1_21_10::CoordinateEvaluationOrder>> - mappings); - - MCAPI void* - $ctor(::std::initializer_list< - ::std::pair<::std::string const, ::SharedTypes::v1_21_20::JigsawStructureSet::SpreadType>> mappings); - - MCAPI void* - $ctor(::std::initializer_list< - ::std::pair<::std::string const, ::SharedTypes::v1_21_20::JigsawStructure::ProcessorRule::PosType>> mappings); - - MCAPI void* - $ctor(::std::initializer_list< - ::std::pair<::std::string const, ::SharedTypes::v1_21_20::JigsawStructureDefinition::HeightmapProjection>> - mappings); - - MCAPI void* $ctor(::std::initializer_list<::std::pair< - ::std::string const, - ::SharedTypes::v1_21_20::JigsawStructure::ProcessorRule::BlockEntityModifierType>> mappings); - - MCAPI void* $ctor(::std::initializer_list<::std::pair<::std::string const, ::Editor::Plane>> mappings); - - MCAPI void* $ctor(::std::initializer_list<::std::pair<::std::string const, ::WorldVersion>> mappings); - - MCAPI void* $ctor(::std::initializer_list<::std::pair<::std::string const, ::Editor::Cursor::TargetMode>> mappings); // NOLINTEND public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/deps/cereal/StrictJSONCppSchemaReader.h b/src/mc/deps/cereal/StrictJSONCppSchemaReader.h index a60bbaf90c..dd70e901e7 100644 --- a/src/mc/deps/cereal/StrictJSONCppSchemaReader.h +++ b/src/mc/deps/cereal/StrictJSONCppSchemaReader.h @@ -68,7 +68,7 @@ class StrictJSONCppSchemaReader : public ::cereal::JSONCppSchemaReaderBase { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND public: @@ -92,9 +92,9 @@ class StrictJSONCppSchemaReader : public ::cereal::JSONCppSchemaReaderBase { MCAPI bool $_allowAsUInt64(); - MCAPI bool $_allowAsFloat(); + MCFOLD bool $_allowAsFloat(); - MCAPI bool $_allowAsDouble(); + MCFOLD bool $_allowAsDouble(); // NOLINTEND public: diff --git a/src/mc/deps/cereal/StrictJsonLoader.h b/src/mc/deps/cereal/StrictJsonLoader.h index 09e6dca83f..54e7d5003a 100644 --- a/src/mc/deps/cereal/StrictJsonLoader.h +++ b/src/mc/deps/cereal/StrictJsonLoader.h @@ -18,7 +18,7 @@ class StrictJsonLoader : public ::cereal::BasicLoader { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND public: diff --git a/src/mc/deps/cereal/StrictRapidJSONSchemaReader.h b/src/mc/deps/cereal/StrictRapidJSONSchemaReader.h index bb32bd5671..7c81bfb99d 100644 --- a/src/mc/deps/cereal/StrictRapidJSONSchemaReader.h +++ b/src/mc/deps/cereal/StrictRapidJSONSchemaReader.h @@ -144,17 +144,17 @@ class StrictRapidJSONSchemaReader : public ::cereal::SchemaReader { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND public: // virtual function thunks // NOLINTBEGIN - MCAPI bool $isValid() const; + MCFOLD bool $isValid() const; - MCAPI ::cereal::SchemaReaderState $isObject() const; + MCFOLD ::cereal::SchemaReaderState $isObject() const; - MCAPI ::cereal::SchemaReaderState $isArray() const; + MCFOLD ::cereal::SchemaReaderState $isArray() const; MCAPI ::Bedrock::Result $asBool(::cereal::PropertyReader const&); @@ -180,17 +180,17 @@ class StrictRapidJSONSchemaReader : public ::cereal::SchemaReader { MCAPI ::Bedrock::Result<::std::string> $asString(::cereal::PropertyReader const&); - MCAPI uint64 $members(); + MCFOLD uint64 $members(); - MCAPI uint64 $length(); + MCFOLD uint64 $length(); - MCAPI bool $pushMember(::std::string_view const name, ::cereal::PropertyReader const&); + MCFOLD bool $pushMember(::std::string_view const name, ::cereal::PropertyReader const&); - MCAPI ::std::string_view $pushNextMember(::cereal::PropertyReader const&); + MCFOLD ::std::string_view $pushNextMember(::cereal::PropertyReader const&); - MCAPI void $pushElement(uint64 index, ::cereal::PropertyReader const&); + MCFOLD void $pushElement(uint64 index, ::cereal::PropertyReader const&); - MCAPI void $pop(); + MCFOLD void $pop(); // NOLINTEND public: diff --git a/src/mc/deps/cereal/StringConstraint.h b/src/mc/deps/cereal/StringConstraint.h index b37b556e4b..e83841de3b 100644 --- a/src/mc/deps/cereal/StringConstraint.h +++ b/src/mc/deps/cereal/StringConstraint.h @@ -45,7 +45,7 @@ class StringConstraint : public ::cereal::Constraint { MCAPI StringConstraint(::cereal::StringConstraint&&); - MCAPI ::cereal::StringConstraint& maxSize(uint64 size); + MCFOLD ::cereal::StringConstraint& maxSize(uint64 size); MCAPI ::cereal::StringConstraint& regex(::std::string str); diff --git a/src/mc/deps/cereal/ext/json_schema/JSONSchemaInfo.h b/src/mc/deps/cereal/ext/json_schema/JSONSchemaInfo.h index d93d6963ab..0f0eb4765f 100644 --- a/src/mc/deps/cereal/ext/json_schema/JSONSchemaInfo.h +++ b/src/mc/deps/cereal/ext/json_schema/JSONSchemaInfo.h @@ -20,7 +20,7 @@ struct JSONSchemaInfo { public: // member functions // NOLINTBEGIN - MCAPI ::cereal::ext::internal::JSONSchemaInfo& operator=(::cereal::ext::internal::JSONSchemaInfo&&); + MCFOLD ::cereal::ext::internal::JSONSchemaInfo& operator=(::cereal::ext::internal::JSONSchemaInfo&&); MCAPI ::cereal::ext::internal::JSONSchemaInfo& operator=(::cereal::ext::internal::JSONSchemaInfo const&); @@ -30,7 +30,7 @@ struct JSONSchemaInfo { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/deps/cereal/ext/json_schema/OutRefsMap.h b/src/mc/deps/cereal/ext/json_schema/OutRefsMap.h index d91736b86e..bbb114899e 100644 --- a/src/mc/deps/cereal/ext/json_schema/OutRefsMap.h +++ b/src/mc/deps/cereal/ext/json_schema/OutRefsMap.h @@ -27,7 +27,7 @@ struct OutRefsMap { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/deps/cereal/internal/ReflectionContext.h b/src/mc/deps/cereal/internal/ReflectionContext.h index 8a6cd37f6a..1e4b7544ec 100644 --- a/src/mc/deps/cereal/internal/ReflectionContext.h +++ b/src/mc/deps/cereal/internal/ReflectionContext.h @@ -34,7 +34,7 @@ struct ReflectionContext { // NOLINTBEGIN MCAPI static ::cereal::internal::ReflectionContext const& from(::cereal::ReflectionCtx const& ctx); - MCAPI static ::cereal::internal::ReflectionContext& from(::cereal::ReflectionCtx& ctx); + MCFOLD static ::cereal::internal::ReflectionContext& from(::cereal::ReflectionCtx& ctx); // NOLINTEND public: diff --git a/src/mc/deps/cereal/internal/SchemaDescriptor.h b/src/mc/deps/cereal/internal/SchemaDescriptor.h index ae6ae58781..2e81badcbb 100644 --- a/src/mc/deps/cereal/internal/SchemaDescriptor.h +++ b/src/mc/deps/cereal/internal/SchemaDescriptor.h @@ -32,13 +32,13 @@ struct SchemaDescriptor { // NOLINTBEGIN MCAPI void* $ctor(); - MCAPI void* $ctor(::cereal::internal::SchemaDescriptor&&); + MCFOLD void* $ctor(::cereal::internal::SchemaDescriptor&&); // NOLINTEND public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/deps/cereal/schema/BasicSchema.h b/src/mc/deps/cereal/schema/BasicSchema.h index 53e3da5fa8..e2a13e2069 100644 --- a/src/mc/deps/cereal/schema/BasicSchema.h +++ b/src/mc/deps/cereal/schema/BasicSchema.h @@ -191,7 +191,7 @@ class BasicSchema { // NOLINTBEGIN MCAPI explicit BasicSchema(::cereal::ReflectionCtx const& ctx); - MCAPI ::cereal::ReflectionCtx const& ctx() const; + MCFOLD ::cereal::ReflectionCtx const& ctx() const; MCAPI ::cereal::SchemaDescription description(::cereal::internal::BasicSchema::DescriptionMode mode) const; @@ -223,23 +223,23 @@ class BasicSchema { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND public: // virtual function thunks // NOLINTBEGIN - MCAPI void $members(::std::function cb) const; + MCFOLD void $members(::std::function cb) const; - MCAPI ::cereal::internal::BasicSchema::MemberDescriptor const* $member(uint) const; + MCFOLD ::cereal::internal::BasicSchema::MemberDescriptor const* $member(uint) const; MCAPI void $enumMapping(::cereal::SerializerEnumMapping); - MCAPI ::cereal::SerializerEnumMapping const* $enumMapping() const; + MCFOLD ::cereal::SerializerEnumMapping const* $enumMapping() const; MCAPI void $constraint(::std::unique_ptr<::cereal::Constraint> constraint); - MCAPI ::cereal::Constraint const* $constraint() const; + MCFOLD ::cereal::Constraint const* $constraint() const; MCAPI void $doLoad(::cereal::SchemaReader&, ::entt::meta_any&, ::entt::meta_any const&, ::cereal::SerializerContext& context) @@ -247,7 +247,7 @@ class BasicSchema { MCAPI void $doSave(::cereal::SchemaWriter&, ::entt::meta_any const&, ::cereal::SerializerContext& context) const; - MCAPI bool $doVerifyInitialization(::cereal::SchemaWriter const&, ::entt::meta_any const&) const; + MCFOLD bool $doVerifyInitialization(::cereal::SchemaWriter const&, ::entt::meta_any const&) const; // NOLINTEND public: diff --git a/src/mc/deps/cereal/schema/Schema.h b/src/mc/deps/cereal/schema/Schema.h index d0c9d83c4e..0933285fcd 100644 --- a/src/mc/deps/cereal/schema/Schema.h +++ b/src/mc/deps/cereal/schema/Schema.h @@ -39,9 +39,9 @@ struct Schema { MCAPI ::std::vector<::std::string> getErrors() const; - MCAPI ::std::vector<::cereal::SerializerContext::LogEntry> const& getLog() const; + MCFOLD ::std::vector<::cereal::SerializerContext::LogEntry> const& getLog() const; - MCAPI bool isDefined() const; + MCFOLD bool isDefined() const; MCAPI bool load(::cereal::SchemaReader& reader, ::entt::meta_handle data, ::entt::meta_any const& loadContext); diff --git a/src/mc/deps/cereal/schema/SchemaReader.h b/src/mc/deps/cereal/schema/SchemaReader.h index 30f37035ee..1a21993b24 100644 --- a/src/mc/deps/cereal/schema/SchemaReader.h +++ b/src/mc/deps/cereal/schema/SchemaReader.h @@ -135,7 +135,7 @@ struct SchemaReader { public: // virtual function thunks // NOLINTBEGIN - MCAPI bool $isSequenceReader() const; + MCFOLD bool $isSequenceReader() const; // NOLINTEND }; diff --git a/src/mc/deps/cereal/schema/SchemaWriter.h b/src/mc/deps/cereal/schema/SchemaWriter.h index 3a837279df..05a16d1469 100644 --- a/src/mc/deps/cereal/schema/SchemaWriter.h +++ b/src/mc/deps/cereal/schema/SchemaWriter.h @@ -80,7 +80,7 @@ struct SchemaWriter { public: // virtual function thunks // NOLINTBEGIN - MCAPI bool $isSequenceWriter() const; + MCFOLD bool $isSequenceWriter() const; // NOLINTEND }; diff --git a/src/mc/deps/cereal/schema/VariantHelper.h b/src/mc/deps/cereal/schema/VariantHelper.h index 7d9c8c6209..08e0f4f687 100644 --- a/src/mc/deps/cereal/schema/VariantHelper.h +++ b/src/mc/deps/cereal/schema/VariantHelper.h @@ -27,7 +27,7 @@ struct VariantHelper { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/deps/cereal/schema/dynamic/DynamicValue.h b/src/mc/deps/cereal/schema/dynamic/DynamicValue.h index f03772ea7c..a4b3106f48 100644 --- a/src/mc/deps/cereal/schema/dynamic/DynamicValue.h +++ b/src/mc/deps/cereal/schema/dynamic/DynamicValue.h @@ -34,11 +34,9 @@ class DynamicValue { MCAPI DynamicValue(::cereal::DynamicValue&&); - MCAPI explicit DynamicValue(char const*&& arg); - MCAPI ::std::vector<::cereal::DynamicValue> const& asArray() const; - MCAPI ::std::vector<::cereal::DynamicValue>& asArray(); + MCFOLD ::std::vector<::cereal::DynamicValue>& asArray(); MCAPI bool const& asBool() const; @@ -48,7 +46,7 @@ class DynamicValue { MCAPI ::std::unordered_map<::std::string, ::cereal::DynamicValue> const& asObject() const; - MCAPI ::std::unordered_map<::std::string, ::cereal::DynamicValue>& asObject(); + MCFOLD ::std::unordered_map<::std::string, ::cereal::DynamicValue>& asObject(); MCAPI ::std::string const& asString() const; @@ -65,14 +63,12 @@ class DynamicValue { MCAPI void* $ctor(::cereal::DynamicValue const&); MCAPI void* $ctor(::cereal::DynamicValue&&); - - MCAPI void* $ctor(char const*&& arg); // NOLINTEND public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/deps/cereal/schema/dynamic/DynamicValueSchemaReader.h b/src/mc/deps/cereal/schema/dynamic/DynamicValueSchemaReader.h index f078c244f9..4aa95b7f00 100644 --- a/src/mc/deps/cereal/schema/dynamic/DynamicValueSchemaReader.h +++ b/src/mc/deps/cereal/schema/dynamic/DynamicValueSchemaReader.h @@ -135,13 +135,13 @@ class DynamicValueSchemaReader : public ::cereal::SchemaReader { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND public: // virtual function thunks // NOLINTBEGIN - MCAPI bool $isValid() const; + MCFOLD bool $isValid() const; MCAPI ::cereal::SchemaReaderState $isObject() const; @@ -181,7 +181,7 @@ class DynamicValueSchemaReader : public ::cereal::SchemaReader { MCAPI void $pushElement(uint64 index, ::cereal::PropertyReader const&); - MCAPI void $pop(); + MCFOLD void $pop(); // NOLINTEND public: diff --git a/src/mc/deps/cereal/schema/dynamic/DynamicValueSchemaWriter.h b/src/mc/deps/cereal/schema/dynamic/DynamicValueSchemaWriter.h index f9108d972c..8c3b5b3b2f 100644 --- a/src/mc/deps/cereal/schema/dynamic/DynamicValueSchemaWriter.h +++ b/src/mc/deps/cereal/schema/dynamic/DynamicValueSchemaWriter.h @@ -89,7 +89,7 @@ class DynamicValueSchemaWriter : public ::cereal::SchemaWriter { // NOLINTBEGIN MCAPI DynamicValueSchemaWriter(); - MCAPI ::cereal::DynamicValue& value(); + MCFOLD ::cereal::DynamicValue& value(); // NOLINTEND public: @@ -121,9 +121,9 @@ class DynamicValueSchemaWriter : public ::cereal::SchemaWriter { MCAPI bool $write(uint value, ::cereal::PropertyReader const&); - MCAPI bool $write(int64 value, ::cereal::PropertyReader const&); + MCFOLD bool $write(int64 value, ::cereal::PropertyReader const&); - MCAPI bool $write(uint64 value, ::cereal::PropertyReader const&); + MCFOLD bool $write(uint64 value, ::cereal::PropertyReader const&); MCAPI bool $write(float value, ::cereal::PropertyReader const&); diff --git a/src/mc/deps/core/Bedrock.h b/src/mc/deps/core/Bedrock.h index e809228473..9c48f04262 100644 --- a/src/mc/deps/core/Bedrock.h +++ b/src/mc/deps/core/Bedrock.h @@ -9,7 +9,7 @@ MCAPI int strtoint32(char const* str, char** endptr, int base); MCAPI uint strtouint32(char const* str, char** endptr, int base); -MCAPI void throw_system_error(::std::errc errc); +MCFOLD void throw_system_error(::std::errc errc); // NOLINTEND } // namespace Bedrock diff --git a/src/mc/deps/core/Detail.h b/src/mc/deps/core/Detail.h index b6614c8e54..48f4b72abe 100644 --- a/src/mc/deps/core/Detail.h +++ b/src/mc/deps/core/Detail.h @@ -17,7 +17,7 @@ namespace Bedrock::Detail { // NOLINTBEGIN MCAPI ::Bedrock::CallStack::Context createContext(::std::string value); -MCAPI ::std::nullopt_t createContext(); +MCFOLD ::std::nullopt_t createContext(); MCAPI ::Bedrock::Detail::ErrorInfoBuilder<::std::error_code> createError(::std::errc errc); diff --git a/src/mc/deps/core/container/Blob.h b/src/mc/deps/core/container/Blob.h index 45dc50bd1a..6928a0ce4b 100644 --- a/src/mc/deps/core/container/Blob.h +++ b/src/mc/deps/core/container/Blob.h @@ -64,11 +64,11 @@ class Blob { MCAPI explicit Blob(uint64 size); - MCAPI uchar const* cbegin() const; + MCFOLD uchar const* cbegin() const; MCAPI uchar const* cend() const; - MCAPI bool empty() const; + MCFOLD bool empty() const; MCAPI ::mce::Blob& operator=(::mce::Blob&& rhs); diff --git a/src/mc/deps/core/data_store/DataStore.h b/src/mc/deps/core/data_store/DataStore.h index c68626af1a..13cf966347 100644 --- a/src/mc/deps/core/data_store/DataStore.h +++ b/src/mc/deps/core/data_store/DataStore.h @@ -157,7 +157,7 @@ class DataStore : public ::Bedrock::EnableNonOwnerReferences { // NOLINTBEGIN MCAPI CustomFileHandlers(::Bedrock::DataStore::CustomFileHandlers&&); - MCAPI ::Bedrock::DataStore::CustomFileHandlers& operator=(::Bedrock::DataStore::CustomFileHandlers&&); + MCFOLD ::Bedrock::DataStore::CustomFileHandlers& operator=(::Bedrock::DataStore::CustomFileHandlers&&); MCAPI ~CustomFileHandlers(); // NOLINTEND @@ -171,7 +171,7 @@ class DataStore : public ::Bedrock::EnableNonOwnerReferences { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/deps/core/debug/debug_utils/ComposedAssertMessage.h b/src/mc/deps/core/debug/debug_utils/ComposedAssertMessage.h index b99b8c3bd2..934652a4f8 100644 --- a/src/mc/deps/core/debug/debug_utils/ComposedAssertMessage.h +++ b/src/mc/deps/core/debug/debug_utils/ComposedAssertMessage.h @@ -34,7 +34,7 @@ class ComposedAssertMessage { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/deps/core/debug/log/ContentLog.h b/src/mc/deps/core/debug/log/ContentLog.h index 0d62f73dde..2bf4e071fc 100644 --- a/src/mc/deps/core/debug/log/ContentLog.h +++ b/src/mc/deps/core/debug/log/ContentLog.h @@ -88,7 +88,7 @@ class ContentLog : public ::Bedrock::EnableNonOwnerReferences, public ::DisableS public: // constructor thunks // NOLINTBEGIN - MCAPI void* $ctor(::gsl::not_null<::ContentLogEndPoint*> contentLogEndPoint); + MCFOLD void* $ctor(::gsl::not_null<::ContentLogEndPoint*> contentLogEndPoint); // NOLINTEND }; @@ -154,7 +154,7 @@ class ContentLog : public ::Bedrock::EnableNonOwnerReferences, public ::DisableS MCAPI ::std::string getScope(); - MCAPI bool isEnabled() const; + MCFOLD bool isEnabled() const; MCAPI void log(bool, ::LogLevel, ::LogArea, ...); diff --git a/src/mc/deps/core/debug/log/ContentLogEndPoint.h b/src/mc/deps/core/debug/log/ContentLogEndPoint.h index fddfaa0ae3..b887324d3c 100644 --- a/src/mc/deps/core/debug/log/ContentLogEndPoint.h +++ b/src/mc/deps/core/debug/log/ContentLogEndPoint.h @@ -46,7 +46,7 @@ class ContentLogEndPoint : public ::Bedrock::EnableNonOwnerReferences, public :: public: // virtual function thunks // NOLINTBEGIN - MCAPI void $log(char const* message); + MCFOLD void $log(char const* message); // NOLINTEND public: diff --git a/src/mc/deps/core/debug/log/ContentLogFileEndPoint.h b/src/mc/deps/core/debug/log/ContentLogFileEndPoint.h index 8ea1e6e203..3b9914c129 100644 --- a/src/mc/deps/core/debug/log/ContentLogFileEndPoint.h +++ b/src/mc/deps/core/debug/log/ContentLogFileEndPoint.h @@ -89,9 +89,9 @@ class ContentLogFileEndPoint : public ::ContentLogEndPoint { MCAPI void $setEnabled(bool enabled); - MCAPI bool $isEnabled() const; + MCFOLD bool $isEnabled() const; - MCAPI bool $logOnlyOnce() const; + MCFOLD bool $logOnlyOnce() const; // NOLINTEND public: diff --git a/src/mc/deps/core/file/DirectoryIterationItem.h b/src/mc/deps/core/file/DirectoryIterationItem.h index 1203a5367b..58cb83b63d 100644 --- a/src/mc/deps/core/file/DirectoryIterationItem.h +++ b/src/mc/deps/core/file/DirectoryIterationItem.h @@ -39,17 +39,17 @@ struct DirectoryIterationItem { // NOLINTBEGIN MCAPI explicit DirectoryIterationItem(::Core::DirectoryIterationFlags flags); - MCAPI uint64 getFileSize() const; + MCFOLD uint64 getFileSize() const; - MCAPI uint64 getFileSizeAllocationOnDisk() const; + MCFOLD uint64 getFileSizeAllocationOnDisk() const; - MCAPI ::Core::PathBuffer<::std::string> const& getFullPathName() const; + MCFOLD ::Core::PathBuffer<::std::string> const& getFullPathName() const; - MCAPI int64 getModifyTime() const; + MCFOLD int64 getModifyTime() const; - MCAPI ::Core::PathPart const& getName() const; + MCFOLD ::Core::PathPart const& getName() const; - MCAPI ::Core::FileType getType() const; + MCFOLD ::Core::FileType getType() const; MCAPI bool isDirectory() const; @@ -57,15 +57,15 @@ struct DirectoryIterationItem { MCAPI void setCreateTime(int64 time); - MCAPI void setFileSize(uint64 size); + MCFOLD void setFileSize(uint64 size); MCAPI void setFullPathName(::Core::Path const& fullPathName); - MCAPI void setModifyTime(int64 modifyTime); + MCFOLD void setModifyTime(int64 modifyTime); - MCAPI void setName(::Core::PathPart const& name); + MCFOLD void setName(::Core::PathPart const& name); - MCAPI void setType(::Core::FileType type); + MCFOLD void setType(::Core::FileType type); MCAPI ~DirectoryIterationItem(); // NOLINTEND diff --git a/src/mc/deps/core/file/FileSizePresetManager.h b/src/mc/deps/core/file/FileSizePresetManager.h index 8fb4bfa692..cce1c42f4b 100644 --- a/src/mc/deps/core/file/FileSizePresetManager.h +++ b/src/mc/deps/core/file/FileSizePresetManager.h @@ -27,7 +27,7 @@ class FileSizePresetManager { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND public: diff --git a/src/mc/deps/core/file/FileStorageArea.h b/src/mc/deps/core/file/FileStorageArea.h index 0ec647d352..d4f8d16c17 100644 --- a/src/mc/deps/core/file/FileStorageArea.h +++ b/src/mc/deps/core/file/FileStorageArea.h @@ -262,24 +262,24 @@ class FileStorageArea : public ::std::enable_shared_from_this<::Core::FileStorag public: // virtual function thunks // NOLINTBEGIN - MCAPI ::std::unique_ptr<::Core::FileSystemImpl> + MCFOLD ::std::unique_ptr<::Core::FileSystemImpl> $createTransaction(::Core::FileAccessType fileAccessType, ::Core::TransactionFlags); - MCAPI void $setUsedSizeOverride(uint64); + MCFOLD void $setUsedSizeOverride(uint64); - MCAPI void $clearUsedSizeOverride(); + MCFOLD void $clearUsedSizeOverride(); MCAPI void $notifyChangeInFileSize(int64 changeInSize, int64 changeInAllocatedSize); - MCAPI bool $handlesPendingWrites() const; + MCFOLD bool $handlesPendingWrites() const; - MCAPI void $informPendingWriteSize(uint64 numBytesWritePending, bool const fromResourcePack); + MCFOLD void $informPendingWriteSize(uint64 numBytesWritePending, bool const fromResourcePack); - MCAPI void $informStorageAreaCopy(uint64 storageAreaSize); + MCFOLD void $informStorageAreaCopy(uint64 storageAreaSize); - MCAPI bool $supportsExtendSize() const; + MCFOLD bool $supportsExtendSize() const; - MCAPI bool $canExtendSize() const; + MCFOLD bool $canExtendSize() const; MCAPI void $resetCanAttemptExtendSize(); @@ -297,19 +297,19 @@ class FileStorageArea : public ::std::enable_shared_from_this<::Core::FileStorag MCAPI void $unloadFlatFileManifests(bool shouldClearManifests); - MCAPI void $tick(); + MCFOLD void $tick(); - MCAPI void $flushImmediately(); + MCFOLD void $flushImmediately(); - MCAPI void $enableFlushToDisk(bool); + MCFOLD void $enableFlushToDisk(bool); - MCAPI bool $checkCorrupt(bool handleCorruption); + MCFOLD bool $checkCorrupt(bool handleCorruption); - MCAPI ::Core::FileStorageArea::FlushableLevelDbEnvType $getFlushableLevelDbEnvType() const; + MCFOLD ::Core::FileStorageArea::FlushableLevelDbEnvType $getFlushableLevelDbEnvType() const; - MCAPI uint64 $getTransactionWriteSizeLimit() const; + MCFOLD uint64 $getTransactionWriteSizeLimit() const; - MCAPI ::Core::Result $setSaveDataIcon(::Core::Path const& iconPath); + MCFOLD ::Core::Result $setSaveDataIcon(::Core::Path const& iconPath); MCAPI bool $shouldAllowCommit() const; @@ -319,11 +319,11 @@ class FileStorageArea : public ::std::enable_shared_from_this<::Core::FileStorag MCAPI ::Core::FileStorageArea::StorageAreaSpaceInfo $getStorageAreaSpaceInfo(); - MCAPI ::Core::Result $_commit(); + MCFOLD ::Core::Result $_commit(); - MCAPI ::Core::Result $_onTransactionsEmpty(bool fromChild); + MCFOLD ::Core::Result $_onTransactionsEmpty(bool fromChild); - MCAPI void $_onTeardown(); + MCFOLD void $_onTeardown(); // NOLINTEND public: diff --git a/src/mc/deps/core/file/FileSystem.h b/src/mc/deps/core/file/FileSystem.h index 278e82d8bf..f78418554c 100644 --- a/src/mc/deps/core/file/FileSystem.h +++ b/src/mc/deps/core/file/FileSystem.h @@ -56,7 +56,7 @@ class FileSystem : public ::Bedrock::EnableNonOwnerReferences { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; @@ -259,7 +259,7 @@ class FileSystem : public ::Bedrock::EnableNonOwnerReferences { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND public: diff --git a/src/mc/deps/core/file/LevelStorageResult.h b/src/mc/deps/core/file/LevelStorageResult.h index be51ba5212..747fcd52dc 100644 --- a/src/mc/deps/core/file/LevelStorageResult.h +++ b/src/mc/deps/core/file/LevelStorageResult.h @@ -27,7 +27,7 @@ struct LevelStorageResult { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/deps/core/file/Path.h b/src/mc/deps/core/file/Path.h index 4e50fa3018..c969d2c518 100644 --- a/src/mc/deps/core/file/Path.h +++ b/src/mc/deps/core/file/Path.h @@ -2,10 +2,6 @@ #include "mc/_HeaderOutputPredefine.h" -// auto generated inclusion list -#include "mc/deps/core/file/PathBuffer.h" -#include "mc/deps/core/string/BasicStackString.h" - // auto generated forward declare list // clang-format off namespace Core { class PathPart; } @@ -36,10 +32,6 @@ class Path { // NOLINTBEGIN MCAPI Path(); - MCAPI explicit Path(::Core::PathBuffer<::Core::BasicStackString> const&); - - MCAPI explicit Path(::Core::PathBuffer<::std::string> const&); - MCAPI ~Path(); // NOLINTEND @@ -58,17 +50,13 @@ class Path { public: // constructor thunks // NOLINTBEGIN - MCAPI void* $ctor(); - - MCAPI void* $ctor(::Core::PathBuffer<::Core::BasicStackString> const&); - - MCAPI void* $ctor(::Core::PathBuffer<::std::string> const&); + MCFOLD void* $ctor(); // NOLINTEND public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/deps/core/file/PathPart.h b/src/mc/deps/core/file/PathPart.h index 46148cf6a3..241e3787eb 100644 --- a/src/mc/deps/core/file/PathPart.h +++ b/src/mc/deps/core/file/PathPart.h @@ -20,7 +20,7 @@ class PathPart { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/deps/core/file/PathView.h b/src/mc/deps/core/file/PathView.h index 8257f367bb..0dca8f8af6 100644 --- a/src/mc/deps/core/file/PathView.h +++ b/src/mc/deps/core/file/PathView.h @@ -29,7 +29,7 @@ class PathView { public: // constructor thunks // NOLINTBEGIN - MCAPI void* $ctor(::Core::PathView const&); + MCFOLD void* $ctor(::Core::PathView const&); MCAPI void* $ctor(::Core::PathView&&); // NOLINTEND @@ -37,7 +37,7 @@ class PathView { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/deps/core/file/StorageAreaStateListener.h b/src/mc/deps/core/file/StorageAreaStateListener.h index 21a171d6dc..adec7ba47f 100644 --- a/src/mc/deps/core/file/StorageAreaStateListener.h +++ b/src/mc/deps/core/file/StorageAreaStateListener.h @@ -75,11 +75,11 @@ class StorageAreaStateListener { ::std::function onHandledEventCallback ); - MCAPI void $onLowDiskSpace(bool const bSet); + MCFOLD void $onLowDiskSpace(bool const bSet); - MCAPI void $onOutOfDiskSpace(bool const bSet); + MCFOLD void $onOutOfDiskSpace(bool const bSet); - MCAPI void $onCriticalDiskError(bool const bSet, ::Core::LevelStorageState const& errorCode); + MCFOLD void $onCriticalDiskError(bool const bSet, ::Core::LevelStorageState const& errorCode); // NOLINTEND public: diff --git a/src/mc/deps/core/file/UnzipFile.h b/src/mc/deps/core/file/UnzipFile.h index 2958b6e164..6d6fe67ef3 100644 --- a/src/mc/deps/core/file/UnzipFile.h +++ b/src/mc/deps/core/file/UnzipFile.h @@ -64,7 +64,7 @@ class UnzipFile { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND public: diff --git a/src/mc/deps/core/file/UnzipFileLibZip.h b/src/mc/deps/core/file/UnzipFileLibZip.h index e27a4c4764..914b2ca392 100644 --- a/src/mc/deps/core/file/UnzipFileLibZip.h +++ b/src/mc/deps/core/file/UnzipFileLibZip.h @@ -94,7 +94,7 @@ class UnzipFileLibZip : public ::Core::UnzipFile { public: // virtual function thunks // NOLINTBEGIN - MCAPI bool $isGood() const; + MCFOLD bool $isGood() const; MCAPI ::Core::ZipUtils::UnzipResult $locateFile(char const* fileName, int caseSensitivity); diff --git a/src/mc/deps/core/file/file_system/FileAccessTransforms.h b/src/mc/deps/core/file/file_system/FileAccessTransforms.h index 8338dae0f0..27eed997c8 100644 --- a/src/mc/deps/core/file/file_system/FileAccessTransforms.h +++ b/src/mc/deps/core/file/file_system/FileAccessTransforms.h @@ -25,9 +25,9 @@ class FileAccessTransforms { public: // virtual function thunks // NOLINTBEGIN - MCAPI bool $readTransform(::std::vector& stream) const; + MCFOLD bool $readTransform(::std::vector& stream) const; - MCAPI bool $writeTransform(::std::vector& stream) const; + MCFOLD bool $writeTransform(::std::vector& stream) const; // NOLINTEND public: diff --git a/src/mc/deps/core/file/file_system/FileImpl.h b/src/mc/deps/core/file/file_system/FileImpl.h index 66517eac94..cb0e306160 100644 --- a/src/mc/deps/core/file/file_system/FileImpl.h +++ b/src/mc/deps/core/file/file_system/FileImpl.h @@ -116,9 +116,9 @@ class FileImpl { MCAPI ::Core::Result flush(); - MCAPI uint64 getBlockSize() const; + MCFOLD uint64 getBlockSize() const; - MCAPI ::Core::FileOpenMode const& getOpenMode() const; + MCFOLD ::Core::FileOpenMode const& getOpenMode() const; MCAPI ::Core::PathBuffer<::std::string> getPath() const; @@ -128,9 +128,9 @@ class FileImpl { MCAPI ::Core::Result getSize(uint64* pSize); - MCAPI ::Core::FileSystemImpl* getTransaction(); + MCFOLD ::Core::FileSystemImpl* getTransaction(); - MCAPI bool isOpen(); + MCFOLD bool isOpen(); MCAPI ::Core::Result read(void* buf, uint64 numBytes, uint64* pNumBytesRead); @@ -138,7 +138,7 @@ class FileImpl { MCAPI ::Core::Result readExactly(void* buf, uint64 numBytes); - MCAPI void setLoggingEnabled(bool loggingEnabled); + MCFOLD void setLoggingEnabled(bool loggingEnabled); MCAPI ::Core::Result setPosition(uint64 position); diff --git a/src/mc/deps/core/file/file_system/FileSystemFileAccess.h b/src/mc/deps/core/file/file_system/FileSystemFileAccess.h index 5834997b16..6138fdab3b 100644 --- a/src/mc/deps/core/file/file_system/FileSystemFileAccess.h +++ b/src/mc/deps/core/file/file_system/FileSystemFileAccess.h @@ -153,11 +153,11 @@ class FileSystemFileAccess : public ::IFileAccess { MCAPI int64 $ftell(void* file); - MCAPI ::IFileReadAccess const* $getReadInterface() const; + MCFOLD ::IFileReadAccess const* $getReadInterface() const; MCAPI ::IFileWriteAccess* $getWriteInterface(); - MCAPI void $unload(); + MCFOLD void $unload(); // NOLINTEND public: diff --git a/src/mc/deps/core/file/file_system/FileSystemImpl.h b/src/mc/deps/core/file/file_system/FileSystemImpl.h index a0c484b51d..622cb831fb 100644 --- a/src/mc/deps/core/file/file_system/FileSystemImpl.h +++ b/src/mc/deps/core/file/file_system/FileSystemImpl.h @@ -331,7 +331,7 @@ class FileSystemImpl { MCAPI bool fileOrDirectoryExists(::Core::Path const& entryPath); - MCAPI ::Core::FileAccessType getAccessType() const; + MCFOLD ::Core::FileAccessType getAccessType() const; MCAPI ::Core::Result getDirectoryFiles(::std::vector<::Core::PathBuffer<::std::string>>& files, ::Core::Path const& directoryPath); @@ -417,13 +417,13 @@ class FileSystemImpl { MCAPI ::Core::Result $copyTimeAndAccessRights(::Core::Path const& sourceFilePath, ::Core::Path const& targetFilePath); - MCAPI void $requestFlush(::std::vector<::Core::PendingWrite> const& writeRequests); + MCFOLD void $requestFlush(::std::vector<::Core::PendingWrite> const& writeRequests); - MCAPI bool $shouldCommit(); + MCFOLD bool $shouldCommit(); - MCAPI ::Core::CrossStorageCopyMode $getCrossStorageCopyMode(); + MCFOLD ::Core::CrossStorageCopyMode $getCrossStorageCopyMode(); - MCAPI uint64 $getTransactionWriteSizeLimit() const; + MCFOLD uint64 $getTransactionWriteSizeLimit() const; MCAPI ::Core::Result $_createEmptyFile(::Core::Path const& fileName); @@ -472,9 +472,9 @@ class FileSystemImpl { MCAPI ::Core::Result $_getFileOrDirectorySize(::Core::Path const& entryName, uint64* pFileSizeOut); - MCAPI ::Core::Result $_addIgnoredThrottlePath(::Core::Path const&); + MCFOLD ::Core::Result $_addIgnoredThrottlePath(::Core::Path const&); - MCAPI ::Core::Result $_removeIgnoredThrottlePath(::Core::Path const&); + MCFOLD ::Core::Result $_removeIgnoredThrottlePath(::Core::Path const&); MCAPI ::Core::Result $_createFlatFile(::Core::Path const& sourceDirectoryPath, ::Core::Path const& targetDirectoryPath); @@ -518,7 +518,7 @@ class FileSystemImpl { uint64 numBytesWritten ); - MCAPI void $_initializeInternal(); + MCFOLD void $_initializeInternal(); // NOLINTEND public: diff --git a/src/mc/deps/core/file/file_system/FlatFile.h b/src/mc/deps/core/file/file_system/FlatFile.h index bd30eb252c..0468be3fd2 100644 --- a/src/mc/deps/core/file/file_system/FlatFile.h +++ b/src/mc/deps/core/file/file_system/FlatFile.h @@ -117,7 +117,7 @@ class FlatFile : public ::Core::FileImpl { public: // virtual function thunks // NOLINTBEGIN - MCAPI ::Core::PathBuffer<::std::string> $_getPath() const; + MCFOLD ::Core::PathBuffer<::std::string> $_getPath() const; MCAPI uint64 $_getBlockSize() const; @@ -137,9 +137,9 @@ class FlatFile : public ::Core::FileImpl { MCAPI ::Core::Result $_setPosition(uint64 position); - MCAPI ::Core::Result $_write(void const*, uint64); + MCFOLD ::Core::Result $_write(void const*, uint64); - MCAPI ::Core::Result $_flush(); + MCFOLD ::Core::Result $_flush(); MCAPI ::Core::Result $_getSize(uint64* pSize); diff --git a/src/mc/deps/core/file/file_system/FlatFileManifestInfo.h b/src/mc/deps/core/file/file_system/FlatFileManifestInfo.h index 77396a8d67..77e9e5ae3f 100644 --- a/src/mc/deps/core/file/file_system/FlatFileManifestInfo.h +++ b/src/mc/deps/core/file/file_system/FlatFileManifestInfo.h @@ -48,7 +48,7 @@ class FlatFileManifestInfo { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/deps/core/file/file_system/FlatFileSearchResult.h b/src/mc/deps/core/file/file_system/FlatFileSearchResult.h index cf93091046..62eec9bd8c 100644 --- a/src/mc/deps/core/file/file_system/FlatFileSearchResult.h +++ b/src/mc/deps/core/file/file_system/FlatFileSearchResult.h @@ -27,7 +27,7 @@ class FlatFileSearchResult { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/deps/core/file/file_system/MemoryMappedFileAccess.h b/src/mc/deps/core/file/file_system/MemoryMappedFileAccess.h index 34d28c074c..476d042ef5 100644 --- a/src/mc/deps/core/file/file_system/MemoryMappedFileAccess.h +++ b/src/mc/deps/core/file/file_system/MemoryMappedFileAccess.h @@ -39,7 +39,7 @@ class MemoryMappedFileAccess : public ::IFileAccess { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND public: @@ -69,7 +69,7 @@ class MemoryMappedFileAccess : public ::IFileAccess { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND public: @@ -111,7 +111,7 @@ class MemoryMappedFileAccess : public ::IFileAccess { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; @@ -218,7 +218,7 @@ class MemoryMappedFileAccess : public ::IFileAccess { MCAPI int64 $ftell(void* file); - MCAPI ::IFileReadAccess const* $getReadInterface() const; + MCFOLD ::IFileReadAccess const* $getReadInterface() const; MCAPI ::IFileWriteAccess* $getWriteInterface(); diff --git a/src/mc/deps/core/http/BinaryRequestBody.h b/src/mc/deps/core/http/BinaryRequestBody.h index 8b7a82a7a6..6c1dbe464e 100644 --- a/src/mc/deps/core/http/BinaryRequestBody.h +++ b/src/mc/deps/core/http/BinaryRequestBody.h @@ -66,7 +66,7 @@ class BinaryRequestBody : public ::Bedrock::Http::Internal::IRequestBody { MCAPI ::std::string const& $getLoggableSource() const; - MCAPI ::gsl::span $getLoggableData() const; + MCFOLD ::gsl::span $getLoggableData() const; // NOLINTEND public: diff --git a/src/mc/deps/core/http/BufferedResponseBody.h b/src/mc/deps/core/http/BufferedResponseBody.h index c2ce02a75d..33f97081a9 100644 --- a/src/mc/deps/core/http/BufferedResponseBody.h +++ b/src/mc/deps/core/http/BufferedResponseBody.h @@ -71,7 +71,7 @@ class BufferedResponseBody : public ::Bedrock::Http::Internal::IResponseBody { MCAPI ::gsl::span $getLoggableData() const; - MCAPI ::Bedrock::Http::ResponseBodyType $getType() const; + MCFOLD ::Bedrock::Http::ResponseBodyType $getType() const; // NOLINTEND }; diff --git a/src/mc/deps/core/http/DispatcherProcess.h b/src/mc/deps/core/http/DispatcherProcess.h index 895f954a58..96463524d5 100644 --- a/src/mc/deps/core/http/DispatcherProcess.h +++ b/src/mc/deps/core/http/DispatcherProcess.h @@ -61,7 +61,7 @@ class DispatcherProcess : public ::Bedrock::Http::DispatcherInterface, public: // virtual function thunks // NOLINTBEGIN - MCAPI void $initialize(); + MCFOLD void $initialize(); MCAPI void $shutdown(); diff --git a/src/mc/deps/core/http/HeaderCollection.h b/src/mc/deps/core/http/HeaderCollection.h index b613491e6f..5658060405 100644 --- a/src/mc/deps/core/http/HeaderCollection.h +++ b/src/mc/deps/core/http/HeaderCollection.h @@ -23,17 +23,17 @@ class HeaderCollection { MCAPI void add(::std::string const& headerName, ::std::string const& headerValue); - MCAPI ::std::_List_const_iterator< + MCFOLD ::std::_List_const_iterator< ::std::_List_val<::std::_List_simple_types<::std::pair<::std::string const, ::std::string>>>> begin() const; - MCAPI ::std::_List_const_iterator< + MCFOLD ::std::_List_const_iterator< ::std::_List_val<::std::_List_simple_types<::std::pair<::std::string const, ::std::string>>>> end() const; MCAPI ::std::string const& get(::std::string const& headerName) const; - MCAPI ::Bedrock::Http::HeaderCollection& operator=(::Bedrock::Http::HeaderCollection const&); + MCFOLD ::Bedrock::Http::HeaderCollection& operator=(::Bedrock::Http::HeaderCollection const&); MCAPI void set(::std::string const& headerName, ::std::string const& headerValue); @@ -45,7 +45,7 @@ class HeaderCollection { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/deps/core/http/HttpInterfaceInternal.h b/src/mc/deps/core/http/HttpInterfaceInternal.h index 749bb86173..1cdfafebca 100644 --- a/src/mc/deps/core/http/HttpInterfaceInternal.h +++ b/src/mc/deps/core/http/HttpInterfaceInternal.h @@ -38,7 +38,7 @@ class HttpInterfaceInternal : public ::Bedrock::Http::HttpInterface { public: // virtual function thunks // NOLINTBEGIN - MCAPI void + MCFOLD void $send(::gsl::not_null<::HC_CALL*> call, ::gsl::not_null<::XAsyncBlock*> asyncBlock, ::HC_PERFORM_ENV* env); // NOLINTEND diff --git a/src/mc/deps/core/http/IRequestBody.h b/src/mc/deps/core/http/IRequestBody.h index 5198552692..ee77bcc7db 100644 --- a/src/mc/deps/core/http/IRequestBody.h +++ b/src/mc/deps/core/http/IRequestBody.h @@ -52,7 +52,7 @@ class IRequestBody : public ::std::enable_shared_from_this<::Bedrock::Http::Inte public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND public: diff --git a/src/mc/deps/core/http/LoggingInterfaceGeneric.h b/src/mc/deps/core/http/LoggingInterfaceGeneric.h index 5079308ea1..909aa6f8eb 100644 --- a/src/mc/deps/core/http/LoggingInterfaceGeneric.h +++ b/src/mc/deps/core/http/LoggingInterfaceGeneric.h @@ -33,7 +33,7 @@ class LoggingInterfaceGeneric : public ::Bedrock::Http::LoggingInterface { // NOLINTBEGIN MCAPI uint64 $threadId(); - MCAPI void $writeToDebugger(char const* area, ::HCTraceLevel level, char const* message); + MCFOLD void $writeToDebugger(char const* area, ::HCTraceLevel level, char const* message); // NOLINTEND public: diff --git a/src/mc/deps/core/http/Response.h b/src/mc/deps/core/http/Response.h index 583baf2b13..293929a0e5 100644 --- a/src/mc/deps/core/http/Response.h +++ b/src/mc/deps/core/http/Response.h @@ -37,7 +37,7 @@ class Response { MCAPI ::std::string getBodyAsUtf8String() const; - MCAPI ::Bedrock::Http::HeaderCollection const& getHeaders() const; + MCFOLD ::Bedrock::Http::HeaderCollection const& getHeaders() const; MCAPI ::Bedrock::Http::Status getStatus() const; diff --git a/src/mc/deps/core/http/WebSocket.h b/src/mc/deps/core/http/WebSocket.h index da2351a16e..85713f7135 100644 --- a/src/mc/deps/core/http/WebSocket.h +++ b/src/mc/deps/core/http/WebSocket.h @@ -81,11 +81,11 @@ class WebSocket : public ::std::enable_shared_from_this<::Bedrock::Http::WebSock public: // virtual function thunks // NOLINTBEGIN - MCAPI void $onMessage(::std::string_view); + MCFOLD void $onMessage(::std::string_view); - MCAPI void $onBinaryMessage(::gsl::span); + MCFOLD void $onBinaryMessage(::gsl::span); - MCAPI void $onClose(uint); + MCFOLD void $onClose(uint); // NOLINTEND public: diff --git a/src/mc/deps/core/http/WebSocketInterfaceInternal.h b/src/mc/deps/core/http/WebSocketInterfaceInternal.h index 06804c909e..e3320d8bd1 100644 --- a/src/mc/deps/core/http/WebSocketInterfaceInternal.h +++ b/src/mc/deps/core/http/WebSocketInterfaceInternal.h @@ -51,16 +51,16 @@ class WebSocketInterfaceInternal : public ::Bedrock::Http::WebSocketInterface { public: // virtual function thunks // NOLINTBEGIN - MCAPI HRESULT + MCFOLD HRESULT $connect(char const*, char const*, ::gsl::not_null<::HC_WEBSOCKET_OBSERVER*>, ::gsl::not_null<::XAsyncBlock*>, ::HC_PERFORM_ENV*); - MCAPI HRESULT + MCFOLD HRESULT $sendMessage(::gsl::not_null<::HC_WEBSOCKET_OBSERVER*>, ::std::string_view, ::gsl::not_null<::XAsyncBlock*>); - MCAPI HRESULT + MCFOLD HRESULT $sendBinaryMessage(::gsl::not_null<::HC_WEBSOCKET_OBSERVER*>, ::gsl::span, ::gsl::not_null<::XAsyncBlock*>); - MCAPI HRESULT $disconnect(::gsl::not_null<::HC_WEBSOCKET_OBSERVER*> websocket, ::HCWebSocketCloseStatus status); + MCFOLD HRESULT $disconnect(::gsl::not_null<::HC_WEBSOCKET_OBSERVER*> websocket, ::HCWebSocketCloseStatus status); // NOLINTEND public: diff --git a/src/mc/deps/core/islands/AppIsland.h b/src/mc/deps/core/islands/AppIsland.h index ab521fcdea..4eb71c1d18 100644 --- a/src/mc/deps/core/islands/AppIsland.h +++ b/src/mc/deps/core/islands/AppIsland.h @@ -73,19 +73,19 @@ class AppIsland : public ::Bedrock::IIslandCore { public: // virtual function thunks // NOLINTBEGIN - MCAPI ushort $getId(); + MCFOLD ushort $getId(); - MCAPI bool $start(); + MCFOLD bool $start(); - MCAPI bool $suspend(); + MCFOLD bool $suspend(); - MCAPI bool $resume(); + MCFOLD bool $resume(); - MCAPI bool $stop(); + MCFOLD bool $stop(); - MCAPI void $mainUpdate(); + MCFOLD void $mainUpdate(); - MCAPI void $processActivationArguments(::Bedrock::ActivationArguments const& args); + MCFOLD void $processActivationArguments(::Bedrock::ActivationArguments const& args); // NOLINTEND public: diff --git a/src/mc/deps/core/islands/IIslandCore.h b/src/mc/deps/core/islands/IIslandCore.h index 7501223eb8..0deb874157 100644 --- a/src/mc/deps/core/islands/IIslandCore.h +++ b/src/mc/deps/core/islands/IIslandCore.h @@ -41,7 +41,7 @@ class IIslandCore { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND public: diff --git a/src/mc/deps/core/math/Degree.h b/src/mc/deps/core/math/Degree.h index 835ef925ff..f7d2bcba61 100644 --- a/src/mc/deps/core/math/Degree.h +++ b/src/mc/deps/core/math/Degree.h @@ -20,7 +20,7 @@ struct Degree : public ::type_safe::strong_typedef<::mce::Degree, float>, // NOLINTBEGIN MCAPI explicit Degree(::mce::Radian rad); - MCAPI float const& asFloat() const; + MCFOLD float const& asFloat() const; // NOLINTEND public: diff --git a/src/mc/deps/core/math/IRandom.h b/src/mc/deps/core/math/IRandom.h index 82595fb260..9899c76e80 100644 --- a/src/mc/deps/core/math/IRandom.h +++ b/src/mc/deps/core/math/IRandom.h @@ -54,7 +54,7 @@ class IRandom { public: // virtual function thunks // NOLINTBEGIN - MCAPI ::std::unique_ptr<::IPositionalRandomFactory> $forkPositional(); + MCFOLD ::std::unique_ptr<::IPositionalRandomFactory> $forkPositional(); // NOLINTEND public: diff --git a/src/mc/deps/core/math/Radian.h b/src/mc/deps/core/math/Radian.h index a84e99f3ba..ff947555fd 100644 --- a/src/mc/deps/core/math/Radian.h +++ b/src/mc/deps/core/math/Radian.h @@ -20,7 +20,7 @@ struct Radian : public ::type_safe::strong_typedef<::mce::Radian, float>, // NOLINTBEGIN MCAPI explicit Radian(::mce::Degree deg); - MCAPI float const& asFloat() const; + MCFOLD float const& asFloat() const; // NOLINTEND public: diff --git a/src/mc/deps/core/math/Random.h b/src/mc/deps/core/math/Random.h index 8a24736239..9b155299d0 100644 --- a/src/mc/deps/core/math/Random.h +++ b/src/mc/deps/core/math/Random.h @@ -91,7 +91,7 @@ class Random : public ::IRandom { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND public: diff --git a/src/mc/deps/core/memory/InternalHeapAllocator.h b/src/mc/deps/core/memory/InternalHeapAllocator.h index a99a017972..9600fbee3a 100644 --- a/src/mc/deps/core/memory/InternalHeapAllocator.h +++ b/src/mc/deps/core/memory/InternalHeapAllocator.h @@ -53,9 +53,9 @@ class InternalHeapAllocator : public ::Bedrock::Memory::IMemoryAllocator { MCAPI void $alignedRelease(void* ptr); - MCAPI uint64 $getUsableSize(void* ptr); + MCFOLD uint64 $getUsableSize(void* ptr); - MCAPI void $logCurrentState(); + MCFOLD void $logCurrentState(); MCAPI void* $_realloc(::gsl::not_null p, uint64 newSize); // NOLINTEND diff --git a/src/mc/deps/core/minecraft/threading/MinecraftWorkerPool.h b/src/mc/deps/core/minecraft/threading/MinecraftWorkerPool.h index 8c76b7b284..bf40f40a9f 100644 --- a/src/mc/deps/core/minecraft/threading/MinecraftWorkerPool.h +++ b/src/mc/deps/core/minecraft/threading/MinecraftWorkerPool.h @@ -29,7 +29,7 @@ class MinecraftWorkerPool { MCAPI static void destroySingletons(); - MCAPI static void initializeDefaults(::MinecraftWorkerPool::CoreConfigFlavor nxCoreConfigFlavor); + MCFOLD static void initializeDefaults(::MinecraftWorkerPool::CoreConfigFlavor nxCoreConfigFlavor); MCAPI static void loadWorkerConfigurations(uint highPowerCores, uint totalCores); // NOLINTEND diff --git a/src/mc/deps/core/platform/AppLifecycleContext.h b/src/mc/deps/core/platform/AppLifecycleContext.h index 9760a00b76..8ad626d129 100644 --- a/src/mc/deps/core/platform/AppLifecycleContext.h +++ b/src/mc/deps/core/platform/AppLifecycleContext.h @@ -26,6 +26,6 @@ class AppLifecycleContext { public: // constructor thunks // NOLINTBEGIN - MCAPI void* $ctor(); + MCFOLD void* $ctor(); // NOLINTEND }; diff --git a/src/mc/deps/core/platform/PlatformBuildInfo.h b/src/mc/deps/core/platform/PlatformBuildInfo.h index 75aa7c07e2..41c47907ca 100644 --- a/src/mc/deps/core/platform/PlatformBuildInfo.h +++ b/src/mc/deps/core/platform/PlatformBuildInfo.h @@ -32,7 +32,7 @@ struct PlatformBuildInfo { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/deps/core/platform/Result.h b/src/mc/deps/core/platform/Result.h index 174804c4d3..445ce0335c 100644 --- a/src/mc/deps/core/platform/Result.h +++ b/src/mc/deps/core/platform/Result.h @@ -23,25 +23,25 @@ class Result : public ::Bedrock::Result { MCAPI explicit Result(bool success); - MCAPI void architecturalProblem() const; + MCFOLD void architecturalProblem() const; - MCAPI bool catastrophic() const; + MCFOLD bool catastrophic() const; - MCAPI bool failed() const; + MCFOLD bool failed() const; MCAPI ::std::string message() const; - MCAPI explicit operator bool() const; + MCFOLD explicit operator bool() const; MCAPI ::Core::Result& operator=(::Core::Result&&); - MCAPI bool peekFailed() const; + MCFOLD bool peekFailed() const; - MCAPI bool peekSucceeded() const; + MCFOLD bool peekSucceeded() const; - MCAPI bool succeeded() const; + MCFOLD bool succeeded() const; - MCAPI bool throwFailed() const; + MCFOLD bool throwFailed() const; MCAPI ~Result(); // NOLINTEND @@ -79,7 +79,7 @@ class Result : public ::Bedrock::Result { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/deps/core/platform/win/file/File_c_windows.h b/src/mc/deps/core/platform/win/file/File_c_windows.h index 37b5b87329..9d49de427e 100644 --- a/src/mc/deps/core/platform/win/file/File_c_windows.h +++ b/src/mc/deps/core/platform/win/file/File_c_windows.h @@ -104,11 +104,11 @@ class File_c_windows : public ::Core::FileImpl { public: // virtual function thunks // NOLINTBEGIN - MCAPI ::Core::PathBuffer<::std::string> $_getPath() const; + MCFOLD ::Core::PathBuffer<::std::string> $_getPath() const; MCAPI uint64 $_getBlockSize() const; - MCAPI bool $_isOpen(); + MCFOLD bool $_isOpen(); MCAPI ::Core::Result $_close(); diff --git a/src/mc/deps/core/profiler/LoadTimeProfiler.h b/src/mc/deps/core/profiler/LoadTimeProfiler.h index 9879534444..790600f6fd 100644 --- a/src/mc/deps/core/profiler/LoadTimeProfiler.h +++ b/src/mc/deps/core/profiler/LoadTimeProfiler.h @@ -36,7 +36,7 @@ class LoadTimeProfiler : public ::Bedrock::EnableNonOwnerReferences { // NOLINTBEGIN MCAPI LoadTimeProfiler(); - MCAPI void setEnabled(bool enabled); + MCFOLD void setEnabled(bool enabled); // NOLINTEND public: diff --git a/src/mc/deps/core/resource/ContentIdentity.h b/src/mc/deps/core/resource/ContentIdentity.h index 909af6fddd..1d6031e46b 100644 --- a/src/mc/deps/core/resource/ContentIdentity.h +++ b/src/mc/deps/core/resource/ContentIdentity.h @@ -28,13 +28,13 @@ class ContentIdentity { MCAPI ::std::string asString() const; - MCAPI ::mce::UUID const& getAsUUID() const; + MCFOLD ::mce::UUID const& getAsUUID() const; - MCAPI bool isValid() const; + MCFOLD bool isValid() const; MCAPI bool operator!=(::ContentIdentity const& rhs) const; - MCAPI ::ContentIdentity& operator=(::ContentIdentity&&); + MCFOLD ::ContentIdentity& operator=(::ContentIdentity&&); MCAPI ::ContentIdentity& operator=(::ContentIdentity const&); @@ -56,9 +56,9 @@ class ContentIdentity { public: // constructor thunks // NOLINTBEGIN - MCAPI void* $ctor(); + MCFOLD void* $ctor(); - MCAPI void* $ctor(::ContentIdentity const&); + MCFOLD void* $ctor(::ContentIdentity const&); MCAPI void* $ctor(::ContentIdentity&&); diff --git a/src/mc/deps/core/resource/LegacyPackIdVersion.h b/src/mc/deps/core/resource/LegacyPackIdVersion.h index 56cf7ab8df..79a2260a4f 100644 --- a/src/mc/deps/core/resource/LegacyPackIdVersion.h +++ b/src/mc/deps/core/resource/LegacyPackIdVersion.h @@ -40,6 +40,6 @@ struct LegacyPackIdVersion { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/deps/core/resource/LoadedResourceData.h b/src/mc/deps/core/resource/LoadedResourceData.h index 61a177e3e2..fe82463aca 100644 --- a/src/mc/deps/core/resource/LoadedResourceData.h +++ b/src/mc/deps/core/resource/LoadedResourceData.h @@ -26,6 +26,6 @@ class LoadedResourceData { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/deps/core/resource/ResourceLoader.h b/src/mc/deps/core/resource/ResourceLoader.h index 394623344b..dbb91e79d5 100644 --- a/src/mc/deps/core/resource/ResourceLoader.h +++ b/src/mc/deps/core/resource/ResourceLoader.h @@ -84,34 +84,34 @@ class ResourceLoader : public ::Bedrock::EnableNonOwnerReferences { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND public: // virtual function thunks // NOLINTBEGIN - MCAPI bool $load( + MCFOLD bool $load( ::ResourceLocationPair const& resourceLocation, ::std::string& resourceStream, ::gsl::span<::std::string const> extensions ) const; - MCAPI bool $isInStreamableLocation(::ResourceLocation const& resourceLocation) const; + MCFOLD bool $isInStreamableLocation(::ResourceLocation const& resourceLocation) const; - MCAPI bool $isInStreamableLocation( + MCFOLD bool $isInStreamableLocation( ::ResourceLocation const& resourceLocation, ::gsl::span<::std::string const> extensions ) const; MCAPI ::Core::PathBuffer<::std::string> $getPath(::ResourceLocation const& resourceLocation) const; - MCAPI ::Core::PathBuffer<::std::string> + MCFOLD ::Core::PathBuffer<::std::string> $getPath(::ResourceLocation const& resourceLocation, ::gsl::span<::std::string const> extensions) const; - MCAPI ::Core::PathBuffer<::std::string> $getPathContainingResource(::ResourceLocation const& resourceLocation + MCFOLD ::Core::PathBuffer<::std::string> $getPathContainingResource(::ResourceLocation const& resourceLocation ) const; - MCAPI ::Core::PathBuffer<::std::string> $getPathContainingResource( + MCFOLD ::Core::PathBuffer<::std::string> $getPathContainingResource( ::ResourceLocation const& resourceLocation, ::gsl::span<::std::string const> extensions ) const; diff --git a/src/mc/deps/core/resource/ResourceLocation.h b/src/mc/deps/core/resource/ResourceLocation.h index 0bea4cecba..92b3acad84 100644 --- a/src/mc/deps/core/resource/ResourceLocation.h +++ b/src/mc/deps/core/resource/ResourceLocation.h @@ -33,7 +33,7 @@ class ResourceLocation { MCAPI ::Core::PathBuffer<::std::string> getFullPath() const; - MCAPI ::Core::PathBuffer<::std::string> const& getRelativePath() const; + MCFOLD ::Core::PathBuffer<::std::string> const& getRelativePath() const; MCAPI void serialize(::Json::Value& out) const; @@ -61,6 +61,6 @@ class ResourceLocation { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/deps/core/secure_storage/FileSecureStorage.h b/src/mc/deps/core/secure_storage/FileSecureStorage.h index 9b4640e9eb..233e856ec1 100644 --- a/src/mc/deps/core/secure_storage/FileSecureStorage.h +++ b/src/mc/deps/core/secure_storage/FileSecureStorage.h @@ -48,7 +48,7 @@ class FileSecureStorage : public ::SecureStorage { // NOLINTBEGIN MCAPI bool $getData(::std::string& output, ::Core::Path path); - MCAPI void $setData(::std::string const& data, ::Core::Path path); + MCFOLD void $setData(::std::string const& data, ::Core::Path path); // NOLINTEND public: diff --git a/src/mc/deps/core/secure_storage/ISecureStorageKeySystem.h b/src/mc/deps/core/secure_storage/ISecureStorageKeySystem.h index 890da1b78c..4007b8d310 100644 --- a/src/mc/deps/core/secure_storage/ISecureStorageKeySystem.h +++ b/src/mc/deps/core/secure_storage/ISecureStorageKeySystem.h @@ -24,7 +24,7 @@ class ISecureStorageKeySystem { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND public: diff --git a/src/mc/deps/core/secure_storage/NullSecureStorage.h b/src/mc/deps/core/secure_storage/NullSecureStorage.h index 77dab63e27..019cece470 100644 --- a/src/mc/deps/core/secure_storage/NullSecureStorage.h +++ b/src/mc/deps/core/secure_storage/NullSecureStorage.h @@ -34,13 +34,13 @@ class NullSecureStorage : public ::SecureStorage { public: // virtual function thunks // NOLINTBEGIN - MCAPI bool $add(::std::string const& key, ::std::string const& value); + MCFOLD bool $add(::std::string const& key, ::std::string const& value); - MCAPI bool $addOrUpdate(::std::string const& key, ::std::string const& value); + MCFOLD bool $addOrUpdate(::std::string const& key, ::std::string const& value); - MCAPI bool $remove(::std::string const& key); + MCFOLD bool $remove(::std::string const& key); - MCAPI bool $get(::std::string const& key, ::std::string& outValue); + MCFOLD bool $get(::std::string const& key, ::std::string& outValue); // NOLINTEND public: diff --git a/src/mc/deps/core/secure_storage/SecureStorageKey.h b/src/mc/deps/core/secure_storage/SecureStorageKey.h index 0d746f5323..277eb05c2a 100644 --- a/src/mc/deps/core/secure_storage/SecureStorageKey.h +++ b/src/mc/deps/core/secure_storage/SecureStorageKey.h @@ -25,6 +25,6 @@ class SecureStorageKey { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/deps/core/sem_ver/SemVersion.h b/src/mc/deps/core/sem_ver/SemVersion.h index a6ce718b84..4547498e3f 100644 --- a/src/mc/deps/core/sem_ver/SemVersion.h +++ b/src/mc/deps/core/sem_ver/SemVersion.h @@ -60,21 +60,21 @@ class SemVersion { MCAPI void _parseVersionToString(); - MCAPI ::std::string const& asString() const; + MCFOLD ::std::string const& asString() const; - MCAPI ::std::string const& getBuildMeta() const; + MCFOLD ::std::string const& getBuildMeta() const; - MCAPI ushort getMajor() const; + MCFOLD ushort getMajor() const; - MCAPI ushort getMinor() const; + MCFOLD ushort getMinor() const; - MCAPI ushort getPatch() const; + MCFOLD ushort getPatch() const; - MCAPI ::std::string const& getPreRelease() const; + MCFOLD ::std::string const& getPreRelease() const; MCAPI bool isAnyVersion() const; - MCAPI bool isValid() const; + MCFOLD bool isValid() const; MCAPI bool operator!=(::SemVersion const& rhs) const; @@ -129,6 +129,6 @@ class SemVersion { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/deps/core/string/HashedString.h b/src/mc/deps/core/string/HashedString.h index 19cebbb283..efc7305a00 100644 --- a/src/mc/deps/core/string/HashedString.h +++ b/src/mc/deps/core/string/HashedString.h @@ -32,13 +32,13 @@ class HashedString { MCAPI void clear(); - MCAPI bool empty() const; + MCFOLD bool empty() const; - MCAPI uint64 getHash() const; + MCFOLD uint64 getHash() const; - MCAPI ::std::string const& getString() const; + MCFOLD ::std::string const& getString() const; - MCAPI bool isEmpty() const; + MCFOLD bool isEmpty() const; MCAPI explicit operator ::std::string_view() const; @@ -86,6 +86,6 @@ class HashedString { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/deps/core/threading/BackgroundTaskBase.h b/src/mc/deps/core/threading/BackgroundTaskBase.h index 394e32c82d..8dd48069b6 100644 --- a/src/mc/deps/core/threading/BackgroundTaskBase.h +++ b/src/mc/deps/core/threading/BackgroundTaskBase.h @@ -120,19 +120,19 @@ class BackgroundTaskBase { MCAPI bool canBeRunBy(::std::thread::id workerId) const; - MCAPI ::IBackgroundTaskOwner* getGroup(); + MCFOLD ::IBackgroundTaskOwner* getGroup(); - MCAPI ::TaskGroupState getGroupState() const; + MCFOLD ::TaskGroupState getGroupState() const; MCAPI ::std::shared_ptr<::BackgroundTaskBase> getNext(); - MCAPI ::BackgroundTaskBase* getPrev(); + MCFOLD ::BackgroundTaskBase* getPrev(); - MCAPI ::std::chrono::steady_clock::time_point getStartAfterTime() const; + MCFOLD ::std::chrono::steady_clock::time_point getStartAfterTime() const; MCAPI bool hasAffinity() const; - MCAPI bool isAsync() const; + MCFOLD bool isAsync() const; MCAPI bool isOrphaned() const; @@ -140,9 +140,9 @@ class BackgroundTaskBase { MCAPI void setNext(::std::shared_ptr<::BackgroundTaskBase> next); - MCAPI void setPrev(::BackgroundTaskBase* prev); + MCFOLD void setPrev(::BackgroundTaskBase* prev); - MCAPI void setStartAfterTime(::std::chrono::steady_clock::time_point t); + MCFOLD void setStartAfterTime(::std::chrono::steady_clock::time_point t); MCAPI void setSyncPriority(); diff --git a/src/mc/deps/core/threading/BackgroundTaskQueue.h b/src/mc/deps/core/threading/BackgroundTaskQueue.h index df11805bcc..497478ace7 100644 --- a/src/mc/deps/core/threading/BackgroundTaskQueue.h +++ b/src/mc/deps/core/threading/BackgroundTaskQueue.h @@ -39,7 +39,7 @@ class BackgroundTaskQueue { MCAPI void flush(); - MCAPI uint64 getApproximateTaskCount() const; + MCFOLD uint64 getApproximateTaskCount() const; MCAPI void queue(::std::shared_ptr<::BackgroundTaskBase> task, bool queueImmediate); diff --git a/src/mc/deps/core/threading/BackgroundWorker.h b/src/mc/deps/core/threading/BackgroundWorker.h index aa102e177b..3c5ee31991 100644 --- a/src/mc/deps/core/threading/BackgroundWorker.h +++ b/src/mc/deps/core/threading/BackgroundWorker.h @@ -144,7 +144,7 @@ class BackgroundWorker : public ::ITaskExecutionContext { public: // virtual function thunks // NOLINTBEGIN - MCAPI bool $isAsync() const; + MCFOLD bool $isAsync() const; MCAPI bool $canTaskRunAgain() const; // NOLINTEND diff --git a/src/mc/deps/core/threading/CountTracker.h b/src/mc/deps/core/threading/CountTracker.h index 0d7750ce55..058ab21d6a 100644 --- a/src/mc/deps/core/threading/CountTracker.h +++ b/src/mc/deps/core/threading/CountTracker.h @@ -21,7 +21,7 @@ class CountTracker { // NOLINTBEGIN MCAPI CountTracker(); - MCAPI ::std::shared_ptr acquire(); + MCFOLD ::std::shared_ptr acquire(); MCAPI void clear(); @@ -39,7 +39,7 @@ class CountTracker { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/deps/core/threading/InternalTaskGroup.h b/src/mc/deps/core/threading/InternalTaskGroup.h index e84bf5319e..41651e17d8 100644 --- a/src/mc/deps/core/threading/InternalTaskGroup.h +++ b/src/mc/deps/core/threading/InternalTaskGroup.h @@ -60,24 +60,24 @@ class InternalTaskGroup : public ::IBackgroundTaskOwner { public: // virtual function thunks // NOLINTBEGIN - MCAPI ::std::shared_ptr<::Bedrock::Threading::IAsyncResult> $queue( + MCFOLD ::std::shared_ptr<::Bedrock::Threading::IAsyncResult> $queue( ::TaskStartInfoEx const& startInfo, ::brstd::move_only_function<::TaskResult()>&& task, ::std::function&& callback ); - MCAPI ::std::shared_ptr<::Bedrock::Threading::IAsyncResult> + MCFOLD ::std::shared_ptr<::Bedrock::Threading::IAsyncResult> $queueSync(::TaskStartInfoEx const& startInfo, ::brstd::move_only_function<::TaskResult()>&& task); - MCAPI void $taskRegister(::std::shared_ptr<::BackgroundTaskBase>); + MCFOLD void $taskRegister(::std::shared_ptr<::BackgroundTaskBase>); - MCAPI void $requeueTask(::std::shared_ptr<::BackgroundTaskBase>, bool); + MCFOLD void $requeueTask(::std::shared_ptr<::BackgroundTaskBase>, bool); - MCAPI ::TaskGroupState $getState() const; + MCFOLD ::TaskGroupState $getState() const; - MCAPI void $processCoroutines(); + MCFOLD void $processCoroutines(); - MCAPI void $taskComplete(::gsl::not_null<::BackgroundTaskBase*> task); + MCFOLD void $taskComplete(::gsl::not_null<::BackgroundTaskBase*> task); // NOLINTEND public: diff --git a/src/mc/deps/core/threading/Scheduler.h b/src/mc/deps/core/threading/Scheduler.h index 63f058ccbe..f816b97a96 100644 --- a/src/mc/deps/core/threading/Scheduler.h +++ b/src/mc/deps/core/threading/Scheduler.h @@ -66,7 +66,7 @@ class Scheduler : public ::Bedrock::EnableNonOwnerReferences { MCAPI void changeThread(::std::thread::id newOwner); - MCAPI ::WorkerPool& getCoroutinePool(); + MCFOLD ::WorkerPool& getCoroutinePool(); MCAPI void processCoroutines(::std::chrono::nanoseconds timeSinceSwap, ::std::chrono::nanoseconds minTimeCap); diff --git a/src/mc/deps/core/threading/ScopedAutoreleasePool.h b/src/mc/deps/core/threading/ScopedAutoreleasePool.h index 3c0a4994e5..57970a60df 100644 --- a/src/mc/deps/core/threading/ScopedAutoreleasePool.h +++ b/src/mc/deps/core/threading/ScopedAutoreleasePool.h @@ -8,7 +8,7 @@ class ScopedAutoreleasePool { // NOLINTBEGIN MCAPI ScopedAutoreleasePool(); - MCAPI void drain(); + MCFOLD void drain(); MCAPI ~ScopedAutoreleasePool(); // NOLINTEND @@ -16,12 +16,12 @@ class ScopedAutoreleasePool { public: // constructor thunks // NOLINTBEGIN - MCAPI void* $ctor(); + MCFOLD void* $ctor(); // NOLINTEND public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/deps/core/threading/TaskGroup.h b/src/mc/deps/core/threading/TaskGroup.h index 2b6ed0ef6d..4e5acd01d8 100644 --- a/src/mc/deps/core/threading/TaskGroup.h +++ b/src/mc/deps/core/threading/TaskGroup.h @@ -96,7 +96,7 @@ class TaskGroup : public ::IBackgroundTaskOwner { MCAPI ::std::string_view getName() const; - MCAPI ::Scheduler& getScheduler(); + MCFOLD ::Scheduler& getScheduler(); MCAPI bool isEmpty() const; @@ -159,7 +159,7 @@ class TaskGroup : public ::IBackgroundTaskOwner { MCAPI void $requeueTask(::std::shared_ptr<::BackgroundTaskBase> task, bool queueImmediate); - MCAPI ::TaskGroupState $getState() const; + MCFOLD ::TaskGroupState $getState() const; MCAPI void $processCoroutines(); diff --git a/src/mc/deps/core/threading/TaskResult.h b/src/mc/deps/core/threading/TaskResult.h index 0a37722585..51e69870b4 100644 --- a/src/mc/deps/core/threading/TaskResult.h +++ b/src/mc/deps/core/threading/TaskResult.h @@ -22,9 +22,9 @@ class TaskResult { MCAPI bool hasDelay() const; - MCAPI bool isDone() const; + MCFOLD bool isDone() const; - MCAPI bool isWaiting() const; + MCFOLD bool isWaiting() const; MCAPI ~TaskResult(); // NOLINTEND @@ -52,6 +52,6 @@ class TaskResult { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/deps/core/threading/TaskStatus.h b/src/mc/deps/core/threading/TaskStatus.h index dde062a212..aca3479bb6 100644 --- a/src/mc/deps/core/threading/TaskStatus.h +++ b/src/mc/deps/core/threading/TaskStatus.h @@ -31,7 +31,7 @@ class TaskStatus { MCAPI bool isComplete() const; - MCAPI explicit operator ::TaskStatus::Value() const; + MCFOLD explicit operator ::TaskStatus::Value() const; MCAPI ::Bedrock::Threading::AsyncStatus toAsyncStatus() const; diff --git a/src/mc/deps/core/threading/WorkerPoolManager.h b/src/mc/deps/core/threading/WorkerPoolManager.h index cfe56ddd1b..7bd8762672 100644 --- a/src/mc/deps/core/threading/WorkerPoolManager.h +++ b/src/mc/deps/core/threading/WorkerPoolManager.h @@ -41,7 +41,7 @@ class WorkerPoolManager : public ::Bedrock::EnableNonOwnerReferences, public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND public: diff --git a/src/mc/deps/core/threading/WorkerPoolManagerImpl.h b/src/mc/deps/core/threading/WorkerPoolManagerImpl.h index 788d2622ad..6ab308ab85 100644 --- a/src/mc/deps/core/threading/WorkerPoolManagerImpl.h +++ b/src/mc/deps/core/threading/WorkerPoolManagerImpl.h @@ -104,7 +104,7 @@ class WorkerPoolManagerImpl : public ::Bedrock::WorkerPoolManager { public: // virtual function thunks // NOLINTBEGIN - MCAPI void $init(); + MCFOLD void $init(); MCAPI ::std::shared_ptr<::Bedrock::WorkerPoolHandleInterface> $createWorkerPool( ::std::string name, diff --git a/src/mc/deps/core/utility/BasicTimer.h b/src/mc/deps/core/utility/BasicTimer.h index 9baabbeb9c..f3a28b6cee 100644 --- a/src/mc/deps/core/utility/BasicTimer.h +++ b/src/mc/deps/core/utility/BasicTimer.h @@ -38,6 +38,6 @@ class BasicTimer { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/deps/core/utility/BedrockLoadContext.h b/src/mc/deps/core/utility/BedrockLoadContext.h index 553029dd86..f423f07ae7 100644 --- a/src/mc/deps/core/utility/BedrockLoadContext.h +++ b/src/mc/deps/core/utility/BedrockLoadContext.h @@ -23,12 +23,12 @@ class BedrockLoadContext { // NOLINTBEGIN MCAPI explicit BedrockLoadContext(::MolangVersion molangVersion); - MCAPI ::MolangVersion getMolangVersion() const; + MCFOLD ::MolangVersion getMolangVersion() const; // NOLINTEND public: // constructor thunks // NOLINTBEGIN - MCAPI void* $ctor(::MolangVersion molangVersion); + MCFOLD void* $ctor(::MolangVersion molangVersion); // NOLINTEND }; diff --git a/src/mc/deps/core/utility/BinaryStream.h b/src/mc/deps/core/utility/BinaryStream.h index f9e39f3cc0..18c35bd367 100644 --- a/src/mc/deps/core/utility/BinaryStream.h +++ b/src/mc/deps/core/utility/BinaryStream.h @@ -18,16 +18,10 @@ class BinaryStream : public ::ReadOnlyBinaryStream { public: // member variables // NOLINTBEGIN - ::ll::UntypedStorage<1, 1> mUnkca58db; - ::ll::UntypedStorage<8, 16> mUnkce0069; - ::ll::UntypedStorage<8, 8> mUnk6d13ee; + ::ll::TypedStorage<1, 1, bool> controlValue; + ::ll::TypedStorage<8, 16, ::brstd::function_ref> writeCondition; + ::ll::TypedStorage<8, 8, char const*> docFieldName; // NOLINTEND - - public: - // prevent constructor by default - ConditionBlock& operator=(ConditionBlock const&); - ConditionBlock(ConditionBlock const&); - ConditionBlock(); }; public: @@ -72,13 +66,13 @@ class BinaryStream : public ::ReadOnlyBinaryStream { char const* docFieldNotes ); - MCAPI void _writeInteger(short value, char const* docFieldName, char const* docFieldNotes); + MCFOLD void _writeInteger(short value, char const* docFieldName, char const* docFieldNotes); MCAPI void _writeInteger(ushort, char const*, char const*); - MCAPI void _writeInteger(uchar value, char const* docFieldName, char const* docFieldNotes); + MCFOLD void _writeInteger(uchar value, char const* docFieldName, char const* docFieldNotes); - MCAPI void _writeInteger(int value, char const* docFieldName, char const* docFieldNotes); + MCFOLD void _writeInteger(int value, char const* docFieldName, char const* docFieldNotes); MCAPI void _writeInteger(uint, char const*, char const*); @@ -88,9 +82,9 @@ class BinaryStream : public ::ReadOnlyBinaryStream { MCAPI void write(void const* origin, uint64 num); - MCAPI void writeBool(bool value, char const* docFieldName, char const* docFieldNotes); + MCFOLD void writeBool(bool value, char const* docFieldName, char const* docFieldNotes); - MCAPI void writeByte(uchar value, char const* docFieldName, char const* docFieldNotes); + MCFOLD void writeByte(uchar value, char const* docFieldName, char const* docFieldNotes); MCAPI void writeDouble(double value, char const* docFieldName, char const* docFieldNotes); @@ -98,21 +92,21 @@ class BinaryStream : public ::ReadOnlyBinaryStream { MCAPI void writeSignedBigEndianInt(int value, char const* docFieldName, char const* docFieldNotes); - MCAPI void writeSignedInt(int value, char const* docFieldName, char const* docFieldNotes); + MCFOLD void writeSignedInt(int value, char const* docFieldName, char const* docFieldNotes); - MCAPI void writeSignedInt64(int64 value, char const* docFieldName, char const* docFieldNotes); + MCFOLD void writeSignedInt64(int64 value, char const* docFieldName, char const* docFieldNotes); - MCAPI void writeSignedShort(short value, char const* docFieldName, char const* docFieldNotes); + MCFOLD void writeSignedShort(short value, char const* docFieldName, char const* docFieldNotes); MCAPI void writeString(::std::string_view value, char const* docFieldName, char const* docFieldNotes); - MCAPI void writeUnsignedChar(uchar value, char const* docFieldName, char const* docFieldNotes); + MCFOLD void writeUnsignedChar(uchar value, char const* docFieldName, char const* docFieldNotes); - MCAPI void writeUnsignedInt(uint value, char const* docFieldName, char const* docFieldNotes); + MCFOLD void writeUnsignedInt(uint value, char const* docFieldName, char const* docFieldNotes); - MCAPI void writeUnsignedInt64(uint64 value, char const* docFieldName, char const* docFieldNotes); + MCFOLD void writeUnsignedInt64(uint64 value, char const* docFieldName, char const* docFieldNotes); - MCAPI void writeUnsignedShort(ushort value, char const* docFieldName, char const* docFieldNotes); + MCFOLD void writeUnsignedShort(ushort value, char const* docFieldName, char const* docFieldNotes); MCAPI void writeUnsignedVarInt(uint uvalue, char const* docFieldName, char const* docFieldNotes); @@ -134,7 +128,7 @@ class BinaryStream : public ::ReadOnlyBinaryStream { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND public: diff --git a/src/mc/deps/core/utility/Components.h b/src/mc/deps/core/utility/Components.h index 4e231fdb59..7982c159e4 100644 --- a/src/mc/deps/core/utility/Components.h +++ b/src/mc/deps/core/utility/Components.h @@ -30,7 +30,7 @@ struct Components { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/deps/core/utility/MCRESULT.h b/src/mc/deps/core/utility/MCRESULT.h index dcd87c0d92..4217324f28 100644 --- a/src/mc/deps/core/utility/MCRESULT.h +++ b/src/mc/deps/core/utility/MCRESULT.h @@ -19,7 +19,7 @@ struct MCRESULT { // NOLINTBEGIN MCAPI int getFullCode() const; - MCAPI bool isSuccess() const; + MCFOLD bool isSuccess() const; MCAPI bool operator==(::MCRESULT const& other) const; // NOLINTEND diff --git a/src/mc/deps/core/utility/PropertyBag.h b/src/mc/deps/core/utility/PropertyBag.h index e26cb73573..307d202daf 100644 --- a/src/mc/deps/core/utility/PropertyBag.h +++ b/src/mc/deps/core/utility/PropertyBag.h @@ -22,7 +22,7 @@ class PropertyBag { MCAPI explicit PropertyBag(::Json::Value const& jsonValue); - MCAPI ::Json::Value const& toJsonValue() const; + MCFOLD ::Json::Value const& toJsonValue() const; MCAPI ::std::string toString() const; // NOLINTEND diff --git a/src/mc/deps/core/utility/ReadOnlyBinaryStream.h b/src/mc/deps/core/utility/ReadOnlyBinaryStream.h index a985c6e967..0b87bfaed6 100644 --- a/src/mc/deps/core/utility/ReadOnlyBinaryStream.h +++ b/src/mc/deps/core/utility/ReadOnlyBinaryStream.h @@ -72,7 +72,7 @@ class ReadOnlyBinaryStream { MCAPI ::Bedrock::Result getVarInt64(); - MCAPI bool hasOverflowed() const; + MCFOLD bool hasOverflowed() const; // NOLINTEND public: @@ -86,7 +86,7 @@ class ReadOnlyBinaryStream { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND public: diff --git a/src/mc/deps/core/utility/ValidationResult.h b/src/mc/deps/core/utility/ValidationResult.h index 2a490afa2b..967f3cf240 100644 --- a/src/mc/deps/core/utility/ValidationResult.h +++ b/src/mc/deps/core/utility/ValidationResult.h @@ -29,7 +29,7 @@ struct ValidationResult { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/deps/core/utility/XXHash.h b/src/mc/deps/core/utility/XXHash.h index 07a368fee1..720e6e0750 100644 --- a/src/mc/deps/core/utility/XXHash.h +++ b/src/mc/deps/core/utility/XXHash.h @@ -26,13 +26,13 @@ class XXHash { MCAPI uint64 digest(); - MCAPI void update(bool data); + MCFOLD void update(bool data); MCAPI void update(uchar); MCAPI void update(float data); - MCAPI void update(int data); + MCFOLD void update(int data); MCAPI void update(uint); diff --git a/src/mc/deps/core/utility/json_object/ParseHandler.h b/src/mc/deps/core/utility/json_object/ParseHandler.h index 388da2a85d..02447f0037 100644 --- a/src/mc/deps/core/utility/json_object/ParseHandler.h +++ b/src/mc/deps/core/utility/json_object/ParseHandler.h @@ -56,9 +56,9 @@ class ParseHandler MCAPI bool Int(int i); - MCAPI bool Int64(int64 i); + MCFOLD bool Int64(int64 i); - MCAPI bool Key(char const* str, uint length, bool copy); + MCFOLD bool Key(char const* str, uint length, bool copy); MCAPI bool Null(); @@ -66,11 +66,11 @@ class ParseHandler MCAPI bool StartObject(); - MCAPI bool String(char const* str, uint length, bool copy); + MCFOLD bool String(char const* str, uint length, bool copy); MCAPI bool Uint(uint u); - MCAPI bool Uint64(uint64 u); + MCFOLD bool Uint64(uint64 u); MCAPI bool _addObjectOrArray(::Bedrock::JSONObject::ValueWrapper const& value); // NOLINTEND diff --git a/src/mc/deps/core/utility/pub_sub/DeferredSubscriptionHubBase.h b/src/mc/deps/core/utility/pub_sub/DeferredSubscriptionHubBase.h index 1d143ccaf2..fb6b49f292 100644 --- a/src/mc/deps/core/utility/pub_sub/DeferredSubscriptionHubBase.h +++ b/src/mc/deps/core/utility/pub_sub/DeferredSubscriptionHubBase.h @@ -76,7 +76,7 @@ class DeferredSubscriptionHubBase : public ::Bedrock::PubSub::DeferredSubscripti MCAPI uint64 $size() const; - MCAPI bool $empty() const; + MCFOLD bool $empty() const; MCAPI void $_join(::Bedrock::PubSub::DeferredSubscription&& subscription); // NOLINTEND diff --git a/src/mc/deps/core/utility/pub_sub/PriorityDeferredSubscriptionHub.h b/src/mc/deps/core/utility/pub_sub/PriorityDeferredSubscriptionHub.h index c5fb9326cd..a49a33ea82 100644 --- a/src/mc/deps/core/utility/pub_sub/PriorityDeferredSubscriptionHub.h +++ b/src/mc/deps/core/utility/pub_sub/PriorityDeferredSubscriptionHub.h @@ -42,7 +42,7 @@ class PriorityDeferredSubscriptionHub : public ::Bedrock::PubSub::DeferredSubscr public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; @@ -70,7 +70,7 @@ class PriorityDeferredSubscriptionHub : public ::Bedrock::PubSub::DeferredSubscr public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; @@ -135,7 +135,7 @@ class PriorityDeferredSubscriptionHub : public ::Bedrock::PubSub::DeferredSubscr // NOLINTBEGIN MCAPI void $flushPendingEvents(); - MCAPI ::Bedrock::PubSub::DeferredSubscriptionHub::HubType $getHubType() const; + MCFOLD ::Bedrock::PubSub::DeferredSubscriptionHub::HubType $getHubType() const; MCAPI bool $_runOneEvent(); diff --git a/src/mc/deps/core/utility/pub_sub/SubscriptionBase.h b/src/mc/deps/core/utility/pub_sub/SubscriptionBase.h index 03dbfaa155..b91c84f7e2 100644 --- a/src/mc/deps/core/utility/pub_sub/SubscriptionBase.h +++ b/src/mc/deps/core/utility/pub_sub/SubscriptionBase.h @@ -23,7 +23,7 @@ class SubscriptionBase { MCAPI void disconnect_async(); - MCAPI bool operator==(::Bedrock::PubSub::SubscriptionBase const& other) const; + MCFOLD bool operator==(::Bedrock::PubSub::SubscriptionBase const& other) const; // NOLINTEND }; diff --git a/src/mc/deps/core/utility/pub_sub/detail/PublisherBase.h b/src/mc/deps/core/utility/pub_sub/detail/PublisherBase.h index d7d370b111..40aa7daf20 100644 --- a/src/mc/deps/core/utility/pub_sub/detail/PublisherBase.h +++ b/src/mc/deps/core/utility/pub_sub/detail/PublisherBase.h @@ -47,7 +47,7 @@ class PublisherBase : public ::Bedrock::PubSub::Detail::PublisherDisconnector { ::std::optional group ); - MCAPI bool empty() const; + MCFOLD bool empty() const; // NOLINTEND public: diff --git a/src/mc/deps/crypto/Asymmetric.h b/src/mc/deps/crypto/Asymmetric.h index bec1782014..6128f46764 100644 --- a/src/mc/deps/crypto/Asymmetric.h +++ b/src/mc/deps/crypto/Asymmetric.h @@ -94,7 +94,7 @@ class Asymmetric : public ::Crypto::Asymmetric::ISystemInterface { public: // virtual function thunks // NOLINTBEGIN - MCAPI bool $generateKeyPair(::std::string& privateKey, ::std::string& publicKey); + MCFOLD bool $generateKeyPair(::std::string& privateKey, ::std::string& publicKey); MCAPI ::std::string $encryptData( ::std::string const& publicKey, diff --git a/src/mc/deps/crypto/Hash.h b/src/mc/deps/crypto/Hash.h index 8b2d1e1265..7e35cc4670 100644 --- a/src/mc/deps/crypto/Hash.h +++ b/src/mc/deps/crypto/Hash.h @@ -59,17 +59,17 @@ class Hash : public ::Crypto::Hash::IHash { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND public: // virtual function thunks // NOLINTBEGIN - MCAPI void $reset(); + MCFOLD void $reset(); MCAPI void $update(void const* data, uint size); - MCAPI void $final(uchar* result); + MCFOLD void $final(uchar* result); MCAPI uint64 $resultSize() const; // NOLINTEND diff --git a/src/mc/deps/crypto/Random.h b/src/mc/deps/crypto/Random.h index fe2e9db4f5..5218093772 100644 --- a/src/mc/deps/crypto/Random.h +++ b/src/mc/deps/crypto/Random.h @@ -27,7 +27,7 @@ class Random { public: // constructor thunks // NOLINTBEGIN - MCAPI void* $ctor(); + MCFOLD void* $ctor(); // NOLINTEND }; diff --git a/src/mc/deps/crypto/Symmetric.h b/src/mc/deps/crypto/Symmetric.h index 8aef6e36be..dd863a4943 100644 --- a/src/mc/deps/crypto/Symmetric.h +++ b/src/mc/deps/crypto/Symmetric.h @@ -66,23 +66,23 @@ class Symmetric : public ::Crypto::Symmetric::ISystemInterface { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND public: // virtual function thunks // NOLINTBEGIN - MCAPI void $init(::std::string const& key, ::std::string const& IV); + MCFOLD void $init(::std::string const& key, ::std::string const& IV); - MCAPI void $encrypt(::std::string const& plaintext, ::std::string& output); + MCFOLD void $encrypt(::std::string const& plaintext, ::std::string& output); - MCAPI void $decrypt(::std::string const& ciphertext, ::std::string& output); + MCFOLD void $decrypt(::std::string const& ciphertext, ::std::string& output); - MCAPI uint64 $getKeySize() const; + MCFOLD uint64 $getKeySize() const; - MCAPI uint64 $getBlockSize() const; + MCFOLD uint64 $getBlockSize() const; - MCAPI uint64 $getEncryptionBufferSize(uint64 inputSize) const; + MCFOLD uint64 $getEncryptionBufferSize(uint64 inputSize) const; MCAPI bool $encryptToBuffer(::gsl::span input, ::gsl::span output, uint64& bytesWritten); // NOLINTEND diff --git a/src/mc/deps/crypto/hash/md5.h b/src/mc/deps/crypto/hash/md5.h index 57a14ba4fc..3c15d51c3c 100644 --- a/src/mc/deps/crypto/hash/md5.h +++ b/src/mc/deps/crypto/hash/md5.h @@ -74,7 +74,7 @@ class md5 : public ::Crypto::Hash::IHash { MCAPI void $final(uchar* result); - MCAPI uint64 $resultSize() const; + MCFOLD uint64 $resultSize() const; // NOLINTEND public: diff --git a/src/mc/deps/crypto/random/Random.h b/src/mc/deps/crypto/random/Random.h index a257952656..ae542638ef 100644 --- a/src/mc/deps/crypto/random/Random.h +++ b/src/mc/deps/crypto/random/Random.h @@ -10,9 +10,9 @@ namespace mce { class UUID; } namespace Crypto::Random { // functions // NOLINTBEGIN -MCAPI ::mce::UUID generateCryptographicPlatformUUID(); +MCFOLD ::mce::UUID generateCryptographicPlatformUUID(); -MCAPI ::mce::UUID generateUUID(); +MCFOLD ::mce::UUID generateUUID(); MCAPI uint64 generateUUID64Bit(); // NOLINTEND diff --git a/src/mc/deps/ecs/WeakEntityRef.h b/src/mc/deps/ecs/WeakEntityRef.h index b2499e5dbd..dbfcf7caca 100644 --- a/src/mc/deps/ecs/WeakEntityRef.h +++ b/src/mc/deps/ecs/WeakEntityRef.h @@ -26,9 +26,9 @@ class WeakEntityRef { MCAPI bool operator!=(::WeakEntityRef entityRef) const; - MCAPI ::WeakEntityRef& operator=(::WeakEntityRef&&); + MCFOLD ::WeakEntityRef& operator=(::WeakEntityRef&&); - MCAPI bool operator==(::WeakEntityRef entityRef) const; + MCFOLD bool operator==(::WeakEntityRef entityRef) const; MCAPI bool operator==(::WeakRef<::EntityContext>) const; @@ -44,6 +44,6 @@ class WeakEntityRef { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/deps/ecs/gamerefs_entity/EntityContext.h b/src/mc/deps/ecs/gamerefs_entity/EntityContext.h index e82dff03ac..5c98901f7e 100644 --- a/src/mc/deps/ecs/gamerefs_entity/EntityContext.h +++ b/src/mc/deps/ecs/gamerefs_entity/EntityContext.h @@ -45,7 +45,7 @@ class EntityContext : public ::EnableGetWeakRef<::EntityContext> { MCAPI uint _getRegistryId() const; - MCAPI ::EntityRegistry& _registry() const; + MCFOLD ::EntityRegistry& _registry() const; MCAPI ::WeakRef<::EntityContext> getWeakRef() const; diff --git a/src/mc/deps/ecs/gamerefs_entity/IEntityRegistryOwner.h b/src/mc/deps/ecs/gamerefs_entity/IEntityRegistryOwner.h index f6e859244b..1b9bb24d07 100644 --- a/src/mc/deps/ecs/gamerefs_entity/IEntityRegistryOwner.h +++ b/src/mc/deps/ecs/gamerefs_entity/IEntityRegistryOwner.h @@ -28,7 +28,7 @@ class IEntityRegistryOwner : public ::Bedrock::EnableNonOwnerReferences { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND public: diff --git a/src/mc/deps/ecs/gamerefs_entity/OwnerStorageEntity.h b/src/mc/deps/ecs/gamerefs_entity/OwnerStorageEntity.h index 3c0963d040..19d60850a9 100644 --- a/src/mc/deps/ecs/gamerefs_entity/OwnerStorageEntity.h +++ b/src/mc/deps/ecs/gamerefs_entity/OwnerStorageEntity.h @@ -24,9 +24,9 @@ class OwnerStorageEntity { MCAPI explicit OwnerStorageEntity(::EntityRegistry& registry); - MCAPI ::EntityContext& _getStackRef() const; + MCFOLD ::EntityContext& _getStackRef() const; - MCAPI bool _hasValue() const; + MCFOLD bool _hasValue() const; MCAPI void _reset(); diff --git a/src/mc/deps/ecs/gamerefs_entity/StackResultStorageEntity.h b/src/mc/deps/ecs/gamerefs_entity/StackResultStorageEntity.h index 6da1ffc28c..13ade69913 100644 --- a/src/mc/deps/ecs/gamerefs_entity/StackResultStorageEntity.h +++ b/src/mc/deps/ecs/gamerefs_entity/StackResultStorageEntity.h @@ -25,9 +25,9 @@ class StackResultStorageEntity { MCAPI explicit StackResultStorageEntity(::WeakStorageEntity const& weakStorage); - MCAPI ::EntityContext& _getStackRef() const; + MCFOLD ::EntityContext& _getStackRef() const; - MCAPI bool _hasValue() const; + MCFOLD bool _hasValue() const; // NOLINTEND public: diff --git a/src/mc/deps/ecs/gamerefs_entity/WeakStorageEntity.h b/src/mc/deps/ecs/gamerefs_entity/WeakStorageEntity.h index 2558c6d8ef..e18b354d32 100644 --- a/src/mc/deps/ecs/gamerefs_entity/WeakStorageEntity.h +++ b/src/mc/deps/ecs/gamerefs_entity/WeakStorageEntity.h @@ -47,7 +47,7 @@ class WeakStorageEntity { MCAPI void* $ctor(::EntityContext const& stackRef); - MCAPI void* $ctor(::OwnerStorageEntity const& stackResultStorage); + MCFOLD void* $ctor(::OwnerStorageEntity const& stackResultStorage); MCAPI void* $ctor(::StackResultStorageEntity const&); // NOLINTEND diff --git a/src/mc/deps/ecs/strict/StrictEntityContext.h b/src/mc/deps/ecs/strict/StrictEntityContext.h index 59b3caca90..6145396e39 100644 --- a/src/mc/deps/ecs/strict/StrictEntityContext.h +++ b/src/mc/deps/ecs/strict/StrictEntityContext.h @@ -45,7 +45,7 @@ class StrictEntityContext { MCAPI ::EntityId _getEntityId() const; - MCAPI uint _getRegistryId() const; + MCFOLD uint _getRegistryId() const; MCAPI bool isNull() const; diff --git a/src/mc/deps/ecs/systems/ComponentInfo.h b/src/mc/deps/ecs/systems/ComponentInfo.h index fb39d74709..b901077a75 100644 --- a/src/mc/deps/ecs/systems/ComponentInfo.h +++ b/src/mc/deps/ecs/systems/ComponentInfo.h @@ -20,6 +20,6 @@ struct ComponentInfo { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/deps/ecs/systems/ISystem.h b/src/mc/deps/ecs/systems/ISystem.h index 166ab8d68b..74386bf515 100644 --- a/src/mc/deps/ecs/systems/ISystem.h +++ b/src/mc/deps/ecs/systems/ISystem.h @@ -22,6 +22,6 @@ struct ISystem { public: // virtual function thunks // NOLINTBEGIN - MCAPI void $registerEvents(::entt::dispatcher& dispatcher); + MCFOLD void $registerEvents(::entt::dispatcher& dispatcher); // NOLINTEND }; diff --git a/src/mc/deps/ecs/systems/ITickingSystem.h b/src/mc/deps/ecs/systems/ITickingSystem.h index 37b822e01d..0095afd4b5 100644 --- a/src/mc/deps/ecs/systems/ITickingSystem.h +++ b/src/mc/deps/ecs/systems/ITickingSystem.h @@ -38,8 +38,8 @@ class ITickingSystem : public ::ISystem { public: // virtual function thunks // NOLINTBEGIN - MCAPI void $singleTick(::EntityRegistry& registry, ::EntityContext& entity); + MCFOLD void $singleTick(::EntityRegistry& registry, ::EntityContext& entity); - MCAPI void $singleTick(::EntityRegistry& registry, ::StrictEntityContext& entityContext); + MCFOLD void $singleTick(::EntityRegistry& registry, ::StrictEntityContext& entityContext); // NOLINTEND }; diff --git a/src/mc/deps/ecs/systems/InternalSystemInfo.h b/src/mc/deps/ecs/systems/InternalSystemInfo.h index b7e3b8adc8..cc576c723f 100644 --- a/src/mc/deps/ecs/systems/InternalSystemInfo.h +++ b/src/mc/deps/ecs/systems/InternalSystemInfo.h @@ -15,6 +15,6 @@ struct InternalSystemInfo : public ::SystemInfo { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/deps/ecs/systems/SystemInfo.h b/src/mc/deps/ecs/systems/SystemInfo.h index 9386fa5ce9..9fb2505f9c 100644 --- a/src/mc/deps/ecs/systems/SystemInfo.h +++ b/src/mc/deps/ecs/systems/SystemInfo.h @@ -30,6 +30,6 @@ struct SystemInfo { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/deps/ecs/systems/SystemTiming.h b/src/mc/deps/ecs/systems/SystemTiming.h index cc42c066ea..0e0ea12fd1 100644 --- a/src/mc/deps/ecs/systems/SystemTiming.h +++ b/src/mc/deps/ecs/systems/SystemTiming.h @@ -29,6 +29,6 @@ struct SystemTiming { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/deps/identity/edu_common/AuthToken.h b/src/mc/deps/identity/edu_common/AuthToken.h index d1414578cb..9f9e7fdcc1 100644 --- a/src/mc/deps/identity/edu_common/AuthToken.h +++ b/src/mc/deps/identity/edu_common/AuthToken.h @@ -29,7 +29,7 @@ struct AuthToken { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/deps/identity/edu_common/MessToken.h b/src/mc/deps/identity/edu_common/MessToken.h index 9f63aa180e..4e807d980b 100644 --- a/src/mc/deps/identity/edu_common/MessToken.h +++ b/src/mc/deps/identity/edu_common/MessToken.h @@ -48,6 +48,6 @@ struct MessToken { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/deps/json/Features.h b/src/mc/deps/json/Features.h index b873ce189d..c5b150d23c 100644 --- a/src/mc/deps/json/Features.h +++ b/src/mc/deps/json/Features.h @@ -15,7 +15,7 @@ class Features { public: // static functions // NOLINTBEGIN - MCAPI static ::Json::Features strictMode(); + MCFOLD static ::Json::Features strictMode(); // NOLINTEND }; diff --git a/src/mc/deps/json/Reader.h b/src/mc/deps/json/Reader.h index a5710e18f0..30c8a00566 100644 --- a/src/mc/deps/json/Reader.h +++ b/src/mc/deps/json/Reader.h @@ -69,7 +69,7 @@ class Reader { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/deps/json/Value.h b/src/mc/deps/json/Value.h index e296b3d344..01a8c79bce 100644 --- a/src/mc/deps/json/Value.h +++ b/src/mc/deps/json/Value.h @@ -60,7 +60,7 @@ class Value { MCAPI CZString(char* cstr, bool duplicate); - MCAPI char const* c_str() const; + MCFOLD char const* c_str() const; MCAPI ~CZString(); // NOLINTEND @@ -68,7 +68,7 @@ class Value { public: // constructor thunks // NOLINTBEGIN - MCAPI void* $ctor(); + MCFOLD void* $ctor(); MCAPI void* $ctor(char const* cstr); @@ -152,7 +152,7 @@ class Value { MCAPI bool asBool(bool defaultValue) const; - MCAPI char const* asCString() const; + MCFOLD char const* asCString() const; MCAPI double asDouble(double defaultValue) const; @@ -172,7 +172,7 @@ class Value { MCAPI uint64 asUInt64(uint64 defaultValue) const; - MCAPI ::Json::ValueConstIterator begin() const; + MCFOLD ::Json::ValueConstIterator begin() const; MCAPI ::Json::ValueIterator begin(); @@ -184,7 +184,7 @@ class Value { MCAPI ::Json::ValueConstIterator end() const; - MCAPI ::Json::ValueIterator end(); + MCFOLD ::Json::ValueIterator end(); MCAPI ::Json::Value get(::std::string const& key, ::Json::Value const& defaultValue) const; @@ -208,7 +208,7 @@ class Value { MCAPI bool isMember(::std::string const& key) const; - MCAPI bool isNull() const; + MCFOLD bool isNull() const; MCAPI bool isNumeric() const; @@ -238,7 +238,7 @@ class Value { MCAPI ::Json::Value const& operator[](::std::string const& key) const; - MCAPI ::Json::Value& operator[](int index); + MCFOLD ::Json::Value& operator[](int index); MCAPI ::Json::Value& operator[](char const* key); @@ -256,7 +256,7 @@ class Value { MCAPI ::std::string toStyledString() const; - MCAPI ::Json::ValueType type() const; + MCFOLD ::Json::ValueType type() const; MCAPI ~Value(); // NOLINTEND diff --git a/src/mc/deps/json/ValueConstIterator.h b/src/mc/deps/json/ValueConstIterator.h index 7b7ef671cf..15b30fab0f 100644 --- a/src/mc/deps/json/ValueConstIterator.h +++ b/src/mc/deps/json/ValueConstIterator.h @@ -30,7 +30,7 @@ class ValueConstIterator : public ::Json::ValueIteratorBase { public: // member functions // NOLINTBEGIN - MCAPI ::Json::ValueConstIterator& operator=(::Json::ValueIteratorBase const& other); + MCFOLD ::Json::ValueConstIterator& operator=(::Json::ValueIteratorBase const& other); MCAPI ~ValueConstIterator(); // NOLINTEND @@ -38,7 +38,7 @@ class ValueConstIterator : public ::Json::ValueIteratorBase { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/deps/json/ValueIterator.h b/src/mc/deps/json/ValueIterator.h index 9d6d3c78d2..c0e18f47a2 100644 --- a/src/mc/deps/json/ValueIterator.h +++ b/src/mc/deps/json/ValueIterator.h @@ -41,7 +41,7 @@ class ValueIterator : public ::Json::ValueIteratorBase { public: // constructor thunks // NOLINTBEGIN - MCAPI void* $ctor(::Json::ValueIterator const& other); + MCFOLD void* $ctor(::Json::ValueIterator const& other); MCAPI void* $ctor(::Json::ValueConstIterator const&); // NOLINTEND @@ -49,7 +49,7 @@ class ValueIterator : public ::Json::ValueIteratorBase { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/deps/json/ValueIteratorBase.h b/src/mc/deps/json/ValueIteratorBase.h index c8d7d12000..7e55ed19ba 100644 --- a/src/mc/deps/json/ValueIteratorBase.h +++ b/src/mc/deps/json/ValueIteratorBase.h @@ -48,7 +48,7 @@ class ValueIteratorBase { MCAPI void increment(); - MCAPI bool isEqual(::Json::ValueIteratorBase const& other) const; + MCFOLD bool isEqual(::Json::ValueIteratorBase const& other) const; MCAPI char const* memberName() const; @@ -60,13 +60,13 @@ class ValueIteratorBase { public: // constructor thunks // NOLINTBEGIN - MCAPI void* $ctor(::Json::ValueIteratorBase const& other); + MCFOLD void* $ctor(::Json::ValueIteratorBase const& other); // NOLINTEND public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/deps/json/Writer.h b/src/mc/deps/json/Writer.h index 983f41a5a6..0941159935 100644 --- a/src/mc/deps/json/Writer.h +++ b/src/mc/deps/json/Writer.h @@ -23,7 +23,7 @@ class Writer { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND public: diff --git a/src/mc/deps/minecraft_camera/components/CameraComponent.h b/src/mc/deps/minecraft_camera/components/CameraComponent.h index 77488dc292..c7c2b0ad4f 100644 --- a/src/mc/deps/minecraft_camera/components/CameraComponent.h +++ b/src/mc/deps/minecraft_camera/components/CameraComponent.h @@ -46,6 +46,6 @@ class CameraComponent { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/deps/nether_net/DiscoveryPacket.h b/src/mc/deps/nether_net/DiscoveryPacket.h index 986ade8ded..12db1f53d1 100644 --- a/src/mc/deps/nether_net/DiscoveryPacket.h +++ b/src/mc/deps/nether_net/DiscoveryPacket.h @@ -29,7 +29,7 @@ struct DiscoveryPacket : public ::NetherNet::DiscoveryPacketHeader { public: // member functions // NOLINTBEGIN - MCAPI ::NetherNet::NetworkID SenderId() const; + MCFOLD ::NetherNet::NetworkID SenderId() const; // NOLINTEND }; diff --git a/src/mc/deps/nether_net/DiscoveryPacketHeader.h b/src/mc/deps/nether_net/DiscoveryPacketHeader.h index 79c1090560..547e2b51d3 100644 --- a/src/mc/deps/nether_net/DiscoveryPacketHeader.h +++ b/src/mc/deps/nether_net/DiscoveryPacketHeader.h @@ -24,9 +24,9 @@ struct DiscoveryPacketHeader { public: // member functions // NOLINTBEGIN - MCAPI ushort PacketLength() const; + MCFOLD ushort PacketLength() const; - MCAPI ::NetherNet::DiscoveryPacketType PacketType() const; + MCFOLD ::NetherNet::DiscoveryPacketType PacketType() const; // NOLINTEND }; diff --git a/src/mc/deps/nether_net/ILanEventHandler.h b/src/mc/deps/nether_net/ILanEventHandler.h index 879b9fd0a8..4fc9969063 100644 --- a/src/mc/deps/nether_net/ILanEventHandler.h +++ b/src/mc/deps/nether_net/ILanEventHandler.h @@ -41,7 +41,7 @@ struct ILanEventHandler { public: // virtual function thunks // NOLINTBEGIN - MCAPI void $OnLanEvent(::NetherNet::LanEvents::MessageSent const&); + MCFOLD void $OnLanEvent(::NetherNet::LanEvents::MessageSent const&); // NOLINTEND }; diff --git a/src/mc/deps/nether_net/ISignalingEventHandler.h b/src/mc/deps/nether_net/ISignalingEventHandler.h index a4ac5caacd..b79c244af7 100644 --- a/src/mc/deps/nether_net/ISignalingEventHandler.h +++ b/src/mc/deps/nether_net/ISignalingEventHandler.h @@ -53,19 +53,19 @@ struct ISignalingEventHandler { public: // virtual function thunks // NOLINTBEGIN - MCAPI void $OnSignalingEvent(::NetherNet::SignalingEvents::MessageSent const&); + MCFOLD void $OnSignalingEvent(::NetherNet::SignalingEvents::MessageSent const&); - MCAPI void $OnSignalingEvent(::NetherNet::SignalingEvents::MessageReceived const&); + MCFOLD void $OnSignalingEvent(::NetherNet::SignalingEvents::MessageReceived const&); - MCAPI void $OnSignalingEvent(::NetherNet::SignalingEvents::PingSent const&); + MCFOLD void $OnSignalingEvent(::NetherNet::SignalingEvents::PingSent const&); - MCAPI void $OnSignalingEvent(::NetherNet::SignalingEvents::MessageAccepted const&); + MCFOLD void $OnSignalingEvent(::NetherNet::SignalingEvents::MessageAccepted const&); - MCAPI void $OnSignalingEvent(::NetherNet::SignalingEvents::MessageDelivered const&); + MCFOLD void $OnSignalingEvent(::NetherNet::SignalingEvents::MessageDelivered const&); - MCAPI void $OnSignalingEvent(::NetherNet::SignalingEvents::TurnAuthReceived const&); + MCFOLD void $OnSignalingEvent(::NetherNet::SignalingEvents::TurnAuthReceived const&); - MCAPI void $OnSignalingEvent(::NetherNet::SignalingEvents::ErrorReceived const&); + MCFOLD void $OnSignalingEvent(::NetherNet::SignalingEvents::ErrorReceived const&); // NOLINTEND }; diff --git a/src/mc/deps/nether_net/MessageReceived.h b/src/mc/deps/nether_net/MessageReceived.h index 9b64adff1e..7ab7aa0d1e 100644 --- a/src/mc/deps/nether_net/MessageReceived.h +++ b/src/mc/deps/nether_net/MessageReceived.h @@ -29,7 +29,7 @@ struct MessageReceived { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/deps/nether_net/MessageSent.h b/src/mc/deps/nether_net/MessageSent.h index a76a3b6ea2..0851e95439 100644 --- a/src/mc/deps/nether_net/MessageSent.h +++ b/src/mc/deps/nether_net/MessageSent.h @@ -29,7 +29,7 @@ struct MessageSent { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/deps/nether_net/NetworkSession.h b/src/mc/deps/nether_net/NetworkSession.h index b2c221722c..dd83f407ac 100644 --- a/src/mc/deps/nether_net/NetworkSession.h +++ b/src/mc/deps/nether_net/NetworkSession.h @@ -192,11 +192,11 @@ class NetworkSession : public ::webrtc::PeerConnectionObserver { public: // virtual function thunks // NOLINTBEGIN - MCAPI void $OnSignalingChange(::webrtc::PeerConnectionInterface::SignalingState); + MCFOLD void $OnSignalingChange(::webrtc::PeerConnectionInterface::SignalingState); MCAPI void $OnDataChannel(::webrtc::scoped_refptr<::webrtc::DataChannelInterface> pDataChannel); - MCAPI void $OnRenegotiationNeeded(); + MCFOLD void $OnRenegotiationNeeded(); MCAPI void $OnIceConnectionChange(::webrtc::PeerConnectionInterface::IceConnectionState new_state); @@ -206,9 +206,9 @@ class NetworkSession : public ::webrtc::PeerConnectionObserver { MCAPI void $OnIceCandidate(::webrtc::IceCandidateInterface const* candidate); - MCAPI void $OnIceCandidatesRemoved(::std::vector<::cricket::Candidate> const&); + MCFOLD void $OnIceCandidatesRemoved(::std::vector<::cricket::Candidate> const&); - MCAPI void $OnIceConnectionReceivingChange(bool); + MCFOLD void $OnIceConnectionReceivingChange(bool); // NOLINTEND public: diff --git a/src/mc/deps/nether_net/RtcThreadManager.h b/src/mc/deps/nether_net/RtcThreadManager.h index bd5918fbe7..9c0355a35f 100644 --- a/src/mc/deps/nether_net/RtcThreadManager.h +++ b/src/mc/deps/nether_net/RtcThreadManager.h @@ -49,7 +49,7 @@ class RtcThreadManager { public: // constructor thunks // NOLINTBEGIN - MCAPI void* $ctor(); + MCFOLD void* $ctor(); // NOLINTEND public: diff --git a/src/mc/deps/nether_net/StunRelayServer.h b/src/mc/deps/nether_net/StunRelayServer.h index eaa2c8507d..9f226feee4 100644 --- a/src/mc/deps/nether_net/StunRelayServer.h +++ b/src/mc/deps/nether_net/StunRelayServer.h @@ -35,7 +35,7 @@ struct StunRelayServer { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/deps/nether_net/signaling/ConnectError.h b/src/mc/deps/nether_net/signaling/ConnectError.h index 4926ce95a7..ec5a9e400b 100644 --- a/src/mc/deps/nether_net/signaling/ConnectError.h +++ b/src/mc/deps/nether_net/signaling/ConnectError.h @@ -30,7 +30,7 @@ class ConnectError { public: // static functions // NOLINTBEGIN - MCAPI static ::NetherNet::ConnectError Create(uint64 sessionId, ::NetherNet::ESessionError sessionError); + MCFOLD static ::NetherNet::ConnectError Create(uint64 sessionId, ::NetherNet::ESessionError sessionError); MCAPI static ::std::optional<::NetherNet::ConnectError> TryParse(::std::array<::std::string_view, 3> const& tokens); // NOLINTEND diff --git a/src/mc/deps/nether_net/signaling/ConnectRequest.h b/src/mc/deps/nether_net/signaling/ConnectRequest.h index 1605cd377c..e2f3aa29f1 100644 --- a/src/mc/deps/nether_net/signaling/ConnectRequest.h +++ b/src/mc/deps/nether_net/signaling/ConnectRequest.h @@ -36,7 +36,7 @@ class ConnectRequest { public: // static functions // NOLINTBEGIN - MCAPI static ::NetherNet::ConnectRequest Create(uint64 sessionId, ::std::string sdp); + MCFOLD static ::NetherNet::ConnectRequest Create(uint64 sessionId, ::std::string sdp); MCAPI static ::std::optional<::NetherNet::ConnectRequest> TryParse(::std::array<::std::string_view, 3> const& tokens ); @@ -51,7 +51,7 @@ class ConnectRequest { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/deps/nether_net/signaling/ConnectResponse.h b/src/mc/deps/nether_net/signaling/ConnectResponse.h index b1ae2b64f5..cbacb2f8c5 100644 --- a/src/mc/deps/nether_net/signaling/ConnectResponse.h +++ b/src/mc/deps/nether_net/signaling/ConnectResponse.h @@ -36,7 +36,7 @@ class ConnectResponse { public: // static functions // NOLINTBEGIN - MCAPI static ::NetherNet::ConnectResponse Create(uint64 sessionId, ::std::string sdp); + MCFOLD static ::NetherNet::ConnectResponse Create(uint64 sessionId, ::std::string sdp); MCAPI static ::std::optional<::NetherNet::ConnectResponse> TryParse(::std::array<::std::string_view, 3> const& tokens); @@ -51,7 +51,7 @@ class ConnectResponse { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/deps/nether_net/signaling/ErrorReceived.h b/src/mc/deps/nether_net/signaling/ErrorReceived.h index 14604e36a2..e10907f6bb 100644 --- a/src/mc/deps/nether_net/signaling/ErrorReceived.h +++ b/src/mc/deps/nether_net/signaling/ErrorReceived.h @@ -28,7 +28,7 @@ struct ErrorReceived { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/deps/nether_net/signaling/MessageAccepted.h b/src/mc/deps/nether_net/signaling/MessageAccepted.h index 976290836a..79c2ed2b0d 100644 --- a/src/mc/deps/nether_net/signaling/MessageAccepted.h +++ b/src/mc/deps/nether_net/signaling/MessageAccepted.h @@ -26,7 +26,7 @@ struct MessageAccepted { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/deps/nether_net/signaling/MessageDelivered.h b/src/mc/deps/nether_net/signaling/MessageDelivered.h index b9902774dd..feb14668a3 100644 --- a/src/mc/deps/nether_net/signaling/MessageDelivered.h +++ b/src/mc/deps/nether_net/signaling/MessageDelivered.h @@ -26,7 +26,7 @@ struct MessageDelivered { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/deps/nether_net/signaling/MessageReceived.h b/src/mc/deps/nether_net/signaling/MessageReceived.h index 76119f962f..92450d63e9 100644 --- a/src/mc/deps/nether_net/signaling/MessageReceived.h +++ b/src/mc/deps/nether_net/signaling/MessageReceived.h @@ -28,7 +28,7 @@ struct MessageReceived { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/deps/nether_net/signaling/MessageSent.h b/src/mc/deps/nether_net/signaling/MessageSent.h index 8ea239659e..d6a094eb77 100644 --- a/src/mc/deps/nether_net/signaling/MessageSent.h +++ b/src/mc/deps/nether_net/signaling/MessageSent.h @@ -29,7 +29,7 @@ struct MessageSent { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/deps/nether_net/signaling/MessageTracker.h b/src/mc/deps/nether_net/signaling/MessageTracker.h index 77b33692e7..f5bb2de104 100644 --- a/src/mc/deps/nether_net/signaling/MessageTracker.h +++ b/src/mc/deps/nether_net/signaling/MessageTracker.h @@ -51,7 +51,7 @@ class MessageTracker : public ::NetherNet::ISignalingEventHandler { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/deps/nether_net/signaling/prototype/ClientHello.h b/src/mc/deps/nether_net/signaling/prototype/ClientHello.h index 6be2058eab..d063649a8b 100644 --- a/src/mc/deps/nether_net/signaling/prototype/ClientHello.h +++ b/src/mc/deps/nether_net/signaling/prototype/ClientHello.h @@ -27,13 +27,13 @@ class ClientHello { // NOLINTBEGIN MCAPI explicit ClientHello(::NetherNet::NetworkID localId); - MCAPI ::NetherNet::NetworkID GetId() const; + MCFOLD ::NetherNet::NetworkID GetId() const; // NOLINTEND public: // constructor thunks // NOLINTBEGIN - MCAPI void* $ctor(::NetherNet::NetworkID localId); + MCFOLD void* $ctor(::NetherNet::NetworkID localId); // NOLINTEND }; diff --git a/src/mc/deps/nether_net/signaling/prototype/ServerHello.h b/src/mc/deps/nether_net/signaling/prototype/ServerHello.h index 63a881fc8c..eb7d029f84 100644 --- a/src/mc/deps/nether_net/signaling/prototype/ServerHello.h +++ b/src/mc/deps/nether_net/signaling/prototype/ServerHello.h @@ -25,7 +25,7 @@ class ServerHello { public: // member functions // NOLINTBEGIN - MCAPI ::NetherNet::NetworkID GetId() const; + MCFOLD ::NetherNet::NetworkID GetId() const; MCAPI explicit ServerHello(::NetherNet::NetworkID localId); // NOLINTEND @@ -33,7 +33,7 @@ class ServerHello { public: // constructor thunks // NOLINTBEGIN - MCAPI void* $ctor(::NetherNet::NetworkID localId); + MCFOLD void* $ctor(::NetherNet::NetworkID localId); // NOLINTEND }; diff --git a/src/mc/deps/nether_net/signaling/prototype/TcpClientSignalingInterfaceImpl.h b/src/mc/deps/nether_net/signaling/prototype/TcpClientSignalingInterfaceImpl.h index dbc4aaaf68..2ee1937880 100644 --- a/src/mc/deps/nether_net/signaling/prototype/TcpClientSignalingInterfaceImpl.h +++ b/src/mc/deps/nether_net/signaling/prototype/TcpClientSignalingInterfaceImpl.h @@ -54,7 +54,7 @@ class TcpClientSignalingInterfaceImpl : public ::NetherNet::TcpSignalingInterfac // NOLINTBEGIN MCAPI ::std::error_code Connect(::std::unique_ptr<::rtc::Socket> socket, ::rtc::SocketAddress const&); - MCAPI void OnClose(::rtc::AsyncPacketSocket*, int status); + MCFOLD void OnClose(::rtc::AsyncPacketSocket*, int status); MCAPI void OnConnect(::rtc::AsyncPacketSocket*); // NOLINTEND @@ -62,7 +62,7 @@ class TcpClientSignalingInterfaceImpl : public ::NetherNet::TcpSignalingInterfac public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND public: diff --git a/src/mc/deps/nether_net/signaling/prototype/TcpServerSignalingInterfaceImpl.h b/src/mc/deps/nether_net/signaling/prototype/TcpServerSignalingInterfaceImpl.h index 3686ab145f..aaf996e5c7 100644 --- a/src/mc/deps/nether_net/signaling/prototype/TcpServerSignalingInterfaceImpl.h +++ b/src/mc/deps/nether_net/signaling/prototype/TcpServerSignalingInterfaceImpl.h @@ -53,7 +53,7 @@ class TcpServerSignalingInterfaceImpl : public ::NetherNet::TcpSignalingInterfac public: // member functions // NOLINTBEGIN - MCAPI void OnClose(::rtc::AsyncPacketSocket*, int status); + MCFOLD void OnClose(::rtc::AsyncPacketSocket*, int status); MCAPI void OnPacket(::rtc::AsyncPacketSocket*, ::rtc::ReceivedPacket const& packet); @@ -69,7 +69,7 @@ class TcpServerSignalingInterfaceImpl : public ::NetherNet::TcpSignalingInterfac public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND public: diff --git a/src/mc/deps/nether_net/signaling/prototype/TcpSignalingInterfaceBase.h b/src/mc/deps/nether_net/signaling/prototype/TcpSignalingInterfaceBase.h index 14b4ef76ef..d57e7ed151 100644 --- a/src/mc/deps/nether_net/signaling/prototype/TcpSignalingInterfaceBase.h +++ b/src/mc/deps/nether_net/signaling/prototype/TcpSignalingInterfaceBase.h @@ -55,7 +55,7 @@ class TcpSignalingInterfaceBase : public ::NetherNet::IWebRTCSignalingInterface, public: // member functions // NOLINTBEGIN - MCAPI void OnClose(::rtc::AsyncPacketSocket*, int status); + MCFOLD void OnClose(::rtc::AsyncPacketSocket*, int status); MCAPI Peer(::NetherNet::NetworkID id, ::std::unique_ptr<::rtc::AsyncPacketSocket> socket); // NOLINTEND @@ -143,11 +143,11 @@ class TcpSignalingInterfaceBase : public ::NetherNet::IWebRTCSignalingInterface, public: // virtual function thunks // NOLINTBEGIN - MCAPI void $SignOut(); + MCFOLD void $SignOut(); - MCAPI bool $IsSignedIn() const; + MCFOLD bool $IsSignedIn() const; - MCAPI void $Update(); + MCFOLD void $Update(); MCAPI void $SendSignal(::NetherNet::NetworkID to, char const* signal, uint size, ::std::function&&); diff --git a/src/mc/deps/platform_features/file_picker/FilePickerManager.h b/src/mc/deps/platform_features/file_picker/FilePickerManager.h index 3d7d20e0d2..bc56508767 100644 --- a/src/mc/deps/platform_features/file_picker/FilePickerManager.h +++ b/src/mc/deps/platform_features/file_picker/FilePickerManager.h @@ -45,7 +45,7 @@ class FilePickerManager : public ::Bedrock::ImplBase<::Bedrock::FilePickerManage public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/deps/platform_features/platform/v/disabled/file_picker/FilePickerManagerImpl.h b/src/mc/deps/platform_features/platform/v/disabled/file_picker/FilePickerManagerImpl.h index c2b02f19c8..0cd2e43b64 100644 --- a/src/mc/deps/platform_features/platform/v/disabled/file_picker/FilePickerManagerImpl.h +++ b/src/mc/deps/platform_features/platform/v/disabled/file_picker/FilePickerManagerImpl.h @@ -49,7 +49,7 @@ class FilePickerManagerImpl : public ::Bedrock::FilePickerManager { public: // virtual function thunks // NOLINTBEGIN - MCAPI bool $directoryPickingEnabledForPlatform() const; + MCFOLD bool $directoryPickingEnabledForPlatform() const; MCAPI ::std::shared_ptr<::Bedrock::Threading::IAsyncResult<::Bedrock::FilePickerManager::DirectoryPickerResult>> $pickDirectory(::Bedrock::DirectoryPickerConfig const&); diff --git a/src/mc/deps/profiler/Profile.h b/src/mc/deps/profiler/Profile.h index 45a890b26f..bb6aa2d2d8 100644 --- a/src/mc/deps/profiler/Profile.h +++ b/src/mc/deps/profiler/Profile.h @@ -14,12 +14,12 @@ namespace Core::Profile { class CounterTokenMarker; } namespace Core::Profile { // functions // NOLINTBEGIN -MCAPI void counterSet(::Core::Profile::CounterTokenMarker, int64); +MCFOLD void counterSet(::Core::Profile::CounterTokenMarker, int64); MCAPI ::Core::Profile::CounterTokenMarker generateCounterTokenWithConfig(char const*, ::Core::Profile::CounterFormat, int64, ::Core::Profile::CounterFlags); -MCAPI void initializeProfile(); +MCFOLD void initializeProfile(); MCAPI void onFileOpenFailed(bool isReadOnly); @@ -29,13 +29,13 @@ MCAPI void onFileOpenRetry(bool isReadOnly); MCAPI void onFileOpenRetrySuccess(bool isReadOnly); -MCAPI void onMainThreadCreate(); +MCFOLD void onMainThreadCreate(); -MCAPI void onThreadDestroy(); +MCFOLD void onThreadDestroy(); -MCAPI void profileFlip(); +MCFOLD void profileFlip(); -MCAPI void shutdownProfile(); +MCFOLD void shutdownProfile(); // NOLINTEND // static variables diff --git a/src/mc/deps/profiler/ProfileThread.h b/src/mc/deps/profiler/ProfileThread.h index fcac1d890c..0f6215edac 100644 --- a/src/mc/deps/profiler/ProfileThread.h +++ b/src/mc/deps/profiler/ProfileThread.h @@ -16,13 +16,13 @@ class ProfileThread { public: // constructor thunks // NOLINTBEGIN - MCAPI void* $ctor(char const*); + MCFOLD void* $ctor(char const*); // NOLINTEND public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/deps/puv/BinaryInput.h b/src/mc/deps/puv/BinaryInput.h index c78a80e624..7883a057c6 100644 --- a/src/mc/deps/puv/BinaryInput.h +++ b/src/mc/deps/puv/BinaryInput.h @@ -53,7 +53,7 @@ class BinaryInput : public ::Puv::Input { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND public: diff --git a/src/mc/deps/puv/CerealUpgraderBase.h b/src/mc/deps/puv/CerealUpgraderBase.h index 2d7d20f0b9..2a7c437b85 100644 --- a/src/mc/deps/puv/CerealUpgraderBase.h +++ b/src/mc/deps/puv/CerealUpgraderBase.h @@ -118,7 +118,7 @@ class CerealUpgraderBase { ::Puv::internal::CerealUpgraderBase::UpgradeState& state ) const; - MCAPI ::cereal::ReflectionCtx const& ctx() const; + MCFOLD ::cereal::ReflectionCtx const& ctx() const; MCAPI void ignore(::std::vector<::std::string> source); diff --git a/src/mc/deps/puv/Input.h b/src/mc/deps/puv/Input.h index 91ad48352c..f21496a530 100644 --- a/src/mc/deps/puv/Input.h +++ b/src/mc/deps/puv/Input.h @@ -36,15 +36,15 @@ class Input { public: // member functions // NOLINTBEGIN - MCAPI ::std::string const& toBinary() const; + MCFOLD ::std::string const& toBinary() const; - MCAPI ::cereal::DynamicValue const& toDynamicValue() const; + MCFOLD ::cereal::DynamicValue const& toDynamicValue() const; - MCAPI ::Json::Value const& toJsonCpp() const; + MCFOLD ::Json::Value const& toJsonCpp() const; - MCAPI ::std::string const& toJsonString() const; + MCFOLD ::std::string const& toJsonString() const; - MCAPI ::rapidjson:: + MCFOLD ::rapidjson:: GenericValue<::rapidjson::UTF8, ::rapidjson::MemoryPoolAllocator<::rapidjson::CrtAllocator>> const& toRapidjson() const; // NOLINTEND diff --git a/src/mc/deps/puv/LoadResultAny.h b/src/mc/deps/puv/LoadResultAny.h index f445eb9c2b..b7da45d240 100644 --- a/src/mc/deps/puv/LoadResultAny.h +++ b/src/mc/deps/puv/LoadResultAny.h @@ -5,33 +5,7 @@ // auto generated forward declare list // clang-format off class SemVersion; -struct ActorSpawnRuleData; -struct BetaItemComponentData; -struct BlockDefinition; -struct ComponentItemDataAll_Latest; -struct ComponentItemData_v1_19_83; -struct ComponentItemData_v1_20; -struct ComponentItemData_v1_20_20; -struct ComponentItemData_v1_20_30; -struct ComponentItemData_v1_20_40; -struct ComponentItemData_v1_20_50; -struct ComponentItemData_v1_20_60; -struct ComponentItemData_v1_20_80; -struct ComponentItemData_v1_21_10; -struct ComponentItemData_v1_21_30; -struct ComponentItemData_v1_21_40; -struct ComponentItemData_v1_21_50; -struct FeatureResult; namespace Puv { class Logger; } -namespace SharedTypes::v1_21_20 { struct AutomaticFeatureRulesData; } -namespace SharedTypes::v1_21_20::JigsawStructureDefinition { struct Contents; } -namespace SharedTypes::v1_21_20::JigsawStructureProcessorList { struct Contents; } -namespace SharedTypes::v1_21_20::JigsawStructureSet { struct Contents; } -namespace SharedTypes::v1_21_20::JigsawStructureTemplatePool { struct Contents; } -namespace SharedTypes::v1_21_30 { struct TradeTableData; } -namespace SharedTypes::v1_21_50 { struct CameraAimAssistCategoriesFile; } -namespace SharedTypes::v1_21_50 { struct CameraAimAssistPresetFile; } -namespace SharedTypes::v1_21_50 { struct JigsawStructureMetadataFile; } // clang-format on namespace Puv { @@ -56,73 +30,15 @@ class LoadResultAny { // NOLINTBEGIN MCAPI LoadResultAny(::Puv::LoadResultAny&&); - MCAPI LoadResultAny(::SemVersion const&, ::ComponentItemData_v1_20_40&&, ::Puv::Logger); - - MCAPI LoadResultAny(::SemVersion const&, ::BlockDefinition&&, ::Puv::Logger); - - MCAPI LoadResultAny(::SemVersion const&, ::BetaItemComponentData&&, ::Puv::Logger); - - MCAPI LoadResultAny(::SemVersion const&, ::ComponentItemData_v1_20&&, ::Puv::Logger); - - MCAPI LoadResultAny(::SemVersion const&, ::ComponentItemDataAll_Latest&&, ::Puv::Logger); - - MCAPI LoadResultAny(::SemVersion const&, ::SharedTypes::v1_21_30::TradeTableData&&, ::Puv::Logger); - - MCAPI - LoadResultAny(::SemVersion const&, ::SharedTypes::v1_21_20::JigsawStructureDefinition::Contents&&, ::Puv::Logger); - - MCAPI LoadResultAny(::SemVersion const&, ::ComponentItemData_v1_21_50&&, ::Puv::Logger); - - MCAPI LoadResultAny(::SemVersion const&, ::ComponentItemData_v1_21_40&&, ::Puv::Logger); - - MCAPI LoadResultAny(::SemVersion const&, ::ComponentItemData_v1_20_50&&, ::Puv::Logger); - - MCAPI LoadResultAny(::SemVersion const&, ::ComponentItemData_v1_20_60&&, ::Puv::Logger); - - MCAPI LoadResultAny(::SemVersion const&, ::FeatureResult&&, ::Puv::Logger); - - MCAPI LoadResultAny(::SemVersion const&, ::ActorSpawnRuleData&&, ::Puv::Logger); - - MCAPI LoadResultAny(::SemVersion const&, ::ComponentItemData_v1_19_83&&, ::Puv::Logger); - - MCAPI LoadResultAny(::SemVersion const&, ::ComponentItemData_v1_21_10&&, ::Puv::Logger); - - MCAPI LoadResultAny(::SemVersion const&, ::SharedTypes::v1_21_20::AutomaticFeatureRulesData&&, ::Puv::Logger); - - MCAPI LoadResultAny(::SemVersion const&, ::ComponentItemData_v1_20_20&&, ::Puv::Logger); - - MCAPI LoadResultAny(::SemVersion const&, ::SharedTypes::v1_21_50::CameraAimAssistPresetFile&&, ::Puv::Logger); - - MCAPI LoadResultAny(::SemVersion const&, ::SharedTypes::v1_21_50::CameraAimAssistCategoriesFile&&, ::Puv::Logger); - - MCAPI LoadResultAny(::SemVersion const&, ::ComponentItemData_v1_21_30&&, ::Puv::Logger); - - MCAPI LoadResultAny(::SemVersion const&, ::ComponentItemData_v1_20_30&&, ::Puv::Logger); - - MCAPI - LoadResultAny(::SemVersion const&, ::SharedTypes::v1_21_20::JigsawStructureTemplatePool::Contents&&, ::Puv::Logger); - - MCAPI LoadResultAny(::SemVersion const&, ::SharedTypes::v1_21_50::JigsawStructureMetadataFile&&, ::Puv::Logger); - - MCAPI LoadResultAny( - ::SemVersion const&, - ::SharedTypes::v1_21_20::JigsawStructureProcessorList::Contents&&, - ::Puv::Logger - ); - - MCAPI LoadResultAny(::SemVersion const&, ::ComponentItemData_v1_20_80&&, ::Puv::Logger); - - MCAPI LoadResultAny(::SemVersion const&, ::SharedTypes::v1_21_20::JigsawStructureSet::Contents&&, ::Puv::Logger); - - MCAPI bool isValid() const; + MCFOLD bool isValid() const; MCAPI ::Puv::Logger const& log() const; - MCAPI ::Puv::Logger& log(); + MCFOLD ::Puv::Logger& log(); - MCAPI explicit operator bool() const; + MCFOLD explicit operator bool() const; - MCAPI ::SemVersion const& version() const; + MCFOLD ::SemVersion const& version() const; MCAPI ~LoadResultAny(); // NOLINTEND @@ -137,67 +53,12 @@ class LoadResultAny { // constructor thunks // NOLINTBEGIN MCAPI void* $ctor(::Puv::LoadResultAny&&); - - MCAPI void* $ctor(::SemVersion const&, ::ComponentItemData_v1_20_40&&, ::Puv::Logger); - - MCAPI void* $ctor(::SemVersion const&, ::BlockDefinition&&, ::Puv::Logger); - - MCAPI void* $ctor(::SemVersion const&, ::BetaItemComponentData&&, ::Puv::Logger); - - MCAPI void* $ctor(::SemVersion const&, ::ComponentItemData_v1_20&&, ::Puv::Logger); - - MCAPI void* $ctor(::SemVersion const&, ::ComponentItemDataAll_Latest&&, ::Puv::Logger); - - MCAPI void* $ctor(::SemVersion const&, ::SharedTypes::v1_21_30::TradeTableData&&, ::Puv::Logger); - - MCAPI void* - $ctor(::SemVersion const&, ::SharedTypes::v1_21_20::JigsawStructureDefinition::Contents&&, ::Puv::Logger); - - MCAPI void* $ctor(::SemVersion const&, ::ComponentItemData_v1_21_50&&, ::Puv::Logger); - - MCAPI void* $ctor(::SemVersion const&, ::ComponentItemData_v1_21_40&&, ::Puv::Logger); - - MCAPI void* $ctor(::SemVersion const&, ::ComponentItemData_v1_20_50&&, ::Puv::Logger); - - MCAPI void* $ctor(::SemVersion const&, ::ComponentItemData_v1_20_60&&, ::Puv::Logger); - - MCAPI void* $ctor(::SemVersion const&, ::FeatureResult&&, ::Puv::Logger); - - MCAPI void* $ctor(::SemVersion const&, ::ActorSpawnRuleData&&, ::Puv::Logger); - - MCAPI void* $ctor(::SemVersion const&, ::ComponentItemData_v1_19_83&&, ::Puv::Logger); - - MCAPI void* $ctor(::SemVersion const&, ::ComponentItemData_v1_21_10&&, ::Puv::Logger); - - MCAPI void* $ctor(::SemVersion const&, ::SharedTypes::v1_21_20::AutomaticFeatureRulesData&&, ::Puv::Logger); - - MCAPI void* $ctor(::SemVersion const&, ::ComponentItemData_v1_20_20&&, ::Puv::Logger); - - MCAPI void* $ctor(::SemVersion const&, ::SharedTypes::v1_21_50::CameraAimAssistPresetFile&&, ::Puv::Logger); - - MCAPI void* $ctor(::SemVersion const&, ::SharedTypes::v1_21_50::CameraAimAssistCategoriesFile&&, ::Puv::Logger); - - MCAPI void* $ctor(::SemVersion const&, ::ComponentItemData_v1_21_30&&, ::Puv::Logger); - - MCAPI void* $ctor(::SemVersion const&, ::ComponentItemData_v1_20_30&&, ::Puv::Logger); - - MCAPI void* - $ctor(::SemVersion const&, ::SharedTypes::v1_21_20::JigsawStructureTemplatePool::Contents&&, ::Puv::Logger); - - MCAPI void* $ctor(::SemVersion const&, ::SharedTypes::v1_21_50::JigsawStructureMetadataFile&&, ::Puv::Logger); - - MCAPI void* - $ctor(::SemVersion const&, ::SharedTypes::v1_21_20::JigsawStructureProcessorList::Contents&&, ::Puv::Logger); - - MCAPI void* $ctor(::SemVersion const&, ::ComponentItemData_v1_20_80&&, ::Puv::Logger); - - MCAPI void* $ctor(::SemVersion const&, ::SharedTypes::v1_21_20::JigsawStructureSet::Contents&&, ::Puv::Logger); // NOLINTEND public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/deps/puv/Logger.h b/src/mc/deps/puv/Logger.h index 79da420952..f239bafa3b 100644 --- a/src/mc/deps/puv/Logger.h +++ b/src/mc/deps/puv/Logger.h @@ -88,7 +88,7 @@ class Logger { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; @@ -135,7 +135,7 @@ class Logger { ::std::_Vector_const_iterator<::std::_Vector_val<::std::_Simple_types<::Puv::Logger::ValidationLogEntry>>>>> getValidationLog(::Puv::Logger::ValidationResultCode mask) const; - MCAPI bool hasErrors() const; + MCFOLD bool hasErrors() const; MCAPI ::Puv::Logger& log(::Puv::Logger::ValidationResultCode res, ::std::string msg); diff --git a/src/mc/deps/puv/ParserBase.h b/src/mc/deps/puv/ParserBase.h index f77630ba12..6184be40d4 100644 --- a/src/mc/deps/puv/ParserBase.h +++ b/src/mc/deps/puv/ParserBase.h @@ -41,9 +41,9 @@ class ParserBase { // NOLINTBEGIN MCAPI ParserBase(::SemVersion const& parserVersion, ::Puv::VersionRange supportedVersions); - MCAPI ::SemVersion const& parserVersion() const; + MCFOLD ::SemVersion const& parserVersion() const; - MCAPI ::Puv::VersionRange const& supportedVersions() const; + MCFOLD ::Puv::VersionRange const& supportedVersions() const; // NOLINTEND public: diff --git a/src/mc/deps/puv/Upgrader.h b/src/mc/deps/puv/Upgrader.h index b3727f8798..6cfa2f069c 100644 --- a/src/mc/deps/puv/Upgrader.h +++ b/src/mc/deps/puv/Upgrader.h @@ -39,9 +39,9 @@ class Upgrader { // NOLINTBEGIN MCAPI Upgrader(::SemVersion const& from, ::SemVersion const& to); - MCAPI ::SemVersion const& sourceVersion() const; + MCFOLD ::SemVersion const& sourceVersion() const; - MCAPI ::SemVersion const& targetVersion() const; + MCFOLD ::SemVersion const& targetVersion() const; MCAPI ::Puv::LoadResultAny upgrade(::Puv::LoadResultAny source) const; // NOLINTEND @@ -55,7 +55,7 @@ class Upgrader { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND public: diff --git a/src/mc/deps/puv/VersionRange.h b/src/mc/deps/puv/VersionRange.h index 2b2ea48d10..ad33b26e64 100644 --- a/src/mc/deps/puv/VersionRange.h +++ b/src/mc/deps/puv/VersionRange.h @@ -44,7 +44,7 @@ class VersionRange { public: // constructor thunks // NOLINTBEGIN - MCAPI void* $ctor(::Puv::VersionRange&&); + MCFOLD void* $ctor(::Puv::VersionRange&&); MCAPI void* $ctor(::Puv::VersionRange const&); @@ -54,7 +54,7 @@ class VersionRange { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/deps/puv/internal/Context.h b/src/mc/deps/puv/internal/Context.h index 777fd46b68..2efdf9cfcc 100644 --- a/src/mc/deps/puv/internal/Context.h +++ b/src/mc/deps/puv/internal/Context.h @@ -30,7 +30,7 @@ struct Context { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/deps/raknet/BPSTracker.h b/src/mc/deps/raknet/BPSTracker.h index 103cacdb7a..e2c46361c2 100644 --- a/src/mc/deps/raknet/BPSTracker.h +++ b/src/mc/deps/raknet/BPSTracker.h @@ -36,13 +36,13 @@ struct BPSTracker { public: // constructor thunks // NOLINTBEGIN - MCAPI void* $ctor(); + MCFOLD void* $ctor(); // NOLINTEND public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/deps/raknet/BitStream.h b/src/mc/deps/raknet/BitStream.h index da387ec35a..bdbcc9ca0c 100644 --- a/src/mc/deps/raknet/BitStream.h +++ b/src/mc/deps/raknet/BitStream.h @@ -54,9 +54,9 @@ class BitStream { MCAPI void ResetReadPointer(); - MCAPI void ResetWritePointer(); + MCFOLD void ResetWritePointer(); - MCAPI void SetWriteOffset(uint offset); + MCFOLD void SetWriteOffset(uint offset); MCAPI void Write(::RakNet::BitStream* bitStream, uint numberOfBits); diff --git a/src/mc/deps/raknet/CCRakNetSlidingWindow.h b/src/mc/deps/raknet/CCRakNetSlidingWindow.h index a6cd204d5b..544eaba672 100644 --- a/src/mc/deps/raknet/CCRakNetSlidingWindow.h +++ b/src/mc/deps/raknet/CCRakNetSlidingWindow.h @@ -40,9 +40,9 @@ class CCRakNetSlidingWindow { MCAPI ::RakNet::uint24_t GetAndIncrementNextDatagramSequenceNumber(); - MCAPI uint64 GetBytesPerSecondLimitByCongestionControl() const; + MCFOLD uint64 GetBytesPerSecondLimitByCongestionControl() const; - MCAPI uint GetMTU() const; + MCFOLD uint GetMTU() const; MCAPI ::RakNet::uint24_t GetNextDatagramSequenceNumber(); @@ -81,7 +81,7 @@ class CCRakNetSlidingWindow { uint* skippedMessageCount ); - MCAPI void OnGotPacketPair(::RakNet::uint24_t datagramSequenceNumber, uint sizeInBytes, uint64 curTime); + MCFOLD void OnGotPacketPair(::RakNet::uint24_t datagramSequenceNumber, uint sizeInBytes, uint64 curTime); MCAPI void OnNAK(uint64 curTime, ::RakNet::uint24_t nakSequenceNumber); @@ -91,11 +91,11 @@ class CCRakNetSlidingWindow { MCAPI void OnSendAckGetBAndAS(uint64 curTime, bool* hasBAndAS, double* _B, double* _AS); - MCAPI void OnSendBytes(uint64 curTime, uint numBytes); + MCFOLD void OnSendBytes(uint64 curTime, uint numBytes); MCAPI bool ShouldSendACKs(uint64 curTime, uint64 estimatedTimeToNextTick); - MCAPI void Update(uint64 curTime, bool hasDataToSendOrResend); + MCFOLD void Update(uint64 curTime, bool hasDataToSendOrResend); MCAPI ~CCRakNetSlidingWindow(); // NOLINTEND @@ -115,7 +115,7 @@ class CCRakNetSlidingWindow { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/deps/raknet/CSHA1.h b/src/mc/deps/raknet/CSHA1.h index 43f7322349..f8c9e37efd 100644 --- a/src/mc/deps/raknet/CSHA1.h +++ b/src/mc/deps/raknet/CSHA1.h @@ -36,9 +36,9 @@ class CSHA1 { MCAPI void Final(); - MCAPI uchar* GetHash() const; + MCFOLD uchar* GetHash() const; - MCAPI void Reset(); + MCFOLD void Reset(); MCAPI void Transform(uint* pState, uchar const* pBuffer); @@ -56,6 +56,6 @@ class CSHA1 { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/deps/raknet/HuffmanEncodingTree.h b/src/mc/deps/raknet/HuffmanEncodingTree.h index 48aa5f16d9..e983c0370b 100644 --- a/src/mc/deps/raknet/HuffmanEncodingTree.h +++ b/src/mc/deps/raknet/HuffmanEncodingTree.h @@ -67,7 +67,7 @@ class HuffmanEncodingTree { public: // constructor thunks // NOLINTBEGIN - MCAPI void* $ctor(); + MCFOLD void* $ctor(); // NOLINTEND public: diff --git a/src/mc/deps/raknet/LocklessUint32_t.h b/src/mc/deps/raknet/LocklessUint32_t.h index 04ef863499..69c5d30689 100644 --- a/src/mc/deps/raknet/LocklessUint32_t.h +++ b/src/mc/deps/raknet/LocklessUint32_t.h @@ -29,7 +29,7 @@ class LocklessUint32_t { public: // constructor thunks // NOLINTBEGIN - MCAPI void* $ctor(); + MCFOLD void* $ctor(); // NOLINTEND }; diff --git a/src/mc/deps/raknet/PluginInterface2.h b/src/mc/deps/raknet/PluginInterface2.h index 1208db1c6b..7900288428 100644 --- a/src/mc/deps/raknet/PluginInterface2.h +++ b/src/mc/deps/raknet/PluginInterface2.h @@ -91,7 +91,7 @@ class PluginInterface2 { public: // member functions // NOLINTBEGIN - MCAPI void SetRakPeerInterface(::RakNet::RakPeerInterface* ptr); + MCFOLD void SetRakPeerInterface(::RakNet::RakPeerInterface* ptr); // NOLINTEND public: diff --git a/src/mc/deps/raknet/RNS2EventHandler.h b/src/mc/deps/raknet/RNS2EventHandler.h index d939bcdaa9..beefd55650 100644 --- a/src/mc/deps/raknet/RNS2EventHandler.h +++ b/src/mc/deps/raknet/RNS2EventHandler.h @@ -29,7 +29,7 @@ class RNS2EventHandler { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND public: diff --git a/src/mc/deps/raknet/RakNet.h b/src/mc/deps/raknet/RakNet.h index db250158c8..7de8eda569 100644 --- a/src/mc/deps/raknet/RakNet.h +++ b/src/mc/deps/raknet/RakNet.h @@ -17,9 +17,9 @@ namespace RakNet { // NOLINTBEGIN MCAPI uint ConnectionAttemptLoop(void* arguments); -MCAPI uint64 GetTime(); +MCFOLD uint64 GetTime(); -MCAPI uint GetTimeMS(); +MCFOLD uint GetTimeMS(); MCAPI uint64 GetTimeUS(); @@ -51,23 +51,23 @@ MCAPI uint UpdateNetworkLoop(void* arguments); MCAPI uint UpdateTCPInterfaceLoop(void* arguments); -MCAPI void* _DLMallocDirectMMap(uint64 size); +MCFOLD void* _DLMallocDirectMMap(uint64 size); -MCAPI void* _DLMallocMMap(uint64 size); +MCFOLD void* _DLMallocMMap(uint64 size); -MCAPI int _DLMallocMUnmap(void* p, uint64 size); +MCFOLD int _DLMallocMUnmap(void* p, uint64 size); -MCAPI void _RakFree(void* p); +MCFOLD void _RakFree(void* p); -MCAPI void _RakFree_Ex(void* p, char const* file, uint line); +MCFOLD void _RakFree_Ex(void* p, char const* file, uint line); -MCAPI void* _RakMalloc(uint64 size); +MCFOLD void* _RakMalloc(uint64 size); -MCAPI void* _RakMalloc_Ex(uint64 size, char const* file, uint line); +MCFOLD void* _RakMalloc_Ex(uint64 size, char const* file, uint line); -MCAPI void* _RakRealloc(void* p, uint64 size); +MCFOLD void* _RakRealloc(void* p, uint64 size); -MCAPI void* _RakRealloc_Ex(void* p, uint64 size, char const* file, uint line); +MCFOLD void* _RakRealloc_Ex(void* p, uint64 size, char const* file, uint line); // NOLINTEND // static variables diff --git a/src/mc/deps/raknet/RakNetGUID.h b/src/mc/deps/raknet/RakNetGUID.h index db2c450d3b..9099995b80 100644 --- a/src/mc/deps/raknet/RakNetGUID.h +++ b/src/mc/deps/raknet/RakNetGUID.h @@ -23,7 +23,7 @@ struct RakNetGUID { MCAPI bool operator!=(::RakNet::RakNetGUID const& right) const; - MCAPI bool operator==(::RakNet::RakNetGUID const& right) const; + MCFOLD bool operator==(::RakNet::RakNetGUID const& right) const; // NOLINTEND public: diff --git a/src/mc/deps/raknet/RakNetRandom.h b/src/mc/deps/raknet/RakNetRandom.h index b6d66221db..5b13ba9893 100644 --- a/src/mc/deps/raknet/RakNetRandom.h +++ b/src/mc/deps/raknet/RakNetRandom.h @@ -37,7 +37,7 @@ class RakNetRandom { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/deps/raknet/RakNetSocket2.h b/src/mc/deps/raknet/RakNetSocket2.h index 099470cc10..ed17ed4ceb 100644 --- a/src/mc/deps/raknet/RakNetSocket2.h +++ b/src/mc/deps/raknet/RakNetSocket2.h @@ -49,9 +49,9 @@ class RakNetSocket2 : public ::std::enable_shared_from_this<::RakNet::RakNetSock // NOLINTBEGIN MCAPI ::RakNet::SystemAddress GetBoundAddress() const; - MCAPI ::RakNet::RNS2Type GetSocketType() const; + MCFOLD ::RakNet::RNS2Type GetSocketType() const; - MCAPI uint GetUserConnectionSocketIndex() const; + MCFOLD uint GetUserConnectionSocketIndex() const; MCAPI bool IsBerkleySocket() const; @@ -75,7 +75,7 @@ class RakNetSocket2 : public ::std::enable_shared_from_this<::RakNet::RakNetSock public: // virtual function thunks // NOLINTBEGIN - MCAPI void $SetMulticastInterface(int interfaceIndex); + MCFOLD void $SetMulticastInterface(int interfaceIndex); // NOLINTEND public: diff --git a/src/mc/deps/raknet/RakNetSocket2Allocator.h b/src/mc/deps/raknet/RakNetSocket2Allocator.h index daae6baa67..a3943f7b03 100644 --- a/src/mc/deps/raknet/RakNetSocket2Allocator.h +++ b/src/mc/deps/raknet/RakNetSocket2Allocator.h @@ -15,7 +15,7 @@ class RakNetSocket2Allocator { // NOLINTBEGIN MCAPI static ::std::shared_ptr<::RakNet::RakNetSocket2> CreateSharedRNS2(); - MCAPI static void DeallocRNS2(::RakNet::RakNetSocket2* s); + MCFOLD static void DeallocRNS2(::RakNet::RakNetSocket2* s); // NOLINTEND }; diff --git a/src/mc/deps/raknet/RakPeer.h b/src/mc/deps/raknet/RakPeer.h index b67a8f7176..9cccc8cebe 100644 --- a/src/mc/deps/raknet/RakPeer.h +++ b/src/mc/deps/raknet/RakPeer.h @@ -847,9 +847,9 @@ class RakPeer : public ::RakNet::RakPeerInterface, public ::RakNet::RNS2EventHan int threadPriority ); - MCAPI bool $InitializeSecurity(char const* public_key, char const* private_key, bool bRequireClientKey); + MCFOLD bool $InitializeSecurity(char const* public_key, char const* private_key, bool bRequireClientKey); - MCAPI void $DisableSecurity(); + MCFOLD void $DisableSecurity(); MCAPI void $AddToSecurityExceptionList(char const* ip); @@ -859,7 +859,7 @@ class RakPeer : public ::RakNet::RakPeerInterface, public ::RakNet::RNS2EventHan MCAPI void $SetMaximumIncomingConnections(ushort numberAllowed); - MCAPI uint $GetMaximumIncomingConnections() const; + MCFOLD uint $GetMaximumIncomingConnections() const; MCAPI ushort $NumberOfConnections() const; @@ -942,7 +942,7 @@ class RakPeer : public ::RakNet::RakPeerInterface, public ::RakNet::RNS2EventHan MCAPI void $DeallocatePacket(::RakNet::Packet* packet); - MCAPI uint $GetMaximumNumberOfPeers() const; + MCFOLD uint $GetMaximumNumberOfPeers() const; MCAPI void $CloseConnection( ::RakNet::AddressOrGUID const target, @@ -1017,7 +1017,8 @@ class RakPeer : public ::RakNet::RakPeerInterface, public ::RakNet::RNS2EventHan MCAPI ::RakNet::SystemAddress $GetSystemAddressFromGuid(::RakNet::RakNetGUID const input) const; - MCAPI bool $GetClientPublicKeyFromSystemAddress(::RakNet::SystemAddress const input, char* client_public_key) const; + MCFOLD bool + $GetClientPublicKeyFromSystemAddress(::RakNet::SystemAddress const input, char* client_public_key) const; MCAPI void $SetTimeoutTime(uint timeMS, ::RakNet::SystemAddress const target); @@ -1071,11 +1072,11 @@ class RakPeer : public ::RakNet::RakPeerInterface, public ::RakNet::RNS2EventHan MCAPI void $SetIncomingDatagramEventHandler(bool (*_incomingDatagramEventHandler)(::RakNet::RNS2RecvStruct*)); - MCAPI void $ApplyNetworkSimulator(float packetloss, ushort minExtraPing, ushort extraPingVariance); + MCFOLD void $ApplyNetworkSimulator(float packetloss, ushort minExtraPing, ushort extraPingVariance); MCAPI void $SetPerConnectionOutgoingBandwidthLimit(uint maxBitsPerSecond); - MCAPI bool $IsNetworkSimulatorActive(); + MCFOLD bool $IsNetworkSimulatorActive(); MCAPI ::RakNet::RakNetStatistics* $GetStatistics(::RakNet::SystemAddress const systemAddress, ::RakNet::RakNetStatistics* rns); diff --git a/src/mc/deps/raknet/RakPeerInterface.h b/src/mc/deps/raknet/RakPeerInterface.h index 73ff0bc60b..02c342373d 100644 --- a/src/mc/deps/raknet/RakPeerInterface.h +++ b/src/mc/deps/raknet/RakPeerInterface.h @@ -363,7 +363,7 @@ class RakPeerInterface { public: // static functions // NOLINTBEGIN - MCAPI static void DestroyInstance(::RakNet::RakPeerInterface* i); + MCFOLD static void DestroyInstance(::RakNet::RakPeerInterface* i); MCAPI static uint64 Get64BitUniqueRandomNumber(); diff --git a/src/mc/deps/raknet/RakString.h b/src/mc/deps/raknet/RakString.h index 5109f0f8c6..4513d7e1dc 100644 --- a/src/mc/deps/raknet/RakString.h +++ b/src/mc/deps/raknet/RakString.h @@ -70,7 +70,7 @@ class RakString { MCAPI RakString(char const*, ...); - MCAPI ::RakNet::RakString& operator=(char* str); + MCFOLD ::RakNet::RakString& operator=(char* str); MCAPI ::RakNet::RakString& operator=(char const*); diff --git a/src/mc/deps/raknet/ReliabilityLayer.h b/src/mc/deps/raknet/ReliabilityLayer.h index bdf4e70f28..45553af430 100644 --- a/src/mc/deps/raknet/ReliabilityLayer.h +++ b/src/mc/deps/raknet/ReliabilityLayer.h @@ -255,7 +255,7 @@ class ReliabilityLayer { uint64 currentTime ); - MCAPI void SetSplitMessageProgressInterval(int interval); + MCFOLD void SetSplitMessageProgressInterval(int interval); MCAPI void SetTimeoutTime(uint time); diff --git a/src/mc/deps/raknet/SimpleMutex.h b/src/mc/deps/raknet/SimpleMutex.h index 42d4be22b6..81f1716beb 100644 --- a/src/mc/deps/raknet/SimpleMutex.h +++ b/src/mc/deps/raknet/SimpleMutex.h @@ -19,11 +19,11 @@ class SimpleMutex { public: // member functions // NOLINTBEGIN - MCAPI void Lock(); + MCFOLD void Lock(); MCAPI SimpleMutex(); - MCAPI void Unlock(); + MCFOLD void Unlock(); MCAPI ~SimpleMutex(); // NOLINTEND @@ -31,13 +31,13 @@ class SimpleMutex { public: // constructor thunks // NOLINTBEGIN - MCAPI void* $ctor(); + MCFOLD void* $ctor(); // NOLINTEND public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/deps/raknet/SystemAddress.h b/src/mc/deps/raknet/SystemAddress.h index b7599bc62d..db7c57655d 100644 --- a/src/mc/deps/raknet/SystemAddress.h +++ b/src/mc/deps/raknet/SystemAddress.h @@ -38,7 +38,7 @@ struct SystemAddress { MCAPI ushort GetPort() const; - MCAPI ushort GetPortNetworkOrder() const; + MCFOLD ushort GetPortNetworkOrder() const; MCAPI bool IsLinkLocalAddress() const; diff --git a/src/mc/deps/resource_processing/PreloadedPathHandle.h b/src/mc/deps/resource_processing/PreloadedPathHandle.h index 0115a8bccb..223941609c 100644 --- a/src/mc/deps/resource_processing/PreloadedPathHandle.h +++ b/src/mc/deps/resource_processing/PreloadedPathHandle.h @@ -32,7 +32,7 @@ class PreloadedPathHandle { MCAPI void forEach(::brstd::function_ref callback) const; - MCAPI explicit operator bool() const; + MCFOLD explicit operator bool() const; MCAPI ~PreloadedPathHandle(); // NOLINTEND @@ -46,7 +46,7 @@ class PreloadedPathHandle { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/deps/shared_types/Constraints.h b/src/mc/deps/shared_types/Constraints.h index 373e07d87a..0694090b26 100644 --- a/src/mc/deps/shared_types/Constraints.h +++ b/src/mc/deps/shared_types/Constraints.h @@ -10,9 +10,9 @@ namespace cereal { class StringConstraint; } namespace SharedTypes::Constraints { // functions // NOLINTBEGIN -MCAPI ::cereal::StringConstraint locIdStringConstraint(); +MCFOLD ::cereal::StringConstraint locIdStringConstraint(); -MCAPI ::cereal::StringConstraint resourceIdentifierConstraint(); +MCFOLD ::cereal::StringConstraint resourceIdentifierConstraint(); // NOLINTEND } // namespace SharedTypes::Constraints diff --git a/src/mc/deps/shared_types/ExpressionNode.h b/src/mc/deps/shared_types/ExpressionNode.h index 34d674179d..c10d070b57 100644 --- a/src/mc/deps/shared_types/ExpressionNode.h +++ b/src/mc/deps/shared_types/ExpressionNode.h @@ -37,7 +37,7 @@ struct ExpressionNode { MCAPI ::SharedTypes::Legacy::ExpressionNode::StringRepresentation& operator=(::SharedTypes::Legacy::ExpressionNode::StringRepresentation&&); - MCAPI ::SharedTypes::Legacy::ExpressionNode::StringRepresentation& + MCFOLD ::SharedTypes::Legacy::ExpressionNode::StringRepresentation& operator=(::SharedTypes::Legacy::ExpressionNode::StringRepresentation const&); MCAPI ~StringRepresentation(); @@ -52,7 +52,7 @@ struct ExpressionNode { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; @@ -105,7 +105,7 @@ struct ExpressionNode { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/deps/shared_types/IntRangeConstraint.h b/src/mc/deps/shared_types/IntRangeConstraint.h index 514f722748..660494aca5 100644 --- a/src/mc/deps/shared_types/IntRangeConstraint.h +++ b/src/mc/deps/shared_types/IntRangeConstraint.h @@ -58,7 +58,7 @@ class IntRangeConstraint : public ::cereal::Constraint { public: // virtual function thunks // NOLINTBEGIN - MCAPI ::cereal::internal::ConstraintDescription $description() const; + MCFOLD ::cereal::internal::ConstraintDescription $description() const; MCAPI void $doValidate(::entt::meta_any const& any, ::cereal::SerializerContext& context) const; // NOLINTEND diff --git a/src/mc/deps/shared_types/ItemDescriptor.h b/src/mc/deps/shared_types/ItemDescriptor.h index ca43da3fde..c32f8b6c56 100644 --- a/src/mc/deps/shared_types/ItemDescriptor.h +++ b/src/mc/deps/shared_types/ItemDescriptor.h @@ -46,7 +46,7 @@ struct ItemDescriptor { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/deps/shared_types/Legacy.h b/src/mc/deps/shared_types/Legacy.h index dc6226deaf..247b71dc5f 100644 --- a/src/mc/deps/shared_types/Legacy.h +++ b/src/mc/deps/shared_types/Legacy.h @@ -17,7 +17,7 @@ namespace SharedTypes::Legacy { MCAPI ::std::initializer_list<::std::pair<::std::string const, ::SharedTypes::Legacy::LevelSoundEvent>> const& getLevelSoundEventInitializer(); -MCAPI bool +MCFOLD bool operator==(::SharedTypes::Legacy::ExpressionNode const& lhs, ::SharedTypes::Legacy::ExpressionNode const& rhs); MCAPI bool operator==( diff --git a/src/mc/deps/shared_types/NamespaceConstraint.h b/src/mc/deps/shared_types/NamespaceConstraint.h index 69fe07c3c2..bc2e3a485b 100644 --- a/src/mc/deps/shared_types/NamespaceConstraint.h +++ b/src/mc/deps/shared_types/NamespaceConstraint.h @@ -50,7 +50,7 @@ class NamespaceConstraint : public ::cereal::Constraint { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND public: diff --git a/src/mc/deps/shared_types/SemVersionConstraint.h b/src/mc/deps/shared_types/SemVersionConstraint.h index bef445b2b0..0623e0fd80 100644 --- a/src/mc/deps/shared_types/SemVersionConstraint.h +++ b/src/mc/deps/shared_types/SemVersionConstraint.h @@ -50,7 +50,7 @@ class SemVersionConstraint : public ::cereal::Constraint { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND public: diff --git a/src/mc/deps/shared_types/v1_20_50/BlockDescriptor.h b/src/mc/deps/shared_types/v1_20_50/BlockDescriptor.h index f4e9aa0b88..21409502a0 100644 --- a/src/mc/deps/shared_types/v1_20_50/BlockDescriptor.h +++ b/src/mc/deps/shared_types/v1_20_50/BlockDescriptor.h @@ -61,7 +61,7 @@ struct BlockDescriptor { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; @@ -98,13 +98,13 @@ struct BlockDescriptor { public: // constructor thunks // NOLINTBEGIN - MCAPI void* $ctor(::SharedTypes::v1_20_50::BlockDescriptor const&); + MCFOLD void* $ctor(::SharedTypes::v1_20_50::BlockDescriptor const&); // NOLINTEND public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/deps/shared_types/v1_20_50/BlockDescriptorProxy.h b/src/mc/deps/shared_types/v1_20_50/BlockDescriptorProxy.h index d112dcb523..1428a406c5 100644 --- a/src/mc/deps/shared_types/v1_20_50/BlockDescriptorProxy.h +++ b/src/mc/deps/shared_types/v1_20_50/BlockDescriptorProxy.h @@ -29,13 +29,13 @@ struct BlockDescriptorProxy { public: // constructor thunks // NOLINTBEGIN - MCAPI void* $ctor(::SharedTypes::v1_20_50::BlockDescriptorSerializer::BlockDescriptorProxy const&); + MCFOLD void* $ctor(::SharedTypes::v1_20_50::BlockDescriptorSerializer::BlockDescriptorProxy const&); // NOLINTEND public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/deps/shared_types/v1_20_50/BlockDescriptorProxyConstraint.h b/src/mc/deps/shared_types/v1_20_50/BlockDescriptorProxyConstraint.h index 3e178f14c0..e5e86cbc2c 100644 --- a/src/mc/deps/shared_types/v1_20_50/BlockDescriptorProxyConstraint.h +++ b/src/mc/deps/shared_types/v1_20_50/BlockDescriptorProxyConstraint.h @@ -39,7 +39,7 @@ class BlockDescriptorProxyConstraint : public ::cereal::Constraint { // NOLINTBEGIN MCAPI void $doValidate(::entt::meta_any const& any, ::cereal::SerializerContext& context) const; - MCAPI ::cereal::internal::ConstraintDescription $description() const; + MCFOLD ::cereal::internal::ConstraintDescription $description() const; // NOLINTEND public: diff --git a/src/mc/deps/shared_types/v1_20_50/CooldownItemComponent.h b/src/mc/deps/shared_types/v1_20_50/CooldownItemComponent.h index 63ff2a1e9b..2e9e32aa8e 100644 --- a/src/mc/deps/shared_types/v1_20_50/CooldownItemComponent.h +++ b/src/mc/deps/shared_types/v1_20_50/CooldownItemComponent.h @@ -25,7 +25,7 @@ struct CooldownItemComponent { public: // member functions // NOLINTBEGIN - MCAPI ::SharedTypes::v1_20_50::CooldownItemComponent& operator=(::SharedTypes::v1_20_50::CooldownItemComponent&&); + MCFOLD ::SharedTypes::v1_20_50::CooldownItemComponent& operator=(::SharedTypes::v1_20_50::CooldownItemComponent&&); MCAPI ::SharedTypes::v1_20_50::CooldownItemComponent& operator=(::SharedTypes::v1_20_50::CooldownItemComponent const&); @@ -42,7 +42,7 @@ struct CooldownItemComponent { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/deps/shared_types/v1_20_50/DisplayNameItemComponent.h b/src/mc/deps/shared_types/v1_20_50/DisplayNameItemComponent.h index 3c27d7bd01..a904d6c741 100644 --- a/src/mc/deps/shared_types/v1_20_50/DisplayNameItemComponent.h +++ b/src/mc/deps/shared_types/v1_20_50/DisplayNameItemComponent.h @@ -24,10 +24,10 @@ struct DisplayNameItemComponent { public: // member functions // NOLINTBEGIN - MCAPI ::SharedTypes::v1_20_50::DisplayNameItemComponent& + MCFOLD ::SharedTypes::v1_20_50::DisplayNameItemComponent& operator=(::SharedTypes::v1_20_50::DisplayNameItemComponent&&); - MCAPI ::SharedTypes::v1_20_50::DisplayNameItemComponent& + MCFOLD ::SharedTypes::v1_20_50::DisplayNameItemComponent& operator=(::SharedTypes::v1_20_50::DisplayNameItemComponent const&); // NOLINTEND diff --git a/src/mc/deps/shared_types/v1_20_50/EnchantSlotConstraint.h b/src/mc/deps/shared_types/v1_20_50/EnchantSlotConstraint.h index 12a1546067..cd6f077704 100644 --- a/src/mc/deps/shared_types/v1_20_50/EnchantSlotConstraint.h +++ b/src/mc/deps/shared_types/v1_20_50/EnchantSlotConstraint.h @@ -38,7 +38,7 @@ class EnchantSlotConstraint : public ::cereal::Constraint { // NOLINTBEGIN MCAPI void $doValidate(::entt::meta_any const& any, ::cereal::SerializerContext& context) const; - MCAPI ::cereal::internal::ConstraintDescription $description() const; + MCFOLD ::cereal::internal::ConstraintDescription $description() const; // NOLINTEND public: diff --git a/src/mc/deps/shared_types/v1_20_50/FoodItemComponent.h b/src/mc/deps/shared_types/v1_20_50/FoodItemComponent.h index d8f577834d..99682beff3 100644 --- a/src/mc/deps/shared_types/v1_20_50/FoodItemComponent.h +++ b/src/mc/deps/shared_types/v1_20_50/FoodItemComponent.h @@ -42,7 +42,7 @@ struct FoodItemComponent { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/deps/shared_types/v1_20_50/HoverTextColorItemComponent.h b/src/mc/deps/shared_types/v1_20_50/HoverTextColorItemComponent.h index 44d13e9bdb..bbd29ad057 100644 --- a/src/mc/deps/shared_types/v1_20_50/HoverTextColorItemComponent.h +++ b/src/mc/deps/shared_types/v1_20_50/HoverTextColorItemComponent.h @@ -24,10 +24,10 @@ struct HoverTextColorItemComponent { public: // member functions // NOLINTBEGIN - MCAPI ::SharedTypes::v1_20_50::HoverTextColorItemComponent& + MCFOLD ::SharedTypes::v1_20_50::HoverTextColorItemComponent& operator=(::SharedTypes::v1_20_50::HoverTextColorItemComponent&&); - MCAPI ::SharedTypes::v1_20_50::HoverTextColorItemComponent& + MCFOLD ::SharedTypes::v1_20_50::HoverTextColorItemComponent& operator=(::SharedTypes::v1_20_50::HoverTextColorItemComponent const&); MCAPI ~HoverTextColorItemComponent(); @@ -42,7 +42,7 @@ struct HoverTextColorItemComponent { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/deps/shared_types/v1_20_50/IconItemComponent.h b/src/mc/deps/shared_types/v1_20_50/IconItemComponent.h index 1fc90c4094..07bfd59968 100644 --- a/src/mc/deps/shared_types/v1_20_50/IconItemComponent.h +++ b/src/mc/deps/shared_types/v1_20_50/IconItemComponent.h @@ -24,9 +24,9 @@ struct IconItemComponent { public: // member functions // NOLINTBEGIN - MCAPI ::SharedTypes::v1_20_50::IconItemComponent& operator=(::SharedTypes::v1_20_50::IconItemComponent&&); + MCFOLD ::SharedTypes::v1_20_50::IconItemComponent& operator=(::SharedTypes::v1_20_50::IconItemComponent&&); - MCAPI ::SharedTypes::v1_20_50::IconItemComponent& operator=(::SharedTypes::v1_20_50::IconItemComponent const&); + MCFOLD ::SharedTypes::v1_20_50::IconItemComponent& operator=(::SharedTypes::v1_20_50::IconItemComponent const&); // NOLINTEND public: diff --git a/src/mc/deps/shared_types/v1_20_50/InteractButtonItemComponent.h b/src/mc/deps/shared_types/v1_20_50/InteractButtonItemComponent.h index a184582302..2f4495af0d 100644 --- a/src/mc/deps/shared_types/v1_20_50/InteractButtonItemComponent.h +++ b/src/mc/deps/shared_types/v1_20_50/InteractButtonItemComponent.h @@ -20,10 +20,10 @@ struct InteractButtonItemComponent { public: // member functions // NOLINTBEGIN - MCAPI ::SharedTypes::v1_20_50::InteractButtonItemComponent& + MCFOLD ::SharedTypes::v1_20_50::InteractButtonItemComponent& operator=(::SharedTypes::v1_20_50::InteractButtonItemComponent const&); - MCAPI ::SharedTypes::v1_20_50::InteractButtonItemComponent& + MCFOLD ::SharedTypes::v1_20_50::InteractButtonItemComponent& operator=(::SharedTypes::v1_20_50::InteractButtonItemComponent&&); // NOLINTEND }; diff --git a/src/mc/deps/shared_types/v1_20_50/PlanterItemComponent.h b/src/mc/deps/shared_types/v1_20_50/PlanterItemComponent.h index 778a9055b2..2c0c22b7e0 100644 --- a/src/mc/deps/shared_types/v1_20_50/PlanterItemComponent.h +++ b/src/mc/deps/shared_types/v1_20_50/PlanterItemComponent.h @@ -42,7 +42,7 @@ struct PlanterItemComponent { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/deps/shared_types/v1_20_50/ProjectileItemComponent.h b/src/mc/deps/shared_types/v1_20_50/ProjectileItemComponent.h index cd39b7dc2b..5eb77e22ab 100644 --- a/src/mc/deps/shared_types/v1_20_50/ProjectileItemComponent.h +++ b/src/mc/deps/shared_types/v1_20_50/ProjectileItemComponent.h @@ -25,10 +25,10 @@ struct ProjectileItemComponent { public: // member functions // NOLINTBEGIN - MCAPI ::SharedTypes::v1_20_50::ProjectileItemComponent& + MCFOLD ::SharedTypes::v1_20_50::ProjectileItemComponent& operator=(::SharedTypes::v1_20_50::ProjectileItemComponent&&); - MCAPI ::SharedTypes::v1_20_50::ProjectileItemComponent& + MCFOLD ::SharedTypes::v1_20_50::ProjectileItemComponent& operator=(::SharedTypes::v1_20_50::ProjectileItemComponent const&); MCAPI ~ProjectileItemComponent(); @@ -43,7 +43,7 @@ struct ProjectileItemComponent { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/deps/shared_types/v1_20_50/TagsItemComponent.h b/src/mc/deps/shared_types/v1_20_50/TagsItemComponent.h index 5db2142307..eb708f7d4b 100644 --- a/src/mc/deps/shared_types/v1_20_50/TagsItemComponent.h +++ b/src/mc/deps/shared_types/v1_20_50/TagsItemComponent.h @@ -40,13 +40,13 @@ struct TagsItemComponent { public: // constructor thunks // NOLINTBEGIN - MCAPI void* $ctor(::SharedTypes::v1_20_50::TagsItemComponent const&); + MCFOLD void* $ctor(::SharedTypes::v1_20_50::TagsItemComponent const&); // NOLINTEND public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/deps/shared_types/v1_20_60/BiomeJsonDocument.h b/src/mc/deps/shared_types/v1_20_60/BiomeJsonDocument.h index 5ca6c18101..2d3ba643a3 100644 --- a/src/mc/deps/shared_types/v1_20_60/BiomeJsonDocument.h +++ b/src/mc/deps/shared_types/v1_20_60/BiomeJsonDocument.h @@ -41,10 +41,10 @@ struct BiomeJsonDocument { public: // member functions // NOLINTBEGIN - MCAPI ::SharedTypes::v1_20_60::BiomeJsonDocument::BiomeJsonObject::BiomeDescription& + MCFOLD ::SharedTypes::v1_20_60::BiomeJsonDocument::BiomeJsonObject::BiomeDescription& operator=(::SharedTypes::v1_20_60::BiomeJsonDocument::BiomeJsonObject::BiomeDescription const&); - MCAPI ::SharedTypes::v1_20_60::BiomeJsonDocument::BiomeJsonObject::BiomeDescription& + MCFOLD ::SharedTypes::v1_20_60::BiomeJsonDocument::BiomeJsonObject::BiomeDescription& operator=(::SharedTypes::v1_20_60::BiomeJsonDocument::BiomeJsonObject::BiomeDescription&&); MCAPI ~BiomeDescription(); @@ -59,7 +59,7 @@ struct BiomeJsonDocument { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; @@ -79,7 +79,7 @@ struct BiomeJsonDocument { // NOLINTBEGIN MCAPI ComponentMap(::SharedTypes::v1_20_60::BiomeJsonDocument::BiomeJsonObject::ComponentMap const&); - MCAPI ::SharedTypes::v1_20_60::BiomeJsonDocument::BiomeJsonObject::ComponentMap& + MCFOLD ::SharedTypes::v1_20_60::BiomeJsonDocument::BiomeJsonObject::ComponentMap& operator=(::SharedTypes::v1_20_60::BiomeJsonDocument::BiomeJsonObject::ComponentMap const&); MCAPI ::SharedTypes::v1_20_60::BiomeJsonDocument::BiomeJsonObject::ComponentMap& diff --git a/src/mc/deps/shared_types/v1_20_60/BlockCulling.h b/src/mc/deps/shared_types/v1_20_60/BlockCulling.h index d7dc89c954..69e4062bf4 100644 --- a/src/mc/deps/shared_types/v1_20_60/BlockCulling.h +++ b/src/mc/deps/shared_types/v1_20_60/BlockCulling.h @@ -41,10 +41,10 @@ struct BlockCulling { public: // member functions // NOLINTBEGIN - MCAPI ::SharedTypes::v1_20_60::BlockCulling::Contents::Description& + MCFOLD ::SharedTypes::v1_20_60::BlockCulling::Contents::Description& operator=(::SharedTypes::v1_20_60::BlockCulling::Contents::Description&&); - MCAPI ::SharedTypes::v1_20_60::BlockCulling::Contents::Description& + MCFOLD ::SharedTypes::v1_20_60::BlockCulling::Contents::Description& operator=(::SharedTypes::v1_20_60::BlockCulling::Contents::Description const&); MCAPI ~Description(); @@ -53,7 +53,7 @@ struct BlockCulling { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/deps/shared_types/v1_20_60/FrozenOceanSurfaceBiomeJsonComponent.h b/src/mc/deps/shared_types/v1_20_60/FrozenOceanSurfaceBiomeJsonComponent.h index 18db06d101..9d67bf9c78 100644 --- a/src/mc/deps/shared_types/v1_20_60/FrozenOceanSurfaceBiomeJsonComponent.h +++ b/src/mc/deps/shared_types/v1_20_60/FrozenOceanSurfaceBiomeJsonComponent.h @@ -42,7 +42,7 @@ struct FrozenOceanSurfaceBiomeJsonComponent : public ::SharedTypes::v1_20_60::IB MCAPI FrozenOceanSurfaceBiomeJsonComponent(::SharedTypes::v1_20_60::FrozenOceanSurfaceBiomeJsonComponent const&); - MCAPI ::SharedTypes::v1_20_60::FrozenOceanSurfaceBiomeJsonComponent& + MCFOLD ::SharedTypes::v1_20_60::FrozenOceanSurfaceBiomeJsonComponent& operator=(::SharedTypes::v1_20_60::FrozenOceanSurfaceBiomeJsonComponent&&); // NOLINTEND @@ -63,9 +63,9 @@ struct FrozenOceanSurfaceBiomeJsonComponent : public ::SharedTypes::v1_20_60::IB public: // constructor thunks // NOLINTBEGIN - MCAPI void* $ctor(); + MCFOLD void* $ctor(); - MCAPI void* $ctor(::SharedTypes::v1_20_60::FrozenOceanSurfaceBiomeJsonComponent const&); + MCFOLD void* $ctor(::SharedTypes::v1_20_60::FrozenOceanSurfaceBiomeJsonComponent const&); // NOLINTEND public: diff --git a/src/mc/deps/shared_types/v1_20_60/IconItemComponent.h b/src/mc/deps/shared_types/v1_20_60/IconItemComponent.h index 8403c4c5eb..32684323c4 100644 --- a/src/mc/deps/shared_types/v1_20_60/IconItemComponent.h +++ b/src/mc/deps/shared_types/v1_20_60/IconItemComponent.h @@ -51,7 +51,7 @@ struct IconItemComponent { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/deps/shared_types/v1_20_60/MountainParametersBiomeJsonComponent.h b/src/mc/deps/shared_types/v1_20_60/MountainParametersBiomeJsonComponent.h index c408fd6999..574beaf3db 100644 --- a/src/mc/deps/shared_types/v1_20_60/MountainParametersBiomeJsonComponent.h +++ b/src/mc/deps/shared_types/v1_20_60/MountainParametersBiomeJsonComponent.h @@ -49,7 +49,7 @@ struct MountainParametersBiomeJsonComponent : public ::SharedTypes::v1_20_60::IB public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/deps/shared_types/v1_20_60/OverworldGenerationRulesBiomeJsonComponent.h b/src/mc/deps/shared_types/v1_20_60/OverworldGenerationRulesBiomeJsonComponent.h index 71705104e9..376f21bbeb 100644 --- a/src/mc/deps/shared_types/v1_20_60/OverworldGenerationRulesBiomeJsonComponent.h +++ b/src/mc/deps/shared_types/v1_20_60/OverworldGenerationRulesBiomeJsonComponent.h @@ -38,10 +38,10 @@ struct OverworldGenerationRulesBiomeJsonComponent : public ::SharedTypes::v1_20_ public: // member functions // NOLINTBEGIN - MCAPI ::SharedTypes::v1_20_60::OverworldGenerationRulesBiomeJsonComponent::WeightedBiomeName& + MCFOLD ::SharedTypes::v1_20_60::OverworldGenerationRulesBiomeJsonComponent::WeightedBiomeName& operator=(::SharedTypes::v1_20_60::OverworldGenerationRulesBiomeJsonComponent::WeightedBiomeName&&); - MCAPI ::SharedTypes::v1_20_60::OverworldGenerationRulesBiomeJsonComponent::WeightedBiomeName& + MCFOLD ::SharedTypes::v1_20_60::OverworldGenerationRulesBiomeJsonComponent::WeightedBiomeName& operator=(::SharedTypes::v1_20_60::OverworldGenerationRulesBiomeJsonComponent::WeightedBiomeName const&); MCAPI ~WeightedBiomeName(); diff --git a/src/mc/deps/shared_types/v1_20_60/SurfaceParametersBiomeJsonComponent.h b/src/mc/deps/shared_types/v1_20_60/SurfaceParametersBiomeJsonComponent.h index 68aa27a6b6..d3e2d6147e 100644 --- a/src/mc/deps/shared_types/v1_20_60/SurfaceParametersBiomeJsonComponent.h +++ b/src/mc/deps/shared_types/v1_20_60/SurfaceParametersBiomeJsonComponent.h @@ -42,7 +42,7 @@ struct SurfaceParametersBiomeJsonComponent : public ::SharedTypes::v1_20_60::IBi MCAPI SurfaceParametersBiomeJsonComponent(::SharedTypes::v1_20_60::SurfaceParametersBiomeJsonComponent const&); - MCAPI ::SharedTypes::v1_20_60::SurfaceParametersBiomeJsonComponent& + MCFOLD ::SharedTypes::v1_20_60::SurfaceParametersBiomeJsonComponent& operator=(::SharedTypes::v1_20_60::SurfaceParametersBiomeJsonComponent&&); // NOLINTEND @@ -63,9 +63,9 @@ struct SurfaceParametersBiomeJsonComponent : public ::SharedTypes::v1_20_60::IBi public: // constructor thunks // NOLINTBEGIN - MCAPI void* $ctor(); + MCFOLD void* $ctor(); - MCAPI void* $ctor(::SharedTypes::v1_20_60::SurfaceParametersBiomeJsonComponent const&); + MCFOLD void* $ctor(::SharedTypes::v1_20_60::SurfaceParametersBiomeJsonComponent const&); // NOLINTEND public: diff --git a/src/mc/deps/shared_types/v1_20_60/SwampSurfaceBiomeJsonComponent.h b/src/mc/deps/shared_types/v1_20_60/SwampSurfaceBiomeJsonComponent.h index 0f43bf55a5..207f082f27 100644 --- a/src/mc/deps/shared_types/v1_20_60/SwampSurfaceBiomeJsonComponent.h +++ b/src/mc/deps/shared_types/v1_20_60/SwampSurfaceBiomeJsonComponent.h @@ -42,7 +42,7 @@ struct SwampSurfaceBiomeJsonComponent : public ::SharedTypes::v1_20_60::IBiomeJs MCAPI SwampSurfaceBiomeJsonComponent(::SharedTypes::v1_20_60::SwampSurfaceBiomeJsonComponent const&); - MCAPI ::SharedTypes::v1_20_60::SwampSurfaceBiomeJsonComponent& + MCFOLD ::SharedTypes::v1_20_60::SwampSurfaceBiomeJsonComponent& operator=(::SharedTypes::v1_20_60::SwampSurfaceBiomeJsonComponent&&); // NOLINTEND @@ -63,9 +63,9 @@ struct SwampSurfaceBiomeJsonComponent : public ::SharedTypes::v1_20_60::IBiomeJs public: // constructor thunks // NOLINTBEGIN - MCAPI void* $ctor(); + MCFOLD void* $ctor(); - MCAPI void* $ctor(::SharedTypes::v1_20_60::SwampSurfaceBiomeJsonComponent const&); + MCFOLD void* $ctor(::SharedTypes::v1_20_60::SwampSurfaceBiomeJsonComponent const&); // NOLINTEND public: diff --git a/src/mc/deps/shared_types/v1_20_80/CustomComponentsItemComponent.h b/src/mc/deps/shared_types/v1_20_80/CustomComponentsItemComponent.h index f6a4ec7080..638a3732b2 100644 --- a/src/mc/deps/shared_types/v1_20_80/CustomComponentsItemComponent.h +++ b/src/mc/deps/shared_types/v1_20_80/CustomComponentsItemComponent.h @@ -37,7 +37,7 @@ struct CustomComponentsItemComponent { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/deps/shared_types/v1_21_10/DamageAbsorptionItemComponent.h b/src/mc/deps/shared_types/v1_21_10/DamageAbsorptionItemComponent.h index ce7bdd9821..370a1b8ab0 100644 --- a/src/mc/deps/shared_types/v1_21_10/DamageAbsorptionItemComponent.h +++ b/src/mc/deps/shared_types/v1_21_10/DamageAbsorptionItemComponent.h @@ -37,7 +37,7 @@ struct DamageAbsorptionItemComponent { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/deps/shared_types/v1_21_10/DurabilitySensorItemComponent.h b/src/mc/deps/shared_types/v1_21_10/DurabilitySensorItemComponent.h index adc9eb6e5e..17585a0890 100644 --- a/src/mc/deps/shared_types/v1_21_10/DurabilitySensorItemComponent.h +++ b/src/mc/deps/shared_types/v1_21_10/DurabilitySensorItemComponent.h @@ -37,7 +37,7 @@ struct DurabilitySensorItemComponent { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/deps/shared_types/v1_21_20/AutomaticFeatureRuleDescription.h b/src/mc/deps/shared_types/v1_21_20/AutomaticFeatureRuleDescription.h index 20cd7815d9..42eb9074d7 100644 --- a/src/mc/deps/shared_types/v1_21_20/AutomaticFeatureRuleDescription.h +++ b/src/mc/deps/shared_types/v1_21_20/AutomaticFeatureRuleDescription.h @@ -25,10 +25,10 @@ struct AutomaticFeatureRuleDescription { public: // member functions // NOLINTBEGIN - MCAPI ::SharedTypes::v1_21_20::AutomaticFeatureRuleDescription& + MCFOLD ::SharedTypes::v1_21_20::AutomaticFeatureRuleDescription& operator=(::SharedTypes::v1_21_20::AutomaticFeatureRuleDescription const&); - MCAPI ::SharedTypes::v1_21_20::AutomaticFeatureRuleDescription& + MCFOLD ::SharedTypes::v1_21_20::AutomaticFeatureRuleDescription& operator=(::SharedTypes::v1_21_20::AutomaticFeatureRuleDescription&&); MCAPI ~AutomaticFeatureRuleDescription(); @@ -43,7 +43,7 @@ struct AutomaticFeatureRuleDescription { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/deps/shared_types/v1_21_20/structure/AppendLoot.h b/src/mc/deps/shared_types/v1_21_20/structure/AppendLoot.h index 429e473d8d..dfa81135fc 100644 --- a/src/mc/deps/shared_types/v1_21_20/structure/AppendLoot.h +++ b/src/mc/deps/shared_types/v1_21_20/structure/AppendLoot.h @@ -20,10 +20,10 @@ struct AppendLoot { public: // member functions // NOLINTBEGIN - MCAPI ::SharedTypes::v1_21_20::JigsawStructure::ProcessorRule::AppendLoot& + MCFOLD ::SharedTypes::v1_21_20::JigsawStructure::ProcessorRule::AppendLoot& operator=(::SharedTypes::v1_21_20::JigsawStructure::ProcessorRule::AppendLoot&&); - MCAPI ::SharedTypes::v1_21_20::JigsawStructure::ProcessorRule::AppendLoot& + MCFOLD ::SharedTypes::v1_21_20::JigsawStructure::ProcessorRule::AppendLoot& operator=(::SharedTypes::v1_21_20::JigsawStructure::ProcessorRule::AppendLoot const&); MCAPI ~AppendLoot(); @@ -32,7 +32,7 @@ struct AppendLoot { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/deps/shared_types/v1_21_20/structure/BlockIgnore.h b/src/mc/deps/shared_types/v1_21_20/structure/BlockIgnore.h index db07815578..830f3a6cc2 100644 --- a/src/mc/deps/shared_types/v1_21_20/structure/BlockIgnore.h +++ b/src/mc/deps/shared_types/v1_21_20/structure/BlockIgnore.h @@ -37,7 +37,7 @@ struct BlockIgnore { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/deps/shared_types/v1_21_20/structure/BlockMatch.h b/src/mc/deps/shared_types/v1_21_20/structure/BlockMatch.h index 59f154e262..5c21ef4d87 100644 --- a/src/mc/deps/shared_types/v1_21_20/structure/BlockMatch.h +++ b/src/mc/deps/shared_types/v1_21_20/structure/BlockMatch.h @@ -20,10 +20,10 @@ struct BlockMatch { public: // member functions // NOLINTBEGIN - MCAPI ::SharedTypes::v1_21_20::JigsawStructure::ProcessorRule::BlockMatch& + MCFOLD ::SharedTypes::v1_21_20::JigsawStructure::ProcessorRule::BlockMatch& operator=(::SharedTypes::v1_21_20::JigsawStructure::ProcessorRule::BlockMatch const&); - MCAPI ::SharedTypes::v1_21_20::JigsawStructure::ProcessorRule::BlockMatch& + MCFOLD ::SharedTypes::v1_21_20::JigsawStructure::ProcessorRule::BlockMatch& operator=(::SharedTypes::v1_21_20::JigsawStructure::ProcessorRule::BlockMatch&&); MCAPI ~BlockMatch(); @@ -32,7 +32,7 @@ struct BlockMatch { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/deps/shared_types/v1_21_20/structure/ProtectedBlock.h b/src/mc/deps/shared_types/v1_21_20/structure/ProtectedBlock.h index 5cc8272468..1fb28eb86d 100644 --- a/src/mc/deps/shared_types/v1_21_20/structure/ProtectedBlock.h +++ b/src/mc/deps/shared_types/v1_21_20/structure/ProtectedBlock.h @@ -20,10 +20,10 @@ struct ProtectedBlock { public: // member functions // NOLINTBEGIN - MCAPI ::SharedTypes::v1_21_20::JigsawStructure::Processors::ProtectedBlock& + MCFOLD ::SharedTypes::v1_21_20::JigsawStructure::Processors::ProtectedBlock& operator=(::SharedTypes::v1_21_20::JigsawStructure::Processors::ProtectedBlock&&); - MCAPI ::SharedTypes::v1_21_20::JigsawStructure::Processors::ProtectedBlock& + MCFOLD ::SharedTypes::v1_21_20::JigsawStructure::Processors::ProtectedBlock& operator=(::SharedTypes::v1_21_20::JigsawStructure::Processors::ProtectedBlock const&); MCAPI ~ProtectedBlock(); @@ -32,7 +32,7 @@ struct ProtectedBlock { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/deps/shared_types/v1_21_20/structure/RandomBlockMatch.h b/src/mc/deps/shared_types/v1_21_20/structure/RandomBlockMatch.h index 42d0d75392..860264660b 100644 --- a/src/mc/deps/shared_types/v1_21_20/structure/RandomBlockMatch.h +++ b/src/mc/deps/shared_types/v1_21_20/structure/RandomBlockMatch.h @@ -33,7 +33,7 @@ struct RandomBlockMatch { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/deps/shared_types/v1_21_20/structure/TagMatch.h b/src/mc/deps/shared_types/v1_21_20/structure/TagMatch.h index 1bc7d511eb..6fa439b64a 100644 --- a/src/mc/deps/shared_types/v1_21_20/structure/TagMatch.h +++ b/src/mc/deps/shared_types/v1_21_20/structure/TagMatch.h @@ -20,10 +20,10 @@ struct TagMatch { public: // member functions // NOLINTBEGIN - MCAPI ::SharedTypes::v1_21_20::JigsawStructure::ProcessorRule::TagMatch& + MCFOLD ::SharedTypes::v1_21_20::JigsawStructure::ProcessorRule::TagMatch& operator=(::SharedTypes::v1_21_20::JigsawStructure::ProcessorRule::TagMatch&&); - MCAPI ::SharedTypes::v1_21_20::JigsawStructure::ProcessorRule::TagMatch& + MCFOLD ::SharedTypes::v1_21_20::JigsawStructure::ProcessorRule::TagMatch& operator=(::SharedTypes::v1_21_20::JigsawStructure::ProcessorRule::TagMatch const&); MCAPI ~TagMatch(); @@ -32,7 +32,7 @@ struct TagMatch { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/deps/shared_types/v1_21_20/structure/definition/Description.h b/src/mc/deps/shared_types/v1_21_20/structure/definition/Description.h index 94983d298b..60f85461e7 100644 --- a/src/mc/deps/shared_types/v1_21_20/structure/definition/Description.h +++ b/src/mc/deps/shared_types/v1_21_20/structure/definition/Description.h @@ -19,10 +19,10 @@ struct Description { public: // member functions // NOLINTBEGIN - MCAPI ::SharedTypes::v1_21_20::JigsawStructureDefinition::Description& + MCFOLD ::SharedTypes::v1_21_20::JigsawStructureDefinition::Description& operator=(::SharedTypes::v1_21_20::JigsawStructureDefinition::Description const&); - MCAPI ::SharedTypes::v1_21_20::JigsawStructureDefinition::Description& + MCFOLD ::SharedTypes::v1_21_20::JigsawStructureDefinition::Description& operator=(::SharedTypes::v1_21_20::JigsawStructureDefinition::Description&&); MCAPI ~Description(); @@ -31,7 +31,7 @@ struct Description { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/deps/shared_types/v1_21_20/structure/processor_list/Description.h b/src/mc/deps/shared_types/v1_21_20/structure/processor_list/Description.h index 4e7ae6f053..3a5f98494d 100644 --- a/src/mc/deps/shared_types/v1_21_20/structure/processor_list/Description.h +++ b/src/mc/deps/shared_types/v1_21_20/structure/processor_list/Description.h @@ -19,10 +19,10 @@ struct Description { public: // member functions // NOLINTBEGIN - MCAPI ::SharedTypes::v1_21_20::JigsawStructureProcessorList::Description& + MCFOLD ::SharedTypes::v1_21_20::JigsawStructureProcessorList::Description& operator=(::SharedTypes::v1_21_20::JigsawStructureProcessorList::Description const&); - MCAPI ::SharedTypes::v1_21_20::JigsawStructureProcessorList::Description& + MCFOLD ::SharedTypes::v1_21_20::JigsawStructureProcessorList::Description& operator=(::SharedTypes::v1_21_20::JigsawStructureProcessorList::Description&&); MCAPI ~Description(); @@ -31,7 +31,7 @@ struct Description { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/deps/shared_types/v1_21_20/structure/set/Description.h b/src/mc/deps/shared_types/v1_21_20/structure/set/Description.h index f466bb8de7..88ef5f75a4 100644 --- a/src/mc/deps/shared_types/v1_21_20/structure/set/Description.h +++ b/src/mc/deps/shared_types/v1_21_20/structure/set/Description.h @@ -19,10 +19,10 @@ struct Description { public: // member functions // NOLINTBEGIN - MCAPI ::SharedTypes::v1_21_20::JigsawStructureSet::Description& + MCFOLD ::SharedTypes::v1_21_20::JigsawStructureSet::Description& operator=(::SharedTypes::v1_21_20::JigsawStructureSet::Description const&); - MCAPI ::SharedTypes::v1_21_20::JigsawStructureSet::Description& + MCFOLD ::SharedTypes::v1_21_20::JigsawStructureSet::Description& operator=(::SharedTypes::v1_21_20::JigsawStructureSet::Description&&); MCAPI ~Description(); @@ -31,7 +31,7 @@ struct Description { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/deps/shared_types/v1_21_20/structure/set/Structure.h b/src/mc/deps/shared_types/v1_21_20/structure/set/Structure.h index ebd67cb91d..d1eec8b34a 100644 --- a/src/mc/deps/shared_types/v1_21_20/structure/set/Structure.h +++ b/src/mc/deps/shared_types/v1_21_20/structure/set/Structure.h @@ -20,7 +20,7 @@ struct Structure { public: // member functions // NOLINTBEGIN - MCAPI ::SharedTypes::v1_21_20::JigsawStructureSet::Structure& + MCFOLD ::SharedTypes::v1_21_20::JigsawStructureSet::Structure& operator=(::SharedTypes::v1_21_20::JigsawStructureSet::Structure&&); MCAPI ::SharedTypes::v1_21_20::JigsawStructureSet::Structure& diff --git a/src/mc/deps/shared_types/v1_21_20/structure/template_pool/Description.h b/src/mc/deps/shared_types/v1_21_20/structure/template_pool/Description.h index bccc57901d..e9c39812f6 100644 --- a/src/mc/deps/shared_types/v1_21_20/structure/template_pool/Description.h +++ b/src/mc/deps/shared_types/v1_21_20/structure/template_pool/Description.h @@ -19,10 +19,10 @@ struct Description { public: // member functions // NOLINTBEGIN - MCAPI ::SharedTypes::v1_21_20::JigsawStructureTemplatePool::Description& + MCFOLD ::SharedTypes::v1_21_20::JigsawStructureTemplatePool::Description& operator=(::SharedTypes::v1_21_20::JigsawStructureTemplatePool::Description const&); - MCAPI ::SharedTypes::v1_21_20::JigsawStructureTemplatePool::Description& + MCFOLD ::SharedTypes::v1_21_20::JigsawStructureTemplatePool::Description& operator=(::SharedTypes::v1_21_20::JigsawStructureTemplatePool::Description&&); MCAPI ~Description(); @@ -31,7 +31,7 @@ struct Description { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/deps/shared_types/v1_21_30/QuantityConstraint.h b/src/mc/deps/shared_types/v1_21_30/QuantityConstraint.h index beb4d70d2e..444c93feef 100644 --- a/src/mc/deps/shared_types/v1_21_30/QuantityConstraint.h +++ b/src/mc/deps/shared_types/v1_21_30/QuantityConstraint.h @@ -38,7 +38,7 @@ struct QuantityConstraint : public ::cereal::Constraint { // NOLINTBEGIN MCAPI void $doValidate(::entt::meta_any const& any, ::cereal::SerializerContext& context) const; - MCAPI ::cereal::internal::ConstraintDescription $description() const; + MCFOLD ::cereal::internal::ConstraintDescription $description() const; // NOLINTEND public: diff --git a/src/mc/deps/shared_types/v1_21_30/RarityItemComponent.h b/src/mc/deps/shared_types/v1_21_30/RarityItemComponent.h index fcf17a44b1..3978c63c99 100644 --- a/src/mc/deps/shared_types/v1_21_30/RarityItemComponent.h +++ b/src/mc/deps/shared_types/v1_21_30/RarityItemComponent.h @@ -24,9 +24,9 @@ struct RarityItemComponent { public: // member functions // NOLINTBEGIN - MCAPI ::SharedTypes::v1_21_30::RarityItemComponent& operator=(::SharedTypes::v1_21_30::RarityItemComponent const&); + MCFOLD ::SharedTypes::v1_21_30::RarityItemComponent& operator=(::SharedTypes::v1_21_30::RarityItemComponent const&); - MCAPI ::SharedTypes::v1_21_30::RarityItemComponent& operator=(::SharedTypes::v1_21_30::RarityItemComponent&&); + MCFOLD ::SharedTypes::v1_21_30::RarityItemComponent& operator=(::SharedTypes::v1_21_30::RarityItemComponent&&); // NOLINTEND public: diff --git a/src/mc/deps/shared_types/v1_21_40/PlanterItemComponent.h b/src/mc/deps/shared_types/v1_21_40/PlanterItemComponent.h index 98b0805456..05e76e4327 100644 --- a/src/mc/deps/shared_types/v1_21_40/PlanterItemComponent.h +++ b/src/mc/deps/shared_types/v1_21_40/PlanterItemComponent.h @@ -49,7 +49,7 @@ struct PlanterItemComponent { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/deps/shared_types/v1_21_50/CameraPresetAimAssistDefinition.h b/src/mc/deps/shared_types/v1_21_50/CameraPresetAimAssistDefinition.h index d12643d677..cfa25687b6 100644 --- a/src/mc/deps/shared_types/v1_21_50/CameraPresetAimAssistDefinition.h +++ b/src/mc/deps/shared_types/v1_21_50/CameraPresetAimAssistDefinition.h @@ -65,7 +65,7 @@ struct CameraPresetAimAssistDefinition { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/deps/shared_types/v1_21_50/JigsawBlockMetadata.h b/src/mc/deps/shared_types/v1_21_50/JigsawBlockMetadata.h index b45d88ca0c..d22ca34628 100644 --- a/src/mc/deps/shared_types/v1_21_50/JigsawBlockMetadata.h +++ b/src/mc/deps/shared_types/v1_21_50/JigsawBlockMetadata.h @@ -58,7 +58,7 @@ class JigsawBlockMetadata { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/deps/vanilla_components/MovementAbilitiesComponent.h b/src/mc/deps/vanilla_components/MovementAbilitiesComponent.h index 837fa99632..24b3f0c2f0 100644 --- a/src/mc/deps/vanilla_components/MovementAbilitiesComponent.h +++ b/src/mc/deps/vanilla_components/MovementAbilitiesComponent.h @@ -25,7 +25,7 @@ struct MovementAbilitiesComponent { // NOLINTBEGIN MCAPI bool getBool(::MovementAbilities ability) const; - MCAPI float getFlySpeed() const; + MCFOLD float getFlySpeed() const; MCAPI void setBool(::MovementAbilities ability, bool value); diff --git a/src/mc/deps/vanilla_components/MovementAttributesComponent.h b/src/mc/deps/vanilla_components/MovementAttributesComponent.h index 4c8ef95856..4dbb306442 100644 --- a/src/mc/deps/vanilla_components/MovementAttributesComponent.h +++ b/src/mc/deps/vanilla_components/MovementAttributesComponent.h @@ -33,6 +33,6 @@ struct MovementAttributesComponent { MCAPI float getMovementSpeed() const; - MCAPI float getUnderwaterMovementSpeed() const; + MCFOLD float getUnderwaterMovementSpeed() const; // NOLINTEND }; diff --git a/src/mc/deps/vanilla_components/utilities/CollisionShapes.h b/src/mc/deps/vanilla_components/utilities/CollisionShapes.h index 2ca6f0d8ba..d443bc9e19 100644 --- a/src/mc/deps/vanilla_components/utilities/CollisionShapes.h +++ b/src/mc/deps/vanilla_components/utilities/CollisionShapes.h @@ -60,7 +60,7 @@ struct CollisionShapes { MCAPI void reserve(uint64 size); - MCAPI uint64 size() const; + MCFOLD uint64 size() const; MCAPI ~CollisionShapes(); // NOLINTEND @@ -74,6 +74,6 @@ struct CollisionShapes { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/editor/BlockMaskList.h b/src/mc/editor/BlockMaskList.h index c51e0306c7..07d411fb22 100644 --- a/src/mc/editor/BlockMaskList.h +++ b/src/mc/editor/BlockMaskList.h @@ -37,7 +37,7 @@ class BlockMaskList { MCAPI ::Editor::BlockMask::BlockMaskList& operator=(::Editor::BlockMask::BlockMaskList&&); - MCAPI void setOperationType(::Editor::BlockMask::OperationType operationType); + MCFOLD void setOperationType(::Editor::BlockMask::OperationType operationType); MCAPI ::std::vector<::std::string> toStringList() const; @@ -59,7 +59,7 @@ class BlockMaskList { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/editor/EditorManager.h b/src/mc/editor/EditorManager.h index 3df220260e..ba78534465 100644 --- a/src/mc/editor/EditorManager.h +++ b/src/mc/editor/EditorManager.h @@ -92,13 +92,13 @@ class EditorManager : public ::Editor::IEditorManager, MCAPI void $cleanupOrphanedTemporaryPlaytestWorlds(::ILevelListCache& levelListCache) const; - MCAPI ::Scripting::Result $scriptingTeardown(); + MCFOLD ::Scripting::Result $scriptingTeardown(); - MCAPI ::Scripting::Result $scriptingRebuild(::Scripting::ContextId contextId, bool finalEvent); + MCFOLD ::Scripting::Result $scriptingRebuild(::Scripting::ContextId contextId, bool finalEvent); - MCAPI void $tryClearPlaytestRoundtripInfo(); + MCFOLD void $tryClearPlaytestRoundtripInfo(); - MCAPI ::Editor::ServiceProviderCollection& $getServiceProviders(); + MCFOLD ::Editor::ServiceProviderCollection& $getServiceProviders(); // NOLINTEND public: diff --git a/src/mc/editor/EditorPlayerCommon.h b/src/mc/editor/EditorPlayerCommon.h index b6771c0b65..24f50801ea 100644 --- a/src/mc/editor/EditorPlayerCommon.h +++ b/src/mc/editor/EditorPlayerCommon.h @@ -120,7 +120,7 @@ class EditorPlayerCommon : public ::Editor::IEditorPlayer, MCAPI ::Scripting::Result $quit(); - MCAPI ::Editor::ServiceProviderCollection& $getServiceProviders(); + MCFOLD ::Editor::ServiceProviderCollection& $getServiceProviders(); MCAPI ::Scripting::Result<::Bedrock::PubSub::Subscription, ::Scripting::Error> $registerTickSubscriber(::std::function fnTick); diff --git a/src/mc/editor/GameOptions.h b/src/mc/editor/GameOptions.h index e395bb9194..7d3831fc9b 100644 --- a/src/mc/editor/GameOptions.h +++ b/src/mc/editor/GameOptions.h @@ -74,13 +74,13 @@ class GameOptions { public: // constructor thunks // NOLINTBEGIN - MCAPI void* $ctor(::Editor::GameOptions const&); + MCFOLD void* $ctor(::Editor::GameOptions const&); // NOLINTEND public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/editor/PlayerHelpers.h b/src/mc/editor/PlayerHelpers.h index 2a794a0ac9..21b3f6063e 100644 --- a/src/mc/editor/PlayerHelpers.h +++ b/src/mc/editor/PlayerHelpers.h @@ -22,7 +22,7 @@ class PlayerHelpers { MCAPI static bool canChangeGameType(::Player const& player, ::GameType newGameType); - MCAPI static bool canInteractWithOtherEntitiesInGame(::Player const& player); + MCFOLD static bool canInteractWithOtherEntitiesInGame(::Player const& player); MCAPI static bool canSleep(::Player const& player); @@ -30,7 +30,7 @@ class PlayerHelpers { MCAPI static bool isFireImmune(::Player const& player); - MCAPI static bool isPlayerAudible(::Player const& player); + MCFOLD static bool isPlayerAudible(::Player const& player); // NOLINTEND }; diff --git a/src/mc/editor/block_utils/CommonBlockUtilityService.h b/src/mc/editor/block_utils/CommonBlockUtilityService.h index af90c729fa..bd064c1ebf 100644 --- a/src/mc/editor/block_utils/CommonBlockUtilityService.h +++ b/src/mc/editor/block_utils/CommonBlockUtilityService.h @@ -102,7 +102,7 @@ class CommonBlockUtilityService : public ::Editor::Services::IEditorService, // NOLINTBEGIN MCAPI ::Scripting::Result $init(); - MCAPI ::Scripting::Result $ready(); + MCFOLD ::Scripting::Result $ready(); MCAPI ::Scripting::Result $quit(); diff --git a/src/mc/editor/blocks/BlockPaletteActivePaletteChangedPayload.h b/src/mc/editor/blocks/BlockPaletteActivePaletteChangedPayload.h index 49f52bb7d4..2b152e756a 100644 --- a/src/mc/editor/blocks/BlockPaletteActivePaletteChangedPayload.h +++ b/src/mc/editor/blocks/BlockPaletteActivePaletteChangedPayload.h @@ -55,7 +55,7 @@ class BlockPaletteActivePaletteChangedPayload public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND public: diff --git a/src/mc/editor/blocks/BlockPaletteRemovedPayload.h b/src/mc/editor/blocks/BlockPaletteRemovedPayload.h index b1d3de368c..58dd3b8c55 100644 --- a/src/mc/editor/blocks/BlockPaletteRemovedPayload.h +++ b/src/mc/editor/blocks/BlockPaletteRemovedPayload.h @@ -55,7 +55,7 @@ class BlockPaletteRemovedPayload public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND public: diff --git a/src/mc/editor/blocks/EditorBlockPaletteEventItemUpdated.h b/src/mc/editor/blocks/EditorBlockPaletteEventItemUpdated.h index 05db416ef2..a5e93a62e1 100644 --- a/src/mc/editor/blocks/EditorBlockPaletteEventItemUpdated.h +++ b/src/mc/editor/blocks/EditorBlockPaletteEventItemUpdated.h @@ -28,7 +28,7 @@ struct EditorBlockPaletteEventItemUpdated { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/editor/blocks/EditorBlockPaletteEventPaletteRemoved.h b/src/mc/editor/blocks/EditorBlockPaletteEventPaletteRemoved.h index 2c71bb98e1..b83a1fd97e 100644 --- a/src/mc/editor/blocks/EditorBlockPaletteEventPaletteRemoved.h +++ b/src/mc/editor/blocks/EditorBlockPaletteEventPaletteRemoved.h @@ -26,7 +26,7 @@ struct EditorBlockPaletteEventPaletteRemoved { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/editor/blocks/SimpleBlockPaletteItem.h b/src/mc/editor/blocks/SimpleBlockPaletteItem.h index d79ee09b43..80b1f1edd8 100644 --- a/src/mc/editor/blocks/SimpleBlockPaletteItem.h +++ b/src/mc/editor/blocks/SimpleBlockPaletteItem.h @@ -47,7 +47,7 @@ struct SimpleBlockPaletteItem { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/editor/blocks/WeightedRandomBlock.h b/src/mc/editor/blocks/WeightedRandomBlock.h index 4fd80ed08d..4d6e7c0378 100644 --- a/src/mc/editor/blocks/WeightedRandomBlock.h +++ b/src/mc/editor/blocks/WeightedRandomBlock.h @@ -32,7 +32,7 @@ struct WeightedRandomBlock { MCAPI ::HashedString _getBlock() const; - MCAPI int getWeight() const; + MCFOLD int getWeight() const; // NOLINTEND public: @@ -44,7 +44,7 @@ struct WeightedRandomBlock { public: // constructor thunks // NOLINTBEGIN - MCAPI void* $ctor(::Block const* block, int weight); + MCFOLD void* $ctor(::Block const* block, int weight); // NOLINTEND }; diff --git a/src/mc/editor/cursor/Cursor.h b/src/mc/editor/cursor/Cursor.h index aae548d433..0a1c7b2ee5 100644 --- a/src/mc/editor/cursor/Cursor.h +++ b/src/mc/editor/cursor/Cursor.h @@ -58,7 +58,7 @@ class Cursor { // NOLINTBEGIN MCAPI Cursor(); - MCAPI ::std::optional<::Editor::Cursor::Position>& _getBlockPosition(); + MCFOLD ::std::optional<::Editor::Cursor::Position>& _getBlockPosition(); MCAPI ::Editor::Cursor::AttachmentProperties getAttachmentProperties() const; diff --git a/src/mc/editor/datastore/DeprecatedEventFactory.h b/src/mc/editor/datastore/DeprecatedEventFactory.h index a3ec60a16f..8b612d55ec 100644 --- a/src/mc/editor/datastore/DeprecatedEventFactory.h +++ b/src/mc/editor/datastore/DeprecatedEventFactory.h @@ -40,7 +40,7 @@ class DeprecatedEventFactory { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/editor/datastore/PayloadDescription.h b/src/mc/editor/datastore/PayloadDescription.h index 1549a17676..cd52a556c3 100644 --- a/src/mc/editor/datastore/PayloadDescription.h +++ b/src/mc/editor/datastore/PayloadDescription.h @@ -41,7 +41,7 @@ struct PayloadDescription { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/editor/datastore/PayloadEventDispatcher.h b/src/mc/editor/datastore/PayloadEventDispatcher.h index 48fba09c43..a6f53ba249 100644 --- a/src/mc/editor/datastore/PayloadEventDispatcher.h +++ b/src/mc/editor/datastore/PayloadEventDispatcher.h @@ -27,7 +27,7 @@ class PayloadEventDispatcher { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/editor/datastore/container/ActionBarContainer.h b/src/mc/editor/datastore/container/ActionBarContainer.h index 91e3924b2b..7e9af1909a 100644 --- a/src/mc/editor/datastore/container/ActionBarContainer.h +++ b/src/mc/editor/datastore/container/ActionBarContainer.h @@ -50,9 +50,9 @@ class ActionBarContainer : public ::Editor::DataStore::Container { MCAPI void _onItemUpdated(::std::string const& id, ::std::string const& propName); - MCAPI bool _removeItem(::std::string const& id); + MCFOLD bool _removeItem(::std::string const& id); - MCAPI ::Json::Value getDataPayload(::Editor::DataStore::PayloadDescription const& desc) const; + MCFOLD ::Json::Value getDataPayload(::Editor::DataStore::PayloadDescription const& desc) const; MCAPI ::Scripting::Result handleDataEvent( ::Editor::DataStore::EventType eventType, @@ -78,7 +78,7 @@ class ActionBarContainer : public ::Editor::DataStore::Container { public: // constructor thunks // NOLINTBEGIN - MCAPI void* $ctor(::Editor::DataStore::PayloadEventDispatcher& dispatcher, bool isServer); + MCFOLD void* $ctor(::Editor::DataStore::PayloadEventDispatcher& dispatcher, bool isServer); // NOLINTEND public: @@ -90,7 +90,7 @@ class ActionBarContainer : public ::Editor::DataStore::Container { public: // virtual function thunks // NOLINTBEGIN - MCAPI void $clear(); + MCFOLD void $clear(); // NOLINTEND public: diff --git a/src/mc/editor/datastore/container/MenuContainer.h b/src/mc/editor/datastore/container/MenuContainer.h index d097303b66..4981f27555 100644 --- a/src/mc/editor/datastore/container/MenuContainer.h +++ b/src/mc/editor/datastore/container/MenuContainer.h @@ -52,7 +52,7 @@ class MenuContainer : public ::Editor::DataStore::Container { MCAPI bool _removeMenuItem(::std::string const& id); - MCAPI ::Json::Value getDataPayload(::Editor::DataStore::PayloadDescription const& desc) const; + MCFOLD ::Json::Value getDataPayload(::Editor::DataStore::PayloadDescription const& desc) const; MCAPI ::Scripting::Result handleDataEvent( ::Editor::DataStore::EventType eventType, @@ -70,7 +70,7 @@ class MenuContainer : public ::Editor::DataStore::Container { public: // constructor thunks // NOLINTBEGIN - MCAPI void* $ctor(::Editor::DataStore::PayloadEventDispatcher& dispatcher, bool isServer); + MCFOLD void* $ctor(::Editor::DataStore::PayloadEventDispatcher& dispatcher, bool isServer); // NOLINTEND public: @@ -82,7 +82,7 @@ class MenuContainer : public ::Editor::DataStore::Container { public: // virtual function thunks // NOLINTBEGIN - MCAPI void $clear(); + MCFOLD void $clear(); // NOLINTEND public: diff --git a/src/mc/editor/datastore/container/ModalToolContainer.h b/src/mc/editor/datastore/container/ModalToolContainer.h index 0ba034244a..c84742a618 100644 --- a/src/mc/editor/datastore/container/ModalToolContainer.h +++ b/src/mc/editor/datastore/container/ModalToolContainer.h @@ -53,9 +53,9 @@ class ModalToolContainer : public ::Editor::DataStore::Container { MCAPI void _onToolUpdated(::std::string const& id, ::std::string const& propName); - MCAPI bool _removeTool(::std::string const& id); + MCFOLD bool _removeTool(::std::string const& id); - MCAPI ::Json::Value getDataPayload(::Editor::DataStore::PayloadDescription const& desc) const; + MCFOLD ::Json::Value getDataPayload(::Editor::DataStore::PayloadDescription const& desc) const; MCAPI ::Json::Value getSelectedToolPayload(::Editor::DataStore::PayloadDescription const&) const; diff --git a/src/mc/editor/logging/EditorContentLogEndPoint.h b/src/mc/editor/logging/EditorContentLogEndPoint.h index fd88fe60ae..e5c9f57a98 100644 --- a/src/mc/editor/logging/EditorContentLogEndPoint.h +++ b/src/mc/editor/logging/EditorContentLogEndPoint.h @@ -76,13 +76,13 @@ class EditorContentLogEndPoint : public ::ContentLogEndPoint { // NOLINTBEGIN MCAPI void $log(::LogArea const area, ::LogLevel const level, char const* message); - MCAPI bool $logOnlyOnce() const; + MCFOLD bool $logOnlyOnce() const; - MCAPI void $flush(); + MCFOLD void $flush(); - MCAPI void $setEnabled(bool enabled); + MCFOLD void $setEnabled(bool enabled); - MCAPI bool $isEnabled() const; + MCFOLD bool $isEnabled() const; // NOLINTEND public: diff --git a/src/mc/editor/logging/LoggingService.h b/src/mc/editor/logging/LoggingService.h index b6743e0796..f1490da2fd 100644 --- a/src/mc/editor/logging/LoggingService.h +++ b/src/mc/editor/logging/LoggingService.h @@ -70,11 +70,11 @@ class LoggingService : public ::Editor::Services::IEditorService, public ::Edito public: // virtual function thunks // NOLINTBEGIN - MCAPI ::Scripting::Result $init(); + MCFOLD ::Scripting::Result $init(); - MCAPI ::Scripting::Result $quit(); + MCFOLD ::Scripting::Result $quit(); - MCAPI ::Scripting::Result_deprecated<::Bedrock::PubSub::Subscription> + MCFOLD ::Scripting::Result_deprecated<::Bedrock::PubSub::Subscription> $listenForLogMessage(::std::function func); // NOLINTEND diff --git a/src/mc/editor/persistence/PersistentData.h b/src/mc/editor/persistence/PersistentData.h index 7262727760..b1ddc2400f 100644 --- a/src/mc/editor/persistence/PersistentData.h +++ b/src/mc/editor/persistence/PersistentData.h @@ -28,7 +28,7 @@ struct PersistentData { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/editor/playtest/PlaytestBeginSessionTransferPayload.h b/src/mc/editor/playtest/PlaytestBeginSessionTransferPayload.h index 1e3723b147..e2f35d4b87 100644 --- a/src/mc/editor/playtest/PlaytestBeginSessionTransferPayload.h +++ b/src/mc/editor/playtest/PlaytestBeginSessionTransferPayload.h @@ -50,7 +50,7 @@ class PlaytestBeginSessionTransferPayload public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND public: diff --git a/src/mc/editor/script/ScriptBlockPaletteService.h b/src/mc/editor/script/ScriptBlockPaletteService.h index 25c5ebedc7..3db1631007 100644 --- a/src/mc/editor/script/ScriptBlockPaletteService.h +++ b/src/mc/editor/script/ScriptBlockPaletteService.h @@ -87,7 +87,7 @@ class ScriptBlockPaletteService public: // constructor thunks // NOLINTBEGIN - MCAPI void* + MCFOLD void* $ctor(::Editor::Services::EditorBlockPaletteServiceProvider& provider, ::Scripting::WeakLifetimeScope const& scope); // NOLINTEND }; diff --git a/src/mc/editor/script/ScriptBlockUtilityService.h b/src/mc/editor/script/ScriptBlockUtilityService.h index 73e5b0d28c..7cb753cf88 100644 --- a/src/mc/editor/script/ScriptBlockUtilityService.h +++ b/src/mc/editor/script/ScriptBlockUtilityService.h @@ -77,7 +77,7 @@ class ScriptBlockUtilityService public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/editor/script/ScriptClipboardChangeAfterEvent.h b/src/mc/editor/script/ScriptClipboardChangeAfterEvent.h index 5ae08bf1c4..483bde594c 100644 --- a/src/mc/editor/script/ScriptClipboardChangeAfterEvent.h +++ b/src/mc/editor/script/ScriptClipboardChangeAfterEvent.h @@ -24,7 +24,7 @@ struct ScriptClipboardChangeAfterEvent { public: // member functions // NOLINTBEGIN - MCAPI ::Editor::ScriptModule::ScriptClipboardChangeAfterEvent& + MCFOLD ::Editor::ScriptModule::ScriptClipboardChangeAfterEvent& operator=(::Editor::ScriptModule::ScriptClipboardChangeAfterEvent&&); MCAPI ~ScriptClipboardChangeAfterEvent(); @@ -39,7 +39,7 @@ struct ScriptClipboardChangeAfterEvent { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/editor/script/ScriptClipboardItem.h b/src/mc/editor/script/ScriptClipboardItem.h index 1ea2f7d15d..5a8396bd99 100644 --- a/src/mc/editor/script/ScriptClipboardItem.h +++ b/src/mc/editor/script/ScriptClipboardItem.h @@ -44,7 +44,7 @@ class ScriptClipboardItem : public ::Scripting::WeakHandleFromThis<::Editor::Scr // NOLINTBEGIN MCAPI ::Scripting::Result clear(); - MCAPI ::mce::UUID const& getId() const; + MCFOLD ::mce::UUID const& getId() const; MCAPI ::Scripting::Result_deprecated< ::Scripting::StrongTypedObjectHandle<::ScriptModuleMinecraft::ScriptCompoundBlockVolume>> diff --git a/src/mc/editor/script/ScriptClipboardService.h b/src/mc/editor/script/ScriptClipboardService.h index d38f0dedc2..4443bf86b2 100644 --- a/src/mc/editor/script/ScriptClipboardService.h +++ b/src/mc/editor/script/ScriptClipboardService.h @@ -57,7 +57,7 @@ class ScriptClipboardService : public ::Scripting::WeakHandleFromThis<::Editor:: public: // constructor thunks // NOLINTBEGIN - MCAPI void* + MCFOLD void* $ctor(::Editor::Services::ClipboardServiceProvider& provider, ::Scripting::WeakLifetimeScope const& scope); // NOLINTEND }; diff --git a/src/mc/editor/script/ScriptCurrentThemeChangeAfterEvent.h b/src/mc/editor/script/ScriptCurrentThemeChangeAfterEvent.h index dd67610b7d..e5bff9eb0d 100644 --- a/src/mc/editor/script/ScriptCurrentThemeChangeAfterEvent.h +++ b/src/mc/editor/script/ScriptCurrentThemeChangeAfterEvent.h @@ -23,7 +23,7 @@ struct ScriptCurrentThemeChangeAfterEvent { public: // member functions // NOLINTBEGIN - MCAPI ::Editor::ScriptModule::ScriptCurrentThemeChangeAfterEvent& + MCFOLD ::Editor::ScriptModule::ScriptCurrentThemeChangeAfterEvent& operator=(::Editor::ScriptModule::ScriptCurrentThemeChangeAfterEvent&&); MCAPI ~ScriptCurrentThemeChangeAfterEvent(); @@ -38,7 +38,7 @@ struct ScriptCurrentThemeChangeAfterEvent { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/editor/script/ScriptCurrentThemeColorChangeAfterEvent.h b/src/mc/editor/script/ScriptCurrentThemeColorChangeAfterEvent.h index e2c5fc9140..b12a11bca9 100644 --- a/src/mc/editor/script/ScriptCurrentThemeColorChangeAfterEvent.h +++ b/src/mc/editor/script/ScriptCurrentThemeColorChangeAfterEvent.h @@ -40,7 +40,7 @@ struct ScriptCurrentThemeColorChangeAfterEvent { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/editor/script/ScriptCursorService.h b/src/mc/editor/script/ScriptCursorService.h index de2ceb5948..828af71251 100644 --- a/src/mc/editor/script/ScriptCursorService.h +++ b/src/mc/editor/script/ScriptCursorService.h @@ -64,7 +64,7 @@ class ScriptCursorService : public ::Scripting::WeakHandleFromThis<::Editor::Scr public: // constructor thunks // NOLINTBEGIN - MCAPI void* $ctor(::Editor::ServiceProviderCollection& services, ::Scripting::WeakLifetimeScope const& scope); + MCFOLD void* $ctor(::Editor::ServiceProviderCollection& services, ::Scripting::WeakLifetimeScope const& scope); // NOLINTEND }; diff --git a/src/mc/editor/script/ScriptDataStoreActionBarContainer.h b/src/mc/editor/script/ScriptDataStoreActionBarContainer.h index 15ba7c5d55..3bfdf227f0 100644 --- a/src/mc/editor/script/ScriptDataStoreActionBarContainer.h +++ b/src/mc/editor/script/ScriptDataStoreActionBarContainer.h @@ -67,7 +67,7 @@ class ScriptDataStoreActionBarContainer { public: // constructor thunks // NOLINTBEGIN - MCAPI void* + MCFOLD void* $ctor(::Editor::Services::DataStoreServiceProvider& dataStoreService, ::Scripting::WeakLifetimeScope const& scope); // NOLINTEND }; diff --git a/src/mc/editor/script/ScriptDataStoreActionContainer.h b/src/mc/editor/script/ScriptDataStoreActionContainer.h index 015c05d14c..00412fdfd8 100644 --- a/src/mc/editor/script/ScriptDataStoreActionContainer.h +++ b/src/mc/editor/script/ScriptDataStoreActionContainer.h @@ -51,7 +51,7 @@ class ScriptDataStoreActionContainer { public: // constructor thunks // NOLINTBEGIN - MCAPI void* + MCFOLD void* $ctor(::Editor::Services::DataStoreServiceProvider& dataStoreService, ::Scripting::WeakLifetimeScope const& scope); // NOLINTEND }; diff --git a/src/mc/editor/script/ScriptDataStoreMenuContainer.h b/src/mc/editor/script/ScriptDataStoreMenuContainer.h index a2e5ddb6eb..fe2b210042 100644 --- a/src/mc/editor/script/ScriptDataStoreMenuContainer.h +++ b/src/mc/editor/script/ScriptDataStoreMenuContainer.h @@ -61,7 +61,7 @@ class ScriptDataStoreMenuContainer { public: // constructor thunks // NOLINTBEGIN - MCAPI void* + MCFOLD void* $ctor(::Editor::Services::DataStoreServiceProvider& dataStoreService, ::Scripting::WeakLifetimeScope const& scope); // NOLINTEND }; diff --git a/src/mc/editor/script/ScriptDataStorePayloadAfterEvent.h b/src/mc/editor/script/ScriptDataStorePayloadAfterEvent.h index 02c0f57de6..a1ef238aed 100644 --- a/src/mc/editor/script/ScriptDataStorePayloadAfterEvent.h +++ b/src/mc/editor/script/ScriptDataStorePayloadAfterEvent.h @@ -24,7 +24,7 @@ struct ScriptDataStorePayloadAfterEvent { public: // member functions // NOLINTBEGIN - MCAPI ::Editor::ScriptModule::ScriptDataStorePayloadAfterEvent& + MCFOLD ::Editor::ScriptModule::ScriptDataStorePayloadAfterEvent& operator=(::Editor::ScriptModule::ScriptDataStorePayloadAfterEvent&&); // NOLINTEND diff --git a/src/mc/editor/script/ScriptDataTransferService.h b/src/mc/editor/script/ScriptDataTransferService.h index 779f3ff3aa..bdb142225d 100644 --- a/src/mc/editor/script/ScriptDataTransferService.h +++ b/src/mc/editor/script/ScriptDataTransferService.h @@ -70,7 +70,7 @@ class ScriptDataTransferService public: // constructor thunks // NOLINTBEGIN - MCAPI void* $ctor( + MCFOLD void* $ctor( ::Editor::Services::ServerDataTransferServiceProvider* transferService, ::Scripting::WeakLifetimeScope const& scope ); diff --git a/src/mc/editor/script/ScriptGameOptions.h b/src/mc/editor/script/ScriptGameOptions.h index 9f6d0ff660..fcdf7d817f 100644 --- a/src/mc/editor/script/ScriptGameOptions.h +++ b/src/mc/editor/script/ScriptGameOptions.h @@ -42,13 +42,13 @@ class ScriptGameOptions : public ::Editor::GameOptions { // NOLINTBEGIN MCAPI void* $ctor(::Editor::ScriptModule::ScriptGameOptions&&); - MCAPI void* $ctor(::Editor::ScriptModule::ScriptGameOptions const&); + MCFOLD void* $ctor(::Editor::ScriptModule::ScriptGameOptions const&); // NOLINTEND public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/editor/script/ScriptIBlockPaletteItem.h b/src/mc/editor/script/ScriptIBlockPaletteItem.h index 0fae05ef5b..9c34745d33 100644 --- a/src/mc/editor/script/ScriptIBlockPaletteItem.h +++ b/src/mc/editor/script/ScriptIBlockPaletteItem.h @@ -64,7 +64,7 @@ class ScriptIBlockPaletteItem public: // member functions // NOLINTBEGIN - MCAPI ::Editor::ScriptModule::ScriptBlockPaletteItemType getType() const; + MCFOLD ::Editor::ScriptModule::ScriptBlockPaletteItemType getType() const; // NOLINTEND public: diff --git a/src/mc/editor/script/ScriptPlayerInputService.h b/src/mc/editor/script/ScriptPlayerInputService.h index 4dae7d9040..0354bf2de1 100644 --- a/src/mc/editor/script/ScriptPlayerInputService.h +++ b/src/mc/editor/script/ScriptPlayerInputService.h @@ -63,7 +63,7 @@ class ScriptPlayerInputService public: // constructor thunks // NOLINTBEGIN - MCAPI void* $ctor( + MCFOLD void* $ctor( ::Editor::Services::ServerPlayerInputServiceProvider* playerInputService, ::Scripting::WeakLifetimeScope const& scope ); diff --git a/src/mc/editor/script/ScriptPrimarySelectionChangedEvent.h b/src/mc/editor/script/ScriptPrimarySelectionChangedEvent.h index 6d0bdeb4ae..f701417cb0 100644 --- a/src/mc/editor/script/ScriptPrimarySelectionChangedEvent.h +++ b/src/mc/editor/script/ScriptPrimarySelectionChangedEvent.h @@ -26,7 +26,7 @@ struct ScriptPrimarySelectionChangedEvent { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/editor/script/ScriptSelectionService.h b/src/mc/editor/script/ScriptSelectionService.h index aa50880fa3..0d7ca6bf2a 100644 --- a/src/mc/editor/script/ScriptSelectionService.h +++ b/src/mc/editor/script/ScriptSelectionService.h @@ -50,7 +50,7 @@ class ScriptSelectionService : public ::Scripting::WeakHandleFromThis<::Editor:: ::Scripting::StrongTypedObjectHandle<::Editor::ScriptModule::ScriptSelectionContainer>> getPrimaryContainer(); - MCAPI ::Editor::ScriptModule::ScriptSelectionService& operator=(::Editor::ScriptModule::ScriptSelectionService&&); + MCFOLD ::Editor::ScriptModule::ScriptSelectionService& operator=(::Editor::ScriptModule::ScriptSelectionService&&); MCAPI ~ScriptSelectionService(); // NOLINTEND @@ -69,7 +69,7 @@ class ScriptSelectionService : public ::Scripting::WeakHandleFromThis<::Editor:: // NOLINTBEGIN MCAPI void* $ctor(::Editor::ScriptModule::ScriptSelectionService&&); - MCAPI void* $ctor( + MCFOLD void* $ctor( ::Editor::Services::SelectionServiceProvider* selectionServiceProvider, ::Scripting::WeakLifetimeScope const& scope ); @@ -78,7 +78,7 @@ class ScriptSelectionService : public ::Scripting::WeakHandleFromThis<::Editor:: public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/editor/script/ScriptTransferCollectionNameData.h b/src/mc/editor/script/ScriptTransferCollectionNameData.h index bbca6e4429..bc918cc010 100644 --- a/src/mc/editor/script/ScriptTransferCollectionNameData.h +++ b/src/mc/editor/script/ScriptTransferCollectionNameData.h @@ -23,10 +23,10 @@ class ScriptTransferCollectionNameData { public: // member functions // NOLINTBEGIN - MCAPI ::Editor::ScriptModule::ScriptTransferCollectionNameData& + MCFOLD ::Editor::ScriptModule::ScriptTransferCollectionNameData& operator=(::Editor::ScriptModule::ScriptTransferCollectionNameData&&); - MCAPI ::Editor::ScriptModule::ScriptTransferCollectionNameData& + MCFOLD ::Editor::ScriptModule::ScriptTransferCollectionNameData& operator=(::Editor::ScriptModule::ScriptTransferCollectionNameData const&); MCAPI ~ScriptTransferCollectionNameData(); @@ -42,7 +42,7 @@ class ScriptTransferCollectionNameData { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/editor/script/ScriptTransferServiceDataResponse.h b/src/mc/editor/script/ScriptTransferServiceDataResponse.h index 2d071088ae..656f997c35 100644 --- a/src/mc/editor/script/ScriptTransferServiceDataResponse.h +++ b/src/mc/editor/script/ScriptTransferServiceDataResponse.h @@ -25,7 +25,7 @@ class ScriptTransferServiceDataResponse { public: // member functions // NOLINTBEGIN - MCAPI ::Editor::ScriptModule::ScriptTransferServiceDataResponse& + MCFOLD ::Editor::ScriptModule::ScriptTransferServiceDataResponse& operator=(::Editor::ScriptModule::ScriptTransferServiceDataResponse&&); MCAPI ~ScriptTransferServiceDataResponse(); @@ -41,7 +41,7 @@ class ScriptTransferServiceDataResponse { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/editor/script/ScriptWeightedBlock.h b/src/mc/editor/script/ScriptWeightedBlock.h index b4b7812b50..882b3ce185 100644 --- a/src/mc/editor/script/ScriptWeightedBlock.h +++ b/src/mc/editor/script/ScriptWeightedBlock.h @@ -36,7 +36,7 @@ class ScriptWeightedBlock { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/editor/script/ScriptWidget.h b/src/mc/editor/script/ScriptWidget.h index 4e46817a46..5aa806d647 100644 --- a/src/mc/editor/script/ScriptWidget.h +++ b/src/mc/editor/script/ScriptWidget.h @@ -337,7 +337,7 @@ class ScriptWidget : public ::Scripting::WeakHandleFromThis<::Editor::ScriptModu // NOLINTBEGIN MCAPI void $_performDeleteWidget(bool suppressClientMessage); - MCAPI void $_setValid(bool valid); + MCFOLD void $_setValid(bool valid); MCAPI void $_handleWidgetStateChangePayload(::Editor::Network::WidgetStateChangePayload const& payload); @@ -348,7 +348,7 @@ class ScriptWidget : public ::Scripting::WeakHandleFromThis<::Editor::ScriptModu MCAPI void $_setSelectedNoBroadcast(bool selected); - MCAPI ::Scripting::WeakLifetimeScope& $_getScope(); + MCFOLD ::Scripting::WeakLifetimeScope& $_getScope(); MCAPI void $_deleteComponent(::mce::UUID const& componentId); // NOLINTEND diff --git a/src/mc/editor/script/ScriptWidgetComponentBaseOptions.h b/src/mc/editor/script/ScriptWidgetComponentBaseOptions.h index 531e24c84e..c4b1e4b653 100644 --- a/src/mc/editor/script/ScriptWidgetComponentBaseOptions.h +++ b/src/mc/editor/script/ScriptWidgetComponentBaseOptions.h @@ -39,7 +39,7 @@ class ScriptWidgetComponentBaseOptions { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/editor/script/ScriptWidgetComponentClipboard.h b/src/mc/editor/script/ScriptWidgetComponentClipboard.h index 626ba2b00c..be3579bc27 100644 --- a/src/mc/editor/script/ScriptWidgetComponentClipboard.h +++ b/src/mc/editor/script/ScriptWidgetComponentClipboard.h @@ -117,7 +117,7 @@ class ScriptWidgetComponentClipboard : public ::Editor::ScriptModule::ScriptWidg public: // virtual function thunks // NOLINTBEGIN - MCAPI ::Editor::Widgets::WidgetComponentType const $getComponentType() const; + MCFOLD ::Editor::Widgets::WidgetComponentType const $getComponentType() const; // NOLINTEND public: diff --git a/src/mc/editor/script/ScriptWidgetComponentEntity.h b/src/mc/editor/script/ScriptWidgetComponentEntity.h index a8f77aeab2..49c1506fe6 100644 --- a/src/mc/editor/script/ScriptWidgetComponentEntity.h +++ b/src/mc/editor/script/ScriptWidgetComponentEntity.h @@ -57,7 +57,7 @@ class ScriptWidgetComponentEntity : public ::Editor::ScriptModule::ScriptWidgetC ::std::optional<::Editor::ScriptModule::ScriptWidgetComponentEntityOptions> options ); - MCAPI ::Scripting::Result + MCFOLD ::Scripting::Result _getClickable() const; MCAPI ::Scripting::Result @@ -96,7 +96,7 @@ class ScriptWidgetComponentEntity : public ::Editor::ScriptModule::ScriptWidgetC public: // virtual function thunks // NOLINTBEGIN - MCAPI ::Editor::Widgets::WidgetComponentType const $getComponentType() const; + MCFOLD ::Editor::Widgets::WidgetComponentType const $getComponentType() const; // NOLINTEND public: diff --git a/src/mc/editor/script/ScriptWidgetComponentErrorInvalidComponent.h b/src/mc/editor/script/ScriptWidgetComponentErrorInvalidComponent.h index a84794660b..e41eb3c79e 100644 --- a/src/mc/editor/script/ScriptWidgetComponentErrorInvalidComponent.h +++ b/src/mc/editor/script/ScriptWidgetComponentErrorInvalidComponent.h @@ -33,7 +33,7 @@ class ScriptWidgetComponentErrorInvalidComponent : public ::Scripting::Error { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/editor/script/ScriptWidgetComponentGizmo.h b/src/mc/editor/script/ScriptWidgetComponentGizmo.h index 7088186700..eb01380276 100644 --- a/src/mc/editor/script/ScriptWidgetComponentGizmo.h +++ b/src/mc/editor/script/ScriptWidgetComponentGizmo.h @@ -65,7 +65,7 @@ class ScriptWidgetComponentGizmo : public ::Editor::ScriptModule::ScriptWidgetCo ::std::optional<::Editor::ScriptModule::ScriptWidgetComponentGizmoOptions> options ); - MCAPI ::Scripting::Result + MCFOLD ::Scripting::Result _isActivated() const; MCAPI ::Scripting::Result @@ -100,7 +100,7 @@ class ScriptWidgetComponentGizmo : public ::Editor::ScriptModule::ScriptWidgetCo public: // virtual function thunks // NOLINTBEGIN - MCAPI ::Editor::Widgets::WidgetComponentType const $getComponentType() const; + MCFOLD ::Editor::Widgets::WidgetComponentType const $getComponentType() const; MCAPI void $_handleWidgetComponentStateChange(::Editor::Network::WidgetComponentStateChangePayload const& payload); // NOLINTEND diff --git a/src/mc/editor/script/ScriptWidgetComponentGizmoOptions.h b/src/mc/editor/script/ScriptWidgetComponentGizmoOptions.h index 69be3f6bb8..70433fc080 100644 --- a/src/mc/editor/script/ScriptWidgetComponentGizmoOptions.h +++ b/src/mc/editor/script/ScriptWidgetComponentGizmoOptions.h @@ -45,7 +45,7 @@ class ScriptWidgetComponentGizmoOptions : public ::Editor::ScriptModule::ScriptW public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/editor/script/ScriptWidgetComponentGuideSensor.h b/src/mc/editor/script/ScriptWidgetComponentGuideSensor.h index 49169c34c4..effd1ecc7b 100644 --- a/src/mc/editor/script/ScriptWidgetComponentGuideSensor.h +++ b/src/mc/editor/script/ScriptWidgetComponentGuideSensor.h @@ -72,7 +72,7 @@ class ScriptWidgetComponentGuideSensor : public ::Editor::ScriptModule::ScriptWi public: // virtual function thunks // NOLINTBEGIN - MCAPI ::Editor::Widgets::WidgetComponentType const $getComponentType() const; + MCFOLD ::Editor::Widgets::WidgetComponentType const $getComponentType() const; // NOLINTEND public: diff --git a/src/mc/editor/script/ScriptWidgetComponentGuideSensorOptions.h b/src/mc/editor/script/ScriptWidgetComponentGuideSensorOptions.h index 3edae8787a..cf718bf45f 100644 --- a/src/mc/editor/script/ScriptWidgetComponentGuideSensorOptions.h +++ b/src/mc/editor/script/ScriptWidgetComponentGuideSensorOptions.h @@ -28,13 +28,13 @@ class ScriptWidgetComponentGuideSensorOptions : public ::Editor::ScriptModule::S public: // constructor thunks // NOLINTBEGIN - MCAPI void* $ctor(::Editor::ScriptModule::ScriptWidgetComponentGuideSensorOptions const&); + MCFOLD void* $ctor(::Editor::ScriptModule::ScriptWidgetComponentGuideSensorOptions const&); // NOLINTEND public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/editor/script/ScriptWidgetComponentRenderPrim.h b/src/mc/editor/script/ScriptWidgetComponentRenderPrim.h index 7fde985b7b..03983a9ca1 100644 --- a/src/mc/editor/script/ScriptWidgetComponentRenderPrim.h +++ b/src/mc/editor/script/ScriptWidgetComponentRenderPrim.h @@ -117,7 +117,7 @@ class ScriptWidgetComponentRenderPrim : public ::Editor::ScriptModule::ScriptWid public: // virtual function thunks // NOLINTBEGIN - MCAPI ::Editor::Widgets::WidgetComponentType const $getComponentType() const; + MCFOLD ::Editor::Widgets::WidgetComponentType const $getComponentType() const; // NOLINTEND public: diff --git a/src/mc/editor/script/ScriptWidgetComponentRenderPrimOptions.h b/src/mc/editor/script/ScriptWidgetComponentRenderPrimOptions.h index 13f2ff9387..4a0a333943 100644 --- a/src/mc/editor/script/ScriptWidgetComponentRenderPrimOptions.h +++ b/src/mc/editor/script/ScriptWidgetComponentRenderPrimOptions.h @@ -27,13 +27,13 @@ class ScriptWidgetComponentRenderPrimOptions : public ::Editor::ScriptModule::Sc public: // constructor thunks // NOLINTBEGIN - MCAPI void* $ctor(::Editor::ScriptModule::ScriptWidgetComponentRenderPrimOptions const&); + MCFOLD void* $ctor(::Editor::ScriptModule::ScriptWidgetComponentRenderPrimOptions const&); // NOLINTEND public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/editor/script/ScriptWidgetComponentRenderPrimType_AxialSphere.h b/src/mc/editor/script/ScriptWidgetComponentRenderPrimType_AxialSphere.h index 3119ddc013..05b6acaeb2 100644 --- a/src/mc/editor/script/ScriptWidgetComponentRenderPrimType_AxialSphere.h +++ b/src/mc/editor/script/ScriptWidgetComponentRenderPrimType_AxialSphere.h @@ -33,7 +33,7 @@ class ScriptWidgetComponentRenderPrimType_AxialSphere public: // member functions // NOLINTBEGIN - MCAPI ::Editor::ScriptModule::ScriptWidgetComponentRenderPrimType_AxialSphere& + MCFOLD ::Editor::ScriptModule::ScriptWidgetComponentRenderPrimType_AxialSphere& operator=(::Editor::ScriptModule::ScriptWidgetComponentRenderPrimType_AxialSphere const&); MCAPI ::Editor::ScriptModule::ScriptWidgetComponentRenderPrimType_AxialSphere& @@ -53,7 +53,7 @@ class ScriptWidgetComponentRenderPrimType_AxialSphere public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND public: diff --git a/src/mc/editor/script/ScriptWidgetComponentSpline.h b/src/mc/editor/script/ScriptWidgetComponentSpline.h index b25bf71c4d..16bfa7e1a4 100644 --- a/src/mc/editor/script/ScriptWidgetComponentSpline.h +++ b/src/mc/editor/script/ScriptWidgetComponentSpline.h @@ -128,7 +128,7 @@ class ScriptWidgetComponentSpline : public ::Editor::ScriptModule::ScriptWidgetC public: // virtual function thunks // NOLINTBEGIN - MCAPI ::Editor::Widgets::WidgetComponentType const $getComponentType() const; + MCFOLD ::Editor::Widgets::WidgetComponentType const $getComponentType() const; // NOLINTEND public: diff --git a/src/mc/editor/script/ScriptWidgetComponentText.h b/src/mc/editor/script/ScriptWidgetComponentText.h index 713ff0b1d6..dbd59f7ae7 100644 --- a/src/mc/editor/script/ScriptWidgetComponentText.h +++ b/src/mc/editor/script/ScriptWidgetComponentText.h @@ -91,7 +91,7 @@ class ScriptWidgetComponentText : public ::Editor::ScriptModule::ScriptWidgetCom public: // virtual function thunks // NOLINTBEGIN - MCAPI ::Editor::Widgets::WidgetComponentType const $getComponentType() const; + MCFOLD ::Editor::Widgets::WidgetComponentType const $getComponentType() const; // NOLINTEND public: diff --git a/src/mc/editor/script/ScriptWidgetErrorInvalidObject.h b/src/mc/editor/script/ScriptWidgetErrorInvalidObject.h index 3c28fa3bc2..dcc5c5531a 100644 --- a/src/mc/editor/script/ScriptWidgetErrorInvalidObject.h +++ b/src/mc/editor/script/ScriptWidgetErrorInvalidObject.h @@ -32,7 +32,7 @@ class ScriptWidgetErrorInvalidObject : public ::Scripting::Error { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/editor/script/ScriptWidgetGroupErrorInvalidObject.h b/src/mc/editor/script/ScriptWidgetGroupErrorInvalidObject.h index d217e99065..d1e52831a1 100644 --- a/src/mc/editor/script/ScriptWidgetGroupErrorInvalidObject.h +++ b/src/mc/editor/script/ScriptWidgetGroupErrorInvalidObject.h @@ -33,7 +33,7 @@ class ScriptWidgetGroupErrorInvalidObject : public ::Scripting::Error { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/editor/script/ScriptWidgetStateChangeEventParameters.h b/src/mc/editor/script/ScriptWidgetStateChangeEventParameters.h index 607e93e810..3ec59c0f73 100644 --- a/src/mc/editor/script/ScriptWidgetStateChangeEventParameters.h +++ b/src/mc/editor/script/ScriptWidgetStateChangeEventParameters.h @@ -42,7 +42,7 @@ class ScriptWidgetStateChangeEventParameters { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/editor/selection/SelectionContainer.h b/src/mc/editor/selection/SelectionContainer.h index d793778c38..f19c487618 100644 --- a/src/mc/editor/selection/SelectionContainer.h +++ b/src/mc/editor/selection/SelectionContainer.h @@ -154,27 +154,27 @@ class SelectionContainer : public ::Bedrock::EnableNonOwnerReferences, bool requiresReplication ); - MCAPI bool _isPendingDestroy() const; + MCFOLD bool _isPendingDestroy() const; - MCAPI void _logMessage(::std::string const& msg); + MCFOLD void _logMessage(::std::string const& msg); - MCAPI void _setPendingDestroy(bool destroy); + MCFOLD void _setPendingDestroy(bool destroy); - MCAPI void _setScriptRefCount(uint value); + MCFOLD void _setScriptRefCount(uint value); - MCAPI ::CompoundBlockVolume const& getCompoundVolume() const; + MCFOLD ::CompoundBlockVolume const& getCompoundVolume() const; MCAPI ::mce::Color const& getFillColor() const; - MCAPI ::mce::UUID const& getId(); + MCFOLD ::mce::UUID const& getId(); MCAPI ::mce::Color const& getOutlineColor() const; - MCAPI uint getScriptRefCount() const; + MCFOLD uint getScriptRefCount() const; - MCAPI bool isVisible() const; + MCFOLD bool isVisible() const; - MCAPI bool requiresReplication() const; + MCFOLD bool requiresReplication() const; // NOLINTEND public: diff --git a/src/mc/editor/selection/SelectionContainerErrorPayload.h b/src/mc/editor/selection/SelectionContainerErrorPayload.h index dc6949bca5..58c51c994a 100644 --- a/src/mc/editor/selection/SelectionContainerErrorPayload.h +++ b/src/mc/editor/selection/SelectionContainerErrorPayload.h @@ -59,7 +59,7 @@ class SelectionContainerErrorPayload public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND public: diff --git a/src/mc/editor/selection/SelectionContainerPushPayload.h b/src/mc/editor/selection/SelectionContainerPushPayload.h index 98e4b68444..03e0697295 100644 --- a/src/mc/editor/selection/SelectionContainerPushPayload.h +++ b/src/mc/editor/selection/SelectionContainerPushPayload.h @@ -58,7 +58,7 @@ class SelectionContainerPushPayload public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND public: diff --git a/src/mc/editor/selection/SelectionContainerReplacePayload.h b/src/mc/editor/selection/SelectionContainerReplacePayload.h index 3baadb359e..94c8b55e45 100644 --- a/src/mc/editor/selection/SelectionContainerReplacePayload.h +++ b/src/mc/editor/selection/SelectionContainerReplacePayload.h @@ -59,7 +59,7 @@ class SelectionContainerReplacePayload public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND public: diff --git a/src/mc/editor/selection/SelectionService.h b/src/mc/editor/selection/SelectionService.h index cfe276dbbb..9d06923610 100644 --- a/src/mc/editor/selection/SelectionService.h +++ b/src/mc/editor/selection/SelectionService.h @@ -143,7 +143,7 @@ class SelectionService : public ::Editor::Services::IEditorService, public: // virtual function thunks // NOLINTBEGIN - MCAPI ::Scripting::Result $init(); + MCFOLD ::Scripting::Result $init(); MCAPI ::Scripting::Result $ready(); diff --git a/src/mc/editor/selection/SelectionServicePayload.h b/src/mc/editor/selection/SelectionServicePayload.h index 3ca56a303e..d3a1a5bb0d 100644 --- a/src/mc/editor/selection/SelectionServicePayload.h +++ b/src/mc/editor/selection/SelectionServicePayload.h @@ -53,13 +53,13 @@ class SelectionServicePayload : public ::Editor::Network::NetworkPayload<::Edito bool requiresReplication ); - MCAPI ::Editor::Network::SelectionServicePayload::Action getAction() const; + MCFOLD ::Editor::Network::SelectionServicePayload::Action getAction() const; - MCAPI ::mce::UUID const& getId() const; + MCFOLD ::mce::UUID const& getId() const; - MCAPI bool isPrimary() const; + MCFOLD bool isPrimary() const; - MCAPI bool requiresReplication() const; + MCFOLD bool requiresReplication() const; // NOLINTEND public: diff --git a/src/mc/editor/serviceproviders/Speed.h b/src/mc/editor/serviceproviders/Speed.h index 34e34071e0..4efae0afcf 100644 --- a/src/mc/editor/serviceproviders/Speed.h +++ b/src/mc/editor/serviceproviders/Speed.h @@ -29,7 +29,7 @@ class Speed { // NOLINTBEGIN MCAPI explicit Speed(::std::function callback); - MCAPI float getFlySpeedMultiplier() const; + MCFOLD float getFlySpeedMultiplier() const; MCAPI void setFlySpeedMultiplier(float newSpeed); @@ -53,7 +53,7 @@ class Speed { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/editor/serviceproviders/Theme.h b/src/mc/editor/serviceproviders/Theme.h index 1889f68987..ce497417dc 100644 --- a/src/mc/editor/serviceproviders/Theme.h +++ b/src/mc/editor/serviceproviders/Theme.h @@ -64,7 +64,7 @@ class Theme { MCAPI ::Scripting::Result deleteTheme(::std::string const& id, bool notifyUpdate); - MCAPI ::std::string const& getCurrentTheme() const; + MCFOLD ::std::string const& getCurrentTheme() const; MCAPI ::std::optional<::Editor::Settings::ThemePalette> getThemeColors(::std::string const& id) const; diff --git a/src/mc/editor/services/IEditorService.h b/src/mc/editor/services/IEditorService.h index 97f3186dc3..23168054ef 100644 --- a/src/mc/editor/services/IEditorService.h +++ b/src/mc/editor/services/IEditorService.h @@ -58,13 +58,13 @@ class IEditorService : public ::Bedrock::EnableNonOwnerReferences { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND public: // virtual function thunks // NOLINTBEGIN - MCAPI ::Scripting::Result $ready(); + MCFOLD ::Scripting::Result $ready(); MCAPI bool $isServiceInitialized() const; diff --git a/src/mc/editor/services/blocks/EditorBlockPaletteService.h b/src/mc/editor/services/blocks/EditorBlockPaletteService.h index db341f9e7f..9b14b25d04 100644 --- a/src/mc/editor/services/blocks/EditorBlockPaletteService.h +++ b/src/mc/editor/services/blocks/EditorBlockPaletteService.h @@ -178,17 +178,17 @@ class EditorBlockPaletteService : public ::Editor::Services::IEditorService, // NOLINTBEGIN MCAPI ::Scripting::Result $init(); - MCAPI ::Scripting::Result $quit(); + MCFOLD ::Scripting::Result $quit(); MCAPI ::std::string_view $getServiceName() const; - MCAPI ::std::vector<::std::shared_ptr<::Editor::EditorBlockPalette>> const& $getPaletteList() const; + MCFOLD ::std::vector<::std::shared_ptr<::Editor::EditorBlockPalette>> const& $getPaletteList() const; MCAPI ::Editor::EditorBlockPalette const& $getActivePalette() const; MCAPI void $forEachBlockType(::std::function callback) const; - MCAPI int $getSelectedPaletteItemIndex() const; + MCFOLD int $getSelectedPaletteItemIndex() const; MCAPI ::Scripting::Result_deprecated<::BlockLegacy const*> $getSelectedBlockType() const; diff --git a/src/mc/editor/services/clipboard/ClipboardItem.h b/src/mc/editor/services/clipboard/ClipboardItem.h index cdfc5ddf01..137b5967c3 100644 --- a/src/mc/editor/services/clipboard/ClipboardItem.h +++ b/src/mc/editor/services/clipboard/ClipboardItem.h @@ -36,9 +36,9 @@ class ClipboardItem { // NOLINTBEGIN MCAPI explicit ClipboardItem(::mce::UUID id); - MCAPI void clear(); + MCFOLD void clear(); - MCAPI ::mce::UUID const& getId() const; + MCFOLD ::mce::UUID const& getId() const; MCAPI ::CompoundBlockVolume getPredictedWriteAsVolume( ::BlockPos const& position, @@ -47,7 +47,7 @@ class ClipboardItem { MCAPI ::BlockPos getSize() const; - MCAPI ::Editor::EditorStructureTemplate* getStructureData() const; + MCFOLD ::Editor::EditorStructureTemplate* getStructureData() const; MCAPI ::StructureSettings getStructureSettingsFromOptions( ::BlockPos const& size, diff --git a/src/mc/editor/services/clipboard/ClipboardService.h b/src/mc/editor/services/clipboard/ClipboardService.h index 90da94a5e3..d4b4287d66 100644 --- a/src/mc/editor/services/clipboard/ClipboardService.h +++ b/src/mc/editor/services/clipboard/ClipboardService.h @@ -150,21 +150,21 @@ class ClipboardService : public ::Editor::Services::IEditorService, public: // virtual function thunks // NOLINTBEGIN - MCAPI ::Scripting::Result $init(); + MCFOLD ::Scripting::Result $init(); MCAPI ::Scripting::Result $ready(); - MCAPI ::Scripting::Result $quit(); + MCFOLD ::Scripting::Result $quit(); MCAPI ::std::string_view $getServiceName() const; - MCAPI ::mce::UUID const& $getPrimaryItemId(); + MCFOLD ::mce::UUID const& $getPrimaryItemId(); MCAPI ::mce::UUID const& $create(); MCAPI bool $destroy(::mce::UUID const& id); - MCAPI void $setPrimaryItem(::mce::UUID const& id); + MCFOLD void $setPrimaryItem(::mce::UUID const& id); MCAPI ::Editor::Services::ClipboardItem* $getPrimaryItem(); diff --git a/src/mc/editor/services/datastore/DataStoreService.h b/src/mc/editor/services/datastore/DataStoreService.h index b7d3969586..cd5424a778 100644 --- a/src/mc/editor/services/datastore/DataStoreService.h +++ b/src/mc/editor/services/datastore/DataStoreService.h @@ -92,7 +92,7 @@ class DataStoreService : public ::Editor::Services::IEditorService, // NOLINTBEGIN MCAPI explicit DataStoreService(::Editor::ServiceProviderCollection& providers); - MCAPI ::Editor::DataStore::PayloadEventDispatcher& _getDispatcher(); + MCFOLD ::Editor::DataStore::PayloadEventDispatcher& _getDispatcher(); MCAPI void _handleDataStoreEventPacket(::Editor::Network::DataStoreEventPayload const& packet); @@ -138,7 +138,7 @@ class DataStoreService : public ::Editor::Services::IEditorService, // NOLINTBEGIN MCAPI ::Scripting::Result $init(); - MCAPI ::Scripting::Result $quit(); + MCFOLD ::Scripting::Result $quit(); MCAPI ::Scripting::Result $dispatchEvent( ::HashedString const& dataTag, @@ -150,7 +150,7 @@ class DataStoreService : public ::Editor::Services::IEditorService, MCAPI ::Json::Value $getPayload(::HashedString const& dataTag, ::Editor::DataStore::PayloadDescription const& desc) const; - MCAPI ::Bedrock::PubSub::Subscription $listenForEvent( + MCFOLD ::Bedrock::PubSub::Subscription $listenForEvent( ::std::function< void(::HashedString const&, ::Editor::DataStore::EventType, ::Json::Value const&, ::Editor::DataStore::PayloadDescription const&)> callback diff --git a/src/mc/editor/services/datatransfer/DataTransferServiceRequestDataPayload.h b/src/mc/editor/services/datatransfer/DataTransferServiceRequestDataPayload.h index bf0986fd82..83fb626e33 100644 --- a/src/mc/editor/services/datatransfer/DataTransferServiceRequestDataPayload.h +++ b/src/mc/editor/services/datatransfer/DataTransferServiceRequestDataPayload.h @@ -43,7 +43,7 @@ class DataTransferServiceRequestDataPayload public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND public: diff --git a/src/mc/editor/services/datatransfer/DataTransferServiceSendClipboardDataPayload.h b/src/mc/editor/services/datatransfer/DataTransferServiceSendClipboardDataPayload.h index 2eefa2580e..3932867115 100644 --- a/src/mc/editor/services/datatransfer/DataTransferServiceSendClipboardDataPayload.h +++ b/src/mc/editor/services/datatransfer/DataTransferServiceSendClipboardDataPayload.h @@ -42,7 +42,7 @@ class DataTransferServiceSendClipboardDataPayload public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND public: diff --git a/src/mc/editor/services/datatransfer/DataTransferServiceSendDataPayload.h b/src/mc/editor/services/datatransfer/DataTransferServiceSendDataPayload.h index 36f5776938..432105f99a 100644 --- a/src/mc/editor/services/datatransfer/DataTransferServiceSendDataPayload.h +++ b/src/mc/editor/services/datatransfer/DataTransferServiceSendDataPayload.h @@ -43,7 +43,7 @@ class DataTransferServiceSendDataPayload public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND public: diff --git a/src/mc/editor/services/datatransfer/ServerDataTransferService.h b/src/mc/editor/services/datatransfer/ServerDataTransferService.h index ce5bc9663f..dac5fca06a 100644 --- a/src/mc/editor/services/datatransfer/ServerDataTransferService.h +++ b/src/mc/editor/services/datatransfer/ServerDataTransferService.h @@ -54,7 +54,7 @@ class ServerDataTransferService : public ::Editor::Services::IEditorService, public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; @@ -166,7 +166,7 @@ class ServerDataTransferService : public ::Editor::Services::IEditorService, // NOLINTBEGIN MCAPI ::Scripting::Result $init(); - MCAPI ::Scripting::Result $quit(); + MCFOLD ::Scripting::Result $quit(); MCAPI ::std::string_view $getServiceName() const; diff --git a/src/mc/editor/services/native_brush/NativeBrushSetBrushBlockMaskPayload.h b/src/mc/editor/services/native_brush/NativeBrushSetBrushBlockMaskPayload.h index 19d703f5bc..59a850d237 100644 --- a/src/mc/editor/services/native_brush/NativeBrushSetBrushBlockMaskPayload.h +++ b/src/mc/editor/services/native_brush/NativeBrushSetBrushBlockMaskPayload.h @@ -42,7 +42,7 @@ class NativeBrushSetBrushBlockMaskPayload public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND public: diff --git a/src/mc/editor/services/native_brush/NativeBrushSetBrushShapeOffsetsPayload.h b/src/mc/editor/services/native_brush/NativeBrushSetBrushShapeOffsetsPayload.h index ce94937569..6d65147b03 100644 --- a/src/mc/editor/services/native_brush/NativeBrushSetBrushShapeOffsetsPayload.h +++ b/src/mc/editor/services/native_brush/NativeBrushSetBrushShapeOffsetsPayload.h @@ -42,7 +42,7 @@ class NativeBrushSetBrushShapeOffsetsPayload public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND public: diff --git a/src/mc/editor/services/network/PayloadService.h b/src/mc/editor/services/network/PayloadService.h index 9ba6959449..ceb056144f 100644 --- a/src/mc/editor/services/network/PayloadService.h +++ b/src/mc/editor/services/network/PayloadService.h @@ -64,7 +64,7 @@ class PayloadService : public ::Editor::Services::IEditorService, public ::Edito public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; @@ -223,7 +223,7 @@ class PayloadService : public ::Editor::Services::IEditorService, public ::Edito public: // virtual function thunks // NOLINTBEGIN - MCAPI ::Scripting::Result $init(); + MCFOLD ::Scripting::Result $init(); MCAPI ::Scripting::Result $quit(); diff --git a/src/mc/editor/services/persistence/EditorPersistenceService.h b/src/mc/editor/services/persistence/EditorPersistenceService.h index a610613f76..d1f5195024 100644 --- a/src/mc/editor/services/persistence/EditorPersistenceService.h +++ b/src/mc/editor/services/persistence/EditorPersistenceService.h @@ -135,7 +135,7 @@ class EditorPersistenceService : public ::Editor::Services::IEditorService, public: // virtual function thunks // NOLINTBEGIN - MCAPI ::Scripting::Result $init(); + MCFOLD ::Scripting::Result $init(); MCAPI ::Scripting::Result $quit(); @@ -143,7 +143,7 @@ class EditorPersistenceService : public ::Editor::Services::IEditorService, MCAPI ::std::string_view $getServiceName() const; - MCAPI ::Scripting::Result_deprecated<::Bedrock::PubSub::Subscription> + MCFOLD ::Scripting::Result_deprecated<::Bedrock::PubSub::Subscription> $listenForPersistDataChanged(::std::function func); MCAPI ::Scripting::Result_deprecated<::Bedrock::PubSub::Subscription> $listenForPersistDataRemoved( @@ -168,11 +168,11 @@ class EditorPersistenceService : public ::Editor::Services::IEditorService, MCAPI ::Scripting::Result<::std::vector<::HashedString>, ::Scripting::Error> $getKeysStartWith(::std::string const prefix, ::Editor::Services::PersistentDataType const dataType) const; - MCAPI void $_removePersistData(::HashedString const&, ::Editor::Services::PersistentDataType const); + MCFOLD void $_removePersistData(::HashedString const&, ::Editor::Services::PersistentDataType const); - MCAPI void $_tick(::Editor::ServiceProviderCollection&); + MCFOLD void $_tick(::Editor::ServiceProviderCollection&); - MCAPI ::std::unique_ptr<::cereal::ReflectionCtx>& $getCerealContext(); + MCFOLD ::std::unique_ptr<::cereal::ReflectionCtx>& $getCerealContext(); // NOLINTEND public: diff --git a/src/mc/editor/services/sample/EmptySampleService.h b/src/mc/editor/services/sample/EmptySampleService.h index fde7f2553a..4d5fa33152 100644 --- a/src/mc/editor/services/sample/EmptySampleService.h +++ b/src/mc/editor/services/sample/EmptySampleService.h @@ -56,13 +56,13 @@ class EmptySampleService : public ::Editor::Services::IEditorService, public: // virtual function thunks // NOLINTBEGIN - MCAPI ::Scripting::Result $init(); + MCFOLD ::Scripting::Result $init(); - MCAPI ::Scripting::Result $quit(); + MCFOLD ::Scripting::Result $quit(); MCAPI ::std::string_view $getServiceName() const; - MCAPI void $SampleMethod() const; + MCFOLD void $SampleMethod() const; // NOLINTEND public: diff --git a/src/mc/editor/services/settings/EditorSettingsService.h b/src/mc/editor/services/settings/EditorSettingsService.h index 3943558c1d..ad64d14ab0 100644 --- a/src/mc/editor/services/settings/EditorSettingsService.h +++ b/src/mc/editor/services/settings/EditorSettingsService.h @@ -171,19 +171,19 @@ class EditorSettingsService : public ::Editor::Services::IEditorService, // NOLINTBEGIN MCAPI ::Scripting::Result $init(); - MCAPI ::Scripting::Result $quit(); + MCFOLD ::Scripting::Result $quit(); - MCAPI ::Editor::Settings::Graphics& $getGraphicsSettings(); + MCFOLD ::Editor::Settings::Graphics& $getGraphicsSettings(); - MCAPI ::Editor::Settings::Graphics const& $getGraphicsSettings() const; + MCFOLD ::Editor::Settings::Graphics const& $getGraphicsSettings() const; - MCAPI ::Editor::Settings::Speed& $getSpeedSettings(); + MCFOLD ::Editor::Settings::Speed& $getSpeedSettings(); - MCAPI ::Editor::Settings::Speed const& $getSpeedSettings() const; + MCFOLD ::Editor::Settings::Speed const& $getSpeedSettings() const; - MCAPI ::Editor::Settings::Theme& $getThemeSettings(); + MCFOLD ::Editor::Settings::Theme& $getThemeSettings(); - MCAPI ::Editor::Settings::Theme const& $getThemeSettings() const; + MCFOLD ::Editor::Settings::Theme const& $getThemeSettings() const; MCAPI ::Scripting::Result_deprecated<::Bedrock::PubSub::Subscription> $listenForGraphicsSettingsChanged(::std::function func); @@ -191,7 +191,7 @@ class EditorSettingsService : public ::Editor::Services::IEditorService, MCAPI ::Bedrock::PubSub::Subscription $listenForSpeedSettingsChanged(::std::function func); - MCAPI ::Bedrock::PubSub::Subscription + MCFOLD ::Bedrock::PubSub::Subscription $listenForThemeSettingsChanged(::std::function func); MCAPI ::Bedrock::PubSub::Subscription $listenForCurrentThemeChanged(::std::function func @@ -209,22 +209,22 @@ class EditorSettingsService : public ::Editor::Services::IEditorService, MCAPI ::Bedrock::PubSub::Subscription $listenForThemeDeleted(::std::function func); - MCAPI void $_handleGraphicsSettingsChangedPayload(::Editor::Network::GraphicsSettingsChangedPayload const&); + MCFOLD void $_handleGraphicsSettingsChangedPayload(::Editor::Network::GraphicsSettingsChangedPayload const&); - MCAPI void $_handleSpeedSettingsChangedPayload(::Editor::Network::SpeedSettingsChangedPayload const&); + MCFOLD void $_handleSpeedSettingsChangedPayload(::Editor::Network::SpeedSettingsChangedPayload const&); - MCAPI void $_handleThemeSettingsChangedPayload(::Editor::Network::ThemeSettingsChangedPayload const&); + MCFOLD void $_handleThemeSettingsChangedPayload(::Editor::Network::ThemeSettingsChangedPayload const&); - MCAPI void + MCFOLD void $_handleThemeSettingsCurrentThemeChangedPayload(::Editor::Network::ThemeSettingsCurrentThemeChangedPayload const&); - MCAPI void + MCFOLD void $_handleThemeSettingsNewThemeCreatedPayload(::Editor::Network::ThemeSettingsNewThemeCreatedPayload const&); - MCAPI void + MCFOLD void $_handleThemeSettingsThemeColorUpdatedPayload(::Editor::Network::ThemeSettingsThemeColorUpdatedPayload const&); - MCAPI void $_handleThemeSettingsThemeDeletedPayload(::Editor::Network::ThemeSettingsThemeDeletedPayload const&); + MCFOLD void $_handleThemeSettingsThemeDeletedPayload(::Editor::Network::ThemeSettingsThemeDeletedPayload const&); // NOLINTEND public: diff --git a/src/mc/editor/services/settings/GraphicsSettingsChangedPayload.h b/src/mc/editor/services/settings/GraphicsSettingsChangedPayload.h index 53829d40b6..792b924f18 100644 --- a/src/mc/editor/services/settings/GraphicsSettingsChangedPayload.h +++ b/src/mc/editor/services/settings/GraphicsSettingsChangedPayload.h @@ -39,7 +39,7 @@ class GraphicsSettingsChangedPayload // NOLINTBEGIN MCAPI explicit GraphicsSettingsChangedPayload(::Editor::Settings::GraphicsProps const& props); - MCAPI ::Editor::Settings::GraphicsProps const& getGraphicsSettingsProps() const; + MCFOLD ::Editor::Settings::GraphicsProps const& getGraphicsSettingsProps() const; // NOLINTEND public: diff --git a/src/mc/editor/services/settings/SpeedSettingsChangedPayload.h b/src/mc/editor/services/settings/SpeedSettingsChangedPayload.h index 5bc8159200..01e4619ce0 100644 --- a/src/mc/editor/services/settings/SpeedSettingsChangedPayload.h +++ b/src/mc/editor/services/settings/SpeedSettingsChangedPayload.h @@ -39,7 +39,7 @@ class SpeedSettingsChangedPayload // NOLINTBEGIN MCAPI explicit SpeedSettingsChangedPayload(::Editor::Settings::SpeedProps const& props); - MCAPI ::Editor::Settings::SpeedProps const& getSpeedSettingsProps() const; + MCFOLD ::Editor::Settings::SpeedProps const& getSpeedSettingsProps() const; // NOLINTEND public: diff --git a/src/mc/editor/services/settings/ThemeSettingsChangedPayload.h b/src/mc/editor/services/settings/ThemeSettingsChangedPayload.h index e77273101c..fa14b4e41a 100644 --- a/src/mc/editor/services/settings/ThemeSettingsChangedPayload.h +++ b/src/mc/editor/services/settings/ThemeSettingsChangedPayload.h @@ -39,7 +39,7 @@ class ThemeSettingsChangedPayload // NOLINTBEGIN MCAPI explicit ThemeSettingsChangedPayload(::Editor::Settings::ThemeProps const& props); - MCAPI ::Editor::Settings::ThemeProps const& getThemeSettingsProps() const; + MCFOLD ::Editor::Settings::ThemeProps const& getThemeSettingsProps() const; // NOLINTEND public: diff --git a/src/mc/editor/services/settings/ThemeSettingsCurrentThemeChangedPayload.h b/src/mc/editor/services/settings/ThemeSettingsCurrentThemeChangedPayload.h index e540aec052..cec4aed4f9 100644 --- a/src/mc/editor/services/settings/ThemeSettingsCurrentThemeChangedPayload.h +++ b/src/mc/editor/services/settings/ThemeSettingsCurrentThemeChangedPayload.h @@ -38,7 +38,7 @@ class ThemeSettingsCurrentThemeChangedPayload // NOLINTBEGIN MCAPI explicit ThemeSettingsCurrentThemeChangedPayload(::std::string const& themeId); - MCAPI ::std::string const& getThemeId() const; + MCFOLD ::std::string const& getThemeId() const; // NOLINTEND public: @@ -56,7 +56,7 @@ class ThemeSettingsCurrentThemeChangedPayload public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND public: diff --git a/src/mc/editor/services/settings/ThemeSettingsNewThemeCreatedPayload.h b/src/mc/editor/services/settings/ThemeSettingsNewThemeCreatedPayload.h index cfc149e169..32abb17dbf 100644 --- a/src/mc/editor/services/settings/ThemeSettingsNewThemeCreatedPayload.h +++ b/src/mc/editor/services/settings/ThemeSettingsNewThemeCreatedPayload.h @@ -44,11 +44,11 @@ class ThemeSettingsNewThemeCreatedPayload ::std::optional<::std::string> const& sourceId ); - MCAPI ::std::optional<::std::string> const& getSourceId() const; + MCFOLD ::std::optional<::std::string> const& getSourceId() const; - MCAPI ::std::string const& getThemeId() const; + MCFOLD ::std::string const& getThemeId() const; - MCAPI ::std::optional<::std::string> const& getThemeName() const; + MCFOLD ::std::optional<::std::string> const& getThemeName() const; MCAPI ::Editor::Network::ThemeSettingsNewThemeCreatedPayload& operator=(::Editor::Network::ThemeSettingsNewThemeCreatedPayload&&); diff --git a/src/mc/editor/services/settings/ThemeSettingsThemeColorUpdatedPayload.h b/src/mc/editor/services/settings/ThemeSettingsThemeColorUpdatedPayload.h index 0e01bd850d..d2d9aaa3af 100644 --- a/src/mc/editor/services/settings/ThemeSettingsThemeColorUpdatedPayload.h +++ b/src/mc/editor/services/settings/ThemeSettingsThemeColorUpdatedPayload.h @@ -46,11 +46,11 @@ class ThemeSettingsThemeColorUpdatedPayload ::mce::Color const& color ); - MCAPI ::mce::Color const& getColor() const; + MCFOLD ::mce::Color const& getColor() const; - MCAPI ::Editor::Settings::ThemeSettingsColorKey getColorKey() const; + MCFOLD ::Editor::Settings::ThemeSettingsColorKey getColorKey() const; - MCAPI ::std::string const& getThemeId() const; + MCFOLD ::std::string const& getThemeId() const; // NOLINTEND public: @@ -69,7 +69,7 @@ class ThemeSettingsThemeColorUpdatedPayload public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND public: diff --git a/src/mc/editor/services/settings/ThemeSettingsThemeDeletedPayload.h b/src/mc/editor/services/settings/ThemeSettingsThemeDeletedPayload.h index 547c2d3bec..fdc91a1342 100644 --- a/src/mc/editor/services/settings/ThemeSettingsThemeDeletedPayload.h +++ b/src/mc/editor/services/settings/ThemeSettingsThemeDeletedPayload.h @@ -38,7 +38,7 @@ class ThemeSettingsThemeDeletedPayload // NOLINTBEGIN MCAPI explicit ThemeSettingsThemeDeletedPayload(::std::string const& themeId); - MCAPI ::std::string const& getThemeId() const; + MCFOLD ::std::string const& getThemeId() const; // NOLINTEND public: @@ -56,7 +56,7 @@ class ThemeSettingsThemeDeletedPayload public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND public: diff --git a/src/mc/editor/services/state/ModeChangedPayload.h b/src/mc/editor/services/state/ModeChangedPayload.h index d2570547d9..4c5bc4a8f5 100644 --- a/src/mc/editor/services/state/ModeChangedPayload.h +++ b/src/mc/editor/services/state/ModeChangedPayload.h @@ -38,7 +38,7 @@ class ModeChangedPayload : public ::Editor::Network::NetworkPayload<::Editor::Ne // NOLINTBEGIN MCAPI explicit ModeChangedPayload(::Editor::Mode newMode); - MCAPI ::Editor::Mode getNewMode() const; + MCFOLD ::Editor::Mode getNewMode() const; // NOLINTEND public: diff --git a/src/mc/editor/services/state/ModeService.h b/src/mc/editor/services/state/ModeService.h index 52de31208b..386d77a87a 100644 --- a/src/mc/editor/services/state/ModeService.h +++ b/src/mc/editor/services/state/ModeService.h @@ -91,11 +91,11 @@ class ModeService : public ::Editor::Services::IEditorService, public ::Editor:: MCAPI ::Scripting::Result $quit(); - MCAPI ::Editor::Mode $getMode() const; + MCFOLD ::Editor::Mode $getMode() const; MCAPI ::Scripting::Result $trySetMode(::Editor::Mode newMode); - MCAPI ::Scripting::Result_deprecated<::Bedrock::PubSub::Subscription> + MCFOLD ::Scripting::Result_deprecated<::Bedrock::PubSub::Subscription> $listenForModeChange(::std::function func); // NOLINTEND diff --git a/src/mc/editor/services/state/PlayerStateControllerService.h b/src/mc/editor/services/state/PlayerStateControllerService.h index 9f6beea8f6..23be0a20e3 100644 --- a/src/mc/editor/services/state/PlayerStateControllerService.h +++ b/src/mc/editor/services/state/PlayerStateControllerService.h @@ -97,7 +97,7 @@ class PlayerStateControllerService : public ::Editor::Services::IEditorService { MCAPI void $_onEnterToolMode(); - MCAPI void $_onExitToolMode(); + MCFOLD void $_onExitToolMode(); MCAPI void $_onEnterCrosshairMode(); diff --git a/src/mc/editor/services/structure/ServerStructureService.h b/src/mc/editor/services/structure/ServerStructureService.h index 19e99b0b23..afe94a7d8a 100644 --- a/src/mc/editor/services/structure/ServerStructureService.h +++ b/src/mc/editor/services/structure/ServerStructureService.h @@ -86,7 +86,7 @@ class ServerStructureService : public ::Editor::Services::IEditorService, // NOLINTBEGIN MCAPI ::Scripting::Result $init(); - MCAPI ::Scripting::Result $quit(); + MCFOLD ::Scripting::Result $quit(); MCAPI ::std::string_view $getServiceName() const; diff --git a/src/mc/editor/services/telemetry/TelemetryService.h b/src/mc/editor/services/telemetry/TelemetryService.h index 42f8943363..7e91e16dbe 100644 --- a/src/mc/editor/services/telemetry/TelemetryService.h +++ b/src/mc/editor/services/telemetry/TelemetryService.h @@ -89,9 +89,9 @@ class TelemetryService : public ::Editor::Services::IEditorService, public: // virtual function thunks // NOLINTBEGIN - MCAPI ::Scripting::Result $init(); + MCFOLD ::Scripting::Result $init(); - MCAPI ::Scripting::Result $ready(); + MCFOLD ::Scripting::Result $ready(); MCAPI ::Scripting::Result $quit(); diff --git a/src/mc/editor/services/tickingarea/EditorTickingAreaService.h b/src/mc/editor/services/tickingarea/EditorTickingAreaService.h index 21b1a60d88..3cd93eebd1 100644 --- a/src/mc/editor/services/tickingarea/EditorTickingAreaService.h +++ b/src/mc/editor/services/tickingarea/EditorTickingAreaService.h @@ -76,7 +76,7 @@ class EditorTickingAreaService : public ::Editor::Services::IEditorService, // NOLINTBEGIN MCAPI ::Scripting::Result $init(); - MCAPI ::Scripting::Result $ready(); + MCFOLD ::Scripting::Result $ready(); MCAPI ::Scripting::Result $quit(); diff --git a/src/mc/editor/services/widgets/WidgetAddClipboardComponentPayload.h b/src/mc/editor/services/widgets/WidgetAddClipboardComponentPayload.h index 8db595081f..2b17a468e8 100644 --- a/src/mc/editor/services/widgets/WidgetAddClipboardComponentPayload.h +++ b/src/mc/editor/services/widgets/WidgetAddClipboardComponentPayload.h @@ -51,7 +51,7 @@ class WidgetAddClipboardComponentPayload public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND public: diff --git a/src/mc/editor/services/widgets/WidgetAddGizmoComponentPayload.h b/src/mc/editor/services/widgets/WidgetAddGizmoComponentPayload.h index 4cbb8d8370..db4086c4a6 100644 --- a/src/mc/editor/services/widgets/WidgetAddGizmoComponentPayload.h +++ b/src/mc/editor/services/widgets/WidgetAddGizmoComponentPayload.h @@ -47,7 +47,7 @@ class WidgetAddGizmoComponentPayload public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND public: diff --git a/src/mc/editor/services/widgets/WidgetAddGuideSensorComponentPayload.h b/src/mc/editor/services/widgets/WidgetAddGuideSensorComponentPayload.h index 26f9a0aece..11d0923144 100644 --- a/src/mc/editor/services/widgets/WidgetAddGuideSensorComponentPayload.h +++ b/src/mc/editor/services/widgets/WidgetAddGuideSensorComponentPayload.h @@ -32,7 +32,7 @@ class WidgetAddGuideSensorComponentPayload public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND public: diff --git a/src/mc/editor/services/widgets/WidgetAddRenderPrimComponentPayload.h b/src/mc/editor/services/widgets/WidgetAddRenderPrimComponentPayload.h index f7f39a3cc3..339660df84 100644 --- a/src/mc/editor/services/widgets/WidgetAddRenderPrimComponentPayload.h +++ b/src/mc/editor/services/widgets/WidgetAddRenderPrimComponentPayload.h @@ -44,7 +44,7 @@ class WidgetAddRenderPrimComponentPayload public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND public: diff --git a/src/mc/editor/services/widgets/WidgetAddTextComponentPayload.h b/src/mc/editor/services/widgets/WidgetAddTextComponentPayload.h index 9fc0ef620b..9569e4593d 100644 --- a/src/mc/editor/services/widgets/WidgetAddTextComponentPayload.h +++ b/src/mc/editor/services/widgets/WidgetAddTextComponentPayload.h @@ -45,7 +45,7 @@ class WidgetAddTextComponentPayload public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND public: diff --git a/src/mc/editor/settings/Graphics.h b/src/mc/editor/settings/Graphics.h index 658abd55bf..ab9608dca7 100644 --- a/src/mc/editor/settings/Graphics.h +++ b/src/mc/editor/settings/Graphics.h @@ -29,11 +29,11 @@ class Graphics { // NOLINTBEGIN MCAPI explicit Graphics(::std::function callback); - MCAPI bool getShowChunkBoundaries() const; + MCFOLD bool getShowChunkBoundaries() const; - MCAPI bool getShowCompass() const; + MCFOLD bool getShowCompass() const; - MCAPI bool getShowInvisibleBlocks() const; + MCFOLD bool getShowInvisibleBlocks() const; MCAPI void setShowChunkBoundaries(bool shouldShow); @@ -61,7 +61,7 @@ class Graphics { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/editor/structure/EditorStructureTemplate.h b/src/mc/editor/structure/EditorStructureTemplate.h index 474ac2318d..b862609b8c 100644 --- a/src/mc/editor/structure/EditorStructureTemplate.h +++ b/src/mc/editor/structure/EditorStructureTemplate.h @@ -126,7 +126,7 @@ class EditorStructureTemplate : public ::StructureTemplate { MCAPI bool $_allowReadBlock(::BlockPos const& position, ::Block const& block) const; - MCAPI bool $_allowReadActor(::Actor const& actor) const; + MCFOLD bool $_allowReadActor(::Actor const& actor) const; // NOLINTEND public: diff --git a/src/mc/editor/structure/StructureCopyToClipboardPayload.h b/src/mc/editor/structure/StructureCopyToClipboardPayload.h index 3bb15f2425..846dd98970 100644 --- a/src/mc/editor/structure/StructureCopyToClipboardPayload.h +++ b/src/mc/editor/structure/StructureCopyToClipboardPayload.h @@ -35,7 +35,7 @@ class StructureCopyToClipboardPayload public: // member functions // NOLINTBEGIN - MCAPI ::Editor::Network::StructureCopyToClipboardPayload& + MCFOLD ::Editor::Network::StructureCopyToClipboardPayload& operator=(::Editor::Network::StructureCopyToClipboardPayload const&); // NOLINTEND diff --git a/src/mc/editor/structure/StructureDataPayload.h b/src/mc/editor/structure/StructureDataPayload.h index cead0ebde2..55aee603d9 100644 --- a/src/mc/editor/structure/StructureDataPayload.h +++ b/src/mc/editor/structure/StructureDataPayload.h @@ -42,7 +42,7 @@ class StructureDataPayload : public ::Editor::Network::NetworkPayload<::Editor:: public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND public: diff --git a/src/mc/editor/structure/StructureFromClipboardPayload.h b/src/mc/editor/structure/StructureFromClipboardPayload.h index 897c63202a..1dab809ed3 100644 --- a/src/mc/editor/structure/StructureFromClipboardPayload.h +++ b/src/mc/editor/structure/StructureFromClipboardPayload.h @@ -35,7 +35,7 @@ class StructureFromClipboardPayload public: // member functions // NOLINTBEGIN - MCAPI ::Editor::Network::StructureFromClipboardPayload& + MCFOLD ::Editor::Network::StructureFromClipboardPayload& operator=(::Editor::Network::StructureFromClipboardPayload const&); // NOLINTEND diff --git a/src/mc/editor/structure/StructureListPayload.h b/src/mc/editor/structure/StructureListPayload.h index 8e2e35a3ed..54972241b5 100644 --- a/src/mc/editor/structure/StructureListPayload.h +++ b/src/mc/editor/structure/StructureListPayload.h @@ -41,7 +41,7 @@ class StructureListPayload : public ::Editor::Network::NetworkPayload<::Editor:: public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND public: diff --git a/src/mc/entity/components/ActorDefinitionIdentifierComponent.h b/src/mc/entity/components/ActorDefinitionIdentifierComponent.h index 4d23f6b3e0..6efeff1bf5 100644 --- a/src/mc/entity/components/ActorDefinitionIdentifierComponent.h +++ b/src/mc/entity/components/ActorDefinitionIdentifierComponent.h @@ -24,6 +24,6 @@ struct ActorDefinitionIdentifierComponent { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/entity/components/ActorEquipmentComponent.h b/src/mc/entity/components/ActorEquipmentComponent.h index 0d5d9da801..c9469b86c5 100644 --- a/src/mc/entity/components/ActorEquipmentComponent.h +++ b/src/mc/entity/components/ActorEquipmentComponent.h @@ -25,6 +25,6 @@ struct ActorEquipmentComponent { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/entity/components/ActorLimitedLifetimeComponent.h b/src/mc/entity/components/ActorLimitedLifetimeComponent.h index 6241041142..5bed5f3bf9 100644 --- a/src/mc/entity/components/ActorLimitedLifetimeComponent.h +++ b/src/mc/entity/components/ActorLimitedLifetimeComponent.h @@ -30,6 +30,6 @@ class ActorLimitedLifetimeComponent { public: // constructor thunks // NOLINTBEGIN - MCAPI void* $ctor(); + MCFOLD void* $ctor(); // NOLINTEND }; diff --git a/src/mc/entity/components/ActorOwnerComponent.h b/src/mc/entity/components/ActorOwnerComponent.h index 85d87aee18..a551bdea48 100644 --- a/src/mc/entity/components/ActorOwnerComponent.h +++ b/src/mc/entity/components/ActorOwnerComponent.h @@ -27,7 +27,7 @@ class ActorOwnerComponent { MCAPI explicit ActorOwnerComponent(::std::unique_ptr<::Actor> uniqueActor); - MCAPI ::Actor& getActor() const; + MCFOLD ::Actor& getActor() const; MCAPI ::Actor& getActor(); @@ -39,7 +39,7 @@ class ActorOwnerComponent { public: // constructor thunks // NOLINTBEGIN - MCAPI void* $ctor(::ActorOwnerComponent&& other); + MCFOLD void* $ctor(::ActorOwnerComponent&& other); MCAPI void* $ctor(::std::unique_ptr<::Actor> uniqueActor); // NOLINTEND @@ -47,6 +47,6 @@ class ActorOwnerComponent { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/entity/components/AgentCommandComponent.h b/src/mc/entity/components/AgentCommandComponent.h index 399977bdb0..c44e25c992 100644 --- a/src/mc/entity/components/AgentCommandComponent.h +++ b/src/mc/entity/components/AgentCommandComponent.h @@ -27,7 +27,7 @@ class AgentCommandComponent { MCAPI bool addCommand(::std::unique_ptr<::AgentCommands::Command> commandObj); - MCAPI ::std::unique_ptr<::AgentCommands::Command> const& getCurrentCommand() const; + MCFOLD ::std::unique_ptr<::AgentCommands::Command> const& getCurrentCommand() const; MCAPI void initFromDefinition(::Actor& owner); @@ -37,6 +37,6 @@ class AgentCommandComponent { public: // constructor thunks // NOLINTBEGIN - MCAPI void* $ctor(); + MCFOLD void* $ctor(); // NOLINTEND }; diff --git a/src/mc/entity/components/AttributeRequestComponent.h b/src/mc/entity/components/AttributeRequestComponent.h index 17be23adc5..faef564f63 100644 --- a/src/mc/entity/components/AttributeRequestComponent.h +++ b/src/mc/entity/components/AttributeRequestComponent.h @@ -35,7 +35,7 @@ struct AttributeRequestComponent { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; @@ -62,7 +62,7 @@ struct AttributeRequestComponent { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/entity/components/AttributesComponent.h b/src/mc/entity/components/AttributesComponent.h index 86180da161..4d247c4d23 100644 --- a/src/mc/entity/components/AttributesComponent.h +++ b/src/mc/entity/components/AttributesComponent.h @@ -30,9 +30,9 @@ struct AttributesComponent { public: // constructor thunks // NOLINTBEGIN - MCAPI void* $ctor(); + MCFOLD void* $ctor(); - MCAPI void* $ctor(::AttributesComponent const& other); + MCFOLD void* $ctor(::AttributesComponent const& other); MCAPI void* $ctor(::AttributesComponent&&); // NOLINTEND diff --git a/src/mc/entity/components/BehaviorTreeDescription.h b/src/mc/entity/components/BehaviorTreeDescription.h index 0d0f898194..d974e2f42f 100644 --- a/src/mc/entity/components/BehaviorTreeDescription.h +++ b/src/mc/entity/components/BehaviorTreeDescription.h @@ -37,7 +37,7 @@ struct BehaviorTreeDescription : public ::ActorComponentDescription { public: // virtual function thunks // NOLINTBEGIN - MCAPI char const* $getJsonName() const; + MCFOLD char const* $getJsonName() const; // NOLINTEND public: diff --git a/src/mc/entity/components/BlockSourceComponent.h b/src/mc/entity/components/BlockSourceComponent.h index be49fa7e4e..88007b8caa 100644 --- a/src/mc/entity/components/BlockSourceComponent.h +++ b/src/mc/entity/components/BlockSourceComponent.h @@ -29,7 +29,7 @@ class BlockSourceComponent { // NOLINTBEGIN MCAPI explicit BlockSourceComponent(::WeakRef<::BlockSource> weakBlockSource); - MCAPI ::StackRefResult<::BlockSource> tryGetBlockSource() const; + MCFOLD ::StackRefResult<::BlockSource> tryGetBlockSource() const; // NOLINTEND public: diff --git a/src/mc/entity/components/BlockSourceFactoryImpl.h b/src/mc/entity/components/BlockSourceFactoryImpl.h index f52e0aa63b..bc06e3f9c3 100644 --- a/src/mc/entity/components/BlockSourceFactoryImpl.h +++ b/src/mc/entity/components/BlockSourceFactoryImpl.h @@ -36,6 +36,6 @@ class BlockSourceFactoryImpl { public: // constructor thunks // NOLINTBEGIN - MCAPI void* $ctor(::gsl::not_null<::ILevel*> level); + MCFOLD void* $ctor(::gsl::not_null<::ILevel*> level); // NOLINTEND }; diff --git a/src/mc/entity/components/BreakDoorAnnotationDescription.h b/src/mc/entity/components/BreakDoorAnnotationDescription.h index 21498f83ac..e065ef52ed 100644 --- a/src/mc/entity/components/BreakDoorAnnotationDescription.h +++ b/src/mc/entity/components/BreakDoorAnnotationDescription.h @@ -40,7 +40,7 @@ struct BreakDoorAnnotationDescription : public ::ActorComponentDescription { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND public: diff --git a/src/mc/entity/components/ClientInputLockComponent.h b/src/mc/entity/components/ClientInputLockComponent.h index 2ae85ce62f..453405b64a 100644 --- a/src/mc/entity/components/ClientInputLockComponent.h +++ b/src/mc/entity/components/ClientInputLockComponent.h @@ -44,7 +44,7 @@ struct ClientInputLockComponent { MCAPI ::Bedrock::PubSub::Subscription registerLockCategoryChangeCallback(::std::function callback); - MCAPI uint serialize() const; + MCFOLD uint serialize() const; MCAPI void setLockCategory(::ClientInputLockCategory category, bool state); diff --git a/src/mc/entity/components/ClientReplayStatePolicy.h b/src/mc/entity/components/ClientReplayStatePolicy.h index d61d3c9328..b1d7fa1a1d 100644 --- a/src/mc/entity/components/ClientReplayStatePolicy.h +++ b/src/mc/entity/components/ClientReplayStatePolicy.h @@ -75,7 +75,7 @@ class ClientReplayStatePolicy : public ::IReplayStatePolicy { public: // virtual function thunks // NOLINTBEGIN - MCAPI bool $isReplayNeeded(::AdvanceFrameResult result) const; + MCFOLD bool $isReplayNeeded(::AdvanceFrameResult result) const; MCAPI bool $canRewindToFrame(::EntityContext const& entity, uint64 rewindFrame); @@ -85,7 +85,7 @@ class ClientReplayStatePolicy : public ::IReplayStatePolicy { MCAPI void $storeCurrentFrameSupported(uint64 currentFrame, ::EntityContext& entity); - MCAPI void $notifyOfExternalCorrection(uint64); + MCFOLD void $notifyOfExternalCorrection(uint64); // NOLINTEND public: diff --git a/src/mc/entity/components/CodebuilderComponent.h b/src/mc/entity/components/CodebuilderComponent.h index 80ba45ebb4..298af78695 100644 --- a/src/mc/entity/components/CodebuilderComponent.h +++ b/src/mc/entity/components/CodebuilderComponent.h @@ -18,6 +18,6 @@ class CodebuilderComponent { public: // member functions // NOLINTBEGIN - MCAPI void resetCodeStatus(); + MCFOLD void resetCodeStatus(); // NOLINTEND }; diff --git a/src/mc/entity/components/CommandBlockComponent.h b/src/mc/entity/components/CommandBlockComponent.h index af0c52c9e0..18d9c80626 100644 --- a/src/mc/entity/components/CommandBlockComponent.h +++ b/src/mc/entity/components/CommandBlockComponent.h @@ -35,11 +35,11 @@ class CommandBlockComponent { MCAPI int decrementTickCount(); - MCAPI ::BaseCommandBlock& getBaseCommandBlock(); + MCFOLD ::BaseCommandBlock& getBaseCommandBlock(); - MCAPI int getCurrentTickCount() const; + MCFOLD int getCurrentTickCount() const; - MCAPI bool getTicking() const; + MCFOLD bool getTicking() const; MCAPI void initFromDefinition(::Actor& owner); diff --git a/src/mc/entity/components/CommandBlockDescription.h b/src/mc/entity/components/CommandBlockDescription.h index 0859960ccb..8fbed96989 100644 --- a/src/mc/entity/components/CommandBlockDescription.h +++ b/src/mc/entity/components/CommandBlockDescription.h @@ -41,13 +41,13 @@ struct CommandBlockDescription : public ::ActorComponentDescription { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND public: // virtual function thunks // NOLINTBEGIN - MCAPI char const* $getJsonName() const; + MCFOLD char const* $getJsonName() const; MCAPI void $deserializeData(::DeserializeDataParams deserializeDataParams); // NOLINTEND diff --git a/src/mc/entity/components/DebugInfoComponent.h b/src/mc/entity/components/DebugInfoComponent.h index 8e86d05bb4..36887aed0b 100644 --- a/src/mc/entity/components/DebugInfoComponent.h +++ b/src/mc/entity/components/DebugInfoComponent.h @@ -47,7 +47,7 @@ class DebugInfoComponent : public ::EventListenerDispatcher<::ActorEventListener public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; @@ -85,7 +85,7 @@ class DebugInfoComponent : public ::EventListenerDispatcher<::ActorEventListener MCAPI void addListener(::HashedString const& messageType, ::NetworkIdentifier source, ::SubClientId subClientId); - MCAPI bool listenersEmpty() const; + MCFOLD bool listenersEmpty() const; MCAPI ::DebugInfoComponent& operator=(::DebugInfoComponent&&); diff --git a/src/mc/entity/components/DepenetrationComponent.h b/src/mc/entity/components/DepenetrationComponent.h index 0292dd50b7..4a81c127fb 100644 --- a/src/mc/entity/components/DepenetrationComponent.h +++ b/src/mc/entity/components/DepenetrationComponent.h @@ -41,6 +41,6 @@ struct DepenetrationComponent { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/entity/components/DisplayObjectMessageRequestComponent.h b/src/mc/entity/components/DisplayObjectMessageRequestComponent.h index 51915a232f..c2915e8a4b 100644 --- a/src/mc/entity/components/DisplayObjectMessageRequestComponent.h +++ b/src/mc/entity/components/DisplayObjectMessageRequestComponent.h @@ -19,6 +19,6 @@ struct DisplayObjectMessageRequestComponent { public: // member functions // NOLINTBEGIN - MCAPI ::DisplayObjectMessageRequestComponent& operator=(::DisplayObjectMessageRequestComponent&&); + MCFOLD ::DisplayObjectMessageRequestComponent& operator=(::DisplayObjectMessageRequestComponent&&); // NOLINTEND }; diff --git a/src/mc/entity/components/DynamicPropertiesComponent.h b/src/mc/entity/components/DynamicPropertiesComponent.h index 0298717f3b..6ac04c23dc 100644 --- a/src/mc/entity/components/DynamicPropertiesComponent.h +++ b/src/mc/entity/components/DynamicPropertiesComponent.h @@ -29,7 +29,7 @@ class DynamicPropertiesComponent { MCAPI void addAdditionalSaveData(::CompoundTag& tag, ::ILevel& level) const; - MCAPI ::DynamicProperties& getProperties(); + MCFOLD ::DynamicProperties& getProperties(); // NOLINTEND public: diff --git a/src/mc/entity/components/EquipItemComponent.h b/src/mc/entity/components/EquipItemComponent.h index f956857ce3..46ef58f541 100644 --- a/src/mc/entity/components/EquipItemComponent.h +++ b/src/mc/entity/components/EquipItemComponent.h @@ -33,6 +33,6 @@ struct EquipItemComponent { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/entity/components/ExecuteEventOnBlockRequest.h b/src/mc/entity/components/ExecuteEventOnBlockRequest.h index 9210e9f68c..d44ed489f3 100644 --- a/src/mc/entity/components/ExecuteEventOnBlockRequest.h +++ b/src/mc/entity/components/ExecuteEventOnBlockRequest.h @@ -25,6 +25,6 @@ struct ExecuteEventOnBlockRequest { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/entity/components/ExternalDataComponent.h b/src/mc/entity/components/ExternalDataComponent.h index 71c2e11dd6..83139736b5 100644 --- a/src/mc/entity/components/ExternalDataComponent.h +++ b/src/mc/entity/components/ExternalDataComponent.h @@ -24,6 +24,6 @@ struct ExternalDataComponent { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/entity/components/FogCommandSettings.h b/src/mc/entity/components/FogCommandSettings.h index 29b3d4fe2d..8c9631731e 100644 --- a/src/mc/entity/components/FogCommandSettings.h +++ b/src/mc/entity/components/FogCommandSettings.h @@ -25,6 +25,6 @@ struct FogCommandSettings { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/entity/components/FreezingComponent.h b/src/mc/entity/components/FreezingComponent.h index ed8ee6021d..306731e929 100644 --- a/src/mc/entity/components/FreezingComponent.h +++ b/src/mc/entity/components/FreezingComponent.h @@ -29,7 +29,7 @@ class FreezingComponent { MCAPI void decreaseFreezingEffect(); - MCAPI float getFreezingEffectStrength() const; + MCFOLD float getFreezingEffectStrength() const; MCAPI void increaseFreezingEffect(); @@ -39,6 +39,6 @@ class FreezingComponent { MCAPI void readAdditionalSaveData(::Actor& owner, ::CompoundTag const& tag, ::DataLoadHelper& dataLoadHelper); - MCAPI void resetFreezingEffect(); + MCFOLD void resetFreezingEffect(); // NOLINTEND }; diff --git a/src/mc/entity/components/GameEventListenerComponent.h b/src/mc/entity/components/GameEventListenerComponent.h index ee481e750e..5dfdc12a0e 100644 --- a/src/mc/entity/components/GameEventListenerComponent.h +++ b/src/mc/entity/components/GameEventListenerComponent.h @@ -30,7 +30,7 @@ class GameEventListenerComponent { MCAPI ::GameEventListenerComponent& operator=(::GameEventListenerComponent&&); - MCAPI ::GameEventDynamicRegistration* tryGetListenerRegistration() const; + MCFOLD ::GameEventDynamicRegistration* tryGetListenerRegistration() const; MCAPI ~GameEventListenerComponent(); // NOLINTEND @@ -38,9 +38,9 @@ class GameEventListenerComponent { public: // constructor thunks // NOLINTBEGIN - MCAPI void* $ctor(); + MCFOLD void* $ctor(); - MCAPI void* $ctor(::GameEventListenerComponent&&); + MCFOLD void* $ctor(::GameEventListenerComponent&&); // NOLINTEND public: diff --git a/src/mc/entity/components/GoalSelectorComponent.h b/src/mc/entity/components/GoalSelectorComponent.h index 102f945b55..2ee44e954e 100644 --- a/src/mc/entity/components/GoalSelectorComponent.h +++ b/src/mc/entity/components/GoalSelectorComponent.h @@ -45,7 +45,7 @@ class GoalSelectorComponent { MCAPI void clearTargetGoals(); - MCAPI ::std::vector<::std::pair>& getGoalMap(); + MCFOLD ::std::vector<::std::pair>& getGoalMap(); MCAPI void onPlayerDimensionChanged(::Player* player, ::DimensionType fromDimension, ::DimensionType toDimension); diff --git a/src/mc/entity/components/InsideBlockEventMap.h b/src/mc/entity/components/InsideBlockEventMap.h index 64894b7e97..bedeed31ed 100644 --- a/src/mc/entity/components/InsideBlockEventMap.h +++ b/src/mc/entity/components/InsideBlockEventMap.h @@ -43,19 +43,19 @@ class InsideBlockEventMap { MCAPI ::gsl::not_null<::Block const*> getBlock() const; - MCAPI ::ActorDefinitionTrigger const& getEnteredEvent() const; + MCFOLD ::ActorDefinitionTrigger const& getEnteredEvent() const; - MCAPI ::ActorDefinitionTrigger const& getExitedEvent() const; + MCFOLD ::ActorDefinitionTrigger const& getExitedEvent() const; MCAPI bool isActorCurrentlyInside() const; - MCAPI bool isIgnoringStates() const; + MCFOLD bool isIgnoringStates() const; - MCAPI bool isWatchingIfActorEnters() const; + MCFOLD bool isWatchingIfActorEnters() const; MCAPI bool isWatchingIfActorExits() const; - MCAPI void setCurrentlyInside(bool isInside); + MCFOLD void setCurrentlyInside(bool isInside); MCAPI void setWasInside(bool wasInside); diff --git a/src/mc/entity/components/LevelComponent.h b/src/mc/entity/components/LevelComponent.h index 2a6ce0c05a..6a1f2da01a 100644 --- a/src/mc/entity/components/LevelComponent.h +++ b/src/mc/entity/components/LevelComponent.h @@ -25,7 +25,7 @@ class LevelComponent { // NOLINTBEGIN MCAPI explicit LevelComponent(::std::unique_ptr<::ILevel> level); - MCAPI ::ILevel& getLevel(); + MCFOLD ::ILevel& getLevel(); MCAPI ~LevelComponent(); // NOLINTEND @@ -33,12 +33,12 @@ class LevelComponent { public: // constructor thunks // NOLINTBEGIN - MCAPI void* $ctor(::std::unique_ptr<::ILevel> level); + MCFOLD void* $ctor(::std::unique_ptr<::ILevel> level); // NOLINTEND public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/entity/components/LoadingScreenPacketSenderComponent.h b/src/mc/entity/components/LoadingScreenPacketSenderComponent.h index 0457a49fdb..86dc575f87 100644 --- a/src/mc/entity/components/LoadingScreenPacketSenderComponent.h +++ b/src/mc/entity/components/LoadingScreenPacketSenderComponent.h @@ -25,12 +25,12 @@ struct LoadingScreenPacketSenderComponent { public: // constructor thunks // NOLINTBEGIN - MCAPI void* $ctor(); + MCFOLD void* $ctor(); // NOLINTEND public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/entity/components/LocalConstBlockSource.h b/src/mc/entity/components/LocalConstBlockSource.h index 500fe6ba9e..079de6959c 100644 --- a/src/mc/entity/components/LocalConstBlockSource.h +++ b/src/mc/entity/components/LocalConstBlockSource.h @@ -24,6 +24,6 @@ class LocalConstBlockSource { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/entity/components/LocalSpatialEntityFetcher.h b/src/mc/entity/components/LocalSpatialEntityFetcher.h index 24475894aa..b8e9967aed 100644 --- a/src/mc/entity/components/LocalSpatialEntityFetcher.h +++ b/src/mc/entity/components/LocalSpatialEntityFetcher.h @@ -24,6 +24,6 @@ class LocalSpatialEntityFetcher { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/entity/components/LookControlComponent.h b/src/mc/entity/components/LookControlComponent.h index 6b1caa4023..1ed38107d0 100644 --- a/src/mc/entity/components/LookControlComponent.h +++ b/src/mc/entity/components/LookControlComponent.h @@ -33,23 +33,23 @@ class LookControlComponent { // NOLINTBEGIN MCAPI LookControlComponent(); - MCAPI bool getHasWantedPosition() const; + MCFOLD bool getHasWantedPosition() const; - MCAPI bool getHasWantedRotation() const; + MCFOLD bool getHasWantedRotation() const; - MCAPI ::Vec3 getWantedPosition() const; + MCFOLD ::Vec3 getWantedPosition() const; MCAPI ::Vec3 getWantedRotation() const; - MCAPI float getXMax() const; + MCFOLD float getXMax() const; - MCAPI float getYMax() const; + MCFOLD float getYMax() const; MCAPI void initialize(::Mob& owner); - MCAPI void setHasWantedPosition(bool hasWantedPosition); + MCFOLD void setHasWantedPosition(bool hasWantedPosition); - MCAPI void setHasWantedRotation(bool hasWantedRotation); + MCFOLD void setHasWantedRotation(bool hasWantedRotation); MCAPI void setInternalType(::std::unique_ptr<::LookControl> type); @@ -61,7 +61,7 @@ class LookControlComponent { MCAPI void setYMax(float yMax); - MCAPI void update(::Mob& owner); + MCFOLD void update(::Mob& owner); // NOLINTEND public: diff --git a/src/mc/entity/components/MingleComponent.h b/src/mc/entity/components/MingleComponent.h index 68cd8345aa..c86bc2246c 100644 --- a/src/mc/entity/components/MingleComponent.h +++ b/src/mc/entity/components/MingleComponent.h @@ -43,7 +43,7 @@ class MingleComponent { MCAPI void resetState(); - MCAPI ::MingleComponent& setMingleState(::MingleComponent::MingleState val); + MCFOLD ::MingleComponent& setMingleState(::MingleComponent::MingleState val); MCAPI ::MingleComponent& setPartnerId(::ActorUniqueID val); // NOLINTEND diff --git a/src/mc/entity/components/MobEffectImmunityComponent.h b/src/mc/entity/components/MobEffectImmunityComponent.h index 407d0f6ffd..9fc491657a 100644 --- a/src/mc/entity/components/MobEffectImmunityComponent.h +++ b/src/mc/entity/components/MobEffectImmunityComponent.h @@ -6,12 +6,6 @@ struct MobEffectImmunityComponent { public: // member variables // NOLINTBEGIN - ::ll::UntypedStorage<8, 24> mUnk6a2e5d; + ::ll::TypedStorage<8, 24, ::std::vector> mMobEffects; // NOLINTEND - -public: - // prevent constructor by default - MobEffectImmunityComponent& operator=(MobEffectImmunityComponent const&); - MobEffectImmunityComponent(MobEffectImmunityComponent const&); - MobEffectImmunityComponent(); }; diff --git a/src/mc/entity/components/MobEffectsComponent.h b/src/mc/entity/components/MobEffectsComponent.h index d564536af5..5f5395e3eb 100644 --- a/src/mc/entity/components/MobEffectsComponent.h +++ b/src/mc/entity/components/MobEffectsComponent.h @@ -2,19 +2,18 @@ #include "mc/_HeaderOutputPredefine.h" +// auto generated forward declare list +// clang-format off +class MobEffectInstance; +// clang-format on + struct MobEffectsComponent { public: // member variables // NOLINTBEGIN - ::ll::UntypedStorage<8, 24> mUnkb62bb4; + ::ll::TypedStorage<8, 24, ::std::vector<::MobEffectInstance>> mMobEffects; // NOLINTEND -public: - // prevent constructor by default - MobEffectsComponent& operator=(MobEffectsComponent const&); - MobEffectsComponent(MobEffectsComponent const&); - MobEffectsComponent(); - public: // member functions // NOLINTBEGIN diff --git a/src/mc/entity/components/MockableOwnedBlockSource.h b/src/mc/entity/components/MockableOwnedBlockSource.h index 40ce60eaed..831969a016 100644 --- a/src/mc/entity/components/MockableOwnedBlockSource.h +++ b/src/mc/entity/components/MockableOwnedBlockSource.h @@ -26,6 +26,6 @@ class MockableOwnedBlockSource { // NOLINTBEGIN MCAPI ::IBlockSource const& get() const; - MCAPI ::IBlockSource& get(); + MCFOLD ::IBlockSource& get(); // NOLINTEND }; diff --git a/src/mc/entity/components/PlayerBlockActions.h b/src/mc/entity/components/PlayerBlockActions.h index 289ac14cf4..29041a3266 100644 --- a/src/mc/entity/components/PlayerBlockActions.h +++ b/src/mc/entity/components/PlayerBlockActions.h @@ -43,6 +43,6 @@ class PlayerBlockActions { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/entity/components/PlayerTickComponent.h b/src/mc/entity/components/PlayerTickComponent.h index 3639ba2842..eae6e7beb1 100644 --- a/src/mc/entity/components/PlayerTickComponent.h +++ b/src/mc/entity/components/PlayerTickComponent.h @@ -47,6 +47,6 @@ struct PlayerTickComponent { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/entity/components/PredictedMovementComponent.h b/src/mc/entity/components/PredictedMovementComponent.h index 943dfa1cc7..4d067f12bb 100644 --- a/src/mc/entity/components/PredictedMovementComponent.h +++ b/src/mc/entity/components/PredictedMovementComponent.h @@ -155,19 +155,19 @@ class PredictedMovementComponent { public: // virtual function thunks // NOLINTBEGIN - MCAPI bool $isValidStartItem() const; + MCFOLD bool $isValidStartItem() const; - MCAPI bool $isAddedActorItem() const; + MCFOLD bool $isAddedActorItem() const; - MCAPI bool $isMotionHintItem() const; + MCFOLD bool $isMotionHintItem() const; - MCAPI ::Vec3 const& $getPos() const; + MCFOLD ::Vec3 const& $getPos() const; - MCAPI ::Vec2 const& $getRot() const; + MCFOLD ::Vec2 const& $getRot() const; - MCAPI float $getYHeadRot() const; + MCFOLD float $getYHeadRot() const; - MCAPI bool $isOnGround() const; + MCFOLD bool $isOnGround() const; // NOLINTEND public: @@ -433,7 +433,7 @@ class PredictedMovementComponent { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/entity/components/PrioritizedGoal.h b/src/mc/entity/components/PrioritizedGoal.h index be5c836dc3..4f2d9488e2 100644 --- a/src/mc/entity/components/PrioritizedGoal.h +++ b/src/mc/entity/components/PrioritizedGoal.h @@ -21,15 +21,15 @@ class PrioritizedGoal { public: // member functions // NOLINTBEGIN - MCAPI int getPriority() const; + MCFOLD int getPriority() const; - MCAPI bool getToStart() const; + MCFOLD bool getToStart() const; - MCAPI bool getUsed() const; + MCFOLD bool getUsed() const; - MCAPI void setToStart(bool start); + MCFOLD void setToStart(bool start); - MCAPI void setUsed(bool used); + MCFOLD void setUsed(bool used); MCAPI ~PrioritizedGoal(); // NOLINTEND @@ -37,6 +37,6 @@ class PrioritizedGoal { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/entity/components/RaidBossComponent.h b/src/mc/entity/components/RaidBossComponent.h index 8e20d82214..f597628fb4 100644 --- a/src/mc/entity/components/RaidBossComponent.h +++ b/src/mc/entity/components/RaidBossComponent.h @@ -46,17 +46,17 @@ class RaidBossComponent { MCAPI void _sendBossEvent(::BossEventUpdateType type, ::Player& player); - MCAPI ::BossBarColor getColor(); + MCFOLD ::BossBarColor getColor(); - MCAPI float getHealthPercent(); + MCFOLD float getHealthPercent(); MCAPI ::std::string getName(); - MCAPI ::ActorUniqueID getOwnerUniqueID(); + MCFOLD ::ActorUniqueID getOwnerUniqueID(); MCAPI bool getRaidInProgress(); - MCAPI ::std::shared_ptr<::Village> getVillage(); + MCFOLD ::std::shared_ptr<::Village> getVillage(); MCAPI bool getWaveStarted(); diff --git a/src/mc/entity/components/RemovePassengersComponent.h b/src/mc/entity/components/RemovePassengersComponent.h index 4e79bbf12d..5bd98216cf 100644 --- a/src/mc/entity/components/RemovePassengersComponent.h +++ b/src/mc/entity/components/RemovePassengersComponent.h @@ -24,6 +24,6 @@ struct RemovePassengersComponent { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/entity/components/RenderingRidingOffsetInfo.h b/src/mc/entity/components/RenderingRidingOffsetInfo.h index 33e70f650a..947784c617 100644 --- a/src/mc/entity/components/RenderingRidingOffsetInfo.h +++ b/src/mc/entity/components/RenderingRidingOffsetInfo.h @@ -35,6 +35,6 @@ struct RenderingRidingOffsetInfo { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/entity/components/ReplayStateComponent.h b/src/mc/entity/components/ReplayStateComponent.h index 75bf43f161..e9b987ce82 100644 --- a/src/mc/entity/components/ReplayStateComponent.h +++ b/src/mc/entity/components/ReplayStateComponent.h @@ -61,7 +61,7 @@ class ReplayStateComponent { MCAPI void enqueueInputSimulation(::std::unique_ptr<::IReplayableActorInput> input); - MCAPI uint64 getCurrentTick() const; + MCFOLD uint64 getCurrentTick() const; MCAPI void notifyOfExternalCorrection() const; diff --git a/src/mc/entity/components/SendPacketsComponent.h b/src/mc/entity/components/SendPacketsComponent.h index febd0775f2..23c0627a2d 100644 --- a/src/mc/entity/components/SendPacketsComponent.h +++ b/src/mc/entity/components/SendPacketsComponent.h @@ -18,6 +18,6 @@ struct SendPacketsComponent { public: // member functions // NOLINTBEGIN - MCAPI ::SendPacketsComponent& operator=(::SendPacketsComponent&&); + MCFOLD ::SendPacketsComponent& operator=(::SendPacketsComponent&&); // NOLINTEND }; diff --git a/src/mc/entity/components/ServerCameraStatesComponent.h b/src/mc/entity/components/ServerCameraStatesComponent.h index bcbfb3b408..89846a713d 100644 --- a/src/mc/entity/components/ServerCameraStatesComponent.h +++ b/src/mc/entity/components/ServerCameraStatesComponent.h @@ -53,7 +53,7 @@ struct ServerCameraStatesComponent { public: // constructor thunks // NOLINTBEGIN - MCAPI void* $ctor(); + MCFOLD void* $ctor(); MCAPI void* $ctor(::CameraPresets const& presets); // NOLINTEND diff --git a/src/mc/entity/components/ServerCorrectionPolicy.h b/src/mc/entity/components/ServerCorrectionPolicy.h index 55d0354970..0622a72358 100644 --- a/src/mc/entity/components/ServerCorrectionPolicy.h +++ b/src/mc/entity/components/ServerCorrectionPolicy.h @@ -66,13 +66,13 @@ class ServerCorrectionPolicy : public ::IReplayStatePolicy { MCAPI ::MovementCorrection $shouldCorrectMovement(::EntityContext& entity, ::PlayerAuthInputPacket const& packet, uint64 frame); - MCAPI bool $canRewindToFrame(::EntityContext const&, uint64); + MCFOLD bool $canRewindToFrame(::EntityContext const&, uint64); - MCAPI bool $isReplayNeeded(::AdvanceFrameResult) const; + MCFOLD bool $isReplayNeeded(::AdvanceFrameResult) const; - MCAPI void $flagUnsupportedMovement(uint64); + MCFOLD void $flagUnsupportedMovement(uint64); - MCAPI void $storeCurrentFrameSupported(uint64, ::EntityContext&); + MCFOLD void $storeCurrentFrameSupported(uint64, ::EntityContext&); MCAPI void $notifyOfExternalCorrection(uint64 frame); // NOLINTEND diff --git a/src/mc/entity/components/ServerPlayerInventoryTransactionComponent.h b/src/mc/entity/components/ServerPlayerInventoryTransactionComponent.h index 73c79f9294..b45218ec4a 100644 --- a/src/mc/entity/components/ServerPlayerInventoryTransactionComponent.h +++ b/src/mc/entity/components/ServerPlayerInventoryTransactionComponent.h @@ -18,6 +18,6 @@ struct ServerPlayerInventoryTransactionComponent { public: // member functions // NOLINTBEGIN - MCAPI ::ServerPlayerInventoryTransactionComponent& operator=(::ServerPlayerInventoryTransactionComponent&&); + MCFOLD ::ServerPlayerInventoryTransactionComponent& operator=(::ServerPlayerInventoryTransactionComponent&&); // NOLINTEND }; diff --git a/src/mc/entity/components/ServerPlayerMovementComponent.h b/src/mc/entity/components/ServerPlayerMovementComponent.h index 7a84000c52..a8fd657b11 100644 --- a/src/mc/entity/components/ServerPlayerMovementComponent.h +++ b/src/mc/entity/components/ServerPlayerMovementComponent.h @@ -36,7 +36,7 @@ struct ServerPlayerMovementComponent { MCAPI bool doesServerHaveMovementAuthority() const; - MCAPI bool empty() const; + MCFOLD bool empty() const; MCAPI void erase( ::std::_Deque_const_iterator<::std::_Deque_val<::std::_Deque_simple_types<::MovementPackets>>> first, @@ -47,12 +47,12 @@ struct ServerPlayerMovementComponent { MCAPI ::optional_ref<::MovementPackets> getOrCreate(::std::function const& fn); - MCAPI ::std::deque<::MovementPackets> const& getQueue() const; + MCFOLD ::std::deque<::MovementPackets> const& getQueue() const; MCAPI bool isFull() const; MCAPI void popFront(); - MCAPI uint64 size() const; + MCFOLD uint64 size() const; // NOLINTEND }; diff --git a/src/mc/entity/components/SoundEventRequest.h b/src/mc/entity/components/SoundEventRequest.h index 27dc0da2a0..4a068eba27 100644 --- a/src/mc/entity/components/SoundEventRequest.h +++ b/src/mc/entity/components/SoundEventRequest.h @@ -53,7 +53,7 @@ struct SoundEventRequest { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/entity/components/TripodCameraDescription.h b/src/mc/entity/components/TripodCameraDescription.h index c8b7ae0db2..3c6fb31283 100644 --- a/src/mc/entity/components/TripodCameraDescription.h +++ b/src/mc/entity/components/TripodCameraDescription.h @@ -19,13 +19,13 @@ struct TripodCameraDescription : public ::ActorComponentDescription { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND public: // virtual function thunks // NOLINTBEGIN - MCAPI char const* $getJsonName() const; + MCFOLD char const* $getJsonName() const; // NOLINTEND public: diff --git a/src/mc/entity/components/UnlockedRecipesServerComponent.h b/src/mc/entity/components/UnlockedRecipesServerComponent.h index d2d71b10b7..33537d9a5f 100644 --- a/src/mc/entity/components/UnlockedRecipesServerComponent.h +++ b/src/mc/entity/components/UnlockedRecipesServerComponent.h @@ -52,7 +52,7 @@ class UnlockedRecipesServerComponent { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; @@ -92,19 +92,20 @@ class UnlockedRecipesServerComponent { MCAPI void clearUnlockingInstructions(); - MCAPI ::std::unordered_set const& getChangedInventorySlots() const; + MCFOLD ::std::unordered_set const& getChangedInventorySlots() const; - MCAPI ::std::unordered_set<::std::string> const& getUnlockedRecipes() const; + MCFOLD ::std::unordered_set<::std::string> const& getUnlockedRecipes() const; - MCAPI ::std::vector<::UnlockedRecipesServerComponent::UnlockingInstruction> const& getUnlockingInstructions() const; + MCFOLD ::std::vector<::UnlockedRecipesServerComponent::UnlockingInstruction> const& + getUnlockingInstructions() const; MCAPI bool hasContextBeenUsed(::RecipeUnlockingRequirement::UnlockingContext context) const; - MCAPI bool hasInitialDataBeenSent() const; + MCFOLD bool hasInitialDataBeenSent() const; MCAPI bool hasInventoryChanged() const; - MCAPI bool hasUnlockedRecipes() const; + MCFOLD bool hasUnlockedRecipes() const; MCAPI bool hasUnlockingInstructions() const; @@ -112,7 +113,7 @@ class UnlockedRecipesServerComponent { MCAPI void markContextAsUsed(::RecipeUnlockingRequirement::UnlockingContext context); - MCAPI void markInitialDataAsSent(); + MCFOLD void markInitialDataAsSent(); MCAPI ::UnlockedRecipesServerComponent& operator=(::UnlockedRecipesServerComponent&&); diff --git a/src/mc/entity/components/UserEntityIdentifierComponent.h b/src/mc/entity/components/UserEntityIdentifierComponent.h index 99ee7e06e0..038939e853 100644 --- a/src/mc/entity/components/UserEntityIdentifierComponent.h +++ b/src/mc/entity/components/UserEntityIdentifierComponent.h @@ -35,7 +35,7 @@ class UserEntityIdentifierComponent { ::std::unique_ptr<::Certificate> certificate ); - MCAPI bool isPrimaryClient() const; + MCFOLD bool isPrimaryClient() const; MCAPI ::UserEntityIdentifierComponent& operator=(::UserEntityIdentifierComponent&&); // NOLINTEND diff --git a/src/mc/entity/components/VehicleComponent.h b/src/mc/entity/components/VehicleComponent.h index dabc4b4f43..d406372aec 100644 --- a/src/mc/entity/components/VehicleComponent.h +++ b/src/mc/entity/components/VehicleComponent.h @@ -31,6 +31,6 @@ struct VehicleComponent { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/entity/components/VibrationDataComponent.h b/src/mc/entity/components/VibrationDataComponent.h index 9b2d199f54..7c2b38d9f6 100644 --- a/src/mc/entity/components/VibrationDataComponent.h +++ b/src/mc/entity/components/VibrationDataComponent.h @@ -26,9 +26,9 @@ class VibrationDataComponent { public: // member functions // NOLINTBEGIN - MCAPI void clearLastVibrationPos(); + MCFOLD void clearLastVibrationPos(); - MCAPI ::std::optional<::BlockPos> const& getLastVibrationPos() const; + MCFOLD ::std::optional<::BlockPos> const& getLastVibrationPos() const; MCAPI ::std::optional getTicksSinceLastVibration(::ILevel const& level) const; diff --git a/src/mc/entity/components/WardenSpawnTrackerComponent.h b/src/mc/entity/components/WardenSpawnTrackerComponent.h index 76ccab5da3..e7fd183b19 100644 --- a/src/mc/entity/components/WardenSpawnTrackerComponent.h +++ b/src/mc/entity/components/WardenSpawnTrackerComponent.h @@ -37,7 +37,7 @@ class WardenSpawnTrackerComponent { MCAPI bool canIncreaseThreatLevel() const; - MCAPI void copyDataFrom(::WardenSpawnTrackerComponent const& copyFrom); + MCFOLD void copyDataFrom(::WardenSpawnTrackerComponent const& copyFrom); MCAPI void readAdditionalSaveData(::Actor&, ::CompoundTag const& tag, ::DataLoadHelper&); @@ -63,6 +63,6 @@ class WardenSpawnTrackerComponent { public: // constructor thunks // NOLINTBEGIN - MCAPI void* $ctor(); + MCFOLD void* $ctor(); // NOLINTEND }; diff --git a/src/mc/entity/components/camera/aimassist/CameraAimAssistDataRegistryComponent.h b/src/mc/entity/components/camera/aimassist/CameraAimAssistDataRegistryComponent.h index ad91f8933f..62b2126e4c 100644 --- a/src/mc/entity/components/camera/aimassist/CameraAimAssistDataRegistryComponent.h +++ b/src/mc/entity/components/camera/aimassist/CameraAimAssistDataRegistryComponent.h @@ -50,10 +50,10 @@ class CameraAimAssistDataRegistryComponent : public ::Bedrock::EnableNonOwnerRef MCAPI ::SharedTypes::v1_21_50::CameraAimAssistCategoriesDefinition const* _tryGetCategories(::HashedString const& id ) const; - MCAPI ::std::unordered_map<::HashedString, ::SharedTypes::v1_21_50::CameraAimAssistCategoriesDefinition> const& + MCFOLD ::std::unordered_map<::HashedString, ::SharedTypes::v1_21_50::CameraAimAssistCategoriesDefinition> const& getCategories() const; - MCAPI ::std::unordered_map<::HashedString, ::SharedTypes::v1_21_50::CameraAimAssistPresetDefinition> const& + MCFOLD ::std::unordered_map<::HashedString, ::SharedTypes::v1_21_50::CameraAimAssistPresetDefinition> const& getPresets() const; MCAPI void loadJsonFilesForServer(::ResourcePackManager& resourcePackManager); diff --git a/src/mc/entity/components_json_legacy/AddRiderComponent.h b/src/mc/entity/components_json_legacy/AddRiderComponent.h index b7451543ef..7a6e69fb7c 100644 --- a/src/mc/entity/components_json_legacy/AddRiderComponent.h +++ b/src/mc/entity/components_json_legacy/AddRiderComponent.h @@ -31,6 +31,6 @@ class AddRiderComponent { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/entity/components_json_legacy/AdmireItemComponent.h b/src/mc/entity/components_json_legacy/AdmireItemComponent.h index bb05bf7c4a..5a0369f6ea 100644 --- a/src/mc/entity/components_json_legacy/AdmireItemComponent.h +++ b/src/mc/entity/components_json_legacy/AdmireItemComponent.h @@ -29,13 +29,13 @@ class AdmireItemComponent { public: // member functions // NOLINTBEGIN - MCAPI ::ItemStack const& getAdmireItem() const; + MCFOLD ::ItemStack const& getAdmireItem() const; - MCAPI ::Tick const& getAdmireUntil() const; + MCFOLD ::Tick const& getAdmireUntil() const; MCAPI ::WeakEntityRef getItemOwnerRef() const; - MCAPI bool isAdmiring() const; + MCFOLD bool isAdmiring() const; MCAPI void onAdmireItemPickedUp(::Actor const& owner, ::ItemStack const& item, ::Actor* itemOwner); diff --git a/src/mc/entity/components_json_legacy/AgeableComponent.h b/src/mc/entity/components_json_legacy/AgeableComponent.h index eef3640d89..e3bc5cd6a0 100644 --- a/src/mc/entity/components_json_legacy/AgeableComponent.h +++ b/src/mc/entity/components_json_legacy/AgeableComponent.h @@ -29,7 +29,7 @@ class AgeableComponent { // NOLINTBEGIN MCAPI void addAdditionalSaveData(::CompoundTag& tag) const; - MCAPI int getAge() const; + MCFOLD int getAge() const; MCAPI bool getInteraction(::Actor& actor, ::Player& player, ::ActorInteraction& interaction); diff --git a/src/mc/entity/components_json_legacy/AngerLevelComponent.h b/src/mc/entity/components_json_legacy/AngerLevelComponent.h index d26c7dceac..13c4508dee 100644 --- a/src/mc/entity/components_json_legacy/AngerLevelComponent.h +++ b/src/mc/entity/components_json_legacy/AngerLevelComponent.h @@ -77,7 +77,7 @@ class AngerLevelComponent { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/entity/components_json_legacy/AngryComponent.h b/src/mc/entity/components_json_legacy/AngryComponent.h index cb360ec3b9..6a1ad7f81b 100644 --- a/src/mc/entity/components_json_legacy/AngryComponent.h +++ b/src/mc/entity/components_json_legacy/AngryComponent.h @@ -43,19 +43,19 @@ class AngryComponent { MCAPI ::SharedTypes::Legacy::LevelSoundEvent const getAngrySound(::Mob const& mob) const; - MCAPI bool getBroadcastAnger() const; + MCFOLD bool getBroadcastAnger() const; - MCAPI bool getBroadcastAngerOnAttack() const; + MCFOLD bool getBroadcastAngerOnAttack() const; - MCAPI bool getBroadcastAngerOnBeingAttacked() const; + MCFOLD bool getBroadcastAngerOnBeingAttacked() const; - MCAPI bool getBroadcastAngerWhenDying() const; + MCFOLD bool getBroadcastAngerWhenDying() const; - MCAPI ::ActorFilterGroup const& getBroadcastFilter() const; + MCFOLD ::ActorFilterGroup const& getBroadcastFilter() const; - MCAPI int getBroadcastRange() const; + MCFOLD int getBroadcastRange() const; - MCAPI bool getHasTicked() const; + MCFOLD bool getHasTicked() const; MCAPI ::Tick const getNextSoundEventTick() const; @@ -65,7 +65,7 @@ class AngryComponent { MCAPI void setAngry(::Mob& owner, bool value); - MCAPI void setHasTicked(bool hasTicked); + MCFOLD void setHasTicked(bool hasTicked); MCAPI void setNextSoundEventTick(::Mob const& mob); diff --git a/src/mc/entity/components_json_legacy/BalloonComponent.h b/src/mc/entity/components_json_legacy/BalloonComponent.h index b1d5ff4f75..623bbec901 100644 --- a/src/mc/entity/components_json_legacy/BalloonComponent.h +++ b/src/mc/entity/components_json_legacy/BalloonComponent.h @@ -36,7 +36,7 @@ class BalloonComponent { MCAPI ::Actor* getAttachedActor(::Actor& owner); - MCAPI float getMaxHeight() const; + MCFOLD float getMaxHeight() const; MCAPI void integrate(::Actor& owner); diff --git a/src/mc/entity/components_json_legacy/BoostableComponent.h b/src/mc/entity/components_json_legacy/BoostableComponent.h index cc31187648..8d38c01d18 100644 --- a/src/mc/entity/components_json_legacy/BoostableComponent.h +++ b/src/mc/entity/components_json_legacy/BoostableComponent.h @@ -31,19 +31,19 @@ class BoostableComponent { // NOLINTBEGIN MCAPI bool _canUseItem(::Actor const& actor, ::ItemStack const& item); - MCAPI int getBoostTime() const; + MCFOLD int getBoostTime() const; - MCAPI int getBoostTimeTotal() const; + MCFOLD int getBoostTimeTotal() const; - MCAPI bool getIsBoosting() const; + MCFOLD bool getIsBoosting() const; MCAPI bool itemUseText(::Actor const& actor, ::ItemStack const& item, ::std::string& text); MCAPI bool onItemInteract(::Actor& actor, ::ItemStack& item, ::Player& player); - MCAPI void setBoostTime(int boostTime); + MCFOLD void setBoostTime(int boostTime); - MCAPI void setIsBoosting(bool isBoosting); + MCFOLD void setIsBoosting(bool isBoosting); // NOLINTEND public: diff --git a/src/mc/entity/components_json_legacy/BossComponent.h b/src/mc/entity/components_json_legacy/BossComponent.h index 2046ae5a57..e0f932e2bf 100644 --- a/src/mc/entity/components_json_legacy/BossComponent.h +++ b/src/mc/entity/components_json_legacy/BossComponent.h @@ -47,23 +47,23 @@ class BossComponent { MCAPI void broadcastBossEvent(::Actor& owner, ::BossEventUpdateType type); - MCAPI ::BossBarColor getColor() const; + MCFOLD ::BossBarColor getColor() const; - MCAPI bool getCreateWorldFog() const; + MCFOLD bool getCreateWorldFog() const; - MCAPI float getHealthPercent() const; + MCFOLD float getHealthPercent() const; - MCAPI int getLastHealth() const; + MCFOLD int getLastHealth() const; - MCAPI ::std::chrono::steady_clock::time_point getLastPlayerUpdate() const; + MCFOLD ::std::chrono::steady_clock::time_point getLastPlayerUpdate() const; - MCAPI ::std::string getName() const; + MCFOLD ::std::string getName() const; - MCAPI ::BossBarOverlay getOverlay() const; + MCFOLD ::BossBarOverlay getOverlay() const; - MCAPI ::std::unordered_map<::mce::UUID, int> const& getPlayerParty() const; + MCFOLD ::std::unordered_map<::mce::UUID, int> const& getPlayerParty() const; - MCAPI bool getShouldDarkenSky() const; + MCFOLD bool getShouldDarkenSky() const; MCAPI void handleRegisterPlayers(::Actor& owner); @@ -85,7 +85,7 @@ class BossComponent { MCAPI void setLastHealth(int lastHealth); - MCAPI void setLastPlayerUpdate(::std::chrono::steady_clock::time_point lastUpdate); + MCFOLD void setLastPlayerUpdate(::std::chrono::steady_clock::time_point lastUpdate); MCAPI void setName(::Actor& owner, ::std::string const& name); diff --git a/src/mc/entity/components_json_legacy/BreathableComponent.h b/src/mc/entity/components_json_legacy/BreathableComponent.h index 3768407b20..8c04f945bd 100644 --- a/src/mc/entity/components_json_legacy/BreathableComponent.h +++ b/src/mc/entity/components_json_legacy/BreathableComponent.h @@ -53,19 +53,19 @@ class BreathableComponent { MCAPI bool canBreathe(::Actor const& owner) const; - MCAPI bool generatesBubbles() const; + MCFOLD bool generatesBubbles() const; - MCAPI int getAirRegenPerTick() const; + MCFOLD int getAirRegenPerTick() const; MCAPI short getAirSupply() const; - MCAPI ::BreathableComponent::BreathableState& getBreathableState(); + MCFOLD ::BreathableComponent::BreathableState& getBreathableState(); - MCAPI float getInhaleTime() const; + MCFOLD float getInhaleTime() const; MCAPI short getMaxAirSupply() const; - MCAPI int getSuffocateTime() const; + MCFOLD int getSuffocateTime() const; MCAPI void readAdditionalSaveData(::Actor&, ::CompoundTag const& tag, ::DataLoadHelper&); @@ -85,6 +85,6 @@ class BreathableComponent { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/entity/components_json_legacy/BreathableDefinition.h b/src/mc/entity/components_json_legacy/BreathableDefinition.h index 1e74c88569..e8470f5477 100644 --- a/src/mc/entity/components_json_legacy/BreathableDefinition.h +++ b/src/mc/entity/components_json_legacy/BreathableDefinition.h @@ -65,6 +65,6 @@ class BreathableDefinition { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/entity/components_json_legacy/BreedableComponent.h b/src/mc/entity/components_json_legacy/BreedableComponent.h index efd06e83d5..b0136c0f57 100644 --- a/src/mc/entity/components_json_legacy/BreedableComponent.h +++ b/src/mc/entity/components_json_legacy/BreedableComponent.h @@ -91,17 +91,17 @@ class BreedableComponent { MCAPI bool canMate(::Actor const& owner, ::Actor const& partner) const; - MCAPI void decrementBreedCooldown(); + MCFOLD void decrementBreedCooldown(); MCAPI void decrementLoveTimer(); - MCAPI int getBreedCooldown() const; + MCFOLD int getBreedCooldown() const; MCAPI bool getInteraction(::Actor& owner, ::Player& player, ::ActorInteraction& interaction); MCAPI ::Player* getLoveCause(::Actor const& owner) const; - MCAPI int getLoveTimer() const; + MCFOLD int getLoveTimer() const; MCAPI ::BreedableComponent::MatingResult mate(::Actor& owner, ::Actor& partner); @@ -111,7 +111,7 @@ class BreedableComponent { MCAPI void resetLove(::Actor& owner); - MCAPI void setLoveTimer(int loveTimer); + MCFOLD void setLoveTimer(int loveTimer); // NOLINTEND public: diff --git a/src/mc/entity/components_json_legacy/BribeableComponent.h b/src/mc/entity/components_json_legacy/BribeableComponent.h index 894f8ce3af..6cb1a00d30 100644 --- a/src/mc/entity/components_json_legacy/BribeableComponent.h +++ b/src/mc/entity/components_json_legacy/BribeableComponent.h @@ -40,9 +40,9 @@ class BribeableComponent { MCAPI bool clientBribeCheck(::Actor& owner); - MCAPI int& getBribeCooldown(); + MCFOLD int& getBribeCooldown(); - MCAPI int& getBribeTimer(); + MCFOLD int& getBribeTimer(); MCAPI bool getInteraction(::Actor& owner, ::Player& player, ::ActorInteraction& interaction); diff --git a/src/mc/entity/components_json_legacy/BribeableDefinition.h b/src/mc/entity/components_json_legacy/BribeableDefinition.h index 702dea1db0..e560f876b0 100644 --- a/src/mc/entity/components_json_legacy/BribeableDefinition.h +++ b/src/mc/entity/components_json_legacy/BribeableDefinition.h @@ -30,7 +30,7 @@ class BribeableDefinition { public: // member functions // NOLINTBEGIN - MCAPI void addBribeItem(::ItemDescriptor const& itemDescriptor); + MCFOLD void addBribeItem(::ItemDescriptor const& itemDescriptor); MCAPI void initialize(::EntityContext&, ::BribeableComponent& component) const; // NOLINTEND diff --git a/src/mc/entity/components_json_legacy/BucketableComponent.h b/src/mc/entity/components_json_legacy/BucketableComponent.h index 4c7ac0cf97..1af633eead 100644 --- a/src/mc/entity/components_json_legacy/BucketableComponent.h +++ b/src/mc/entity/components_json_legacy/BucketableComponent.h @@ -34,6 +34,6 @@ class BucketableComponent { public: // constructor thunks // NOLINTBEGIN - MCAPI void* $ctor(); + MCFOLD void* $ctor(); // NOLINTEND }; diff --git a/src/mc/entity/components_json_legacy/BucketableDescription.h b/src/mc/entity/components_json_legacy/BucketableDescription.h index 9eeaf50ad1..0ce5c4a993 100644 --- a/src/mc/entity/components_json_legacy/BucketableDescription.h +++ b/src/mc/entity/components_json_legacy/BucketableDescription.h @@ -19,7 +19,7 @@ struct BucketableDescription : public ::ActorComponentDescription { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND public: diff --git a/src/mc/entity/components_json_legacy/BuoyancyComponent.h b/src/mc/entity/components_json_legacy/BuoyancyComponent.h index 7c77a49110..c132c021b4 100644 --- a/src/mc/entity/components_json_legacy/BuoyancyComponent.h +++ b/src/mc/entity/components_json_legacy/BuoyancyComponent.h @@ -35,11 +35,11 @@ class BuoyancyComponent { MCAPI bool canFloat(::StateVectorComponent const& stateVectorComponent, ::IConstBlockSource const& region) const; - MCAPI float getBaseBuoyancy() const; + MCFOLD float getBaseBuoyancy() const; - MCAPI float getBigWaveProbability() const; + MCFOLD float getBigWaveProbability() const; - MCAPI float getBigWaveSpeedMultiplier() const; + MCFOLD float getBigWaveSpeedMultiplier() const; MCAPI double getTimer() const; @@ -50,9 +50,9 @@ class BuoyancyComponent { MCAPI bool needToResurface(::StateVectorComponent const& stateVectorComponent, ::IConstBlockSource const& region) const; - MCAPI bool shouldApplyGravity() const; + MCFOLD bool shouldApplyGravity() const; - MCAPI bool shouldSimulateWaves() const; + MCFOLD bool shouldSimulateWaves() const; MCAPI ~BuoyancyComponent(); // NOLINTEND diff --git a/src/mc/entity/components_json_legacy/CelebrateHuntComponent.h b/src/mc/entity/components_json_legacy/CelebrateHuntComponent.h index cc238a6ffc..6898be2a3d 100644 --- a/src/mc/entity/components_json_legacy/CelebrateHuntComponent.h +++ b/src/mc/entity/components_json_legacy/CelebrateHuntComponent.h @@ -31,11 +31,11 @@ class CelebrateHuntComponent { // NOLINTBEGIN MCAPI ::SharedTypes::Legacy::LevelSoundEvent const getCelebrateSound(::Mob const& mob) const; - MCAPI ::Tick const getCelebrateUntil() const; + MCFOLD ::Tick const getCelebrateUntil() const; - MCAPI ::Tick const getNextSoundEventTick() const; + MCFOLD ::Tick const getNextSoundEventTick() const; - MCAPI bool isCelebrating() const; + MCFOLD bool isCelebrating() const; MCAPI void setNextSoundEventTick(::Mob const& mob); diff --git a/src/mc/entity/components_json_legacy/CollisionBoxComponent.h b/src/mc/entity/components_json_legacy/CollisionBoxComponent.h index 3b52d4ece9..9a3486b4a2 100644 --- a/src/mc/entity/components_json_legacy/CollisionBoxComponent.h +++ b/src/mc/entity/components_json_legacy/CollisionBoxComponent.h @@ -26,6 +26,6 @@ class CollisionBoxComponent { // NOLINTBEGIN MCAPI void fromVec3(::Vec3 const& vec); - MCAPI ::Vec2 const& getDefaultBB() const; + MCFOLD ::Vec2 const& getDefaultBB() const; // NOLINTEND }; diff --git a/src/mc/entity/components_json_legacy/ContainerComponent.h b/src/mc/entity/components_json_legacy/ContainerComponent.h index 097beabd64..29261382aa 100644 --- a/src/mc/entity/components_json_legacy/ContainerComponent.h +++ b/src/mc/entity/components_json_legacy/ContainerComponent.h @@ -62,7 +62,7 @@ class ContainerComponent : public ::ContainerContentChangeListener, public ::Con MCAPI ContainerComponent(::ContainerComponent&& other); - MCAPI ::FillingContainer* _getRawContainerPtr(); + MCFOLD ::FillingContainer* _getRawContainerPtr(); MCAPI bool _tryMoveInItem(::ItemStack& item, int slot, int face, int itemCount); diff --git a/src/mc/entity/components_json_legacy/ContainerDescription.h b/src/mc/entity/components_json_legacy/ContainerDescription.h index b715350ecc..d722f92713 100644 --- a/src/mc/entity/components_json_legacy/ContainerDescription.h +++ b/src/mc/entity/components_json_legacy/ContainerDescription.h @@ -44,7 +44,7 @@ struct ContainerDescription : public ::ActorComponentDescription { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND public: diff --git a/src/mc/entity/components_json_legacy/DamageOverTimeComponent.h b/src/mc/entity/components_json_legacy/DamageOverTimeComponent.h index b586402efe..41520bae86 100644 --- a/src/mc/entity/components_json_legacy/DamageOverTimeComponent.h +++ b/src/mc/entity/components_json_legacy/DamageOverTimeComponent.h @@ -29,14 +29,14 @@ class DamageOverTimeComponent { // NOLINTBEGIN MCAPI void addAdditionalSaveData(::CompoundTag& tag) const; - MCAPI int getDamageTime() const; + MCFOLD int getDamageTime() const; - MCAPI int getDamageTimeInterval() const; + MCFOLD int getDamageTimeInterval() const; - MCAPI int getHurtValue() const; + MCFOLD int getHurtValue() const; MCAPI void readAdditionalSaveData(::Actor& owner, ::CompoundTag const& tag, ::DataLoadHelper& dataLoadHelper); - MCAPI void setDamageTime(int damageTime); + MCFOLD void setDamageTime(int damageTime); // NOLINTEND }; diff --git a/src/mc/entity/components_json_legacy/DamageSensorComponent.h b/src/mc/entity/components_json_legacy/DamageSensorComponent.h index bade0b9430..707812c0e2 100644 --- a/src/mc/entity/components_json_legacy/DamageSensorComponent.h +++ b/src/mc/entity/components_json_legacy/DamageSensorComponent.h @@ -36,9 +36,9 @@ class DamageSensorComponent { MCAPI float getAdjustedDamage(::Actor& owner, ::ActorDamageSource const& source, float amount) const; - MCAPI ::ActorDamageCause getCause() const; + MCFOLD ::ActorDamageCause getCause() const; - MCAPI bool isFatal() const; + MCFOLD bool isFatal() const; MCAPI ::DamageSensorComponent& operator=(::DamageSensorComponent&&); diff --git a/src/mc/entity/components_json_legacy/DespawnComponent.h b/src/mc/entity/components_json_legacy/DespawnComponent.h index 9d379478ba..a71460f37c 100644 --- a/src/mc/entity/components_json_legacy/DespawnComponent.h +++ b/src/mc/entity/components_json_legacy/DespawnComponent.h @@ -54,7 +54,7 @@ class DespawnComponent { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND public: @@ -129,7 +129,7 @@ class DespawnComponent { MCAPI bool $hasUntickedNeighborChunk(::ChunkPos const& pos, int chunkRadius) const; - MCAPI ::Randomize& $getChanceRandomize(); + MCFOLD ::Randomize& $getChanceRandomize(); MCAPI ::std::optional $getActorNoActionTime(::Actor const& actor) const; diff --git a/src/mc/entity/components_json_legacy/DouseFireSubcomponent.h b/src/mc/entity/components_json_legacy/DouseFireSubcomponent.h index c843d8a872..ca197e6c60 100644 --- a/src/mc/entity/components_json_legacy/DouseFireSubcomponent.h +++ b/src/mc/entity/components_json_legacy/DouseFireSubcomponent.h @@ -57,9 +57,9 @@ class DouseFireSubcomponent : public ::OnHitSubcomponent { public: // virtual function thunks // NOLINTBEGIN - MCAPI void $readfromJSON(::Json::Value&); + MCFOLD void $readfromJSON(::Json::Value&); - MCAPI void $writetoJSON(::Json::Value&) const; + MCFOLD void $writetoJSON(::Json::Value&) const; MCAPI void $doOnHitEffect(::Actor& owner, ::ProjectileComponent& component); diff --git a/src/mc/entity/components_json_legacy/DwellerComponent.h b/src/mc/entity/components_json_legacy/DwellerComponent.h index aaf643748e..31adc3413d 100644 --- a/src/mc/entity/components_json_legacy/DwellerComponent.h +++ b/src/mc/entity/components_json_legacy/DwellerComponent.h @@ -67,21 +67,21 @@ class DwellerComponent { MCAPI void fixupProfession(::Actor const& owner, ::Village* village); - MCAPI bool getCanFindPOI() const; + MCFOLD bool getCanFindPOI() const; - MCAPI ::DwellerRole getDwellerRole() const; + MCFOLD ::DwellerRole getDwellerRole() const; MCAPI ::mce::UUID getDwellingUniqueID() const; - MCAPI uint64 getDwellingUpdateInterval() const; + MCFOLD uint64 getDwellingUpdateInterval() const; - MCAPI bool getFixUpRole() const; + MCFOLD bool getFixUpRole() const; - MCAPI ::HashedString const& getPreferredProfession() const; + MCFOLD ::HashedString const& getPreferredProfession() const; - MCAPI uint64 getUpdateIntervalBase() const; + MCFOLD uint64 getUpdateIntervalBase() const; - MCAPI int getUpdateIntervalVariant() const; + MCFOLD int getUpdateIntervalVariant() const; MCAPI ::std::weak_ptr<::Village> const getVillage(::Actor const& owner) const; @@ -103,17 +103,17 @@ class DwellerComponent { MCAPI void onDeath(::Actor& owner, ::ActorDamageSource const& source); - MCAPI void onDimensionChange(::Actor& owner); + MCFOLD void onDimensionChange(::Actor& owner); - MCAPI void onRemove(::Actor& owner); + MCFOLD void onRemove(::Actor& owner); MCAPI void readAdditionalSaveData(::Actor& owner, ::CompoundTag const& tag, ::DataLoadHelper& dataLoadHelper); MCAPI void setDwellingUniqueID(::Actor& owner, ::mce::UUID id); - MCAPI void setDwellingUpdateInterval(uint64 updateInterval); + MCFOLD void setDwellingUpdateInterval(uint64 updateInterval); - MCAPI void setFixUpRole(bool fixUpRole); + MCFOLD void setFixUpRole(bool fixUpRole); MCAPI void setLastHurtByMob(::Actor& owner, ::Mob* mob); @@ -145,6 +145,6 @@ class DwellerComponent { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/entity/components_json_legacy/EconomyTradeableComponent.h b/src/mc/entity/components_json_legacy/EconomyTradeableComponent.h index 1317cfc2d9..7296d8a156 100644 --- a/src/mc/entity/components_json_legacy/EconomyTradeableComponent.h +++ b/src/mc/entity/components_json_legacy/EconomyTradeableComponent.h @@ -65,19 +65,19 @@ class EconomyTradeableComponent { MCAPI ::IntRange getCurrentCuredDiscount() const; - MCAPI ::std::string const& getDisplayName() const; + MCFOLD ::std::string const& getDisplayName() const; MCAPI bool getInteraction(::Player& player, ::ActorInteraction& interaction); MCAPI ::MerchantRecipeList* getOffers(); - MCAPI int getRiches() const; + MCFOLD int getRiches() const; MCAPI uint getTradeTier() const; MCAPI bool hasSupplyRemaining() const; - MCAPI void initFromDefinition(); + MCFOLD void initFromDefinition(); MCAPI ::std::string const& loadDisplayName(); @@ -99,7 +99,7 @@ class EconomyTradeableComponent { MCAPI void setOffers(::MerchantRecipeList& offers); - MCAPI void setRiches(int riches); + MCFOLD void setRiches(int riches); MCAPI bool shouldConvertTrades() const; diff --git a/src/mc/entity/components_json_legacy/EnvironmentRequirement.h b/src/mc/entity/components_json_legacy/EnvironmentRequirement.h index 6a4617c731..b022dba045 100644 --- a/src/mc/entity/components_json_legacy/EnvironmentRequirement.h +++ b/src/mc/entity/components_json_legacy/EnvironmentRequirement.h @@ -33,6 +33,6 @@ struct EnvironmentRequirement { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/entity/components_json_legacy/EnvironmentSensorDefinition.h b/src/mc/entity/components_json_legacy/EnvironmentSensorDefinition.h index 27f38a6fa0..e6acd070f8 100644 --- a/src/mc/entity/components_json_legacy/EnvironmentSensorDefinition.h +++ b/src/mc/entity/components_json_legacy/EnvironmentSensorDefinition.h @@ -27,7 +27,7 @@ class EnvironmentSensorDefinition { public: // member functions // NOLINTBEGIN - MCAPI void addEnvironmentTrigger(::ActorDefinitionTrigger const& trigger); + MCFOLD void addEnvironmentTrigger(::ActorDefinitionTrigger const& trigger); // NOLINTEND public: diff --git a/src/mc/entity/components_json_legacy/EquippableComponent.h b/src/mc/entity/components_json_legacy/EquippableComponent.h index ca605c3c74..1d8fc0ed10 100644 --- a/src/mc/entity/components_json_legacy/EquippableComponent.h +++ b/src/mc/entity/components_json_legacy/EquippableComponent.h @@ -36,7 +36,7 @@ class EquippableComponent { MCAPI ::std::unique_ptr<::CompoundTag> createTag(::Actor& owner) const; - MCAPI int getSlotCount() const; + MCFOLD int getSlotCount() const; MCAPI bool hasSlotAllowedItems(int slotNumber) const; @@ -52,7 +52,7 @@ class EquippableComponent { public: // constructor thunks // NOLINTBEGIN - MCAPI void* $ctor(::EquippableComponent&& other); + MCFOLD void* $ctor(::EquippableComponent&& other); // NOLINTEND public: diff --git a/src/mc/entity/components_json_legacy/ExperienceRewardComponent.h b/src/mc/entity/components_json_legacy/ExperienceRewardComponent.h index d689dce43b..09c67ba3e9 100644 --- a/src/mc/entity/components_json_legacy/ExperienceRewardComponent.h +++ b/src/mc/entity/components_json_legacy/ExperienceRewardComponent.h @@ -29,13 +29,13 @@ class ExperienceRewardComponent { // NOLINTBEGIN MCAPI void addAdditionalSaveData(::CompoundTag& tag) const; - MCAPI bool getIsExperienceDropEnabled() const; + MCFOLD bool getIsExperienceDropEnabled() const; MCAPI int getOnDeathExperience(::Actor& owner) const; MCAPI void readAdditionalSaveData(::Actor&, ::CompoundTag const& tag, ::DataLoadHelper&); - MCAPI void setIsExperienceDropEnabled(bool isExperienceDropEnabled); + MCFOLD void setIsExperienceDropEnabled(bool isExperienceDropEnabled); MCAPI ~ExperienceRewardComponent(); // NOLINTEND diff --git a/src/mc/entity/components_json_legacy/ExplodeComponent.h b/src/mc/entity/components_json_legacy/ExplodeComponent.h index c6f3908d97..cb33018fad 100644 --- a/src/mc/entity/components_json_legacy/ExplodeComponent.h +++ b/src/mc/entity/components_json_legacy/ExplodeComponent.h @@ -47,23 +47,23 @@ class ExplodeComponent { MCAPI void explode(::Actor& actor, ::Vec3 const& explosionPosition); - MCAPI int getFuseLength() const; + MCFOLD int getFuseLength() const; - MCAPI int getInitialFuseLength() const; + MCFOLD int getInitialFuseLength() const; - MCAPI bool getIsFuseLit() const; + MCFOLD bool getIsFuseLit() const; - MCAPI bool getNegatesFallDamage() const; + MCFOLD bool getNegatesFallDamage() const; - MCAPI bool isFuseLit() const; + MCFOLD bool isFuseLit() const; MCAPI void readAdditionalSaveData(::Actor& owner, ::CompoundTag const& tag, ::DataLoadHelper& dataLoadHelper); - MCAPI bool requiresTntExplodeGameRuleEnabled() const; + MCFOLD bool requiresTntExplodeGameRuleEnabled() const; - MCAPI void setAllowUnderwater(bool allow); + MCFOLD void setAllowUnderwater(bool allow); - MCAPI void setFuseLength(int fuseLength); + MCFOLD void setFuseLength(int fuseLength); MCAPI void setTntExpodeGameRuleRequired(); // NOLINTEND diff --git a/src/mc/entity/components_json_legacy/ExplodeDefinition.h b/src/mc/entity/components_json_legacy/ExplodeDefinition.h index 64a367a67e..7ec48c34ce 100644 --- a/src/mc/entity/components_json_legacy/ExplodeDefinition.h +++ b/src/mc/entity/components_json_legacy/ExplodeDefinition.h @@ -49,7 +49,7 @@ class ExplodeDefinition { MCAPI void setSoundDefinitionByName(::std::string const& name); - MCAPI void uninitialize(::EntityContext& entity) const; + MCFOLD void uninitialize(::EntityContext& entity) const; // NOLINTEND public: diff --git a/src/mc/entity/components_json_legacy/GiveableTrigger.h b/src/mc/entity/components_json_legacy/GiveableTrigger.h index 9587d73a43..a74129c7a8 100644 --- a/src/mc/entity/components_json_legacy/GiveableTrigger.h +++ b/src/mc/entity/components_json_legacy/GiveableTrigger.h @@ -26,7 +26,7 @@ struct GiveableTrigger { // NOLINTBEGIN MCAPI GiveableTrigger(::GiveableTrigger const&); - MCAPI void addItem(::ItemDescriptor const& itemDescriptor); + MCFOLD void addItem(::ItemDescriptor const& itemDescriptor); MCAPI ~GiveableTrigger(); // NOLINTEND diff --git a/src/mc/entity/components_json_legacy/GrowsCropDefinition.h b/src/mc/entity/components_json_legacy/GrowsCropDefinition.h index 9a3705654c..ee23594a4e 100644 --- a/src/mc/entity/components_json_legacy/GrowsCropDefinition.h +++ b/src/mc/entity/components_json_legacy/GrowsCropDefinition.h @@ -30,7 +30,7 @@ class GrowsCropDefinition { // NOLINTBEGIN MCAPI GrowsCropDefinition(); - MCAPI void initialize(::EntityContext&, ::GrowsCropComponent& component) const; + MCFOLD void initialize(::EntityContext&, ::GrowsCropComponent& component) const; // NOLINTEND public: diff --git a/src/mc/entity/components_json_legacy/HideComponent.h b/src/mc/entity/components_json_legacy/HideComponent.h index 7ca1ab841b..c8c9a5cdb3 100644 --- a/src/mc/entity/components_json_legacy/HideComponent.h +++ b/src/mc/entity/components_json_legacy/HideComponent.h @@ -28,17 +28,17 @@ class HideComponent { MCAPI void addAdditionalSaveData(::CompoundTag& tag) const; - MCAPI bool isInRaid(); + MCFOLD bool isInRaid(); - MCAPI bool isReactingToBell(); + MCFOLD bool isReactingToBell(); MCAPI void readAdditionalSaveData(::CompoundTag const& tag, ::DataLoadHelper& dataLoadHelper); - MCAPI void setInRaid(); + MCFOLD void setInRaid(); MCAPI void setNotHiding(); - MCAPI void setReactingToBell(); + MCFOLD void setReactingToBell(); // NOLINTEND public: diff --git a/src/mc/entity/components_json_legacy/HideDescription.h b/src/mc/entity/components_json_legacy/HideDescription.h index 9b3a227f66..cf12198d0d 100644 --- a/src/mc/entity/components_json_legacy/HideDescription.h +++ b/src/mc/entity/components_json_legacy/HideDescription.h @@ -19,7 +19,7 @@ struct HideDescription : public ::ActorComponentDescription { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND public: diff --git a/src/mc/entity/components_json_legacy/HomeComponent.h b/src/mc/entity/components_json_legacy/HomeComponent.h index 7dde532f5c..db96507462 100644 --- a/src/mc/entity/components_json_legacy/HomeComponent.h +++ b/src/mc/entity/components_json_legacy/HomeComponent.h @@ -44,9 +44,9 @@ class HomeComponent { MCAPI ::BlockPos getHomePos() const; - MCAPI int getRestrictionRadius() const; + MCFOLD int getRestrictionRadius() const; - MCAPI bool hasAnyRestriction() const; + MCFOLD bool hasAnyRestriction() const; MCAPI bool hasSpecificRestriction(::RestrictionType restrictionType) const; diff --git a/src/mc/entity/components_json_legacy/HopperComponent.h b/src/mc/entity/components_json_legacy/HopperComponent.h index 31b6d32d85..8a691b376a 100644 --- a/src/mc/entity/components_json_legacy/HopperComponent.h +++ b/src/mc/entity/components_json_legacy/HopperComponent.h @@ -23,7 +23,7 @@ class HopperComponent : public ::Hopper { // NOLINTBEGIN MCAPI HopperComponent(); - MCAPI ::BlockPos getLastPosition() const; + MCFOLD ::BlockPos getLastPosition() const; MCAPI bool pullInItems(::Actor& owner); // NOLINTEND diff --git a/src/mc/entity/components_json_legacy/HopperDefinition.h b/src/mc/entity/components_json_legacy/HopperDefinition.h index bc3fa6dc93..846b01a639 100644 --- a/src/mc/entity/components_json_legacy/HopperDefinition.h +++ b/src/mc/entity/components_json_legacy/HopperDefinition.h @@ -14,7 +14,7 @@ struct HopperDefinition { public: // static functions // NOLINTBEGIN - MCAPI static void + MCFOLD static void buildSchema(::std::shared_ptr<::JsonUtil::JsonSchemaObjectNode<::JsonUtil::EmptyClass, ::HopperDefinition>>& root); // NOLINTEND }; diff --git a/src/mc/entity/components_json_legacy/IgniteSubcomponent.h b/src/mc/entity/components_json_legacy/IgniteSubcomponent.h index d24c46dec3..4e2e6a6fea 100644 --- a/src/mc/entity/components_json_legacy/IgniteSubcomponent.h +++ b/src/mc/entity/components_json_legacy/IgniteSubcomponent.h @@ -53,9 +53,9 @@ class IgniteSubcomponent : public ::OnHitSubcomponent { public: // virtual function thunks // NOLINTBEGIN - MCAPI void $readfromJSON(::Json::Value&); + MCFOLD void $readfromJSON(::Json::Value&); - MCAPI void $writetoJSON(::Json::Value&) const; + MCFOLD void $writetoJSON(::Json::Value&) const; MCAPI void $doOnHitEffect(::Actor& owner, ::ProjectileComponent&); diff --git a/src/mc/entity/components_json_legacy/InsideBlockNotifierComponent.h b/src/mc/entity/components_json_legacy/InsideBlockNotifierComponent.h index 8cf248bcac..0122ac616b 100644 --- a/src/mc/entity/components_json_legacy/InsideBlockNotifierComponent.h +++ b/src/mc/entity/components_json_legacy/InsideBlockNotifierComponent.h @@ -24,7 +24,7 @@ class InsideBlockNotifierComponent { public: // member functions // NOLINTBEGIN - MCAPI ::std::vector<::InsideBlockEventMap> const& getBlockList() const; + MCFOLD ::std::vector<::InsideBlockEventMap> const& getBlockList() const; MCAPI bool isTrackedBlock(::Block const& block) const; diff --git a/src/mc/entity/components_json_legacy/InsomniaComponent.h b/src/mc/entity/components_json_legacy/InsomniaComponent.h index 573fc82567..7ec4f8b9c9 100644 --- a/src/mc/entity/components_json_legacy/InsomniaComponent.h +++ b/src/mc/entity/components_json_legacy/InsomniaComponent.h @@ -29,14 +29,14 @@ class InsomniaComponent { // NOLINTBEGIN MCAPI void addAdditionalSaveData(::CompoundTag& tag) const; - MCAPI int getInsomniaTimerTicks() const; + MCFOLD int getInsomniaTimerTicks() const; - MCAPI int getTicksUntilInsomnia() const; + MCFOLD int getTicksUntilInsomnia() const; MCAPI int incrementTimeSinceRest(); MCAPI void readAdditionalSaveData(::Actor& owner, ::CompoundTag const& tag, ::DataLoadHelper& dataLoadHelper); - MCAPI void restartTimer(); + MCFOLD void restartTimer(); // NOLINTEND }; diff --git a/src/mc/entity/components_json_legacy/InteractComponent.h b/src/mc/entity/components_json_legacy/InteractComponent.h index 2007b87ada..0e670d6f09 100644 --- a/src/mc/entity/components_json_legacy/InteractComponent.h +++ b/src/mc/entity/components_json_legacy/InteractComponent.h @@ -31,7 +31,7 @@ class InteractComponent { MCAPI bool _runInteraction(::Actor& owner, ::Interaction const& desc, ::Player& player, ::ActorInteraction& interaction); - MCAPI short getCooldownCounter() const; + MCFOLD short getCooldownCounter() const; MCAPI bool getInteraction(::Actor& owner, ::Player& player, ::ActorInteraction& interaction); diff --git a/src/mc/entity/components_json_legacy/JumpControlComponent.h b/src/mc/entity/components_json_legacy/JumpControlComponent.h index 19cedd7b29..e726e6369e 100644 --- a/src/mc/entity/components_json_legacy/JumpControlComponent.h +++ b/src/mc/entity/components_json_legacy/JumpControlComponent.h @@ -44,9 +44,9 @@ class JumpControlComponent { MCAPI float getJumpPower() const; - MCAPI bool getJumping() const; + MCFOLD bool getJumping() const; - MCAPI bool getSwimming() const; + MCFOLD bool getSwimming() const; MCAPI void initMultiTypeJumpComponent(::Mob& entity, ::ActorDefinitionDescriptor& initDescription); @@ -60,9 +60,9 @@ class JumpControlComponent { MCAPI void setJumpType(::JumpType type); - MCAPI void setJumping(bool jumping); + MCFOLD void setJumping(bool jumping); - MCAPI void setSwimming(bool swimming); + MCFOLD void setSwimming(bool swimming); MCAPI void update(::Mob& owner); diff --git a/src/mc/entity/components_json_legacy/LegacyTradeableComponent.h b/src/mc/entity/components_json_legacy/LegacyTradeableComponent.h index aa33af13a1..0d956b803d 100644 --- a/src/mc/entity/components_json_legacy/LegacyTradeableComponent.h +++ b/src/mc/entity/components_json_legacy/LegacyTradeableComponent.h @@ -43,7 +43,7 @@ class LegacyTradeableComponent { public: // member functions // NOLINTBEGIN - MCAPI void DecrementMerchantTimer(); + MCFOLD void DecrementMerchantTimer(); MCAPI void IncrementTradeTier(); @@ -61,23 +61,23 @@ class LegacyTradeableComponent { MCAPI ::UpdateTradePacket createDataPacket(::Actor& owner, ::ContainerID containerID); - MCAPI bool getAddRecipeOnUpdate() const; + MCFOLD bool getAddRecipeOnUpdate() const; - MCAPI ::std::string const& getDisplayName() const; + MCFOLD ::std::string const& getDisplayName() const; MCAPI bool getInteraction(::Actor& owner, ::Player& player, ::ActorInteraction& interaction); - MCAPI ::ActorUniqueID const getLastPlayerTradeID() const; + MCFOLD ::ActorUniqueID const getLastPlayerTradeID() const; MCAPI ::MerchantRecipeList* getOffers(::Actor& owner); - MCAPI bool getResetLockedOnFirstTrade() const; + MCFOLD bool getResetLockedOnFirstTrade() const; - MCAPI int getRiches() const; + MCFOLD int getRiches() const; - MCAPI int getTradeTier() const; + MCFOLD int getTradeTier() const; - MCAPI int getUpdateMerchantTimer() const; + MCFOLD int getUpdateMerchantTimer() const; MCAPI ::std::string const& loadDisplayName(::Actor& owner); @@ -93,15 +93,15 @@ class LegacyTradeableComponent { MCAPI void restockAllRecipes(::Actor& owner); - MCAPI void setAddRecipeOnUpdate(bool addRecipeOnUpdate); + MCFOLD void setAddRecipeOnUpdate(bool addRecipeOnUpdate); MCAPI void setOffers(::MerchantRecipeList& offers); - MCAPI void setResetLockedOnFirstTrade(bool resetLockedOnFirstTrade); + MCFOLD void setResetLockedOnFirstTrade(bool resetLockedOnFirstTrade); - MCAPI void setRiches(int riches); + MCFOLD void setRiches(int riches); - MCAPI void setTradeTier(int tier); + MCFOLD void setTradeTier(int tier); MCAPI bool shouldConvertTrades(::Actor& owner) const; diff --git a/src/mc/entity/components_json_legacy/ManagedWanderingTraderDescription.h b/src/mc/entity/components_json_legacy/ManagedWanderingTraderDescription.h index 41c8d583cf..e0884fa740 100644 --- a/src/mc/entity/components_json_legacy/ManagedWanderingTraderDescription.h +++ b/src/mc/entity/components_json_legacy/ManagedWanderingTraderDescription.h @@ -19,7 +19,7 @@ struct ManagedWanderingTraderDescription : public ::ActorComponentDescription { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND public: diff --git a/src/mc/entity/components_json_legacy/MobEffectComponent.h b/src/mc/entity/components_json_legacy/MobEffectComponent.h index 07496d93df..5fa553dcbd 100644 --- a/src/mc/entity/components_json_legacy/MobEffectComponent.h +++ b/src/mc/entity/components_json_legacy/MobEffectComponent.h @@ -5,27 +5,25 @@ // auto generated forward declare list // clang-format off class Actor; +class ActorFilterGroup; class CompoundTag; class DataLoadHelper; +class ExpiringTick; +struct EffectDuration; // clang-format on class MobEffectComponent { public: // member variables // NOLINTBEGIN - ::ll::UntypedStorage<4, 4> mUnkef7cd9; - ::ll::UntypedStorage<4, 4> mUnk3b0d7c; - ::ll::UntypedStorage<4, 4> mUnk670b85; - ::ll::UntypedStorage<2, 2> mUnk1fae66; - ::ll::UntypedStorage<8, 64> mUnkef55a5; - ::ll::UntypedStorage<8, 24> mUnkb77a3e; + ::ll::TypedStorage<4, 4, float> mEffectRange; + ::ll::TypedStorage<4, 4, int> mEffectId; + ::ll::TypedStorage<4, 4, ::EffectDuration> mEffectTime; + ::ll::TypedStorage<2, 2, ushort> mCooldownTicks; + ::ll::TypedStorage<8, 64, ::ActorFilterGroup> mEntityFilter; + ::ll::TypedStorage<8, 24, ::std::optional<::ExpiringTick>> mCooldown; // NOLINTEND -public: - // prevent constructor by default - MobEffectComponent& operator=(MobEffectComponent const&); - MobEffectComponent(MobEffectComponent const&); - public: // member functions // NOLINTBEGIN diff --git a/src/mc/entity/components_json_legacy/MobEffectDefinition.h b/src/mc/entity/components_json_legacy/MobEffectDefinition.h index 100430c556..baf9542aee 100644 --- a/src/mc/entity/components_json_legacy/MobEffectDefinition.h +++ b/src/mc/entity/components_json_legacy/MobEffectDefinition.h @@ -7,6 +7,7 @@ // auto generated forward declare list // clang-format off +class ActorFilterGroup; class EntityContext; class MobEffectComponent; namespace JsonUtil { class EmptyClass; } @@ -16,18 +17,13 @@ class MobEffectDefinition { public: // member variables // NOLINTBEGIN - ::ll::UntypedStorage<4, 4> mUnk99c8d4; - ::ll::UntypedStorage<4, 4> mUnk7d267f; - ::ll::UntypedStorage<4, 4> mUnk322ee8; - ::ll::UntypedStorage<4, 4> mUnkc12640; - ::ll::UntypedStorage<8, 64> mUnk5dd13a; + ::ll::TypedStorage<4, 4, float> mEffectRange; + ::ll::TypedStorage<4, 4, int> mEffectId; + ::ll::TypedStorage<4, 4, int> mEffectTime; + ::ll::TypedStorage<4, 4, int> mCooldownTicks; + ::ll::TypedStorage<8, 64, ::ActorFilterGroup> mEntityFilter; // NOLINTEND -public: - // prevent constructor by default - MobEffectDefinition& operator=(MobEffectDefinition const&); - MobEffectDefinition(MobEffectDefinition const&); - public: // member functions // NOLINTBEGIN diff --git a/src/mc/entity/components_json_legacy/MobEffectSubcomponent.h b/src/mc/entity/components_json_legacy/MobEffectSubcomponent.h index 3da7346cdb..f2e1d05586 100644 --- a/src/mc/entity/components_json_legacy/MobEffectSubcomponent.h +++ b/src/mc/entity/components_json_legacy/MobEffectSubcomponent.h @@ -8,6 +8,7 @@ // auto generated forward declare list // clang-format off class Actor; +class MobEffectInstance; class ProjectileComponent; namespace Json { class Value; } // clang-format on @@ -16,14 +17,9 @@ class MobEffectSubcomponent : public ::OnHitSubcomponent { public: // member variables // NOLINTBEGIN - ::ll::UntypedStorage<8, 24> mUnkb05777; + ::ll::TypedStorage<8, 24, ::std::vector<::MobEffectInstance>> mMobEffects; // NOLINTEND -public: - // prevent constructor by default - MobEffectSubcomponent& operator=(MobEffectSubcomponent const&); - MobEffectSubcomponent(MobEffectSubcomponent const&); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/entity/components_json_legacy/MountTamingComponent.h b/src/mc/entity/components_json_legacy/MountTamingComponent.h index 94509d64a7..ffaaddc7af 100644 --- a/src/mc/entity/components_json_legacy/MountTamingComponent.h +++ b/src/mc/entity/components_json_legacy/MountTamingComponent.h @@ -37,15 +37,15 @@ class MountTamingComponent { MCAPI void becomeTame(::Actor& owner, bool tamingParticles); - MCAPI int& getCounter(); + MCFOLD int& getCounter(); MCAPI bool getInteraction(::Actor& owner, ::Player& player, ::ActorInteraction& interaction); - MCAPI int& getTemper(); + MCFOLD int& getTemper(); - MCAPI int getTemperMod() const; + MCFOLD int getTemperMod() const; - MCAPI int getWaitCount() const; + MCFOLD int getWaitCount() const; MCAPI void readAdditionalSaveData(::Actor& owner, ::CompoundTag const& tag, ::DataLoadHelper& dataLoadHelper); diff --git a/src/mc/entity/components_json_legacy/MoveControlComponent.h b/src/mc/entity/components_json_legacy/MoveControlComponent.h index 2cad3188d4..4eaddfae0e 100644 --- a/src/mc/entity/components_json_legacy/MoveControlComponent.h +++ b/src/mc/entity/components_json_legacy/MoveControlComponent.h @@ -35,27 +35,27 @@ class MoveControlComponent { MCAPI void _setWantedPosition(::Vec3 const& position); - MCAPI bool getHasWantedPosition() const; + MCFOLD bool getHasWantedPosition() const; - MCAPI float getMaxTurn() const; + MCFOLD float getMaxTurn() const; - MCAPI bool getShouldBreach() const; + MCFOLD bool getShouldBreach() const; - MCAPI float getSpeedModifier() const; + MCFOLD float getSpeedModifier() const; - MCAPI ::Vec3 const& getWantedPosition() const; + MCFOLD ::Vec3 const& getWantedPosition() const; MCAPI void initMultiTypeMovementComponent(::Mob& entity, ::ActorDefinitionDescriptor& initDescription); MCAPI void initializeFromDefinition(::Mob& owner, ::MoveControlDescription* description); - MCAPI void setHasWantedPosition(bool value); + MCFOLD void setHasWantedPosition(bool value); MCAPI void setInternalType(::std::unique_ptr<::MoveControl> type); MCAPI void setMaxTurn(float angle); - MCAPI void setShouldBreach(bool breach); + MCFOLD void setShouldBreach(bool breach); MCAPI void setSpeedModifier(float speedModifier); diff --git a/src/mc/entity/components_json_legacy/NameAction.h b/src/mc/entity/components_json_legacy/NameAction.h index d453178c24..17c994a5d7 100644 --- a/src/mc/entity/components_json_legacy/NameAction.h +++ b/src/mc/entity/components_json_legacy/NameAction.h @@ -20,7 +20,7 @@ struct NameAction { // NOLINTBEGIN MCAPI NameAction(::NameAction const&); - MCAPI void addNameFilterByName(::std::string const& name); + MCFOLD void addNameFilterByName(::std::string const& name); MCAPI ~NameAction(); // NOLINTEND diff --git a/src/mc/entity/components_json_legacy/NavigationComponent.h b/src/mc/entity/components_json_legacy/NavigationComponent.h index 7b5e9c7376..5ac710f84d 100644 --- a/src/mc/entity/components_json_legacy/NavigationComponent.h +++ b/src/mc/entity/components_json_legacy/NavigationComponent.h @@ -68,41 +68,41 @@ class NavigationComponent { MCAPI ::std::unique_ptr<::Path> createPath(::Mob& owner, ::Actor const& target); - MCAPI bool getAvoidDamageBlocks() const; + MCFOLD bool getAvoidDamageBlocks() const; - MCAPI bool getAvoidPortals() const; + MCFOLD bool getAvoidPortals() const; - MCAPI bool getAvoidSun() const; + MCFOLD bool getAvoidSun() const; - MCAPI bool getAvoidWater() const; + MCFOLD bool getAvoidWater() const; - MCAPI ::std::vector<::BlockDescriptor> const& getBlocksToAvoid() const; + MCFOLD ::std::vector<::BlockDescriptor> const& getBlocksToAvoid() const; - MCAPI bool getCanBreach() const; + MCFOLD bool getCanBreach() const; - MCAPI bool getCanFloat() const; + MCFOLD bool getCanFloat() const; - MCAPI bool getCanJump() const; + MCFOLD bool getCanJump() const; - MCAPI bool getCanOpenDoors() const; + MCFOLD bool getCanOpenDoors() const; MCAPI bool getCanOpenIronDoors() const; - MCAPI bool getCanPassDoors() const; + MCFOLD bool getCanPassDoors() const; - MCAPI bool getCanPathOverLava() const; + MCFOLD bool getCanPathOverLava() const; - MCAPI bool getCanSink() const; + MCFOLD bool getCanSink() const; - MCAPI bool getCanWalkInLava() const; + MCFOLD bool getCanWalkInLava() const; - MCAPI float getEndPathRadiusSqr() const; + MCFOLD float getEndPathRadiusSqr() const; - MCAPI bool getHasDestination() const; + MCFOLD bool getHasDestination() const; MCAPI bool getHasEndPathRadius() const; - MCAPI bool getIsAmphibious() const; + MCFOLD bool getIsAmphibious() const; MCAPI bool getIsFollowingRivers() const; @@ -110,15 +110,15 @@ class NavigationComponent { MCAPI float getMaxDistance(::Actor const& owner) const; - MCAPI ::Path* getPath() const; + MCFOLD ::Path* getPath() const; - MCAPI float getSpeed() const; + MCFOLD float getSpeed() const; - MCAPI ::Vec3 const& getTargetOffset() const; + MCFOLD ::Vec3 const& getTargetOffset() const; - MCAPI float getTerminationThreshold() const; + MCFOLD float getTerminationThreshold() const; - MCAPI int getTickTimeout() const; + MCFOLD int getTickTimeout() const; MCAPI void incrementTick(); @@ -150,27 +150,27 @@ class NavigationComponent { MCAPI void resetPath(); - MCAPI void setAvoidDamageBlocks(bool avoidDamageBlocks); + MCFOLD void setAvoidDamageBlocks(bool avoidDamageBlocks); - MCAPI void setAvoidPortals(bool avoidPortals); + MCFOLD void setAvoidPortals(bool avoidPortals); MCAPI void setAvoidSun(bool avoidSun); - MCAPI void setAvoidWater(bool avoidWater); + MCFOLD void setAvoidWater(bool avoidWater); - MCAPI void setCanFloat(bool canFloat); + MCFOLD void setCanFloat(bool canFloat); - MCAPI void setCanJump(bool canJump); + MCFOLD void setCanJump(bool canJump); - MCAPI void setCanOpenDoors(bool canOpenDoors); + MCFOLD void setCanOpenDoors(bool canOpenDoors); MCAPI void setCanPassDoors(bool canPass); - MCAPI void setCanSink(bool canSink); + MCFOLD void setCanSink(bool canSink); MCAPI void setEndPathRadius(float radius); - MCAPI void setHasDestination(bool hasDestination); + MCFOLD void setHasDestination(bool hasDestination); MCAPI void setHasEndPathRadius(bool hasEndPathRadius); @@ -186,7 +186,7 @@ class NavigationComponent { MCAPI void setTerminationThreshold(float threshold); - MCAPI void setTickTimeout(int timeout); + MCFOLD void setTickTimeout(int timeout); MCAPI void stop(::Mob& owner); diff --git a/src/mc/entity/components_json_legacy/NpcComponent.h b/src/mc/entity/components_json_legacy/NpcComponent.h index 383e54ae31..a2e933bee7 100644 --- a/src/mc/entity/components_json_legacy/NpcComponent.h +++ b/src/mc/entity/components_json_legacy/NpcComponent.h @@ -69,11 +69,11 @@ class NpcComponent { MCAPI void executeOpeningCommands(::Actor& owner, ::Player& sourcePlayer, ::std::string const& sceneName); - MCAPI ::npc::ActionContainer& getActionsContainer(); + MCFOLD ::npc::ActionContainer& getActionsContainer(); MCAPI ::std::vector getCommandCounts() const; - MCAPI ::std::string const& getDefaultSceneId() const; + MCFOLD ::std::string const& getDefaultSceneId() const; MCAPI bool getInteraction(::Actor& owner, ::Player& player, ::ActorInteraction& interaction); diff --git a/src/mc/entity/components_json_legacy/NpcI18nObserver.h b/src/mc/entity/components_json_legacy/NpcI18nObserver.h index 6699a118e6..1ec10bc4ff 100644 --- a/src/mc/entity/components_json_legacy/NpcI18nObserver.h +++ b/src/mc/entity/components_json_legacy/NpcI18nObserver.h @@ -55,11 +55,11 @@ class NpcI18nObserver : public ::I18nObserver { public: // virtual function thunks // NOLINTBEGIN - MCAPI void $onLanguageChanged(::std::string const& code, bool languageSystemInitializing); + MCFOLD void $onLanguageChanged(::std::string const& code, bool languageSystemInitializing); - MCAPI void $onLanguageKeywordsLoadedFromPack(::PackManifest const& manifest); + MCFOLD void $onLanguageKeywordsLoadedFromPack(::PackManifest const& manifest); - MCAPI void $onLanguagesLoaded(); + MCFOLD void $onLanguagesLoaded(); // NOLINTEND public: diff --git a/src/mc/entity/components_json_legacy/OnHitSubcomponent.h b/src/mc/entity/components_json_legacy/OnHitSubcomponent.h index f9f0278593..91918cce3d 100644 --- a/src/mc/entity/components_json_legacy/OnHitSubcomponent.h +++ b/src/mc/entity/components_json_legacy/OnHitSubcomponent.h @@ -46,7 +46,7 @@ class OnHitSubcomponent { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND public: diff --git a/src/mc/entity/components_json_legacy/OpenDoorAnnotationDescription.h b/src/mc/entity/components_json_legacy/OpenDoorAnnotationDescription.h index 1ee9a8ecfd..9994fc97f1 100644 --- a/src/mc/entity/components_json_legacy/OpenDoorAnnotationDescription.h +++ b/src/mc/entity/components_json_legacy/OpenDoorAnnotationDescription.h @@ -19,7 +19,7 @@ struct OpenDoorAnnotationDescription : public ::ActorComponentDescription { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND public: diff --git a/src/mc/entity/components_json_legacy/ProjectileComponent.h b/src/mc/entity/components_json_legacy/ProjectileComponent.h index d4ef9b3118..c2c3888687 100644 --- a/src/mc/entity/components_json_legacy/ProjectileComponent.h +++ b/src/mc/entity/components_json_legacy/ProjectileComponent.h @@ -128,7 +128,7 @@ class ProjectileComponent { MCAPI void addAdditionalSaveData(::CompoundTag& tag) const; - MCAPI ::ProjectileAnchor getAnchor(); + MCFOLD ::ProjectileAnchor getAnchor(); MCAPI ::HitResult getCachedHitResult() const; @@ -140,23 +140,23 @@ class ProjectileComponent { MCAPI ::HitResult getHitResult() const; - MCAPI bool getIsDangerous(); + MCFOLD bool getIsDangerous(); - MCAPI float getKnockbackForce() const; + MCFOLD float getKnockbackForce() const; - MCAPI bool getNoPhysics() const; + MCFOLD bool getNoPhysics() const; MCAPI ::Vec3 getOffset(); - MCAPI ::SharedTypes::Legacy::LevelSoundEvent getShootSound(); + MCFOLD ::SharedTypes::Legacy::LevelSoundEvent getShootSound(); MCAPI bool getShootTarget(); MCAPI ::Vec3 getShooterAngle(::Actor& shooter) const; - MCAPI bool getShouldBounce() const; + MCFOLD bool getShouldBounce() const; - MCAPI bool getStopOnHurt() const; + MCFOLD bool getStopOnHurt() const; MCAPI float getThrowPower() const; @@ -202,9 +202,9 @@ class ProjectileComponent { MCAPI void setKnockbackForce(float force); - MCAPI void setNoPhysics(bool value); + MCFOLD void setNoPhysics(bool value); - MCAPI void setOwnerId(::ActorUniqueID id); + MCFOLD void setOwnerId(::ActorUniqueID id); MCAPI void setPotionEffect(int potionEffect); diff --git a/src/mc/entity/components_json_legacy/PushableComponent.h b/src/mc/entity/components_json_legacy/PushableComponent.h index 1b6317812d..bf6cfb4674 100644 --- a/src/mc/entity/components_json_legacy/PushableComponent.h +++ b/src/mc/entity/components_json_legacy/PushableComponent.h @@ -36,9 +36,9 @@ class PushableComponent { MCAPI void initFromDefinition(::Actor&, ::PushableDescription const& desc); - MCAPI bool isPushable() const; + MCFOLD bool isPushable() const; - MCAPI bool isPushableByPiston() const; + MCFOLD bool isPushableByPiston() const; MCAPI void push(::Actor& owner, ::Vec3 const& vec); diff --git a/src/mc/entity/components_json_legacy/PushableDescription.h b/src/mc/entity/components_json_legacy/PushableDescription.h index d68a2157ce..a94d1cc41e 100644 --- a/src/mc/entity/components_json_legacy/PushableDescription.h +++ b/src/mc/entity/components_json_legacy/PushableDescription.h @@ -51,7 +51,7 @@ struct PushableDescription : public ::ActorComponentDescription { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND public: diff --git a/src/mc/entity/components_json_legacy/RemoveOnHitSubcomponent.h b/src/mc/entity/components_json_legacy/RemoveOnHitSubcomponent.h index 6086a69cfd..27e22a963a 100644 --- a/src/mc/entity/components_json_legacy/RemoveOnHitSubcomponent.h +++ b/src/mc/entity/components_json_legacy/RemoveOnHitSubcomponent.h @@ -53,9 +53,9 @@ class RemoveOnHitSubcomponent : public ::OnHitSubcomponent { public: // virtual function thunks // NOLINTBEGIN - MCAPI void $readfromJSON(::Json::Value&); + MCFOLD void $readfromJSON(::Json::Value&); - MCAPI void $writetoJSON(::Json::Value&) const; + MCFOLD void $writetoJSON(::Json::Value&) const; MCAPI void $doOnHitEffect(::Actor& owner, ::ProjectileComponent& component); diff --git a/src/mc/entity/components_json_legacy/RideableComponent.h b/src/mc/entity/components_json_legacy/RideableComponent.h index 8704c22872..37fed19524 100644 --- a/src/mc/entity/components_json_legacy/RideableComponent.h +++ b/src/mc/entity/components_json_legacy/RideableComponent.h @@ -43,9 +43,9 @@ class RideableComponent { MCAPI bool getInteraction(::Actor& owner, ::Player& player, ::ActorInteraction& interaction) const; - MCAPI int getSeatCount() const; + MCFOLD int getSeatCount() const; - MCAPI ::std::vector<::SeatDescription> const& getSeats() const; + MCFOLD ::std::vector<::SeatDescription> const& getSeats() const; MCAPI bool pullInEntity(::Actor& vehicle, ::Actor& passenger) const; // NOLINTEND diff --git a/src/mc/entity/components_json_legacy/ScaleByAgeComponent.h b/src/mc/entity/components_json_legacy/ScaleByAgeComponent.h index 221d715967..4184a56cd4 100644 --- a/src/mc/entity/components_json_legacy/ScaleByAgeComponent.h +++ b/src/mc/entity/components_json_legacy/ScaleByAgeComponent.h @@ -31,6 +31,6 @@ class ScaleByAgeComponent { public: // constructor thunks // NOLINTBEGIN - MCAPI void* $ctor(); + MCFOLD void* $ctor(); // NOLINTEND }; diff --git a/src/mc/entity/components_json_legacy/ScaleByAgeDefinition.h b/src/mc/entity/components_json_legacy/ScaleByAgeDefinition.h index fa2eaca545..b99f18349d 100644 --- a/src/mc/entity/components_json_legacy/ScaleByAgeDefinition.h +++ b/src/mc/entity/components_json_legacy/ScaleByAgeDefinition.h @@ -44,6 +44,6 @@ class ScaleByAgeDefinition { public: // constructor thunks // NOLINTBEGIN - MCAPI void* $ctor(); + MCFOLD void* $ctor(); // NOLINTEND }; diff --git a/src/mc/entity/components_json_legacy/SchedulerComponent.h b/src/mc/entity/components_json_legacy/SchedulerComponent.h index 17ef646eea..96b6a2a9f8 100644 --- a/src/mc/entity/components_json_legacy/SchedulerComponent.h +++ b/src/mc/entity/components_json_legacy/SchedulerComponent.h @@ -18,8 +18,8 @@ class SchedulerComponent { public: // member functions // NOLINTBEGIN - MCAPI int getCurrentEventIndex() const; + MCFOLD int getCurrentEventIndex() const; - MCAPI void setCurrentEventIndex(int index); + MCFOLD void setCurrentEventIndex(int index); // NOLINTEND }; diff --git a/src/mc/entity/components_json_legacy/ShooterComponent.h b/src/mc/entity/components_json_legacy/ShooterComponent.h index a9006058fc..888cb0425e 100644 --- a/src/mc/entity/components_json_legacy/ShooterComponent.h +++ b/src/mc/entity/components_json_legacy/ShooterComponent.h @@ -31,7 +31,7 @@ class ShooterComponent { // NOLINTBEGIN MCAPI void _shootProjectile(::Actor& owner, ::ActorDefinitionIdentifier const& actorDef, int auxVal); - MCAPI bool hasMagicAttacks() const; + MCFOLD bool hasMagicAttacks() const; MCAPI void onShoot(::Actor& owner); diff --git a/src/mc/entity/components_json_legacy/SlotDescriptor.h b/src/mc/entity/components_json_legacy/SlotDescriptor.h index d29cfad52e..37de4a731a 100644 --- a/src/mc/entity/components_json_legacy/SlotDescriptor.h +++ b/src/mc/entity/components_json_legacy/SlotDescriptor.h @@ -30,7 +30,7 @@ struct SlotDescriptor { MCAPI SlotDescriptor(::SlotDescriptor const&); - MCAPI void addAcceptedItem(::ItemDescriptor const& itemDescriptor); + MCFOLD void addAcceptedItem(::ItemDescriptor const& itemDescriptor); MCAPI ::SlotDescriptor& operator=(::SlotDescriptor const&); diff --git a/src/mc/entity/components_json_legacy/SoundDefinition.h b/src/mc/entity/components_json_legacy/SoundDefinition.h index 8c98bdc636..557c885584 100644 --- a/src/mc/entity/components_json_legacy/SoundDefinition.h +++ b/src/mc/entity/components_json_legacy/SoundDefinition.h @@ -25,6 +25,6 @@ class SoundDefinition { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/entity/components_json_legacy/SpawnActorComponent.h b/src/mc/entity/components_json_legacy/SpawnActorComponent.h index 55cf61fcb6..6b14d99b92 100644 --- a/src/mc/entity/components_json_legacy/SpawnActorComponent.h +++ b/src/mc/entity/components_json_legacy/SpawnActorComponent.h @@ -28,7 +28,7 @@ class SpawnActorComponent { // NOLINTBEGIN MCAPI void addAdditionalSaveData(::CompoundTag& tag) const; - MCAPI ::std::vector<::SpawnActorEntry>& getSpawnEntries(); + MCFOLD ::std::vector<::SpawnActorEntry>& getSpawnEntries(); MCAPI ::SpawnActorComponent& operator=(::SpawnActorComponent&&); diff --git a/src/mc/entity/components_json_legacy/SpawnActorParameters.h b/src/mc/entity/components_json_legacy/SpawnActorParameters.h index cc8b1743ce..4e758b449a 100644 --- a/src/mc/entity/components_json_legacy/SpawnActorParameters.h +++ b/src/mc/entity/components_json_legacy/SpawnActorParameters.h @@ -49,7 +49,7 @@ struct SpawnActorParameters { MCAPI void setSpawnTimeMin(int const& value); - MCAPI bool spawnsItemStack() const; + MCFOLD bool spawnsItemStack() const; MCAPI ~SpawnActorParameters(); // NOLINTEND diff --git a/src/mc/entity/components_json_legacy/SplashPotionEffectSubcomponent.h b/src/mc/entity/components_json_legacy/SplashPotionEffectSubcomponent.h index 8608cd78ad..c8e3840683 100644 --- a/src/mc/entity/components_json_legacy/SplashPotionEffectSubcomponent.h +++ b/src/mc/entity/components_json_legacy/SplashPotionEffectSubcomponent.h @@ -73,7 +73,7 @@ class SplashPotionEffectSubcomponent : public ::OnHitSubcomponent { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND public: @@ -85,7 +85,7 @@ class SplashPotionEffectSubcomponent : public ::OnHitSubcomponent { MCAPI void $doOnHitEffect(::Actor& owner, ::ProjectileComponent& component); - MCAPI char const* $getName(); + MCFOLD char const* $getName(); // NOLINTEND public: diff --git a/src/mc/entity/components_json_legacy/SuspectTrackingComponent.h b/src/mc/entity/components_json_legacy/SuspectTrackingComponent.h index fc77d6edfd..3f49c29b34 100644 --- a/src/mc/entity/components_json_legacy/SuspectTrackingComponent.h +++ b/src/mc/entity/components_json_legacy/SuspectTrackingComponent.h @@ -26,9 +26,9 @@ class SuspectTrackingComponent { public: // member functions // NOLINTBEGIN - MCAPI void clearSuspiciousPos(); + MCFOLD void clearSuspiciousPos(); - MCAPI ::std::optional<::BlockPos> getSuspiciousPos() const; + MCFOLD ::std::optional<::BlockPos> getSuspiciousPos() const; MCAPI ::std::optional getTicksSinceLastSuspect(::ILevel const& level) const; diff --git a/src/mc/entity/components_json_legacy/SuspectTrackingDefinition.h b/src/mc/entity/components_json_legacy/SuspectTrackingDefinition.h index b2f31d0bcf..cb2acfd860 100644 --- a/src/mc/entity/components_json_legacy/SuspectTrackingDefinition.h +++ b/src/mc/entity/components_json_legacy/SuspectTrackingDefinition.h @@ -16,13 +16,13 @@ class SuspectTrackingDefinition { public: // member functions // NOLINTBEGIN - MCAPI void initialize(::EntityContext&, ::SuspectTrackingComponent&) const; + MCFOLD void initialize(::EntityContext&, ::SuspectTrackingComponent&) const; // NOLINTEND public: // static functions // NOLINTBEGIN - MCAPI static void buildSchema( + MCFOLD static void buildSchema( ::std::shared_ptr<::JsonUtil::JsonSchemaObjectNode<::JsonUtil::EmptyClass, ::SuspectTrackingDefinition>>& root ); // NOLINTEND diff --git a/src/mc/entity/components_json_legacy/TameableComponent.h b/src/mc/entity/components_json_legacy/TameableComponent.h index fcc2dc645f..9878d88ad3 100644 --- a/src/mc/entity/components_json_legacy/TameableComponent.h +++ b/src/mc/entity/components_json_legacy/TameableComponent.h @@ -43,6 +43,6 @@ class TameableComponent { public: // constructor thunks // NOLINTBEGIN - MCAPI void* $ctor(); + MCFOLD void* $ctor(); // NOLINTEND }; diff --git a/src/mc/entity/components_json_legacy/TameableDefinition.h b/src/mc/entity/components_json_legacy/TameableDefinition.h index 7d3eb03592..b975b1f2c6 100644 --- a/src/mc/entity/components_json_legacy/TameableDefinition.h +++ b/src/mc/entity/components_json_legacy/TameableDefinition.h @@ -33,7 +33,7 @@ class TameableDefinition { MCAPI void addTamingItemByName(::std::string const& name); - MCAPI void initialize(::EntityContext&, ::TameableComponent& component) const; + MCFOLD void initialize(::EntityContext&, ::TameableComponent& component) const; // NOLINTEND public: @@ -47,6 +47,6 @@ class TameableDefinition { public: // constructor thunks // NOLINTBEGIN - MCAPI void* $ctor(); + MCFOLD void* $ctor(); // NOLINTEND }; diff --git a/src/mc/entity/components_json_legacy/TeleportComponent.h b/src/mc/entity/components_json_legacy/TeleportComponent.h index 6a947a5bda..24fd991a9f 100644 --- a/src/mc/entity/components_json_legacy/TeleportComponent.h +++ b/src/mc/entity/components_json_legacy/TeleportComponent.h @@ -33,21 +33,21 @@ class TeleportComponent { // NOLINTBEGIN MCAPI TeleportComponent(); - MCAPI float getDarkTeleportChance(); + MCFOLD float getDarkTeleportChance(); - MCAPI float getLightTeleportChance(); + MCFOLD float getLightTeleportChance(); - MCAPI int getMaxTeleportTime(); + MCFOLD int getMaxTeleportTime(); - MCAPI int getMinTeleportTime(); + MCFOLD int getMinTeleportTime(); - MCAPI bool getRandomTeleports(); + MCFOLD bool getRandomTeleports(); - MCAPI float getTargetDistance(); + MCFOLD float getTargetDistance(); - MCAPI float getTargetTeleportChance(); + MCFOLD float getTargetTeleportChance(); - MCAPI int getTeleportTime(); + MCFOLD int getTeleportTime(); MCAPI void initFromDefinition(::Actor& actor); diff --git a/src/mc/entity/components_json_legacy/TeleportDescription.h b/src/mc/entity/components_json_legacy/TeleportDescription.h index e51a6b08bc..1f87530b36 100644 --- a/src/mc/entity/components_json_legacy/TeleportDescription.h +++ b/src/mc/entity/components_json_legacy/TeleportDescription.h @@ -57,7 +57,7 @@ struct TeleportDescription : public ::ActorComponentDescription { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND public: diff --git a/src/mc/entity/components_json_legacy/TeleportToSubcomponent.h b/src/mc/entity/components_json_legacy/TeleportToSubcomponent.h index 2f60757a09..d6fc63cb77 100644 --- a/src/mc/entity/components_json_legacy/TeleportToSubcomponent.h +++ b/src/mc/entity/components_json_legacy/TeleportToSubcomponent.h @@ -53,9 +53,9 @@ class TeleportToSubcomponent : public ::OnHitSubcomponent { public: // virtual function thunks // NOLINTBEGIN - MCAPI void $readfromJSON(::Json::Value&); + MCFOLD void $readfromJSON(::Json::Value&); - MCAPI void $writetoJSON(::Json::Value&) const; + MCFOLD void $writetoJSON(::Json::Value&) const; MCAPI void $doOnHitEffect(::Actor& owner, ::ProjectileComponent& component); diff --git a/src/mc/entity/components_json_legacy/ThrownPotionEffectSubcomponent.h b/src/mc/entity/components_json_legacy/ThrownPotionEffectSubcomponent.h index 9778858d67..66a4ff8b1e 100644 --- a/src/mc/entity/components_json_legacy/ThrownPotionEffectSubcomponent.h +++ b/src/mc/entity/components_json_legacy/ThrownPotionEffectSubcomponent.h @@ -38,7 +38,7 @@ class ThrownPotionEffectSubcomponent : public ::SplashPotionEffectSubcomponent { public: // virtual function thunks // NOLINTBEGIN - MCAPI void $writetoJSON(::Json::Value&) const; + MCFOLD void $writetoJSON(::Json::Value&) const; MCAPI void $doOnHitEffect(::Actor& owner, ::ProjectileComponent& component); diff --git a/src/mc/entity/components_json_legacy/TickWorldComponent.h b/src/mc/entity/components_json_legacy/TickWorldComponent.h index b49ddd5385..451f240435 100644 --- a/src/mc/entity/components_json_legacy/TickWorldComponent.h +++ b/src/mc/entity/components_json_legacy/TickWorldComponent.h @@ -31,9 +31,9 @@ class TickWorldComponent { MCAPI TickWorldComponent(::TickWorldComponent&& other); - MCAPI uint getChunkRadius() const; + MCFOLD uint getChunkRadius() const; - MCAPI float getMaxDistToPlayers() const; + MCFOLD float getMaxDistToPlayers() const; MCAPI ::std::shared_ptr<::ITickingArea> getTickingArea(); @@ -41,7 +41,7 @@ class TickWorldComponent { MCAPI void initFromDefinition(::Actor& owner); - MCAPI bool isAlwaysActive() const; + MCFOLD bool isAlwaysActive() const; MCAPI ::TickWorldComponent& operator=(::TickWorldComponent&& other); diff --git a/src/mc/entity/components_json_legacy/TickWorldDescription.h b/src/mc/entity/components_json_legacy/TickWorldDescription.h index 4c8ef49e54..dc49fc5ec1 100644 --- a/src/mc/entity/components_json_legacy/TickWorldDescription.h +++ b/src/mc/entity/components_json_legacy/TickWorldDescription.h @@ -52,7 +52,7 @@ struct TickWorldDescription : public ::ActorComponentDescription { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND public: diff --git a/src/mc/entity/components_json_legacy/TimerComponent.h b/src/mc/entity/components_json_legacy/TimerComponent.h index 7b2a07b0ea..1d1b138e37 100644 --- a/src/mc/entity/components_json_legacy/TimerComponent.h +++ b/src/mc/entity/components_json_legacy/TimerComponent.h @@ -37,9 +37,9 @@ class TimerComponent { MCAPI void addAdditionalSaveData(::CompoundTag& tag) const; - MCAPI bool getHasExecuted() const; + MCFOLD bool getHasExecuted() const; - MCAPI bool getLooping() const; + MCFOLD bool getLooping() const; MCAPI int getRandomTime(::Actor& actor); @@ -49,7 +49,7 @@ class TimerComponent { MCAPI void restartTimer(::Actor& actor); - MCAPI void setHasExecuted(bool hasExecuted); + MCFOLD void setHasExecuted(bool hasExecuted); // NOLINTEND public: diff --git a/src/mc/entity/components_json_legacy/TradeResupplyComponent.h b/src/mc/entity/components_json_legacy/TradeResupplyComponent.h index 971859f0fe..294a3f40e7 100644 --- a/src/mc/entity/components_json_legacy/TradeResupplyComponent.h +++ b/src/mc/entity/components_json_legacy/TradeResupplyComponent.h @@ -36,6 +36,6 @@ class TradeResupplyComponent { public: // constructor thunks // NOLINTBEGIN - MCAPI void* $ctor(); + MCFOLD void* $ctor(); // NOLINTEND }; diff --git a/src/mc/entity/components_json_legacy/TradeResupplyDescription.h b/src/mc/entity/components_json_legacy/TradeResupplyDescription.h index 48dcea753c..cadd2546a0 100644 --- a/src/mc/entity/components_json_legacy/TradeResupplyDescription.h +++ b/src/mc/entity/components_json_legacy/TradeResupplyDescription.h @@ -19,7 +19,7 @@ struct TradeResupplyDescription : public ::ActorComponentDescription { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND public: diff --git a/src/mc/entity/components_json_legacy/TransformationComponent.h b/src/mc/entity/components_json_legacy/TransformationComponent.h index e91249154c..cdce698855 100644 --- a/src/mc/entity/components_json_legacy/TransformationComponent.h +++ b/src/mc/entity/components_json_legacy/TransformationComponent.h @@ -27,7 +27,7 @@ class TransformationComponent { // NOLINTBEGIN MCAPI TransformationComponent(); - MCAPI int getDelayTicks() const; + MCFOLD int getDelayTicks() const; MCAPI void initFromDefinition(::Actor& actor); @@ -41,7 +41,7 @@ class TransformationComponent { MCAPI void reloadComponent(::Actor& actor); - MCAPI void setDelayTicks(int delayTicks); + MCFOLD void setDelayTicks(int delayTicks); MCAPI void transformIfAble(::Actor& actor, bool shouldRemove); // NOLINTEND @@ -49,6 +49,6 @@ class TransformationComponent { public: // constructor thunks // NOLINTBEGIN - MCAPI void* $ctor(); + MCFOLD void* $ctor(); // NOLINTEND }; diff --git a/src/mc/entity/components_json_legacy/TrustComponent.h b/src/mc/entity/components_json_legacy/TrustComponent.h index eb53c430c7..baf72a3bc9 100644 --- a/src/mc/entity/components_json_legacy/TrustComponent.h +++ b/src/mc/entity/components_json_legacy/TrustComponent.h @@ -33,9 +33,9 @@ class TrustComponent { MCAPI void assignTrustedPlayer(::ActorUniqueID playerID); - MCAPI ::std::unordered_set<::ActorUniqueID> const& getTrustedPlayerIDs() const; + MCFOLD ::std::unordered_set<::ActorUniqueID> const& getTrustedPlayerIDs() const; - MCAPI ::TrustComponent& operator=(::TrustComponent&&); + MCFOLD ::TrustComponent& operator=(::TrustComponent&&); MCAPI void readAdditionalSaveData(::Actor&, ::CompoundTag const& tag, ::DataLoadHelper&); // NOLINTEND @@ -43,7 +43,7 @@ class TrustComponent { public: // constructor thunks // NOLINTBEGIN - MCAPI void* $ctor(); + MCFOLD void* $ctor(); MCAPI void* $ctor(::TrustComponent&&); // NOLINTEND diff --git a/src/mc/entity/components_json_legacy/TrustDescription.h b/src/mc/entity/components_json_legacy/TrustDescription.h index cab569efb8..9d0ae5b368 100644 --- a/src/mc/entity/components_json_legacy/TrustDescription.h +++ b/src/mc/entity/components_json_legacy/TrustDescription.h @@ -19,7 +19,7 @@ struct TrustDescription : public ::ActorComponentDescription { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND public: diff --git a/src/mc/entity/components_json_legacy/TrustingComponent.h b/src/mc/entity/components_json_legacy/TrustingComponent.h index 4bf25b4bd1..7b5cb41bdd 100644 --- a/src/mc/entity/components_json_legacy/TrustingComponent.h +++ b/src/mc/entity/components_json_legacy/TrustingComponent.h @@ -35,6 +35,6 @@ class TrustingComponent { public: // constructor thunks // NOLINTBEGIN - MCAPI void* $ctor(); + MCFOLD void* $ctor(); // NOLINTEND }; diff --git a/src/mc/entity/components_json_legacy/TrustingDefinition.h b/src/mc/entity/components_json_legacy/TrustingDefinition.h index fd7397ec22..23bf30210d 100644 --- a/src/mc/entity/components_json_legacy/TrustingDefinition.h +++ b/src/mc/entity/components_json_legacy/TrustingDefinition.h @@ -33,7 +33,7 @@ class TrustingDefinition { MCAPI void addTrustItemByName(::std::string const& name); - MCAPI void initialize(::EntityContext&, ::TrustingComponent& component) const; + MCFOLD void initialize(::EntityContext&, ::TrustingComponent& component) const; // NOLINTEND public: @@ -47,6 +47,6 @@ class TrustingDefinition { public: // constructor thunks // NOLINTBEGIN - MCAPI void* $ctor(); + MCFOLD void* $ctor(); // NOLINTEND }; diff --git a/src/mc/entity/components_json_legacy/VibrationListenerDefinition.h b/src/mc/entity/components_json_legacy/VibrationListenerDefinition.h index 5b4f2a6200..80fae883ee 100644 --- a/src/mc/entity/components_json_legacy/VibrationListenerDefinition.h +++ b/src/mc/entity/components_json_legacy/VibrationListenerDefinition.h @@ -21,7 +21,7 @@ class VibrationListenerDefinition { public: // static functions // NOLINTBEGIN - MCAPI static void buildSchema( + MCFOLD static void buildSchema( ::std::shared_ptr<::JsonUtil::JsonSchemaObjectNode<::JsonUtil::EmptyClass, ::VibrationListenerDefinition>>& root ); // NOLINTEND diff --git a/src/mc/entity/components_json_legacy/WaterMovementComponent.h b/src/mc/entity/components_json_legacy/WaterMovementComponent.h index 70d7f5a912..363e5acb26 100644 --- a/src/mc/entity/components_json_legacy/WaterMovementComponent.h +++ b/src/mc/entity/components_json_legacy/WaterMovementComponent.h @@ -24,7 +24,7 @@ class WaterMovementComponent { // NOLINTBEGIN MCAPI WaterMovementComponent(); - MCAPI float getDragFactor() const; + MCFOLD float getDragFactor() const; MCAPI void initFromDefinition(::Actor& owner); // NOLINTEND diff --git a/src/mc/entity/components_json_legacy/WindBurstOnHitSubcomponent.h b/src/mc/entity/components_json_legacy/WindBurstOnHitSubcomponent.h index f84eff9bf8..5377d4427b 100644 --- a/src/mc/entity/components_json_legacy/WindBurstOnHitSubcomponent.h +++ b/src/mc/entity/components_json_legacy/WindBurstOnHitSubcomponent.h @@ -53,9 +53,9 @@ class WindBurstOnHitSubcomponent : public ::OnHitSubcomponent { public: // virtual function thunks // NOLINTBEGIN - MCAPI void $readfromJSON(::Json::Value&); + MCFOLD void $readfromJSON(::Json::Value&); - MCAPI void $writetoJSON(::Json::Value&) const; + MCFOLD void $writetoJSON(::Json::Value&) const; MCAPI void $doOnHitEffect(::Actor& owner, ::ProjectileComponent& component); diff --git a/src/mc/entity/definitions/AmphibiousMoveControlDescription.h b/src/mc/entity/definitions/AmphibiousMoveControlDescription.h index 963b6d9bf9..1ac519ceee 100644 --- a/src/mc/entity/definitions/AmphibiousMoveControlDescription.h +++ b/src/mc/entity/definitions/AmphibiousMoveControlDescription.h @@ -19,7 +19,7 @@ struct AmphibiousMoveControlDescription : public ::MoveControlDescription { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND public: diff --git a/src/mc/entity/definitions/BlockClimberDefinition.h b/src/mc/entity/definitions/BlockClimberDefinition.h index cfc65b22b3..21662ed547 100644 --- a/src/mc/entity/definitions/BlockClimberDefinition.h +++ b/src/mc/entity/definitions/BlockClimberDefinition.h @@ -14,7 +14,7 @@ class BlockClimberDefinition { public: // static functions // NOLINTBEGIN - MCAPI static void buildSchema( + MCFOLD static void buildSchema( ::std::shared_ptr<::JsonUtil::JsonSchemaObjectNode<::JsonUtil::EmptyClass, ::BlockClimberDefinition>>& root ); // NOLINTEND diff --git a/src/mc/entity/definitions/BlockSet.h b/src/mc/entity/definitions/BlockSet.h index 9e4af79973..1c98d0c247 100644 --- a/src/mc/entity/definitions/BlockSet.h +++ b/src/mc/entity/definitions/BlockSet.h @@ -25,6 +25,6 @@ struct BlockSet { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/entity/definitions/BodyRotationBlockedDefinition.h b/src/mc/entity/definitions/BodyRotationBlockedDefinition.h index bd81ee61ac..d4af941c1c 100644 --- a/src/mc/entity/definitions/BodyRotationBlockedDefinition.h +++ b/src/mc/entity/definitions/BodyRotationBlockedDefinition.h @@ -23,7 +23,7 @@ struct BodyRotationBlockedDefinition { public: // static functions // NOLINTBEGIN - MCAPI static void buildSchema( + MCFOLD static void buildSchema( ::std::shared_ptr<::JsonUtil::JsonSchemaObjectNode<::JsonUtil::EmptyClass, ::BodyRotationBlockedDefinition>>& root ); diff --git a/src/mc/entity/definitions/BurnsInDaylightDefinition.h b/src/mc/entity/definitions/BurnsInDaylightDefinition.h index a648c5ccb2..bb983c3785 100644 --- a/src/mc/entity/definitions/BurnsInDaylightDefinition.h +++ b/src/mc/entity/definitions/BurnsInDaylightDefinition.h @@ -14,7 +14,7 @@ class BurnsInDaylightDefinition { public: // static functions // NOLINTBEGIN - MCAPI static void buildSchema( + MCFOLD static void buildSchema( ::std::shared_ptr<::JsonUtil::JsonSchemaObjectNode<::JsonUtil::EmptyClass, ::BurnsInDaylightDefinition>>& root ); // NOLINTEND diff --git a/src/mc/entity/definitions/CanClimbDefinition.h b/src/mc/entity/definitions/CanClimbDefinition.h index 4133be6f50..6b2ea6f4e1 100644 --- a/src/mc/entity/definitions/CanClimbDefinition.h +++ b/src/mc/entity/definitions/CanClimbDefinition.h @@ -23,7 +23,7 @@ struct CanClimbDefinition { public: // static functions // NOLINTBEGIN - MCAPI static void + MCFOLD static void buildSchema(::std::shared_ptr<::JsonUtil::JsonSchemaObjectNode<::JsonUtil::EmptyClass, ::CanClimbDefinition>>& root ); // NOLINTEND diff --git a/src/mc/entity/definitions/CanFlyDefinition.h b/src/mc/entity/definitions/CanFlyDefinition.h index fadb099cee..ba3efb60b7 100644 --- a/src/mc/entity/definitions/CanFlyDefinition.h +++ b/src/mc/entity/definitions/CanFlyDefinition.h @@ -23,7 +23,7 @@ struct CanFlyDefinition { public: // static functions // NOLINTBEGIN - MCAPI static void + MCFOLD static void buildSchema(::std::shared_ptr<::JsonUtil::JsonSchemaObjectNode<::JsonUtil::EmptyClass, ::CanFlyDefinition>>& root); // NOLINTEND }; diff --git a/src/mc/entity/definitions/CanJoinRaidDefinition.h b/src/mc/entity/definitions/CanJoinRaidDefinition.h index 5372b2b55e..e2f175e679 100644 --- a/src/mc/entity/definitions/CanJoinRaidDefinition.h +++ b/src/mc/entity/definitions/CanJoinRaidDefinition.h @@ -14,7 +14,7 @@ struct CanJoinRaidDefinition { public: // static functions // NOLINTBEGIN - MCAPI static void buildSchema( + MCFOLD static void buildSchema( ::std::shared_ptr<::JsonUtil::JsonSchemaObjectNode<::JsonUtil::EmptyClass, ::CanJoinRaidDefinition>>& root ); // NOLINTEND diff --git a/src/mc/entity/definitions/CanPowerJumpDefinition.h b/src/mc/entity/definitions/CanPowerJumpDefinition.h index 2194068144..ecdc8e41c3 100644 --- a/src/mc/entity/definitions/CanPowerJumpDefinition.h +++ b/src/mc/entity/definitions/CanPowerJumpDefinition.h @@ -23,7 +23,7 @@ struct CanPowerJumpDefinition { public: // static functions // NOLINTBEGIN - MCAPI static void buildSchema( + MCFOLD static void buildSchema( ::std::shared_ptr<::JsonUtil::JsonSchemaObjectNode<::JsonUtil::EmptyClass, ::CanPowerJumpDefinition>>& root ); // NOLINTEND diff --git a/src/mc/entity/definitions/CannotBeAttackedDefinition.h b/src/mc/entity/definitions/CannotBeAttackedDefinition.h index 274dd3a67a..a5391bab32 100644 --- a/src/mc/entity/definitions/CannotBeAttackedDefinition.h +++ b/src/mc/entity/definitions/CannotBeAttackedDefinition.h @@ -14,7 +14,7 @@ struct CannotBeAttackedDefinition { public: // static functions // NOLINTBEGIN - MCAPI static void buildSchema( + MCFOLD static void buildSchema( ::std::shared_ptr<::JsonUtil::JsonSchemaObjectNode<::JsonUtil::EmptyClass, ::CannotBeAttackedDefinition>>& root ); // NOLINTEND diff --git a/src/mc/entity/definitions/ColorDefinition.h b/src/mc/entity/definitions/ColorDefinition.h index 98cb25d98d..e5f9544205 100644 --- a/src/mc/entity/definitions/ColorDefinition.h +++ b/src/mc/entity/definitions/ColorDefinition.h @@ -26,7 +26,7 @@ struct ColorDefinition { public: // member functions // NOLINTBEGIN - MCAPI void setColorChoice(int const& colorChoice); + MCFOLD void setColorChoice(int const& colorChoice); // NOLINTEND public: diff --git a/src/mc/entity/definitions/DimensionBoundDefinition.h b/src/mc/entity/definitions/DimensionBoundDefinition.h index b45c47abf7..418300be39 100644 --- a/src/mc/entity/definitions/DimensionBoundDefinition.h +++ b/src/mc/entity/definitions/DimensionBoundDefinition.h @@ -14,7 +14,7 @@ struct DimensionBoundDefinition { public: // static functions // NOLINTBEGIN - MCAPI static void buildSchema( + MCFOLD static void buildSchema( ::std::shared_ptr<::JsonUtil::JsonSchemaObjectNode<::JsonUtil::EmptyClass, ::DimensionBoundDefinition>>& root ); // NOLINTEND diff --git a/src/mc/entity/definitions/DynamicJumpControlDescription.h b/src/mc/entity/definitions/DynamicJumpControlDescription.h index 8be9d5c545..0bcf5a941f 100644 --- a/src/mc/entity/definitions/DynamicJumpControlDescription.h +++ b/src/mc/entity/definitions/DynamicJumpControlDescription.h @@ -27,7 +27,7 @@ struct DynamicJumpControlDescription : public ::JumpControlDescription { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND public: diff --git a/src/mc/entity/definitions/EquipItemDefinition.h b/src/mc/entity/definitions/EquipItemDefinition.h index 015187a6a8..e6d8fea5af 100644 --- a/src/mc/entity/definitions/EquipItemDefinition.h +++ b/src/mc/entity/definitions/EquipItemDefinition.h @@ -27,7 +27,7 @@ class EquipItemDefinition { public: // member functions // NOLINTBEGIN - MCAPI void addExcludeItemByName(::ItemDescriptor const& itemDescriptor); + MCFOLD void addExcludeItemByName(::ItemDescriptor const& itemDescriptor); // NOLINTEND public: diff --git a/src/mc/entity/definitions/EquipmentTableDefinition.h b/src/mc/entity/definitions/EquipmentTableDefinition.h index 7e81f3bc38..d319d31a8b 100644 --- a/src/mc/entity/definitions/EquipmentTableDefinition.h +++ b/src/mc/entity/definitions/EquipmentTableDefinition.h @@ -26,7 +26,7 @@ struct EquipmentTableDefinition { public: // member functions // NOLINTBEGIN - MCAPI void _setLootTable(::std::string const& lootTable); + MCFOLD void _setLootTable(::std::string const& lootTable); // NOLINTEND public: diff --git a/src/mc/entity/definitions/FireImmuneDefinition.h b/src/mc/entity/definitions/FireImmuneDefinition.h index bc9d503a41..dbd1a7ea76 100644 --- a/src/mc/entity/definitions/FireImmuneDefinition.h +++ b/src/mc/entity/definitions/FireImmuneDefinition.h @@ -23,7 +23,7 @@ struct FireImmuneDefinition { public: // static functions // NOLINTBEGIN - MCAPI static void buildSchema( + MCFOLD static void buildSchema( ::std::shared_ptr<::JsonUtil::JsonSchemaObjectNode<::JsonUtil::EmptyClass, ::FireImmuneDefinition>>& root ); // NOLINTEND diff --git a/src/mc/entity/definitions/FloatsInLiquidDefinition.h b/src/mc/entity/definitions/FloatsInLiquidDefinition.h index 0597c2d89d..c7fdf5275b 100644 --- a/src/mc/entity/definitions/FloatsInLiquidDefinition.h +++ b/src/mc/entity/definitions/FloatsInLiquidDefinition.h @@ -14,7 +14,7 @@ struct FloatsInLiquidDefinition { public: // static functions // NOLINTBEGIN - MCAPI static void buildSchema( + MCFOLD static void buildSchema( ::std::shared_ptr<::JsonUtil::JsonSchemaObjectNode<::JsonUtil::EmptyClass, ::FloatsInLiquidDefinition>>& root ); // NOLINTEND diff --git a/src/mc/entity/definitions/GenericMoveControlDescription.h b/src/mc/entity/definitions/GenericMoveControlDescription.h index 62f4462efc..3eecfe3863 100644 --- a/src/mc/entity/definitions/GenericMoveControlDescription.h +++ b/src/mc/entity/definitions/GenericMoveControlDescription.h @@ -19,7 +19,7 @@ struct GenericMoveControlDescription : public ::MoveControlDescription { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND public: diff --git a/src/mc/entity/definitions/GlideMoveControlDescription.h b/src/mc/entity/definitions/GlideMoveControlDescription.h index 80f991c337..3850b4b557 100644 --- a/src/mc/entity/definitions/GlideMoveControlDescription.h +++ b/src/mc/entity/definitions/GlideMoveControlDescription.h @@ -40,7 +40,7 @@ struct GlideMoveControlDescription : public ::MoveControlDescription { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND public: diff --git a/src/mc/entity/definitions/IsBabyDefinition.h b/src/mc/entity/definitions/IsBabyDefinition.h index 738d8ba75a..869df1e7ee 100644 --- a/src/mc/entity/definitions/IsBabyDefinition.h +++ b/src/mc/entity/definitions/IsBabyDefinition.h @@ -23,7 +23,7 @@ struct IsBabyDefinition { public: // static functions // NOLINTBEGIN - MCAPI static void + MCFOLD static void buildSchema(::std::shared_ptr<::JsonUtil::JsonSchemaObjectNode<::JsonUtil::EmptyClass, ::IsBabyDefinition>>& root); // NOLINTEND }; diff --git a/src/mc/entity/definitions/IsChargedDefinition.h b/src/mc/entity/definitions/IsChargedDefinition.h index 9372a57add..76aa54230e 100644 --- a/src/mc/entity/definitions/IsChargedDefinition.h +++ b/src/mc/entity/definitions/IsChargedDefinition.h @@ -23,7 +23,7 @@ struct IsChargedDefinition { public: // static functions // NOLINTBEGIN - MCAPI static void + MCFOLD static void buildSchema(::std::shared_ptr<::JsonUtil::JsonSchemaObjectNode<::JsonUtil::EmptyClass, ::IsChargedDefinition>>& root ); // NOLINTEND diff --git a/src/mc/entity/definitions/IsChestedDefinition.h b/src/mc/entity/definitions/IsChestedDefinition.h index e7ba8bfed1..496f038771 100644 --- a/src/mc/entity/definitions/IsChestedDefinition.h +++ b/src/mc/entity/definitions/IsChestedDefinition.h @@ -23,7 +23,7 @@ struct IsChestedDefinition { public: // static functions // NOLINTBEGIN - MCAPI static void + MCFOLD static void buildSchema(::std::shared_ptr<::JsonUtil::JsonSchemaObjectNode<::JsonUtil::EmptyClass, ::IsChestedDefinition>>& root ); // NOLINTEND diff --git a/src/mc/entity/definitions/IsHiddenWhenInvisibleDefinition.h b/src/mc/entity/definitions/IsHiddenWhenInvisibleDefinition.h index 0bfe98b094..b57841a49c 100644 --- a/src/mc/entity/definitions/IsHiddenWhenInvisibleDefinition.h +++ b/src/mc/entity/definitions/IsHiddenWhenInvisibleDefinition.h @@ -23,7 +23,7 @@ struct IsHiddenWhenInvisibleDefinition { public: // static functions // NOLINTBEGIN - MCAPI static void buildSchema( + MCFOLD static void buildSchema( ::std::shared_ptr<::JsonUtil::JsonSchemaObjectNode<::JsonUtil::EmptyClass, ::IsHiddenWhenInvisibleDefinition>>& root ); diff --git a/src/mc/entity/definitions/IsIgnitedDefinition.h b/src/mc/entity/definitions/IsIgnitedDefinition.h index e3f5e35bb7..e3421ae4d0 100644 --- a/src/mc/entity/definitions/IsIgnitedDefinition.h +++ b/src/mc/entity/definitions/IsIgnitedDefinition.h @@ -17,13 +17,13 @@ struct IsIgnitedDefinition { // NOLINTBEGIN MCAPI void initialize(::EntityContext& entity) const; - MCAPI void uninitialize(::EntityContext& entity) const; + MCFOLD void uninitialize(::EntityContext& entity) const; // NOLINTEND public: // static functions // NOLINTBEGIN - MCAPI static void + MCFOLD static void buildSchema(::std::shared_ptr<::JsonUtil::JsonSchemaObjectNode<::JsonUtil::EmptyClass, ::IsIgnitedDefinition>>& root ); // NOLINTEND diff --git a/src/mc/entity/definitions/IsIllagerCaptainDefinition.h b/src/mc/entity/definitions/IsIllagerCaptainDefinition.h index febb491c3c..aa0f4b85f8 100644 --- a/src/mc/entity/definitions/IsIllagerCaptainDefinition.h +++ b/src/mc/entity/definitions/IsIllagerCaptainDefinition.h @@ -23,7 +23,7 @@ struct IsIllagerCaptainDefinition { public: // static functions // NOLINTBEGIN - MCAPI static void buildSchema( + MCFOLD static void buildSchema( ::std::shared_ptr<::JsonUtil::JsonSchemaObjectNode<::JsonUtil::EmptyClass, ::IsIllagerCaptainDefinition>>& root ); // NOLINTEND diff --git a/src/mc/entity/definitions/IsPregnantDefinition.h b/src/mc/entity/definitions/IsPregnantDefinition.h index efe0daebad..a7ce3a4136 100644 --- a/src/mc/entity/definitions/IsPregnantDefinition.h +++ b/src/mc/entity/definitions/IsPregnantDefinition.h @@ -23,7 +23,7 @@ struct IsPregnantDefinition { public: // static functions // NOLINTBEGIN - MCAPI static void buildSchema( + MCFOLD static void buildSchema( ::std::shared_ptr<::JsonUtil::JsonSchemaObjectNode<::JsonUtil::EmptyClass, ::IsPregnantDefinition>>& root ); // NOLINTEND diff --git a/src/mc/entity/definitions/IsSaddledDefinition.h b/src/mc/entity/definitions/IsSaddledDefinition.h index 9d06ab47e3..d6e62ed5d0 100644 --- a/src/mc/entity/definitions/IsSaddledDefinition.h +++ b/src/mc/entity/definitions/IsSaddledDefinition.h @@ -23,7 +23,7 @@ struct IsSaddledDefinition { public: // static functions // NOLINTBEGIN - MCAPI static void + MCFOLD static void buildSchema(::std::shared_ptr<::JsonUtil::JsonSchemaObjectNode<::JsonUtil::EmptyClass, ::IsSaddledDefinition>>& root ); // NOLINTEND diff --git a/src/mc/entity/definitions/IsShakingDefinition.h b/src/mc/entity/definitions/IsShakingDefinition.h index 680921480f..671273a5b5 100644 --- a/src/mc/entity/definitions/IsShakingDefinition.h +++ b/src/mc/entity/definitions/IsShakingDefinition.h @@ -23,7 +23,7 @@ struct IsShakingDefinition { public: // static functions // NOLINTBEGIN - MCAPI static void + MCFOLD static void buildSchema(::std::shared_ptr<::JsonUtil::JsonSchemaObjectNode<::JsonUtil::EmptyClass, ::IsShakingDefinition>>& root ); // NOLINTEND diff --git a/src/mc/entity/definitions/IsShearedDefinition.h b/src/mc/entity/definitions/IsShearedDefinition.h index c6e9f02406..2e8848936c 100644 --- a/src/mc/entity/definitions/IsShearedDefinition.h +++ b/src/mc/entity/definitions/IsShearedDefinition.h @@ -23,7 +23,7 @@ struct IsShearedDefinition { public: // static functions // NOLINTBEGIN - MCAPI static void + MCFOLD static void buildSchema(::std::shared_ptr<::JsonUtil::JsonSchemaObjectNode<::JsonUtil::EmptyClass, ::IsShearedDefinition>>& root ); // NOLINTEND diff --git a/src/mc/entity/definitions/IsStackableDefinition.h b/src/mc/entity/definitions/IsStackableDefinition.h index 3e728b9914..e4806f18de 100644 --- a/src/mc/entity/definitions/IsStackableDefinition.h +++ b/src/mc/entity/definitions/IsStackableDefinition.h @@ -23,7 +23,7 @@ struct IsStackableDefinition { public: // static functions // NOLINTBEGIN - MCAPI static void buildSchema( + MCFOLD static void buildSchema( ::std::shared_ptr<::JsonUtil::JsonSchemaObjectNode<::JsonUtil::EmptyClass, ::IsStackableDefinition>>& root ); diff --git a/src/mc/entity/definitions/IsStunnedDefinition.h b/src/mc/entity/definitions/IsStunnedDefinition.h index e6d1dd43c9..230d843b37 100644 --- a/src/mc/entity/definitions/IsStunnedDefinition.h +++ b/src/mc/entity/definitions/IsStunnedDefinition.h @@ -23,7 +23,7 @@ struct IsStunnedDefinition { public: // static functions // NOLINTBEGIN - MCAPI static void + MCFOLD static void buildSchema(::std::shared_ptr<::JsonUtil::JsonSchemaObjectNode<::JsonUtil::EmptyClass, ::IsStunnedDefinition>>& root ); // NOLINTEND diff --git a/src/mc/entity/definitions/IsTamedDefinition.h b/src/mc/entity/definitions/IsTamedDefinition.h index bd1dfbb3ec..4fa61a51cc 100644 --- a/src/mc/entity/definitions/IsTamedDefinition.h +++ b/src/mc/entity/definitions/IsTamedDefinition.h @@ -23,7 +23,7 @@ struct IsTamedDefinition { public: // static functions // NOLINTBEGIN - MCAPI static void + MCFOLD static void buildSchema(::std::shared_ptr<::JsonUtil::JsonSchemaObjectNode<::JsonUtil::EmptyClass, ::IsTamedDefinition>>& root); // NOLINTEND }; diff --git a/src/mc/entity/definitions/JumpControlDescription.h b/src/mc/entity/definitions/JumpControlDescription.h index cd2dd259a8..3cba005195 100644 --- a/src/mc/entity/definitions/JumpControlDescription.h +++ b/src/mc/entity/definitions/JumpControlDescription.h @@ -39,7 +39,7 @@ struct JumpControlDescription : public ::ActorComponentDescription { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND public: diff --git a/src/mc/entity/definitions/MobEffectChangeDescription.h b/src/mc/entity/definitions/MobEffectChangeDescription.h index 8fade1d654..34a21ae265 100644 --- a/src/mc/entity/definitions/MobEffectChangeDescription.h +++ b/src/mc/entity/definitions/MobEffectChangeDescription.h @@ -7,6 +7,7 @@ // auto generated forward declare list // clang-format off +class MobEffectInstance; struct DeserializeDataParams; // clang-format on @@ -14,16 +15,10 @@ struct MobEffectChangeDescription : public ::AttributeDescription { public: // member variables // NOLINTBEGIN - ::ll::UntypedStorage<8, 24> mUnka9c939; - ::ll::UntypedStorage<8, 24> mUnk5e4af7; + ::ll::TypedStorage<8, 24, ::std::vector<::MobEffectInstance>> mAddEffects; + ::ll::TypedStorage<8, 24, ::std::vector<::std::string>> mRemoveEffects; // NOLINTEND -public: - // prevent constructor by default - MobEffectChangeDescription& operator=(MobEffectChangeDescription const&); - MobEffectChangeDescription(MobEffectChangeDescription const&); - MobEffectChangeDescription(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/entity/definitions/MobEffectImmunityDefinition.h b/src/mc/entity/definitions/MobEffectImmunityDefinition.h index 79f1470bda..1cb20c6e01 100644 --- a/src/mc/entity/definitions/MobEffectImmunityDefinition.h +++ b/src/mc/entity/definitions/MobEffectImmunityDefinition.h @@ -16,15 +16,9 @@ class MobEffectImmunityDefinition { public: // member variables // NOLINTBEGIN - ::ll::UntypedStorage<8, 24> mUnk8bf693; + ::ll::TypedStorage<8, 24, ::std::vector> mMobEffects; // NOLINTEND -public: - // prevent constructor by default - MobEffectImmunityDefinition& operator=(MobEffectImmunityDefinition const&); - MobEffectImmunityDefinition(MobEffectImmunityDefinition const&); - MobEffectImmunityDefinition(); - public: // member functions // NOLINTBEGIN diff --git a/src/mc/entity/definitions/MoveControlBasicDescription.h b/src/mc/entity/definitions/MoveControlBasicDescription.h index 1623dcb8fa..0d6e175b07 100644 --- a/src/mc/entity/definitions/MoveControlBasicDescription.h +++ b/src/mc/entity/definitions/MoveControlBasicDescription.h @@ -19,7 +19,7 @@ struct MoveControlBasicDescription : public ::MoveControlDescription { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND public: diff --git a/src/mc/entity/definitions/MoveControlDolphinDescription.h b/src/mc/entity/definitions/MoveControlDolphinDescription.h index 2f9bfd4a32..7848158521 100644 --- a/src/mc/entity/definitions/MoveControlDolphinDescription.h +++ b/src/mc/entity/definitions/MoveControlDolphinDescription.h @@ -19,7 +19,7 @@ struct MoveControlDolphinDescription : public ::MoveControlDescription { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND public: diff --git a/src/mc/entity/definitions/MoveControlFlyDescription.h b/src/mc/entity/definitions/MoveControlFlyDescription.h index c12520f3f7..773c026712 100644 --- a/src/mc/entity/definitions/MoveControlFlyDescription.h +++ b/src/mc/entity/definitions/MoveControlFlyDescription.h @@ -19,7 +19,7 @@ struct MoveControlFlyDescription : public ::MoveControlDescription { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND public: diff --git a/src/mc/entity/definitions/MoveControlHoverDescription.h b/src/mc/entity/definitions/MoveControlHoverDescription.h index c75f508f83..4f3f2f3ba6 100644 --- a/src/mc/entity/definitions/MoveControlHoverDescription.h +++ b/src/mc/entity/definitions/MoveControlHoverDescription.h @@ -19,7 +19,7 @@ struct MoveControlHoverDescription : public ::MoveControlDescription { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND public: diff --git a/src/mc/entity/definitions/MoveControlSkipDescription.h b/src/mc/entity/definitions/MoveControlSkipDescription.h index 8f4f3515d4..fa1423be99 100644 --- a/src/mc/entity/definitions/MoveControlSkipDescription.h +++ b/src/mc/entity/definitions/MoveControlSkipDescription.h @@ -19,7 +19,7 @@ struct MoveControlSkipDescription : public ::MoveControlDescription { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND public: diff --git a/src/mc/entity/definitions/MoveControlSwayDescription.h b/src/mc/entity/definitions/MoveControlSwayDescription.h index d51ffcd467..f14f3ac70b 100644 --- a/src/mc/entity/definitions/MoveControlSwayDescription.h +++ b/src/mc/entity/definitions/MoveControlSwayDescription.h @@ -40,7 +40,7 @@ struct MoveControlSwayDescription : public ::MoveControlDescription { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND public: diff --git a/src/mc/entity/definitions/NavigationClimbDescription.h b/src/mc/entity/definitions/NavigationClimbDescription.h index 4cbba07683..305f32f850 100644 --- a/src/mc/entity/definitions/NavigationClimbDescription.h +++ b/src/mc/entity/definitions/NavigationClimbDescription.h @@ -19,7 +19,7 @@ struct NavigationClimbDescription : public ::NavigationDescription { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND public: diff --git a/src/mc/entity/definitions/NavigationFloatDescription.h b/src/mc/entity/definitions/NavigationFloatDescription.h index 1155ce1380..7c17451e56 100644 --- a/src/mc/entity/definitions/NavigationFloatDescription.h +++ b/src/mc/entity/definitions/NavigationFloatDescription.h @@ -19,7 +19,7 @@ struct NavigationFloatDescription : public ::NavigationDescription { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND public: diff --git a/src/mc/entity/definitions/NavigationFlyDescription.h b/src/mc/entity/definitions/NavigationFlyDescription.h index da88113260..3a9fd9fb9a 100644 --- a/src/mc/entity/definitions/NavigationFlyDescription.h +++ b/src/mc/entity/definitions/NavigationFlyDescription.h @@ -19,7 +19,7 @@ struct NavigationFlyDescription : public ::NavigationDescription { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND public: diff --git a/src/mc/entity/definitions/NavigationGenericDescription.h b/src/mc/entity/definitions/NavigationGenericDescription.h index 6b36c2853c..edd3071716 100644 --- a/src/mc/entity/definitions/NavigationGenericDescription.h +++ b/src/mc/entity/definitions/NavigationGenericDescription.h @@ -19,7 +19,7 @@ struct NavigationGenericDescription : public ::NavigationDescription { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND public: diff --git a/src/mc/entity/definitions/NavigationHoverDescription.h b/src/mc/entity/definitions/NavigationHoverDescription.h index ebcb0ff397..5ca9e7b9e9 100644 --- a/src/mc/entity/definitions/NavigationHoverDescription.h +++ b/src/mc/entity/definitions/NavigationHoverDescription.h @@ -19,7 +19,7 @@ struct NavigationHoverDescription : public ::NavigationDescription { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND public: diff --git a/src/mc/entity/definitions/NavigationSwimDescription.h b/src/mc/entity/definitions/NavigationSwimDescription.h index 94e4097893..b67211c55d 100644 --- a/src/mc/entity/definitions/NavigationSwimDescription.h +++ b/src/mc/entity/definitions/NavigationSwimDescription.h @@ -38,7 +38,7 @@ struct NavigationSwimDescription : public ::NavigationDescription { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND public: diff --git a/src/mc/entity/definitions/NavigationWalkDescription.h b/src/mc/entity/definitions/NavigationWalkDescription.h index 12f58979d6..63591188dd 100644 --- a/src/mc/entity/definitions/NavigationWalkDescription.h +++ b/src/mc/entity/definitions/NavigationWalkDescription.h @@ -19,7 +19,7 @@ struct NavigationWalkDescription : public ::NavigationDescription { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND public: diff --git a/src/mc/entity/definitions/OutOfControlDefinition.h b/src/mc/entity/definitions/OutOfControlDefinition.h index fb4b3e51a6..79872a95e3 100644 --- a/src/mc/entity/definitions/OutOfControlDefinition.h +++ b/src/mc/entity/definitions/OutOfControlDefinition.h @@ -24,7 +24,7 @@ class OutOfControlDefinition { public: // static functions // NOLINTBEGIN - MCAPI static void buildSchema( + MCFOLD static void buildSchema( ::std::shared_ptr<::JsonUtil::JsonSchemaObjectNode<::JsonUtil::EmptyClass, ::OutOfControlDefinition>>& root ); // NOLINTEND diff --git a/src/mc/entity/definitions/PersistentDescription.h b/src/mc/entity/definitions/PersistentDescription.h index adab21851b..65b9c7ae41 100644 --- a/src/mc/entity/definitions/PersistentDescription.h +++ b/src/mc/entity/definitions/PersistentDescription.h @@ -19,7 +19,7 @@ struct PersistentDescription : public ::ActorComponentDescription { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND public: diff --git a/src/mc/entity/definitions/RailMovementDefinition.h b/src/mc/entity/definitions/RailMovementDefinition.h index eaedb545f9..53d78fefbb 100644 --- a/src/mc/entity/definitions/RailMovementDefinition.h +++ b/src/mc/entity/definitions/RailMovementDefinition.h @@ -29,7 +29,7 @@ class RailMovementDefinition { // NOLINTBEGIN MCAPI RailMovementDefinition(); - MCAPI void initialize(::EntityContext&, ::RailMovementComponent& component) const; + MCFOLD void initialize(::EntityContext&, ::RailMovementComponent& component) const; // NOLINTEND public: diff --git a/src/mc/entity/definitions/SlimeMoveControlDescription.h b/src/mc/entity/definitions/SlimeMoveControlDescription.h index d9b437695e..49868eb44d 100644 --- a/src/mc/entity/definitions/SlimeMoveControlDescription.h +++ b/src/mc/entity/definitions/SlimeMoveControlDescription.h @@ -39,7 +39,7 @@ struct SlimeMoveControlDescription : public ::MoveControlDescription { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND public: diff --git a/src/mc/entity/definitions/StrengthDescription.h b/src/mc/entity/definitions/StrengthDescription.h index 7e24dac207..05c7693764 100644 --- a/src/mc/entity/definitions/StrengthDescription.h +++ b/src/mc/entity/definitions/StrengthDescription.h @@ -41,7 +41,7 @@ struct StrengthDescription : public ::AttributeDescription { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND public: diff --git a/src/mc/entity/definitions/TransientDefinition.h b/src/mc/entity/definitions/TransientDefinition.h index 2043241bad..cf4764cfb1 100644 --- a/src/mc/entity/definitions/TransientDefinition.h +++ b/src/mc/entity/definitions/TransientDefinition.h @@ -14,7 +14,7 @@ struct TransientDefinition { public: // static functions // NOLINTBEGIN - MCAPI static void + MCFOLD static void buildSchema(::std::shared_ptr<::JsonUtil::JsonSchemaObjectNode<::JsonUtil::EmptyClass, ::TransientDefinition>>& root ); // NOLINTEND diff --git a/src/mc/entity/definitions/VibrationDamperDefinition.h b/src/mc/entity/definitions/VibrationDamperDefinition.h index ae8ca088fe..da5995831b 100644 --- a/src/mc/entity/definitions/VibrationDamperDefinition.h +++ b/src/mc/entity/definitions/VibrationDamperDefinition.h @@ -14,7 +14,7 @@ struct VibrationDamperDefinition { public: // static functions // NOLINTBEGIN - MCAPI static void buildSchema( + MCFOLD static void buildSchema( ::std::shared_ptr<::JsonUtil::JsonSchemaObjectNode<::JsonUtil::EmptyClass, ::VibrationDamperDefinition>>& root ); // NOLINTEND diff --git a/src/mc/entity/definitions/WASDControlledDefinition.h b/src/mc/entity/definitions/WASDControlledDefinition.h index 9241f34c1e..cced0ecdff 100644 --- a/src/mc/entity/definitions/WASDControlledDefinition.h +++ b/src/mc/entity/definitions/WASDControlledDefinition.h @@ -23,7 +23,7 @@ struct WASDControlledDefinition { public: // static functions // NOLINTBEGIN - MCAPI static void buildSchema( + MCFOLD static void buildSchema( ::std::shared_ptr<::JsonUtil::JsonSchemaObjectNode<::JsonUtil::EmptyClass, ::WASDControlledDefinition>>& root ); // NOLINTEND diff --git a/src/mc/entity/definitions/WantsJockeyDefinition.h b/src/mc/entity/definitions/WantsJockeyDefinition.h index 8be2ce346a..e7ee1e8ddc 100644 --- a/src/mc/entity/definitions/WantsJockeyDefinition.h +++ b/src/mc/entity/definitions/WantsJockeyDefinition.h @@ -14,7 +14,7 @@ struct WantsJockeyDefinition { public: // static functions // NOLINTBEGIN - MCAPI static void buildSchema( + MCFOLD static void buildSchema( ::std::shared_ptr<::JsonUtil::JsonSchemaObjectNode<::JsonUtil::EmptyClass, ::WantsJockeyDefinition>>& root ); // NOLINTEND diff --git a/src/mc/entity/factory/DefinitionInstanceGroup.h b/src/mc/entity/factory/DefinitionInstanceGroup.h index 9dedd32e8f..79ffd529e6 100644 --- a/src/mc/entity/factory/DefinitionInstanceGroup.h +++ b/src/mc/entity/factory/DefinitionInstanceGroup.h @@ -43,6 +43,6 @@ class DefinitionInstanceGroup { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/entity/factory/EntityComponentFactoryBase.h b/src/mc/entity/factory/EntityComponentFactoryBase.h index 68d9d5a92a..b797cb461a 100644 --- a/src/mc/entity/factory/EntityComponentFactoryBase.h +++ b/src/mc/entity/factory/EntityComponentFactoryBase.h @@ -37,6 +37,6 @@ class EntityComponentFactoryBase : public ::Bedrock::EnableNonOwnerReferences { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/entity/factory/EntityGoalFactory.h b/src/mc/entity/factory/EntityGoalFactory.h index 4c45234e67..d1992afe4f 100644 --- a/src/mc/entity/factory/EntityGoalFactory.h +++ b/src/mc/entity/factory/EntityGoalFactory.h @@ -26,7 +26,7 @@ class EntityGoalFactory { public: // member functions // NOLINTBEGIN - MCAPI ::IJsonDefinitionSerializer* tryGetDefinitionSerializer(::std::string const& name); + MCFOLD ::IJsonDefinitionSerializer* tryGetDefinitionSerializer(::std::string const& name); MCAPI ~EntityGoalFactory(); // NOLINTEND @@ -44,6 +44,6 @@ class EntityGoalFactory { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/entity/factory/IJsonDefinitionSerializer.h b/src/mc/entity/factory/IJsonDefinitionSerializer.h index d709091743..92a45821ef 100644 --- a/src/mc/entity/factory/IJsonDefinitionSerializer.h +++ b/src/mc/entity/factory/IJsonDefinitionSerializer.h @@ -61,7 +61,7 @@ class IJsonDefinitionSerializer { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND public: diff --git a/src/mc/entity/systems/ClientInputUpdateSystemInternal.h b/src/mc/entity/systems/ClientInputUpdateSystemInternal.h index 64722d1e0d..790f1c67e5 100644 --- a/src/mc/entity/systems/ClientInputUpdateSystemInternal.h +++ b/src/mc/entity/systems/ClientInputUpdateSystemInternal.h @@ -172,54 +172,54 @@ struct ClientInputUpdateSystemInternal public: // virtual function thunks // NOLINTBEGIN - MCAPI void $tick(::StrictExecutionContext< - ::Filter< - ::CanStandOnSnowFlagComponent, - ::HasLightweightFamilyFlagComponent, - ::HorseFlagComponent, - ::MobFlagComponent, - ::ParrotFlagComponent, - ::VehicleComponent, - ::CamelFlagComponent, - ::PlayerComponent, - ::LocalPlayerComponent, - ::PlayerInputRequestComponent>, - ::Read< - ::AABBShapeComponent, - ::MovementAbilitiesComponent, - ::ActorTypeComponent, - ::FallDistanceComponent, - ::PassengerComponent, - ::ActorGameTypeComponent, - ::ActorDataFlagComponent, - ::VehicleComponent, - ::ActorRotationComponent, - ::MobBodyRotationComponent, - ::RenderRotationComponent, - ::StandAnimationComponent, - ::OffsetsComponent, - ::VanillaOffsetComponent, - ::PassengerRenderingRidingOffsetComponent, - ::MovementAttributesComponent, - ::DimensionTypeComponent, - ::ImmuneToLavaDragComponent, - ::MobEffectsComponent, - ::SneakingComponent, - ::StateVectorComponent, - ::SubBBsComponent, - ::WasInWaterFlagComponent>, - ::Write< - ::ActorOwnerComponent, - ::ClientInputLockComponent, - ::MoveInputComponent, - ::RawMoveInputComponent, - ::ActorDataFlagComponent, - ::ActorDataDirtyFlagsComponent, - ::VanillaClientGameplayComponent>, - ::AddRemove<>, - ::GlobalRead<::ExternalDataComponent, ::LocalConstBlockSourceFactoryComponent>, - ::GlobalWrite<>, - ::EntityFactoryT<>>& context); + MCFOLD void $tick(::StrictExecutionContext< + ::Filter< + ::CanStandOnSnowFlagComponent, + ::HasLightweightFamilyFlagComponent, + ::HorseFlagComponent, + ::MobFlagComponent, + ::ParrotFlagComponent, + ::VehicleComponent, + ::CamelFlagComponent, + ::PlayerComponent, + ::LocalPlayerComponent, + ::PlayerInputRequestComponent>, + ::Read< + ::AABBShapeComponent, + ::MovementAbilitiesComponent, + ::ActorTypeComponent, + ::FallDistanceComponent, + ::PassengerComponent, + ::ActorGameTypeComponent, + ::ActorDataFlagComponent, + ::VehicleComponent, + ::ActorRotationComponent, + ::MobBodyRotationComponent, + ::RenderRotationComponent, + ::StandAnimationComponent, + ::OffsetsComponent, + ::VanillaOffsetComponent, + ::PassengerRenderingRidingOffsetComponent, + ::MovementAttributesComponent, + ::DimensionTypeComponent, + ::ImmuneToLavaDragComponent, + ::MobEffectsComponent, + ::SneakingComponent, + ::StateVectorComponent, + ::SubBBsComponent, + ::WasInWaterFlagComponent>, + ::Write< + ::ActorOwnerComponent, + ::ClientInputLockComponent, + ::MoveInputComponent, + ::RawMoveInputComponent, + ::ActorDataFlagComponent, + ::ActorDataDirtyFlagsComponent, + ::VanillaClientGameplayComponent>, + ::AddRemove<>, + ::GlobalRead<::ExternalDataComponent, ::LocalConstBlockSourceFactoryComponent>, + ::GlobalWrite<>, + ::EntityFactoryT<>>& context); // NOLINTEND public: diff --git a/src/mc/entity/systems/EntitySystems.h b/src/mc/entity/systems/EntitySystems.h index 6dab7b3576..46decac67f 100644 --- a/src/mc/entity/systems/EntitySystems.h +++ b/src/mc/entity/systems/EntitySystems.h @@ -96,7 +96,7 @@ class EntitySystems : public ::IEntitySystems, public ::Bedrock::EnableNonOwnerR ::EntityRegistry& registry ); - MCAPI ::PlayerInteractionSystem& getPlayerInteractionSystem(); + MCFOLD ::PlayerInteractionSystem& getPlayerInteractionSystem(); MCAPI ::std::vector<::gsl::not_null<::SystemInfo const*>> getSystemInfo(::Bedrock::typeid_t<::SystemCategory> const& filter) const; diff --git a/src/mc/entity/systems/HoldBlockSystem.h b/src/mc/entity/systems/HoldBlockSystem.h index d7810caa16..7ad1c1aa2e 100644 --- a/src/mc/entity/systems/HoldBlockSystem.h +++ b/src/mc/entity/systems/HoldBlockSystem.h @@ -40,7 +40,7 @@ class HoldBlockSystem : public ::ITickingSystem { public: // virtual function thunks // NOLINTBEGIN - MCAPI void $tick(::EntityRegistry& registry); + MCFOLD void $tick(::EntityRegistry& registry); MCAPI void $registerEvents(::entt::dispatcher& dispatcher); // NOLINTEND diff --git a/src/mc/entity/systems/LootSystem.h b/src/mc/entity/systems/LootSystem.h index 0d25e4a7ce..cabf6ff69c 100644 --- a/src/mc/entity/systems/LootSystem.h +++ b/src/mc/entity/systems/LootSystem.h @@ -33,7 +33,7 @@ class LootSystem : public ::ITickingSystem { public: // virtual function thunks // NOLINTBEGIN - MCAPI void $tick(::EntityRegistry& registry); + MCFOLD void $tick(::EntityRegistry& registry); MCAPI void $registerEvents(::entt::dispatcher& dispatcher); // NOLINTEND diff --git a/src/mc/entity/systems/PlayerInteractionSystem.h b/src/mc/entity/systems/PlayerInteractionSystem.h index fcfa4453f1..c13503cd7e 100644 --- a/src/mc/entity/systems/PlayerInteractionSystem.h +++ b/src/mc/entity/systems/PlayerInteractionSystem.h @@ -37,7 +37,7 @@ class PlayerInteractionSystem { public: // virtual function thunks // NOLINTBEGIN - MCAPI bool $getInteraction(::Actor& actor, ::Player& player, ::ActorInteraction& interaction); + MCFOLD bool $getInteraction(::Actor& actor, ::Player& player, ::ActorInteraction& interaction); // NOLINTEND public: diff --git a/src/mc/entity/systems/initialization/run_initializers_system/RunInitializers.h b/src/mc/entity/systems/initialization/run_initializers_system/RunInitializers.h index 3d45708c4d..887a1f511e 100644 --- a/src/mc/entity/systems/initialization/run_initializers_system/RunInitializers.h +++ b/src/mc/entity/systems/initialization/run_initializers_system/RunInitializers.h @@ -54,9 +54,9 @@ struct RunInitializers : public ::ITickingSystem { // NOLINTBEGIN MCAPI void $tick(::EntityRegistry& registry); - MCAPI void $singleTick(::EntityRegistry& registry, ::EntityContext& entity); + MCFOLD void $singleTick(::EntityRegistry& registry, ::EntityContext& entity); - MCAPI void $singleTick(::EntityRegistry& registry, ::StrictEntityContext& entityContext); + MCFOLD void $singleTick(::EntityRegistry& registry, ::StrictEntityContext& entityContext); // NOLINTEND public: diff --git a/src/mc/entity/systems/tick_mob_effects_system/RemoveMobEffectsRequestComponent.h b/src/mc/entity/systems/tick_mob_effects_system/RemoveMobEffectsRequestComponent.h index fb63e26402..5208a3b5d7 100644 --- a/src/mc/entity/systems/tick_mob_effects_system/RemoveMobEffectsRequestComponent.h +++ b/src/mc/entity/systems/tick_mob_effects_system/RemoveMobEffectsRequestComponent.h @@ -26,7 +26,7 @@ struct RemoveMobEffectsRequestComponent { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/entity/utilities/ActorMobilityUtils.h b/src/mc/entity/utilities/ActorMobilityUtils.h index 9b642416ac..28cf25b0b6 100644 --- a/src/mc/entity/utilities/ActorMobilityUtils.h +++ b/src/mc/entity/utilities/ActorMobilityUtils.h @@ -103,7 +103,7 @@ MCAPI float getBrightness( ::ViewT<::StrictEntityContext, ::Include<::LavaSlimeFlagComponent>> lavaSlimeView ); -MCAPI float getJumpEffectAmplifierValue(::std::vector<::MobEffectInstance> const& mobEffects); +MCFOLD float getJumpEffectAmplifierValue(::std::vector<::MobEffectInstance> const& mobEffects); MCAPI float getJumpEffectAmplifierValue(::MobEffectsComponent const&); diff --git a/src/mc/entity/utilities/ActorOwnerUtils.h b/src/mc/entity/utilities/ActorOwnerUtils.h index 0ad130719f..bcb0f170a6 100644 --- a/src/mc/entity/utilities/ActorOwnerUtils.h +++ b/src/mc/entity/utilities/ActorOwnerUtils.h @@ -11,7 +11,7 @@ class EntityContext; namespace ActorOwnerUtils { // functions // NOLINTBEGIN -MCAPI ::ActorOwnerComponent const* constActorOwnerComponentOrAssert(::EntityContext const& entity); +MCFOLD ::ActorOwnerComponent const* constActorOwnerComponentOrAssert(::EntityContext const& entity); // NOLINTEND } // namespace ActorOwnerUtils diff --git a/src/mc/entity/utilities/GetAttachPositionViews.h b/src/mc/entity/utilities/GetAttachPositionViews.h index ba3dd55349..051f9e0f2e 100644 --- a/src/mc/entity/utilities/GetAttachPositionViews.h +++ b/src/mc/entity/utilities/GetAttachPositionViews.h @@ -36,7 +36,7 @@ struct GetAttachPositionViews { public: // constructor thunks // NOLINTBEGIN - MCAPI void* $ctor(::GetAttachPositionViews&&); + MCFOLD void* $ctor(::GetAttachPositionViews&&); MCAPI void* $ctor(::GetAttachPositionViews const&); // NOLINTEND diff --git a/src/mc/entity/utilities/InsideBlockComponentUtility.h b/src/mc/entity/utilities/InsideBlockComponentUtility.h index a67a5d36a2..3326e802b4 100644 --- a/src/mc/entity/utilities/InsideBlockComponentUtility.h +++ b/src/mc/entity/utilities/InsideBlockComponentUtility.h @@ -16,7 +16,7 @@ struct SweetBerryBushBlockFlag; namespace InsideBlockComponentUtility { // functions // NOLINTBEGIN -MCAPI void entityInsideLegacyRedirect( +MCFOLD void entityInsideLegacyRedirect( ::InsideBlockWithPosAndBlockComponent<::SweetBerryBushBlockFlag> const& insideBlockComponent, ::ActorOwnerComponent& actorOwnerComponent ); diff --git a/src/mc/entity/utilities/ReflectProjectileUtility.h b/src/mc/entity/utilities/ReflectProjectileUtility.h index 8ad4a08c7b..de7feaafc3 100644 --- a/src/mc/entity/utilities/ReflectProjectileUtility.h +++ b/src/mc/entity/utilities/ReflectProjectileUtility.h @@ -15,11 +15,11 @@ class RenderParams; namespace ReflectProjectileUtility { // functions // NOLINTBEGIN -MCAPI float evalAzimuthReflectionAngle(::RenderParams& renderParams, ::ExpressionNode const& azimuthAngle); +MCFOLD float evalAzimuthReflectionAngle(::RenderParams& renderParams, ::ExpressionNode const& azimuthAngle); -MCAPI float evalElevationReflectionAngle(::RenderParams& renderParams, ::ExpressionNode const& elevationAngle); +MCFOLD float evalElevationReflectionAngle(::RenderParams& renderParams, ::ExpressionNode const& elevationAngle); -MCAPI float evalReflectionScale(::RenderParams& renderParams, ::ExpressionNode const& reflectionScale); +MCFOLD float evalReflectionScale(::RenderParams& renderParams, ::ExpressionNode const& reflectionScale); MCAPI ::SharedTypes::Legacy::LevelSoundEvent getReflectionSoundEvent(::std::string const& soundName); diff --git a/src/mc/events/AchievementEventing.h b/src/mc/events/AchievementEventing.h index f57656133b..94067af21f 100644 --- a/src/mc/events/AchievementEventing.h +++ b/src/mc/events/AchievementEventing.h @@ -71,7 +71,7 @@ class AchievementEventing { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/events/AggregationEventListener.h b/src/mc/events/AggregationEventListener.h index db7cb4a6f3..d7c8657fb6 100644 --- a/src/mc/events/AggregationEventListener.h +++ b/src/mc/events/AggregationEventListener.h @@ -119,11 +119,11 @@ class AggregationEventListener : public ::Social::Events::IEventListener { MCAPI void $stopDebugEventLogging(); - MCAPI void $_flushEventQueue(); + MCFOLD void $_flushEventQueue(); - MCAPI bool $_checkAgainstEventAllowlist(::Social::Events::Event const& event) const; + MCFOLD bool $_checkAgainstEventAllowlist(::Social::Events::Event const& event) const; - MCAPI bool $_isListenerReadyForEvents() const; + MCFOLD bool $_isListenerReadyForEvents() const; // NOLINTEND public: diff --git a/src/mc/events/EventManager.h b/src/mc/events/EventManager.h index 444f209dc8..e9808cdc8a 100644 --- a/src/mc/events/EventManager.h +++ b/src/mc/events/EventManager.h @@ -66,7 +66,7 @@ class EventManager { ::std::vector<::std::string> const& exclude ) const; - MCAPI void clearListeners(); + MCFOLD void clearListeners(); MCAPI void disableEventRecording(); @@ -104,7 +104,7 @@ class EventManager { MCAPI void setupCommonProperties(); - MCAPI void shutdown(); + MCFOLD void shutdown(); MCAPI void stopDebugEventLoggingForAllListeners(); diff --git a/src/mc/events/IConnectionEventing.h b/src/mc/events/IConnectionEventing.h index f4173e5f67..c1dab42fb4 100644 --- a/src/mc/events/IConnectionEventing.h +++ b/src/mc/events/IConnectionEventing.h @@ -53,7 +53,7 @@ class IConnectionEventing { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND public: diff --git a/src/mc/events/IEventListener.h b/src/mc/events/IEventListener.h index 8c6a717d04..9a7e9a5bc1 100644 --- a/src/mc/events/IEventListener.h +++ b/src/mc/events/IEventListener.h @@ -36,7 +36,7 @@ class IEventListener { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND public: diff --git a/src/mc/events/IMinecraftEventing.h b/src/mc/events/IMinecraftEventing.h index d19b90c167..3b0d04518a 100644 --- a/src/mc/events/IMinecraftEventing.h +++ b/src/mc/events/IMinecraftEventing.h @@ -1738,7 +1738,7 @@ class IMinecraftEventing : public ::Bedrock::EnableNonOwnerReferences, public: // virtual function thunks // NOLINTBEGIN - MCAPI void $updatePlayerUndergroundStatus(::Player* player, bool isUnderground); + MCFOLD void $updatePlayerUndergroundStatus(::Player* player, bool isUnderground); // NOLINTEND public: diff --git a/src/mc/events/IPackTelemetry.h b/src/mc/events/IPackTelemetry.h index 7c66f5c403..a155f1c76f 100644 --- a/src/mc/events/IPackTelemetry.h +++ b/src/mc/events/IPackTelemetry.h @@ -22,7 +22,7 @@ class IPackTelemetry { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND public: diff --git a/src/mc/events/IScreenChangedEventing.h b/src/mc/events/IScreenChangedEventing.h index ea22371b09..f6b86cf5ad 100644 --- a/src/mc/events/IScreenChangedEventing.h +++ b/src/mc/events/IScreenChangedEventing.h @@ -21,7 +21,7 @@ class IScreenChangedEventing { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND public: diff --git a/src/mc/events/Measurement.h b/src/mc/events/Measurement.h index 52a44883e3..a267d7595b 100644 --- a/src/mc/events/Measurement.h +++ b/src/mc/events/Measurement.h @@ -47,7 +47,7 @@ class Measurement { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/events/MinecraftEventing.h b/src/mc/events/MinecraftEventing.h index 9f83490ea0..d46d966311 100644 --- a/src/mc/events/MinecraftEventing.h +++ b/src/mc/events/MinecraftEventing.h @@ -2374,7 +2374,7 @@ class MinecraftEventing : public ::IMinecraftEventing, MCAPI void $updateIsLegacyPlayer(bool isLegacyPlayer); - MCAPI void $updateIsTrial(bool isTrial) const; + MCFOLD void $updateIsTrial(bool isTrial) const; MCAPI void $updateEditionType(); @@ -2400,13 +2400,13 @@ class MinecraftEventing : public ::IMinecraftEventing, MCAPI ::std::string $getSessionId(); - MCAPI ::std::string const& $getPlayerSessionId(); + MCFOLD ::std::string const& $getPlayerSessionId(); MCAPI ::std::chrono::steady_clock::time_point $getWorldSessionIdGenerationTimestamp() const; MCAPI void $fireEventDefaultGameTypeChanged(::GameType oldGameType, ::GameType newGameType); - MCAPI void $fireEventWorldLoaded( + MCFOLD void $fireEventWorldLoaded( ::Player* player, ::std::string const& personaSlot, ::std::string const& classicSkinId, @@ -2426,7 +2426,7 @@ class MinecraftEventing : public ::IMinecraftEventing, MCAPI void $fireEventEntitySpawned(::Player* player, int mobType, uint spawnMethod); - MCAPI void $fireEventDevSlashCommandExecuted(::std::string const& commandName, ::std::string const& command); + MCFOLD void $fireEventDevSlashCommandExecuted(::std::string const& commandName, ::std::string const& command); MCAPI void $fireCommandParseTableTelemetry( bool const isServer, @@ -2478,7 +2478,7 @@ class MinecraftEventing : public ::IMinecraftEventing, ::std::string const& serverVersion ); - MCAPI void $fireEventOnSuccessfulClientLogin(::MultiPlayerLevel const* level); + MCFOLD void $fireEventOnSuccessfulClientLogin(::MultiPlayerLevel const* level); MCAPI void $fireEventStartWorld( ::IMinecraftEventing::NetworkType networkType, @@ -2486,7 +2486,7 @@ class MinecraftEventing : public ::IMinecraftEventing, ::Social::MultiplayerServiceIdentifier const friendWorldType ); - MCAPI void $fireEventSignalServiceConnect( + MCFOLD void $fireEventSignalServiceConnect( ::SignalServiceConnectStage stage, bool bIsSigningInAsHost, ::std::string const& stageProperties, @@ -2602,11 +2602,11 @@ class MinecraftEventing : public ::IMinecraftEventing, ::std::string const& actionMetadata ); - MCAPI void $fireEventStartClient(::std::string const& ipAddress); + MCFOLD void $fireEventStartClient(::std::string const& ipAddress); - MCAPI void $fireEventHardwareInfo(); + MCFOLD void $fireEventHardwareInfo(); - MCAPI void $fireEventDeviceLost(); + MCFOLD void $fireEventDeviceLost(); MCAPI void $fireEventRenderingSizeChanged(); @@ -2656,7 +2656,7 @@ class MinecraftEventing : public ::IMinecraftEventing, MCAPI void $fireEventPushNotificationOpened(::std::string const& threadId, ::std::string const& deepLink); - MCAPI void $firePerfTestEvent( + MCFOLD void $firePerfTestEvent( ::std::string const& testArtifact, ::std::string const& modelName, ::std::string const& renderSize, @@ -2672,14 +2672,14 @@ class MinecraftEventing : public ::IMinecraftEventing, MCAPI void $fireEventQueryPurchasesResult(::std::string const& storeID, int NumberOfPurchases, bool QuerySucceeded); - MCAPI void $fireEventIAPPurchaseAttempt( + MCFOLD void $fireEventIAPPurchaseAttempt( ::std::string const& correlationId, ::std::string const& storeId, ::Offer& offer, ::PurchasePath path ); - MCAPI void $fireEventIAPPurchaseResolved( + MCFOLD void $fireEventIAPPurchaseResolved( ::std::string const& correlationId, ::std::string const& storeId, ::Offer& offer, @@ -2687,14 +2687,14 @@ class MinecraftEventing : public ::IMinecraftEventing, ::PurchasePath path ); - MCAPI void $fireEventIAPRedeemAttempt( + MCFOLD void $fireEventIAPRedeemAttempt( ::std::string const& correlationId, ::std::string const& storeId, ::std::string const& productId, ::PurchasePath path ); - MCAPI void $fireEventIAPRedeemResolved( + MCFOLD void $fireEventIAPRedeemResolved( ::std::string const& correlationId, ::std::string const& storeId, ::std::string const& productId, @@ -2702,7 +2702,7 @@ class MinecraftEventing : public ::IMinecraftEventing, ::PurchasePath path ); - MCAPI void $fireEventPurchaseAttempt( + MCFOLD void $fireEventPurchaseAttempt( ::std::string const& correlationId, ::std::string const& productId, ::std::string const& price, @@ -2710,7 +2710,7 @@ class MinecraftEventing : public ::IMinecraftEventing, ::PurchasePath path ); - MCAPI void $fireEventPurchaseResolved( + MCFOLD void $fireEventPurchaseResolved( ::std::string const& correlationId, ::std::string const& productId, ::std::string const& price, @@ -2721,28 +2721,28 @@ class MinecraftEventing : public ::IMinecraftEventing, MCAPI void $fireEventUnfulfilledPurchaseFound(::PlatformOfferPurchaseDetails& unfulfilledPurchase); - MCAPI void $fireEventPurchaseFailureDetails( + MCFOLD void $fireEventPurchaseFailureDetails( int httpCode, ::std::string const& errorMessage, ::std::string const& productId, ::std::string const& transactionId ); - MCAPI void $fireEventDeviceAccountFailure( + MCFOLD void $fireEventDeviceAccountFailure( ::IMinecraftEventing::SignInStage stage, ::IMinecraftEventing::DeviceAccountFailurePhase phase, uint resultStatus, ::std::string const& accountID ); - MCAPI void $fireEventDeviceAccountSuccess(bool isNewAccount, ::std::string const& accountID); + MCFOLD void $fireEventDeviceAccountSuccess(bool isNewAccount, ::std::string const& accountID); MCAPI void $fireEventEntitlementListInfo(::std::vector<::ContentIdentity>& entitlementContentIds, bool isLegacyList); MCAPI void $fireEventVideoPlayed(::std::string const& productId, ::std::string const& videoUrl); - MCAPI void $fireEventBundleSubOfferClicked( + MCFOLD void $fireEventBundleSubOfferClicked( int offerIndex, int bundleSubOfferCount, ::std::string const& telemetryId, @@ -2751,15 +2751,15 @@ class MinecraftEventing : public ::IMinecraftEventing, ::std::string const& timeRemainingOnSale ); - MCAPI void $fireEventStoreOfferClicked(::Social::eventData::StoreOfferClickedData const& eventData); + MCFOLD void $fireEventStoreOfferClicked(::Social::eventData::StoreOfferClickedData const& eventData); MCAPI void $fireEventStoreOfferClicked(::std::string const telemetryId, ::std::string const& productId); - MCAPI void $fireEventPersonaOfferClicked(::Social::eventData::PersonaOfferClickedData const& eventData); + MCFOLD void $fireEventPersonaOfferClicked(::Social::eventData::PersonaOfferClickedData const& eventData); - MCAPI void $fireEventStoreSearch(::storeSearch::TelemetryData const& telemetryData); + MCFOLD void $fireEventStoreSearch(::storeSearch::TelemetryData const& telemetryData); - MCAPI void $fireEventSearchItemSelected( + MCFOLD void $fireEventSearchItemSelected( int const correlationId, int const sessionId, ::std::string const& productId, @@ -2811,20 +2811,20 @@ class MinecraftEventing : public ::IMinecraftEventing, int errorCode ); - MCAPI void $prepEventSearchCatalogRequest(::SearchRequestTelemetry const& telem); + MCFOLD void $prepEventSearchCatalogRequest(::SearchRequestTelemetry const& telem); - MCAPI void $fireEventSearchCatalogRequest(::SearchRequestTelemetry const& telem); + MCFOLD void $fireEventSearchCatalogRequest(::SearchRequestTelemetry const& telem); - MCAPI void $fireEventStoreLocalizationBinaryFetchResponse(int const status, uint const currentFetchAttempt); + MCFOLD void $fireEventStoreLocalizationBinaryFetchResponse(int const status, uint const currentFetchAttempt); - MCAPI void + MCFOLD void $fireEventStoreSessionResponse(::std::string const& responseType, int const status, int const retryCount); - MCAPI void $fireEventStoreDiscoveryRequestResponse(int const status, int const retryAttempt); + MCFOLD void $fireEventStoreDiscoveryRequestResponse(int const status, int const retryAttempt); - MCAPI void $fireEventStorePlayFabRequestResponse(ushort const status); + MCFOLD void $fireEventStorePlayFabRequestResponse(ushort const status); - MCAPI void $fireEventServerDrivenLayoutPageLoaded( + MCFOLD void $fireEventServerDrivenLayoutPageLoaded( ::RequestTelemetry& telem, ::std::string pageID, int requestSize, @@ -2834,7 +2834,7 @@ class MinecraftEventing : public ::IMinecraftEventing, int imageCount ); - MCAPI void $fireEventServerDrivenLayoutImagesLoaded( + MCFOLD void $fireEventServerDrivenLayoutImagesLoaded( ::RequestTelemetry& telem, ::std::string pageID, int imageCount, @@ -2864,7 +2864,7 @@ class MinecraftEventing : public ::IMinecraftEventing, ::std::string const scenarioId ); - MCAPI void $fireEventOptionsUpdated(::Options& options, ::InputMode inputMode, bool onStartup); + MCFOLD void $fireEventOptionsUpdated(::Options& options, ::InputMode inputMode, bool onStartup); MCAPI void $fireEventChatSettingsUpdated( ::Player const* player, @@ -2874,21 +2874,21 @@ class MinecraftEventing : public ::IMinecraftEventing, MCAPI void $fireEventControlRemappedByPlayer(::std::string const& actionName, ::RawInputType inputType, int keyCode) const; - MCAPI void $fireEventDifficultySet(::Difficulty oldDifficulty, ::Difficulty newDifficulty); + MCFOLD void $fireEventDifficultySet(::Difficulty oldDifficulty, ::Difficulty newDifficulty); - MCAPI void $fireEventGameRulesUpdated(bool oldValue, bool newValue, ::std::string const& gameRuleName); + MCFOLD void $fireEventGameRulesUpdated(bool oldValue, bool newValue, ::std::string const& gameRuleName); - MCAPI void $fireEventGameRulesUpdated(int oldValue, int newValue, ::std::string const& gameRuleName); + MCFOLD void $fireEventGameRulesUpdated(int oldValue, int newValue, ::std::string const& gameRuleName); - MCAPI void $fireEventGameRulesUpdated(float oldValue, float newValue, ::std::string const& gameRuleName); + MCFOLD void $fireEventGameRulesUpdated(float oldValue, float newValue, ::std::string const& gameRuleName); - MCAPI void $fireCurrentInputUpdated(::Bedrock::NotNullNonOwnerPtr<::IClientInstance> const& client); + MCFOLD void $fireCurrentInputUpdated(::Bedrock::NotNullNonOwnerPtr<::IClientInstance> const& client); - MCAPI void $fireEventSplitScreenUpdated(::IClientInstance const& client); + MCFOLD void $fireEventSplitScreenUpdated(::IClientInstance const& client); - MCAPI void $fireEventPerformanceMetrics(::ProfilerLiteTelemetry const& profileTelemetry, bool rayTracingEnabled); + MCFOLD void $fireEventPerformanceMetrics(::ProfilerLiteTelemetry const& profileTelemetry, bool rayTracingEnabled); - MCAPI void $fireEventPerformanceContext(::PerfContextTrackerReport const& perfContextReport); + MCFOLD void $fireEventPerformanceContext(::PerfContextTrackerReport const& perfContextReport); MCAPI void $fireEventScreenChanged( uint const& userId, @@ -2896,7 +2896,7 @@ class MinecraftEventing : public ::IMinecraftEventing, ::std::unordered_map<::std::string, ::std::string> const& additionalProperties ); - MCAPI void $fireEventImGuiScreenChanged( + MCFOLD void $fireEventImGuiScreenChanged( ::std::string const& screenName, ::std::unordered_map<::std::string, ::std::string> const& additionalProperties ); @@ -2919,12 +2919,12 @@ class MinecraftEventing : public ::IMinecraftEventing, MCAPI void $fireEventAndroidHelpRequest(); - MCAPI void + MCFOLD void $fireEventWorldFilesListed(uint64 numLevels, uint64 totalSizeMB, uint64 largestLevelMB, uint64 smallestLevelMB); - MCAPI void $fireEventStorage(int state, ::std::string const& extra); + MCFOLD void $fireEventStorage(int state, ::std::string const& extra); - MCAPI void $fireEventStorageReport(::std::string const& report); + MCFOLD void $fireEventStorageReport(::std::string const& report); MCAPI void $fireEventPlayerMessageSay(::std::string const& fromName, ::std::string const& message); @@ -3131,9 +3131,9 @@ class MinecraftEventing : public ::IMinecraftEventing, MCAPI void $fireEventEduContentVerificationFailed() const; - MCAPI void $fireEventLibrarySearch(::librarySearch::TelemetryData const& telemetryData) const; + MCFOLD void $fireEventLibrarySearch(::librarySearch::TelemetryData const& telemetryData) const; - MCAPI void $fireEventLibrarySearchItemSelected( + MCFOLD void $fireEventLibrarySearchItemSelected( int const sessionId, int const correlationId, ::std::string const& productId, @@ -3187,9 +3187,9 @@ class MinecraftEventing : public ::IMinecraftEventing, ::std::optional importedWorldTimestamp ); - MCAPI void $fireWorldConversionAttemptEvent(::Legacy::WorldConversionReport const& report); + MCFOLD void $fireWorldConversionAttemptEvent(::Legacy::WorldConversionReport const& report); - MCAPI void $fireWorldConversionInitiatedEvent(::std::string const& converterVersion); + MCFOLD void $fireWorldConversionInitiatedEvent(::std::string const& converterVersion); MCAPI void $fireWorldUpgradedToCnCPart2( bool willUpgrade, @@ -3309,7 +3309,7 @@ class MinecraftEventing : public ::IMinecraftEventing, MCAPI void $flagEventDeepLink(); - MCAPI void $flagEventPlayerGameTypeDefault(bool isDefault); + MCFOLD void $flagEventPlayerGameTypeDefault(bool isDefault); MCAPI void $fileEventCloudWorldPullFailed(::std::string const& reason, ::std::string const& worldID, bool localLevelDatUsed); @@ -3326,13 +3326,13 @@ class MinecraftEventing : public ::IMinecraftEventing, MCAPI void $fireEventServerShutdownDueToError(::std::string const& reason); - MCAPI void $fireEventDBStorageSizeSnapshot( + MCFOLD void $fireEventDBStorageSizeSnapshot( ::LevelStorageEventingContext const& context, ::DBStorageFolderWatcher const& folderWatcher, ::DBStorageFolderWatcherSnapshotKind kind ); - MCAPI void $fireEventWorldHistoryPackSourceMissingDuringUpgrade( + MCFOLD void $fireEventWorldHistoryPackSourceMissingDuringUpgrade( ::std::string const& worldPath, ::std::string const& levelId, ::std::string const& deletionCandidate @@ -3692,9 +3692,9 @@ class MinecraftEventing : public ::IMinecraftEventing, MCAPI void $fireEventLowMemoryDetected(::LowMemoryReport const& report); - MCAPI ::Social::Events::EventManager& $getEventManager() const; + MCFOLD ::Social::Events::EventManager& $getEventManager() const; - MCAPI uint $getPrimaryLocalUserId() const; + MCFOLD uint $getPrimaryLocalUserId() const; MCAPI bool $getShouldHaveAchievementsEnabled(); diff --git a/src/mc/events/OneDSEditorEventListener.h b/src/mc/events/OneDSEditorEventListener.h index 2d36eccf41..98a98eaad0 100644 --- a/src/mc/events/OneDSEditorEventListener.h +++ b/src/mc/events/OneDSEditorEventListener.h @@ -102,7 +102,7 @@ class OneDSEditorEventListener : public ::Social::Events::AggregationEventListen // NOLINTBEGIN MCAPI void $sendEvent(::Social::Events::Event const& event); - MCAPI int $getEventTagsFilter() const; + MCFOLD int $getEventTagsFilter() const; MCAPI void $_flushEventQueue(); // NOLINTEND diff --git a/src/mc/events/OneDSEventHelper.h b/src/mc/events/OneDSEventHelper.h index 5aa96e1d0b..4aaf7c1886 100644 --- a/src/mc/events/OneDSEventHelper.h +++ b/src/mc/events/OneDSEventHelper.h @@ -16,13 +16,13 @@ class OneDSEventHelper { public: // constructor thunks // NOLINTBEGIN - MCAPI void* $ctor(); + MCFOLD void* $ctor(); // NOLINTEND public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/events/OneDSEventListener.h b/src/mc/events/OneDSEventListener.h index ae24534e3f..4c097a6b96 100644 --- a/src/mc/events/OneDSEventListener.h +++ b/src/mc/events/OneDSEventListener.h @@ -110,7 +110,7 @@ class OneDSEventListener : public ::Social::Events::AggregationEventListener { // NOLINTBEGIN MCAPI void $sendEvent(::Social::Events::Event const& event); - MCAPI int $getEventTagsFilter() const; + MCFOLD int $getEventTagsFilter() const; MCAPI bool $_checkAgainstEventAllowlist(::Social::Events::Event const& event) const; diff --git a/src/mc/events/Property.h b/src/mc/events/Property.h index a6ae66bf7a..99607ba070 100644 --- a/src/mc/events/Property.h +++ b/src/mc/events/Property.h @@ -28,7 +28,7 @@ class Property { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/events/ScreenFlow.h b/src/mc/events/ScreenFlow.h index 153a769be1..d365f03b86 100644 --- a/src/mc/events/ScreenFlow.h +++ b/src/mc/events/ScreenFlow.h @@ -40,7 +40,7 @@ class ScreenFlow { MCAPI void PopulateEvent(::Social::Events::Event& event, bool clear); - MCAPI void SetApplicationId(::std::string const& appId); + MCFOLD void SetApplicationId(::std::string const& appId); MCAPI bool ShouldSendEvent() const; // NOLINTEND diff --git a/src/mc/events/complex_alias_block_achievement_event_helper/ComplexAliasBlockPreSplitBlockInfo.h b/src/mc/events/complex_alias_block_achievement_event_helper/ComplexAliasBlockPreSplitBlockInfo.h index c5506b92c4..5492ea9e26 100644 --- a/src/mc/events/complex_alias_block_achievement_event_helper/ComplexAliasBlockPreSplitBlockInfo.h +++ b/src/mc/events/complex_alias_block_achievement_event_helper/ComplexAliasBlockPreSplitBlockInfo.h @@ -29,7 +29,7 @@ struct ComplexAliasBlockPreSplitBlockInfo { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/external/absl/internal_any_invocable.h b/src/mc/external/absl/internal_any_invocable.h index 2a6c87f907..82f136bf79 100644 --- a/src/mc/external/absl/internal_any_invocable.h +++ b/src/mc/external/absl/internal_any_invocable.h @@ -13,7 +13,7 @@ namespace absl::internal_any_invocable { union TypeErasedState; } namespace absl::internal_any_invocable { // functions // NOLINTBEGIN -MCAPI void +MCFOLD void EmptyManager(::absl::internal_any_invocable::FunctionToCall, ::absl::internal_any_invocable::TypeErasedState*, ::absl::internal_any_invocable::TypeErasedState*); MCAPI void LocalManagerTrivial( diff --git a/src/mc/external/cereal/cereal.h b/src/mc/external/cereal/cereal.h index b3e884567b..e2197f6a9f 100644 --- a/src/mc/external/cereal/cereal.h +++ b/src/mc/external/cereal/cereal.h @@ -50,9 +50,9 @@ MCAPI ::Json::Value toJsonValue(::cereal::DynamicValue const& value); MCAPI ::entt::meta_any tryFillVariant(::entt::meta_any& var, ::entt::meta_any value); -MCAPI ::entt::meta_any tryGetOptionalValue(::entt::meta_handle opt); +MCFOLD ::entt::meta_any tryGetOptionalValue(::entt::meta_handle opt); -MCAPI ::entt::meta_any tryGetVariantValue(::entt::meta_handle var); +MCFOLD ::entt::meta_any tryGetVariantValue(::entt::meta_handle var); MCAPI ::entt::meta_func typeLevelGetter(::entt::meta_type const& type); diff --git a/src/mc/external/rtc/IPAddress.h b/src/mc/external/rtc/IPAddress.h index 507ac2c5da..2b79698bc2 100644 --- a/src/mc/external/rtc/IPAddress.h +++ b/src/mc/external/rtc/IPAddress.h @@ -54,7 +54,7 @@ class IPAddress { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND public: diff --git a/src/mc/external/rtc/Socket.h b/src/mc/external/rtc/Socket.h index 9f70a273ea..18e84dbc98 100644 --- a/src/mc/external/rtc/Socket.h +++ b/src/mc/external/rtc/Socket.h @@ -155,7 +155,7 @@ class Socket { public: // virtual function thunks // NOLINTBEGIN - MCAPI int $RecvFrom(void* pv, uint64 cb, ::rtc::SocketAddress* paddr, int64* timestamp); + MCFOLD int $RecvFrom(void* pv, uint64 cb, ::rtc::SocketAddress* paddr, int64* timestamp); // NOLINTEND public: diff --git a/src/mc/external/scripting/JSON.h b/src/mc/external/scripting/JSON.h index 27f0692b1f..eb713e31c6 100644 --- a/src/mc/external/scripting/JSON.h +++ b/src/mc/external/scripting/JSON.h @@ -26,7 +26,7 @@ struct JSON { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/external/scripting/Scripting.h b/src/mc/external/scripting/Scripting.h index 0cd7c0a8eb..40949cc71d 100644 --- a/src/mc/external/scripting/Scripting.h +++ b/src/mc/external/scripting/Scripting.h @@ -20,7 +20,7 @@ MCAPI uint GetInjectedArgCount(::Scripting::Reflection::IFunction* function); MCAPI void LogMessage(::Scripting::LogLevel, char const*, uint, char const*, ...); -MCAPI ::std::vector<::std::string> _versionSplit(::std::string const& str, char delim); +MCFOLD ::std::vector<::std::string> _versionSplit(::std::string const& str, char delim); MCAPI void defaultLogFunction(void*, ::Scripting::LogLevel level, char const*, uint, char const* message); // NOLINTEND diff --git a/src/mc/external/scripting/UUID.h b/src/mc/external/scripting/UUID.h index d67166154b..9d54ac97a6 100644 --- a/src/mc/external/scripting/UUID.h +++ b/src/mc/external/scripting/UUID.h @@ -27,13 +27,13 @@ struct UUID { public: // constructor thunks // NOLINTBEGIN - MCAPI void* $ctor(); + MCFOLD void* $ctor(); // NOLINTEND public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/external/scripting/Version.h b/src/mc/external/scripting/Version.h index 1bef3fa958..50e1d18cb7 100644 --- a/src/mc/external/scripting/Version.h +++ b/src/mc/external/scripting/Version.h @@ -55,7 +55,7 @@ struct Version { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/external/scripting/binding_factory/GenericModuleBindingFactory.h b/src/mc/external/scripting/binding_factory/GenericModuleBindingFactory.h index d60ce92a1d..6274ef1819 100644 --- a/src/mc/external/scripting/binding_factory/GenericModuleBindingFactory.h +++ b/src/mc/external/scripting/binding_factory/GenericModuleBindingFactory.h @@ -168,9 +168,9 @@ class GenericModuleBindingFactory : public ::Scripting::IModuleBindingFactory { public: // virtual function thunks // NOLINTBEGIN - MCAPI ::std::string $getName() const; + MCFOLD ::std::string $getName() const; - MCAPI ::Scripting::UUID $getUUID() const; + MCFOLD ::Scripting::UUID $getUUID() const; MCAPI bool $hasAlias(::std::string const& alias) const; diff --git a/src/mc/external/scripting/binding_type/ModuleBindingBundle.h b/src/mc/external/scripting/binding_type/ModuleBindingBundle.h index c2e36138e9..1c05c7eb4d 100644 --- a/src/mc/external/scripting/binding_type/ModuleBindingBundle.h +++ b/src/mc/external/scripting/binding_type/ModuleBindingBundle.h @@ -29,7 +29,7 @@ struct ModuleBindingBundle { public: // constructor thunks // NOLINTBEGIN - MCAPI void* $ctor(::Scripting::ModuleBindingBundle&&); + MCFOLD void* $ctor(::Scripting::ModuleBindingBundle&&); // NOLINTEND public: diff --git a/src/mc/external/scripting/binding_type/Release.h b/src/mc/external/scripting/binding_type/Release.h index fc73e8f06e..a2145400af 100644 --- a/src/mc/external/scripting/binding_type/Release.h +++ b/src/mc/external/scripting/binding_type/Release.h @@ -28,7 +28,7 @@ class Release { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/external/scripting/binding_type/TaggedBinding.h b/src/mc/external/scripting/binding_type/TaggedBinding.h index 300eb8b648..644ad875f6 100644 --- a/src/mc/external/scripting/binding_type/TaggedBinding.h +++ b/src/mc/external/scripting/binding_type/TaggedBinding.h @@ -42,13 +42,13 @@ struct TaggedBinding { public: // constructor thunks // NOLINTBEGIN - MCAPI void* $ctor(); + MCFOLD void* $ctor(); // NOLINTEND public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/external/scripting/lifetime_registry/ContextIdFreeList.h b/src/mc/external/scripting/lifetime_registry/ContextIdFreeList.h index db7010e5f5..58b0f10177 100644 --- a/src/mc/external/scripting/lifetime_registry/ContextIdFreeList.h +++ b/src/mc/external/scripting/lifetime_registry/ContextIdFreeList.h @@ -28,7 +28,7 @@ class ContextIdFreeList { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/external/scripting/lifetime_registry/ILifetimeScopeListener.h b/src/mc/external/scripting/lifetime_registry/ILifetimeScopeListener.h index bb0921665c..488fba3530 100644 --- a/src/mc/external/scripting/lifetime_registry/ILifetimeScopeListener.h +++ b/src/mc/external/scripting/lifetime_registry/ILifetimeScopeListener.h @@ -49,7 +49,7 @@ class ILifetimeScopeListener { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND public: diff --git a/src/mc/external/scripting/lifetime_registry/StrongObjectHandle.h b/src/mc/external/scripting/lifetime_registry/StrongObjectHandle.h index 5b9785a2a8..73c8e721d0 100644 --- a/src/mc/external/scripting/lifetime_registry/StrongObjectHandle.h +++ b/src/mc/external/scripting/lifetime_registry/StrongObjectHandle.h @@ -35,11 +35,11 @@ class StrongObjectHandle { MCAPI ::entt::meta_any asAny(); - MCAPI ::Scripting::ObjectHandle getHandle() const; + MCFOLD ::Scripting::ObjectHandle getHandle() const; - MCAPI ::Scripting::LifetimeRegistry* getLifetimeRegistry() const; + MCFOLD ::Scripting::LifetimeRegistry* getLifetimeRegistry() const; - MCAPI ::Scripting::WeakLifetimeScope getScope() const; + MCFOLD ::Scripting::WeakLifetimeScope getScope() const; MCAPI ::Scripting::StrongObjectHandle& operator=(::Scripting::StrongObjectHandle const& rhs); @@ -47,7 +47,7 @@ class StrongObjectHandle { MCAPI bool operator==(::Scripting::StrongObjectHandle const& rhs) const; - MCAPI bool valid() const; + MCFOLD bool valid() const; MCAPI ~StrongObjectHandle(); // NOLINTEND @@ -67,11 +67,11 @@ class StrongObjectHandle { public: // constructor thunks // NOLINTBEGIN - MCAPI void* $ctor(); + MCFOLD void* $ctor(); MCAPI void* $ctor(::Scripting::StrongObjectHandle const& rhs); - MCAPI void* $ctor(::Scripting::StrongObjectHandle&& rhs); + MCFOLD void* $ctor(::Scripting::StrongObjectHandle&& rhs); MCAPI void* $ctor(::Scripting::WeakLifetimeScope scope, ::Scripting::ObjectHandle objHandle, bool addReference); // NOLINTEND diff --git a/src/mc/external/scripting/lifetime_registry/WeakLifetimeScope.h b/src/mc/external/scripting/lifetime_registry/WeakLifetimeScope.h index 85bdeeca50..4ae80a79fb 100644 --- a/src/mc/external/scripting/lifetime_registry/WeakLifetimeScope.h +++ b/src/mc/external/scripting/lifetime_registry/WeakLifetimeScope.h @@ -35,9 +35,9 @@ class WeakLifetimeScope { MCAPI ::Scripting::ContextId getContextId() const; - MCAPI ::Scripting::LifetimeRegistry* getLifetimeRegistry() const; + MCFOLD ::Scripting::LifetimeRegistry* getLifetimeRegistry() const; - MCAPI ::Scripting::WeakLifetimeScope& operator=(::Scripting::WeakLifetimeScope const& rhs); + MCFOLD ::Scripting::WeakLifetimeScope& operator=(::Scripting::WeakLifetimeScope const& rhs); MCAPI ::Scripting::WeakLifetimeScope& operator=(::Scripting::WeakLifetimeScope&& rhs); @@ -53,19 +53,19 @@ class WeakLifetimeScope { public: // constructor thunks // NOLINTBEGIN - MCAPI void* $ctor(); + MCFOLD void* $ctor(); MCAPI void* $ctor(::Scripting::LifetimeRegistryReference* registryRef); MCAPI void* $ctor(::Scripting::WeakLifetimeScope&& rhs); - MCAPI void* $ctor(::Scripting::WeakLifetimeScope const& rhs); + MCFOLD void* $ctor(::Scripting::WeakLifetimeScope const& rhs); // NOLINTEND public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/external/scripting/lifetime_registry/WeakObjectHandle.h b/src/mc/external/scripting/lifetime_registry/WeakObjectHandle.h index 9811198833..68b4795418 100644 --- a/src/mc/external/scripting/lifetime_registry/WeakObjectHandle.h +++ b/src/mc/external/scripting/lifetime_registry/WeakObjectHandle.h @@ -30,19 +30,19 @@ class WeakObjectHandle { MCAPI WeakObjectHandle(::Scripting::WeakLifetimeScope scope, ::Scripting::ObjectHandle objHandle); - MCAPI ::Scripting::ObjectHandle getHandle() const; + MCFOLD ::Scripting::ObjectHandle getHandle() const; - MCAPI ::Scripting::LifetimeRegistry* getLifetimeRegistry() const; + MCFOLD ::Scripting::LifetimeRegistry* getLifetimeRegistry() const; - MCAPI ::Scripting::WeakLifetimeScope getScope() const; + MCFOLD ::Scripting::WeakLifetimeScope getScope() const; - MCAPI ::Scripting::WeakObjectHandle& operator=(::Scripting::WeakObjectHandle const&); + MCFOLD ::Scripting::WeakObjectHandle& operator=(::Scripting::WeakObjectHandle const&); MCAPI ::Scripting::WeakObjectHandle& operator=(::Scripting::WeakObjectHandle&& rhs); MCAPI bool operator==(::Scripting::WeakObjectHandle const& rhs) const; - MCAPI bool valid() const; + MCFOLD bool valid() const; MCAPI ~WeakObjectHandle(); // NOLINTEND @@ -50,11 +50,11 @@ class WeakObjectHandle { public: // constructor thunks // NOLINTBEGIN - MCAPI void* $ctor(); + MCFOLD void* $ctor(); - MCAPI void* $ctor(::Scripting::WeakObjectHandle const&); + MCFOLD void* $ctor(::Scripting::WeakObjectHandle const&); - MCAPI void* $ctor(::Scripting::WeakObjectHandle&& rhs); + MCFOLD void* $ctor(::Scripting::WeakObjectHandle&& rhs); MCAPI void* $ctor(::Scripting::WeakLifetimeScope scope, ::Scripting::ObjectHandle objHandle); // NOLINTEND @@ -62,7 +62,7 @@ class WeakObjectHandle { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/external/scripting/quickjs/QuickJSRuntime.h b/src/mc/external/scripting/quickjs/QuickJSRuntime.h index 86f4ce199a..b0eb70e030 100644 --- a/src/mc/external/scripting/quickjs/QuickJSRuntime.h +++ b/src/mc/external/scripting/quickjs/QuickJSRuntime.h @@ -220,7 +220,7 @@ class QuickJSRuntime : public ::Scripting::StringBasedRuntime, public: // virtual function thunks // NOLINTBEGIN - MCAPI ::Scripting::IRuntimeMetadata* $getMetadata() const; + MCFOLD ::Scripting::IRuntimeMetadata* $getMetadata() const; MCAPI void $moveToThread(); @@ -292,7 +292,7 @@ class QuickJSRuntime : public ::Scripting::StringBasedRuntime, MCAPI void $disableWatchdog(); - MCAPI ::Scripting::IWatchdog* $getWatchdog() const; + MCFOLD ::Scripting::IWatchdog* $getWatchdog() const; // NOLINTEND public: diff --git a/src/mc/external/scripting/quickjs/bindings/CurrentlyOwnedArrayProperties.h b/src/mc/external/scripting/quickjs/bindings/CurrentlyOwnedArrayProperties.h index 80e1113a36..9129b1acb5 100644 --- a/src/mc/external/scripting/quickjs/bindings/CurrentlyOwnedArrayProperties.h +++ b/src/mc/external/scripting/quickjs/bindings/CurrentlyOwnedArrayProperties.h @@ -35,7 +35,7 @@ struct CurrentlyOwnedArrayProperties { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/external/scripting/quickjs/bindings/OwnedProperty.h b/src/mc/external/scripting/quickjs/bindings/OwnedProperty.h index 28017bad42..1e0560ba61 100644 --- a/src/mc/external/scripting/quickjs/bindings/OwnedProperty.h +++ b/src/mc/external/scripting/quickjs/bindings/OwnedProperty.h @@ -27,7 +27,7 @@ struct OwnedProperty { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/external/scripting/quickjs/context/ContextObject.h b/src/mc/external/scripting/quickjs/context/ContextObject.h index 64fbac9593..61b563c5b2 100644 --- a/src/mc/external/scripting/quickjs/context/ContextObject.h +++ b/src/mc/external/scripting/quickjs/context/ContextObject.h @@ -69,7 +69,7 @@ class ContextObject { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/external/scripting/quickjs/context/ContextScopeListener.h b/src/mc/external/scripting/quickjs/context/ContextScopeListener.h index 86aa06e33a..3741bf7398 100644 --- a/src/mc/external/scripting/quickjs/context/ContextScopeListener.h +++ b/src/mc/external/scripting/quickjs/context/ContextScopeListener.h @@ -94,19 +94,20 @@ class ContextScopeListener : public ::Scripting::ILifetimeScopeListener { public: // virtual function thunks // NOLINTBEGIN - MCAPI void $onMakeObject(::Scripting::LifetimeRegistry&, ::Scripting::ObjectHandle, ::entt::meta_type const&, uint); + MCFOLD void + $onMakeObject(::Scripting::LifetimeRegistry&, ::Scripting::ObjectHandle, ::entt::meta_type const&, uint); - MCAPI void $onDestroyObject( + MCFOLD void $onDestroyObject( ::Scripting::LifetimeRegistry& registry, ::Scripting::ObjectHandle handle, ::entt::meta_type const& type, uint ); - MCAPI void + MCFOLD void $onTrackObject(::Scripting::LifetimeRegistry&, ::Scripting::ObjectHandle, ::entt::meta_type const&, uint); - MCAPI void $onUntrackObject( + MCFOLD void $onUntrackObject( ::Scripting::LifetimeRegistry& registry, ::Scripting::ObjectHandle handle, ::entt::meta_type const& type, diff --git a/src/mc/external/scripting/reflection/IPropertySetter.h b/src/mc/external/scripting/reflection/IPropertySetter.h index 7fda7b847b..31260f71d9 100644 --- a/src/mc/external/scripting/reflection/IPropertySetter.h +++ b/src/mc/external/scripting/reflection/IPropertySetter.h @@ -51,7 +51,7 @@ class IPropertySetter { public: // virtual function thunks // NOLINTBEGIN - MCAPI bool $isMemberFunction() const; + MCFOLD bool $isMemberFunction() const; // NOLINTEND public: diff --git a/src/mc/external/scripting/runtime/AnyAndJSValue.h b/src/mc/external/scripting/runtime/AnyAndJSValue.h index 049513f6ab..95d6fd90ac 100644 --- a/src/mc/external/scripting/runtime/AnyAndJSValue.h +++ b/src/mc/external/scripting/runtime/AnyAndJSValue.h @@ -28,7 +28,7 @@ struct AnyAndJSValue { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/external/scripting/runtime/ArgumentOutOfBoundsError.h b/src/mc/external/scripting/runtime/ArgumentOutOfBoundsError.h index 6eff0b3493..514c3c70d4 100644 --- a/src/mc/external/scripting/runtime/ArgumentOutOfBoundsError.h +++ b/src/mc/external/scripting/runtime/ArgumentOutOfBoundsError.h @@ -39,7 +39,7 @@ struct ArgumentOutOfBoundsError : public ::Scripting::Error { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/external/scripting/runtime/EngineError.h b/src/mc/external/scripting/runtime/EngineError.h index a6108dc702..180c6ec58d 100644 --- a/src/mc/external/scripting/runtime/EngineError.h +++ b/src/mc/external/scripting/runtime/EngineError.h @@ -25,7 +25,7 @@ struct EngineError : public ::Scripting::Error { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/external/scripting/runtime/Error.h b/src/mc/external/scripting/runtime/Error.h index 2778bc90f7..b840e17e2d 100644 --- a/src/mc/external/scripting/runtime/Error.h +++ b/src/mc/external/scripting/runtime/Error.h @@ -46,7 +46,7 @@ struct Error { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/external/scripting/runtime/IRuntime.h b/src/mc/external/scripting/runtime/IRuntime.h index ca8ac96554..ef832ebf3d 100644 --- a/src/mc/external/scripting/runtime/IRuntime.h +++ b/src/mc/external/scripting/runtime/IRuntime.h @@ -124,9 +124,9 @@ class IRuntime { public: // virtual function thunks // NOLINTBEGIN - MCAPI ::Scripting::IRuntimeMetadata* $getMetadata() const; + MCFOLD ::Scripting::IRuntimeMetadata* $getMetadata() const; - MCAPI void $moveToThread(); + MCFOLD void $moveToThread(); // NOLINTEND }; diff --git a/src/mc/external/scripting/runtime/InvalidArgumentError.h b/src/mc/external/scripting/runtime/InvalidArgumentError.h index b2f13a53b6..71ba4acd57 100644 --- a/src/mc/external/scripting/runtime/InvalidArgumentError.h +++ b/src/mc/external/scripting/runtime/InvalidArgumentError.h @@ -37,7 +37,7 @@ struct InvalidArgumentError : public ::Scripting::Error { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/external/scripting/runtime/NativeRuntime.h b/src/mc/external/scripting/runtime/NativeRuntime.h index f7b001c575..6daedd1e75 100644 --- a/src/mc/external/scripting/runtime/NativeRuntime.h +++ b/src/mc/external/scripting/runtime/NativeRuntime.h @@ -175,40 +175,40 @@ class NativeRuntime : public ::Scripting::IRuntime, public ::std::enable_shared_ MCAPI ::Scripting::ResultAny $call(::Scripting::ContextId, ::Scripting::TypedObjectHandle<::Scripting::ClosureType>, ::entt::meta_any*, uint, ::entt::meta_type const&, ::std::optional<::Scripting::Privilege>); - MCAPI ::Scripting::ResultAny + MCFOLD ::Scripting::ResultAny $resolve(::Scripting::ContextId, ::Scripting::TypedObjectHandle<::Scripting::PromiseType>, ::entt::meta_any&); - MCAPI ::Scripting::ResultAny + MCFOLD ::Scripting::ResultAny $reject(::Scripting::ContextId, ::Scripting::TypedObjectHandle<::Scripting::PromiseType>, ::entt::meta_any&); - MCAPI ::Scripting::FutureStatus + MCFOLD ::Scripting::FutureStatus $getFutureStatus(::Scripting::ContextId, ::Scripting::TypedObjectHandle<::Scripting::FutureType>) const; - MCAPI ::Scripting::ResultAny + MCFOLD ::Scripting::ResultAny $getFutureResult(::Scripting::ContextId, ::Scripting::TypedObjectHandle<::Scripting::FutureType>, ::entt::meta_type const&) const; MCAPI ::Scripting::Result_deprecated<::Scripting::CoRoutineResult> $executeCoroutines(::std::optional<::std::chrono::microseconds>); - MCAPI bool $hasPendingJobs(); + MCFOLD bool $hasPendingJobs(); - MCAPI ::Scripting::IDebuggerController* $enableDebugger(::Scripting::IDebuggerTransport&); + MCFOLD ::Scripting::IDebuggerController* $enableDebugger(::Scripting::IDebuggerTransport&); - MCAPI void $disableDebugger(); + MCFOLD void $disableDebugger(); - MCAPI void $startProfiler(); + MCFOLD void $startProfiler(); - MCAPI void + MCFOLD void $stopProfiler(::std::function, ::std::optional<::std::reference_wrapper<::std::string const>>); MCAPI ::Scripting::RuntimeStats $computeRuntimeStats() const; - MCAPI ::Scripting::IWatchdog* $enableWatchdog(::Scripting::WatchdogSettings); + MCFOLD ::Scripting::IWatchdog* $enableWatchdog(::Scripting::WatchdogSettings); - MCAPI void $disableWatchdog(); + MCFOLD void $disableWatchdog(); - MCAPI ::Scripting::IWatchdog* $getWatchdog() const; + MCFOLD ::Scripting::IWatchdog* $getWatchdog() const; MCAPI ::std::optional<::Scripting::TypeNameInfo> $getNameForType(::Scripting::ContextId, ::entt::meta_type const&, bool) const; diff --git a/src/mc/external/scripting/runtime/PropertyOutOfBoundsError.h b/src/mc/external/scripting/runtime/PropertyOutOfBoundsError.h index 9a930cd180..b0c0655e6b 100644 --- a/src/mc/external/scripting/runtime/PropertyOutOfBoundsError.h +++ b/src/mc/external/scripting/runtime/PropertyOutOfBoundsError.h @@ -40,7 +40,7 @@ struct PropertyOutOfBoundsError : public ::Scripting::Error { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/external/scripting/runtime/ResultAny.h b/src/mc/external/scripting/runtime/ResultAny.h index 129a89bd41..514a3af7bd 100644 --- a/src/mc/external/scripting/runtime/ResultAny.h +++ b/src/mc/external/scripting/runtime/ResultAny.h @@ -2,27 +2,6 @@ #include "mc/_HeaderOutputPredefine.h" -// auto generated forward declare list -// clang-format off -namespace Editor::ScriptModule { class ScriptWidgetComponentErrorInvalidComponent; } -namespace Editor::ScriptModule { class ScriptWidgetErrorInvalidObject; } -namespace Editor::ScriptModule { class ScriptWidgetGroupErrorInvalidObject; } -namespace ScriptModuleMinecraft { struct ScriptCommandError; } -namespace ScriptModuleMinecraft { struct ScriptInvalidContainerSlotError; } -namespace ScriptModuleMinecraft { struct ScriptInvalidStructureError; } -namespace ScriptModuleMinecraft { struct ScriptItemEnchantmentLevelOutOfBoundsError; } -namespace ScriptModuleMinecraft { struct ScriptItemEnchantmentUnknownIdError; } -namespace ScriptModuleMinecraft { struct ScriptLocationInUnloadedChunkError; } -namespace ScriptModuleMinecraft { struct ScriptLocationOutOfWorldBoundsError; } -namespace ScriptModuleMinecraft { struct ScriptUnloadedChunksError; } -namespace Scripting { struct ArgumentOutOfBoundsError; } -namespace Scripting { struct EngineError; } -namespace Scripting { struct Error; } -namespace Scripting { struct InvalidArgumentError; } -namespace Scripting { struct RuntimeConditionError; } -namespace gametest { struct GameTestError; } -// clang-format on - namespace Scripting { class ResultAny { @@ -43,46 +22,8 @@ class ResultAny { // NOLINTBEGIN MCAPI ResultAny(); - MCAPI explicit ResultAny(::ScriptModuleMinecraft::ScriptUnloadedChunksError&&); - - MCAPI explicit ResultAny(::Scripting::Error&&); - MCAPI explicit ResultAny(::entt::meta_any&& resultAny); - MCAPI explicit ResultAny(::ScriptModuleMinecraft::ScriptInvalidStructureError&&); - - MCAPI explicit ResultAny(::Scripting::ArgumentOutOfBoundsError&&); - - MCAPI explicit ResultAny(::Scripting::InvalidArgumentError&&); - - MCAPI explicit ResultAny(::ScriptModuleMinecraft::ScriptItemEnchantmentLevelOutOfBoundsError const&&); - - MCAPI explicit ResultAny(::Editor::ScriptModule::ScriptWidgetErrorInvalidObject&&); - - MCAPI explicit ResultAny(::Editor::ScriptModule::ScriptWidgetComponentErrorInvalidComponent&&); - - MCAPI explicit ResultAny(::ScriptModuleMinecraft::ScriptCommandError&&); - - MCAPI explicit ResultAny(::ScriptModuleMinecraft::ScriptLocationInUnloadedChunkError&&); - - MCAPI explicit ResultAny(::gametest::GameTestError&&); - - MCAPI explicit ResultAny(::ScriptModuleMinecraft::ScriptInvalidContainerSlotError&&); - - MCAPI explicit ResultAny(::Scripting::Error const&&); - - MCAPI explicit ResultAny(::ScriptModuleMinecraft::ScriptItemEnchantmentUnknownIdError const&&); - - MCAPI explicit ResultAny(::ScriptModuleMinecraft::ScriptLocationOutOfWorldBoundsError&&); - - MCAPI explicit ResultAny(::ScriptModuleMinecraft::ScriptItemEnchantmentUnknownIdError&&); - - MCAPI explicit ResultAny(::Scripting::RuntimeConditionError&&); - - MCAPI explicit ResultAny(::Editor::ScriptModule::ScriptWidgetGroupErrorInvalidObject&&); - - MCAPI explicit ResultAny(::Scripting::EngineError&&); - MCAPI ::entt::meta_any toAny() const; MCAPI ::entt::meta_any toErrorAny() const; @@ -101,53 +42,15 @@ class ResultAny { public: // constructor thunks // NOLINTBEGIN - MCAPI void* $ctor(); - - MCAPI void* $ctor(::ScriptModuleMinecraft::ScriptUnloadedChunksError&&); - - MCAPI void* $ctor(::Scripting::Error&&); + MCFOLD void* $ctor(); MCAPI void* $ctor(::entt::meta_any&& resultAny); - - MCAPI void* $ctor(::ScriptModuleMinecraft::ScriptInvalidStructureError&&); - - MCAPI void* $ctor(::Scripting::ArgumentOutOfBoundsError&&); - - MCAPI void* $ctor(::Scripting::InvalidArgumentError&&); - - MCAPI void* $ctor(::ScriptModuleMinecraft::ScriptItemEnchantmentLevelOutOfBoundsError const&&); - - MCAPI void* $ctor(::Editor::ScriptModule::ScriptWidgetErrorInvalidObject&&); - - MCAPI void* $ctor(::Editor::ScriptModule::ScriptWidgetComponentErrorInvalidComponent&&); - - MCAPI void* $ctor(::ScriptModuleMinecraft::ScriptCommandError&&); - - MCAPI void* $ctor(::ScriptModuleMinecraft::ScriptLocationInUnloadedChunkError&&); - - MCAPI void* $ctor(::gametest::GameTestError&&); - - MCAPI void* $ctor(::ScriptModuleMinecraft::ScriptInvalidContainerSlotError&&); - - MCAPI void* $ctor(::Scripting::Error const&&); - - MCAPI void* $ctor(::ScriptModuleMinecraft::ScriptItemEnchantmentUnknownIdError const&&); - - MCAPI void* $ctor(::ScriptModuleMinecraft::ScriptLocationOutOfWorldBoundsError&&); - - MCAPI void* $ctor(::ScriptModuleMinecraft::ScriptItemEnchantmentUnknownIdError&&); - - MCAPI void* $ctor(::Scripting::RuntimeConditionError&&); - - MCAPI void* $ctor(::Editor::ScriptModule::ScriptWidgetGroupErrorInvalidObject&&); - - MCAPI void* $ctor(::Scripting::EngineError&&); // NOLINTEND public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/external/scripting/runtime/RuntimeCondition.h b/src/mc/external/scripting/runtime/RuntimeCondition.h index c287c9615a..f8ef21003d 100644 --- a/src/mc/external/scripting/runtime/RuntimeCondition.h +++ b/src/mc/external/scripting/runtime/RuntimeCondition.h @@ -28,13 +28,13 @@ struct RuntimeCondition { public: // constructor thunks // NOLINTBEGIN - MCAPI void* $ctor(::std::string const& id); + MCFOLD void* $ctor(::std::string const& id); // NOLINTEND public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/external/scripting/runtime/RuntimeConditionError.h b/src/mc/external/scripting/runtime/RuntimeConditionError.h index 59481da5a2..bcc571c11c 100644 --- a/src/mc/external/scripting/runtime/RuntimeConditionError.h +++ b/src/mc/external/scripting/runtime/RuntimeConditionError.h @@ -43,7 +43,7 @@ struct RuntimeConditionError : public ::Scripting::Error { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/external/scripting/runtime/RuntimeConditions.h b/src/mc/external/scripting/runtime/RuntimeConditions.h index 942c20657b..d3261047ea 100644 --- a/src/mc/external/scripting/runtime/RuntimeConditions.h +++ b/src/mc/external/scripting/runtime/RuntimeConditions.h @@ -45,13 +45,13 @@ class RuntimeConditions { MCAPI void* $ctor(::Scripting::RuntimeConditions&& rhs); - MCAPI void* $ctor(::std::vector<::Scripting::RuntimeCondition> const& runtimeConditions); + MCFOLD void* $ctor(::std::vector<::Scripting::RuntimeCondition> const& runtimeConditions); // NOLINTEND public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/external/scripting/runtime/TypeNameInfo.h b/src/mc/external/scripting/runtime/TypeNameInfo.h index 5e61cf20d3..f7126ace4f 100644 --- a/src/mc/external/scripting/runtime/TypeNameInfo.h +++ b/src/mc/external/scripting/runtime/TypeNameInfo.h @@ -36,7 +36,7 @@ struct TypeNameInfo { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/external/scripting/runtime/watchdog/WatchdogEvent.h b/src/mc/external/scripting/runtime/watchdog/WatchdogEvent.h index af49b84f3d..9189ffebfb 100644 --- a/src/mc/external/scripting/runtime/watchdog/WatchdogEvent.h +++ b/src/mc/external/scripting/runtime/watchdog/WatchdogEvent.h @@ -58,7 +58,7 @@ struct WatchdogEvent { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/external/scripting/script_engine/ClosureAny.h b/src/mc/external/scripting/script_engine/ClosureAny.h index ace6239b42..e2390326de 100644 --- a/src/mc/external/scripting/script_engine/ClosureAny.h +++ b/src/mc/external/scripting/script_engine/ClosureAny.h @@ -61,25 +61,25 @@ class ClosureAny : public ::Scripting::ScriptValue { MCAPI bool compareTo(::Scripting::ClosureAny const& rhs) const; - MCAPI ::std::optional<::Scripting::TypedObjectHandle<::Scripting::ClosureType>> getClosureHandle() const; + MCFOLD ::std::optional<::Scripting::TypedObjectHandle<::Scripting::ClosureType>> getClosureHandle() const; - MCAPI ::Scripting::ClosureAny& operator=(::Scripting::ClosureAny const& rhs); + MCFOLD ::Scripting::ClosureAny& operator=(::Scripting::ClosureAny const& rhs); - MCAPI ::Scripting::ClosureAny& operator=(::Scripting::ClosureAny&& rhs); + MCFOLD ::Scripting::ClosureAny& operator=(::Scripting::ClosureAny&& rhs); - MCAPI bool valid() const; + MCFOLD bool valid() const; // NOLINTEND public: // constructor thunks // NOLINTBEGIN - MCAPI void* $ctor(); + MCFOLD void* $ctor(); - MCAPI void* $ctor(::Scripting::ClosureAny const& rhs); + MCFOLD void* $ctor(::Scripting::ClosureAny const& rhs); MCAPI void* $ctor(::Scripting::ClosureAny&& rhs); - MCAPI void* $ctor( + MCFOLD void* $ctor( ::Scripting::IRuntime* runtime, ::Scripting::ContextId contextId, ::Scripting::WeakLifetimeScope scope, @@ -91,7 +91,7 @@ class ClosureAny : public ::Scripting::ScriptValue { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND public: diff --git a/src/mc/external/scripting/script_engine/FutureAny.h b/src/mc/external/scripting/script_engine/FutureAny.h index c60478c6ef..53772f607e 100644 --- a/src/mc/external/scripting/script_engine/FutureAny.h +++ b/src/mc/external/scripting/script_engine/FutureAny.h @@ -54,19 +54,19 @@ class FutureAny : public ::Scripting::ScriptValue { MCAPI bool isRejected() const; - MCAPI ::Scripting::FutureAny& operator=(::Scripting::FutureAny const& rhs); + MCFOLD ::Scripting::FutureAny& operator=(::Scripting::FutureAny const& rhs); - MCAPI ::Scripting::FutureAny& operator=(::Scripting::FutureAny&& rhs); + MCFOLD ::Scripting::FutureAny& operator=(::Scripting::FutureAny&& rhs); // NOLINTEND public: // constructor thunks // NOLINTBEGIN - MCAPI void* $ctor(); + MCFOLD void* $ctor(); - MCAPI void* $ctor(::Scripting::FutureAny const& rhs); + MCFOLD void* $ctor(::Scripting::FutureAny const& rhs); - MCAPI void* $ctor( + MCFOLD void* $ctor( ::Scripting::IRuntime* runtime, ::Scripting::ContextId contextId, ::Scripting::WeakLifetimeScope scope, @@ -78,7 +78,7 @@ class FutureAny : public ::Scripting::ScriptValue { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND public: diff --git a/src/mc/external/scripting/script_engine/GeneratorAny.h b/src/mc/external/scripting/script_engine/GeneratorAny.h index 57d58a9053..3820c3d6ca 100644 --- a/src/mc/external/scripting/script_engine/GeneratorAny.h +++ b/src/mc/external/scripting/script_engine/GeneratorAny.h @@ -51,21 +51,21 @@ class GeneratorAny : public ::Scripting::ScriptValue { MCAPI ::Scripting::ResultAny nextGeneric(::entt::meta_any& argAny, ::entt::meta_type expectedReturnType) const; - MCAPI ::Scripting::GeneratorAny& operator=(::Scripting::GeneratorAny const& rhs); + MCFOLD ::Scripting::GeneratorAny& operator=(::Scripting::GeneratorAny const& rhs); - MCAPI ::Scripting::GeneratorAny& operator=(::Scripting::GeneratorAny&& rhs); + MCFOLD ::Scripting::GeneratorAny& operator=(::Scripting::GeneratorAny&& rhs); - MCAPI bool valid() const; + MCFOLD bool valid() const; // NOLINTEND public: // constructor thunks // NOLINTBEGIN - MCAPI void* $ctor(::Scripting::GeneratorAny const& rhs); + MCFOLD void* $ctor(::Scripting::GeneratorAny const& rhs); - MCAPI void* $ctor(::Scripting::GeneratorAny&& rhs); + MCFOLD void* $ctor(::Scripting::GeneratorAny&& rhs); - MCAPI void* $ctor( + MCFOLD void* $ctor( ::Scripting::IRuntime* runtime, ::Scripting::ContextId contextId, ::Scripting::WeakLifetimeScope scope, diff --git a/src/mc/external/scripting/script_engine/GeneratorIteratorAny.h b/src/mc/external/scripting/script_engine/GeneratorIteratorAny.h index 22c6f93f27..5b18f86d3b 100644 --- a/src/mc/external/scripting/script_engine/GeneratorIteratorAny.h +++ b/src/mc/external/scripting/script_engine/GeneratorIteratorAny.h @@ -49,9 +49,9 @@ class GeneratorIteratorAny : public ::Scripting::ScriptValue { ::Scripting::IObjectInspector* inspector ); - MCAPI ::Scripting::GeneratorIteratorAny& operator=(::Scripting::GeneratorIteratorAny const& rhs); + MCFOLD ::Scripting::GeneratorIteratorAny& operator=(::Scripting::GeneratorIteratorAny const& rhs); - MCAPI ::Scripting::GeneratorIteratorAny& operator=(::Scripting::GeneratorIteratorAny&& rhs); + MCFOLD ::Scripting::GeneratorIteratorAny& operator=(::Scripting::GeneratorIteratorAny&& rhs); // NOLINTEND public: @@ -71,7 +71,7 @@ class GeneratorIteratorAny : public ::Scripting::ScriptValue { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND public: diff --git a/src/mc/external/scripting/script_engine/ModuleDescriptor.h b/src/mc/external/scripting/script_engine/ModuleDescriptor.h index 86dec6498b..9b8b88834f 100644 --- a/src/mc/external/scripting/script_engine/ModuleDescriptor.h +++ b/src/mc/external/scripting/script_engine/ModuleDescriptor.h @@ -33,7 +33,7 @@ struct ModuleDescriptor { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/external/scripting/script_engine/ModuleResolveResult.h b/src/mc/external/scripting/script_engine/ModuleResolveResult.h index 091c3cd779..0ea2fba7a4 100644 --- a/src/mc/external/scripting/script_engine/ModuleResolveResult.h +++ b/src/mc/external/scripting/script_engine/ModuleResolveResult.h @@ -35,7 +35,7 @@ struct ModuleResolveResult { public: // constructor thunks // NOLINTBEGIN - MCAPI void* $ctor(); + MCFOLD void* $ctor(); // NOLINTEND public: diff --git a/src/mc/external/scripting/script_engine/PromiseAny.h b/src/mc/external/scripting/script_engine/PromiseAny.h index 138c1a588c..1ec3b2ad6a 100644 --- a/src/mc/external/scripting/script_engine/PromiseAny.h +++ b/src/mc/external/scripting/script_engine/PromiseAny.h @@ -50,11 +50,11 @@ class PromiseAny : public ::Scripting::ScriptValue { ::Scripting::StrongTypedObjectHandle<::Scripting::PromiseType> const& promiseHandle ); - MCAPI ::std::optional<::Scripting::TypedObjectHandle<::Scripting::PromiseType>> getPromiseHandle() const; + MCFOLD ::std::optional<::Scripting::TypedObjectHandle<::Scripting::PromiseType>> getPromiseHandle() const; - MCAPI ::Scripting::PromiseAny& operator=(::Scripting::PromiseAny&& rhs); + MCFOLD ::Scripting::PromiseAny& operator=(::Scripting::PromiseAny&& rhs); - MCAPI ::Scripting::PromiseAny& operator=(::Scripting::PromiseAny const& rhs); + MCFOLD ::Scripting::PromiseAny& operator=(::Scripting::PromiseAny const& rhs); MCAPI ::Scripting::ResultAny rejectGeneric(::entt::meta_any& any) const; @@ -64,11 +64,11 @@ class PromiseAny : public ::Scripting::ScriptValue { public: // constructor thunks // NOLINTBEGIN - MCAPI void* $ctor(::Scripting::PromiseAny&& rhs); + MCFOLD void* $ctor(::Scripting::PromiseAny&& rhs); - MCAPI void* $ctor(::Scripting::PromiseAny const& rhs); + MCFOLD void* $ctor(::Scripting::PromiseAny const& rhs); - MCAPI void* $ctor( + MCFOLD void* $ctor( ::Scripting::IRuntime* runtime, ::Scripting::ContextId contextId, ::Scripting::WeakLifetimeScope scope, diff --git a/src/mc/external/scripting/script_engine/ScriptContext.h b/src/mc/external/scripting/script_engine/ScriptContext.h index 376bd66054..fce3564b7a 100644 --- a/src/mc/external/scripting/script_engine/ScriptContext.h +++ b/src/mc/external/scripting/script_engine/ScriptContext.h @@ -46,9 +46,9 @@ class ScriptContext { MCAPI void _destroy(); - MCAPI ::Scripting::ContextId getContextId() const; + MCFOLD ::Scripting::ContextId getContextId() const; - MCAPI ::Scripting::IRuntime* getRuntime(); + MCFOLD ::Scripting::IRuntime* getRuntime(); MCAPI ::Scripting::WeakLifetimeScope getWeakLifetimeScope() const; diff --git a/src/mc/external/scripting/script_engine/ScriptEngine.h b/src/mc/external/scripting/script_engine/ScriptEngine.h index 89d240a4e4..05291fe0f8 100644 --- a/src/mc/external/scripting/script_engine/ScriptEngine.h +++ b/src/mc/external/scripting/script_engine/ScriptEngine.h @@ -41,7 +41,7 @@ class ScriptEngine { MCAPI void addModuleBindingFactory(::std::unique_ptr<::Scripting::IModuleBindingFactory> moduleBindingFactory); - MCAPI void clearRuntimeFactory(); + MCFOLD void clearRuntimeFactory(); MCAPI ::Scripting::ScriptContextResult createScriptingContext( ::Scripting::ContextConfig const& config, @@ -53,7 +53,7 @@ class ScriptEngine { MCAPI ::std::optional<::Scripting::ModuleDescriptor> getModuleDescriptorByName(::std::string const& name) const; - MCAPI ::Scripting::RegistryManager& getRegistryManager(); + MCFOLD ::Scripting::RegistryManager& getRegistryManager(); MCAPI ::std::vector<::Scripting::SupportedBindingModule> getSupportedBindingModules() const; diff --git a/src/mc/external/scripting/script_engine/ScriptValue.h b/src/mc/external/scripting/script_engine/ScriptValue.h index a3a2d2f4bc..6aa7cdd0c0 100644 --- a/src/mc/external/scripting/script_engine/ScriptValue.h +++ b/src/mc/external/scripting/script_engine/ScriptValue.h @@ -36,7 +36,7 @@ class ScriptValue { // NOLINTBEGIN MCAPI ScriptValue(); - MCAPI ::Scripting::ContextId getContextId() const; + MCFOLD ::Scripting::ContextId getContextId() const; MCAPI ::Scripting::WeakLifetimeScope getWeakLifetimeScope() const; // NOLINTEND @@ -50,7 +50,7 @@ class ScriptValue { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND public: diff --git a/src/mc/external/scripting/script_engine/VersionRequestKey.h b/src/mc/external/scripting/script_engine/VersionRequestKey.h index a7bb2f8b63..d9108ef23e 100644 --- a/src/mc/external/scripting/script_engine/VersionRequestKey.h +++ b/src/mc/external/scripting/script_engine/VersionRequestKey.h @@ -27,7 +27,7 @@ struct VersionRequestKey { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/external/webrtc/CreateSessionDescriptionObserver.h b/src/mc/external/webrtc/CreateSessionDescriptionObserver.h index a8a3bc54be..9ea556995d 100644 --- a/src/mc/external/webrtc/CreateSessionDescriptionObserver.h +++ b/src/mc/external/webrtc/CreateSessionDescriptionObserver.h @@ -30,7 +30,7 @@ class CreateSessionDescriptionObserver : public ::webrtc::RefCountInterface { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND public: diff --git a/src/mc/external/webrtc/DataChannelInit.h b/src/mc/external/webrtc/DataChannelInit.h index ea038615f5..c5006bbedc 100644 --- a/src/mc/external/webrtc/DataChannelInit.h +++ b/src/mc/external/webrtc/DataChannelInit.h @@ -33,7 +33,7 @@ struct DataChannelInit { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/external/webrtc/DataChannelObserver.h b/src/mc/external/webrtc/DataChannelObserver.h index 22c8376644..1fa55600f5 100644 --- a/src/mc/external/webrtc/DataChannelObserver.h +++ b/src/mc/external/webrtc/DataChannelObserver.h @@ -38,9 +38,9 @@ class DataChannelObserver { public: // virtual function thunks // NOLINTBEGIN - MCAPI void $OnBufferedAmountChange(uint64 sent_data_size); + MCFOLD void $OnBufferedAmountChange(uint64 sent_data_size); - MCAPI bool $IsOkToCallOnTheNetworkThread(); + MCFOLD bool $IsOkToCallOnTheNetworkThread(); // NOLINTEND }; diff --git a/src/mc/external/webrtc/PeerConnectionObserver.h b/src/mc/external/webrtc/PeerConnectionObserver.h index 80a45fad1c..5b9f443fbe 100644 --- a/src/mc/external/webrtc/PeerConnectionObserver.h +++ b/src/mc/external/webrtc/PeerConnectionObserver.h @@ -102,15 +102,15 @@ class PeerConnectionObserver { public: // virtual function thunks // NOLINTBEGIN - MCAPI void $OnAddStream(::webrtc::scoped_refptr<::webrtc::MediaStreamInterface> stream); + MCFOLD void $OnAddStream(::webrtc::scoped_refptr<::webrtc::MediaStreamInterface> stream); - MCAPI void $OnRemoveStream(::webrtc::scoped_refptr<::webrtc::MediaStreamInterface> stream); + MCFOLD void $OnRemoveStream(::webrtc::scoped_refptr<::webrtc::MediaStreamInterface> stream); - MCAPI void $OnNegotiationNeededEvent(uint event_id); + MCFOLD void $OnNegotiationNeededEvent(uint event_id); - MCAPI void $OnStandardizedIceConnectionChange(::webrtc::PeerConnectionInterface::IceConnectionState new_state); + MCFOLD void $OnStandardizedIceConnectionChange(::webrtc::PeerConnectionInterface::IceConnectionState new_state); - MCAPI void $OnIceCandidateError( + MCFOLD void $OnIceCandidateError( ::std::string const& address, int port, ::std::string const& url, @@ -118,18 +118,18 @@ class PeerConnectionObserver { ::std::string const& error_text ); - MCAPI void $OnIceSelectedCandidatePairChanged(::cricket::CandidatePairChangeEvent const& event); + MCFOLD void $OnIceSelectedCandidatePairChanged(::cricket::CandidatePairChangeEvent const& event); - MCAPI void $OnAddTrack( + MCFOLD void $OnAddTrack( ::webrtc::scoped_refptr<::webrtc::RtpReceiverInterface> receiver, ::std::vector<::webrtc::scoped_refptr<::webrtc::MediaStreamInterface>> const& streams ); - MCAPI void $OnTrack(::webrtc::scoped_refptr<::webrtc::RtpTransceiverInterface> transceiver); + MCFOLD void $OnTrack(::webrtc::scoped_refptr<::webrtc::RtpTransceiverInterface> transceiver); - MCAPI void $OnRemoveTrack(::webrtc::scoped_refptr<::webrtc::RtpReceiverInterface> receiver); + MCFOLD void $OnRemoveTrack(::webrtc::scoped_refptr<::webrtc::RtpReceiverInterface> receiver); - MCAPI void $OnInterestingUsage(int usage_pattern); + MCFOLD void $OnInterestingUsage(int usage_pattern); // NOLINTEND }; diff --git a/src/mc/external/webrtc/RTCError.h b/src/mc/external/webrtc/RTCError.h index cb27fc38a7..2a06959f59 100644 --- a/src/mc/external/webrtc/RTCError.h +++ b/src/mc/external/webrtc/RTCError.h @@ -56,7 +56,7 @@ class RTCError { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/external/webrtc/RefCountInterface.h b/src/mc/external/webrtc/RefCountInterface.h index b00c8576b7..774e77e0a0 100644 --- a/src/mc/external/webrtc/RefCountInterface.h +++ b/src/mc/external/webrtc/RefCountInterface.h @@ -24,7 +24,7 @@ class RefCountInterface { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND public: diff --git a/src/mc/external/webrtc/SdpParseError.h b/src/mc/external/webrtc/SdpParseError.h index 1f0569ff06..cdf8af4183 100644 --- a/src/mc/external/webrtc/SdpParseError.h +++ b/src/mc/external/webrtc/SdpParseError.h @@ -27,7 +27,7 @@ struct SdpParseError { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/external/webrtc/SetLocalDescriptionObserverInterface.h b/src/mc/external/webrtc/SetLocalDescriptionObserverInterface.h index d73f77445f..4d1507929b 100644 --- a/src/mc/external/webrtc/SetLocalDescriptionObserverInterface.h +++ b/src/mc/external/webrtc/SetLocalDescriptionObserverInterface.h @@ -26,7 +26,7 @@ class SetLocalDescriptionObserverInterface : public ::webrtc::RefCountInterface public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND public: diff --git a/src/mc/gametest/BaseGameTestFunction.h b/src/mc/gametest/BaseGameTestFunction.h index ee2c13e88f..f74a627d94 100644 --- a/src/mc/gametest/BaseGameTestFunction.h +++ b/src/mc/gametest/BaseGameTestFunction.h @@ -71,7 +71,7 @@ class BaseGameTestFunction { MCAPI bool getRotate() const; - MCAPI ::std::string const& getTestName() const; + MCFOLD ::std::string const& getTestName() const; MCAPI bool hasTag(::std::string const& tag) const; // NOLINTEND diff --git a/src/mc/gametest/MinecraftGameTest.h b/src/mc/gametest/MinecraftGameTest.h index 6872e136a7..c4c214d3b9 100644 --- a/src/mc/gametest/MinecraftGameTest.h +++ b/src/mc/gametest/MinecraftGameTest.h @@ -55,15 +55,15 @@ class MinecraftGameTest : public ::LevelListener { MCAPI void clearAllTests(::BlockSource& region); - MCAPI ::gametest::GameTestRegistry& getRegistry(); + MCFOLD ::gametest::GameTestRegistry& getRegistry(); - MCAPI ::gametest::GameTestTicker& getTicker(); + MCFOLD ::gametest::GameTestTicker& getTicker(); MCAPI void loadExistingTests(::Level& level); MCAPI void registerDefaultGameBatches(::Level& level); - MCAPI void registerNativeGameTests(); + MCFOLD void registerNativeGameTests(); MCAPI ::std::string runTest(::std::string const& testName, ::Dimension& dimension, ::gametest::TestParameters const& params); diff --git a/src/mc/gametest/TestSummaryDisplayer.h b/src/mc/gametest/TestSummaryDisplayer.h index e3b60d7d68..1d728486d0 100644 --- a/src/mc/gametest/TestSummaryDisplayer.h +++ b/src/mc/gametest/TestSummaryDisplayer.h @@ -54,9 +54,9 @@ class TestSummaryDisplayer : public ::gametest::IGameTestListener { public: // virtual function thunks // NOLINTBEGIN - MCAPI void $onTestPassed(::gametest::BaseGameTestInstance&); + MCFOLD void $onTestPassed(::gametest::BaseGameTestInstance&); - MCAPI void $onTestFailed(::gametest::BaseGameTestInstance&); + MCFOLD void $onTestFailed(::gametest::BaseGameTestInstance&); // NOLINTEND public: diff --git a/src/mc/gametest/framework/BaseGameTestInstance.h b/src/mc/gametest/framework/BaseGameTestInstance.h index e0c7b66e78..862e5fceb2 100644 --- a/src/mc/gametest/framework/BaseGameTestInstance.h +++ b/src/mc/gametest/framework/BaseGameTestInstance.h @@ -123,9 +123,9 @@ class BaseGameTestInstance { MCAPI void finish(bool canRetry); - MCAPI ::std::optional<::gametest::GameTestError> const& getError() const; + MCFOLD ::std::optional<::gametest::GameTestError> const& getError() const; - MCAPI ::Rotation getRotation() const; + MCFOLD ::Rotation getRotation() const; MCAPI ::std::string const& getTestName() const; @@ -158,7 +158,7 @@ class BaseGameTestInstance { public: // virtual function thunks // NOLINTBEGIN - MCAPI void $initialize(); + MCFOLD void $initialize(); MCAPI void $spawnStructure(); diff --git a/src/mc/gametest/framework/GameTestBatchRunnerGameTestListener.h b/src/mc/gametest/framework/GameTestBatchRunnerGameTestListener.h index da6a7cad85..b7a5542f94 100644 --- a/src/mc/gametest/framework/GameTestBatchRunnerGameTestListener.h +++ b/src/mc/gametest/framework/GameTestBatchRunnerGameTestListener.h @@ -53,13 +53,13 @@ class GameTestBatchRunnerGameTestListener : public ::gametest::IGameTestListener public: // virtual function thunks // NOLINTBEGIN - MCAPI void $onTestStructureLoaded(::gametest::BaseGameTestInstance&); + MCFOLD void $onTestStructureLoaded(::gametest::BaseGameTestInstance&); - MCAPI void $onTestPassed(::gametest::BaseGameTestInstance&); + MCFOLD void $onTestPassed(::gametest::BaseGameTestInstance&); - MCAPI void $onTestFailed(::gametest::BaseGameTestInstance&); + MCFOLD void $onTestFailed(::gametest::BaseGameTestInstance&); - MCAPI void $onTestRetryFinished(::gametest::BaseGameTestInstance&); + MCFOLD void $onTestRetryFinished(::gametest::BaseGameTestInstance&); // NOLINTEND public: diff --git a/src/mc/gametest/framework/GameTestRegistry.h b/src/mc/gametest/framework/GameTestRegistry.h index 7a6037061c..a26e445326 100644 --- a/src/mc/gametest/framework/GameTestRegistry.h +++ b/src/mc/gametest/framework/GameTestRegistry.h @@ -35,21 +35,21 @@ class GameTestRegistry { MCAPI ::std::vector<::std::shared_ptr<::gametest::BaseGameTestFunction>> getAllTestFunctions(); - MCAPI ::std::vector<::std::string> const& getAllTestTags() const; + MCFOLD ::std::vector<::std::string> const& getAllTestTags() const; MCAPI ::std::shared_ptr<::gametest::BaseGameTestFunction> getTestFunction(::std::string const& testName); MCAPI ::std::vector<::std::shared_ptr<::gametest::BaseGameTestFunction>> getTestFunctionsWithTag(::std::string const& tag); - MCAPI bool isReady() const; + MCFOLD bool isReady() const; MCAPI bool isTestTag(::std::string const& tag) const; MCAPI bool registerTestMethod(::std::string const& className, ::std::shared_ptr<::gametest::BaseGameTestFunction> fn); - MCAPI void setReady(); + MCFOLD void setReady(); // NOLINTEND }; diff --git a/src/mc/gametest/framework/GameTestSaveData.h b/src/mc/gametest/framework/GameTestSaveData.h index dee3b54901..168834da6e 100644 --- a/src/mc/gametest/framework/GameTestSaveData.h +++ b/src/mc/gametest/framework/GameTestSaveData.h @@ -26,6 +26,6 @@ struct GameTestSaveData { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/gametest/framework/IGameTestListener.h b/src/mc/gametest/framework/IGameTestListener.h index f6b943072d..1c267b4dc9 100644 --- a/src/mc/gametest/framework/IGameTestListener.h +++ b/src/mc/gametest/framework/IGameTestListener.h @@ -44,17 +44,17 @@ class IGameTestListener { public: // virtual function thunks // NOLINTBEGIN - MCAPI void $onTestStructureLoaded(::gametest::BaseGameTestInstance&); + MCFOLD void $onTestStructureLoaded(::gametest::BaseGameTestInstance&); - MCAPI void $onTestPassed(::gametest::BaseGameTestInstance&); + MCFOLD void $onTestPassed(::gametest::BaseGameTestInstance&); - MCAPI void $onTestFailed(::gametest::BaseGameTestInstance&); + MCFOLD void $onTestFailed(::gametest::BaseGameTestInstance&); - MCAPI void $onTestStarted(::gametest::BaseGameTestInstance&); + MCFOLD void $onTestStarted(::gametest::BaseGameTestInstance&); - MCAPI void $onTestRetryStarted(::gametest::BaseGameTestInstance&); + MCFOLD void $onTestRetryStarted(::gametest::BaseGameTestInstance&); - MCAPI void $onTestRetryFinished(::gametest::BaseGameTestInstance&); + MCFOLD void $onTestRetryFinished(::gametest::BaseGameTestInstance&); // NOLINTEND }; diff --git a/src/mc/gametest/framework/SyncGameTestFunctionRunResult.h b/src/mc/gametest/framework/SyncGameTestFunctionRunResult.h index e2b5418712..10db4e3dfc 100644 --- a/src/mc/gametest/framework/SyncGameTestFunctionRunResult.h +++ b/src/mc/gametest/framework/SyncGameTestFunctionRunResult.h @@ -47,7 +47,7 @@ class SyncGameTestFunctionRunResult : public ::gametest::IGameTestFunctionRunRes public: // virtual function thunks // NOLINTBEGIN - MCAPI bool $isComplete() const; + MCFOLD bool $isComplete() const; MCAPI ::std::optional<::gametest::GameTestError> $getError(); // NOLINTEND diff --git a/src/mc/identity/PlayerIDs.h b/src/mc/identity/PlayerIDs.h index ff2d70ea8a..c33ea73f7f 100644 --- a/src/mc/identity/PlayerIDs.h +++ b/src/mc/identity/PlayerIDs.h @@ -27,7 +27,7 @@ struct PlayerIDs { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/leveldb/LevelDbEnv.h b/src/mc/leveldb/LevelDbEnv.h index 423825f9f1..dc82c07f7d 100644 --- a/src/mc/leveldb/LevelDbEnv.h +++ b/src/mc/leveldb/LevelDbEnv.h @@ -143,7 +143,7 @@ class LevelDbEnv : public ::Bedrock::EnableNonOwnerReferences, public ::leveldb: MCAPI void $Schedule(void (*function)(void*), void* arg); - MCAPI void $StartThread(void (*function)(void*), void* arg); + MCFOLD void $StartThread(void (*function)(void*), void* arg); MCAPI ::leveldb::Status $GetTestDirectory(::std::string* result); diff --git a/src/mc/leveldb/LevelDbLogger.h b/src/mc/leveldb/LevelDbLogger.h index a063f64471..bf5e1ba274 100644 --- a/src/mc/leveldb/LevelDbLogger.h +++ b/src/mc/leveldb/LevelDbLogger.h @@ -22,7 +22,7 @@ class LevelDbLogger : public ::leveldb::Logger { public: // virtual function thunks // NOLINTBEGIN - MCAPI void $Logv(char const* format, char* ap); + MCFOLD void $Logv(char const* format, char* ap); // NOLINTEND public: diff --git a/src/mc/locale/I18nImpl.h b/src/mc/locale/I18nImpl.h index 8c5c033356..855aa2eec5 100644 --- a/src/mc/locale/I18nImpl.h +++ b/src/mc/locale/I18nImpl.h @@ -286,7 +286,7 @@ class I18nImpl : public ::I18n { MCAPI bool $hasPackKeyEntry(::PackManifest const& manifest, ::std::string const& key); - MCAPI ::std::vector<::std::string> const& $getSupportedLanguageCodes(); + MCFOLD ::std::vector<::std::string> const& $getSupportedLanguageCodes(); MCAPI ::std::string const& $getLanguageName(::std::string const& code); diff --git a/src/mc/locale/Localization.h b/src/mc/locale/Localization.h index 18ffe2bef0..ebc2c00f50 100644 --- a/src/mc/locale/Localization.h +++ b/src/mc/locale/Localization.h @@ -56,7 +56,7 @@ class Localization { MCAPI bool get(::std::string const& id, ::std::string& out, ::std::vector<::std::string> const& params) const; - MCAPI ::std::string getFullLanguageCode() const; + MCFOLD ::std::string getFullLanguageCode() const; MCAPI void loadFromPack( ::std::string const& keyPrefix, diff --git a/src/mc/locale/OptionalString.h b/src/mc/locale/OptionalString.h index c0f43f7778..705a3dbe3a 100644 --- a/src/mc/locale/OptionalString.h +++ b/src/mc/locale/OptionalString.h @@ -25,6 +25,6 @@ struct OptionalString { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/molang/molang_version_map/VersionInfo.h b/src/mc/molang/molang_version_map/VersionInfo.h index 3ea4fb719a..27857c1c48 100644 --- a/src/mc/molang/molang_version_map/VersionInfo.h +++ b/src/mc/molang/molang_version_map/VersionInfo.h @@ -27,7 +27,7 @@ struct VersionInfo { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/nbt/ByteArrayTag.h b/src/mc/nbt/ByteArrayTag.h index 6208636d8e..0453f7bf7c 100644 --- a/src/mc/nbt/ByteArrayTag.h +++ b/src/mc/nbt/ByteArrayTag.h @@ -60,7 +60,7 @@ class ByteArrayTag : public ::Tag { public: // virtual function thunks // NOLINTBEGIN - MCAPI ::Tag::Type $getId() const; + MCFOLD ::Tag::Type $getId() const; MCAPI ::std::string $toString() const; diff --git a/src/mc/nbt/ByteTag.h b/src/mc/nbt/ByteTag.h index 1bbb53c045..1ab4c3c841 100644 --- a/src/mc/nbt/ByteTag.h +++ b/src/mc/nbt/ByteTag.h @@ -66,7 +66,7 @@ class ByteTag : public ::Tag { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND public: @@ -76,7 +76,7 @@ class ByteTag : public ::Tag { MCAPI ::Bedrock::Result $load(::IDataInput& dis); - MCAPI ::Tag::Type $getId() const; + MCFOLD ::Tag::Type $getId() const; MCAPI ::std::string $toString() const; diff --git a/src/mc/nbt/CompoundTag.h b/src/mc/nbt/CompoundTag.h index 2f34295608..a0bb22180d 100644 --- a/src/mc/nbt/CompoundTag.h +++ b/src/mc/nbt/CompoundTag.h @@ -49,7 +49,7 @@ class CompoundTag : public ::Tag { virtual ::std::string toString() const /*override*/; // vIndex: 7 - virtual void print(::std::string const& prefix_, ::PrintStream& out) const /*override*/; + virtual void print(::std::string const& prefix, ::PrintStream& out) const /*override*/; // vIndex: 9 virtual ::std::unique_ptr<::Tag> copy() const /*override*/; @@ -70,7 +70,7 @@ class CompoundTag : public ::Tag { MCAPI void append(::CompoundTag const& tag); - MCAPI ::std::_Tree_const_iterator< + MCFOLD ::std::_Tree_const_iterator< ::std::_Tree_val<::std::_Tree_simple_types<::std::pair<::std::string const, ::CompoundTagVariant>>>> begin() const; @@ -84,7 +84,7 @@ class CompoundTag : public ::Tag { MCAPI void deepCopy(::CompoundTag const& other); - MCAPI ::std::_Tree_const_iterator< + MCFOLD ::std::_Tree_const_iterator< ::std::_Tree_val<::std::_Tree_simple_types<::std::pair<::std::string const, ::CompoundTagVariant>>>> end() const; @@ -100,7 +100,7 @@ class CompoundTag : public ::Tag { MCAPI ::CompoundTag const* getCompound(::std::string_view) const; - MCAPI ::CompoundTag* getCompound(::std::string_view name); + MCFOLD ::CompoundTag* getCompound(::std::string_view name); MCAPI float getFloat(::std::string_view name) const; @@ -110,13 +110,13 @@ class CompoundTag : public ::Tag { MCAPI ::Int64Tag const* getInt64Tag(::std::string_view) const; - MCAPI ::Int64Tag* getInt64Tag(::std::string_view name); + MCFOLD ::Int64Tag* getInt64Tag(::std::string_view name); MCAPI ::IntTag const* getIntTag(::std::string_view name) const; MCAPI ::ListTag const* getList(::std::string_view) const; - MCAPI ::ListTag* getList(::std::string_view name); + MCFOLD ::ListTag* getList(::std::string_view name); MCAPI short getShort(::std::string_view name) const; @@ -126,7 +126,7 @@ class CompoundTag : public ::Tag { MCAPI ::StringTag const* getStringTag(::std::string_view name) const; - MCAPI bool isEmpty() const; + MCFOLD bool isEmpty() const; MCAPI ::CompoundTag& operator=(::CompoundTag&& rhs); @@ -154,13 +154,13 @@ class CompoundTag : public ::Tag { MCAPI ::std::string& putString(::std::string name, ::std::string value); - MCAPI ::std::map<::std::string, ::CompoundTagVariant, ::std::less> const& rawView() const; + MCFOLD ::std::map<::std::string, ::CompoundTagVariant, ::std::less> const& rawView() const; MCAPI bool remove(::std::string_view name); MCAPI void rename(::std::string_view name, ::std::string newName); - MCAPI uint64 size() const; + MCFOLD uint64 size() const; // NOLINTEND public: @@ -188,7 +188,7 @@ class CompoundTag : public ::Tag { MCAPI ::std::string $toString() const; - MCAPI void $print(::std::string const& prefix_, ::PrintStream& out) const; + MCAPI void $print(::std::string const& prefix, ::PrintStream& out) const; MCAPI ::std::unique_ptr<::Tag> $copy() const; diff --git a/src/mc/nbt/CompoundTagVariant.h b/src/mc/nbt/CompoundTagVariant.h index a34a7c7308..701f7fe832 100644 --- a/src/mc/nbt/CompoundTagVariant.h +++ b/src/mc/nbt/CompoundTagVariant.h @@ -69,6 +69,6 @@ class CompoundTagVariant { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/nbt/DoubleTag.h b/src/mc/nbt/DoubleTag.h index bea44819e5..b0f73483df 100644 --- a/src/mc/nbt/DoubleTag.h +++ b/src/mc/nbt/DoubleTag.h @@ -60,7 +60,7 @@ class DoubleTag : public ::Tag { MCAPI ::Bedrock::Result $load(::IDataInput& dis); - MCAPI ::Tag::Type $getId() const; + MCFOLD ::Tag::Type $getId() const; MCAPI ::std::string $toString() const; diff --git a/src/mc/nbt/EndTag.h b/src/mc/nbt/EndTag.h index ca22cc6b0a..060e5dd575 100644 --- a/src/mc/nbt/EndTag.h +++ b/src/mc/nbt/EndTag.h @@ -50,19 +50,19 @@ class EndTag : public ::Tag { public: // virtual function thunks // NOLINTBEGIN - MCAPI ::Bedrock::Result $load(::IDataInput& dis); + MCFOLD ::Bedrock::Result $load(::IDataInput& dis); - MCAPI void $write(::IDataOutput& dos) const; + MCFOLD void $write(::IDataOutput& dos) const; - MCAPI ::Tag::Type $getId() const; + MCFOLD ::Tag::Type $getId() const; MCAPI ::std::string $toString() const; MCAPI ::std::unique_ptr<::Tag> $copy() const; - MCAPI bool $equals(::Tag const& rhs) const; + MCFOLD bool $equals(::Tag const& rhs) const; - MCAPI uint64 $hash() const; + MCFOLD uint64 $hash() const; // NOLINTEND public: diff --git a/src/mc/nbt/FloatTag.h b/src/mc/nbt/FloatTag.h index f97459f90d..978c58d707 100644 --- a/src/mc/nbt/FloatTag.h +++ b/src/mc/nbt/FloatTag.h @@ -66,7 +66,7 @@ class FloatTag : public ::Tag { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND public: @@ -76,7 +76,7 @@ class FloatTag : public ::Tag { MCAPI ::Bedrock::Result $load(::IDataInput& dis); - MCAPI ::Tag::Type $getId() const; + MCFOLD ::Tag::Type $getId() const; MCAPI ::std::string $toString() const; diff --git a/src/mc/nbt/Int64Tag.h b/src/mc/nbt/Int64Tag.h index e3b0f476f5..c612d6db2a 100644 --- a/src/mc/nbt/Int64Tag.h +++ b/src/mc/nbt/Int64Tag.h @@ -72,7 +72,7 @@ class Int64Tag : public ::Tag { MCAPI ::Bedrock::Result $load(::IDataInput& dis); - MCAPI ::Tag::Type $getId() const; + MCFOLD ::Tag::Type $getId() const; MCAPI ::std::string $toString() const; diff --git a/src/mc/nbt/IntArrayTag.h b/src/mc/nbt/IntArrayTag.h index ed83b61c13..387754b58b 100644 --- a/src/mc/nbt/IntArrayTag.h +++ b/src/mc/nbt/IntArrayTag.h @@ -60,7 +60,7 @@ class IntArrayTag : public ::Tag { public: // virtual function thunks // NOLINTBEGIN - MCAPI ::Tag::Type $getId() const; + MCFOLD ::Tag::Type $getId() const; MCAPI ::std::string $toString() const; diff --git a/src/mc/nbt/IntTag.h b/src/mc/nbt/IntTag.h index 31efc67da6..0caebd9d3d 100644 --- a/src/mc/nbt/IntTag.h +++ b/src/mc/nbt/IntTag.h @@ -66,7 +66,7 @@ class IntTag : public ::Tag { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND public: @@ -76,7 +76,7 @@ class IntTag : public ::Tag { MCAPI ::Bedrock::Result $load(::IDataInput& dis); - MCAPI ::Tag::Type $getId() const; + MCFOLD ::Tag::Type $getId() const; MCAPI ::std::string $toString() const; diff --git a/src/mc/nbt/ListTag.h b/src/mc/nbt/ListTag.h index 8ea62e9df9..d76114068f 100644 --- a/src/mc/nbt/ListTag.h +++ b/src/mc/nbt/ListTag.h @@ -75,7 +75,7 @@ class ListTag : public ::Tag { MCAPI ::CompoundTag const* getCompound(uint64) const; - MCAPI ::CompoundTag* getCompound(uint64 index); + MCFOLD ::CompoundTag* getCompound(uint64 index); MCAPI double getDouble(int index) const; @@ -87,7 +87,7 @@ class ListTag : public ::Tag { MCAPI ::std::string const& getString(int index) const; - MCAPI int size() const; + MCFOLD int size() const; // NOLINTEND public: @@ -109,7 +109,7 @@ class ListTag : public ::Tag { MCAPI ::Bedrock::Result $load(::IDataInput& dis); - MCAPI ::Tag::Type $getId() const; + MCFOLD ::Tag::Type $getId() const; MCAPI ::std::string $toString() const; @@ -121,7 +121,7 @@ class ListTag : public ::Tag { MCAPI bool $equals(::Tag const& rhs) const; - MCAPI void $deleteChildren(); + MCFOLD void $deleteChildren(); // NOLINTEND public: diff --git a/src/mc/nbt/ListTagFloatAdder.h b/src/mc/nbt/ListTagFloatAdder.h index 48c3591a2e..8e623d69c5 100644 --- a/src/mc/nbt/ListTagFloatAdder.h +++ b/src/mc/nbt/ListTagFloatAdder.h @@ -25,6 +25,6 @@ class ListTagFloatAdder { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/nbt/ListTagIntAdder.h b/src/mc/nbt/ListTagIntAdder.h index f13915b0ac..8f73a8ece9 100644 --- a/src/mc/nbt/ListTagIntAdder.h +++ b/src/mc/nbt/ListTagIntAdder.h @@ -25,6 +25,6 @@ class ListTagIntAdder { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/nbt/ShortTag.h b/src/mc/nbt/ShortTag.h index fc070f1829..ffd6db93d8 100644 --- a/src/mc/nbt/ShortTag.h +++ b/src/mc/nbt/ShortTag.h @@ -60,7 +60,7 @@ class ShortTag : public ::Tag { MCAPI ::Bedrock::Result $load(::IDataInput& dis); - MCAPI ::Tag::Type $getId() const; + MCFOLD ::Tag::Type $getId() const; MCAPI ::std::string $toString() const; diff --git a/src/mc/nbt/StringTag.h b/src/mc/nbt/StringTag.h index e9e397a1b6..7cc3c68d9f 100644 --- a/src/mc/nbt/StringTag.h +++ b/src/mc/nbt/StringTag.h @@ -76,7 +76,7 @@ class StringTag : public ::Tag { MCAPI ::Bedrock::Result $load(::IDataInput& dis); - MCAPI ::Tag::Type $getId() const; + MCFOLD ::Tag::Type $getId() const; MCAPI ::std::string $toString() const; @@ -84,7 +84,7 @@ class StringTag : public ::Tag { MCAPI bool $equals(::Tag const& rhs) const; - MCAPI uint64 $hash() const; + MCFOLD uint64 $hash() const; // NOLINTEND public: diff --git a/src/mc/nbt/Tag.h b/src/mc/nbt/Tag.h index d242d4e315..50f6f98f30 100644 --- a/src/mc/nbt/Tag.h +++ b/src/mc/nbt/Tag.h @@ -85,15 +85,15 @@ class Tag { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND public: // virtual function thunks // NOLINTBEGIN - MCAPI void $deleteChildren(); + MCFOLD void $deleteChildren(); - MCAPI bool $equals(::Tag const& rhs) const; + MCFOLD bool $equals(::Tag const& rhs) const; MCAPI void $print(::PrintStream& out) const; diff --git a/src/mc/nbt/cereal/NBTSchemaReader.h b/src/mc/nbt/cereal/NBTSchemaReader.h index 96f088ba8a..4ca06aeef5 100644 --- a/src/mc/nbt/cereal/NBTSchemaReader.h +++ b/src/mc/nbt/cereal/NBTSchemaReader.h @@ -134,13 +134,13 @@ class NBTSchemaReader : public ::cereal::SchemaReader { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND public: // virtual function thunks // NOLINTBEGIN - MCAPI bool $isValid() const; + MCFOLD bool $isValid() const; MCAPI ::cereal::SchemaReaderState $isObject() const; @@ -180,7 +180,7 @@ class NBTSchemaReader : public ::cereal::SchemaReader { MCAPI void $pushElement(uint64 index, ::cereal::PropertyReader const&); - MCAPI void $pop(); + MCFOLD void $pop(); // NOLINTEND public: diff --git a/src/mc/nbt/cereal/NBTSchemaWriter.h b/src/mc/nbt/cereal/NBTSchemaWriter.h index 9d7f681d70..959b5335d3 100644 --- a/src/mc/nbt/cereal/NBTSchemaWriter.h +++ b/src/mc/nbt/cereal/NBTSchemaWriter.h @@ -42,7 +42,7 @@ class NBTSchemaWriter : public ::cereal::SchemaWriter { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; @@ -138,23 +138,23 @@ class NBTSchemaWriter : public ::cereal::SchemaWriter { public: // virtual function thunks // NOLINTBEGIN - MCAPI bool $write(bool value, ::cereal::PropertyReader const&); + MCFOLD bool $write(bool value, ::cereal::PropertyReader const&); - MCAPI bool $write(char value, ::cereal::PropertyReader const&); + MCFOLD bool $write(char value, ::cereal::PropertyReader const&); - MCAPI bool $write(uchar value, ::cereal::PropertyReader const&); + MCFOLD bool $write(uchar value, ::cereal::PropertyReader const&); - MCAPI bool $write(short value, ::cereal::PropertyReader const&); + MCFOLD bool $write(short value, ::cereal::PropertyReader const&); - MCAPI bool $write(ushort value, ::cereal::PropertyReader const&); + MCFOLD bool $write(ushort value, ::cereal::PropertyReader const&); - MCAPI bool $write(int value, ::cereal::PropertyReader const&); + MCFOLD bool $write(int value, ::cereal::PropertyReader const&); - MCAPI bool $write(uint value, ::cereal::PropertyReader const&); + MCFOLD bool $write(uint value, ::cereal::PropertyReader const&); - MCAPI bool $write(int64, ::cereal::PropertyReader const&); + MCFOLD bool $write(int64, ::cereal::PropertyReader const&); - MCAPI bool $write(uint64, ::cereal::PropertyReader const&); + MCFOLD bool $write(uint64, ::cereal::PropertyReader const&); MCAPI bool $write(float value, ::cereal::PropertyReader const&); diff --git a/src/mc/network/BatchedNetworkPeer.h b/src/mc/network/BatchedNetworkPeer.h index 041e74bbb7..3b434cae07 100644 --- a/src/mc/network/BatchedNetworkPeer.h +++ b/src/mc/network/BatchedNetworkPeer.h @@ -134,7 +134,7 @@ class BatchedNetworkPeer : public ::NetworkPeer { ::std::shared_ptr<::std::chrono::steady_clock::time_point> const& timepointPtr ); - MCAPI ::NetworkPeer::NetworkStatus $getNetworkStatus() const; + MCFOLD ::NetworkPeer::NetworkStatus $getNetworkStatus() const; MCAPI void $update(); // NOLINTEND diff --git a/src/mc/network/ClassroomModeNetworkHandler.h b/src/mc/network/ClassroomModeNetworkHandler.h index 78f298ed00..2510be8c63 100644 --- a/src/mc/network/ClassroomModeNetworkHandler.h +++ b/src/mc/network/ClassroomModeNetworkHandler.h @@ -84,10 +84,10 @@ class ClassroomModeNetworkHandler : public ::NetEventCallback, public ::Bedrock: public: // virtual function thunks // NOLINTBEGIN - MCAPI ::IncomingPacketFilterResult + MCFOLD ::IncomingPacketFilterResult $allowIncomingPacketId(::NetworkIdentifierWithSubId const& id, ::MinecraftPacketIds packetId, uint64 packetSize); - MCAPI ::OutgoingPacketFilterResult + MCFOLD ::OutgoingPacketFilterResult $allowOutgoingPacket(::std::vector<::NetworkIdentifierWithSubId> const& ids, ::Packet const& packet); MCAPI void $onWebsocketRequest( diff --git a/src/mc/network/CompressedNetworkPeer.h b/src/mc/network/CompressedNetworkPeer.h index d4e11cffda..428bf926b9 100644 --- a/src/mc/network/CompressedNetworkPeer.h +++ b/src/mc/network/CompressedNetworkPeer.h @@ -76,7 +76,7 @@ class CompressedNetworkPeer : public ::NetworkPeer { ::std::shared_ptr<::std::chrono::steady_clock::time_point> const& timepointPtr ); - MCAPI ::NetworkPeer::NetworkStatus $getNetworkStatus() const; + MCFOLD ::NetworkPeer::NetworkStatus $getNetworkStatus() const; // NOLINTEND public: diff --git a/src/mc/network/ConnectionRequest.h b/src/mc/network/ConnectionRequest.h index f77f853dd7..0bac92b54b 100644 --- a/src/mc/network/ConnectionRequest.h +++ b/src/mc/network/ConnectionRequest.h @@ -39,91 +39,91 @@ class ConnectionRequest { MCAPI ConnectionRequest(::std::unique_ptr<::WebToken> rawToken, ::std::string const& certificateString); - MCAPI ::std::vector<::AnimatedImageData> getAnimatedImageData() const; + MCFOLD ::std::vector<::AnimatedImageData> getAnimatedImageData() const; - MCAPI ::std::string getArmSize() const; + MCFOLD ::std::string getArmSize() const; - MCAPI ::std::vector getCapeData() const; + MCFOLD ::std::vector getCapeData() const; - MCAPI ::std::string getCapeId() const; + MCFOLD ::std::string getCapeId() const; - MCAPI ushort getCapeImageHeight() const; + MCFOLD ushort getCapeImageHeight() const; - MCAPI ushort getCapeImageWidth() const; + MCFOLD ushort getCapeImageWidth() const; - MCAPI ::Certificate const* getCertificate() const; + MCFOLD ::Certificate const* getCertificate() const; - MCAPI ::std::string getClientPlatformId() const; + MCFOLD ::std::string getClientPlatformId() const; - MCAPI ::std::string getClientPlatformOfflineId() const; + MCFOLD ::std::string getClientPlatformOfflineId() const; - MCAPI ::std::string getClientPlatformOnlineId() const; + MCFOLD ::std::string getClientPlatformOnlineId() const; - MCAPI uint64 getClientRandomId() const; + MCFOLD uint64 getClientRandomId() const; - MCAPI ::SubClientId getClientSubId() const; + MCFOLD ::SubClientId getClientSubId() const; - MCAPI ::std::string getClientThirdPartyName() const; + MCFOLD ::std::string getClientThirdPartyName() const; - MCAPI ::InputMode getCurrentInputMode() const; + MCFOLD ::InputMode getCurrentInputMode() const; - MCAPI ::std::string getDeviceId() const; + MCFOLD ::std::string getDeviceId() const; - MCAPI ::BuildPlatform getDeviceOS() const; + MCFOLD ::BuildPlatform getDeviceOS() const; MCAPI ::std::string getEduTokenChain() const; - MCAPI int getMaxViewDistance() const; + MCFOLD int getMaxViewDistance() const; - MCAPI ::DeviceMemoryTier getMemoryTier() const; + MCFOLD ::DeviceMemoryTier getMemoryTier() const; - MCAPI ::std::vector<::SerializedPersonaPieceHandle> getPersonaPieces() const; + MCFOLD ::std::vector<::SerializedPersonaPieceHandle> getPersonaPieces() const; - MCAPI ::std::unordered_map<::persona::PieceType, ::TintMapColor> getPieceTintColors() const; + MCFOLD ::std::unordered_map<::persona::PieceType, ::TintMapColor> getPieceTintColors() const; - MCAPI ::PlatformType getPlatformType() const; + MCFOLD ::PlatformType getPlatformType() const; - MCAPI ::std::string getPlayFabIdUnverified() const; + MCFOLD ::std::string getPlayFabIdUnverified() const; - MCAPI ::std::string getSelfSignedId() const; + MCFOLD ::std::string getSelfSignedId() const; - MCAPI ::std::string getSkinAnimationData() const; + MCFOLD ::std::string getSkinAnimationData() const; - MCAPI ::mce::Color getSkinColor() const; + MCFOLD ::mce::Color getSkinColor() const; - MCAPI ::std::vector getSkinData() const; + MCFOLD ::std::vector getSkinData() const; MCAPI ::std::string getSkinGeometry() const; - MCAPI ::MinEngineVersion getSkinGeometryMinEngineVersion() const; + MCFOLD ::MinEngineVersion getSkinGeometryMinEngineVersion() const; - MCAPI ::std::string getSkinId() const; + MCFOLD ::std::string getSkinId() const; - MCAPI ushort getSkinImageHeight() const; + MCFOLD ushort getSkinImageHeight() const; - MCAPI ushort getSkinImageWidth() const; + MCFOLD ushort getSkinImageWidth() const; MCAPI ::std::string getSkinResourcePatch() const; - MCAPI bool isCapeOnClassicSkin() const; + MCFOLD bool isCapeOnClassicSkin() const; - MCAPI bool isClientThirdPartyNameOnly() const; + MCFOLD bool isClientThirdPartyNameOnly() const; - MCAPI bool isCompatibleWithClientSideChunkGen() const; + MCFOLD bool isCompatibleWithClientSideChunkGen() const; MCAPI bool isEduMode() const; - MCAPI bool isOverrideSkin() const; + MCFOLD bool isOverrideSkin() const; - MCAPI bool isPersonaSkin() const; + MCFOLD bool isPersonaSkin() const; - MCAPI bool isPremiumSkin() const; + MCFOLD bool isPremiumSkin() const; - MCAPI bool isTrustedSkin() const; + MCFOLD bool isTrustedSkin() const; MCAPI bool isValid() const; - MCAPI ::std::string toString(); + MCFOLD ::std::string toString(); MCAPI bool verify(::std::vector<::std::string> const& trustedKeys, int64 currentTime, bool checkExpired); @@ -149,6 +149,6 @@ class ConnectionRequest { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/network/Connector.h b/src/mc/network/Connector.h index 7b939c9371..664b96723a 100644 --- a/src/mc/network/Connector.h +++ b/src/mc/network/Connector.h @@ -127,25 +127,25 @@ class Connector { public: // virtual function thunks // NOLINTBEGIN - MCAPI ::std::vector<::std::string> $getLocalIps() const; + MCFOLD ::std::vector<::std::string> $getLocalIps() const; - MCAPI ::std::string $getLocalIp(); + MCFOLD ::std::string $getLocalIp(); - MCAPI ushort $getPort() const; + MCFOLD ushort $getPort() const; - MCAPI ::std::vector<::RakNet::SystemAddress> $getRefinedLocalIps() const; + MCFOLD ::std::vector<::RakNet::SystemAddress> $getRefinedLocalIps() const; - MCAPI ::Social::GameConnectionInfo const& $getConnectedGameInfo() const; + MCFOLD ::Social::GameConnectionInfo const& $getConnectedGameInfo() const; - MCAPI bool $isIPv4Supported() const; + MCFOLD bool $isIPv4Supported() const; - MCAPI bool $isIPv6Supported() const; + MCFOLD bool $isIPv6Supported() const; - MCAPI ushort $getIPv4Port() const; + MCFOLD ushort $getIPv4Port() const; - MCAPI ushort $getIPv6Port() const; + MCFOLD ushort $getIPv6Port() const; - MCAPI ::TransportLayer $getNetworkType() const; + MCFOLD ::TransportLayer $getNetworkType() const; // NOLINTEND public: diff --git a/src/mc/network/EncryptedNetworkPeer.h b/src/mc/network/EncryptedNetworkPeer.h index acd3323438..eaf048c20b 100644 --- a/src/mc/network/EncryptedNetworkPeer.h +++ b/src/mc/network/EncryptedNetworkPeer.h @@ -86,7 +86,7 @@ class EncryptedNetworkPeer : public ::NetworkPeer { ::std::shared_ptr<::std::chrono::steady_clock::time_point> const& timepointPtr ); - MCAPI ::NetworkPeer::NetworkStatus $getNetworkStatus() const; + MCFOLD ::NetworkPeer::NetworkStatus $getNetworkStatus() const; MCAPI bool $isEncrypted() const; // NOLINTEND diff --git a/src/mc/network/GameConnectionInfo.h b/src/mc/network/GameConnectionInfo.h index 996ca2257a..04b39e219c 100644 --- a/src/mc/network/GameConnectionInfo.h +++ b/src/mc/network/GameConnectionInfo.h @@ -44,13 +44,13 @@ class GameConnectionInfo { ::GatheringServerInfo const& gatheringServerInfo ); - MCAPI ::std::string const& getHostIpAddress() const; + MCFOLD ::std::string const& getHostIpAddress() const; - MCAPI int getPort() const; + MCFOLD int getPort() const; - MCAPI ::ThirdPartyInfo const& getThirdPartyServerInfo() const; + MCFOLD ::ThirdPartyInfo const& getThirdPartyServerInfo() const; - MCAPI ::Social::ConnectionType getType() const; + MCFOLD ::Social::ConnectionType getType() const; MCAPI ::Social::GameConnectionInfo& operator=(::Social::GameConnectionInfo const&); diff --git a/src/mc/network/GameSpecificNetEventCallback.h b/src/mc/network/GameSpecificNetEventCallback.h index 468ccacbbe..593170cd3b 100644 --- a/src/mc/network/GameSpecificNetEventCallback.h +++ b/src/mc/network/GameSpecificNetEventCallback.h @@ -28,7 +28,7 @@ class GameSpecificNetEventCallback { public: // virtual function thunks // NOLINTBEGIN - MCAPI void $handle(::NetworkIdentifier const&, ::ResourcePackClientResponsePacket const&); + MCFOLD void $handle(::NetworkIdentifier const&, ::ResourcePackClientResponsePacket const&); // NOLINTEND public: diff --git a/src/mc/network/GameTestNetworkAdapter.h b/src/mc/network/GameTestNetworkAdapter.h index 5f89c32460..f273fc05f9 100644 --- a/src/mc/network/GameTestNetworkAdapter.h +++ b/src/mc/network/GameTestNetworkAdapter.h @@ -97,6 +97,6 @@ class GameTestNetworkAdapter { public: // constructor thunks // NOLINTBEGIN - MCAPI void* $ctor(::MinecraftGameTest& gameTest); + MCFOLD void* $ctor(::MinecraftGameTest& gameTest); // NOLINTEND }; diff --git a/src/mc/network/GatheringServerInfo.h b/src/mc/network/GatheringServerInfo.h index b874c1ff9c..5026fb0a0f 100644 --- a/src/mc/network/GatheringServerInfo.h +++ b/src/mc/network/GatheringServerInfo.h @@ -29,6 +29,6 @@ class GatheringServerInfo { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/network/IPacketObserver.h b/src/mc/network/IPacketObserver.h index 88cc8733ca..641e579ad9 100644 --- a/src/mc/network/IPacketObserver.h +++ b/src/mc/network/IPacketObserver.h @@ -34,7 +34,7 @@ class IPacketObserver : public ::Bedrock::EnableNonOwnerReferences { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND public: diff --git a/src/mc/network/LocalConnector.h b/src/mc/network/LocalConnector.h index fefb3e29b9..3a6b523af2 100644 --- a/src/mc/network/LocalConnector.h +++ b/src/mc/network/LocalConnector.h @@ -91,23 +91,23 @@ class LocalConnector : public ::Connector { public: // virtual function thunks // NOLINTBEGIN - MCAPI ::std::vector<::std::string> $getLocalIps() const; + MCFOLD ::std::vector<::std::string> $getLocalIps() const; - MCAPI ::std::string $getLocalIp(); + MCFOLD ::std::string $getLocalIp(); - MCAPI ushort $getPort() const; + MCFOLD ushort $getPort() const; - MCAPI ::std::vector<::RakNet::SystemAddress> $getRefinedLocalIps() const; + MCFOLD ::std::vector<::RakNet::SystemAddress> $getRefinedLocalIps() const; - MCAPI ::Social::GameConnectionInfo const& $getConnectedGameInfo() const; + MCFOLD ::Social::GameConnectionInfo const& $getConnectedGameInfo() const; - MCAPI bool $isIPv4Supported() const; + MCFOLD bool $isIPv4Supported() const; - MCAPI bool $isIPv6Supported() const; + MCFOLD bool $isIPv6Supported() const; - MCAPI ushort $getIPv4Port() const; + MCFOLD ushort $getIPv4Port() const; - MCAPI ushort $getIPv6Port() const; + MCFOLD ushort $getIPv6Port() const; // NOLINTEND public: diff --git a/src/mc/network/LoopbackPacketSender.h b/src/mc/network/LoopbackPacketSender.h index fd8ebedcea..8e98602bab 100644 --- a/src/mc/network/LoopbackPacketSender.h +++ b/src/mc/network/LoopbackPacketSender.h @@ -75,7 +75,7 @@ class LoopbackPacketSender : public ::PacketSender { MCAPI void removeLoopbackCallback(::NetEventCallback& callback); - MCAPI void setUserList(::std::vector<::OwnerPtr<::EntityContext>> const* userList); + MCFOLD void setUserList(::std::vector<::OwnerPtr<::EntityContext>> const* userList); // NOLINTEND public: diff --git a/src/mc/network/NetEventCallback.h b/src/mc/network/NetEventCallback.h index 1089f88ba0..c41b7bf64f 100644 --- a/src/mc/network/NetEventCallback.h +++ b/src/mc/network/NetEventCallback.h @@ -943,17 +943,17 @@ class NetEventCallback : public ::Bedrock::EnableNonOwnerReferences { public: // virtual function thunks // NOLINTBEGIN - MCAPI void $onPlayerReady(::Player&); + MCFOLD void $onPlayerReady(::Player&); - MCAPI void $onConnect(::NetworkIdentifier const&); + MCFOLD void $onConnect(::NetworkIdentifier const&); - MCAPI void $onUnableToConnect(::Connection::DisconnectFailReason, ::std::string const&); + MCFOLD void $onUnableToConnect(::Connection::DisconnectFailReason, ::std::string const&); - MCAPI void $onTick(); + MCFOLD void $onTick(); - MCAPI void $onStoreOfferReceive(::ShowStoreOfferRedirectType const, ::std::string const& offerID); + MCFOLD void $onStoreOfferReceive(::ShowStoreOfferRedirectType const, ::std::string const& offerID); - MCAPI void $onDisconnect( + MCFOLD void $onDisconnect( ::NetworkIdentifier const&, ::Connection::DisconnectFailReason const, ::std::string const& message, @@ -961,437 +961,437 @@ class NetEventCallback : public ::Bedrock::EnableNonOwnerReferences { ::std::string const& telemetryOverride ); - MCAPI void $onWebsocketRequest(::std::string const&, ::std::string const&, ::std::function); + MCFOLD void $onWebsocketRequest(::std::string const&, ::std::string const&, ::std::function); - MCAPI void $onTransferRequest(::NetworkIdentifier const&, ::std::string const&, int); + MCFOLD void $onTransferRequest(::NetworkIdentifier const&, ::std::string const&, int); - MCAPI bool $getIsConnectedToApplicationLayer() const; + MCFOLD bool $getIsConnectedToApplicationLayer() const; - MCAPI ::GameSpecificNetEventCallback* $getGameSpecificNetEventCallback(); + MCFOLD ::GameSpecificNetEventCallback* $getGameSpecificNetEventCallback(); - MCAPI void $handle(::NetworkIdentifier const&, ::PacketViolationWarningPacket const&); + MCFOLD void $handle(::NetworkIdentifier const&, ::PacketViolationWarningPacket const&); - MCAPI void $handle(::NetworkIdentifier const&, ::DisconnectPacket const&); + MCFOLD void $handle(::NetworkIdentifier const&, ::DisconnectPacket const&); - MCAPI void $handle(::NetworkIdentifier const&, ::EmoteListPacket const&); + MCFOLD void $handle(::NetworkIdentifier const&, ::EmoteListPacket const&); - MCAPI void $handle(::NetworkIdentifier const&, ::EmotePacket const&); + MCFOLD void $handle(::NetworkIdentifier const&, ::EmotePacket const&); - MCAPI void $handle(::NetworkIdentifier const&, ::LoginPacket const&); + MCFOLD void $handle(::NetworkIdentifier const&, ::LoginPacket const&); - MCAPI void $handle(::NetworkIdentifier const&, ::SubClientLoginPacket const&); + MCFOLD void $handle(::NetworkIdentifier const&, ::SubClientLoginPacket const&); - MCAPI void $handle(::NetworkIdentifier const&, ::ClientToServerHandshakePacket const&); + MCFOLD void $handle(::NetworkIdentifier const&, ::ClientToServerHandshakePacket const&); - MCAPI void $handle(::NetworkIdentifier const&, ::ServerToClientHandshakePacket const&); + MCFOLD void $handle(::NetworkIdentifier const&, ::ServerToClientHandshakePacket const&); - MCAPI void $handle(::NetworkIdentifier const&, ::ResourcePacksInfoPacket const&); + MCFOLD void $handle(::NetworkIdentifier const&, ::ResourcePacksInfoPacket const&); - MCAPI void $handle(::NetworkIdentifier const&, ::ResourcePackStackPacket const&); + MCFOLD void $handle(::NetworkIdentifier const&, ::ResourcePackStackPacket const&); - MCAPI void $handle(::NetworkIdentifier const&, ::ResourcePackClientResponsePacket const&); + MCFOLD void $handle(::NetworkIdentifier const&, ::ResourcePackClientResponsePacket const&); - MCAPI void $handle(::NetworkIdentifier const&, ::PositionTrackingDBClientRequestPacket const&); + MCFOLD void $handle(::NetworkIdentifier const&, ::PositionTrackingDBClientRequestPacket const&); - MCAPI void $handle(::NetworkIdentifier const&, ::PositionTrackingDBServerBroadcastPacket const&); + MCFOLD void $handle(::NetworkIdentifier const&, ::PositionTrackingDBServerBroadcastPacket const&); - MCAPI void $handle(::NetworkIdentifier const&, ::PlayStatusPacket const&); + MCFOLD void $handle(::NetworkIdentifier const&, ::PlayStatusPacket const&); - MCAPI void $handle(::NetworkIdentifier const&, ::SetTimePacket const&); + MCFOLD void $handle(::NetworkIdentifier const&, ::SetTimePacket const&); - MCAPI void $handle(::NetworkIdentifier const&, ::TextPacket const&); + MCFOLD void $handle(::NetworkIdentifier const&, ::TextPacket const&); - MCAPI void $handle(::NetworkIdentifier const&, ::StartGamePacket const&); + MCFOLD void $handle(::NetworkIdentifier const&, ::StartGamePacket const&); - MCAPI void $handle(::NetworkIdentifier const&, ::AddItemActorPacket const&); + MCFOLD void $handle(::NetworkIdentifier const&, ::AddItemActorPacket const&); - MCAPI void $handle(::NetworkIdentifier const&, ::AddPaintingPacket const&); + MCFOLD void $handle(::NetworkIdentifier const&, ::AddPaintingPacket const&); - MCAPI void $handle(::NetworkIdentifier const&, ::TakeItemActorPacket const&); + MCFOLD void $handle(::NetworkIdentifier const&, ::TakeItemActorPacket const&); - MCAPI void $handle(::NetworkIdentifier const&, ::AddActorPacket const&); + MCFOLD void $handle(::NetworkIdentifier const&, ::AddActorPacket const&); - MCAPI void $handle(::NetworkIdentifier const&, ::AddMobPacket const&); + MCFOLD void $handle(::NetworkIdentifier const&, ::AddMobPacket const&); - MCAPI void $handle(::NetworkIdentifier const&, ::AddPlayerPacket const&); + MCFOLD void $handle(::NetworkIdentifier const&, ::AddPlayerPacket const&); - MCAPI void $handle(::NetworkIdentifier const&, ::RemoveActorPacket const&); + MCFOLD void $handle(::NetworkIdentifier const&, ::RemoveActorPacket const&); - MCAPI void $handle(::NetworkIdentifier const&, ::MoveActorAbsolutePacket const&); + MCFOLD void $handle(::NetworkIdentifier const&, ::MoveActorAbsolutePacket const&); - MCAPI void $handle(::NetworkIdentifier const&, ::MoveActorDeltaPacket const&); + MCFOLD void $handle(::NetworkIdentifier const&, ::MoveActorDeltaPacket const&); - MCAPI void $handle(::NetworkIdentifier const&, ::MovePlayerPacket const&); + MCFOLD void $handle(::NetworkIdentifier const&, ::MovePlayerPacket const&); - MCAPI void $handle(::NetworkIdentifier const&, ::PassengerJumpPacket const&); + MCFOLD void $handle(::NetworkIdentifier const&, ::PassengerJumpPacket const&); - MCAPI void $handle(::NetworkIdentifier const&, ::SetPlayerGameTypePacket const&); + MCFOLD void $handle(::NetworkIdentifier const&, ::SetPlayerGameTypePacket const&); - MCAPI void $handle(::NetworkIdentifier const&, ::UpdatePlayerGameTypePacket const&); + MCFOLD void $handle(::NetworkIdentifier const&, ::UpdatePlayerGameTypePacket const&); - MCAPI void $handle(::NetworkIdentifier const&, ::SetDefaultGameTypePacket const&); + MCFOLD void $handle(::NetworkIdentifier const&, ::SetDefaultGameTypePacket const&); - MCAPI void $handle(::NetworkIdentifier const&, ::std::shared_ptr<::UpdateBlockPacket>); + MCFOLD void $handle(::NetworkIdentifier const&, ::std::shared_ptr<::UpdateBlockPacket>); - MCAPI void $handle(::NetworkIdentifier const&, ::std::shared_ptr<::UpdateBlockSyncedPacket>); + MCFOLD void $handle(::NetworkIdentifier const&, ::std::shared_ptr<::UpdateBlockSyncedPacket>); - MCAPI void $handle(::NetworkIdentifier const&, ::SpawnParticleEffectPacket const&); + MCFOLD void $handle(::NetworkIdentifier const&, ::SpawnParticleEffectPacket const&); - MCAPI void $handle(::NetworkIdentifier const&, ::LevelSoundEventPacket const&); + MCFOLD void $handle(::NetworkIdentifier const&, ::LevelSoundEventPacket const&); - MCAPI void $handle(::NetworkIdentifier const&, ::LevelSoundEventPacketV1 const&); + MCFOLD void $handle(::NetworkIdentifier const&, ::LevelSoundEventPacketV1 const&); - MCAPI void $handle(::NetworkIdentifier const&, ::LevelSoundEventPacketV2 const&); + MCFOLD void $handle(::NetworkIdentifier const&, ::LevelSoundEventPacketV2 const&); - MCAPI void $handle(::NetworkIdentifier const&, ::LevelEventPacket const&); + MCFOLD void $handle(::NetworkIdentifier const&, ::LevelEventPacket const&); - MCAPI void $handle(::NetworkIdentifier const&, ::LevelEventGenericPacket const&); + MCFOLD void $handle(::NetworkIdentifier const&, ::LevelEventGenericPacket const&); - MCAPI void $handle(::NetworkIdentifier const&, ::BlockEventPacket const&); + MCFOLD void $handle(::NetworkIdentifier const&, ::BlockEventPacket const&); - MCAPI void $handle(::NetworkIdentifier const&, ::BlockPickRequestPacket const&); + MCFOLD void $handle(::NetworkIdentifier const&, ::BlockPickRequestPacket const&); - MCAPI void $handle(::NetworkIdentifier const&, ::ActorPickRequestPacket const&); + MCFOLD void $handle(::NetworkIdentifier const&, ::ActorPickRequestPacket const&); - MCAPI void $handle(::NetworkIdentifier const&, ::GuiDataPickItemPacket const&); + MCFOLD void $handle(::NetworkIdentifier const&, ::GuiDataPickItemPacket const&); - MCAPI void $handle(::NetworkIdentifier const&, ::ActorEventPacket const&); + MCFOLD void $handle(::NetworkIdentifier const&, ::ActorEventPacket const&); - MCAPI void $handle(::NetworkIdentifier const&, ::MobEffectPacket const&); + MCFOLD void $handle(::NetworkIdentifier const&, ::MobEffectPacket const&); - MCAPI void $handle(::NetworkIdentifier const&, ::MovementEffectPacket const&); + MCFOLD void $handle(::NetworkIdentifier const&, ::MovementEffectPacket const&); - MCAPI void $handle(::NetworkIdentifier const&, ::MobEquipmentPacket const&); + MCFOLD void $handle(::NetworkIdentifier const&, ::MobEquipmentPacket const&); - MCAPI void $handle(::NetworkIdentifier const&, ::MobArmorEquipmentPacket const&); + MCFOLD void $handle(::NetworkIdentifier const&, ::MobArmorEquipmentPacket const&); - MCAPI void $handle(::NetworkIdentifier const&, ::SetActorDataPacket const&); + MCFOLD void $handle(::NetworkIdentifier const&, ::SetActorDataPacket const&); - MCAPI void $handle(::NetworkIdentifier const&, ::SetActorMotionPacket const&); + MCFOLD void $handle(::NetworkIdentifier const&, ::SetActorMotionPacket const&); - MCAPI void $handle(::NetworkIdentifier const&, ::MotionPredictionHintsPacket const&); + MCFOLD void $handle(::NetworkIdentifier const&, ::MotionPredictionHintsPacket const&); - MCAPI void $handle(::NetworkIdentifier const&, ::SetHealthPacket const&); + MCFOLD void $handle(::NetworkIdentifier const&, ::SetHealthPacket const&); - MCAPI void $handle(::NetworkIdentifier const&, ::SetActorLinkPacket const&); + MCFOLD void $handle(::NetworkIdentifier const&, ::SetActorLinkPacket const&); - MCAPI void $handle(::NetworkIdentifier const&, ::SetSpawnPositionPacket const&); + MCFOLD void $handle(::NetworkIdentifier const&, ::SetSpawnPositionPacket const&); - MCAPI void $handle(::NetworkIdentifier const&, ::InteractPacket const&); + MCFOLD void $handle(::NetworkIdentifier const&, ::InteractPacket const&); - MCAPI void $handle(::NetworkIdentifier const&, ::PlayerActionPacket const&); + MCFOLD void $handle(::NetworkIdentifier const&, ::PlayerActionPacket const&); - MCAPI void $handle(::NetworkIdentifier const&, ::ActorFallPacket const&); + MCFOLD void $handle(::NetworkIdentifier const&, ::ActorFallPacket const&); - MCAPI void $handle(::NetworkIdentifier const&, ::HurtArmorPacket const&); + MCFOLD void $handle(::NetworkIdentifier const&, ::HurtArmorPacket const&); - MCAPI void $handle(::NetworkIdentifier const&, ::PlayerArmorDamagePacket const&); + MCFOLD void $handle(::NetworkIdentifier const&, ::PlayerArmorDamagePacket const&); - MCAPI void $handle(::NetworkIdentifier const&, ::ItemStackRequestPacket const&); + MCFOLD void $handle(::NetworkIdentifier const&, ::ItemStackRequestPacket const&); - MCAPI void $handle(::NetworkIdentifier const&, ::ItemStackResponsePacket const&); + MCFOLD void $handle(::NetworkIdentifier const&, ::ItemStackResponsePacket const&); - MCAPI void $handle(::NetworkIdentifier const&, ::ContainerOpenPacket const&); + MCFOLD void $handle(::NetworkIdentifier const&, ::ContainerOpenPacket const&); - MCAPI void $handle(::NetworkIdentifier const&, ::ContainerClosePacket const&); + MCFOLD void $handle(::NetworkIdentifier const&, ::ContainerClosePacket const&); - MCAPI void $handle(::NetworkIdentifier const&, ::ContainerRegistryCleanupPacket const&); + MCFOLD void $handle(::NetworkIdentifier const&, ::ContainerRegistryCleanupPacket const&); - MCAPI void $handle(::NetworkIdentifier const&, ::ContainerSetDataPacket const&); + MCFOLD void $handle(::NetworkIdentifier const&, ::ContainerSetDataPacket const&); - MCAPI void $handle(::NetworkIdentifier const&, ::PlayerHotbarPacket const&); + MCFOLD void $handle(::NetworkIdentifier const&, ::PlayerHotbarPacket const&); - MCAPI void $handle(::NetworkIdentifier const&, ::InventoryContentPacket const&); + MCFOLD void $handle(::NetworkIdentifier const&, ::InventoryContentPacket const&); - MCAPI void $handle(::NetworkIdentifier const&, ::InventorySlotPacket const&); + MCFOLD void $handle(::NetworkIdentifier const&, ::InventorySlotPacket const&); - MCAPI void $handle(::NetworkIdentifier const&, ::CraftingDataPacket const&); + MCFOLD void $handle(::NetworkIdentifier const&, ::CraftingDataPacket const&); - MCAPI void $handle(::NetworkIdentifier const&, ::AnimatePacket const&); + MCFOLD void $handle(::NetworkIdentifier const&, ::AnimatePacket const&); - MCAPI void $handle(::NetworkIdentifier const&, ::std::shared_ptr<::BlockActorDataPacket>); + MCFOLD void $handle(::NetworkIdentifier const&, ::std::shared_ptr<::BlockActorDataPacket>); - MCAPI void $handle(::NetworkIdentifier const&, ::PlayerAuthInputPacket const&); + MCFOLD void $handle(::NetworkIdentifier const&, ::PlayerAuthInputPacket const&); - MCAPI void $handle(::NetworkIdentifier const&, ::PlayerInputPacket const&); + MCFOLD void $handle(::NetworkIdentifier const&, ::PlayerInputPacket const&); - MCAPI void $handle(::NetworkIdentifier const&, ::std::shared_ptr<::LevelChunkPacket>); + MCFOLD void $handle(::NetworkIdentifier const&, ::std::shared_ptr<::LevelChunkPacket>); - MCAPI void $handle(::NetworkIdentifier const&, ::SubChunkPacket const&); + MCFOLD void $handle(::NetworkIdentifier const&, ::SubChunkPacket const&); - MCAPI void $handle(::NetworkIdentifier const&, ::SubChunkRequestPacket const&); + MCFOLD void $handle(::NetworkIdentifier const&, ::SubChunkRequestPacket const&); - MCAPI void $handle(::NetworkIdentifier const&, ::ClientCacheBlobStatusPacket const&); + MCFOLD void $handle(::NetworkIdentifier const&, ::ClientCacheBlobStatusPacket const&); - MCAPI void $handle(::NetworkIdentifier const&, ::std::shared_ptr<::ClientCacheMissResponsePacket>); + MCFOLD void $handle(::NetworkIdentifier const&, ::std::shared_ptr<::ClientCacheMissResponsePacket>); - MCAPI void $handle(::NetworkIdentifier const&, ::SetCommandsEnabledPacket const&); + MCFOLD void $handle(::NetworkIdentifier const&, ::SetCommandsEnabledPacket const&); - MCAPI void $handle(::NetworkIdentifier const&, ::SetDifficultyPacket const&); + MCFOLD void $handle(::NetworkIdentifier const&, ::SetDifficultyPacket const&); - MCAPI void $handle(::NetworkIdentifier const&, ::SimpleEventPacket const&); + MCFOLD void $handle(::NetworkIdentifier const&, ::SimpleEventPacket const&); - MCAPI void $handle(::NetworkIdentifier const&, ::ChangeDimensionPacket const&); + MCFOLD void $handle(::NetworkIdentifier const&, ::ChangeDimensionPacket const&); - MCAPI void $handle(::NetworkIdentifier const&, ::std::shared_ptr<::UpdateAttributesPacket>); + MCFOLD void $handle(::NetworkIdentifier const&, ::std::shared_ptr<::UpdateAttributesPacket>); - MCAPI void $handle(::NetworkIdentifier const&, ::PlayerListPacket const&); + MCFOLD void $handle(::NetworkIdentifier const&, ::PlayerListPacket const&); - MCAPI void $handle(::NetworkIdentifier const&, ::LegacyTelemetryEventPacket const&); + MCFOLD void $handle(::NetworkIdentifier const&, ::LegacyTelemetryEventPacket const&); - MCAPI void $handle(::NetworkIdentifier const&, ::SpawnExperienceOrbPacket const&); + MCFOLD void $handle(::NetworkIdentifier const&, ::SpawnExperienceOrbPacket const&); - MCAPI void $handle(::NetworkIdentifier const&, ::ClientboundDebugRendererPacket const&); + MCFOLD void $handle(::NetworkIdentifier const&, ::ClientboundDebugRendererPacket const&); - MCAPI void $handle(::NetworkIdentifier const&, ::ClientboundMapItemDataPacket const&); + MCFOLD void $handle(::NetworkIdentifier const&, ::ClientboundMapItemDataPacket const&); - MCAPI void $handle(::NetworkIdentifier const&, ::ClientboundCloseFormPacket const&); + MCFOLD void $handle(::NetworkIdentifier const&, ::ClientboundCloseFormPacket const&); - MCAPI void $handle(::NetworkIdentifier const&, ::ClientCacheStatusPacket const&); + MCFOLD void $handle(::NetworkIdentifier const&, ::ClientCacheStatusPacket const&); - MCAPI void $handle(::NetworkIdentifier const&, ::RequestChunkRadiusPacket const&); + MCFOLD void $handle(::NetworkIdentifier const&, ::RequestChunkRadiusPacket const&); - MCAPI void $handle(::NetworkIdentifier const&, ::MapCreateLockedCopyPacket const&); + MCFOLD void $handle(::NetworkIdentifier const&, ::MapCreateLockedCopyPacket const&); - MCAPI void $handle(::NetworkIdentifier const&, ::MapInfoRequestPacket const&); + MCFOLD void $handle(::NetworkIdentifier const&, ::MapInfoRequestPacket const&); - MCAPI void $handle(::NetworkIdentifier const&, ::ChunkRadiusUpdatedPacket const&); + MCFOLD void $handle(::NetworkIdentifier const&, ::ChunkRadiusUpdatedPacket const&); - MCAPI void $handle(::NetworkIdentifier const&, ::BossEventPacket const&); + MCFOLD void $handle(::NetworkIdentifier const&, ::BossEventPacket const&); - MCAPI void $handle(::NetworkIdentifier const&, ::UpdateTradePacket const&); + MCFOLD void $handle(::NetworkIdentifier const&, ::UpdateTradePacket const&); - MCAPI void $handle(::NetworkIdentifier const&, ::UpdateEquipPacket const&); + MCFOLD void $handle(::NetworkIdentifier const&, ::UpdateEquipPacket const&); - MCAPI void $handle(::NetworkIdentifier const&, ::AvailableCommandsPacket const&); + MCFOLD void $handle(::NetworkIdentifier const&, ::AvailableCommandsPacket const&); - MCAPI void $handle(::NetworkIdentifier const&, ::CommandRequestPacket const&); + MCFOLD void $handle(::NetworkIdentifier const&, ::CommandRequestPacket const&); - MCAPI void $handle(::NetworkIdentifier const&, ::CommandOutputPacket const&); + MCFOLD void $handle(::NetworkIdentifier const&, ::CommandOutputPacket const&); - MCAPI void $handle(::NetworkIdentifier const&, ::CommandBlockUpdatePacket const&); + MCFOLD void $handle(::NetworkIdentifier const&, ::CommandBlockUpdatePacket const&); - MCAPI void $handle(::NetworkIdentifier const&, ::CompletedUsingItemPacket const&); + MCFOLD void $handle(::NetworkIdentifier const&, ::CompletedUsingItemPacket const&); - MCAPI void $handle(::NetworkIdentifier const&, ::CameraAimAssistPacket const&); + MCFOLD void $handle(::NetworkIdentifier const&, ::CameraAimAssistPacket const&); - MCAPI void $handle(::NetworkIdentifier const&, ::CameraAimAssistPresetsPacket const&); + MCFOLD void $handle(::NetworkIdentifier const&, ::CameraAimAssistPresetsPacket const&); - MCAPI void $handle(::NetworkIdentifier const&, ::CameraInstructionPacket const&); + MCFOLD void $handle(::NetworkIdentifier const&, ::CameraInstructionPacket const&); - MCAPI void $handle(::NetworkIdentifier const&, ::CameraPacket const&); + MCFOLD void $handle(::NetworkIdentifier const&, ::CameraPacket const&); - MCAPI void $handle(::NetworkIdentifier const&, ::CameraPresetsPacket const&); + MCFOLD void $handle(::NetworkIdentifier const&, ::CameraPresetsPacket const&); - MCAPI void $handle(::NetworkIdentifier const&, ::CameraShakePacket const&); + MCFOLD void $handle(::NetworkIdentifier const&, ::CameraShakePacket const&); - MCAPI void $handle(::NetworkIdentifier const&, ::InventoryActionPacket const&); + MCFOLD void $handle(::NetworkIdentifier const&, ::InventoryActionPacket const&); - MCAPI void $handle(::NetworkIdentifier const&, ::GameRulesChangedPacket const&); + MCFOLD void $handle(::NetworkIdentifier const&, ::GameRulesChangedPacket const&); - MCAPI void $handle(::NetworkIdentifier const&, ::ResourcePackDataInfoPacket const&); + MCFOLD void $handle(::NetworkIdentifier const&, ::ResourcePackDataInfoPacket const&); - MCAPI void $handle(::NetworkIdentifier const&, ::ResourcePackChunkDataPacket const&); + MCFOLD void $handle(::NetworkIdentifier const&, ::ResourcePackChunkDataPacket const&); - MCAPI void $handle(::NetworkIdentifier const&, ::ResourcePackChunkRequestPacket const&); + MCFOLD void $handle(::NetworkIdentifier const&, ::ResourcePackChunkRequestPacket const&); - MCAPI void $handle(::NetworkIdentifier const&, ::NetworkChunkPublisherUpdatePacket const&); + MCFOLD void $handle(::NetworkIdentifier const&, ::NetworkChunkPublisherUpdatePacket const&); - MCAPI void $handle(::NetworkIdentifier const&, ::StructureBlockUpdatePacket const&); + MCFOLD void $handle(::NetworkIdentifier const&, ::StructureBlockUpdatePacket const&); - MCAPI void $handle(::NetworkIdentifier const&, ::StructureTemplateDataRequestPacket const&); + MCFOLD void $handle(::NetworkIdentifier const&, ::StructureTemplateDataRequestPacket const&); - MCAPI void $handle(::NetworkIdentifier const&, ::StructureTemplateDataResponsePacket const&); + MCFOLD void $handle(::NetworkIdentifier const&, ::StructureTemplateDataResponsePacket const&); - MCAPI void $handle(::NetworkIdentifier const&, ::TransferPacket const&); + MCFOLD void $handle(::NetworkIdentifier const&, ::TransferPacket const&); - MCAPI void $handle(::NetworkIdentifier const&, ::PlaySoundPacket const&); + MCFOLD void $handle(::NetworkIdentifier const&, ::PlaySoundPacket const&); - MCAPI void $handle(::NetworkIdentifier const&, ::StopSoundPacket const&); + MCFOLD void $handle(::NetworkIdentifier const&, ::StopSoundPacket const&); - MCAPI void $handle(::NetworkIdentifier const&, ::SetTitlePacket const&); + MCFOLD void $handle(::NetworkIdentifier const&, ::SetTitlePacket const&); - MCAPI void $handle(::NetworkIdentifier const&, ::std::shared_ptr<::InventoryTransactionPacket>); + MCFOLD void $handle(::NetworkIdentifier const&, ::std::shared_ptr<::InventoryTransactionPacket>); - MCAPI void $handle(::NetworkIdentifier const&, ::AddBehaviorTreePacket const&); + MCFOLD void $handle(::NetworkIdentifier const&, ::AddBehaviorTreePacket const&); - MCAPI void $handle(::NetworkIdentifier const&, ::ShowStoreOfferPacket const&); + MCFOLD void $handle(::NetworkIdentifier const&, ::ShowStoreOfferPacket const&); - MCAPI void $handle(::NetworkIdentifier const&, ::PurchaseReceiptPacket const&); + MCFOLD void $handle(::NetworkIdentifier const&, ::PurchaseReceiptPacket const&); - MCAPI void $handle(::NetworkIdentifier const&, ::RemoveObjectivePacket const&); + MCFOLD void $handle(::NetworkIdentifier const&, ::RemoveObjectivePacket const&); - MCAPI void $handle(::NetworkIdentifier const&, ::SetDisplayObjectivePacket const&); + MCFOLD void $handle(::NetworkIdentifier const&, ::SetDisplayObjectivePacket const&); - MCAPI void $handle(::NetworkIdentifier const&, ::AutomationClientConnectPacket const&); + MCFOLD void $handle(::NetworkIdentifier const&, ::AutomationClientConnectPacket const&); - MCAPI void $handle(::NetworkIdentifier const&, ::ModalFormRequestPacket const&); + MCFOLD void $handle(::NetworkIdentifier const&, ::ModalFormRequestPacket const&); - MCAPI void $handle(::NetworkIdentifier const&, ::ModalFormResponsePacket const&); + MCFOLD void $handle(::NetworkIdentifier const&, ::ModalFormResponsePacket const&); - MCAPI void $handle(::NetworkIdentifier const&, ::ToastRequestPacket const&); + MCFOLD void $handle(::NetworkIdentifier const&, ::ToastRequestPacket const&); - MCAPI void $handle(::NetworkIdentifier const&, ::OnScreenTextureAnimationPacket const&); + MCFOLD void $handle(::NetworkIdentifier const&, ::OnScreenTextureAnimationPacket const&); - MCAPI void $handle(::NetworkIdentifier const&, ::ServerSettingsRequestPacket const&); + MCFOLD void $handle(::NetworkIdentifier const&, ::ServerSettingsRequestPacket const&); - MCAPI void $handle(::NetworkIdentifier const&, ::ServerSettingsResponsePacket const&); + MCFOLD void $handle(::NetworkIdentifier const&, ::ServerSettingsResponsePacket const&); - MCAPI void $handle(::NetworkIdentifier const&, ::ShowProfilePacket const&); + MCFOLD void $handle(::NetworkIdentifier const&, ::ShowProfilePacket const&); - MCAPI void $handle(::NetworkIdentifier const&, ::SetScorePacket const&); + MCFOLD void $handle(::NetworkIdentifier const&, ::SetScorePacket const&); - MCAPI void $handle(::NetworkIdentifier const&, ::SetScoreboardIdentityPacket const&); + MCFOLD void $handle(::NetworkIdentifier const&, ::SetScoreboardIdentityPacket const&); - MCAPI void $handle(::NetworkIdentifier const&, ::TickingAreasLoadStatusPacket const&); + MCFOLD void $handle(::NetworkIdentifier const&, ::TickingAreasLoadStatusPacket const&); - MCAPI void $handle(::NetworkIdentifier const&, ::UpdateSoftEnumPacket const&); + MCFOLD void $handle(::NetworkIdentifier const&, ::UpdateSoftEnumPacket const&); - MCAPI void $handle(::NetworkIdentifier const&, ::AvailableActorIdentifiersPacket const&); + MCFOLD void $handle(::NetworkIdentifier const&, ::AvailableActorIdentifiersPacket const&); - MCAPI void $handle(::NetworkIdentifier const&, ::AddVolumeEntityPacket const&); + MCFOLD void $handle(::NetworkIdentifier const&, ::AddVolumeEntityPacket const&); - MCAPI void $handle(::NetworkIdentifier const&, ::RemoveVolumeEntityPacket const&); + MCFOLD void $handle(::NetworkIdentifier const&, ::RemoveVolumeEntityPacket const&); - MCAPI void $handle(::NetworkIdentifier const&, ::DimensionDataPacket const&); + MCFOLD void $handle(::NetworkIdentifier const&, ::DimensionDataPacket const&); - MCAPI void $handle(::NetworkIdentifier const&, ::EditorNetworkPacket const&); + MCFOLD void $handle(::NetworkIdentifier const&, ::EditorNetworkPacket const&); - MCAPI void $handle(::NetworkIdentifier const&, ::RefreshEntitlementsPacket const&); + MCFOLD void $handle(::NetworkIdentifier const&, ::RefreshEntitlementsPacket const&); - MCAPI void $handle(::NetworkIdentifier const&, ::ServerPlayerPostMovePositionPacket const&); + MCFOLD void $handle(::NetworkIdentifier const&, ::ServerPlayerPostMovePositionPacket const&); - MCAPI void $handle(::NetworkIdentifier const&, ::RespawnPacket const&); + MCFOLD void $handle(::NetworkIdentifier const&, ::RespawnPacket const&); - MCAPI void $handle(::NetworkIdentifier const&, ::ShowCreditsPacket const&); + MCFOLD void $handle(::NetworkIdentifier const&, ::ShowCreditsPacket const&); - MCAPI void $handle(::NetworkIdentifier const&, ::PlayerSkinPacket const&); + MCFOLD void $handle(::NetworkIdentifier const&, ::PlayerSkinPacket const&); - MCAPI void $handle(::NetworkIdentifier const&, ::PlayerStartItemCooldownPacket const&); + MCFOLD void $handle(::NetworkIdentifier const&, ::PlayerStartItemCooldownPacket const&); - MCAPI void $handle(::NetworkIdentifier const&, ::PlayerToggleCrafterSlotRequestPacket const&); + MCFOLD void $handle(::NetworkIdentifier const&, ::PlayerToggleCrafterSlotRequestPacket const&); - MCAPI void $handle(::NetworkIdentifier const&, ::SetLastHurtByPacket const&); + MCFOLD void $handle(::NetworkIdentifier const&, ::SetLastHurtByPacket const&); - MCAPI void $handle(::NetworkIdentifier const&, ::BookAddPagePacket const&); + MCFOLD void $handle(::NetworkIdentifier const&, ::BookAddPagePacket const&); - MCAPI void $handle(::NetworkIdentifier const&, ::BookDeletePagePacket const&); + MCFOLD void $handle(::NetworkIdentifier const&, ::BookDeletePagePacket const&); - MCAPI void $handle(::NetworkIdentifier const&, ::LecternUpdatePacket const&); + MCFOLD void $handle(::NetworkIdentifier const&, ::LecternUpdatePacket const&); - MCAPI void $handle(::NetworkIdentifier const&, ::BookEditPacket const&); + MCFOLD void $handle(::NetworkIdentifier const&, ::BookEditPacket const&); - MCAPI void $handle(::NetworkIdentifier const&, ::BookSignPacket const&); + MCFOLD void $handle(::NetworkIdentifier const&, ::BookSignPacket const&); - MCAPI void $handle(::NetworkIdentifier const&, ::BookSwapPagesPacket const&); + MCFOLD void $handle(::NetworkIdentifier const&, ::BookSwapPagesPacket const&); - MCAPI void $handle(::NetworkIdentifier const&, ::NpcRequestPacket const&); + MCFOLD void $handle(::NetworkIdentifier const&, ::NpcRequestPacket const&); - MCAPI void $handle(::NetworkIdentifier const&, ::PhotoTransferPacket const&); + MCFOLD void $handle(::NetworkIdentifier const&, ::PhotoTransferPacket const&); - MCAPI void $handle(::NetworkIdentifier const&, ::LabTablePacket const&); + MCFOLD void $handle(::NetworkIdentifier const&, ::LabTablePacket const&); - MCAPI void $handle(::NetworkIdentifier const&, ::NetworkSettingsPacket const&); + MCFOLD void $handle(::NetworkIdentifier const&, ::NetworkSettingsPacket const&); - MCAPI void $handle(::NetworkIdentifier const&, ::NetworkStackLatencyPacket const&); + MCFOLD void $handle(::NetworkIdentifier const&, ::NetworkStackLatencyPacket const&); - MCAPI void $handle(::NetworkIdentifier const&, ::ServerStatsPacket const&); + MCFOLD void $handle(::NetworkIdentifier const&, ::ServerStatsPacket const&); - MCAPI void $handle(::NetworkIdentifier const&, ::SetLocalPlayerAsInitializedPacket const&); + MCFOLD void $handle(::NetworkIdentifier const&, ::SetLocalPlayerAsInitializedPacket const&); - MCAPI void $handle(::NetworkIdentifier const&, ::ScriptMessagePacket const&); + MCFOLD void $handle(::NetworkIdentifier const&, ::ScriptMessagePacket const&); - MCAPI void $handle(::NetworkIdentifier const&, ::BiomeDefinitionListPacket const&); + MCFOLD void $handle(::NetworkIdentifier const&, ::BiomeDefinitionListPacket const&); - MCAPI void $handle(::NetworkIdentifier const&, ::EducationSettingsPacket const&); + MCFOLD void $handle(::NetworkIdentifier const&, ::EducationSettingsPacket const&); - MCAPI void $handle(::NetworkIdentifier const&, ::EduUriResourcePacket const&); + MCFOLD void $handle(::NetworkIdentifier const&, ::EduUriResourcePacket const&); - MCAPI void $handle(::NetworkIdentifier const&, ::MultiplayerSettingsPacket const&); + MCFOLD void $handle(::NetworkIdentifier const&, ::MultiplayerSettingsPacket const&); - MCAPI void $handle(::NetworkIdentifier const&, ::SettingsCommandPacket const&); + MCFOLD void $handle(::NetworkIdentifier const&, ::SettingsCommandPacket const&); - MCAPI void $handle(::NetworkIdentifier const&, ::AnvilDamagePacket const&); + MCFOLD void $handle(::NetworkIdentifier const&, ::AnvilDamagePacket const&); - MCAPI void $handle(::NetworkIdentifier const&, ::CreativeContentPacket const&); + MCFOLD void $handle(::NetworkIdentifier const&, ::CreativeContentPacket const&); - MCAPI void $handle(::NetworkIdentifier const&, ::CodeBuilderPacket const&); + MCFOLD void $handle(::NetworkIdentifier const&, ::CodeBuilderPacket const&); - MCAPI void $handle(::NetworkIdentifier const&, ::PlayerEnchantOptionsPacket const&); + MCFOLD void $handle(::NetworkIdentifier const&, ::PlayerEnchantOptionsPacket const&); - MCAPI void $handle(::NetworkIdentifier const&, ::DebugInfoPacket const&); + MCFOLD void $handle(::NetworkIdentifier const&, ::DebugInfoPacket const&); - MCAPI void $handle(::NetworkIdentifier const&, ::ChangeMobPropertyPacket const&); + MCFOLD void $handle(::NetworkIdentifier const&, ::ChangeMobPropertyPacket const&); - MCAPI void $handle(::NetworkIdentifier const&, ::AnimateEntityPacket const&); + MCFOLD void $handle(::NetworkIdentifier const&, ::AnimateEntityPacket const&); - MCAPI void $handle(::NetworkIdentifier const&, ::CorrectPlayerMovePredictionPacket const&); + MCFOLD void $handle(::NetworkIdentifier const&, ::CorrectPlayerMovePredictionPacket const&); - MCAPI void $handle(::NetworkIdentifier const&, ::PlayerFogPacket const&); + MCFOLD void $handle(::NetworkIdentifier const&, ::PlayerFogPacket const&); - MCAPI void $handle(::NetworkIdentifier const&, ::ItemComponentPacket const&); + MCFOLD void $handle(::NetworkIdentifier const&, ::ItemComponentPacket const&); - MCAPI void $handle(::NetworkIdentifier const&, ::LessonProgressPacket const&); + MCFOLD void $handle(::NetworkIdentifier const&, ::LessonProgressPacket const&); - MCAPI void $handle(::NetworkIdentifier const&, ::FeatureRegistryPacket const&); + MCFOLD void $handle(::NetworkIdentifier const&, ::FeatureRegistryPacket const&); - MCAPI void $handle(::NetworkIdentifier const&, ::SyncActorPropertyPacket const&); + MCFOLD void $handle(::NetworkIdentifier const&, ::SyncActorPropertyPacket const&); - MCAPI void $handle(::NetworkIdentifier const&, ::SimulationTypePacket const&); + MCFOLD void $handle(::NetworkIdentifier const&, ::SimulationTypePacket const&); - MCAPI void $handle(::NetworkIdentifier const&, ::NpcDialoguePacket const&); + MCFOLD void $handle(::NetworkIdentifier const&, ::NpcDialoguePacket const&); - MCAPI void $handle(::NetworkIdentifier const&, ::CreatePhotoPacket const&); + MCFOLD void $handle(::NetworkIdentifier const&, ::CreatePhotoPacket const&); - MCAPI void $handle(::NetworkIdentifier const&, ::UpdateSubChunkBlocksPacket const&); + MCFOLD void $handle(::NetworkIdentifier const&, ::UpdateSubChunkBlocksPacket const&); - MCAPI void $handle(::NetworkIdentifier const&, ::CodeBuilderSourcePacket const&); + MCFOLD void $handle(::NetworkIdentifier const&, ::CodeBuilderSourcePacket const&); - MCAPI void $handle(::NetworkIdentifier const&, ::AgentActionEventPacket const&); + MCFOLD void $handle(::NetworkIdentifier const&, ::AgentActionEventPacket const&); - MCAPI void $handle(::NetworkIdentifier const&, ::DeathInfoPacket const&); + MCFOLD void $handle(::NetworkIdentifier const&, ::DeathInfoPacket const&); - MCAPI void $handle(::NetworkIdentifier const&, ::RequestAbilityPacket const&); + MCFOLD void $handle(::NetworkIdentifier const&, ::RequestAbilityPacket const&); - MCAPI void $handle(::NetworkIdentifier const&, ::RequestPermissionsPacket const&); + MCFOLD void $handle(::NetworkIdentifier const&, ::RequestPermissionsPacket const&); - MCAPI void $handle(::NetworkIdentifier const&, ::UpdateAbilitiesPacket const&); + MCFOLD void $handle(::NetworkIdentifier const&, ::UpdateAbilitiesPacket const&); - MCAPI void $handle(::NetworkIdentifier const&, ::UpdateAdventureSettingsPacket const&); + MCFOLD void $handle(::NetworkIdentifier const&, ::UpdateAdventureSettingsPacket const&); - MCAPI void $handle(::NetworkIdentifier const&, ::RequestNetworkSettingsPacket const&); + MCFOLD void $handle(::NetworkIdentifier const&, ::RequestNetworkSettingsPacket const&); - MCAPI void $handle(::NetworkIdentifier const&, ::GameTestRequestPacket const&); + MCFOLD void $handle(::NetworkIdentifier const&, ::GameTestRequestPacket const&); - MCAPI void $handle(::NetworkIdentifier const&, ::GameTestResultsPacket const&); + MCFOLD void $handle(::NetworkIdentifier const&, ::GameTestResultsPacket const&); - MCAPI void $handle(::NetworkIdentifier const&, ::UpdateClientInputLocksPacket const&); + MCFOLD void $handle(::NetworkIdentifier const&, ::UpdateClientInputLocksPacket const&); - MCAPI void $handle(::NetworkIdentifier const&, ::UnlockedRecipesPacket const&); + MCFOLD void $handle(::NetworkIdentifier const&, ::UnlockedRecipesPacket const&); - MCAPI void $handle(::NetworkIdentifier const&, ::CompressedBiomeDefinitionListPacket const&); + MCFOLD void $handle(::NetworkIdentifier const&, ::CompressedBiomeDefinitionListPacket const&); - MCAPI void $handle(::NetworkIdentifier const&, ::TrimDataPacket const&); + MCFOLD void $handle(::NetworkIdentifier const&, ::TrimDataPacket const&); - MCAPI void $handle(::NetworkIdentifier const&, ::OpenSignPacket const&); + MCFOLD void $handle(::NetworkIdentifier const&, ::OpenSignPacket const&); - MCAPI void $handle(::NetworkIdentifier const&, ::AgentAnimationPacket const&); + MCFOLD void $handle(::NetworkIdentifier const&, ::AgentAnimationPacket const&); - MCAPI void $handle(::NetworkIdentifier const&, ::SetPlayerInventoryOptionsPacket const&); + MCFOLD void $handle(::NetworkIdentifier const&, ::SetPlayerInventoryOptionsPacket const&); - MCAPI void $handle(::NetworkIdentifier const&, ::SetHudPacket const&); + MCFOLD void $handle(::NetworkIdentifier const&, ::SetHudPacket const&); - MCAPI void $handle(::NetworkIdentifier const&, ::AwardAchievementPacket const&); + MCFOLD void $handle(::NetworkIdentifier const&, ::AwardAchievementPacket const&); - MCAPI void $handle(::NetworkIdentifier const&, ::ServerboundLoadingScreenPacket const&); + MCFOLD void $handle(::NetworkIdentifier const&, ::ServerboundLoadingScreenPacket const&); - MCAPI void $handle(::NetworkIdentifier const&, ::ServerboundDiagnosticsPacket const&); + MCFOLD void $handle(::NetworkIdentifier const&, ::ServerboundDiagnosticsPacket const&); - MCAPI void $handle(::NetworkIdentifier const&, ::JigsawStructureDataPacket const&); + MCFOLD void $handle(::NetworkIdentifier const&, ::JigsawStructureDataPacket const&); - MCAPI void $handle(::NetworkIdentifier const&, ::CurrentStructureFeaturePacket const&); + MCFOLD void $handle(::NetworkIdentifier const&, ::CurrentStructureFeaturePacket const&); - MCAPI void $handle(::NetworkIdentifier const&, ::SetMovementAuthorityPacket const&); + MCFOLD void $handle(::NetworkIdentifier const&, ::SetMovementAuthorityPacket const&); // NOLINTEND public: diff --git a/src/mc/network/NetherNetConnector.h b/src/mc/network/NetherNetConnector.h index 7a010cca04..719aaf8194 100644 --- a/src/mc/network/NetherNetConnector.h +++ b/src/mc/network/NetherNetConnector.h @@ -57,7 +57,7 @@ struct NetherNetConnector : public ::RemoteConnector, public ::NetherNet::INethe public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; @@ -220,27 +220,27 @@ struct NetherNetConnector : public ::RemoteConnector, public ::NetherNet::INethe public: // virtual function thunks // NOLINTBEGIN - MCAPI bool $host(::ConnectionDefinition const& definition); + MCFOLD bool $host(::ConnectionDefinition const& definition); - MCAPI bool $connect(::Social::GameConnectionInfo const&, ::Social::GameConnectionInfo const&); + MCFOLD bool $connect(::Social::GameConnectionInfo const&, ::Social::GameConnectionInfo const&); - MCAPI void $tick(); + MCFOLD void $tick(); MCAPI void $runEvents(); MCAPI ::NetworkIdentifier $getNetworkIdentifier() const; - MCAPI void $closeNetworkConnection(::NetworkIdentifier const&); + MCFOLD void $closeNetworkConnection(::NetworkIdentifier const&); - MCAPI bool $setApplicationHandshakeCompleted(::NetworkIdentifier const&); + MCFOLD bool $setApplicationHandshakeCompleted(::NetworkIdentifier const&); - MCAPI ::TransportLayer $getNetworkType() const; + MCFOLD ::TransportLayer $getNetworkType() const; - MCAPI void $_onDisable(); + MCFOLD void $_onDisable(); - MCAPI void $_onEnable(); + MCFOLD void $_onEnable(); - MCAPI void $OnSpopViolation(); + MCFOLD void $OnSpopViolation(); MCAPI void $OnSessionClose(::NetherNet::NetworkID networkID, uint64 sessionId, ::NetherNet::ESessionError sessionError); diff --git a/src/mc/network/NetherNetServerLocator.h b/src/mc/network/NetherNetServerLocator.h index 768362a62a..b0359d458e 100644 --- a/src/mc/network/NetherNetServerLocator.h +++ b/src/mc/network/NetherNetServerLocator.h @@ -58,7 +58,7 @@ class NetherNetServerLocator : public ::StubServerLocator { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/network/NetworkAddress.h b/src/mc/network/NetworkAddress.h index 19e3eda4ba..13bcf1f143 100644 --- a/src/mc/network/NetworkAddress.h +++ b/src/mc/network/NetworkAddress.h @@ -13,7 +13,7 @@ struct NetworkAddress { public: // member functions // NOLINTBEGIN - MCAPI ::NetworkAddress& operator=(::NetworkAddress const&); + MCFOLD ::NetworkAddress& operator=(::NetworkAddress const&); MCAPI ~NetworkAddress(); // NOLINTEND @@ -21,6 +21,6 @@ struct NetworkAddress { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/network/NetworkConnection.h b/src/mc/network/NetworkConnection.h index 7092f310cd..c45d1f6f68 100644 --- a/src/mc/network/NetworkConnection.h +++ b/src/mc/network/NetworkConnection.h @@ -50,7 +50,7 @@ class NetworkConnection { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/network/NetworkEnableDisableListener.h b/src/mc/network/NetworkEnableDisableListener.h index 90acd11c0e..dd73b29bc3 100644 --- a/src/mc/network/NetworkEnableDisableListener.h +++ b/src/mc/network/NetworkEnableDisableListener.h @@ -52,9 +52,9 @@ class NetworkEnableDisableListener { MCAPI void disable(); - MCAPI bool isDisabled() const; + MCFOLD bool isDisabled() const; - MCAPI bool isEnabled() const; + MCFOLD bool isEnabled() const; MCAPI void tryEnable(); // NOLINTEND @@ -68,7 +68,7 @@ class NetworkEnableDisableListener { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND public: diff --git a/src/mc/network/NetworkIdentifier.h b/src/mc/network/NetworkIdentifier.h index 64df9229b6..8d5b9ba2a8 100644 --- a/src/mc/network/NetworkIdentifier.h +++ b/src/mc/network/NetworkIdentifier.h @@ -46,13 +46,13 @@ class NetworkIdentifier { MCAPI uint64 getHash() const; - MCAPI ::RakNet::RakNetGUID const& getRakNetGUID() const; + MCFOLD ::RakNet::RakNetGUID const& getRakNetGUID() const; - MCAPI ::sockaddr_in const& getSocketAddress() const; + MCFOLD ::sockaddr_in const& getSocketAddress() const; - MCAPI ::sockaddr_in6 const& getSocketAddress6() const; + MCFOLD ::sockaddr_in6 const& getSocketAddress6() const; - MCAPI ::NetworkIdentifier::Type getType() const; + MCFOLD ::NetworkIdentifier::Type getType() const; MCAPI bool isUnassigned() const; diff --git a/src/mc/network/NetworkSessionOwner.h b/src/mc/network/NetworkSessionOwner.h index daf2967c26..523c7aa4b3 100644 --- a/src/mc/network/NetworkSessionOwner.h +++ b/src/mc/network/NetworkSessionOwner.h @@ -34,7 +34,7 @@ class NetworkSessionOwner : public ::Bedrock::EnableNonOwnerReferences { MCAPI void destroyNetworkSession(); - MCAPI bool hasNetworkSession() const; + MCFOLD bool hasNetworkSession() const; // NOLINTEND public: diff --git a/src/mc/network/NetworkStatistics.h b/src/mc/network/NetworkStatistics.h index 7feb82db9a..4ee92cc987 100644 --- a/src/mc/network/NetworkStatistics.h +++ b/src/mc/network/NetworkStatistics.h @@ -126,7 +126,7 @@ class NetworkStatistics : public ::PacketObserver { MCAPI ::std::unordered_map getAndResetDebuggerStats(); - MCAPI ::std::array<::std::string, 321> const& getPacketNames() const; + MCFOLD ::std::array<::std::string, 321> const& getPacketNames() const; MCAPI ::std::string getVerboseInfo() const; diff --git a/src/mc/network/NetworkSystem.h b/src/mc/network/NetworkSystem.h index 1417da8a89..8b99214522 100644 --- a/src/mc/network/NetworkSystem.h +++ b/src/mc/network/NetworkSystem.h @@ -226,17 +226,17 @@ class NetworkSystem : public ::RakNetConnector::ConnectionCallbacks, MCAPI ::std::weak_ptr<::CompressedNetworkPeer> getCompressedPeerForUser(::NetworkIdentifier const& id); - MCAPI ::std::vector<::std::unique_ptr<::NetworkConnection>> const& getConnections() const; + MCFOLD ::std::vector<::std::unique_ptr<::NetworkConnection>> const& getConnections() const; MCAPI ::std::weak_ptr<::EncryptedNetworkPeer> getEncryptedPeerForUser(::NetworkIdentifier const& id); - MCAPI ::NetworkStatistics const* getNetworkStatistics() const; + MCFOLD ::NetworkStatistics const* getNetworkStatistics() const; MCAPI ::NetworkPeer* getPeerForUser(::NetworkIdentifier const& id); MCAPI ::Bedrock::NotNullNonOwnerPtr<::RemoteConnector const> getRemoteConnector() const; - MCAPI ::Bedrock::NotNullNonOwnerPtr<::RemoteConnector> getRemoteConnector(); + MCFOLD ::Bedrock::NotNullNonOwnerPtr<::RemoteConnector> getRemoteConnector(); MCAPI ::ResourcePackFileUploadManager& getResourcePackUploadManager( ::PacketSender& packetSender, @@ -244,7 +244,7 @@ class NetworkSystem : public ::RakNetConnector::ConnectionCallbacks, ::std::string const& resourceName ); - MCAPI ::ServerLocator& getServerLocator(); + MCFOLD ::ServerLocator& getServerLocator(); MCAPI bool isServer() const; @@ -278,9 +278,9 @@ class NetworkSystem : public ::RakNetConnector::ConnectionCallbacks, public: // virtual function thunks // NOLINTBEGIN - MCAPI bool $useIPv4Only() const; + MCFOLD bool $useIPv4Only() const; - MCAPI bool $useIPv6Only() const; + MCFOLD bool $useIPv6Only() const; MCAPI ushort $getDefaultGamePort() const; diff --git a/src/mc/network/PacketObserver.h b/src/mc/network/PacketObserver.h index d610963371..5281fc3157 100644 --- a/src/mc/network/PacketObserver.h +++ b/src/mc/network/PacketObserver.h @@ -87,7 +87,7 @@ class PacketObserver : public ::IPacketObserver { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND public: @@ -97,9 +97,9 @@ class PacketObserver : public ::IPacketObserver { MCAPI void $packetReceivedFrom(::NetworkIdentifier const&, ::Packet const&, uint size); - MCAPI void $dataSentTo(::NetworkIdentifier const&, ::std::string_view); + MCFOLD void $dataSentTo(::NetworkIdentifier const&, ::std::string_view); - MCAPI void $dataReceivedFrom(::NetworkIdentifier const&, ::std::string const&); + MCFOLD void $dataReceivedFrom(::NetworkIdentifier const&, ::std::string const&); MCAPI void $reset(); // NOLINTEND diff --git a/src/mc/network/PacketViolationDetectedTelemetryData.h b/src/mc/network/PacketViolationDetectedTelemetryData.h index bc533a2011..4c3d8733c6 100644 --- a/src/mc/network/PacketViolationDetectedTelemetryData.h +++ b/src/mc/network/PacketViolationDetectedTelemetryData.h @@ -66,6 +66,6 @@ class PacketViolationDetectedTelemetryData { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/network/RakNetConnector.h b/src/mc/network/RakNetConnector.h index 494961cdfb..2af2a872c3 100644 --- a/src/mc/network/RakNetConnector.h +++ b/src/mc/network/RakNetConnector.h @@ -100,7 +100,7 @@ class RakNetConnector : public ::RemoteConnector { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; @@ -179,9 +179,9 @@ class RakNetConnector : public ::RemoteConnector { MCAPI void $update(); - MCAPI bool $isLocal() const; + MCFOLD bool $isLocal() const; - MCAPI bool $isEncrypted() const; + MCFOLD bool $isEncrypted() const; // NOLINTEND public: @@ -369,7 +369,7 @@ class RakNetConnector : public ::RemoteConnector { MCAPI ::std::vector<::RakNet::SystemAddress> $getRefinedLocalIps() const; - MCAPI ::Social::GameConnectionInfo const& $getConnectedGameInfo() const; + MCFOLD ::Social::GameConnectionInfo const& $getConnectedGameInfo() const; MCAPI bool $isIPv4Supported() const; @@ -381,11 +381,11 @@ class RakNetConnector : public ::RemoteConnector { MCAPI ::NetworkIdentifier $getNetworkIdentifier() const; - MCAPI ::RakNet::RakPeerInterface* $getPeer(); + MCFOLD ::RakNet::RakPeerInterface* $getPeer(); - MCAPI ::RakNet::RakPeerInterface const* $getPeer() const; + MCFOLD ::RakNet::RakPeerInterface const* $getPeer() const; - MCAPI ::TransportLayer $getNetworkType() const; + MCFOLD ::TransportLayer $getNetworkType() const; MCAPI void $_onDisable(); diff --git a/src/mc/network/RakNetServerLocator.h b/src/mc/network/RakNetServerLocator.h index eff236625d..5da670160a 100644 --- a/src/mc/network/RakNetServerLocator.h +++ b/src/mc/network/RakNetServerLocator.h @@ -138,7 +138,7 @@ class RakNetServerLocator : public ::ServerLocator { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; @@ -166,7 +166,7 @@ class RakNetServerLocator : public ::ServerLocator { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; @@ -194,7 +194,7 @@ class RakNetServerLocator : public ::ServerLocator { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/network/RakPeerHelper.h b/src/mc/network/RakPeerHelper.h index a8b7ec7531..d27081fa48 100644 --- a/src/mc/network/RakPeerHelper.h +++ b/src/mc/network/RakPeerHelper.h @@ -44,7 +44,7 @@ class RakPeerHelper { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND public: @@ -100,11 +100,11 @@ class RakPeerHelper { MCAPI ushort getIPv4BoundPort() const; - MCAPI int getIPv4ConnectionIndex() const; + MCFOLD int getIPv4ConnectionIndex() const; MCAPI ushort getIPv6BoundPort() const; - MCAPI int getIPv6ConnectionIndex() const; + MCFOLD int getIPv6ConnectionIndex() const; MCAPI bool isIPv4Supported() const; diff --git a/src/mc/network/ServerLocator.h b/src/mc/network/ServerLocator.h index fff0907095..d31499f8ec 100644 --- a/src/mc/network/ServerLocator.h +++ b/src/mc/network/ServerLocator.h @@ -77,15 +77,15 @@ class ServerLocator : public ::NetworkEnableDisableListener { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND public: // virtual function thunks // NOLINTBEGIN - MCAPI void $_onDisable(); + MCFOLD void $_onDisable(); - MCAPI void $_onEnable(); + MCFOLD void $_onEnable(); // NOLINTEND public: diff --git a/src/mc/network/ServerNetherNetConnector.h b/src/mc/network/ServerNetherNetConnector.h index 9e58b32924..11976e9348 100644 --- a/src/mc/network/ServerNetherNetConnector.h +++ b/src/mc/network/ServerNetherNetConnector.h @@ -45,11 +45,11 @@ struct ServerNetherNetConnector : public ::NetherNetConnector { // NOLINTBEGIN MCAPI bool $host(::ConnectionDefinition const& definition); - MCAPI void $disconnect(); + MCFOLD void $disconnect(); - MCAPI bool $isServer() const; + MCFOLD bool $isServer() const; - MCAPI bool $OnSessionRequested(::NetherNet::NetworkID, uint64); + MCFOLD bool $OnSessionRequested(::NetherNet::NetworkID, uint64); MCAPI void $OnSessionOpen(::NetherNet::NetworkID networkID, uint64 sessionId); // NOLINTEND diff --git a/src/mc/network/ServerNetworkController.h b/src/mc/network/ServerNetworkController.h index 72f2d15056..72c3fb3fa2 100644 --- a/src/mc/network/ServerNetworkController.h +++ b/src/mc/network/ServerNetworkController.h @@ -72,7 +72,7 @@ struct ServerNetworkController : public ::IServerNetworkController { public: // virtual function thunks // NOLINTBEGIN - MCAPI bool $isDedicatedServer() const; + MCFOLD bool $isDedicatedServer() const; MCAPI bool $isHost(::mce::UUID const& playerID) const; diff --git a/src/mc/network/ServerNetworkHandler.h b/src/mc/network/ServerNetworkHandler.h index 1705c70067..3ee50b3207 100644 --- a/src/mc/network/ServerNetworkHandler.h +++ b/src/mc/network/ServerNetworkHandler.h @@ -648,7 +648,7 @@ class ServerNetworkHandler : public ::Bedrock::Threading::EnableQueueForMainThre ::Player* player ); - MCAPI void activateAllowList(); + MCFOLD void activateAllowList(); MCAPI void addToDenyList(::mce::UUID const& uuid, ::std::string const& xuid); @@ -775,7 +775,7 @@ class ServerNetworkHandler : public ::Bedrock::Threading::EnableQueueForMainThre MCAPI void $onXboxUserUnblocked(::std::string const& xuid); - MCAPI void $onPlayerReady(::Player& player); + MCFOLD void $onPlayerReady(::Player& player); MCAPI void $sendServerLegacyParticle(::ParticleType name, ::Vec3 const& pos, ::Vec3 const&, int data); @@ -816,13 +816,13 @@ class ServerNetworkHandler : public ::Bedrock::Threading::EnableQueueForMainThre MCAPI void $handle(::NetworkIdentifier const& source, ::CommandRequestPacket const& packet); - MCAPI void $handle(::NetworkIdentifier const& source, ::CompletedUsingItemPacket const& packet); + MCFOLD void $handle(::NetworkIdentifier const& source, ::CompletedUsingItemPacket const& packet); MCAPI void $handle(::NetworkIdentifier const& source, ::ContainerClosePacket const& packet); MCAPI void $handle(::NetworkIdentifier const& source, ::DebugInfoPacket const& packet); - MCAPI void $handle(::NetworkIdentifier const& source, ::CreatePhotoPacket const& packet); + MCFOLD void $handle(::NetworkIdentifier const& source, ::CreatePhotoPacket const& packet); MCAPI void $handle(::NetworkIdentifier const& source, ::DisconnectPacket const& packet); @@ -838,11 +838,11 @@ class ServerNetworkHandler : public ::Bedrock::Threading::EnableQueueForMainThre MCAPI void $handle(::NetworkIdentifier const& source, ::LabTablePacket const& packet); - MCAPI void $handle(::NetworkIdentifier const& source, ::LevelSoundEventPacket const& packet); + MCFOLD void $handle(::NetworkIdentifier const& source, ::LevelSoundEventPacket const& packet); MCAPI void $handle(::NetworkIdentifier const& source, ::LevelSoundEventPacketV1 const& packet); - MCAPI void $handle(::NetworkIdentifier const& source, ::LevelSoundEventPacketV2 const& packet); + MCFOLD void $handle(::NetworkIdentifier const& source, ::LevelSoundEventPacketV2 const& packet); MCAPI void $handle(::NetworkIdentifier const& source, ::LoginPacket const& packet); @@ -862,7 +862,7 @@ class ServerNetworkHandler : public ::Bedrock::Threading::EnableQueueForMainThre MCAPI void $handle(::NetworkIdentifier const& source, ::NpcRequestPacket const& packet); - MCAPI void $handle(::NetworkIdentifier const& source, ::PhotoTransferPacket const& packet); + MCFOLD void $handle(::NetworkIdentifier const& source, ::PhotoTransferPacket const& packet); MCAPI void $handle(::NetworkIdentifier const& source, ::PlayerActionPacket const& packet); @@ -878,7 +878,7 @@ class ServerNetworkHandler : public ::Bedrock::Threading::EnableQueueForMainThre MCAPI void $handle(::NetworkIdentifier const& source, ::PositionTrackingDBClientRequestPacket const& packet); - MCAPI void $handle(::NetworkIdentifier const& source, ::PurchaseReceiptPacket const& packet); + MCFOLD void $handle(::NetworkIdentifier const& source, ::PurchaseReceiptPacket const& packet); MCAPI void $handle(::NetworkIdentifier const& source, ::RequestChunkRadiusPacket const& packet); @@ -924,7 +924,7 @@ class ServerNetworkHandler : public ::Bedrock::Threading::EnableQueueForMainThre MCAPI void $handle(::NetworkIdentifier const& source, ::CodeBuilderSourcePacket const& packet); - MCAPI void $handle(::NetworkIdentifier const&, ::ChangeMobPropertyPacket const& packet); + MCFOLD void $handle(::NetworkIdentifier const&, ::ChangeMobPropertyPacket const& packet); MCAPI void $handle(::NetworkIdentifier const& source, ::RequestAbilityPacket const& packet); diff --git a/src/mc/network/SpatialActorNetworkData.h b/src/mc/network/SpatialActorNetworkData.h index 6f87b1347b..7ee5f8c220 100644 --- a/src/mc/network/SpatialActorNetworkData.h +++ b/src/mc/network/SpatialActorNetworkData.h @@ -109,11 +109,11 @@ class SpatialActorNetworkData { MCAPI bool _shouldUpdateBasedOptimizationOnScore(::Player& player) const; - MCAPI void enableAutoSend(bool enable); + MCFOLD void enableAutoSend(bool enable); MCAPI void handleClientData(::MoveActorAbsoluteData const& moveData); - MCAPI bool isAutoSendEnabled() const; + MCFOLD bool isAutoSendEnabled() const; MCAPI void sendUpdate(bool forceTeleport, bool forceMoveLocalEntity, bool forceAbsoluteMovement); diff --git a/src/mc/network/StubServerLocator.h b/src/mc/network/StubServerLocator.h index 21a18afc51..fc0f9829d5 100644 --- a/src/mc/network/StubServerLocator.h +++ b/src/mc/network/StubServerLocator.h @@ -86,7 +86,7 @@ class StubServerLocator : public ::ServerLocator { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND public: @@ -106,21 +106,21 @@ class StubServerLocator : public ::ServerLocator { MCAPI void $stopAnnouncingServer(::Bedrock::NonOwnerPointer<::AppPlatform> appPlatform); - MCAPI void $startServerDiscovery(::PortPair ports); + MCFOLD void $startServerDiscovery(::PortPair ports); - MCAPI void $addCustomServer(::AsynchronousIPResolver const& futureIP, int port); + MCFOLD void $addCustomServer(::AsynchronousIPResolver const& futureIP, int port); - MCAPI void $addCustomServer(::std::string const& address, int port); + MCFOLD void $addCustomServer(::std::string const& address, int port); - MCAPI void $stopServerDiscovery(); + MCFOLD void $stopServerDiscovery(); - MCAPI ::std::vector<::PingedCompatibleServer> $getServerList() const; + MCFOLD ::std::vector<::PingedCompatibleServer> $getServerList() const; - MCAPI void $clearServerList(); + MCFOLD void $clearServerList(); - MCAPI void $update(); + MCFOLD void $update(); - MCAPI float $getPingTimeForGUID(::std::string const& guid); + MCFOLD float $getPingTimeForGUID(::std::string const& guid); MCAPI void $checkCanConnectToCustomServerAsync( ::std::string hostIpAddress, diff --git a/src/mc/network/SubClientConnectionRequest.h b/src/mc/network/SubClientConnectionRequest.h index 3286c344a7..4d2aae959a 100644 --- a/src/mc/network/SubClientConnectionRequest.h +++ b/src/mc/network/SubClientConnectionRequest.h @@ -41,85 +41,85 @@ class SubClientConnectionRequest { MCAPI SubClientConnectionRequest(::std::unique_ptr<::WebToken> rawToken, ::std::string const& certificateString); - MCAPI ::std::vector<::AnimatedImageData> getAnimatedImageData() const; + MCFOLD ::std::vector<::AnimatedImageData> getAnimatedImageData() const; - MCAPI ::std::string getArmSize() const; + MCFOLD ::std::string getArmSize() const; - MCAPI ::std::vector getCapeData() const; + MCFOLD ::std::vector getCapeData() const; - MCAPI ::std::string getCapeId() const; + MCFOLD ::std::string getCapeId() const; - MCAPI ushort getCapeImageHeight() const; + MCFOLD ushort getCapeImageHeight() const; - MCAPI ushort getCapeImageWidth() const; + MCFOLD ushort getCapeImageWidth() const; - MCAPI ::Certificate const* getCertificate() const; + MCFOLD ::Certificate const* getCertificate() const; - MCAPI uint64 getClientRandomId() const; + MCFOLD uint64 getClientRandomId() const; - MCAPI ::InputMode getCurrentInputMode() const; + MCFOLD ::InputMode getCurrentInputMode() const; - MCAPI ::std::string getDeviceId() const; + MCFOLD ::std::string getDeviceId() const; - MCAPI ::BuildPlatform getDeviceOS() const; + MCFOLD ::BuildPlatform getDeviceOS() const; - MCAPI int getMaxViewDistance() const; + MCFOLD int getMaxViewDistance() const; - MCAPI ::DeviceMemoryTier getMemoryTier() const; + MCFOLD ::DeviceMemoryTier getMemoryTier() const; - MCAPI ::std::vector<::SerializedPersonaPieceHandle> getPersonaPieces() const; + MCFOLD ::std::vector<::SerializedPersonaPieceHandle> getPersonaPieces() const; - MCAPI ::std::unordered_map<::persona::PieceType, ::TintMapColor> getPieceTintColors() const; + MCFOLD ::std::unordered_map<::persona::PieceType, ::TintMapColor> getPieceTintColors() const; - MCAPI ::std::string getPlatformId() const; + MCFOLD ::std::string getPlatformId() const; - MCAPI ::std::string getPlatformOfflineId() const; + MCFOLD ::std::string getPlatformOfflineId() const; - MCAPI ::std::string getPlatformOnlineId() const; + MCFOLD ::std::string getPlatformOnlineId() const; - MCAPI ::PlatformType getPlatformType() const; + MCFOLD ::PlatformType getPlatformType() const; - MCAPI ::std::string getPlayFabId() const; + MCFOLD ::std::string getPlayFabId() const; - MCAPI ::std::string getSelfSignedId() const; + MCFOLD ::std::string getSelfSignedId() const; - MCAPI ::std::string getSkinAnimationData() const; + MCFOLD ::std::string getSkinAnimationData() const; - MCAPI ::mce::Color getSkinColor() const; + MCFOLD ::mce::Color getSkinColor() const; - MCAPI ::std::vector getSkinData() const; + MCFOLD ::std::vector getSkinData() const; MCAPI ::std::string getSkinGeometry() const; - MCAPI ::MinEngineVersion getSkinGeometryMinEngineVersion() const; + MCFOLD ::MinEngineVersion getSkinGeometryMinEngineVersion() const; - MCAPI ::std::string getSkinId() const; + MCFOLD ::std::string getSkinId() const; - MCAPI ushort getSkinImageHeight() const; + MCFOLD ushort getSkinImageHeight() const; - MCAPI ushort getSkinImageWidth() const; + MCFOLD ushort getSkinImageWidth() const; MCAPI ::std::string getSkinResourcePatch() const; - MCAPI ::std::string getThirdPartyName() const; + MCFOLD ::std::string getThirdPartyName() const; - MCAPI bool isCapeOnClassicSkin() const; + MCFOLD bool isCapeOnClassicSkin() const; - MCAPI bool isCompatibleWithClientSideChunkGen() const; + MCFOLD bool isCompatibleWithClientSideChunkGen() const; - MCAPI bool isOverrideSkin() const; + MCFOLD bool isOverrideSkin() const; - MCAPI bool isPersonaSkin() const; + MCFOLD bool isPersonaSkin() const; - MCAPI bool isPremiumSkin() const; + MCFOLD bool isPremiumSkin() const; MCAPI bool isPrimaryUser() const; - MCAPI bool isThirdPartyNameOnly() const; + MCFOLD bool isThirdPartyNameOnly() const; - MCAPI bool isTrustedSkin() const; + MCFOLD bool isTrustedSkin() const; - MCAPI ::std::string toString(); + MCFOLD ::std::string toString(); MCAPI bool verify(::std::vector<::std::string> const& trustedKeys, int64 currentTime); @@ -145,6 +145,6 @@ class SubClientConnectionRequest { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/network/WebRTCNetworkPeer.h b/src/mc/network/WebRTCNetworkPeer.h index 1d01969838..c95e338a81 100644 --- a/src/mc/network/WebRTCNetworkPeer.h +++ b/src/mc/network/WebRTCNetworkPeer.h @@ -61,9 +61,9 @@ class WebRTCNetworkPeer : public ::NetworkPeer { MCAPI void _updateConnectionStatus(); - MCAPI uint64 getPeerId() const; + MCFOLD uint64 getPeerId() const; - MCAPI uint64 getSessionId() const; + MCFOLD uint64 getSessionId() const; // NOLINTEND public: @@ -92,9 +92,9 @@ class WebRTCNetworkPeer : public ::NetworkPeer { MCAPI void $update(); - MCAPI bool $isLocal() const; + MCFOLD bool $isLocal() const; - MCAPI bool $isEncrypted() const; + MCFOLD bool $isEncrypted() const; // NOLINTEND public: diff --git a/src/mc/network/XboxLiveUserObserver.h b/src/mc/network/XboxLiveUserObserver.h index 8afc9ab451..4cd9c7b88c 100644 --- a/src/mc/network/XboxLiveUserObserver.h +++ b/src/mc/network/XboxLiveUserObserver.h @@ -29,7 +29,7 @@ class XboxLiveUserObserver : public ::Core::Observer<::Social::XboxLiveUserObser public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND public: diff --git a/src/mc/network/packet/ActorEventPacket.h b/src/mc/network/packet/ActorEventPacket.h index 7a3139e77b..935947444f 100644 --- a/src/mc/network/packet/ActorEventPacket.h +++ b/src/mc/network/packet/ActorEventPacket.h @@ -58,13 +58,13 @@ class ActorEventPacket : public ::Packet { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND public: // virtual function thunks // NOLINTBEGIN - MCAPI ::MinecraftPacketIds $getId() const; + MCFOLD ::MinecraftPacketIds $getId() const; MCAPI ::std::string $getName() const; diff --git a/src/mc/network/packet/AddActorBasePacket.h b/src/mc/network/packet/AddActorBasePacket.h index 3273d040f1..4f65e64bbb 100644 --- a/src/mc/network/packet/AddActorBasePacket.h +++ b/src/mc/network/packet/AddActorBasePacket.h @@ -29,7 +29,7 @@ class AddActorBasePacket : public ::Packet { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND public: diff --git a/src/mc/network/packet/AddActorPacket.h b/src/mc/network/packet/AddActorPacket.h index 2c8a836bcd..82c46075e1 100644 --- a/src/mc/network/packet/AddActorPacket.h +++ b/src/mc/network/packet/AddActorPacket.h @@ -89,7 +89,7 @@ class AddActorPacket : public ::AddActorBasePacket { public: // virtual function thunks // NOLINTBEGIN - MCAPI ::MinecraftPacketIds $getId() const; + MCFOLD ::MinecraftPacketIds $getId() const; MCAPI ::std::string $getName() const; diff --git a/src/mc/network/packet/AddItemActorPacket.h b/src/mc/network/packet/AddItemActorPacket.h index 620c981a5c..dbee1fd002 100644 --- a/src/mc/network/packet/AddItemActorPacket.h +++ b/src/mc/network/packet/AddItemActorPacket.h @@ -78,7 +78,7 @@ class AddItemActorPacket : public ::AddActorBasePacket { public: // virtual function thunks // NOLINTBEGIN - MCAPI ::MinecraftPacketIds $getId() const; + MCFOLD ::MinecraftPacketIds $getId() const; MCAPI ::std::string $getName() const; diff --git a/src/mc/network/packet/AddPlayerPacket.h b/src/mc/network/packet/AddPlayerPacket.h index 79d7889de4..a40cbe09ba 100644 --- a/src/mc/network/packet/AddPlayerPacket.h +++ b/src/mc/network/packet/AddPlayerPacket.h @@ -95,7 +95,7 @@ class AddPlayerPacket : public ::AddActorBasePacket { public: // virtual function thunks // NOLINTBEGIN - MCAPI ::MinecraftPacketIds $getId() const; + MCFOLD ::MinecraftPacketIds $getId() const; MCAPI ::std::string $getName() const; diff --git a/src/mc/network/packet/AgentAnimationPacket.h b/src/mc/network/packet/AgentAnimationPacket.h index 40f350ce89..1b24e486d1 100644 --- a/src/mc/network/packet/AgentAnimationPacket.h +++ b/src/mc/network/packet/AgentAnimationPacket.h @@ -61,7 +61,7 @@ class AgentAnimationPacket : public ::Packet { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND public: diff --git a/src/mc/network/packet/AnimatePacket.h b/src/mc/network/packet/AnimatePacket.h index c72dd50b70..423eeea140 100644 --- a/src/mc/network/packet/AnimatePacket.h +++ b/src/mc/network/packet/AnimatePacket.h @@ -82,7 +82,7 @@ class AnimatePacket : public ::Packet { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND public: diff --git a/src/mc/network/packet/AutomationClientConnectPacket.h b/src/mc/network/packet/AutomationClientConnectPacket.h index ca7f278b8e..097f923a55 100644 --- a/src/mc/network/packet/AutomationClientConnectPacket.h +++ b/src/mc/network/packet/AutomationClientConnectPacket.h @@ -59,7 +59,7 @@ class AutomationClientConnectPacket : public ::Packet { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND public: diff --git a/src/mc/network/packet/AvailableActorIdentifiersPacket.h b/src/mc/network/packet/AvailableActorIdentifiersPacket.h index 430175214e..67509e88d9 100644 --- a/src/mc/network/packet/AvailableActorIdentifiersPacket.h +++ b/src/mc/network/packet/AvailableActorIdentifiersPacket.h @@ -68,7 +68,7 @@ class AvailableActorIdentifiersPacket : public ::Packet { public: // virtual function thunks // NOLINTBEGIN - MCAPI ::MinecraftPacketIds $getId() const; + MCFOLD ::MinecraftPacketIds $getId() const; MCAPI ::std::string $getName() const; @@ -76,7 +76,7 @@ class AvailableActorIdentifiersPacket : public ::Packet { MCAPI ::Bedrock::Result $read(::ReadOnlyBinaryStream& bitStream); - MCAPI ::Bedrock::Result $_read(::ReadOnlyBinaryStream& stream); + MCFOLD ::Bedrock::Result $_read(::ReadOnlyBinaryStream& stream); // NOLINTEND public: diff --git a/src/mc/network/packet/AvailableCommandsPacket.h b/src/mc/network/packet/AvailableCommandsPacket.h index f072869a61..da5cbfe19e 100644 --- a/src/mc/network/packet/AvailableCommandsPacket.h +++ b/src/mc/network/packet/AvailableCommandsPacket.h @@ -45,7 +45,7 @@ class AvailableCommandsPacket : public ::Packet { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; @@ -75,7 +75,7 @@ class AvailableCommandsPacket : public ::Packet { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; @@ -97,7 +97,7 @@ class AvailableCommandsPacket : public ::Packet { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; @@ -120,7 +120,7 @@ class AvailableCommandsPacket : public ::Packet { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; @@ -141,7 +141,7 @@ class AvailableCommandsPacket : public ::Packet { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/network/packet/AwardAchievementPacket.h b/src/mc/network/packet/AwardAchievementPacket.h index 38d78f1241..360ce0e16d 100644 --- a/src/mc/network/packet/AwardAchievementPacket.h +++ b/src/mc/network/packet/AwardAchievementPacket.h @@ -58,7 +58,7 @@ class AwardAchievementPacket : public ::Packet { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND public: diff --git a/src/mc/network/packet/BiomeDefinitionListPacket.h b/src/mc/network/packet/BiomeDefinitionListPacket.h index 75e25083c3..f0cc84996f 100644 --- a/src/mc/network/packet/BiomeDefinitionListPacket.h +++ b/src/mc/network/packet/BiomeDefinitionListPacket.h @@ -62,7 +62,7 @@ class BiomeDefinitionListPacket : public ::Packet { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND public: @@ -72,11 +72,11 @@ class BiomeDefinitionListPacket : public ::Packet { MCAPI ::std::string $getName() const; - MCAPI void $write(::BinaryStream& stream) const; + MCFOLD void $write(::BinaryStream& stream) const; MCAPI ::Bedrock::Result $read(::ReadOnlyBinaryStream& bitStream); - MCAPI ::Bedrock::Result $_read(::ReadOnlyBinaryStream& stream); + MCFOLD ::Bedrock::Result $_read(::ReadOnlyBinaryStream& stream); // NOLINTEND public: diff --git a/src/mc/network/packet/BlockActorDataPacket.h b/src/mc/network/packet/BlockActorDataPacket.h index a6e5f9256b..eb62781644 100644 --- a/src/mc/network/packet/BlockActorDataPacket.h +++ b/src/mc/network/packet/BlockActorDataPacket.h @@ -68,7 +68,7 @@ class BlockActorDataPacket : public ::Packet { public: // virtual function thunks // NOLINTBEGIN - MCAPI ::MinecraftPacketIds $getId() const; + MCFOLD ::MinecraftPacketIds $getId() const; MCAPI ::std::string $getName() const; diff --git a/src/mc/network/packet/BlockEventPacket.h b/src/mc/network/packet/BlockEventPacket.h index 86b362d3af..728ecfe27f 100644 --- a/src/mc/network/packet/BlockEventPacket.h +++ b/src/mc/network/packet/BlockEventPacket.h @@ -62,7 +62,7 @@ class BlockEventPacket : public ::Packet { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND public: diff --git a/src/mc/network/packet/CameraAimAssistPacket.h b/src/mc/network/packet/CameraAimAssistPacket.h index b3592d088a..0c7d703ac6 100644 --- a/src/mc/network/packet/CameraAimAssistPacket.h +++ b/src/mc/network/packet/CameraAimAssistPacket.h @@ -87,7 +87,7 @@ class CameraAimAssistPacket : public ::Packet { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND public: diff --git a/src/mc/network/packet/CameraAimAssistPresetsPacket.h b/src/mc/network/packet/CameraAimAssistPresetsPacket.h index 0c40a1bc95..1647e5d503 100644 --- a/src/mc/network/packet/CameraAimAssistPresetsPacket.h +++ b/src/mc/network/packet/CameraAimAssistPresetsPacket.h @@ -62,7 +62,7 @@ class CameraAimAssistPresetsPacket : public ::Packet { public: // virtual function thunks // NOLINTBEGIN - MCAPI ::MinecraftPacketIds $getId() const; + MCFOLD ::MinecraftPacketIds $getId() const; MCAPI ::std::string $getName() const; @@ -70,7 +70,7 @@ class CameraAimAssistPresetsPacket : public ::Packet { MCAPI ::Bedrock::Result $read(::ReadOnlyBinaryStream& bitStream); - MCAPI ::Bedrock::Result $_read(::ReadOnlyBinaryStream& stream); + MCFOLD ::Bedrock::Result $_read(::ReadOnlyBinaryStream& stream); // NOLINTEND public: diff --git a/src/mc/network/packet/CameraInstructionPacket.h b/src/mc/network/packet/CameraInstructionPacket.h index 4dc0e8abcc..f20540a4fe 100644 --- a/src/mc/network/packet/CameraInstructionPacket.h +++ b/src/mc/network/packet/CameraInstructionPacket.h @@ -62,7 +62,7 @@ class CameraInstructionPacket : public ::Packet { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND public: @@ -76,7 +76,7 @@ class CameraInstructionPacket : public ::Packet { MCAPI ::Bedrock::Result $read(::ReadOnlyBinaryStream& bitStream); - MCAPI ::Bedrock::Result $_read(::ReadOnlyBinaryStream& stream); + MCFOLD ::Bedrock::Result $_read(::ReadOnlyBinaryStream& stream); // NOLINTEND public: diff --git a/src/mc/network/packet/CameraPacket.h b/src/mc/network/packet/CameraPacket.h index 2f66c55d76..538b951853 100644 --- a/src/mc/network/packet/CameraPacket.h +++ b/src/mc/network/packet/CameraPacket.h @@ -60,7 +60,7 @@ class CameraPacket : public ::Packet { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND public: @@ -70,7 +70,7 @@ class CameraPacket : public ::Packet { MCAPI ::std::string $getName() const; - MCAPI void $write(::BinaryStream& stream) const; + MCFOLD void $write(::BinaryStream& stream) const; MCAPI ::Bedrock::Result $_read(::ReadOnlyBinaryStream& stream); // NOLINTEND diff --git a/src/mc/network/packet/CameraPresetsPacket.h b/src/mc/network/packet/CameraPresetsPacket.h index ed554293f8..646006f1df 100644 --- a/src/mc/network/packet/CameraPresetsPacket.h +++ b/src/mc/network/packet/CameraPresetsPacket.h @@ -76,7 +76,7 @@ class CameraPresetsPacket : public ::Packet { MCAPI ::Bedrock::Result $read(::ReadOnlyBinaryStream& bitStream); - MCAPI ::Bedrock::Result $_read(::ReadOnlyBinaryStream& stream); + MCFOLD ::Bedrock::Result $_read(::ReadOnlyBinaryStream& stream); // NOLINTEND public: diff --git a/src/mc/network/packet/CameraShakePacket.h b/src/mc/network/packet/CameraShakePacket.h index d9d2305691..1fa4893aea 100644 --- a/src/mc/network/packet/CameraShakePacket.h +++ b/src/mc/network/packet/CameraShakePacket.h @@ -67,7 +67,7 @@ class CameraShakePacket : public ::Packet { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND public: diff --git a/src/mc/network/packet/ChangeDimensionPacket.h b/src/mc/network/packet/ChangeDimensionPacket.h index 09d4288814..bebef8a6a1 100644 --- a/src/mc/network/packet/ChangeDimensionPacket.h +++ b/src/mc/network/packet/ChangeDimensionPacket.h @@ -71,7 +71,7 @@ class ChangeDimensionPacket : public ::Packet { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND public: diff --git a/src/mc/network/packet/ChunkRadiusUpdatedPacket.h b/src/mc/network/packet/ChunkRadiusUpdatedPacket.h index c2bffc79c2..dc8c7e2166 100644 --- a/src/mc/network/packet/ChunkRadiusUpdatedPacket.h +++ b/src/mc/network/packet/ChunkRadiusUpdatedPacket.h @@ -58,13 +58,13 @@ class ChunkRadiusUpdatedPacket : public ::Packet { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND public: // virtual function thunks // NOLINTBEGIN - MCAPI ::MinecraftPacketIds $getId() const; + MCFOLD ::MinecraftPacketIds $getId() const; MCAPI ::std::string $getName() const; diff --git a/src/mc/network/packet/ClientToServerHandshakePacket.h b/src/mc/network/packet/ClientToServerHandshakePacket.h index 292d80c667..2e69736120 100644 --- a/src/mc/network/packet/ClientToServerHandshakePacket.h +++ b/src/mc/network/packet/ClientToServerHandshakePacket.h @@ -54,13 +54,13 @@ class ClientToServerHandshakePacket : public ::Packet { public: // virtual function thunks // NOLINTBEGIN - MCAPI ::MinecraftPacketIds $getId() const; + MCFOLD ::MinecraftPacketIds $getId() const; MCAPI ::std::string $getName() const; - MCAPI void $write(::BinaryStream& stream) const; + MCFOLD void $write(::BinaryStream& stream) const; - MCAPI ::Bedrock::Result $_read(::ReadOnlyBinaryStream& stream); + MCFOLD ::Bedrock::Result $_read(::ReadOnlyBinaryStream& stream); // NOLINTEND public: diff --git a/src/mc/network/packet/ClientboundCloseFormPacket.h b/src/mc/network/packet/ClientboundCloseFormPacket.h index 306233f3b1..eccbaba8db 100644 --- a/src/mc/network/packet/ClientboundCloseFormPacket.h +++ b/src/mc/network/packet/ClientboundCloseFormPacket.h @@ -36,7 +36,7 @@ class ClientboundCloseFormPacket : public ::Packet { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND public: @@ -46,9 +46,9 @@ class ClientboundCloseFormPacket : public ::Packet { MCAPI ::std::string $getName() const; - MCAPI void $write(::BinaryStream&) const; + MCFOLD void $write(::BinaryStream&) const; - MCAPI ::Bedrock::Result $_read(::ReadOnlyBinaryStream&); + MCFOLD ::Bedrock::Result $_read(::ReadOnlyBinaryStream&); // NOLINTEND public: diff --git a/src/mc/network/packet/CodeBuilderPacket.h b/src/mc/network/packet/CodeBuilderPacket.h index 3a20ba89dc..f4a84b3bac 100644 --- a/src/mc/network/packet/CodeBuilderPacket.h +++ b/src/mc/network/packet/CodeBuilderPacket.h @@ -43,7 +43,7 @@ class CodeBuilderPacket : public ::Packet { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND public: diff --git a/src/mc/network/packet/CommandRequestPacket.h b/src/mc/network/packet/CommandRequestPacket.h index 9b3efc9f01..338a5aa3b4 100644 --- a/src/mc/network/packet/CommandRequestPacket.h +++ b/src/mc/network/packet/CommandRequestPacket.h @@ -58,7 +58,7 @@ class CommandRequestPacket : public ::Packet { MCAPI ::std::unique_ptr<::CommandContext> createCommandContext(::NetworkIdentifier const& source, ::Bedrock::NonOwnerPointer<::ILevel> const& level) const; - MCAPI bool getInternalSource() const; + MCFOLD bool getInternalSource() const; // NOLINTEND public: diff --git a/src/mc/network/packet/CompletedUsingItemPacket.h b/src/mc/network/packet/CompletedUsingItemPacket.h index 26bfffca56..bb60617acd 100644 --- a/src/mc/network/packet/CompletedUsingItemPacket.h +++ b/src/mc/network/packet/CompletedUsingItemPacket.h @@ -59,7 +59,7 @@ class CompletedUsingItemPacket : public ::Packet { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND public: diff --git a/src/mc/network/packet/CompressedBiomeDefinitionListPacket.h b/src/mc/network/packet/CompressedBiomeDefinitionListPacket.h index bc62e511f5..e1ffea49e0 100644 --- a/src/mc/network/packet/CompressedBiomeDefinitionListPacket.h +++ b/src/mc/network/packet/CompressedBiomeDefinitionListPacket.h @@ -34,7 +34,7 @@ class CompressedBiomeDefinitionListPacket : public ::BiomeDefinitionListPacket { virtual void write(::BinaryStream& stream) const /*override*/; // vIndex: 5 - virtual ::Bedrock::Result read(::ReadOnlyBinaryStream& bitStream) /*override*/; + virtual ::Bedrock::Result read(::ReadOnlyBinaryStream& stream) /*override*/; // vIndex: 0 virtual ~CompressedBiomeDefinitionListPacket() /*override*/ = default; @@ -71,7 +71,7 @@ class CompressedBiomeDefinitionListPacket : public ::BiomeDefinitionListPacket { MCAPI void $write(::BinaryStream& stream) const; - MCAPI ::Bedrock::Result $read(::ReadOnlyBinaryStream& bitStream); + MCAPI ::Bedrock::Result $read(::ReadOnlyBinaryStream& stream); // NOLINTEND public: diff --git a/src/mc/network/packet/ContainerClosePacket.h b/src/mc/network/packet/ContainerClosePacket.h index 6a31edbff3..7e3c08da0b 100644 --- a/src/mc/network/packet/ContainerClosePacket.h +++ b/src/mc/network/packet/ContainerClosePacket.h @@ -62,7 +62,7 @@ class ContainerClosePacket : public ::Packet { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND public: diff --git a/src/mc/network/packet/ContainerOpenPacket.h b/src/mc/network/packet/ContainerOpenPacket.h index 730a89b1f5..8c0e16d7ac 100644 --- a/src/mc/network/packet/ContainerOpenPacket.h +++ b/src/mc/network/packet/ContainerOpenPacket.h @@ -72,7 +72,7 @@ class ContainerOpenPacket : public ::Packet { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND public: diff --git a/src/mc/network/packet/ContainerSetDataPacket.h b/src/mc/network/packet/ContainerSetDataPacket.h index e35908897b..bfe9002fee 100644 --- a/src/mc/network/packet/ContainerSetDataPacket.h +++ b/src/mc/network/packet/ContainerSetDataPacket.h @@ -61,13 +61,13 @@ class ContainerSetDataPacket : public ::Packet { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND public: // virtual function thunks // NOLINTBEGIN - MCAPI ::MinecraftPacketIds $getId() const; + MCFOLD ::MinecraftPacketIds $getId() const; MCAPI ::std::string $getName() const; diff --git a/src/mc/network/packet/CorrectPlayerMovePredictionPacket.h b/src/mc/network/packet/CorrectPlayerMovePredictionPacket.h index c0bfcc6c43..d51b51138a 100644 --- a/src/mc/network/packet/CorrectPlayerMovePredictionPacket.h +++ b/src/mc/network/packet/CorrectPlayerMovePredictionPacket.h @@ -52,7 +52,7 @@ class CorrectPlayerMovePredictionPacket : public ::Packet { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND public: diff --git a/src/mc/network/packet/CraftingDataPacket.h b/src/mc/network/packet/CraftingDataPacket.h index 8b6fb48d3b..e23628e5d7 100644 --- a/src/mc/network/packet/CraftingDataPacket.h +++ b/src/mc/network/packet/CraftingDataPacket.h @@ -76,7 +76,7 @@ class CraftingDataPacket : public ::Packet { public: // virtual function thunks // NOLINTBEGIN - MCAPI ::MinecraftPacketIds $getId() const; + MCFOLD ::MinecraftPacketIds $getId() const; MCAPI ::std::string $getName() const; diff --git a/src/mc/network/packet/CurrentStructureFeaturePacket.h b/src/mc/network/packet/CurrentStructureFeaturePacket.h index 1dafc47822..bb3bb6acff 100644 --- a/src/mc/network/packet/CurrentStructureFeaturePacket.h +++ b/src/mc/network/packet/CurrentStructureFeaturePacket.h @@ -54,7 +54,7 @@ class CurrentStructureFeaturePacket : public ::Packet { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND public: diff --git a/src/mc/network/packet/DisconnectPacket.h b/src/mc/network/packet/DisconnectPacket.h index a46859512f..091894dec4 100644 --- a/src/mc/network/packet/DisconnectPacket.h +++ b/src/mc/network/packet/DisconnectPacket.h @@ -74,7 +74,7 @@ class DisconnectPacket : public ::Packet { public: // virtual function thunks // NOLINTBEGIN - MCAPI ::MinecraftPacketIds $getId() const; + MCFOLD ::MinecraftPacketIds $getId() const; MCAPI ::std::string $getName() const; diff --git a/src/mc/network/packet/EditorNetworkPacket.h b/src/mc/network/packet/EditorNetworkPacket.h index 95cd4bfaeb..32f875c546 100644 --- a/src/mc/network/packet/EditorNetworkPacket.h +++ b/src/mc/network/packet/EditorNetworkPacket.h @@ -56,7 +56,7 @@ class EditorNetworkPacket : public ::Packet { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND public: diff --git a/src/mc/network/packet/EduUriResourcePacket.h b/src/mc/network/packet/EduUriResourcePacket.h index 23dbd44166..eca425757e 100644 --- a/src/mc/network/packet/EduUriResourcePacket.h +++ b/src/mc/network/packet/EduUriResourcePacket.h @@ -59,7 +59,7 @@ class EduUriResourcePacket : public ::Packet { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND public: diff --git a/src/mc/network/packet/GameRulesChangedPacketData.h b/src/mc/network/packet/GameRulesChangedPacketData.h index 083d0bfc81..7e8b69032c 100644 --- a/src/mc/network/packet/GameRulesChangedPacketData.h +++ b/src/mc/network/packet/GameRulesChangedPacketData.h @@ -19,7 +19,7 @@ class GameRulesChangedPacketData { // NOLINTBEGIN MCAPI void addRule(::GameRule const& rule); - MCAPI ::std::vector<::GameRule> const& getRules() const; + MCFOLD ::std::vector<::GameRule> const& getRules() const; MCAPI void setRules(::std::vector<::GameRule> rules); @@ -29,6 +29,6 @@ class GameRulesChangedPacketData { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/network/packet/GameTestRequestPacket.h b/src/mc/network/packet/GameTestRequestPacket.h index 567245b3e4..297bd1c543 100644 --- a/src/mc/network/packet/GameTestRequestPacket.h +++ b/src/mc/network/packet/GameTestRequestPacket.h @@ -46,9 +46,9 @@ class GameTestRequestPacket : public ::Packet { // NOLINTBEGIN MCAPI GameTestRequestPacket(); - MCAPI ::gametest::TestParameters const& getParams() const; + MCFOLD ::gametest::TestParameters const& getParams() const; - MCAPI ::std::string getTestName() const; + MCFOLD ::std::string getTestName() const; // NOLINTEND public: diff --git a/src/mc/network/packet/GuiDataPickItemPacket.h b/src/mc/network/packet/GuiDataPickItemPacket.h index 307d3c876b..2bc80d8f1f 100644 --- a/src/mc/network/packet/GuiDataPickItemPacket.h +++ b/src/mc/network/packet/GuiDataPickItemPacket.h @@ -60,7 +60,7 @@ class GuiDataPickItemPacket : public ::Packet { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND public: diff --git a/src/mc/network/packet/HurtArmorPacket.h b/src/mc/network/packet/HurtArmorPacket.h index 1553c41438..942c1517ed 100644 --- a/src/mc/network/packet/HurtArmorPacket.h +++ b/src/mc/network/packet/HurtArmorPacket.h @@ -61,7 +61,7 @@ class HurtArmorPacket : public ::Packet { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND public: diff --git a/src/mc/network/packet/InteractPacket.h b/src/mc/network/packet/InteractPacket.h index 7a353037df..d2b795c15e 100644 --- a/src/mc/network/packet/InteractPacket.h +++ b/src/mc/network/packet/InteractPacket.h @@ -72,7 +72,7 @@ class InteractPacket : public ::Packet { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND public: diff --git a/src/mc/network/packet/InventorySlotPacket.h b/src/mc/network/packet/InventorySlotPacket.h index 2edcd56c1f..741514fd49 100644 --- a/src/mc/network/packet/InventorySlotPacket.h +++ b/src/mc/network/packet/InventorySlotPacket.h @@ -88,7 +88,7 @@ class InventorySlotPacket : public ::Packet { public: // virtual function thunks // NOLINTBEGIN - MCAPI ::MinecraftPacketIds $getId() const; + MCFOLD ::MinecraftPacketIds $getId() const; MCAPI ::std::string $getName() const; diff --git a/src/mc/network/packet/ItemData.h b/src/mc/network/packet/ItemData.h index 224135c66a..defe75fe7f 100644 --- a/src/mc/network/packet/ItemData.h +++ b/src/mc/network/packet/ItemData.h @@ -32,6 +32,6 @@ struct ItemData { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/network/packet/ItemStackRequestPacket.h b/src/mc/network/packet/ItemStackRequestPacket.h index 1e8371f090..ab8ace6bfc 100644 --- a/src/mc/network/packet/ItemStackRequestPacket.h +++ b/src/mc/network/packet/ItemStackRequestPacket.h @@ -45,7 +45,7 @@ class ItemStackRequestPacket : public ::Packet { // NOLINTBEGIN MCAPI ItemStackRequestPacket(); - MCAPI ::ItemStackRequestBatch const& getRequestBatch() const; + MCFOLD ::ItemStackRequestBatch const& getRequestBatch() const; // NOLINTEND public: diff --git a/src/mc/network/packet/ItemStackResponsePacket.h b/src/mc/network/packet/ItemStackResponsePacket.h index 1f34bfaf35..f3a910cdd7 100644 --- a/src/mc/network/packet/ItemStackResponsePacket.h +++ b/src/mc/network/packet/ItemStackResponsePacket.h @@ -47,7 +47,7 @@ class ItemStackResponsePacket : public ::Packet { MCAPI explicit ItemStackResponsePacket(::std::vector<::ItemStackResponseInfo>&& responses); - MCAPI ::std::vector<::ItemStackResponseInfo> const& getResponses() const; + MCFOLD ::std::vector<::ItemStackResponseInfo> const& getResponses() const; // NOLINTEND public: diff --git a/src/mc/network/packet/JigsawStructureDataPacket.h b/src/mc/network/packet/JigsawStructureDataPacket.h index eed0f0709a..ed7ba5c7bc 100644 --- a/src/mc/network/packet/JigsawStructureDataPacket.h +++ b/src/mc/network/packet/JigsawStructureDataPacket.h @@ -56,7 +56,7 @@ class JigsawStructureDataPacket : public ::Packet { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND public: diff --git a/src/mc/network/packet/LabTablePacket.h b/src/mc/network/packet/LabTablePacket.h index 34e7547032..95ff4b9e8a 100644 --- a/src/mc/network/packet/LabTablePacket.h +++ b/src/mc/network/packet/LabTablePacket.h @@ -74,7 +74,7 @@ class LabTablePacket : public ::Packet { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND public: diff --git a/src/mc/network/packet/LessonProgressPacket.h b/src/mc/network/packet/LessonProgressPacket.h index 18e58b8c4b..988f55327a 100644 --- a/src/mc/network/packet/LessonProgressPacket.h +++ b/src/mc/network/packet/LessonProgressPacket.h @@ -61,7 +61,7 @@ class LessonProgressPacket : public ::Packet { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND public: diff --git a/src/mc/network/packet/LevelEventPacket.h b/src/mc/network/packet/LevelEventPacket.h index c02bfe2452..5ad4234cee 100644 --- a/src/mc/network/packet/LevelEventPacket.h +++ b/src/mc/network/packet/LevelEventPacket.h @@ -66,13 +66,13 @@ class LevelEventPacket : public ::Packet { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND public: // virtual function thunks // NOLINTBEGIN - MCAPI ::MinecraftPacketIds $getId() const; + MCFOLD ::MinecraftPacketIds $getId() const; MCAPI ::std::string $getName() const; diff --git a/src/mc/network/packet/LoginPacket.h b/src/mc/network/packet/LoginPacket.h index afd3f0376d..a915ed7264 100644 --- a/src/mc/network/packet/LoginPacket.h +++ b/src/mc/network/packet/LoginPacket.h @@ -70,11 +70,11 @@ class LoginPacket : public ::Packet { // NOLINTBEGIN MCAPI ::std::string $getName() const; - MCAPI ::MinecraftPacketIds $getId() const; + MCFOLD ::MinecraftPacketIds $getId() const; MCAPI void $write(::BinaryStream& stream) const; - MCAPI bool $disallowBatching() const; + MCFOLD bool $disallowBatching() const; MCAPI bool $isValid() const; diff --git a/src/mc/network/packet/MapCreateLockedCopyPacket.h b/src/mc/network/packet/MapCreateLockedCopyPacket.h index 8a7d072624..448e8c0187 100644 --- a/src/mc/network/packet/MapCreateLockedCopyPacket.h +++ b/src/mc/network/packet/MapCreateLockedCopyPacket.h @@ -48,9 +48,9 @@ class MapCreateLockedCopyPacket : public ::Packet { MCAPI MapCreateLockedCopyPacket(::ActorUniqueID originalMapId, ::ActorUniqueID newMapId); - MCAPI ::ActorUniqueID getNewMapId() const; + MCFOLD ::ActorUniqueID getNewMapId() const; - MCAPI ::ActorUniqueID getOriginalMapId() const; + MCFOLD ::ActorUniqueID getOriginalMapId() const; // NOLINTEND public: @@ -64,13 +64,13 @@ class MapCreateLockedCopyPacket : public ::Packet { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND public: // virtual function thunks // NOLINTBEGIN - MCAPI void $write(::BinaryStream& stream) const; + MCFOLD void $write(::BinaryStream& stream) const; MCAPI ::MinecraftPacketIds $getId() const; diff --git a/src/mc/network/packet/MapInfoRequestPacket.h b/src/mc/network/packet/MapInfoRequestPacket.h index 7cf51adb22..0cab647122 100644 --- a/src/mc/network/packet/MapInfoRequestPacket.h +++ b/src/mc/network/packet/MapInfoRequestPacket.h @@ -51,7 +51,7 @@ class MapInfoRequestPacket : public ::Packet { MCAPI MapInfoRequestPacket(::ActorUniqueID mapId, ::MapItemSavedData& map); - MCAPI ::ActorUniqueID getMapId() const; + MCFOLD ::ActorUniqueID getMapId() const; MCAPI bool replaceServerPixels(::MapItemSavedData& map) const; // NOLINTEND diff --git a/src/mc/network/packet/MaterialReducerDataEntry.h b/src/mc/network/packet/MaterialReducerDataEntry.h index 32a5f7717b..b6ab5cbd3b 100644 --- a/src/mc/network/packet/MaterialReducerDataEntry.h +++ b/src/mc/network/packet/MaterialReducerDataEntry.h @@ -24,6 +24,6 @@ struct MaterialReducerDataEntry { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/network/packet/MobArmorEquipmentPacket.h b/src/mc/network/packet/MobArmorEquipmentPacket.h index ca56ab18d8..905a6d1730 100644 --- a/src/mc/network/packet/MobArmorEquipmentPacket.h +++ b/src/mc/network/packet/MobArmorEquipmentPacket.h @@ -72,7 +72,7 @@ class MobArmorEquipmentPacket : public ::Packet { public: // virtual function thunks // NOLINTBEGIN - MCAPI ::MinecraftPacketIds $getId() const; + MCFOLD ::MinecraftPacketIds $getId() const; MCAPI ::std::string $getName() const; diff --git a/src/mc/network/packet/ModalFormRequestPacket.h b/src/mc/network/packet/ModalFormRequestPacket.h index fb5c4aa52c..d17d91c0e7 100644 --- a/src/mc/network/packet/ModalFormRequestPacket.h +++ b/src/mc/network/packet/ModalFormRequestPacket.h @@ -59,17 +59,17 @@ class ModalFormRequestPacket : public ::Packet { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND public: // virtual function thunks // NOLINTBEGIN - MCAPI ::MinecraftPacketIds $getId() const; + MCFOLD ::MinecraftPacketIds $getId() const; MCAPI ::std::string $getName() const; - MCAPI void $write(::BinaryStream& stream) const; + MCFOLD void $write(::BinaryStream& stream) const; MCAPI ::Bedrock::Result $_read(::ReadOnlyBinaryStream& stream); // NOLINTEND diff --git a/src/mc/network/packet/MotionPredictionHintsPacket.h b/src/mc/network/packet/MotionPredictionHintsPacket.h index 521e60443b..7db00fb327 100644 --- a/src/mc/network/packet/MotionPredictionHintsPacket.h +++ b/src/mc/network/packet/MotionPredictionHintsPacket.h @@ -63,7 +63,7 @@ class MotionPredictionHintsPacket : public ::Packet { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND public: diff --git a/src/mc/network/packet/MoveActorAbsolutePacket.h b/src/mc/network/packet/MoveActorAbsolutePacket.h index 1403e21759..ea5c6957b1 100644 --- a/src/mc/network/packet/MoveActorAbsolutePacket.h +++ b/src/mc/network/packet/MoveActorAbsolutePacket.h @@ -59,13 +59,13 @@ class MoveActorAbsolutePacket : public ::Packet { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND public: // virtual function thunks // NOLINTBEGIN - MCAPI ::MinecraftPacketIds $getId() const; + MCFOLD ::MinecraftPacketIds $getId() const; MCAPI ::std::string $getName() const; diff --git a/src/mc/network/packet/MoveActorDeltaPacket.h b/src/mc/network/packet/MoveActorDeltaPacket.h index 126c60d8ab..1aab1b2668 100644 --- a/src/mc/network/packet/MoveActorDeltaPacket.h +++ b/src/mc/network/packet/MoveActorDeltaPacket.h @@ -59,7 +59,7 @@ class MoveActorDeltaPacket : public ::Packet { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND public: diff --git a/src/mc/network/packet/MovePlayerPacket.h b/src/mc/network/packet/MovePlayerPacket.h index 05be4c1c16..b1cb2fe66a 100644 --- a/src/mc/network/packet/MovePlayerPacket.h +++ b/src/mc/network/packet/MovePlayerPacket.h @@ -86,13 +86,13 @@ class MovePlayerPacket : public ::Packet { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND public: // virtual function thunks // NOLINTBEGIN - MCAPI ::MinecraftPacketIds $getId() const; + MCFOLD ::MinecraftPacketIds $getId() const; MCAPI ::std::string $getName() const; diff --git a/src/mc/network/packet/MultiplayerSettingsPacket.h b/src/mc/network/packet/MultiplayerSettingsPacket.h index 925d0b2fcd..c79983ba2e 100644 --- a/src/mc/network/packet/MultiplayerSettingsPacket.h +++ b/src/mc/network/packet/MultiplayerSettingsPacket.h @@ -59,7 +59,7 @@ class MultiplayerSettingsPacket : public ::Packet { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND public: diff --git a/src/mc/network/packet/NetworkSettingsPacket.h b/src/mc/network/packet/NetworkSettingsPacket.h index c71618e99b..504657dc08 100644 --- a/src/mc/network/packet/NetworkSettingsPacket.h +++ b/src/mc/network/packet/NetworkSettingsPacket.h @@ -59,7 +59,7 @@ class NetworkSettingsPacket : public ::Packet { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND public: diff --git a/src/mc/network/packet/NpcRequestPacket.h b/src/mc/network/packet/NpcRequestPacket.h index fe1d92f4ac..5c23fc83da 100644 --- a/src/mc/network/packet/NpcRequestPacket.h +++ b/src/mc/network/packet/NpcRequestPacket.h @@ -68,13 +68,13 @@ class NpcRequestPacket : public ::Packet { uchar actionIndex ); - MCAPI ::std::string const& getInteractText() const; + MCFOLD ::std::string const& getInteractText() const; - MCAPI ::std::string const& getNpcName() const; + MCFOLD ::std::string const& getNpcName() const; - MCAPI ::std::string const& getSceneName() const; + MCFOLD ::std::string const& getSceneName() const; - MCAPI int getSkin() const; + MCFOLD int getSkin() const; // NOLINTEND public: diff --git a/src/mc/network/packet/OnScreenTextureAnimationPacket.h b/src/mc/network/packet/OnScreenTextureAnimationPacket.h index a04f4c0eac..b214e97497 100644 --- a/src/mc/network/packet/OnScreenTextureAnimationPacket.h +++ b/src/mc/network/packet/OnScreenTextureAnimationPacket.h @@ -58,7 +58,7 @@ class OnScreenTextureAnimationPacket : public ::Packet { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND public: diff --git a/src/mc/network/packet/OpenSignPacket.h b/src/mc/network/packet/OpenSignPacket.h index 5949d65ad2..73eb02bc68 100644 --- a/src/mc/network/packet/OpenSignPacket.h +++ b/src/mc/network/packet/OpenSignPacket.h @@ -61,7 +61,7 @@ class OpenSignPacket : public ::Packet { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND public: diff --git a/src/mc/network/packet/Packet.h b/src/mc/network/packet/Packet.h index e72fd17ecb..bc8c9a4548 100644 --- a/src/mc/network/packet/Packet.h +++ b/src/mc/network/packet/Packet.h @@ -75,7 +75,7 @@ class Packet { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND public: @@ -85,9 +85,9 @@ class Packet { MCAPI ::Bedrock::Result $read(::ReadOnlyBinaryStream& bitStream); - MCAPI bool $disallowBatching() const; + MCFOLD bool $disallowBatching() const; - MCAPI bool $isValid() const; + MCFOLD bool $isValid() const; // NOLINTEND public: diff --git a/src/mc/network/packet/PassengerJumpPacket.h b/src/mc/network/packet/PassengerJumpPacket.h index 34d06b1e51..1cce12d3f4 100644 --- a/src/mc/network/packet/PassengerJumpPacket.h +++ b/src/mc/network/packet/PassengerJumpPacket.h @@ -64,7 +64,7 @@ class PassengerJumpPacket : public ::Packet { public: // virtual function thunks // NOLINTBEGIN - MCAPI ::MinecraftPacketIds $getId() const; + MCFOLD ::MinecraftPacketIds $getId() const; MCAPI ::std::string $getName() const; diff --git a/src/mc/network/packet/PlaySoundPacket.h b/src/mc/network/packet/PlaySoundPacket.h index cd3d267d5f..b78f6cf98a 100644 --- a/src/mc/network/packet/PlaySoundPacket.h +++ b/src/mc/network/packet/PlaySoundPacket.h @@ -63,7 +63,7 @@ class PlaySoundPacket : public ::Packet { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND public: diff --git a/src/mc/network/packet/PlayStatusPacket.h b/src/mc/network/packet/PlayStatusPacket.h index eb00e6a8d5..104d762b28 100644 --- a/src/mc/network/packet/PlayStatusPacket.h +++ b/src/mc/network/packet/PlayStatusPacket.h @@ -59,13 +59,13 @@ class PlayStatusPacket : public ::Packet { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND public: // virtual function thunks // NOLINTBEGIN - MCAPI ::MinecraftPacketIds $getId() const; + MCFOLD ::MinecraftPacketIds $getId() const; MCAPI ::std::string $getName() const; diff --git a/src/mc/network/packet/PlayerActionPacket.h b/src/mc/network/packet/PlayerActionPacket.h index a48a2f099e..ee1458b242 100644 --- a/src/mc/network/packet/PlayerActionPacket.h +++ b/src/mc/network/packet/PlayerActionPacket.h @@ -69,9 +69,9 @@ class PlayerActionPacket : public ::Packet { ::ActorRuntimeID runtimeId ); - MCAPI bool getIsFromServerPlayerMovementSystem() const; + MCFOLD bool getIsFromServerPlayerMovementSystem() const; - MCAPI void setFromServerPlayerMovementSystem(bool value); + MCFOLD void setFromServerPlayerMovementSystem(bool value); // NOLINTEND public: @@ -99,7 +99,7 @@ class PlayerActionPacket : public ::Packet { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND public: diff --git a/src/mc/network/packet/PlayerArmorDamagePacket.h b/src/mc/network/packet/PlayerArmorDamagePacket.h index aeaecc8b91..4e00e5ee80 100644 --- a/src/mc/network/packet/PlayerArmorDamagePacket.h +++ b/src/mc/network/packet/PlayerArmorDamagePacket.h @@ -43,7 +43,7 @@ class PlayerArmorDamagePacket : public ::Packet { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND public: diff --git a/src/mc/network/packet/PlayerHotbarPacket.h b/src/mc/network/packet/PlayerHotbarPacket.h index e123b3f507..c36486511a 100644 --- a/src/mc/network/packet/PlayerHotbarPacket.h +++ b/src/mc/network/packet/PlayerHotbarPacket.h @@ -61,7 +61,7 @@ class PlayerHotbarPacket : public ::Packet { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND public: diff --git a/src/mc/network/packet/PlayerInputTick.h b/src/mc/network/packet/PlayerInputTick.h index 8671358fa8..05be3ee9c3 100644 --- a/src/mc/network/packet/PlayerInputTick.h +++ b/src/mc/network/packet/PlayerInputTick.h @@ -14,12 +14,12 @@ struct PlayerInputTick { // NOLINTBEGIN MCAPI explicit PlayerInputTick(uint64 value); - MCAPI explicit operator uint64() const; + MCFOLD explicit operator uint64() const; // NOLINTEND public: // constructor thunks // NOLINTBEGIN - MCAPI void* $ctor(uint64 value); + MCFOLD void* $ctor(uint64 value); // NOLINTEND }; diff --git a/src/mc/network/packet/PlayerListPacket.h b/src/mc/network/packet/PlayerListPacket.h index ab661c2daa..a64d9f6075 100644 --- a/src/mc/network/packet/PlayerListPacket.h +++ b/src/mc/network/packet/PlayerListPacket.h @@ -74,7 +74,7 @@ class PlayerListPacket : public ::Packet { MCAPI void $write(::BinaryStream& stream) const; - MCAPI ::Bedrock::Result $read(::ReadOnlyBinaryStream& bitStream); + MCFOLD ::Bedrock::Result $read(::ReadOnlyBinaryStream& bitStream); MCAPI ::Bedrock::Result $_read(::ReadOnlyBinaryStream& stream); // NOLINTEND diff --git a/src/mc/network/packet/PlayerSkinPacket.h b/src/mc/network/packet/PlayerSkinPacket.h index d0a381ac8c..bee81c7405 100644 --- a/src/mc/network/packet/PlayerSkinPacket.h +++ b/src/mc/network/packet/PlayerSkinPacket.h @@ -41,7 +41,7 @@ class PlayerSkinPacket : public ::Packet { virtual void write(::BinaryStream& stream) const /*override*/; // vIndex: 5 - virtual ::Bedrock::Result read(::ReadOnlyBinaryStream& bitStream) /*override*/; + virtual ::Bedrock::Result read(::ReadOnlyBinaryStream& stream) /*override*/; // vIndex: 8 virtual ::Bedrock::Result _read(::ReadOnlyBinaryStream& stream) /*override*/; @@ -74,9 +74,9 @@ class PlayerSkinPacket : public ::Packet { MCAPI void $write(::BinaryStream& stream) const; - MCAPI ::Bedrock::Result $read(::ReadOnlyBinaryStream& bitStream); + MCAPI ::Bedrock::Result $read(::ReadOnlyBinaryStream& stream); - MCAPI ::Bedrock::Result $_read(::ReadOnlyBinaryStream& stream); + MCFOLD ::Bedrock::Result $_read(::ReadOnlyBinaryStream& stream); // NOLINTEND public: diff --git a/src/mc/network/packet/PositionTrackingDBClientRequestPacket.h b/src/mc/network/packet/PositionTrackingDBClientRequestPacket.h index 30af39a713..4d08cf7ec6 100644 --- a/src/mc/network/packet/PositionTrackingDBClientRequestPacket.h +++ b/src/mc/network/packet/PositionTrackingDBClientRequestPacket.h @@ -62,7 +62,7 @@ class PositionTrackingDBClientRequestPacket : public ::Packet { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND public: diff --git a/src/mc/network/packet/PotionMixDataEntry.h b/src/mc/network/packet/PotionMixDataEntry.h index e9e3929cd3..e0288a7a0f 100644 --- a/src/mc/network/packet/PotionMixDataEntry.h +++ b/src/mc/network/packet/PotionMixDataEntry.h @@ -6,17 +6,11 @@ struct PotionMixDataEntry { public: // member variables // NOLINTBEGIN - ::ll::UntypedStorage<4, 4> mUnk40300c; - ::ll::UntypedStorage<4, 4> mUnk45882e; - ::ll::UntypedStorage<4, 4> mUnkc1ee8b; - ::ll::UntypedStorage<4, 4> mUnk2c936a; - ::ll::UntypedStorage<4, 4> mUnke3fc55; - ::ll::UntypedStorage<4, 4> mUnk7a3e78; + ::ll::TypedStorage<4, 4, int> fromItemId; + ::ll::TypedStorage<4, 4, int> fromItemAux; + ::ll::TypedStorage<4, 4, int> reagentItemId; + ::ll::TypedStorage<4, 4, int> reagentItemAux; + ::ll::TypedStorage<4, 4, int> toItemId; + ::ll::TypedStorage<4, 4, int> toItemAux; // NOLINTEND - -public: - // prevent constructor by default - PotionMixDataEntry& operator=(PotionMixDataEntry const&); - PotionMixDataEntry(PotionMixDataEntry const&); - PotionMixDataEntry(); }; diff --git a/src/mc/network/packet/RefreshEntitlementsPacket.h b/src/mc/network/packet/RefreshEntitlementsPacket.h index b6fd531450..33e0ad833d 100644 --- a/src/mc/network/packet/RefreshEntitlementsPacket.h +++ b/src/mc/network/packet/RefreshEntitlementsPacket.h @@ -46,9 +46,9 @@ class RefreshEntitlementsPacket : public ::Packet { MCAPI ::std::string $getName() const; - MCAPI void $write(::BinaryStream&) const; + MCFOLD void $write(::BinaryStream&) const; - MCAPI ::Bedrock::Result $_read(::ReadOnlyBinaryStream&); + MCFOLD ::Bedrock::Result $_read(::ReadOnlyBinaryStream&); // NOLINTEND public: diff --git a/src/mc/network/packet/RemoveActorPacket.h b/src/mc/network/packet/RemoveActorPacket.h index 70cd590420..4e4f1d5c67 100644 --- a/src/mc/network/packet/RemoveActorPacket.h +++ b/src/mc/network/packet/RemoveActorPacket.h @@ -59,13 +59,13 @@ class RemoveActorPacket : public ::Packet { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND public: // virtual function thunks // NOLINTBEGIN - MCAPI ::MinecraftPacketIds $getId() const; + MCFOLD ::MinecraftPacketIds $getId() const; MCAPI ::std::string $getName() const; diff --git a/src/mc/network/packet/RemoveObjectivePacket.h b/src/mc/network/packet/RemoveObjectivePacket.h index 542a27e422..a69997cd28 100644 --- a/src/mc/network/packet/RemoveObjectivePacket.h +++ b/src/mc/network/packet/RemoveObjectivePacket.h @@ -59,7 +59,7 @@ class RemoveObjectivePacket : public ::Packet { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND public: diff --git a/src/mc/network/packet/RequestAbilityPacket.h b/src/mc/network/packet/RequestAbilityPacket.h index 21864dd0e5..fd6fb7b8a0 100644 --- a/src/mc/network/packet/RequestAbilityPacket.h +++ b/src/mc/network/packet/RequestAbilityPacket.h @@ -55,7 +55,7 @@ class RequestAbilityPacket : public ::Packet { // NOLINTBEGIN MCAPI RequestAbilityPacket(); - MCAPI ::AbilitiesIndex getAbility() const; + MCFOLD ::AbilitiesIndex getAbility() const; MCAPI bool tryGetBool(bool& outValue) const; // NOLINTEND diff --git a/src/mc/network/packet/RequestPermissionsPacket.h b/src/mc/network/packet/RequestPermissionsPacket.h index 8617dfd3cd..6418f65f68 100644 --- a/src/mc/network/packet/RequestPermissionsPacket.h +++ b/src/mc/network/packet/RequestPermissionsPacket.h @@ -65,9 +65,9 @@ class RequestPermissionsPacket : public ::Packet { MCAPI bool getCustomAbilityValue(::AbilitiesIndex ability) const; - MCAPI ::PlayerPermissionLevel getPlayerPermissions() const; + MCFOLD ::PlayerPermissionLevel getPlayerPermissions() const; - MCAPI ::ActorUniqueID getTargetPlayerId() const; + MCFOLD ::ActorUniqueID getTargetPlayerId() const; // NOLINTEND public: diff --git a/src/mc/network/packet/ResourcePackChunkDataPacket.h b/src/mc/network/packet/ResourcePackChunkDataPacket.h index 73e893b854..0ae0e545ed 100644 --- a/src/mc/network/packet/ResourcePackChunkDataPacket.h +++ b/src/mc/network/packet/ResourcePackChunkDataPacket.h @@ -72,7 +72,7 @@ class ResourcePackChunkDataPacket : public ::Packet { public: // virtual function thunks // NOLINTBEGIN - MCAPI ::MinecraftPacketIds $getId() const; + MCFOLD ::MinecraftPacketIds $getId() const; MCAPI ::std::string $getName() const; diff --git a/src/mc/network/packet/ResourcePackClientResponsePacket.h b/src/mc/network/packet/ResourcePackClientResponsePacket.h index a3c58a5014..ac97964403 100644 --- a/src/mc/network/packet/ResourcePackClientResponsePacket.h +++ b/src/mc/network/packet/ResourcePackClientResponsePacket.h @@ -46,7 +46,7 @@ class ResourcePackClientResponsePacket : public ::Packet { // NOLINTBEGIN MCAPI ResourcePackClientResponsePacket(); - MCAPI ::std::set<::std::string> const& getDownloadingPacks() const; + MCFOLD ::std::set<::std::string> const& getDownloadingPacks() const; MCAPI bool isResponse(::ResourcePackResponse haveThis) const; // NOLINTEND @@ -66,7 +66,7 @@ class ResourcePackClientResponsePacket : public ::Packet { public: // virtual function thunks // NOLINTBEGIN - MCAPI ::MinecraftPacketIds $getId() const; + MCFOLD ::MinecraftPacketIds $getId() const; MCAPI ::std::string $getName() const; diff --git a/src/mc/network/packet/ResourcePackStackPacket.h b/src/mc/network/packet/ResourcePackStackPacket.h index 1306ae8640..0479e6210a 100644 --- a/src/mc/network/packet/ResourcePackStackPacket.h +++ b/src/mc/network/packet/ResourcePackStackPacket.h @@ -87,7 +87,7 @@ class ResourcePackStackPacket : public ::Packet { public: // virtual function thunks // NOLINTBEGIN - MCAPI ::MinecraftPacketIds $getId() const; + MCFOLD ::MinecraftPacketIds $getId() const; MCAPI ::std::string $getName() const; diff --git a/src/mc/network/packet/ResourcePacksInfoPacket.h b/src/mc/network/packet/ResourcePacksInfoPacket.h index f46137360c..a814ecdc00 100644 --- a/src/mc/network/packet/ResourcePacksInfoPacket.h +++ b/src/mc/network/packet/ResourcePacksInfoPacket.h @@ -77,7 +77,7 @@ class ResourcePacksInfoPacket : public ::Packet { public: // virtual function thunks // NOLINTBEGIN - MCAPI ::MinecraftPacketIds $getId() const; + MCFOLD ::MinecraftPacketIds $getId() const; MCAPI ::std::string $getName() const; diff --git a/src/mc/network/packet/RespawnPacket.h b/src/mc/network/packet/RespawnPacket.h index 40ed3432a9..8f09e23bb6 100644 --- a/src/mc/network/packet/RespawnPacket.h +++ b/src/mc/network/packet/RespawnPacket.h @@ -63,7 +63,7 @@ class RespawnPacket : public ::Packet { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND public: diff --git a/src/mc/network/packet/ScorePacketInfo.h b/src/mc/network/packet/ScorePacketInfo.h index 8874b2db34..cb895d0a7d 100644 --- a/src/mc/network/packet/ScorePacketInfo.h +++ b/src/mc/network/packet/ScorePacketInfo.h @@ -34,6 +34,6 @@ struct ScorePacketInfo { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/network/packet/ScriptMessagePacket.h b/src/mc/network/packet/ScriptMessagePacket.h index 24113a7d2a..04c3756a80 100644 --- a/src/mc/network/packet/ScriptMessagePacket.h +++ b/src/mc/network/packet/ScriptMessagePacket.h @@ -47,9 +47,9 @@ class ScriptMessagePacket : public ::Packet { MCAPI ScriptMessagePacket(::std::string const& messageId, ::std::string const& messageValue); - MCAPI ::std::string const& getMessageId() const; + MCFOLD ::std::string const& getMessageId() const; - MCAPI ::std::string const& getMessageValue() const; + MCFOLD ::std::string const& getMessageValue() const; // NOLINTEND public: @@ -63,7 +63,7 @@ class ScriptMessagePacket : public ::Packet { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND public: diff --git a/src/mc/network/packet/ServerPlayerPostMovePositionPacket.h b/src/mc/network/packet/ServerPlayerPostMovePositionPacket.h index 71d62f2292..3fc7b4a9ed 100644 --- a/src/mc/network/packet/ServerPlayerPostMovePositionPacket.h +++ b/src/mc/network/packet/ServerPlayerPostMovePositionPacket.h @@ -52,7 +52,7 @@ class ServerPlayerPostMovePositionPacket : public ::Packet { public: // virtual function thunks // NOLINTBEGIN - MCAPI ::MinecraftPacketIds $getId() const; + MCFOLD ::MinecraftPacketIds $getId() const; MCAPI ::std::string $getName() const; @@ -60,7 +60,7 @@ class ServerPlayerPostMovePositionPacket : public ::Packet { MCAPI ::Bedrock::Result $read(::ReadOnlyBinaryStream& bitStream); - MCAPI ::Bedrock::Result $_read(::ReadOnlyBinaryStream& stream); + MCFOLD ::Bedrock::Result $_read(::ReadOnlyBinaryStream& stream); // NOLINTEND public: diff --git a/src/mc/network/packet/ServerSettingsRequestPacket.h b/src/mc/network/packet/ServerSettingsRequestPacket.h index 9a4ccf6191..86239919d5 100644 --- a/src/mc/network/packet/ServerSettingsRequestPacket.h +++ b/src/mc/network/packet/ServerSettingsRequestPacket.h @@ -58,9 +58,9 @@ class ServerSettingsRequestPacket : public ::Packet { MCAPI ::std::string $getName() const; - MCAPI void $write(::BinaryStream& stream) const; + MCFOLD void $write(::BinaryStream& stream) const; - MCAPI ::Bedrock::Result $_read(::ReadOnlyBinaryStream& stream); + MCFOLD ::Bedrock::Result $_read(::ReadOnlyBinaryStream& stream); // NOLINTEND public: diff --git a/src/mc/network/packet/ServerSettingsResponsePacket.h b/src/mc/network/packet/ServerSettingsResponsePacket.h index 3e0a1c2d1d..e75583663b 100644 --- a/src/mc/network/packet/ServerSettingsResponsePacket.h +++ b/src/mc/network/packet/ServerSettingsResponsePacket.h @@ -65,7 +65,7 @@ class ServerSettingsResponsePacket : public ::Packet { MCAPI ::std::string $getName() const; - MCAPI void $write(::BinaryStream& stream) const; + MCFOLD void $write(::BinaryStream& stream) const; MCAPI ::Bedrock::Result $_read(::ReadOnlyBinaryStream& stream); // NOLINTEND diff --git a/src/mc/network/packet/ServerToClientHandshakePacket.h b/src/mc/network/packet/ServerToClientHandshakePacket.h index df92417314..f25075ce72 100644 --- a/src/mc/network/packet/ServerToClientHandshakePacket.h +++ b/src/mc/network/packet/ServerToClientHandshakePacket.h @@ -58,13 +58,13 @@ class ServerToClientHandshakePacket : public ::Packet { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND public: // virtual function thunks // NOLINTBEGIN - MCAPI ::MinecraftPacketIds $getId() const; + MCFOLD ::MinecraftPacketIds $getId() const; MCAPI ::std::string $getName() const; diff --git a/src/mc/network/packet/ServerboundDiagnosticsPacket.h b/src/mc/network/packet/ServerboundDiagnosticsPacket.h index f792253db8..30030eded0 100644 --- a/src/mc/network/packet/ServerboundDiagnosticsPacket.h +++ b/src/mc/network/packet/ServerboundDiagnosticsPacket.h @@ -43,13 +43,13 @@ class ServerboundDiagnosticsPacket : public ::Packet { public: // member functions // NOLINTBEGIN - MCAPI ::ProfilerLiteTelemetry const& getTelemetry() const; + MCFOLD ::ProfilerLiteTelemetry const& getTelemetry() const; // NOLINTEND public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND public: diff --git a/src/mc/network/packet/ServerboundLoadingScreenPacket.h b/src/mc/network/packet/ServerboundLoadingScreenPacket.h index cd6960a588..238d1e7d5a 100644 --- a/src/mc/network/packet/ServerboundLoadingScreenPacket.h +++ b/src/mc/network/packet/ServerboundLoadingScreenPacket.h @@ -49,7 +49,7 @@ class ServerboundLoadingScreenPacket : public ::Packet { MCAPI ::NewType<::std::optional> getLoadingScreenId() const; - MCAPI ::ServerboundLoadingScreenPacketType getServerboundLoadingScreenPacketType() const; + MCFOLD ::ServerboundLoadingScreenPacketType getServerboundLoadingScreenPacketType() const; // NOLINTEND public: diff --git a/src/mc/network/packet/SetActorLinkPacket.h b/src/mc/network/packet/SetActorLinkPacket.h index d61b3f40ca..c8a7e06a2d 100644 --- a/src/mc/network/packet/SetActorLinkPacket.h +++ b/src/mc/network/packet/SetActorLinkPacket.h @@ -59,13 +59,13 @@ class SetActorLinkPacket : public ::Packet { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND public: // virtual function thunks // NOLINTBEGIN - MCAPI ::MinecraftPacketIds $getId() const; + MCFOLD ::MinecraftPacketIds $getId() const; MCAPI ::std::string $getName() const; diff --git a/src/mc/network/packet/SetActorMotionPacket.h b/src/mc/network/packet/SetActorMotionPacket.h index 127fd88eff..eed1abb34d 100644 --- a/src/mc/network/packet/SetActorMotionPacket.h +++ b/src/mc/network/packet/SetActorMotionPacket.h @@ -64,13 +64,13 @@ class SetActorMotionPacket : public ::Packet { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND public: // virtual function thunks // NOLINTBEGIN - MCAPI ::MinecraftPacketIds $getId() const; + MCFOLD ::MinecraftPacketIds $getId() const; MCAPI ::std::string $getName() const; diff --git a/src/mc/network/packet/SetCommandsEnabledPacket.h b/src/mc/network/packet/SetCommandsEnabledPacket.h index 384e0a80d4..90c7823ccf 100644 --- a/src/mc/network/packet/SetCommandsEnabledPacket.h +++ b/src/mc/network/packet/SetCommandsEnabledPacket.h @@ -58,7 +58,7 @@ class SetCommandsEnabledPacket : public ::Packet { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND public: diff --git a/src/mc/network/packet/SetDifficultyPacket.h b/src/mc/network/packet/SetDifficultyPacket.h index 28ad5dea85..bad44f1684 100644 --- a/src/mc/network/packet/SetDifficultyPacket.h +++ b/src/mc/network/packet/SetDifficultyPacket.h @@ -47,7 +47,7 @@ class SetDifficultyPacket : public ::Packet { MCAPI explicit SetDifficultyPacket(::Difficulty difficulty); - MCAPI ::Difficulty getDifficulty() const; + MCFOLD ::Difficulty getDifficulty() const; // NOLINTEND public: @@ -61,7 +61,7 @@ class SetDifficultyPacket : public ::Packet { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND public: diff --git a/src/mc/network/packet/SetHealthPacket.h b/src/mc/network/packet/SetHealthPacket.h index 9555119581..971d159f63 100644 --- a/src/mc/network/packet/SetHealthPacket.h +++ b/src/mc/network/packet/SetHealthPacket.h @@ -58,7 +58,7 @@ class SetHealthPacket : public ::Packet { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND public: diff --git a/src/mc/network/packet/SetLastHurtByPacket.h b/src/mc/network/packet/SetLastHurtByPacket.h index c320593c55..94b0e2d2cf 100644 --- a/src/mc/network/packet/SetLastHurtByPacket.h +++ b/src/mc/network/packet/SetLastHurtByPacket.h @@ -59,13 +59,13 @@ class SetLastHurtByPacket : public ::Packet { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND public: // virtual function thunks // NOLINTBEGIN - MCAPI ::MinecraftPacketIds $getId() const; + MCFOLD ::MinecraftPacketIds $getId() const; MCAPI ::std::string $getName() const; diff --git a/src/mc/network/packet/SetMovementAuthorityPacket.h b/src/mc/network/packet/SetMovementAuthorityPacket.h index 9ba48d787f..70c0e3486b 100644 --- a/src/mc/network/packet/SetMovementAuthorityPacket.h +++ b/src/mc/network/packet/SetMovementAuthorityPacket.h @@ -55,7 +55,7 @@ class SetMovementAuthorityPacket : public ::Packet { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND public: diff --git a/src/mc/network/packet/SetPlayerInventoryOptionsPacket.h b/src/mc/network/packet/SetPlayerInventoryOptionsPacket.h index 7027cb01c8..dedb3a252f 100644 --- a/src/mc/network/packet/SetPlayerInventoryOptionsPacket.h +++ b/src/mc/network/packet/SetPlayerInventoryOptionsPacket.h @@ -47,7 +47,7 @@ class SetPlayerInventoryOptionsPacket : public ::Packet { MCAPI explicit SetPlayerInventoryOptionsPacket(::InventoryOptions const& inventoryOptions); - MCAPI ::InventoryOptions const& getInventoryOptions() const; + MCFOLD ::InventoryOptions const& getInventoryOptions() const; // NOLINTEND public: @@ -61,7 +61,7 @@ class SetPlayerInventoryOptionsPacket : public ::Packet { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND public: diff --git a/src/mc/network/packet/SetSpawnPositionPacket.h b/src/mc/network/packet/SetSpawnPositionPacket.h index 9b329de46b..98a8b0f607 100644 --- a/src/mc/network/packet/SetSpawnPositionPacket.h +++ b/src/mc/network/packet/SetSpawnPositionPacket.h @@ -74,7 +74,7 @@ class SetSpawnPositionPacket : public ::Packet { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND public: diff --git a/src/mc/network/packet/SetTimePacket.h b/src/mc/network/packet/SetTimePacket.h index 9c385734ea..7eb0f1eae4 100644 --- a/src/mc/network/packet/SetTimePacket.h +++ b/src/mc/network/packet/SetTimePacket.h @@ -58,13 +58,13 @@ class SetTimePacket : public ::Packet { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND public: // virtual function thunks // NOLINTBEGIN - MCAPI ::MinecraftPacketIds $getId() const; + MCFOLD ::MinecraftPacketIds $getId() const; MCAPI ::std::string $getName() const; diff --git a/src/mc/network/packet/SettingsCommandPacket.h b/src/mc/network/packet/SettingsCommandPacket.h index 1da780b5f6..4b86b1061e 100644 --- a/src/mc/network/packet/SettingsCommandPacket.h +++ b/src/mc/network/packet/SettingsCommandPacket.h @@ -45,9 +45,9 @@ class SettingsCommandPacket : public ::Packet { // NOLINTBEGIN MCAPI SettingsCommandPacket(); - MCAPI ::std::string const& getCommandString() const; + MCFOLD ::std::string const& getCommandString() const; - MCAPI bool getSupressOutput() const; + MCFOLD bool getSupressOutput() const; // NOLINTEND public: @@ -65,7 +65,7 @@ class SettingsCommandPacket : public ::Packet { public: // virtual function thunks // NOLINTBEGIN - MCAPI ::MinecraftPacketIds $getId() const; + MCFOLD ::MinecraftPacketIds $getId() const; MCAPI ::std::string $getName() const; diff --git a/src/mc/network/packet/ShowCreditsPacket.h b/src/mc/network/packet/ShowCreditsPacket.h index 8f8ab6f37d..4cecdf4a24 100644 --- a/src/mc/network/packet/ShowCreditsPacket.h +++ b/src/mc/network/packet/ShowCreditsPacket.h @@ -67,7 +67,7 @@ class ShowCreditsPacket : public ::Packet { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND public: diff --git a/src/mc/network/packet/ShowStoreOfferPacket.h b/src/mc/network/packet/ShowStoreOfferPacket.h index 5fc5d85310..6d15be7156 100644 --- a/src/mc/network/packet/ShowStoreOfferPacket.h +++ b/src/mc/network/packet/ShowStoreOfferPacket.h @@ -61,7 +61,7 @@ class ShowStoreOfferPacket : public ::Packet { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND public: diff --git a/src/mc/network/packet/SimpleEventPacket.h b/src/mc/network/packet/SimpleEventPacket.h index 1250a2a819..358d3bbc63 100644 --- a/src/mc/network/packet/SimpleEventPacket.h +++ b/src/mc/network/packet/SimpleEventPacket.h @@ -55,7 +55,7 @@ class SimpleEventPacket : public ::Packet { MCAPI explicit SimpleEventPacket(::SimpleEventPacket::Subtype const& st); - MCAPI ::SimpleEventPacket::Subtype const& getSubtype() const; + MCFOLD ::SimpleEventPacket::Subtype const& getSubtype() const; // NOLINTEND public: @@ -69,13 +69,13 @@ class SimpleEventPacket : public ::Packet { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND public: // virtual function thunks // NOLINTBEGIN - MCAPI ::MinecraftPacketIds $getId() const; + MCFOLD ::MinecraftPacketIds $getId() const; MCAPI ::std::string $getName() const; diff --git a/src/mc/network/packet/SimulationTypePacket.h b/src/mc/network/packet/SimulationTypePacket.h index e09dd0e985..f636ba22a7 100644 --- a/src/mc/network/packet/SimulationTypePacket.h +++ b/src/mc/network/packet/SimulationTypePacket.h @@ -59,7 +59,7 @@ class SimulationTypePacket : public ::Packet { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND public: diff --git a/src/mc/network/packet/SpawnExperienceOrbPacket.h b/src/mc/network/packet/SpawnExperienceOrbPacket.h index 739975d92c..9ca8307a9e 100644 --- a/src/mc/network/packet/SpawnExperienceOrbPacket.h +++ b/src/mc/network/packet/SpawnExperienceOrbPacket.h @@ -60,7 +60,7 @@ class SpawnExperienceOrbPacket : public ::Packet { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND public: diff --git a/src/mc/network/packet/StartGamePacket.h b/src/mc/network/packet/StartGamePacket.h index 984a0658ff..27089d22a6 100644 --- a/src/mc/network/packet/StartGamePacket.h +++ b/src/mc/network/packet/StartGamePacket.h @@ -146,7 +146,7 @@ class StartGamePacket : public ::Packet { public: // virtual function thunks // NOLINTBEGIN - MCAPI ::MinecraftPacketIds $getId() const; + MCFOLD ::MinecraftPacketIds $getId() const; MCAPI ::std::string $getName() const; diff --git a/src/mc/network/packet/StopSoundPacket.h b/src/mc/network/packet/StopSoundPacket.h index e35f9d3cbc..cd36394b24 100644 --- a/src/mc/network/packet/StopSoundPacket.h +++ b/src/mc/network/packet/StopSoundPacket.h @@ -60,7 +60,7 @@ class StopSoundPacket : public ::Packet { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND public: diff --git a/src/mc/network/packet/StructureBlockUpdatePacket.h b/src/mc/network/packet/StructureBlockUpdatePacket.h index 33e31945f4..2022416090 100644 --- a/src/mc/network/packet/StructureBlockUpdatePacket.h +++ b/src/mc/network/packet/StructureBlockUpdatePacket.h @@ -65,7 +65,7 @@ class StructureBlockUpdatePacket : public ::Packet { public: // virtual function thunks // NOLINTBEGIN - MCAPI ::MinecraftPacketIds $getId() const; + MCFOLD ::MinecraftPacketIds $getId() const; MCAPI ::std::string $getName() const; diff --git a/src/mc/network/packet/SubChunkPacket.h b/src/mc/network/packet/SubChunkPacket.h index 41d4bde4b6..652c81ba03 100644 --- a/src/mc/network/packet/SubChunkPacket.h +++ b/src/mc/network/packet/SubChunkPacket.h @@ -90,7 +90,7 @@ class SubChunkPacket : public ::Packet { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/network/packet/SubClientLoginPacket.h b/src/mc/network/packet/SubClientLoginPacket.h index cff2b0165b..d839a7efe7 100644 --- a/src/mc/network/packet/SubClientLoginPacket.h +++ b/src/mc/network/packet/SubClientLoginPacket.h @@ -70,7 +70,7 @@ class SubClientLoginPacket : public ::Packet { MCAPI void $write(::BinaryStream& stream) const; - MCAPI bool $disallowBatching() const; + MCFOLD bool $disallowBatching() const; MCAPI ::Bedrock::Result $_read(::ReadOnlyBinaryStream& stream); // NOLINTEND diff --git a/src/mc/network/packet/SyncActorPropertyPacket.h b/src/mc/network/packet/SyncActorPropertyPacket.h index 030c8122bf..cd55764769 100644 --- a/src/mc/network/packet/SyncActorPropertyPacket.h +++ b/src/mc/network/packet/SyncActorPropertyPacket.h @@ -64,7 +64,7 @@ class SyncActorPropertyPacket : public ::Packet { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND public: @@ -74,7 +74,7 @@ class SyncActorPropertyPacket : public ::Packet { MCAPI ::std::string $getName() const; - MCAPI void $write(::BinaryStream& stream) const; + MCFOLD void $write(::BinaryStream& stream) const; MCAPI ::Bedrock::Result $_read(::ReadOnlyBinaryStream& stream); // NOLINTEND diff --git a/src/mc/network/packet/SyncedAttribute.h b/src/mc/network/packet/SyncedAttribute.h index a9ab89f821..a2931d0548 100644 --- a/src/mc/network/packet/SyncedAttribute.h +++ b/src/mc/network/packet/SyncedAttribute.h @@ -21,6 +21,6 @@ struct SyncedAttribute { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/network/packet/TakeItemActorPacket.h b/src/mc/network/packet/TakeItemActorPacket.h index 377a9b072c..444db62740 100644 --- a/src/mc/network/packet/TakeItemActorPacket.h +++ b/src/mc/network/packet/TakeItemActorPacket.h @@ -60,13 +60,13 @@ class TakeItemActorPacket : public ::Packet { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND public: // virtual function thunks // NOLINTBEGIN - MCAPI ::MinecraftPacketIds $getId() const; + MCFOLD ::MinecraftPacketIds $getId() const; MCAPI ::std::string $getName() const; diff --git a/src/mc/network/packet/TextPacket.h b/src/mc/network/packet/TextPacket.h index efe264d80b..3fd507ffb4 100644 --- a/src/mc/network/packet/TextPacket.h +++ b/src/mc/network/packet/TextPacket.h @@ -163,7 +163,7 @@ class TextPacket : public ::Packet { public: // virtual function thunks // NOLINTBEGIN - MCAPI ::MinecraftPacketIds $getId() const; + MCFOLD ::MinecraftPacketIds $getId() const; MCAPI ::std::string $getName() const; diff --git a/src/mc/network/packet/TickingAreasLoadStatusPacket.h b/src/mc/network/packet/TickingAreasLoadStatusPacket.h index 4ef5f51b04..3d4470ef99 100644 --- a/src/mc/network/packet/TickingAreasLoadStatusPacket.h +++ b/src/mc/network/packet/TickingAreasLoadStatusPacket.h @@ -58,7 +58,7 @@ class TickingAreasLoadStatusPacket : public ::Packet { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND public: diff --git a/src/mc/network/packet/ToastRequestPacket.h b/src/mc/network/packet/ToastRequestPacket.h index e82051b3c5..263f994141 100644 --- a/src/mc/network/packet/ToastRequestPacket.h +++ b/src/mc/network/packet/ToastRequestPacket.h @@ -59,7 +59,7 @@ class ToastRequestPacket : public ::Packet { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND public: diff --git a/src/mc/network/packet/TransferPacket.h b/src/mc/network/packet/TransferPacket.h index 5c758a2b87..0f7b005369 100644 --- a/src/mc/network/packet/TransferPacket.h +++ b/src/mc/network/packet/TransferPacket.h @@ -64,7 +64,7 @@ class TransferPacket : public ::Packet { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND public: diff --git a/src/mc/network/packet/UpdateAdventureSettingsPacket.h b/src/mc/network/packet/UpdateAdventureSettingsPacket.h index 55b8ccbe74..e77cb3af3a 100644 --- a/src/mc/network/packet/UpdateAdventureSettingsPacket.h +++ b/src/mc/network/packet/UpdateAdventureSettingsPacket.h @@ -59,7 +59,7 @@ class UpdateAdventureSettingsPacket : public ::Packet { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND public: diff --git a/src/mc/network/packet/UpdateBlockPacket.h b/src/mc/network/packet/UpdateBlockPacket.h index 9296ca8578..2a45867ed8 100644 --- a/src/mc/network/packet/UpdateBlockPacket.h +++ b/src/mc/network/packet/UpdateBlockPacket.h @@ -63,7 +63,7 @@ class UpdateBlockPacket : public ::Packet { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND public: diff --git a/src/mc/network/packet/UpdateBlockSyncedPacket.h b/src/mc/network/packet/UpdateBlockSyncedPacket.h index 130042a391..7bcdc7a4a9 100644 --- a/src/mc/network/packet/UpdateBlockSyncedPacket.h +++ b/src/mc/network/packet/UpdateBlockSyncedPacket.h @@ -67,7 +67,7 @@ class UpdateBlockSyncedPacket : public ::UpdateBlockPacket { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND public: diff --git a/src/mc/network/packet/UpdateClientInputLocksPacket.h b/src/mc/network/packet/UpdateClientInputLocksPacket.h index 7e2f40bae9..ff47e9d1cf 100644 --- a/src/mc/network/packet/UpdateClientInputLocksPacket.h +++ b/src/mc/network/packet/UpdateClientInputLocksPacket.h @@ -61,7 +61,7 @@ class UpdateClientInputLocksPacket : public ::Packet { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND public: diff --git a/src/mc/network/packet/UpdateEquipPacket.h b/src/mc/network/packet/UpdateEquipPacket.h index 8155297e2a..46eae6951c 100644 --- a/src/mc/network/packet/UpdateEquipPacket.h +++ b/src/mc/network/packet/UpdateEquipPacket.h @@ -86,7 +86,7 @@ class UpdateEquipPacket : public ::Packet { // NOLINTBEGIN MCAPI ::MinecraftPacketIds $getId() const; - MCAPI ::std::string $getName() const; + MCFOLD ::std::string $getName() const; MCAPI void $write(::BinaryStream& bitStream) const; diff --git a/src/mc/network/packet/UpdatePlayerGameTypePacket.h b/src/mc/network/packet/UpdatePlayerGameTypePacket.h index 6df299eeeb..6ce666a1db 100644 --- a/src/mc/network/packet/UpdatePlayerGameTypePacket.h +++ b/src/mc/network/packet/UpdatePlayerGameTypePacket.h @@ -63,7 +63,7 @@ class UpdatePlayerGameTypePacket : public ::Packet { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND public: diff --git a/src/mc/network/packet/UpdateSubChunkBlocksChangedInfo.h b/src/mc/network/packet/UpdateSubChunkBlocksChangedInfo.h index 612d9a7b6a..9f8a68e2e8 100644 --- a/src/mc/network/packet/UpdateSubChunkBlocksChangedInfo.h +++ b/src/mc/network/packet/UpdateSubChunkBlocksChangedInfo.h @@ -33,7 +33,7 @@ struct UpdateSubChunkBlocksChangedInfo { public: // constructor thunks // NOLINTBEGIN - MCAPI void* $ctor(); + MCFOLD void* $ctor(); // NOLINTEND public: diff --git a/src/mc/network/packet/UpdateSubChunkNetworkBlockInfo.h b/src/mc/network/packet/UpdateSubChunkNetworkBlockInfo.h index fa5b305453..f08dd2ddb4 100644 --- a/src/mc/network/packet/UpdateSubChunkNetworkBlockInfo.h +++ b/src/mc/network/packet/UpdateSubChunkNetworkBlockInfo.h @@ -27,6 +27,6 @@ struct UpdateSubChunkNetworkBlockInfo { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/network/packet/UpdateTradePacket.h b/src/mc/network/packet/UpdateTradePacket.h index 5afaab0042..4255199d80 100644 --- a/src/mc/network/packet/UpdateTradePacket.h +++ b/src/mc/network/packet/UpdateTradePacket.h @@ -101,7 +101,7 @@ class UpdateTradePacket : public ::Packet { // NOLINTBEGIN MCAPI ::MinecraftPacketIds $getId() const; - MCAPI ::std::string $getName() const; + MCFOLD ::std::string $getName() const; MCAPI void $write(::BinaryStream& bitStream) const; diff --git a/src/mc/network/packet/WebSocketPacketData.h b/src/mc/network/packet/WebSocketPacketData.h index 8e3bda41b7..ecf1917ecb 100644 --- a/src/mc/network/packet/WebSocketPacketData.h +++ b/src/mc/network/packet/WebSocketPacketData.h @@ -28,6 +28,6 @@ struct WebSocketPacketData { public: // constructor thunks // NOLINTBEGIN - MCAPI void* $ctor(::std::string const& ip); + MCFOLD void* $ctor(::std::string const& ip); // NOLINTEND }; diff --git a/src/mc/options/AppConfigs.h b/src/mc/options/AppConfigs.h index 9184698cb5..f111668597 100644 --- a/src/mc/options/AppConfigs.h +++ b/src/mc/options/AppConfigs.h @@ -183,67 +183,67 @@ class AppConfigs : public ::Bedrock::EnableNonOwnerReferences { public: // virtual function thunks // NOLINTBEGIN - MCAPI void $loadFromData(::IAppConfigData const&); + MCFOLD void $loadFromData(::IAppConfigData const&); - MCAPI bool $arePremiumSkinPacksAllowed() const; + MCFOLD bool $arePremiumSkinPacksAllowed() const; - MCAPI bool $areResourcePacksAllowed() const; + MCFOLD bool $areResourcePacksAllowed() const; - MCAPI bool $isPlayScreenAllowed() const; + MCFOLD bool $isPlayScreenAllowed() const; - MCAPI bool $isChatScreenAllowed() const; + MCFOLD bool $isChatScreenAllowed() const; - MCAPI bool $isGameTabShownInSettings() const; + MCFOLD bool $isGameTabShownInSettings() const; - MCAPI bool $areEmotesSupported() const; + MCFOLD bool $areEmotesSupported() const; - MCAPI bool $useNormalizedFontSize() const; + MCFOLD bool $useNormalizedFontSize() const; - MCAPI bool $useFullScreenByDefault() const; + MCFOLD bool $useFullScreenByDefault() const; - MCAPI bool $muteByDefault() const; + MCFOLD bool $muteByDefault() const; - MCAPI bool $isCoursesCacheEnabled() const; + MCFOLD bool $isCoursesCacheEnabled() const; - MCAPI bool $shouldPromptBeforeExit() const; + MCFOLD bool $shouldPromptBeforeExit() const; - MCAPI bool $gameArgumentsNeedAuthentication() const; + MCFOLD bool $gameArgumentsNeedAuthentication() const; - MCAPI bool $worldBuilderDisabled() const; + MCFOLD bool $worldBuilderDisabled() const; - MCAPI bool $worldsAreSingleUse() const; + MCFOLD bool $worldsAreSingleUse() const; - MCAPI ::EducationEditionOffer $getEducationEditionOffering() const; + MCFOLD ::EducationEditionOffer $getEducationEditionOffering() const; - MCAPI bool $requireTrustedContent() const; + MCFOLD bool $requireTrustedContent() const; - MCAPI bool $isExternalPlayerCommunicationAllowed() const; + MCFOLD bool $isExternalPlayerCommunicationAllowed() const; MCAPI bool $supports3DExport() const; - MCAPI bool $requireEduLevelSettings() const; + MCFOLD bool $requireEduLevelSettings() const; MCAPI ::ConnectionDefinition $getConnectionDefinition() const; - MCAPI bool $supportsChangingMultiplayerDuringPlay() const; + MCFOLD bool $supportsChangingMultiplayerDuringPlay() const; - MCAPI bool $webSocketsDisabled() const; + MCFOLD bool $webSocketsDisabled() const; - MCAPI bool $sendPermissionsTelemetry() const; + MCFOLD bool $sendPermissionsTelemetry() const; - MCAPI bool $useEduDemoUpsellDialog() const; + MCFOLD bool $useEduDemoUpsellDialog() const; - MCAPI bool $allowGameArguments() const; + MCFOLD bool $allowGameArguments() const; - MCAPI bool $canUseAzureNotebooks() const; + MCFOLD bool $canUseAzureNotebooks() const; - MCAPI ::AppConfigs::MaelstromEduUsabilityStatus $canUseMaelstrom() const; + MCFOLD ::AppConfigs::MaelstromEduUsabilityStatus $canUseMaelstrom() const; - MCAPI bool $isSaveToCloudOn() const; + MCFOLD bool $isSaveToCloudOn() const; - MCAPI bool $isEduAIOn() const; + MCFOLD bool $isEduAIOn() const; - MCAPI void $setCanAccessWorldCallback(::IMinecraftGame& minecraftGame); + MCFOLD void $setCanAccessWorldCallback(::IMinecraftGame& minecraftGame); MCAPI ::std::vector<::PackIdVersion> $getAdditionalClientPacks(bool enteringLevel) const; @@ -256,7 +256,7 @@ class AppConfigs : public ::Bedrock::EnableNonOwnerReferences { MCAPI ::std::string $getHelpCenterURL() const; - MCAPI void $applyLevelDataOverride(::LevelData&) const; + MCFOLD void $applyLevelDataOverride(::LevelData&) const; // NOLINTEND public: diff --git a/src/mc/options/EduSharedUriResource.h b/src/mc/options/EduSharedUriResource.h index b277fccda2..6b8b9092bf 100644 --- a/src/mc/options/EduSharedUriResource.h +++ b/src/mc/options/EduSharedUriResource.h @@ -38,7 +38,7 @@ struct EduSharedUriResource { public: // constructor thunks // NOLINTBEGIN - MCAPI void* $ctor(); + MCFOLD void* $ctor(); MCAPI void* $ctor(::EduSharedUriResource&&); @@ -48,6 +48,6 @@ struct EduSharedUriResource { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/platform/CallStack.h b/src/mc/platform/CallStack.h index 293409d08f..3f8f25ce87 100644 --- a/src/mc/platform/CallStack.h +++ b/src/mc/platform/CallStack.h @@ -63,7 +63,7 @@ struct CallStack { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; @@ -119,7 +119,7 @@ struct CallStack { // NOLINTBEGIN MCAPI void* $ctor(::Bedrock::CallStack::FrameWithContext&& frame); - MCAPI void* $ctor(::std::vector<::Bedrock::CallStack::FrameWithContext>&& frames); + MCFOLD void* $ctor(::std::vector<::Bedrock::CallStack::FrameWithContext>&& frames); // NOLINTEND public: diff --git a/src/mc/platform/FakeBatteryMonitorInterface.h b/src/mc/platform/FakeBatteryMonitorInterface.h index a03cd77de5..8de4a21b66 100644 --- a/src/mc/platform/FakeBatteryMonitorInterface.h +++ b/src/mc/platform/FakeBatteryMonitorInterface.h @@ -41,9 +41,9 @@ class FakeBatteryMonitorInterface : public ::BatteryMonitorInterface { public: // virtual function thunks // NOLINTBEGIN - MCAPI ::BatteryStatus $getBatteryStatus() const; + MCFOLD ::BatteryStatus $getBatteryStatus() const; - MCAPI float $getBatteryLevel() const; + MCFOLD float $getBatteryLevel() const; // NOLINTEND public: diff --git a/src/mc/platform/FakeThermalMonitorInterface.h b/src/mc/platform/FakeThermalMonitorInterface.h index 75b6d33027..2a3bc7f589 100644 --- a/src/mc/platform/FakeThermalMonitorInterface.h +++ b/src/mc/platform/FakeThermalMonitorInterface.h @@ -44,11 +44,11 @@ class FakeThermalMonitorInterface : public ::ThermalMonitorInterface { public: // virtual function thunks // NOLINTBEGIN - MCAPI ::ThermalState $getThermalState() const; + MCFOLD ::ThermalState $getThermalState() const; - MCAPI float $getThermalValueCelsius() const; + MCFOLD float $getThermalValueCelsius() const; - MCAPI bool $isLowBatteryModeEnabled() const; + MCFOLD bool $isLowBatteryModeEnabled() const; // NOLINTEND public: diff --git a/src/mc/platform/MultiplayerServiceObserver.h b/src/mc/platform/MultiplayerServiceObserver.h index 0d0c62c2cc..99be8fbac0 100644 --- a/src/mc/platform/MultiplayerServiceObserver.h +++ b/src/mc/platform/MultiplayerServiceObserver.h @@ -31,13 +31,13 @@ class MultiplayerServiceObserver public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND public: // virtual function thunks // NOLINTBEGIN - MCAPI void $onUserDisconnectedBecauseConcurrentLogin(::std::string const& id); + MCFOLD void $onUserDisconnectedBecauseConcurrentLogin(::std::string const& id); // NOLINTEND }; diff --git a/src/mc/platform/OSInformation.h b/src/mc/platform/OSInformation.h index 50da7adc96..92751e4a22 100644 --- a/src/mc/platform/OSInformation.h +++ b/src/mc/platform/OSInformation.h @@ -26,6 +26,6 @@ struct OSInformation { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/platform/UriListener.h b/src/mc/platform/UriListener.h index d0d1dbb62d..903752e1c3 100644 --- a/src/mc/platform/UriListener.h +++ b/src/mc/platform/UriListener.h @@ -24,7 +24,7 @@ class UriListener { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND public: diff --git a/src/mc/platform/WebviewObserver.h b/src/mc/platform/WebviewObserver.h index a24397da1f..cb84749fd3 100644 --- a/src/mc/platform/WebviewObserver.h +++ b/src/mc/platform/WebviewObserver.h @@ -50,28 +50,28 @@ class WebviewObserver : public ::Core::Observer<::WebviewObserver, ::Core::Singl public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND public: // virtual function thunks // NOLINTBEGIN - MCAPI void $onLoadingBegin(); + MCFOLD void $onLoadingBegin(); - MCAPI void $onLoadingEnd(); + MCFOLD void $onLoadingEnd(); - MCAPI void $onError(::WebviewError const&); + MCFOLD void $onError(::WebviewError const&); - MCAPI void $onWebviewChanged(); + MCFOLD void $onWebviewChanged(); - MCAPI void $onDownloadBegin(::WebviewDownloadInfo const&); + MCFOLD void $onDownloadBegin(::WebviewDownloadInfo const&); - MCAPI void $onDownloadUpdate(::WebviewDownloadInfo const&); + MCFOLD void $onDownloadUpdate(::WebviewDownloadInfo const&); - MCAPI void $onDownloadComplete(::WebviewDownloadInfo const&); + MCFOLD void $onDownloadComplete(::WebviewDownloadInfo const&); - MCAPI void $onDownloadCanceled(::WebviewDownloadInfo const&); + MCFOLD void $onDownloadCanceled(::WebviewDownloadInfo const&); - MCAPI void $onMessageRecieved(::std::string const&); + MCFOLD void $onMessageRecieved(::std::string const&); // NOLINTEND }; diff --git a/src/mc/platform/threading/AssignedThread.h b/src/mc/platform/threading/AssignedThread.h index 75dc49d06f..d16ebd524c 100644 --- a/src/mc/platform/threading/AssignedThread.h +++ b/src/mc/platform/threading/AssignedThread.h @@ -48,7 +48,7 @@ class AssignedThread { MCAPI bool isOnThread() const; - MCAPI bool operator==(::std::thread::id const& id) const; + MCFOLD bool operator==(::std::thread::id const& id) const; // NOLINTEND }; diff --git a/src/mc/platform/threading/Mutex.h b/src/mc/platform/threading/Mutex.h index 7b77076d77..cfe783c4e5 100644 --- a/src/mc/platform/threading/Mutex.h +++ b/src/mc/platform/threading/Mutex.h @@ -17,7 +17,7 @@ class Mutex : public ::Bedrock::Threading::ZeroInit, public ::std::mutex { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/platform/threading/OSThreadPriority.h b/src/mc/platform/threading/OSThreadPriority.h index 70b2a6e7f2..529a0b98c9 100644 --- a/src/mc/platform/threading/OSThreadPriority.h +++ b/src/mc/platform/threading/OSThreadPriority.h @@ -20,7 +20,7 @@ class OSThreadPriority { public: // member functions // NOLINTBEGIN - MCAPI explicit operator int() const; + MCFOLD explicit operator int() const; // NOLINTEND public: diff --git a/src/mc/platform/threading/SpinLockImpl.h b/src/mc/platform/threading/SpinLockImpl.h index f61e44f3a6..e5ae03d4fe 100644 --- a/src/mc/platform/threading/SpinLockImpl.h +++ b/src/mc/platform/threading/SpinLockImpl.h @@ -40,6 +40,6 @@ class SpinLockImpl { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/resources/BaseGamePackLoadRequirement.h b/src/mc/resources/BaseGamePackLoadRequirement.h index e89653410d..1682ca5159 100644 --- a/src/mc/resources/BaseGamePackLoadRequirement.h +++ b/src/mc/resources/BaseGamePackLoadRequirement.h @@ -14,6 +14,6 @@ class BaseGamePackLoadRequirement { public: // static functions // NOLINTBEGIN - MCAPI static bool satisfied(::IPackLoadContext const& context, ::JsonBetaState); + MCFOLD static bool satisfied(::IPackLoadContext const& context, ::JsonBetaState); // NOLINTEND }; diff --git a/src/mc/resources/BaseGamePackSlices.h b/src/mc/resources/BaseGamePackSlices.h index a6ce61d2de..2ee9004ae3 100644 --- a/src/mc/resources/BaseGamePackSlices.h +++ b/src/mc/resources/BaseGamePackSlices.h @@ -44,7 +44,7 @@ class BaseGamePackSlices { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; @@ -82,7 +82,7 @@ class BaseGamePackSlices { public: // constructor thunks // NOLINTBEGIN - MCAPI void* $ctor(); + MCFOLD void* $ctor(); // NOLINTEND public: diff --git a/src/mc/resources/BaseGameVersion.h b/src/mc/resources/BaseGameVersion.h index 20299e9467..b92f7edca4 100644 --- a/src/mc/resources/BaseGameVersion.h +++ b/src/mc/resources/BaseGameVersion.h @@ -49,7 +49,7 @@ class BaseGameVersion { MCAPI bool isCompatibleWith(::BaseGameVersion const& baseGameVersion) const; - MCAPI bool isNeverCompatible() const; + MCFOLD bool isNeverCompatible() const; MCAPI bool isValid() const; @@ -101,6 +101,6 @@ class BaseGameVersion { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/resources/ContentTierIncompatibleReason.h b/src/mc/resources/ContentTierIncompatibleReason.h index 7585a1007c..5dd3209fbf 100644 --- a/src/mc/resources/ContentTierIncompatibleReason.h +++ b/src/mc/resources/ContentTierIncompatibleReason.h @@ -40,6 +40,6 @@ class ContentTierIncompatibleReason { public: // constructor thunks // NOLINTBEGIN - MCAPI void* $ctor(uint errorValue); + MCFOLD void* $ctor(uint errorValue); // NOLINTEND }; diff --git a/src/mc/resources/ContentTierManager.h b/src/mc/resources/ContentTierManager.h index db7e8dac8c..c53644b7ae 100644 --- a/src/mc/resources/ContentTierManager.h +++ b/src/mc/resources/ContentTierManager.h @@ -49,7 +49,7 @@ class ContentTierManager : public ::IContentTierManager { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND public: diff --git a/src/mc/resources/DirectoryPackAccessStrategy.h b/src/mc/resources/DirectoryPackAccessStrategy.h index 3b899e89e1..9d8ca3654c 100644 --- a/src/mc/resources/DirectoryPackAccessStrategy.h +++ b/src/mc/resources/DirectoryPackAccessStrategy.h @@ -132,19 +132,19 @@ class DirectoryPackAccessStrategy : public ::PackAccessStrategy { // NOLINTBEGIN MCAPI uint64 $getPackSize() const; - MCAPI ::ResourceLocation const& $getPackLocation() const; + MCFOLD ::ResourceLocation const& $getPackLocation() const; - MCAPI ::std::string const& $getPackName() const; + MCFOLD ::std::string const& $getPackName() const; - MCAPI bool $isWritable() const; + MCFOLD bool $isWritable() const; MCAPI bool $isTrusted() const; - MCAPI void $setIsTrusted(bool); + MCFOLD void $setIsTrusted(bool); MCAPI bool $hasAsset(::Core::Path const& packRelativePath, bool trustedContentOnly, bool caseSensative) const; - MCAPI bool $hasFolder(::Core::Path const& packRelativePath) const; + MCFOLD bool $hasFolder(::Core::Path const& packRelativePath) const; MCAPI bool $getAsset(::Core::Path const& packRelativePath, ::std::string& result, bool trustedContentOnly) const; @@ -161,13 +161,13 @@ class DirectoryPackAccessStrategy : public ::PackAccessStrategy { MCAPI void $forEachInAssetSet(::Core::Path const& packRelativePath, ::std::function callback) const; - MCAPI ::PackAccessStrategyType $getStrategyType() const; + MCFOLD ::PackAccessStrategyType $getStrategyType() const; MCAPI ::std::unique_ptr<::PackAccessStrategy> $createSubPack(::Core::Path const& subPath) const; - MCAPI bool $canRecurse() const; + MCFOLD bool $canRecurse() const; - MCAPI void $unload(); + MCFOLD void $unload(); MCAPI ::std::unique_ptr<::Bedrock::Resources::Archive::Reader> $_loadArchive(::Core::Path const& packRelativePath ) const; diff --git a/src/mc/resources/DirectoryPackSource.h b/src/mc/resources/DirectoryPackSource.h index 9473220408..8fd6ca00af 100644 --- a/src/mc/resources/DirectoryPackSource.h +++ b/src/mc/resources/DirectoryPackSource.h @@ -97,13 +97,13 @@ class DirectoryPackSource : public ::PackSource { public: // virtual function thunks // NOLINTBEGIN - MCAPI void $forEachPackConst(::std::function callback) const; + MCFOLD void $forEachPackConst(::std::function callback) const; - MCAPI void $forEachPack(::std::function callback); + MCFOLD void $forEachPack(::std::function callback); - MCAPI ::PackOrigin $getPackOrigin() const; + MCFOLD ::PackOrigin $getPackOrigin() const; - MCAPI ::PackType $getPackType() const; + MCFOLD ::PackType $getPackType() const; MCAPI ::PackSourceReport $load( ::IPackManifestFactory& manifestFactory, diff --git a/src/mc/resources/DirectoryPackWithEncryptionAccessStrategy.h b/src/mc/resources/DirectoryPackWithEncryptionAccessStrategy.h index cd9291a4e9..5a0032c803 100644 --- a/src/mc/resources/DirectoryPackWithEncryptionAccessStrategy.h +++ b/src/mc/resources/DirectoryPackWithEncryptionAccessStrategy.h @@ -137,19 +137,19 @@ class DirectoryPackWithEncryptionAccessStrategy : public ::PackAccessStrategy { // NOLINTBEGIN MCAPI uint64 $getPackSize() const; - MCAPI ::ResourceLocation const& $getPackLocation() const; + MCFOLD ::ResourceLocation const& $getPackLocation() const; - MCAPI ::std::string const& $getPackName() const; + MCFOLD ::std::string const& $getPackName() const; - MCAPI bool $isWritable() const; + MCFOLD bool $isWritable() const; - MCAPI bool $isTrusted() const; + MCFOLD bool $isTrusted() const; - MCAPI void $setIsTrusted(bool); + MCFOLD void $setIsTrusted(bool); MCAPI bool $hasAsset(::Core::Path const& packRelativePath, bool trustedContentOnly, bool caseSensative) const; - MCAPI bool $hasFolder(::Core::Path const& packRelativePath) const; + MCFOLD bool $hasFolder(::Core::Path const& packRelativePath) const; MCAPI bool $getAsset(::Core::Path const& packRelativePath, ::std::string& result, bool trustedContentOnly) const; @@ -163,7 +163,7 @@ class DirectoryPackWithEncryptionAccessStrategy : public ::PackAccessStrategy { bool recurseAnyways ) const; - MCAPI ::PackAccessStrategyType $getStrategyType() const; + MCFOLD ::PackAccessStrategyType $getStrategyType() const; MCAPI ::std::unique_ptr<::PackAccessStrategy> $createSubPack(::Core::Path const& subPath) const; diff --git a/src/mc/resources/EducationMetadataError.h b/src/mc/resources/EducationMetadataError.h index 9b644ede0a..dc47296b8d 100644 --- a/src/mc/resources/EducationMetadataError.h +++ b/src/mc/resources/EducationMetadataError.h @@ -22,7 +22,7 @@ class EducationMetadataError : public ::PackError { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND public: diff --git a/src/mc/resources/EncryptedFileAccessStrategy.h b/src/mc/resources/EncryptedFileAccessStrategy.h index 2b56003fbf..2dea0e5413 100644 --- a/src/mc/resources/EncryptedFileAccessStrategy.h +++ b/src/mc/resources/EncryptedFileAccessStrategy.h @@ -122,17 +122,17 @@ class EncryptedFileAccessStrategy : public ::DirectoryPackAccessStrategy { // NOLINTBEGIN MCAPI ::PackAccessAssetGenerationResult $generateAssetSet(); - MCAPI bool $isTrusted() const; + MCFOLD bool $isTrusted() const; - MCAPI bool $isWritable() const; + MCFOLD bool $isWritable() const; MCAPI bool $hasAsset(::Core::Path const& packRelativePath, bool trustedContentOnly, bool caseSensative) const; MCAPI bool $getAsset(::Core::Path const& packRelativePath, ::std::string& result, bool trustedContentOnly) const; - MCAPI bool $deleteAsset(::Core::Path const& packRelativePath); + MCFOLD bool $deleteAsset(::Core::Path const& packRelativePath); - MCAPI bool $writeAsset(::Core::Path const& packRelativePath, ::std::string const& fileContent); + MCFOLD bool $writeAsset(::Core::Path const& packRelativePath, ::std::string const& fileContent); MCAPI ::std::unique_ptr<::PackAccessStrategy> $createSubPack(::Core::Path const& subPath) const; diff --git a/src/mc/resources/EncryptedZipTransforms.h b/src/mc/resources/EncryptedZipTransforms.h index 2cab14fd41..bd22075f6e 100644 --- a/src/mc/resources/EncryptedZipTransforms.h +++ b/src/mc/resources/EncryptedZipTransforms.h @@ -61,7 +61,7 @@ class EncryptedZipTransforms : public ::FileAccessTransforms { // NOLINTBEGIN MCAPI bool $readTransform(::std::vector& stream) const; - MCAPI bool $writeTransform(::std::vector& stream) const; + MCFOLD bool $writeTransform(::std::vector& stream) const; // NOLINTEND public: diff --git a/src/mc/resources/ExperimentLoadRequirement.h b/src/mc/resources/ExperimentLoadRequirement.h index 9f8ade6271..def6d3dcb1 100644 --- a/src/mc/resources/ExperimentLoadRequirement.h +++ b/src/mc/resources/ExperimentLoadRequirement.h @@ -30,7 +30,7 @@ class ExperimentLoadRequirement { // NOLINTBEGIN MCAPI explicit ExperimentLoadRequirement(::AllExperiments experiment); - MCAPI ::AllExperiments const& getExperiment() const; + MCFOLD ::AllExperiments const& getExperiment() const; MCAPI bool satisfied(::IPackLoadContext const& context, ::JsonBetaState) const; // NOLINTEND @@ -45,6 +45,6 @@ class ExperimentLoadRequirement { public: // constructor thunks // NOLINTBEGIN - MCAPI void* $ctor(::AllExperiments experiment); + MCFOLD void* $ctor(::AllExperiments experiment); // NOLINTEND }; diff --git a/src/mc/resources/IContentKeyProvider.h b/src/mc/resources/IContentKeyProvider.h index c17be3b36b..bab0b41d0f 100644 --- a/src/mc/resources/IContentKeyProvider.h +++ b/src/mc/resources/IContentKeyProvider.h @@ -42,8 +42,8 @@ class IContentKeyProvider : public ::Bedrock::EnableNonOwnerReferences { public: // virtual function thunks // NOLINTBEGIN - MCAPI ::std::string $getAlternateContentKey(::ContentIdentity const&) const; + MCFOLD ::std::string $getAlternateContentKey(::ContentIdentity const&) const; - MCAPI bool $requireEncryptedReads() const; + MCFOLD bool $requireEncryptedReads() const; // NOLINTEND }; diff --git a/src/mc/resources/IContentTierManager.h b/src/mc/resources/IContentTierManager.h index 2fca690157..05b0734a58 100644 --- a/src/mc/resources/IContentTierManager.h +++ b/src/mc/resources/IContentTierManager.h @@ -24,7 +24,7 @@ class IContentTierManager : public ::Bedrock::EnableNonOwnerReferences { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND public: diff --git a/src/mc/resources/InPackagePackSource.h b/src/mc/resources/InPackagePackSource.h index 0d4d9ae487..29d2cad988 100644 --- a/src/mc/resources/InPackagePackSource.h +++ b/src/mc/resources/InPackagePackSource.h @@ -80,18 +80,18 @@ class InPackagePackSource : public ::PackSource { public: // virtual function thunks // NOLINTBEGIN - MCAPI void $forEachPackConst(::std::function callback) const; + MCFOLD void $forEachPackConst(::std::function callback) const; - MCAPI void $forEachPack(::std::function callback); + MCFOLD void $forEachPack(::std::function callback); - MCAPI ::PackOrigin $getPackOrigin() const; + MCFOLD ::PackOrigin $getPackOrigin() const; MCAPI ::PackSourceReport $load( ::IPackManifestFactory& manifestFactory, ::Bedrock::NotNullNonOwnerPtr<::IContentKeyProvider const> const& keyProvider ); - MCAPI ::PackType $getPackType() const; + MCFOLD ::PackType $getPackType() const; // NOLINTEND public: diff --git a/src/mc/resources/MinEngineVersion.h b/src/mc/resources/MinEngineVersion.h index 7fb3daa8da..6fdbe28eb5 100644 --- a/src/mc/resources/MinEngineVersion.h +++ b/src/mc/resources/MinEngineVersion.h @@ -37,7 +37,7 @@ class MinEngineVersion { MCAPI ::Json::Value createJsonValue() const; - MCAPI ::CurrentCmdVersion getCommandVersion() const; + MCFOLD ::CurrentCmdVersion getCommandVersion() const; MCAPI ::MolangVersion getMolangVersion() const; @@ -65,6 +65,6 @@ class MinEngineVersion { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/resources/Pack.h b/src/mc/resources/Pack.h index a635b9b64b..a4dbec1379 100644 --- a/src/mc/resources/Pack.h +++ b/src/mc/resources/Pack.h @@ -56,15 +56,15 @@ class Pack : public ::Bedrock::EnableNonOwnerReferences { MCAPI ::PackAccessStrategy const* getAccessStrategy() const; - MCAPI ::PackAccessStrategy* getAccessStrategy(); + MCFOLD ::PackAccessStrategy* getAccessStrategy(); MCAPI ::PackManifest const& getManifest() const; - MCAPI ::PackManifest& getManifest(); + MCFOLD ::PackManifest& getManifest(); MCAPI ::Bedrock::NonOwnerPointer<::PackManifest> getManifestPtr(); - MCAPI ::SubpackInfoCollection* getSubpackInfoStack(); + MCFOLD ::SubpackInfoCollection* getSubpackInfoStack(); MCAPI void move(::Pack&& pack); diff --git a/src/mc/resources/PackAccessStrategy.h b/src/mc/resources/PackAccessStrategy.h index 743240ee2d..9acc6f7ee6 100644 --- a/src/mc/resources/PackAccessStrategy.h +++ b/src/mc/resources/PackAccessStrategy.h @@ -157,25 +157,25 @@ class PackAccessStrategy { public: // virtual function thunks // NOLINTBEGIN - MCAPI void $forEachInAssetSet(::Core::Path const&, ::std::function) const; + MCFOLD void $forEachInAssetSet(::Core::Path const&, ::std::function) const; MCAPI ::Core::PathBuffer<::std::string> const& $getSubPath() const; - MCAPI bool $supportsSignatureVerification() const; + MCFOLD bool $supportsSignatureVerification() const; MCAPI ::PackAccessAssetGenerationResult $generateAssetSet(); MCAPI ::PackAccessAssetGenerationResult $regenerateAssetSet(); - MCAPI bool $canRecurse() const; + MCFOLD bool $canRecurse() const; MCAPI bool $hasUpgradeFiles() const; MCAPI ::ContentIdentity $readContentIdentity() const; - MCAPI bool $isAssetExtractionViable() const; + MCFOLD bool $isAssetExtractionViable() const; - MCAPI ::std::unique_ptr<::Bedrock::Resources::Archive::Reader> $_loadArchive(::Core::Path const&) const; + MCFOLD ::std::unique_ptr<::Bedrock::Resources::Archive::Reader> $_loadArchive(::Core::Path const&) const; // NOLINTEND public: diff --git a/src/mc/resources/PackCapability.h b/src/mc/resources/PackCapability.h index 81a1fafe53..9bbc602046 100644 --- a/src/mc/resources/PackCapability.h +++ b/src/mc/resources/PackCapability.h @@ -48,7 +48,7 @@ class PackCapability { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; @@ -74,7 +74,7 @@ class PackCapability { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; @@ -103,6 +103,6 @@ class PackCapability { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/resources/PackCapabilityRegistry.h b/src/mc/resources/PackCapabilityRegistry.h index 2e9a88e96c..5ae29c3e56 100644 --- a/src/mc/resources/PackCapabilityRegistry.h +++ b/src/mc/resources/PackCapabilityRegistry.h @@ -46,6 +46,6 @@ class PackCapabilityRegistry { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/resources/PackDiscoveryError.h b/src/mc/resources/PackDiscoveryError.h index d9c3ec34d8..c800ef3e46 100644 --- a/src/mc/resources/PackDiscoveryError.h +++ b/src/mc/resources/PackDiscoveryError.h @@ -35,15 +35,15 @@ class PackDiscoveryError : public ::PackError { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND public: // virtual function thunks // NOLINTBEGIN - MCAPI ::std::unordered_map const& $getLocErrorMessageMap() const; + MCFOLD ::std::unordered_map const& $getLocErrorMessageMap() const; - MCAPI ::std::unordered_map const& $getEventErrorMessageMap() const; + MCFOLD ::std::unordered_map const& $getEventErrorMessageMap() const; // NOLINTEND public: diff --git a/src/mc/resources/PackError.h b/src/mc/resources/PackError.h index c64c2b6ea5..25784e902e 100644 --- a/src/mc/resources/PackError.h +++ b/src/mc/resources/PackError.h @@ -35,7 +35,7 @@ class PackError { // NOLINTBEGIN MCAPI PackError(::PackErrorType packErrorType, ::std::vector<::std::string> const& errorParam); - MCAPI ::std::vector<::std::string> const& getErrorParameters() const; + MCFOLD ::std::vector<::std::string> const& getErrorParameters() const; // NOLINTEND public: diff --git a/src/mc/resources/PackInstance.h b/src/mc/resources/PackInstance.h index f30de6acc7..be1a4c8974 100644 --- a/src/mc/resources/PackInstance.h +++ b/src/mc/resources/PackInstance.h @@ -75,7 +75,7 @@ class PackInstance { MCAPI ::PackStats const& getPackStats() const; - MCAPI ::PackStats& getPackStats(); + MCFOLD ::PackStats& getPackStats(); MCAPI ::Core::PathBuffer<::std::string> const& getRelativePathWithinZip() const; diff --git a/src/mc/resources/PackLoadContext.h b/src/mc/resources/PackLoadContext.h index 0db6a317d8..0f558e7c1d 100644 --- a/src/mc/resources/PackLoadContext.h +++ b/src/mc/resources/PackLoadContext.h @@ -98,21 +98,21 @@ class PackLoadContext : public ::IPackLoadContext, public ::BedrockLoadContext { public: // virtual function thunks // NOLINTBEGIN - MCAPI ::MinEngineVersion const& $getMinEngineVersion() const; + MCFOLD ::MinEngineVersion const& $getMinEngineVersion() const; MCAPI ::MolangVersion $getMolangVersion() const; - MCAPI bool $isBaseGamePack() const; + MCFOLD bool $isBaseGamePack() const; - MCAPI bool $isTrustedPack() const; + MCFOLD bool $isTrustedPack() const; - MCAPI ::mce::UUID const& $getPackUUID() const; + MCFOLD ::mce::UUID const& $getPackUUID() const; - MCAPI ::Experiments const& $getExperiments() const; + MCFOLD ::Experiments const& $getExperiments() const; - MCAPI ::PackType $getPackType() const; + MCFOLD ::PackType $getPackType() const; - MCAPI ::PackLoadStorage& $getStorage(); + MCFOLD ::PackLoadStorage& $getStorage(); MCAPI void $setMinEngineVersion(::MinEngineVersion const& minEngineVersion); // NOLINTEND diff --git a/src/mc/resources/PackLoadError.h b/src/mc/resources/PackLoadError.h index 7a28fc52d4..205d21ae27 100644 --- a/src/mc/resources/PackLoadError.h +++ b/src/mc/resources/PackLoadError.h @@ -35,15 +35,15 @@ class PackLoadError : public ::PackError { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND public: // virtual function thunks // NOLINTBEGIN - MCAPI ::std::unordered_map const& $getLocErrorMessageMap() const; + MCFOLD ::std::unordered_map const& $getLocErrorMessageMap() const; - MCAPI ::std::unordered_map const& $getEventErrorMessageMap() const; + MCFOLD ::std::unordered_map const& $getEventErrorMessageMap() const; // NOLINTEND public: diff --git a/src/mc/resources/PackLoadRequirement.h b/src/mc/resources/PackLoadRequirement.h index 95500b93c3..b17bb4cfb6 100644 --- a/src/mc/resources/PackLoadRequirement.h +++ b/src/mc/resources/PackLoadRequirement.h @@ -2,9 +2,6 @@ #include "mc/_HeaderOutputPredefine.h" -// auto generated inclusion list -#include "mc/world/level/storage/AllExperiments.h" - // auto generated forward declare list // clang-format off class BaseGamePackLoadRequirement; @@ -25,16 +22,4 @@ class PackLoadRequirement { PackLoadRequirement& operator=(PackLoadRequirement const&); PackLoadRequirement(PackLoadRequirement const&); PackLoadRequirement(); - -public: - // member functions - // NOLINTBEGIN - MCAPI explicit PackLoadRequirement(::AllExperiments requirement); - // NOLINTEND - -public: - // constructor thunks - // NOLINTBEGIN - MCAPI void* $ctor(::AllExperiments requirement); - // NOLINTEND }; diff --git a/src/mc/resources/PackManifest.h b/src/mc/resources/PackManifest.h index baf1672ac1..ce49ef6de7 100644 --- a/src/mc/resources/PackManifest.h +++ b/src/mc/resources/PackManifest.h @@ -114,7 +114,7 @@ class PackManifest : public ::Bedrock::EnableNonOwnerReferences { MCAPI void addPackDependency(::PackIdVersion const& packId); - MCAPI ::ContentIdentity const& getContentIdentity() const; + MCFOLD ::ContentIdentity const& getContentIdentity() const; MCAPI ::std::vector<::PackIdVersion> const& getDependentPackIdentities() const; @@ -122,21 +122,21 @@ class PackManifest : public ::Bedrock::EnableNonOwnerReferences { MCAPI ::PackManifestFormat getFormatVersion() const; - MCAPI ::PackIdVersion const& getIdentity() const; + MCFOLD ::PackIdVersion const& getIdentity() const; MCAPI ::std::vector<::std::string> const& getLanguageCodesForPackKeywords() const; - MCAPI ::ResourceLocation const& getLocation() const; + MCFOLD ::ResourceLocation const& getLocation() const; MCAPI ::ManifestOrigin getManifestOrigin() const; MCAPI ::ResourceMetadata const& getMetaData() const; - MCAPI ::MinEngineVersion const& getMinEngineVersion() const; + MCFOLD ::MinEngineVersion const& getMinEngineVersion() const; - MCAPI ::std::vector<::ModuleIdentifier> const& getModuleDependencies() const; + MCFOLD ::std::vector<::ModuleIdentifier> const& getModuleDependencies() const; - MCAPI ::std::vector<::ResourceInformation> const& getModules() const; + MCFOLD ::std::vector<::ResourceInformation> const& getModules() const; MCAPI ::std::string getName() const; diff --git a/src/mc/resources/PackReport.h b/src/mc/resources/PackReport.h index 24f4c7c992..97fac3a533 100644 --- a/src/mc/resources/PackReport.h +++ b/src/mc/resources/PackReport.h @@ -40,13 +40,13 @@ class PackReport { MCAPI PackReport(::PackReport&&); - MCAPI ::std::vector<::std::shared_ptr<::PackError>> const& getErrors() const; + MCFOLD ::std::vector<::std::shared_ptr<::PackError>> const& getErrors() const; - MCAPI ::ResourceLocation const& getLocation() const; + MCFOLD ::ResourceLocation const& getLocation() const; - MCAPI ::std::string const& getOriginalName() const; + MCFOLD ::std::string const& getOriginalName() const; - MCAPI ::std::string const& getOriginalVersion() const; + MCFOLD ::std::string const& getOriginalVersion() const; MCAPI ::PackType getPackType() const; @@ -70,9 +70,9 @@ class PackReport { MCAPI void setPackType(::PackType packType); - MCAPI void setUpgradeSuccess(); + MCFOLD void setUpgradeSuccess(); - MCAPI bool wasUpgraded() const; + MCFOLD bool wasUpgraded() const; MCAPI ~PackReport(); // NOLINTEND diff --git a/src/mc/resources/PackSettings.h b/src/mc/resources/PackSettings.h index cccdc1564b..cc0c0410d4 100644 --- a/src/mc/resources/PackSettings.h +++ b/src/mc/resources/PackSettings.h @@ -22,7 +22,7 @@ class PackSettings { // NOLINTBEGIN MCAPI void _initPackSetting(::std::string const& name, ::Json::Value const& value); - MCAPI ::Json::Value const& getAllSettings() const; + MCFOLD ::Json::Value const& getAllSettings() const; MCAPI void loadPackSettings(::PackIdVersion const& packId, ::Json::Value const& packSettings); // NOLINTEND diff --git a/src/mc/resources/PackSettingsError.h b/src/mc/resources/PackSettingsError.h index b294a4d9ac..e3ce14bf9a 100644 --- a/src/mc/resources/PackSettingsError.h +++ b/src/mc/resources/PackSettingsError.h @@ -37,7 +37,7 @@ class PackSettingsError : public ::PackError { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND public: diff --git a/src/mc/resources/PackSource.h b/src/mc/resources/PackSource.h index 455b4f6677..e0371de72e 100644 --- a/src/mc/resources/PackSource.h +++ b/src/mc/resources/PackSource.h @@ -57,9 +57,9 @@ class PackSource { public: // virtual function thunks // NOLINTBEGIN - MCAPI ::PackOrigin $getPackOrigin() const; + MCFOLD ::PackOrigin $getPackOrigin() const; - MCAPI ::PackType $getPackType() const; + MCFOLD ::PackType $getPackType() const; // NOLINTEND public: diff --git a/src/mc/resources/PackSourceReport.h b/src/mc/resources/PackSourceReport.h index bb166fa200..54aa151edc 100644 --- a/src/mc/resources/PackSourceReport.h +++ b/src/mc/resources/PackSourceReport.h @@ -30,7 +30,7 @@ class PackSourceReport { MCAPI void addReport(::PackIdVersion const& packId, ::PackReport&& report); - MCAPI ::std::unordered_map<::PackIdVersion, ::PackReport> const& getReports() const; + MCFOLD ::std::unordered_map<::PackIdVersion, ::PackReport> const& getReports() const; MCAPI bool hasErrors() const; diff --git a/src/mc/resources/RealmsUnknownPackSource.h b/src/mc/resources/RealmsUnknownPackSource.h index f05483c9b2..a6843fd1ce 100644 --- a/src/mc/resources/RealmsUnknownPackSource.h +++ b/src/mc/resources/RealmsUnknownPackSource.h @@ -66,13 +66,13 @@ class RealmsUnknownPackSource : public ::PackSource { public: // virtual function thunks // NOLINTBEGIN - MCAPI void $forEachPackConst(::std::function callback) const; + MCFOLD void $forEachPackConst(::std::function callback) const; - MCAPI void $forEachPack(::std::function callback); + MCFOLD void $forEachPack(::std::function callback); - MCAPI ::PackOrigin $getPackOrigin() const; + MCFOLD ::PackOrigin $getPackOrigin() const; - MCAPI ::PackType $getPackType() const; + MCFOLD ::PackType $getPackType() const; MCAPI ::PackSourceReport $load( ::IPackManifestFactory& manifestFactory, diff --git a/src/mc/resources/ResourceGroup.h b/src/mc/resources/ResourceGroup.h index 97481e067a..2699fb140b 100644 --- a/src/mc/resources/ResourceGroup.h +++ b/src/mc/resources/ResourceGroup.h @@ -29,7 +29,7 @@ class ResourceGroup : public ::Bedrock::NonCopyable { public: // constructor thunks // NOLINTBEGIN - MCAPI void* $ctor(); + MCFOLD void* $ctor(); // NOLINTEND public: diff --git a/src/mc/resources/ResourcePackListener.h b/src/mc/resources/ResourcePackListener.h index c4ca6d68dd..c872edb80f 100644 --- a/src/mc/resources/ResourcePackListener.h +++ b/src/mc/resources/ResourcePackListener.h @@ -39,13 +39,13 @@ class ResourcePackListener { public: // virtual function thunks // NOLINTBEGIN - MCAPI bool $onFullPackStackInvalid(); + MCFOLD bool $onFullPackStackInvalid(); - MCAPI void $onBaseGamePackDownloadComplete(); + MCFOLD void $onBaseGamePackDownloadComplete(); - MCAPI void $onLanguageSubpacksChanged(); + MCFOLD void $onLanguageSubpacksChanged(); - MCAPI void $onResourceManagerDestroyed(::ResourcePackManager& mgr); + MCFOLD void $onResourceManagerDestroyed(::ResourcePackManager& mgr); // NOLINTEND public: diff --git a/src/mc/resources/ResourcePackManager.h b/src/mc/resources/ResourcePackManager.h index f776480867..fadf5c2311 100644 --- a/src/mc/resources/ResourcePackManager.h +++ b/src/mc/resources/ResourcePackManager.h @@ -67,9 +67,9 @@ class ResourcePackManager : public ::ResourceLoader { // vIndex: 1 virtual bool load( - ::ResourceLocationPair const& resourceLocation, + ::ResourceLocationPair const& resourceLocationPair, ::std::string& resourceStream, - ::gsl::span<::std::string const> extensions + ::gsl::span<::std::string const> extensionList ) const /*override*/; // vIndex: 4 @@ -90,7 +90,8 @@ class ResourcePackManager : public ::ResourceLoader { // vIndex: 7 virtual ::Core::PathBuffer<::std::string> - getPath(::ResourceLocation const& resourceLocation, ::gsl::span<::std::string const> extensions) const /*override*/; + getPath(::ResourceLocation const& resourceLocation, ::gsl::span<::std::string const> extensionList) const + /*override*/; // vIndex: 10 virtual ::Core::PathBuffer<::std::string> getPathContainingResource(::ResourceLocation const& resourceLocation @@ -99,13 +100,13 @@ class ResourcePackManager : public ::ResourceLoader { // vIndex: 9 virtual ::Core::PathBuffer<::std::string> getPathContainingResource( ::ResourceLocation const& resourceLocation, - ::gsl::span<::std::string const> extensions + ::gsl::span<::std::string const> extensionList ) const /*override*/; // vIndex: 11 virtual ::std::pair getPackStackIndexOfResource( ::ResourceLocation const& resourceLocation, - ::gsl::span<::std::string const> extensions + ::gsl::span<::std::string const> extensionList ) const /*override*/; // vIndex: 12 @@ -144,7 +145,7 @@ class ResourcePackManager : public ::ResourceLoader { ::ResourcePackStack const& addonStack ) const; - MCAPI ::PackSourceReport const* getPackSourceReport() const; + MCFOLD ::PackSourceReport const* getPackSourceReport() const; MCAPI ::ResourceGroup getResourcesOfGroup(::std::string const& group) const; @@ -202,9 +203,9 @@ class ResourcePackManager : public ::ResourceLoader { ) const; MCAPI bool $load( - ::ResourceLocationPair const& resourceLocation, + ::ResourceLocationPair const& resourceLocationPair, ::std::string& resourceStream, - ::gsl::span<::std::string const> extensions + ::gsl::span<::std::string const> extensionList ) const; MCAPI ::std::vector<::LoadedResourceData> $loadAllVersionsOf(::ResourceLocation const& resourceLocation) const; @@ -219,19 +220,19 @@ class ResourcePackManager : public ::ResourceLoader { MCAPI ::Core::PathBuffer<::std::string> $getPath(::ResourceLocation const& resourceLocation) const; MCAPI ::Core::PathBuffer<::std::string> - $getPath(::ResourceLocation const& resourceLocation, ::gsl::span<::std::string const> extensions) const; + $getPath(::ResourceLocation const& resourceLocation, ::gsl::span<::std::string const> extensionList) const; MCAPI ::Core::PathBuffer<::std::string> $getPathContainingResource(::ResourceLocation const& resourceLocation ) const; MCAPI ::Core::PathBuffer<::std::string> $getPathContainingResource( ::ResourceLocation const& resourceLocation, - ::gsl::span<::std::string const> extensions + ::gsl::span<::std::string const> extensionList ) const; MCAPI ::std::pair $getPackStackIndexOfResource( ::ResourceLocation const& resourceLocation, - ::gsl::span<::std::string const> extensions + ::gsl::span<::std::string const> extensionList ) const; MCAPI bool $hasCapability(::std::string_view requiredCapability) const; diff --git a/src/mc/resources/ResourcePackRepository.h b/src/mc/resources/ResourcePackRepository.h index 430fa4340e..1186afd00e 100644 --- a/src/mc/resources/ResourcePackRepository.h +++ b/src/mc/resources/ResourcePackRepository.h @@ -348,17 +348,17 @@ class ResourcePackRepository : public ::IResourcePackRepository { MCAPI bool $isResourcePackLoaded(::PackIdVersion const& identity, ::PackOrigin const& location); - MCAPI ::PackSourceReport const* $getPackLoadingReport() const; + MCFOLD ::PackSourceReport const* $getPackLoadingReport() const; - MCAPI ::ResourcePack* $getEditorPack() const; + MCFOLD ::ResourcePack* $getEditorPack() const; - MCAPI ::ResourcePack* $getVanillaPack() const; + MCFOLD ::ResourcePack* $getVanillaPack() const; MCAPI bool $setServicePacks(::std::vector<::PackIdVersion> servicePackIds); MCAPI bool $hasServicePacks(::std::vector<::PackIdVersion> const& servicePacksIds) const; - MCAPI ::std::vector<::PackIdVersion> const& $getServicePacks() const; + MCFOLD ::std::vector<::PackIdVersion> const& $getServicePacks() const; MCAPI void $addServicePacksToStack(::ResourcePackStack& stack) const; @@ -401,11 +401,11 @@ class ResourcePackRepository : public ::IResourcePackRepository { MCAPI ::PackManifestFactory& $getPackManifestFactory(); - MCAPI ::PackSettingsFactory& $getPackSettingsFactory() const; + MCFOLD ::PackSettingsFactory& $getPackSettingsFactory() const; - MCAPI ::PackSourceFactory& $getPackSourceFactory(); + MCFOLD ::PackSourceFactory& $getPackSourceFactory(); - MCAPI ::CompositePackSource const* $getWorldPackSource() const; + MCFOLD ::CompositePackSource const* $getWorldPackSource() const; MCAPI ::std::vector<::ResourcePack*> $getPacksByResourceLocation(::PackOrigin type) const; diff --git a/src/mc/resources/ResourceSignature.h b/src/mc/resources/ResourceSignature.h index 83be5817be..11b1c4ea14 100644 --- a/src/mc/resources/ResourceSignature.h +++ b/src/mc/resources/ResourceSignature.h @@ -45,6 +45,6 @@ class ResourceSignature { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/resources/ServerContentKeyProvider.h b/src/mc/resources/ServerContentKeyProvider.h index a1e2b58f66..865571df10 100644 --- a/src/mc/resources/ServerContentKeyProvider.h +++ b/src/mc/resources/ServerContentKeyProvider.h @@ -41,11 +41,11 @@ class ServerContentKeyProvider : public ::IContentAccessibilityProvider { // NOLINTBEGIN MCAPI ::std::string $getContentKey(::ContentIdentity const& contentIdentity) const; - MCAPI bool $canAccess(::ContentIdentity const& contentIdentity) const; + MCFOLD bool $canAccess(::ContentIdentity const& contentIdentity) const; - MCAPI void $setTempContentKeys(::std::unordered_map<::ContentIdentity, ::std::string> const&); + MCFOLD void $setTempContentKeys(::std::unordered_map<::ContentIdentity, ::std::string> const&); - MCAPI void $clearTempContentKeys(); + MCFOLD void $clearTempContentKeys(); // NOLINTEND public: diff --git a/src/mc/resources/SubpackInfo.h b/src/mc/resources/SubpackInfo.h index 0a3e46225e..9f98602501 100644 --- a/src/mc/resources/SubpackInfo.h +++ b/src/mc/resources/SubpackInfo.h @@ -26,6 +26,6 @@ struct SubpackInfo { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/resources/SubpackInfoCollection.h b/src/mc/resources/SubpackInfoCollection.h index 5ec86b8316..0e1c9aa756 100644 --- a/src/mc/resources/SubpackInfoCollection.h +++ b/src/mc/resources/SubpackInfoCollection.h @@ -30,7 +30,7 @@ class SubpackInfoCollection { MCAPI ::std::string const& getSubpackFolderName(int index) const; - MCAPI ::std::vector<::SubpackInfo> const& getSubpackInfo() const; + MCFOLD ::std::vector<::SubpackInfo> const& getSubpackInfo() const; MCAPI bool hasSubpacks() const; // NOLINTEND diff --git a/src/mc/resources/ValidatorRegistry.h b/src/mc/resources/ValidatorRegistry.h index 0508664f9d..8296c12d83 100644 --- a/src/mc/resources/ValidatorRegistry.h +++ b/src/mc/resources/ValidatorRegistry.h @@ -48,7 +48,7 @@ class ValidatorRegistry : public ::Bedrock::EnableNonOwnerReferences { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/resources/WorldHistoryPackSource.h b/src/mc/resources/WorldHistoryPackSource.h index 4f055f0b2a..18b5a4fc48 100644 --- a/src/mc/resources/WorldHistoryPackSource.h +++ b/src/mc/resources/WorldHistoryPackSource.h @@ -73,7 +73,7 @@ class WorldHistoryPackSource : public ::PackSource { MCAPI bool _readWorldHistoryFile(); - MCAPI ::Core::PathBuffer<::std::string> const& getPathToWorld() const; + MCFOLD ::Core::PathBuffer<::std::string> const& getPathToWorld() const; // NOLINTEND public: @@ -98,13 +98,13 @@ class WorldHistoryPackSource : public ::PackSource { public: // virtual function thunks // NOLINTBEGIN - MCAPI void $forEachPackConst(::std::function callback) const; + MCFOLD void $forEachPackConst(::std::function callback) const; - MCAPI void $forEachPack(::std::function callback); + MCFOLD void $forEachPack(::std::function callback); - MCAPI ::PackOrigin $getPackOrigin() const; + MCFOLD ::PackOrigin $getPackOrigin() const; - MCAPI ::PackType $getPackType() const; + MCFOLD ::PackType $getPackType() const; MCAPI ::PackSourceReport $load( ::IPackManifestFactory& manifestFactory, diff --git a/src/mc/resources/WorldPacksHistoryFile.h b/src/mc/resources/WorldPacksHistoryFile.h index d841e160df..9f17d8a84a 100644 --- a/src/mc/resources/WorldPacksHistoryFile.h +++ b/src/mc/resources/WorldPacksHistoryFile.h @@ -34,7 +34,7 @@ class WorldPacksHistoryFile { // NOLINTBEGIN MCAPI WorldPacksHistoryFile(); - MCAPI ::std::vector<::WorldPackHistory> const& getPacks() const; + MCFOLD ::std::vector<::WorldPackHistory> const& getPacks() const; MCAPI ::WorldPacksHistoryFile::ParseResult initializeFromJson(::Json::Value const& value); @@ -48,7 +48,7 @@ class WorldPacksHistoryFile { public: // constructor thunks // NOLINTBEGIN - MCAPI void* $ctor(); + MCFOLD void* $ctor(); // NOLINTEND public: diff --git a/src/mc/resources/WorldTemplateManager.h b/src/mc/resources/WorldTemplateManager.h index 5e7a3bbf45..933d5d9ce3 100644 --- a/src/mc/resources/WorldTemplateManager.h +++ b/src/mc/resources/WorldTemplateManager.h @@ -111,7 +111,7 @@ class WorldTemplateManager : public ::IWorldTemplateManager { public: // virtual function thunks // NOLINTBEGIN - MCAPI ::std::vector<::std::unique_ptr<::WorldTemplateInfo>> const& $getLocalTemplates() const; + MCFOLD ::std::vector<::std::unique_ptr<::WorldTemplateInfo>> const& $getLocalTemplates() const; MCAPI ::WorldTemplateInfo const* $findInstalledWorldTemplateByUUID(::std::vector<::mce::UUID> const& packUUIDs ) const; diff --git a/src/mc/resources/WorldTemplateManagerProxy.h b/src/mc/resources/WorldTemplateManagerProxy.h index e0f984dd78..1c47793b62 100644 --- a/src/mc/resources/WorldTemplateManagerProxy.h +++ b/src/mc/resources/WorldTemplateManagerProxy.h @@ -37,6 +37,6 @@ class WorldTemplateManagerProxy { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/resources/WorldTemplateManagerProxyCallbacks.h b/src/mc/resources/WorldTemplateManagerProxyCallbacks.h index b0855829fe..9d18022748 100644 --- a/src/mc/resources/WorldTemplateManagerProxyCallbacks.h +++ b/src/mc/resources/WorldTemplateManagerProxyCallbacks.h @@ -26,6 +26,6 @@ struct WorldTemplateManagerProxyCallbacks { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/resources/ZipPackAccessStrategy.h b/src/mc/resources/ZipPackAccessStrategy.h index 493b1f742d..2a7598981b 100644 --- a/src/mc/resources/ZipPackAccessStrategy.h +++ b/src/mc/resources/ZipPackAccessStrategy.h @@ -121,13 +121,13 @@ class ZipPackAccessStrategy : public ::PackAccessStrategy { // NOLINTBEGIN MCAPI uint64 $getPackSize() const; - MCAPI ::ResourceLocation const& $getPackLocation() const; + MCFOLD ::ResourceLocation const& $getPackLocation() const; - MCAPI ::std::string const& $getPackName() const; + MCFOLD ::std::string const& $getPackName() const; MCAPI void $setIsTrusted(bool newValue); - MCAPI bool $isWritable() const; + MCFOLD bool $isWritable() const; MCAPI bool $isTrusted() const; @@ -147,11 +147,11 @@ class ZipPackAccessStrategy : public ::PackAccessStrategy { bool recurseAnyways ) const; - MCAPI ::PackAccessStrategyType $getStrategyType() const; + MCFOLD ::PackAccessStrategyType $getStrategyType() const; - MCAPI ::Core::PathBuffer<::std::string> const& $getSubPath() const; + MCFOLD ::Core::PathBuffer<::std::string> const& $getSubPath() const; - MCAPI bool $supportsSignatureVerification() const; + MCFOLD bool $supportsSignatureVerification() const; MCAPI void $unload(); diff --git a/src/mc/resources/ZippedEncryptedFilesAccessStrategy.h b/src/mc/resources/ZippedEncryptedFilesAccessStrategy.h index b936c6a2cf..2886053842 100644 --- a/src/mc/resources/ZippedEncryptedFilesAccessStrategy.h +++ b/src/mc/resources/ZippedEncryptedFilesAccessStrategy.h @@ -114,7 +114,7 @@ class ZippedEncryptedFilesAccessStrategy : public ::EncryptedFileAccessStrategy public: // virtual function thunks // NOLINTBEGIN - MCAPI ::ResourceLocation const& $getPackLocation() const; + MCFOLD ::ResourceLocation const& $getPackLocation() const; MCAPI bool $hasFolder(::Core::Path const& packRelativePath) const; @@ -124,11 +124,11 @@ class ZippedEncryptedFilesAccessStrategy : public ::EncryptedFileAccessStrategy bool recurseAnyways ) const; - MCAPI ::PackAccessStrategyType $getStrategyType() const; + MCFOLD ::PackAccessStrategyType $getStrategyType() const; - MCAPI ::Core::PathBuffer<::std::string> const& $getSubPath() const; + MCFOLD ::Core::PathBuffer<::std::string> const& $getSubPath() const; - MCAPI bool $supportsSignatureVerification() const; + MCFOLD bool $supportsSignatureVerification() const; MCAPI ::std::unique_ptr<::PackAccessStrategy> $createSubPack(::Core::Path const& subPath) const; diff --git a/src/mc/resources/interface/IPackManifestFactory.h b/src/mc/resources/interface/IPackManifestFactory.h index 35bdd7296c..6f0649b454 100644 --- a/src/mc/resources/interface/IPackManifestFactory.h +++ b/src/mc/resources/interface/IPackManifestFactory.h @@ -26,7 +26,7 @@ class IPackManifestFactory { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND public: diff --git a/src/mc/resources/persona/Swatch.h b/src/mc/resources/persona/Swatch.h index cc1f3c6869..f61e1c8d90 100644 --- a/src/mc/resources/persona/Swatch.h +++ b/src/mc/resources/persona/Swatch.h @@ -27,7 +27,7 @@ struct Swatch { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/safety/RedactableString.h b/src/mc/safety/RedactableString.h index 5b0148fd38..0809705732 100644 --- a/src/mc/safety/RedactableString.h +++ b/src/mc/safety/RedactableString.h @@ -34,13 +34,13 @@ class RedactableString { MCAPI ::Bedrock::Result erase(uint64 offset, uint64 count); - MCAPI ::std::optional<::std::string> const& getRedacted() const; + MCFOLD ::std::optional<::std::string> const& getRedacted() const; MCAPI ::std::optional<::std::string>&& getRedacted(); - MCAPI ::std::string const& getUnredacted() const; + MCFOLD ::std::string const& getUnredacted() const; - MCAPI bool const hasRedacted() const; + MCFOLD bool const hasRedacted() const; MCAPI ::Bedrock::Safety::RedactableString& operator+=(::std::string unredactedSuffix); diff --git a/src/mc/scripting/ScriptBindingReleaseList.h b/src/mc/scripting/ScriptBindingReleaseList.h index 9a1c2d7d5f..b3a80ea627 100644 --- a/src/mc/scripting/ScriptBindingReleaseList.h +++ b/src/mc/scripting/ScriptBindingReleaseList.h @@ -34,7 +34,7 @@ class ScriptBindingReleaseList { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/scripting/ScriptContentLogEndPoint.h b/src/mc/scripting/ScriptContentLogEndPoint.h index ed5286fd41..940cc59f34 100644 --- a/src/mc/scripting/ScriptContentLogEndPoint.h +++ b/src/mc/scripting/ScriptContentLogEndPoint.h @@ -71,13 +71,13 @@ class ScriptContentLogEndPoint : public ::ContentLogEndPoint { // NOLINTBEGIN MCAPI void $log(::LogArea const, ::LogLevel const logLevel, char const* message); - MCAPI bool $logOnlyOnce() const; + MCFOLD bool $logOnlyOnce() const; - MCAPI void $flush(); + MCFOLD void $flush(); - MCAPI void $setEnabled(bool enabled); + MCFOLD void $setEnabled(bool enabled); - MCAPI bool $isEnabled() const; + MCFOLD bool $isEnabled() const; // NOLINTEND public: diff --git a/src/mc/scripting/ScriptFormPromiseTracker.h b/src/mc/scripting/ScriptFormPromiseTracker.h index e7f3ce0c4d..70e1234aad 100644 --- a/src/mc/scripting/ScriptFormPromiseTracker.h +++ b/src/mc/scripting/ScriptFormPromiseTracker.h @@ -65,7 +65,7 @@ class ScriptFormPromiseTracker : public ::Bedrock::EnableNonOwnerReferences, public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/scripting/ScriptPackConfiguration.h b/src/mc/scripting/ScriptPackConfiguration.h index 7cdc558fdc..09aac4015b 100644 --- a/src/mc/scripting/ScriptPackConfiguration.h +++ b/src/mc/scripting/ScriptPackConfiguration.h @@ -26,11 +26,11 @@ class ScriptPackConfiguration { MCAPI ScriptPackConfiguration(::ScriptPackConfiguration&&); - MCAPI ::ScriptPackPermissions const& getPermissions() const; + MCFOLD ::ScriptPackPermissions const& getPermissions() const; - MCAPI ::std::unordered_map<::std::string, ::std::string> const& getSecrets() const; + MCFOLD ::std::unordered_map<::std::string, ::std::string> const& getSecrets() const; - MCAPI ::std::unordered_map<::std::string, ::Json::Value> const& getVariables() const; + MCFOLD ::std::unordered_map<::std::string, ::Json::Value> const& getVariables() const; MCAPI ::ScriptPackConfiguration& operator=(::ScriptPackConfiguration&&); diff --git a/src/mc/scripting/ScriptPackConfigurationManager.h b/src/mc/scripting/ScriptPackConfigurationManager.h index c91aeae155..1a19306267 100644 --- a/src/mc/scripting/ScriptPackConfigurationManager.h +++ b/src/mc/scripting/ScriptPackConfigurationManager.h @@ -36,7 +36,7 @@ class ScriptPackConfigurationManager : public ::Bedrock::EnableNonOwnerReference MCAPI explicit ScriptPackConfigurationManager(::std::optional<::Core::PathBuffer<::std::string>> configDirectory); - MCAPI ::std::optional<::Core::PathBuffer<::std::string>> const& getConfigPath() const; + MCFOLD ::std::optional<::Core::PathBuffer<::std::string>> const& getConfigPath() const; MCAPI ::ScriptPackConfiguration const& getPackConfiguration(::std::string const& packIdentifier) const; diff --git a/src/mc/scripting/ScriptPlugin.h b/src/mc/scripting/ScriptPlugin.h index ff464efc54..16b4ceb8f1 100644 --- a/src/mc/scripting/ScriptPlugin.h +++ b/src/mc/scripting/ScriptPlugin.h @@ -79,27 +79,27 @@ class ScriptPlugin : public ::Scripting::IDependencyLoader { MCAPI ::std::optional<::Scripting::ScriptData> _loadScript(::std::string const& fileName); - MCAPI ::Scripting::Capabilities const& getCapabilities() const; + MCFOLD ::Scripting::Capabilities const& getCapabilities() const; - MCAPI ::PluginExecutionGroup getExecutionGroup() const; + MCFOLD ::PluginExecutionGroup getExecutionGroup() const; - MCAPI ::std::string const& getMainScriptFilePath() const; + MCFOLD ::std::string const& getMainScriptFilePath() const; - MCAPI ::MinEngineVersion const& getMinEngineVersion() const; + MCFOLD ::MinEngineVersion const& getMinEngineVersion() const; - MCAPI ::std::vector<::Scripting::ModuleDescriptor> const& getModuleDependencies() const; + MCFOLD ::std::vector<::Scripting::ModuleDescriptor> const& getModuleDependencies() const; - MCAPI ::Scripting::ModuleDescriptor const& getModuleDescriptor() const; + MCFOLD ::Scripting::ModuleDescriptor const& getModuleDescriptor() const; MCAPI ::mce::UUID getModuleUUID() const; - MCAPI ::PackIdVersion const& getPackId() const; + MCFOLD ::PackIdVersion const& getPackId() const; MCAPI ::std::string const& getRuntimeName() const; MCAPI ::Scripting::ScriptContext& getScriptContext(); - MCAPI ::std::vector<::std::string> const& getScriptFilePaths() const; + MCFOLD ::std::vector<::std::string> const& getScriptFilePaths() const; MCAPI bool hasValidScriptContext() const; diff --git a/src/mc/scripting/ScriptPluginHandleCounter.h b/src/mc/scripting/ScriptPluginHandleCounter.h index ccb69bec20..cc26c4ef7a 100644 --- a/src/mc/scripting/ScriptPluginHandleCounter.h +++ b/src/mc/scripting/ScriptPluginHandleCounter.h @@ -52,7 +52,7 @@ class ScriptPluginHandleCounter : public ::Scripting::ILifetimeScopeListener { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; @@ -131,7 +131,7 @@ class ScriptPluginHandleCounter : public ::Scripting::ILifetimeScopeListener { MCAPI ::std::string getName() const; - MCAPI ::ScriptPlugin& getScriptPlugin(); + MCFOLD ::ScriptPlugin& getScriptPlugin(); MCAPI ::ScriptPluginHandleCounter::TypeStats const* getStatsById(uint id) const; // NOLINTEND @@ -171,13 +171,13 @@ class ScriptPluginHandleCounter : public ::Scripting::ILifetimeScopeListener { uint size ); - MCAPI void $onObjectReducedToSingleOwner(::Scripting::LifetimeRegistry&, ::Scripting::ObjectHandle); + MCFOLD void $onObjectReducedToSingleOwner(::Scripting::LifetimeRegistry&, ::Scripting::ObjectHandle); - MCAPI void $onObjectPromotedToMultipleOwners(::Scripting::LifetimeRegistry&, ::Scripting::ObjectHandle); + MCFOLD void $onObjectPromotedToMultipleOwners(::Scripting::LifetimeRegistry&, ::Scripting::ObjectHandle); - MCAPI void $onPreLifetimeScopeDestroy(::Scripting::LifetimeRegistry&); + MCFOLD void $onPreLifetimeScopeDestroy(::Scripting::LifetimeRegistry&); - MCAPI void $onPostLifetimeScopeDestroy(::Scripting::LifetimeRegistry&); + MCFOLD void $onPostLifetimeScopeDestroy(::Scripting::LifetimeRegistry&); // NOLINTEND public: diff --git a/src/mc/scripting/ScriptPluginManager.h b/src/mc/scripting/ScriptPluginManager.h index c9bc82749f..604f75314b 100644 --- a/src/mc/scripting/ScriptPluginManager.h +++ b/src/mc/scripting/ScriptPluginManager.h @@ -121,7 +121,7 @@ class ScriptPluginManager { MCAPI ::std::vector<::ScriptPluginStats> getPluginStatsByIdType(uint id) const; - MCAPI ::std::vector<::std::unique_ptr<::ScriptPlugin>>& getPlugins(); + MCFOLD ::std::vector<::std::unique_ptr<::ScriptPlugin>>& getPlugins(); MCAPI void releaseAll(); diff --git a/src/mc/scripting/ScriptPluginManagerResult.h b/src/mc/scripting/ScriptPluginManagerResult.h index 37cc5e34d0..57eb5cb8ee 100644 --- a/src/mc/scripting/ScriptPluginManagerResult.h +++ b/src/mc/scripting/ScriptPluginManagerResult.h @@ -28,7 +28,7 @@ class ScriptPluginManagerResult { MCAPI ::ScriptPluginResult& getOrCreatePluginResults(::PackIdVersion packId, ::Scripting::ModuleDescriptor const& descriptor); - MCAPI ::std::vector<::ScriptPluginResult> const& getResults() const; + MCFOLD ::std::vector<::ScriptPluginResult> const& getResults() const; MCAPI void logMessages() const; diff --git a/src/mc/scripting/ScriptPluginPackSourceEnumerator.h b/src/mc/scripting/ScriptPluginPackSourceEnumerator.h index d436571bf0..096f64985b 100644 --- a/src/mc/scripting/ScriptPluginPackSourceEnumerator.h +++ b/src/mc/scripting/ScriptPluginPackSourceEnumerator.h @@ -56,7 +56,7 @@ class ScriptPluginPackSourceEnumerator : public ::IScriptPluginSourceEnumerator public: // virtual function thunks // NOLINTBEGIN - MCAPI ::std::vector<::std::shared_ptr<::IScriptPluginSource>> const& $getPluginSources() const; + MCFOLD ::std::vector<::std::shared_ptr<::IScriptPluginSource>> const& $getPluginSources() const; // NOLINTEND public: diff --git a/src/mc/scripting/ScriptPluginResult.h b/src/mc/scripting/ScriptPluginResult.h index 6e08be4f32..185f427083 100644 --- a/src/mc/scripting/ScriptPluginResult.h +++ b/src/mc/scripting/ScriptPluginResult.h @@ -41,7 +41,7 @@ class ScriptPluginResult { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; @@ -67,7 +67,7 @@ class ScriptPluginResult { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; @@ -93,7 +93,7 @@ class ScriptPluginResult { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; @@ -119,7 +119,7 @@ class ScriptPluginResult { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; @@ -149,13 +149,13 @@ class ScriptPluginResult { MCAPI ScriptPluginResult(::PackIdVersion packId, ::Scripting::ModuleDescriptor const& descriptor); - MCAPI ::std::vector<::ScriptPluginResult::Error> const& getErrors() const; + MCFOLD ::std::vector<::ScriptPluginResult::Error> const& getErrors() const; - MCAPI ::Scripting::ModuleDescriptor const& getModuleDescriptor() const; + MCFOLD ::Scripting::ModuleDescriptor const& getModuleDescriptor() const; MCAPI ::std::chrono::microseconds getRunDuration() const; - MCAPI ::std::vector<::ScriptPluginResult::Warning> const& getWarnings() const; + MCFOLD ::std::vector<::ScriptPluginResult::Warning> const& getWarnings() const; MCAPI void logError(::std::string const& error); diff --git a/src/mc/scripting/ScriptRuntimeMetadata.h b/src/mc/scripting/ScriptRuntimeMetadata.h index 953b93debb..4b8a4c4b04 100644 --- a/src/mc/scripting/ScriptRuntimeMetadata.h +++ b/src/mc/scripting/ScriptRuntimeMetadata.h @@ -27,6 +27,6 @@ struct ScriptRuntimeMetadata : public ::Scripting::IRuntimeMetadata { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/scripting/ServerScriptManager.h b/src/mc/scripting/ServerScriptManager.h index 2c046dd18d..0c069bdfa4 100644 --- a/src/mc/scripting/ServerScriptManager.h +++ b/src/mc/scripting/ServerScriptManager.h @@ -148,13 +148,13 @@ class ServerScriptManager : public ::EventListenerDispatcher<::ServerInstanceEve MCAPI ::Scripting::ScriptEngine& getScriptEngine(); - MCAPI ::ScriptSettings& getScriptSettings(); + MCFOLD ::ScriptSettings& getScriptSettings(); MCAPI void onMainThreadStartLeaveGame(); - MCAPI void setBlockCustomComponentCerealContext(::cereal::ReflectionCtx& ctx, ::Experiments const& experiments); + MCFOLD void setBlockCustomComponentCerealContext(::cereal::ReflectionCtx& ctx, ::Experiments const& experiments); - MCAPI void setItemCustomComponentCerealContext(::cereal::ReflectionCtx& ctx, ::Experiments const& experiments); + MCFOLD void setItemCustomComponentCerealContext(::cereal::ReflectionCtx& ctx, ::Experiments const& experiments); // NOLINTEND public: diff --git a/src/mc/scripting/commands/ScriptCommand.h b/src/mc/scripting/commands/ScriptCommand.h index 7231fc9a05..fdca3ee145 100644 --- a/src/mc/scripting/commands/ScriptCommand.h +++ b/src/mc/scripting/commands/ScriptCommand.h @@ -22,9 +22,9 @@ class ScriptCommand { // NOLINTBEGIN MCAPI explicit ScriptCommand(::std::string const& commandString); - MCAPI ::std::string getMessages() const; + MCFOLD ::std::string getMessages() const; - MCAPI int getSuccessCount() const; + MCFOLD int getSuccessCount() const; MCAPI void setOutput(int successCount, ::std::string&& messages); // NOLINTEND diff --git a/src/mc/scripting/commands/ScriptCommandOrigin.h b/src/mc/scripting/commands/ScriptCommandOrigin.h index 5c551a9972..41466876ef 100644 --- a/src/mc/scripting/commands/ScriptCommandOrigin.h +++ b/src/mc/scripting/commands/ScriptCommandOrigin.h @@ -117,35 +117,35 @@ class ScriptCommandOrigin : public ::CommandOrigin { public: // virtual function thunks // NOLINTBEGIN - MCAPI ::std::string const& $getRequestId() const; + MCFOLD ::std::string const& $getRequestId() const; MCAPI ::std::string $getName() const; - MCAPI ::BlockPos $getBlockPosition() const; + MCFOLD ::BlockPos $getBlockPosition() const; - MCAPI ::Vec3 $getWorldPosition() const; + MCFOLD ::Vec3 $getWorldPosition() const; - MCAPI ::std::optional<::Vec2> $getRotation() const; + MCFOLD ::std::optional<::Vec2> $getRotation() const; - MCAPI ::Level* $getLevel() const; + MCFOLD ::Level* $getLevel() const; - MCAPI ::Dimension* $getDimension() const; + MCFOLD ::Dimension* $getDimension() const; - MCAPI ::Actor* $getEntity() const; + MCFOLD ::Actor* $getEntity() const; - MCAPI ::CommandPermissionLevel $getPermissionsLevel() const; + MCFOLD ::CommandPermissionLevel $getPermissionsLevel() const; MCAPI ::std::unique_ptr<::CommandOrigin> $clone() const; - MCAPI bool $canUseCommandsWithoutCheatsEnabled() const; + MCFOLD bool $canUseCommandsWithoutCheatsEnabled() const; - MCAPI bool $isSelectorExpansionAllowed() const; + MCFOLD bool $isSelectorExpansionAllowed() const; - MCAPI ::CommandOriginType $getOriginType() const; + MCFOLD ::CommandOriginType $getOriginType() const; MCAPI void $handleCommandOutputCallback(int successCount, ::std::string&& messages) const; - MCAPI bool $isValid() const; + MCFOLD bool $isValid() const; // NOLINTEND public: diff --git a/src/mc/scripting/commands/ScriptCommandUtils.h b/src/mc/scripting/commands/ScriptCommandUtils.h index e41d068eb5..89a6a70797 100644 --- a/src/mc/scripting/commands/ScriptCommandUtils.h +++ b/src/mc/scripting/commands/ScriptCommandUtils.h @@ -16,9 +16,9 @@ namespace ScriptCommandUtils { // NOLINTBEGIN MCAPI bool CommandResultShouldThrow(::MCRESULT commandResult); -MCAPI ::CurrentCmdVersion ContextConfigToCommandVersion(::Scripting::ContextConfig const& contextConfig); +MCFOLD ::CurrentCmdVersion ContextConfigToCommandVersion(::Scripting::ContextConfig const& contextConfig); -MCAPI int ContextConfigToCommandVersionValue(::Scripting::ContextConfig const& contextConfig); +MCFOLD int ContextConfigToCommandVersionValue(::Scripting::ContextConfig const& contextConfig); // NOLINTEND } // namespace ScriptCommandUtils diff --git a/src/mc/scripting/commands/ScriptDebuggerCommandOrigin.h b/src/mc/scripting/commands/ScriptDebuggerCommandOrigin.h index 8c8795ab86..0001d37536 100644 --- a/src/mc/scripting/commands/ScriptDebuggerCommandOrigin.h +++ b/src/mc/scripting/commands/ScriptDebuggerCommandOrigin.h @@ -118,35 +118,35 @@ class ScriptDebuggerCommandOrigin : public ::CommandOrigin { public: // virtual function thunks // NOLINTBEGIN - MCAPI ::std::string const& $getRequestId() const; + MCFOLD ::std::string const& $getRequestId() const; MCAPI ::std::string $getName() const; - MCAPI ::BlockPos $getBlockPosition() const; + MCFOLD ::BlockPos $getBlockPosition() const; - MCAPI ::Vec3 $getWorldPosition() const; + MCFOLD ::Vec3 $getWorldPosition() const; - MCAPI ::std::optional<::Vec2> $getRotation() const; + MCFOLD ::std::optional<::Vec2> $getRotation() const; - MCAPI ::Level* $getLevel() const; + MCFOLD ::Level* $getLevel() const; MCAPI ::Dimension* $getDimension() const; - MCAPI ::Actor* $getEntity() const; + MCFOLD ::Actor* $getEntity() const; - MCAPI ::CommandPermissionLevel $getPermissionsLevel() const; + MCFOLD ::CommandPermissionLevel $getPermissionsLevel() const; MCAPI ::std::unique_ptr<::CommandOrigin> $clone() const; - MCAPI bool $canUseCommandsWithoutCheatsEnabled() const; + MCFOLD bool $canUseCommandsWithoutCheatsEnabled() const; - MCAPI bool $isSelectorExpansionAllowed() const; + MCFOLD bool $isSelectorExpansionAllowed() const; - MCAPI ::CommandOriginType $getOriginType() const; + MCFOLD ::CommandOriginType $getOriginType() const; MCAPI void $handleCommandOutputCallback(int successCount, ::std::string&& messages) const; - MCAPI bool $isValid() const; + MCFOLD bool $isValid() const; // NOLINTEND public: diff --git a/src/mc/scripting/debugger/ScriptDebugger.h b/src/mc/scripting/debugger/ScriptDebugger.h index 517c647373..c15c38880e 100644 --- a/src/mc/scripting/debugger/ScriptDebugger.h +++ b/src/mc/scripting/debugger/ScriptDebugger.h @@ -172,7 +172,7 @@ class ScriptDebugger : public ::IScriptDebugger, public ::IScriptStatPublisher { public: // virtual function thunks // NOLINTBEGIN - MCAPI ::ScriptDebuggerSettings const& $getSettings() const; + MCFOLD ::ScriptDebuggerSettings const& $getSettings() const; MCAPI bool $connect(::std::string const& host, ushort port); diff --git a/src/mc/scripting/debugger/ScriptDebuggerTransport.h b/src/mc/scripting/debugger/ScriptDebuggerTransport.h index 27c44b2ded..6d47f63b3a 100644 --- a/src/mc/scripting/debugger/ScriptDebuggerTransport.h +++ b/src/mc/scripting/debugger/ScriptDebuggerTransport.h @@ -77,7 +77,7 @@ class ScriptDebuggerTransport : public ::Scripting::IDebuggerTransport { MCAPI bool $selectClient(::std::string& outClient); - MCAPI bool $started() const; + MCFOLD bool $started() const; MCAPI bool $connected() const; diff --git a/src/mc/scripting/debugger/ScriptDebuggerWatchdog.h b/src/mc/scripting/debugger/ScriptDebuggerWatchdog.h index 37358842f1..88950500ac 100644 --- a/src/mc/scripting/debugger/ScriptDebuggerWatchdog.h +++ b/src/mc/scripting/debugger/ScriptDebuggerWatchdog.h @@ -44,7 +44,7 @@ class ScriptDebuggerWatchdog : public ::IScriptDebuggerWatchdog { public: // virtual function thunks // NOLINTBEGIN - MCAPI bool $requireClose() const; + MCFOLD bool $requireClose() const; MCAPI void $startListenTimeout(::std::chrono::seconds duration); diff --git a/src/mc/scripting/debugger/script_debugger_messages/CommandMessage.h b/src/mc/scripting/debugger/script_debugger_messages/CommandMessage.h index 8340ce0e2f..50a465208e 100644 --- a/src/mc/scripting/debugger/script_debugger_messages/CommandMessage.h +++ b/src/mc/scripting/debugger/script_debugger_messages/CommandMessage.h @@ -20,9 +20,9 @@ struct CommandMessage { public: // member functions // NOLINTBEGIN - MCAPI ::ScriptDebuggerMessages::CommandMessage& operator=(::ScriptDebuggerMessages::CommandMessage const&); + MCFOLD ::ScriptDebuggerMessages::CommandMessage& operator=(::ScriptDebuggerMessages::CommandMessage const&); - MCAPI ::ScriptDebuggerMessages::CommandMessage& operator=(::ScriptDebuggerMessages::CommandMessage&&); + MCFOLD ::ScriptDebuggerMessages::CommandMessage& operator=(::ScriptDebuggerMessages::CommandMessage&&); // NOLINTEND }; diff --git a/src/mc/scripting/debugger/script_debugger_messages/NotificationEvent.h b/src/mc/scripting/debugger/script_debugger_messages/NotificationEvent.h index c16f098718..8eab503785 100644 --- a/src/mc/scripting/debugger/script_debugger_messages/NotificationEvent.h +++ b/src/mc/scripting/debugger/script_debugger_messages/NotificationEvent.h @@ -21,11 +21,11 @@ struct NotificationEvent { public: // member functions // NOLINTBEGIN - MCAPI ::ScriptDebuggerMessages::NotificationEvent& operator=(::ScriptDebuggerMessages::NotificationEvent const&); + MCFOLD ::ScriptDebuggerMessages::NotificationEvent& operator=(::ScriptDebuggerMessages::NotificationEvent const&); - MCAPI ::ScriptDebuggerMessages::NotificationEvent& operator=(::ScriptDebuggerMessages::NotificationEvent&&); + MCFOLD ::ScriptDebuggerMessages::NotificationEvent& operator=(::ScriptDebuggerMessages::NotificationEvent&&); - MCAPI bool operator==(::ScriptDebuggerMessages::NotificationEvent const&) const; + MCFOLD bool operator==(::ScriptDebuggerMessages::NotificationEvent const&) const; MCAPI ~NotificationEvent(); // NOLINTEND @@ -33,7 +33,7 @@ struct NotificationEvent { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/scripting/debugger/script_debugger_messages/PluginDetails.h b/src/mc/scripting/debugger/script_debugger_messages/PluginDetails.h index 20eb5d1bc1..26bce7aba5 100644 --- a/src/mc/scripting/debugger/script_debugger_messages/PluginDetails.h +++ b/src/mc/scripting/debugger/script_debugger_messages/PluginDetails.h @@ -20,9 +20,9 @@ struct PluginDetails { public: // member functions // NOLINTBEGIN - MCAPI ::ScriptDebuggerMessages::PluginDetails& operator=(::ScriptDebuggerMessages::PluginDetails&&); + MCFOLD ::ScriptDebuggerMessages::PluginDetails& operator=(::ScriptDebuggerMessages::PluginDetails&&); - MCAPI ::ScriptDebuggerMessages::PluginDetails& operator=(::ScriptDebuggerMessages::PluginDetails const&); + MCFOLD ::ScriptDebuggerMessages::PluginDetails& operator=(::ScriptDebuggerMessages::PluginDetails const&); MCAPI bool operator==(::ScriptDebuggerMessages::PluginDetails const&) const; // NOLINTEND diff --git a/src/mc/scripting/debugger/script_debugger_messages/PrintEvent.h b/src/mc/scripting/debugger/script_debugger_messages/PrintEvent.h index 69e85d80e8..815a501b5f 100644 --- a/src/mc/scripting/debugger/script_debugger_messages/PrintEvent.h +++ b/src/mc/scripting/debugger/script_debugger_messages/PrintEvent.h @@ -21,11 +21,11 @@ struct PrintEvent { public: // member functions // NOLINTBEGIN - MCAPI ::ScriptDebuggerMessages::PrintEvent& operator=(::ScriptDebuggerMessages::PrintEvent const&); + MCFOLD ::ScriptDebuggerMessages::PrintEvent& operator=(::ScriptDebuggerMessages::PrintEvent const&); - MCAPI ::ScriptDebuggerMessages::PrintEvent& operator=(::ScriptDebuggerMessages::PrintEvent&&); + MCFOLD ::ScriptDebuggerMessages::PrintEvent& operator=(::ScriptDebuggerMessages::PrintEvent&&); - MCAPI bool operator==(::ScriptDebuggerMessages::PrintEvent const&) const; + MCFOLD bool operator==(::ScriptDebuggerMessages::PrintEvent const&) const; MCAPI ~PrintEvent(); // NOLINTEND @@ -33,7 +33,7 @@ struct PrintEvent { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/scripting/debugger/script_debugger_messages/ProfilerCapture.h b/src/mc/scripting/debugger/script_debugger_messages/ProfilerCapture.h index 7e3ce69d3c..85d2baeea8 100644 --- a/src/mc/scripting/debugger/script_debugger_messages/ProfilerCapture.h +++ b/src/mc/scripting/debugger/script_debugger_messages/ProfilerCapture.h @@ -21,7 +21,7 @@ struct ProfilerCapture { public: // member functions // NOLINTBEGIN - MCAPI ::ScriptDebuggerMessages::ProfilerCapture& operator=(::ScriptDebuggerMessages::ProfilerCapture&&); + MCFOLD ::ScriptDebuggerMessages::ProfilerCapture& operator=(::ScriptDebuggerMessages::ProfilerCapture&&); MCAPI ::ScriptDebuggerMessages::ProfilerCapture& operator=(::ScriptDebuggerMessages::ProfilerCapture const&); @@ -33,7 +33,7 @@ struct ProfilerCapture { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/scripting/debugger/script_debugger_messages/ProfilerMessage.h b/src/mc/scripting/debugger/script_debugger_messages/ProfilerMessage.h index 21dac02e53..1135727e61 100644 --- a/src/mc/scripting/debugger/script_debugger_messages/ProfilerMessage.h +++ b/src/mc/scripting/debugger/script_debugger_messages/ProfilerMessage.h @@ -20,9 +20,9 @@ struct ProfilerMessage { public: // member functions // NOLINTBEGIN - MCAPI ::ScriptDebuggerMessages::ProfilerMessage& operator=(::ScriptDebuggerMessages::ProfilerMessage const&); + MCFOLD ::ScriptDebuggerMessages::ProfilerMessage& operator=(::ScriptDebuggerMessages::ProfilerMessage const&); - MCAPI ::ScriptDebuggerMessages::ProfilerMessage& operator=(::ScriptDebuggerMessages::ProfilerMessage&&); + MCFOLD ::ScriptDebuggerMessages::ProfilerMessage& operator=(::ScriptDebuggerMessages::ProfilerMessage&&); // NOLINTEND }; diff --git a/src/mc/scripting/diagnostics/ScriptDiagnostics.h b/src/mc/scripting/diagnostics/ScriptDiagnostics.h index f682b09496..8b4edefae4 100644 --- a/src/mc/scripting/diagnostics/ScriptDiagnostics.h +++ b/src/mc/scripting/diagnostics/ScriptDiagnostics.h @@ -40,7 +40,7 @@ class ScriptDiagnostics { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/scripting/diagnostics/ScriptPluginHandleStats.h b/src/mc/scripting/diagnostics/ScriptPluginHandleStats.h index f7e00df5d3..2b58548020 100644 --- a/src/mc/scripting/diagnostics/ScriptPluginHandleStats.h +++ b/src/mc/scripting/diagnostics/ScriptPluginHandleStats.h @@ -31,6 +31,6 @@ struct ScriptPluginHandleStats { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/scripting/modules/gametest/ScriptNavigationResult.h b/src/mc/scripting/modules/gametest/ScriptNavigationResult.h index 23592fc044..0dd68a91bf 100644 --- a/src/mc/scripting/modules/gametest/ScriptNavigationResult.h +++ b/src/mc/scripting/modules/gametest/ScriptNavigationResult.h @@ -38,7 +38,7 @@ struct ScriptNavigationResult { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/scripting/modules/gametest/ScriptSculkSpreader.h b/src/mc/scripting/modules/gametest/ScriptSculkSpreader.h index 26baa80e88..677b5bdbeb 100644 --- a/src/mc/scripting/modules/gametest/ScriptSculkSpreader.h +++ b/src/mc/scripting/modules/gametest/ScriptSculkSpreader.h @@ -51,7 +51,7 @@ class ScriptSculkSpreader { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/scripting/modules/gametest/ScriptSimulatedPlayer.h b/src/mc/scripting/modules/gametest/ScriptSimulatedPlayer.h index cd95131a88..20408a5d41 100644 --- a/src/mc/scripting/modules/gametest/ScriptSimulatedPlayer.h +++ b/src/mc/scripting/modules/gametest/ScriptSimulatedPlayer.h @@ -201,7 +201,7 @@ class ScriptSimulatedPlayer : public ::ScriptModuleMinecraft::ScriptPlayer { // NOLINTBEGIN MCAPI ::Scripting::Result $applyImpulse(::Actor& self, ::Vec3 const& vector); - MCAPI ::Scripting::Result $clearVelocity(::Actor& self); + MCFOLD ::Scripting::Result $clearVelocity(::Actor& self); MCAPI ::Scripting::Result $remove(::Actor& self); diff --git a/src/mc/scripting/modules/minecraft/EqualsComparison.h b/src/mc/scripting/modules/minecraft/EqualsComparison.h index 92b6e98b65..759092fc83 100644 --- a/src/mc/scripting/modules/minecraft/EqualsComparison.h +++ b/src/mc/scripting/modules/minecraft/EqualsComparison.h @@ -23,7 +23,7 @@ struct EqualsComparison { public: // member functions // NOLINTBEGIN - MCAPI bool operator==(::ScriptModuleMinecraft::EqualsComparison const& other) const; + MCFOLD bool operator==(::ScriptModuleMinecraft::EqualsComparison const& other) const; MCAPI ~EqualsComparison(); // NOLINTEND @@ -37,7 +37,7 @@ struct EqualsComparison { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/scripting/modules/minecraft/NotEqualsComparison.h b/src/mc/scripting/modules/minecraft/NotEqualsComparison.h index a7d1fab15a..a5be407a58 100644 --- a/src/mc/scripting/modules/minecraft/NotEqualsComparison.h +++ b/src/mc/scripting/modules/minecraft/NotEqualsComparison.h @@ -23,7 +23,7 @@ struct NotEqualsComparison { public: // member functions // NOLINTBEGIN - MCAPI bool operator==(::ScriptModuleMinecraft::NotEqualsComparison const& other) const; + MCFOLD bool operator==(::ScriptModuleMinecraft::NotEqualsComparison const& other) const; MCAPI ~NotEqualsComparison(); // NOLINTEND @@ -37,7 +37,7 @@ struct NotEqualsComparison { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/scripting/modules/minecraft/PropertyComponentRegistration.h b/src/mc/scripting/modules/minecraft/PropertyComponentRegistration.h index d79a0efc01..7835b3ca34 100644 --- a/src/mc/scripting/modules/minecraft/PropertyComponentRegistration.h +++ b/src/mc/scripting/modules/minecraft/PropertyComponentRegistration.h @@ -36,7 +36,7 @@ struct PropertyComponentRegistration { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/scripting/modules/minecraft/ScriptActorEventFilterData.h b/src/mc/scripting/modules/minecraft/ScriptActorEventFilterData.h index 48c6d97668..d81bc75064 100644 --- a/src/mc/scripting/modules/minecraft/ScriptActorEventFilterData.h +++ b/src/mc/scripting/modules/minecraft/ScriptActorEventFilterData.h @@ -52,7 +52,7 @@ struct ScriptActorEventFilterData { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/scripting/modules/minecraft/ScriptBlockRaycastHit.h b/src/mc/scripting/modules/minecraft/ScriptBlockRaycastHit.h index 8a6a7b9582..003d9359d4 100644 --- a/src/mc/scripting/modules/minecraft/ScriptBlockRaycastHit.h +++ b/src/mc/scripting/modules/minecraft/ScriptBlockRaycastHit.h @@ -37,7 +37,7 @@ class ScriptBlockRaycastHit { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/scripting/modules/minecraft/ScriptBlockVolumeBase.h b/src/mc/scripting/modules/minecraft/ScriptBlockVolumeBase.h index 66007bc226..431185d7b9 100644 --- a/src/mc/scripting/modules/minecraft/ScriptBlockVolumeBase.h +++ b/src/mc/scripting/modules/minecraft/ScriptBlockVolumeBase.h @@ -63,7 +63,7 @@ class ScriptBlockVolumeBase { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND public: diff --git a/src/mc/scripting/modules/minecraft/ScriptChunkValidator.h b/src/mc/scripting/modules/minecraft/ScriptChunkValidator.h index afc67a8ffe..203a16ac2d 100644 --- a/src/mc/scripting/modules/minecraft/ScriptChunkValidator.h +++ b/src/mc/scripting/modules/minecraft/ScriptChunkValidator.h @@ -42,7 +42,7 @@ class ScriptChunkValidator { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/scripting/modules/minecraft/ScriptColor.h b/src/mc/scripting/modules/minecraft/ScriptColor.h index 65435139e6..e3fc19181c 100644 --- a/src/mc/scripting/modules/minecraft/ScriptColor.h +++ b/src/mc/scripting/modules/minecraft/ScriptColor.h @@ -28,7 +28,7 @@ class ScriptColor { public: // member functions // NOLINTBEGIN - MCAPI ::mce::Color const& getColor() const; + MCFOLD ::mce::Color const& getColor() const; // NOLINTEND public: diff --git a/src/mc/scripting/modules/minecraft/ScriptContainerWrapper.h b/src/mc/scripting/modules/minecraft/ScriptContainerWrapper.h index c37b24d23b..706e0e9cc3 100644 --- a/src/mc/scripting/modules/minecraft/ScriptContainerWrapper.h +++ b/src/mc/scripting/modules/minecraft/ScriptContainerWrapper.h @@ -76,7 +76,7 @@ class ScriptContainerWrapper { public: // constructor thunks // NOLINTBEGIN - MCAPI void* $ctor(::std::unique_ptr<::ScriptModuleMinecraft::ScriptContainer> scriptContainer); + MCFOLD void* $ctor(::std::unique_ptr<::ScriptModuleMinecraft::ScriptContainer> scriptContainer); // NOLINTEND }; diff --git a/src/mc/scripting/modules/minecraft/ScriptCustomComponentInvalidRegistryError.h b/src/mc/scripting/modules/minecraft/ScriptCustomComponentInvalidRegistryError.h index 1e0f8cc905..28e2168391 100644 --- a/src/mc/scripting/modules/minecraft/ScriptCustomComponentInvalidRegistryError.h +++ b/src/mc/scripting/modules/minecraft/ScriptCustomComponentInvalidRegistryError.h @@ -36,7 +36,7 @@ struct ScriptCustomComponentInvalidRegistryError : public ::Scripting::Error { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/scripting/modules/minecraft/ScriptCustomComponentNameError.h b/src/mc/scripting/modules/minecraft/ScriptCustomComponentNameError.h index a070336e67..0fe8673aa3 100644 --- a/src/mc/scripting/modules/minecraft/ScriptCustomComponentNameError.h +++ b/src/mc/scripting/modules/minecraft/ScriptCustomComponentNameError.h @@ -58,7 +58,7 @@ struct ScriptCustomComponentNameError : public ::Scripting::Error { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/scripting/modules/minecraft/ScriptCustomComponentRegistry.h b/src/mc/scripting/modules/minecraft/ScriptCustomComponentRegistry.h index ca54ca08e4..ae232613c0 100644 --- a/src/mc/scripting/modules/minecraft/ScriptCustomComponentRegistry.h +++ b/src/mc/scripting/modules/minecraft/ScriptCustomComponentRegistry.h @@ -54,7 +54,7 @@ class ScriptCustomComponentRegistry { MCAPI void onScriptModuleStartupComplete(); - MCAPI ::ScriptModuleMinecraft::ScriptCustomComponentRegistry::State const& state() const; + MCFOLD ::ScriptModuleMinecraft::ScriptCustomComponentRegistry::State const& state() const; // NOLINTEND public: @@ -66,7 +66,7 @@ class ScriptCustomComponentRegistry { public: // virtual function thunks // NOLINTBEGIN - MCAPI void $_onScriptModuleStartupComplete(); + MCFOLD void $_onScriptModuleStartupComplete(); // NOLINTEND }; diff --git a/src/mc/scripting/modules/minecraft/ScriptDataDrivenActorTriggerEventFilter.h b/src/mc/scripting/modules/minecraft/ScriptDataDrivenActorTriggerEventFilter.h index 11f4debe36..af239e2996 100644 --- a/src/mc/scripting/modules/minecraft/ScriptDataDrivenActorTriggerEventFilter.h +++ b/src/mc/scripting/modules/minecraft/ScriptDataDrivenActorTriggerEventFilter.h @@ -77,7 +77,7 @@ struct ScriptDataDrivenActorTriggerEventFilter : public ::ScriptModuleMinecraft: public: // virtual function thunks // NOLINTBEGIN - MCAPI bool $shouldAllow(::ScriptModuleMinecraft::EventFilters::ScriptActorEventFilterData const& filterData); + MCFOLD bool $shouldAllow(::ScriptModuleMinecraft::EventFilters::ScriptActorEventFilterData const& filterData); // NOLINTEND public: diff --git a/src/mc/scripting/modules/minecraft/ScriptDataDrivenActorTriggerEventFilterData.h b/src/mc/scripting/modules/minecraft/ScriptDataDrivenActorTriggerEventFilterData.h index 8e4b424654..911b1879a8 100644 --- a/src/mc/scripting/modules/minecraft/ScriptDataDrivenActorTriggerEventFilterData.h +++ b/src/mc/scripting/modules/minecraft/ScriptDataDrivenActorTriggerEventFilterData.h @@ -45,7 +45,7 @@ struct ScriptDataDrivenActorTriggerEventFilterData { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/scripting/modules/minecraft/ScriptDimensionLocation.h b/src/mc/scripting/modules/minecraft/ScriptDimensionLocation.h index 10e51a11e7..b445b8b339 100644 --- a/src/mc/scripting/modules/minecraft/ScriptDimensionLocation.h +++ b/src/mc/scripting/modules/minecraft/ScriptDimensionLocation.h @@ -38,7 +38,7 @@ struct ScriptDimensionLocation { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/scripting/modules/minecraft/ScriptEntityRaycastHit.h b/src/mc/scripting/modules/minecraft/ScriptEntityRaycastHit.h index c7042592af..92e8b2dc34 100644 --- a/src/mc/scripting/modules/minecraft/ScriptEntityRaycastHit.h +++ b/src/mc/scripting/modules/minecraft/ScriptEntityRaycastHit.h @@ -36,7 +36,7 @@ class ScriptEntityRaycastHit { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/scripting/modules/minecraft/ScriptEntityRaycastOptions.h b/src/mc/scripting/modules/minecraft/ScriptEntityRaycastOptions.h index 5bfdf14add..7a3adb19a4 100644 --- a/src/mc/scripting/modules/minecraft/ScriptEntityRaycastOptions.h +++ b/src/mc/scripting/modules/minecraft/ScriptEntityRaycastOptions.h @@ -42,7 +42,7 @@ struct ScriptEntityRaycastOptions : public ::ScriptModuleMinecraft::ScriptActorF public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/scripting/modules/minecraft/ScriptInputEventFilter.h b/src/mc/scripting/modules/minecraft/ScriptInputEventFilter.h index 3830001f73..222695c766 100644 --- a/src/mc/scripting/modules/minecraft/ScriptInputEventFilter.h +++ b/src/mc/scripting/modules/minecraft/ScriptInputEventFilter.h @@ -27,7 +27,7 @@ struct ScriptInputEventFilter { public: // member functions // NOLINTBEGIN - MCAPI void process(); + MCFOLD void process(); MCAPI bool shouldAllow(::ScriptModuleMinecraft::EventFilters::ScriptInputEventFilterData const& data) const; @@ -43,7 +43,7 @@ struct ScriptInputEventFilter { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/scripting/modules/minecraft/ScriptInvalidIteratorError.h b/src/mc/scripting/modules/minecraft/ScriptInvalidIteratorError.h index 557e7844ba..0482a6640f 100644 --- a/src/mc/scripting/modules/minecraft/ScriptInvalidIteratorError.h +++ b/src/mc/scripting/modules/minecraft/ScriptInvalidIteratorError.h @@ -32,7 +32,7 @@ struct ScriptInvalidIteratorError : public ::Scripting::Error { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/scripting/modules/minecraft/ScriptInventoryComponentContainer.h b/src/mc/scripting/modules/minecraft/ScriptInventoryComponentContainer.h index 52864ac25c..f37bfab559 100644 --- a/src/mc/scripting/modules/minecraft/ScriptInventoryComponentContainer.h +++ b/src/mc/scripting/modules/minecraft/ScriptInventoryComponentContainer.h @@ -69,17 +69,17 @@ class ScriptInventoryComponentContainer : public ::ScriptModuleMinecraft::Script public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND public: // virtual function thunks // NOLINTBEGIN - MCAPI ::Scripting::Result_deprecated $getEmptySlotsCount() const; + MCFOLD ::Scripting::Result_deprecated $getEmptySlotsCount() const; MCAPI ::Container* $_tryGetContainer() const; - MCAPI ::ItemContext $_getItemContext(int slot) const; + MCFOLD ::ItemContext $_getItemContext(int slot) const; // NOLINTEND public: diff --git a/src/mc/scripting/modules/minecraft/ScriptListBlockVolume.h b/src/mc/scripting/modules/minecraft/ScriptListBlockVolume.h index 7fee6a7d2e..85cdd6ebe8 100644 --- a/src/mc/scripting/modules/minecraft/ScriptListBlockVolume.h +++ b/src/mc/scripting/modules/minecraft/ScriptListBlockVolume.h @@ -59,7 +59,7 @@ class ScriptListBlockVolume : public ::ScriptModuleMinecraft::ScriptBlockVolumeB // NOLINTBEGIN MCAPI void* $ctor(); - MCAPI void* $ctor(::ScriptModuleMinecraft::ScriptListBlockVolume&& rhs); + MCFOLD void* $ctor(::ScriptModuleMinecraft::ScriptListBlockVolume&& rhs); MCAPI void* $ctor(::ScriptModuleMinecraft::ScriptListBlockVolume const&); // NOLINTEND diff --git a/src/mc/scripting/modules/minecraft/ScriptMessageReceiveEventFilter.h b/src/mc/scripting/modules/minecraft/ScriptMessageReceiveEventFilter.h index 8334dfc27a..8f11e36591 100644 --- a/src/mc/scripting/modules/minecraft/ScriptMessageReceiveEventFilter.h +++ b/src/mc/scripting/modules/minecraft/ScriptMessageReceiveEventFilter.h @@ -28,7 +28,7 @@ struct ScriptMessageReceiveEventFilter { public: // member functions // NOLINTBEGIN - MCAPI void process(); + MCFOLD void process(); MCAPI bool shouldAllow(::ScriptModuleMinecraft::EventFilters::ScriptMessageReceiveEventFilterData const& data); @@ -46,7 +46,7 @@ struct ScriptMessageReceiveEventFilter { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/scripting/modules/minecraft/ScriptMessageReceiveEventFilterData.h b/src/mc/scripting/modules/minecraft/ScriptMessageReceiveEventFilterData.h index 70630599ee..7c51a6f767 100644 --- a/src/mc/scripting/modules/minecraft/ScriptMessageReceiveEventFilterData.h +++ b/src/mc/scripting/modules/minecraft/ScriptMessageReceiveEventFilterData.h @@ -26,7 +26,7 @@ struct ScriptMessageReceiveEventFilterData { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/scripting/modules/minecraft/ScriptPlayerInventoryComponentContainer.h b/src/mc/scripting/modules/minecraft/ScriptPlayerInventoryComponentContainer.h index 6b5eed4fbd..ee2bf20cc8 100644 --- a/src/mc/scripting/modules/minecraft/ScriptPlayerInventoryComponentContainer.h +++ b/src/mc/scripting/modules/minecraft/ScriptPlayerInventoryComponentContainer.h @@ -55,7 +55,7 @@ class ScriptPlayerInventoryComponentContainer : public ::ScriptModuleMinecraft:: public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND public: @@ -63,7 +63,7 @@ class ScriptPlayerInventoryComponentContainer : public ::ScriptModuleMinecraft:: // NOLINTBEGIN MCAPI ::Container* $_tryGetContainer() const; - MCAPI ::ItemContext $_getItemContext(int slot) const; + MCFOLD ::ItemContext $_getItemContext(int slot) const; // NOLINTEND public: diff --git a/src/mc/scripting/modules/minecraft/ScriptRGB.h b/src/mc/scripting/modules/minecraft/ScriptRGB.h index c28f39e2aa..583a7aed75 100644 --- a/src/mc/scripting/modules/minecraft/ScriptRGB.h +++ b/src/mc/scripting/modules/minecraft/ScriptRGB.h @@ -40,7 +40,7 @@ class ScriptRGB { // NOLINTBEGIN MCAPI explicit ScriptRGB(::mce::Color const& color); - MCAPI ::mce::Color const& getColor() const; + MCFOLD ::mce::Color const& getColor() const; // NOLINTEND public: diff --git a/src/mc/scripting/modules/minecraft/ScriptSimpleBlockVolume.h b/src/mc/scripting/modules/minecraft/ScriptSimpleBlockVolume.h index 791e6fd723..d232d58a8c 100644 --- a/src/mc/scripting/modules/minecraft/ScriptSimpleBlockVolume.h +++ b/src/mc/scripting/modules/minecraft/ScriptSimpleBlockVolume.h @@ -64,7 +64,7 @@ class ScriptSimpleBlockVolume : public ::ScriptModuleMinecraft::ScriptBlockVolum public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND public: diff --git a/src/mc/scripting/modules/minecraft/ScriptSystem.h b/src/mc/scripting/modules/minecraft/ScriptSystem.h index 602dcd2375..4dd7975026 100644 --- a/src/mc/scripting/modules/minecraft/ScriptSystem.h +++ b/src/mc/scripting/modules/minecraft/ScriptSystem.h @@ -56,9 +56,10 @@ class ScriptSystem { MCAPI void clearJob(::Scripting::WeakLifetimeScope const& scope, ::Scripting::DependencyLocator& locator, uint jobId); - MCAPI ::Scripting::StrongTypedObjectHandle<::ScriptModuleMinecraft::ScriptSystemAfterEvents> getSystemAfterEvents(); + MCFOLD ::Scripting::StrongTypedObjectHandle<::ScriptModuleMinecraft::ScriptSystemAfterEvents> + getSystemAfterEvents(); - MCAPI ::Scripting::StrongTypedObjectHandle<::ScriptModuleMinecraft::ScriptSystemBeforeEvents> + MCFOLD ::Scripting::StrongTypedObjectHandle<::ScriptModuleMinecraft::ScriptSystemBeforeEvents> getSystemBeforeEvents(); MCAPI ::Scripting::StrongTypedObjectHandle<::ScriptModuleMinecraft::ScriptSystemInfo> getSystemInfo(); diff --git a/src/mc/scripting/modules/minecraft/ScriptUnloadedChunksError.h b/src/mc/scripting/modules/minecraft/ScriptUnloadedChunksError.h index 55bc28e401..5446730047 100644 --- a/src/mc/scripting/modules/minecraft/ScriptUnloadedChunksError.h +++ b/src/mc/scripting/modules/minecraft/ScriptUnloadedChunksError.h @@ -32,7 +32,7 @@ struct ScriptUnloadedChunksError : public ::Scripting::Error { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/scripting/modules/minecraft/ScriptWorld.h b/src/mc/scripting/modules/minecraft/ScriptWorld.h index e8271e78db..9d808b4d34 100644 --- a/src/mc/scripting/modules/minecraft/ScriptWorld.h +++ b/src/mc/scripting/modules/minecraft/ScriptWorld.h @@ -91,7 +91,7 @@ class ScriptWorld { ::std::vector<::Scripting::StrongTypedObjectHandle<::ScriptModuleMinecraft::ScriptPlayer>>> getAllPlayers() const; - MCAPI ::Scripting::StrongTypedObjectHandle<::ScriptModuleMinecraft::ScriptWorldBeforeEvents> getBeforeEvents(); + MCFOLD ::Scripting::StrongTypedObjectHandle<::ScriptModuleMinecraft::ScriptWorldBeforeEvents> getBeforeEvents(); MCAPI int getDay() const; @@ -127,7 +127,7 @@ class ScriptWorld { MCAPI int getTimeOfDay() const; - MCAPI ::Scripting::StrongTypedObjectHandle<::ScriptModuleMinecraft::ScriptV010Events> getWorldV010Events(); + MCFOLD ::Scripting::StrongTypedObjectHandle<::ScriptModuleMinecraft::ScriptV010Events> getWorldV010Events(); MCAPI ::Scripting::Result playMusic(::std::string const& trackID, ::std::optional<::ScriptModuleMinecraft::ScriptMusicOptions> musicOptions); diff --git a/src/mc/scripting/modules/minecraft/ValueParams.h b/src/mc/scripting/modules/minecraft/ValueParams.h index 19f0aeadc2..bd7e9c5e6a 100644 --- a/src/mc/scripting/modules/minecraft/ValueParams.h +++ b/src/mc/scripting/modules/minecraft/ValueParams.h @@ -32,7 +32,7 @@ struct ValueParams { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/scripting/modules/minecraft/VersionRelease.h b/src/mc/scripting/modules/minecraft/VersionRelease.h index 488d65353e..9fa7c4fc23 100644 --- a/src/mc/scripting/modules/minecraft/VersionRelease.h +++ b/src/mc/scripting/modules/minecraft/VersionRelease.h @@ -27,7 +27,7 @@ struct VersionRelease { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/scripting/modules/minecraft/actor/ScriptActor.h b/src/mc/scripting/modules/minecraft/actor/ScriptActor.h index b5c90a962b..583ba05932 100644 --- a/src/mc/scripting/modules/minecraft/actor/ScriptActor.h +++ b/src/mc/scripting/modules/minecraft/actor/ScriptActor.h @@ -296,7 +296,7 @@ class ScriptActor { MCAPI ::Scripting::Result_deprecated<::std::string> getId_010(::Actor const& self) const; - MCAPI ::ScriptModuleMinecraft::ScriptActorLifetimeState getLifetimeState() const; + MCFOLD ::ScriptModuleMinecraft::ScriptActorLifetimeState getLifetimeState() const; MCAPI ::Scripting::Result_deprecated<::Vec3> getLocation(::Actor const& self) const; @@ -519,7 +519,7 @@ class ScriptActor { // NOLINTBEGIN MCAPI void $setUnloaded(::Actor& actor); - MCAPI ::Scripting::Result $clearVelocity(::Actor& self); + MCFOLD ::Scripting::Result $clearVelocity(::Actor& self); MCAPI ::Scripting::Result $lookAt(::Actor& self, ::Vec3 const& targetLocation); diff --git a/src/mc/scripting/modules/minecraft/actor/ScriptActorIterator.h b/src/mc/scripting/modules/minecraft/actor/ScriptActorIterator.h index cdd9c3bad6..70a5b29227 100644 --- a/src/mc/scripting/modules/minecraft/actor/ScriptActorIterator.h +++ b/src/mc/scripting/modules/minecraft/actor/ScriptActorIterator.h @@ -34,7 +34,7 @@ class ScriptActorIterator : public ::ScriptModuleMinecraft::ScriptVectorIterator public: // constructor thunks // NOLINTBEGIN - MCAPI void* + MCFOLD void* $ctor(::std::vector<::Scripting::StrongTypedObjectHandle<::ScriptModuleMinecraft::ScriptActor>>&& scriptActors); // NOLINTEND }; diff --git a/src/mc/scripting/modules/minecraft/biomes/ScriptBiomeType.h b/src/mc/scripting/modules/minecraft/biomes/ScriptBiomeType.h index 6844fe13f5..c25d19be54 100644 --- a/src/mc/scripting/modules/minecraft/biomes/ScriptBiomeType.h +++ b/src/mc/scripting/modules/minecraft/biomes/ScriptBiomeType.h @@ -55,7 +55,7 @@ class ScriptBiomeType { MCAPI ::std::string getId() const; - MCAPI ::ScriptModuleMinecraft::ScriptBiomeType& operator=(::ScriptModuleMinecraft::ScriptBiomeType&&); + MCFOLD ::ScriptModuleMinecraft::ScriptBiomeType& operator=(::ScriptModuleMinecraft::ScriptBiomeType&&); MCAPI ~ScriptBiomeType(); // NOLINTEND @@ -72,13 +72,13 @@ class ScriptBiomeType { public: // constructor thunks // NOLINTBEGIN - MCAPI void* $ctor(::ScriptModuleMinecraft::ScriptBiomeType const&); + MCFOLD void* $ctor(::ScriptModuleMinecraft::ScriptBiomeType const&); // NOLINTEND public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/scripting/modules/minecraft/block/ScriptBlock.h b/src/mc/scripting/modules/minecraft/block/ScriptBlock.h index ad159027d2..6fccc7e65e 100644 --- a/src/mc/scripting/modules/minecraft/block/ScriptBlock.h +++ b/src/mc/scripting/modules/minecraft/block/ScriptBlock.h @@ -293,7 +293,7 @@ class ScriptBlock { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/scripting/modules/minecraft/block/ScriptBlockCustomComponentAlreadyRegisteredError.h b/src/mc/scripting/modules/minecraft/block/ScriptBlockCustomComponentAlreadyRegisteredError.h index 50e5cdc8a5..86001dd9ff 100644 --- a/src/mc/scripting/modules/minecraft/block/ScriptBlockCustomComponentAlreadyRegisteredError.h +++ b/src/mc/scripting/modules/minecraft/block/ScriptBlockCustomComponentAlreadyRegisteredError.h @@ -28,7 +28,7 @@ struct ScriptBlockCustomComponentAlreadyRegisteredError : public ::Scripting::Er public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/scripting/modules/minecraft/block/ScriptBlockCustomComponentReloadNewComponentError.h b/src/mc/scripting/modules/minecraft/block/ScriptBlockCustomComponentReloadNewComponentError.h index 72ce5a3544..0977da3caf 100644 --- a/src/mc/scripting/modules/minecraft/block/ScriptBlockCustomComponentReloadNewComponentError.h +++ b/src/mc/scripting/modules/minecraft/block/ScriptBlockCustomComponentReloadNewComponentError.h @@ -28,7 +28,7 @@ struct ScriptBlockCustomComponentReloadNewComponentError : public ::Scripting::E public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/scripting/modules/minecraft/block/ScriptBlockCustomComponentReloadNewEventError.h b/src/mc/scripting/modules/minecraft/block/ScriptBlockCustomComponentReloadNewEventError.h index 8618d534e8..76a9ed0006 100644 --- a/src/mc/scripting/modules/minecraft/block/ScriptBlockCustomComponentReloadNewEventError.h +++ b/src/mc/scripting/modules/minecraft/block/ScriptBlockCustomComponentReloadNewEventError.h @@ -28,7 +28,7 @@ struct ScriptBlockCustomComponentReloadNewEventError : public ::Scripting::Error public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/scripting/modules/minecraft/block/ScriptBlockCustomComponentReloadVersionError.h b/src/mc/scripting/modules/minecraft/block/ScriptBlockCustomComponentReloadVersionError.h index 224d5da743..fb0e6cca78 100644 --- a/src/mc/scripting/modules/minecraft/block/ScriptBlockCustomComponentReloadVersionError.h +++ b/src/mc/scripting/modules/minecraft/block/ScriptBlockCustomComponentReloadVersionError.h @@ -28,7 +28,7 @@ struct ScriptBlockCustomComponentReloadVersionError : public ::Scripting::Error public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/scripting/modules/minecraft/block/ScriptBlockPermutation.h b/src/mc/scripting/modules/minecraft/block/ScriptBlockPermutation.h index 54c2841297..ec4379cc22 100644 --- a/src/mc/scripting/modules/minecraft/block/ScriptBlockPermutation.h +++ b/src/mc/scripting/modules/minecraft/block/ScriptBlockPermutation.h @@ -68,7 +68,7 @@ class ScriptBlockPermutation : public ::Scripting::WeakHandleFromThis<::ScriptMo MCAPI ::std::unordered_map<::std::string, ::std::variant> getAllStates() const; - MCAPI ::Block const& getBlock() const; + MCFOLD ::Block const& getBlock() const; MCAPI ::std::optional<::Scripting::StrongTypedObjectHandle<::ScriptModuleMinecraft::ScriptItemStack>> getItemStack(int amount) const; @@ -88,7 +88,8 @@ class ScriptBlockPermutation : public ::Scripting::WeakHandleFromThis<::ScriptMo ::std::optional<::std::unordered_map<::std::string, ::std::variant>> properties ) const; - MCAPI ::ScriptModuleMinecraft::ScriptBlockPermutation& operator=(::ScriptModuleMinecraft::ScriptBlockPermutation&&); + MCFOLD ::ScriptModuleMinecraft::ScriptBlockPermutation& + operator=(::ScriptModuleMinecraft::ScriptBlockPermutation&&); MCAPI ::Scripting::Result_deprecated< ::Scripting::StrongTypedObjectHandle<::ScriptModuleMinecraft::ScriptBlockPermutation>> @@ -124,7 +125,7 @@ class ScriptBlockPermutation : public ::Scripting::WeakHandleFromThis<::ScriptMo public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/scripting/modules/minecraft/block/ScriptBlockType.h b/src/mc/scripting/modules/minecraft/block/ScriptBlockType.h index 2cf2d9674b..db06aa4587 100644 --- a/src/mc/scripting/modules/minecraft/block/ScriptBlockType.h +++ b/src/mc/scripting/modules/minecraft/block/ScriptBlockType.h @@ -63,7 +63,7 @@ class ScriptBlockType { MCAPI ::std::string getId() const; - MCAPI ::ScriptModuleMinecraft::ScriptBlockType& operator=(::ScriptModuleMinecraft::ScriptBlockType&&); + MCFOLD ::ScriptModuleMinecraft::ScriptBlockType& operator=(::ScriptModuleMinecraft::ScriptBlockType&&); MCAPI ~ScriptBlockType(); // NOLINTEND @@ -83,13 +83,13 @@ class ScriptBlockType { public: // constructor thunks // NOLINTBEGIN - MCAPI void* $ctor(::ScriptModuleMinecraft::ScriptBlockType const&); + MCFOLD void* $ctor(::ScriptModuleMinecraft::ScriptBlockType const&); // NOLINTEND public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/scripting/modules/minecraft/block/ScriptLocationOutOfWorldBoundsError.h b/src/mc/scripting/modules/minecraft/block/ScriptLocationOutOfWorldBoundsError.h index f8c3ec2382..c3c478aac9 100644 --- a/src/mc/scripting/modules/minecraft/block/ScriptLocationOutOfWorldBoundsError.h +++ b/src/mc/scripting/modules/minecraft/block/ScriptLocationOutOfWorldBoundsError.h @@ -41,7 +41,7 @@ struct ScriptLocationOutOfWorldBoundsError : public ::Scripting::Error { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/scripting/modules/minecraft/block/components/BaseScriptBlockLiquidContainerComponent.h b/src/mc/scripting/modules/minecraft/block/components/BaseScriptBlockLiquidContainerComponent.h index dfb4b359ff..1f680d46dc 100644 --- a/src/mc/scripting/modules/minecraft/block/components/BaseScriptBlockLiquidContainerComponent.h +++ b/src/mc/scripting/modules/minecraft/block/components/BaseScriptBlockLiquidContainerComponent.h @@ -61,7 +61,7 @@ class BaseScriptBlockLiquidContainerComponent : public ::ScriptModuleMinecraft:: // NOLINTBEGIN MCAPI ::Scripting::Result $setFillLevel(int level); - MCAPI bool $_isValid() const; + MCFOLD bool $_isValid() const; // NOLINTEND public: diff --git a/src/mc/scripting/modules/minecraft/block/components/ScriptBlockFluidContainerComponent.h b/src/mc/scripting/modules/minecraft/block/components/ScriptBlockFluidContainerComponent.h index d82c4bfced..4238dce9df 100644 --- a/src/mc/scripting/modules/minecraft/block/components/ScriptBlockFluidContainerComponent.h +++ b/src/mc/scripting/modules/minecraft/block/components/ScriptBlockFluidContainerComponent.h @@ -82,7 +82,7 @@ class ScriptBlockFluidContainerComponent : public ::ScriptModuleMinecraft::BaseS public: // virtual function thunks // NOLINTBEGIN - MCAPI bool $_isValid() const; + MCFOLD bool $_isValid() const; // NOLINTEND public: diff --git a/src/mc/scripting/modules/minecraft/block/components/ScriptBlockInventoryComponentContainer.h b/src/mc/scripting/modules/minecraft/block/components/ScriptBlockInventoryComponentContainer.h index 9bb78c0313..e319780292 100644 --- a/src/mc/scripting/modules/minecraft/block/components/ScriptBlockInventoryComponentContainer.h +++ b/src/mc/scripting/modules/minecraft/block/components/ScriptBlockInventoryComponentContainer.h @@ -62,7 +62,7 @@ class ScriptBlockInventoryComponentContainer : public ::ScriptModuleMinecraft::S public: // virtual function thunks // NOLINTBEGIN - MCAPI ::Scripting::Result_deprecated $getEmptySlotsCount() const; + MCFOLD ::Scripting::Result_deprecated $getEmptySlotsCount() const; MCAPI ::Container* $_tryGetContainer() const; diff --git a/src/mc/scripting/modules/minecraft/block/components/ScriptBlockRecordPlayerComponent.h b/src/mc/scripting/modules/minecraft/block/components/ScriptBlockRecordPlayerComponent.h index 5300050cc1..3c583e2e6e 100644 --- a/src/mc/scripting/modules/minecraft/block/components/ScriptBlockRecordPlayerComponent.h +++ b/src/mc/scripting/modules/minecraft/block/components/ScriptBlockRecordPlayerComponent.h @@ -38,7 +38,7 @@ class ScriptBlockRecordPlayerComponent : public ::ScriptModuleMinecraft::BaseScr ::std::optional<::Scripting::StrongTypedObjectHandle<::ScriptModuleMinecraft::ScriptItemStack>>> getRecord(); - MCAPI ::Scripting::Result_deprecated isPlaying(); + MCFOLD ::Scripting::Result_deprecated isPlaying(); MCAPI ::Scripting::Result pauseRecord(); diff --git a/src/mc/scripting/modules/minecraft/block/components/ScriptBlockRecordPlayerComponentV010.h b/src/mc/scripting/modules/minecraft/block/components/ScriptBlockRecordPlayerComponentV010.h index ecd8cc7503..7bb37100ba 100644 --- a/src/mc/scripting/modules/minecraft/block/components/ScriptBlockRecordPlayerComponentV010.h +++ b/src/mc/scripting/modules/minecraft/block/components/ScriptBlockRecordPlayerComponentV010.h @@ -28,7 +28,7 @@ class ScriptBlockRecordPlayerComponentV010 : public ::ScriptModuleMinecraft::Bas // NOLINTBEGIN MCAPI ::Scripting::Result clearRecord(); - MCAPI ::Scripting::Result_deprecated isPlaying(); + MCFOLD ::Scripting::Result_deprecated isPlaying(); MCAPI ::Scripting::Result setRecord(::ScriptModuleMinecraft::ScriptItemType const& itemType); // NOLINTEND diff --git a/src/mc/scripting/modules/minecraft/camera/ScriptCamera.h b/src/mc/scripting/modules/minecraft/camera/ScriptCamera.h index b1576b686c..8ed10adcaf 100644 --- a/src/mc/scripting/modules/minecraft/camera/ScriptCamera.h +++ b/src/mc/scripting/modules/minecraft/camera/ScriptCamera.h @@ -91,9 +91,9 @@ struct ScriptCamera { public: // constructor thunks // NOLINTBEGIN - MCAPI void* $ctor(::Player const& player); + MCFOLD void* $ctor(::Player const& player); - MCAPI void* $ctor(::WeakEntityRef const& playerRef); + MCFOLD void* $ctor(::WeakEntityRef const& playerRef); // NOLINTEND }; diff --git a/src/mc/scripting/modules/minecraft/commands/ScriptActorQueryOptions.h b/src/mc/scripting/modules/minecraft/commands/ScriptActorQueryOptions.h index 9af6e8c1a1..e42640207e 100644 --- a/src/mc/scripting/modules/minecraft/commands/ScriptActorQueryOptions.h +++ b/src/mc/scripting/modules/minecraft/commands/ScriptActorQueryOptions.h @@ -44,7 +44,7 @@ struct ScriptActorQueryOptions : public ::ScriptModuleMinecraft::ScriptActorFilt public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/scripting/modules/minecraft/commands/ScriptCommandError.h b/src/mc/scripting/modules/minecraft/commands/ScriptCommandError.h index 5dceb1a638..8e3ce48fd5 100644 --- a/src/mc/scripting/modules/minecraft/commands/ScriptCommandError.h +++ b/src/mc/scripting/modules/minecraft/commands/ScriptCommandError.h @@ -37,7 +37,7 @@ struct ScriptCommandError : public ::Scripting::Error { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/scripting/modules/minecraft/components/ScriptCursorInventoryComponentFactory.h b/src/mc/scripting/modules/minecraft/components/ScriptCursorInventoryComponentFactory.h index 973382adc0..88fdadc871 100644 --- a/src/mc/scripting/modules/minecraft/components/ScriptCursorInventoryComponentFactory.h +++ b/src/mc/scripting/modules/minecraft/components/ScriptCursorInventoryComponentFactory.h @@ -45,7 +45,7 @@ class ScriptCursorInventoryComponentFactory : public ::ScriptModuleMinecraft::IC MCAPI ::Scripting::StrongTypedObjectHandle<::ScriptModuleMinecraft::ScriptActorComponent> $createComponent(::WeakEntityRef entity, ::Scripting::WeakLifetimeScope const& scope, ::std::string const& id); - MCAPI bool $hasComponent(::WeakEntityRef entity) const; + MCFOLD bool $hasComponent(::WeakEntityRef entity) const; // NOLINTEND public: diff --git a/src/mc/scripting/modules/minecraft/components/ScriptEquippableComponentFactory.h b/src/mc/scripting/modules/minecraft/components/ScriptEquippableComponentFactory.h index 126a704c84..c5c29f8a91 100644 --- a/src/mc/scripting/modules/minecraft/components/ScriptEquippableComponentFactory.h +++ b/src/mc/scripting/modules/minecraft/components/ScriptEquippableComponentFactory.h @@ -45,7 +45,7 @@ class ScriptEquippableComponentFactory : public ::ScriptModuleMinecraft::ICompon MCAPI ::Scripting::StrongTypedObjectHandle<::ScriptModuleMinecraft::ScriptActorComponent> $createComponent(::WeakEntityRef entity, ::Scripting::WeakLifetimeScope const& scope, ::std::string const& id); - MCAPI bool $hasComponent(::WeakEntityRef entity) const; + MCFOLD bool $hasComponent(::WeakEntityRef entity) const; // NOLINTEND public: diff --git a/src/mc/scripting/modules/minecraft/effects/ScriptEffectType.h b/src/mc/scripting/modules/minecraft/effects/ScriptEffectType.h index 1ea506eded..8565e37e16 100644 --- a/src/mc/scripting/modules/minecraft/effects/ScriptEffectType.h +++ b/src/mc/scripting/modules/minecraft/effects/ScriptEffectType.h @@ -25,7 +25,7 @@ class ScriptEffectType { public: // member functions // NOLINTBEGIN - MCAPI ::MobEffect const& getEffect() const; + MCFOLD ::MobEffect const& getEffect() const; MCAPI ::std::string getName() const; // NOLINTEND diff --git a/src/mc/scripting/modules/minecraft/events/IScriptEventSignalAsync.h b/src/mc/scripting/modules/minecraft/events/IScriptEventSignalAsync.h index d96f2dd6e9..478f386856 100644 --- a/src/mc/scripting/modules/minecraft/events/IScriptEventSignalAsync.h +++ b/src/mc/scripting/modules/minecraft/events/IScriptEventSignalAsync.h @@ -44,11 +44,11 @@ class IScriptEventSignalAsync { public: // virtual function thunks // NOLINTBEGIN - MCAPI uint64 $getSubscriberCount() const; + MCFOLD uint64 $getSubscriberCount() const; - MCAPI void $enqueueClosureRemovalForActor(::ActorUniqueID const&); + MCFOLD void $enqueueClosureRemovalForActor(::ActorUniqueID const&); - MCAPI bool $isActorSignal() const; + MCFOLD bool $isActorSignal() const; // NOLINTEND }; diff --git a/src/mc/scripting/modules/minecraft/events/IScriptWorldAfterEvents.h b/src/mc/scripting/modules/minecraft/events/IScriptWorldAfterEvents.h index 151358673a..19ae47d2d6 100644 --- a/src/mc/scripting/modules/minecraft/events/IScriptWorldAfterEvents.h +++ b/src/mc/scripting/modules/minecraft/events/IScriptWorldAfterEvents.h @@ -263,141 +263,141 @@ class IScriptWorldAfterEvents { public: // virtual function thunks // NOLINTBEGIN - MCAPI void + MCFOLD void $onGameRuleChange(::Scripting::StrongTypedObjectHandle<::ScriptModuleMinecraft::ScriptGameRuleChangeAfterEvent>&); - MCAPI void + MCFOLD void $onWeatherChanged(::Scripting::StrongTypedObjectHandle<::ScriptModuleMinecraft::ScriptWeatherChangedAfterEvent>&); - MCAPI void + MCFOLD void $onWorldInitialize(::Scripting::StrongTypedObjectHandle<::ScriptModuleMinecraft::ScriptWorldInitializeAfterEvent>&); - MCAPI void + MCFOLD void $onPlayerJoin(::Scripting::StrongTypedObjectHandle<::ScriptModuleMinecraft::ScriptPlayerJoinAfterEvent>&); - MCAPI void + MCFOLD void $onPlayerLeave(::Scripting::StrongTypedObjectHandle<::ScriptModuleMinecraft::ScriptPlayerLeaveAfterEvent>&); - MCAPI void + MCFOLD void $onActorAddEffect(::std::shared_ptr<::ScriptModuleMinecraft::ScriptActorAddEffectAfterEventIntermediateData>&); - MCAPI void $onChat(::Scripting::StrongTypedObjectHandle<::ScriptModuleMinecraft::ScriptChatSendAfterEvent>&); + MCFOLD void $onChat(::Scripting::StrongTypedObjectHandle<::ScriptModuleMinecraft::ScriptChatSendAfterEvent>&); - MCAPI void $onActorLoad(::Scripting::StrongTypedObjectHandle<::ScriptModuleMinecraft::ScriptActorLoadAfterEvent>&); + MCFOLD void $onActorLoad(::Scripting::StrongTypedObjectHandle<::ScriptModuleMinecraft::ScriptActorLoadAfterEvent>&); - MCAPI void + MCFOLD void $onActorSpawn(::Scripting::StrongTypedObjectHandle<::ScriptModuleMinecraft::ScriptActorSpawnAfterEvent>&); - MCAPI void + MCFOLD void $onActorRemoved(::Scripting::StrongTypedObjectHandle<::ScriptModuleMinecraft::ScriptActor> const&, ::Scripting::StrongTypedObjectHandle<::ScriptModuleMinecraft::ScriptActorRemoveAfterEvent>&); - MCAPI void + MCFOLD void $onActorHitEntity(::Scripting::StrongTypedObjectHandle<::ScriptModuleMinecraft::ScriptActorHitEntityAfterEvent>&); - MCAPI void + MCFOLD void $onActorHitBlock(::Scripting::StrongTypedObjectHandle<::ScriptModuleMinecraft::ScriptActorHitBlockAfterEvent>&); - MCAPI void + MCFOLD void $onServerMessage(::Scripting::StrongTypedObjectHandle<::ScriptModuleMinecraft::ScriptServerMessageAfterEvent>&); - MCAPI void $onDataDrivenActorEventSend(::Scripting::StrongTypedObjectHandle< - ::ScriptModuleMinecraft::ScriptDataDrivenActorTriggerAfterEvent>&); + MCFOLD void $onDataDrivenActorEventSend(::Scripting::StrongTypedObjectHandle< + ::ScriptModuleMinecraft::ScriptDataDrivenActorTriggerAfterEvent>&); - MCAPI void $onActorHurt(::Scripting::StrongTypedObjectHandle<::ScriptModuleMinecraft::ScriptActorHurtAfterEvent>&); + MCFOLD void $onActorHurt(::Scripting::StrongTypedObjectHandle<::ScriptModuleMinecraft::ScriptActorHurtAfterEvent>&); - MCAPI void $onActorHealthChanged(::Scripting::StrongTypedObjectHandle< - ::ScriptModuleMinecraft::ScriptActorHealthChangedAfterEvent>&); + MCFOLD void $onActorHealthChanged(::Scripting::StrongTypedObjectHandle< + ::ScriptModuleMinecraft::ScriptActorHealthChangedAfterEvent>&); - MCAPI void $onActorDie(::Scripting::StrongTypedObjectHandle<::ScriptModuleMinecraft::ScriptActorDieAfterEvent>&); + MCFOLD void $onActorDie(::Scripting::StrongTypedObjectHandle<::ScriptModuleMinecraft::ScriptActorDieAfterEvent>&); - MCAPI void + MCFOLD void $onPlayerSpawn(::Scripting::StrongTypedObjectHandle<::ScriptModuleMinecraft::ScriptPlayerSpawnAfterEvent>&); - MCAPI void $onPlayerDimensionChange(::Scripting::StrongTypedObjectHandle< - ::ScriptModuleMinecraft::ScriptPlayerDimensionChangeAfterEvent>&); + MCFOLD void $onPlayerDimensionChange(::Scripting::StrongTypedObjectHandle< + ::ScriptModuleMinecraft::ScriptPlayerDimensionChangeAfterEvent>&); - MCAPI void $onPlayerInputModeChange(::Scripting::StrongTypedObjectHandle< - ::ScriptModuleMinecraft::ScriptPlayerInputModeChangeAfterEvent>&); + MCFOLD void $onPlayerInputModeChange(::Scripting::StrongTypedObjectHandle< + ::ScriptModuleMinecraft::ScriptPlayerInputModeChangeAfterEvent>&); - MCAPI void $onPlayerInputPermissionCategoryChange(::Scripting::StrongTypedObjectHandle< - ::ScriptModuleMinecraft:: - ScriptPlayerInputPermissionCategoryChangeAfterEvent>&); + MCFOLD void $onPlayerInputPermissionCategoryChange(::Scripting::StrongTypedObjectHandle< + ::ScriptModuleMinecraft:: + ScriptPlayerInputPermissionCategoryChangeAfterEvent>&); - MCAPI void $onPlayerInteractWithEntity(::Scripting::StrongTypedObjectHandle< - ::ScriptModuleMinecraft::ScriptPlayerInteractWithEntityAfterEvent>&); + MCFOLD void $onPlayerInteractWithEntity(::Scripting::StrongTypedObjectHandle< + ::ScriptModuleMinecraft::ScriptPlayerInteractWithEntityAfterEvent>&); - MCAPI void $onPlayerInteractWithBlock(::Scripting::StrongTypedObjectHandle< - ::ScriptModuleMinecraft::ScriptPlayerInteractWithBlockAfterEvent>&); + MCFOLD void $onPlayerInteractWithBlock(::Scripting::StrongTypedObjectHandle< + ::ScriptModuleMinecraft::ScriptPlayerInteractWithBlockAfterEvent>&); - MCAPI void $onPlayerGameModeChange(::Scripting::StrongTypedObjectHandle< - ::ScriptModuleMinecraft::ScriptPlayerGameModeChangeAfterEvent>&); + MCFOLD void $onPlayerGameModeChange(::Scripting::StrongTypedObjectHandle< + ::ScriptModuleMinecraft::ScriptPlayerGameModeChangeAfterEvent>&); - MCAPI void + MCFOLD void $onPlayerEmote(::Scripting::StrongTypedObjectHandle<::ScriptModuleMinecraft::ScriptPlayerEmoteAfterEvent>&); - MCAPI void $onPlayerButtonInput(::Scripting::StrongTypedObjectHandle< - ::ScriptModuleMinecraft::ScriptPlayerButtonInputAfterEvent>&); + MCFOLD void $onPlayerButtonInput(::Scripting::StrongTypedObjectHandle< + ::ScriptModuleMinecraft::ScriptPlayerButtonInputAfterEvent>&); - MCAPI void + MCFOLD void $onActivatePiston(::Scripting::StrongTypedObjectHandle<::ScriptModuleMinecraft::ScriptPistonActionAfterEvent>&); - MCAPI void + MCFOLD void $onActivateLever(::Scripting::StrongTypedObjectHandle<::ScriptModuleMinecraft::ScriptLeverActionAfterEvent>&); - MCAPI void + MCFOLD void $onPushButton(::Scripting::StrongTypedObjectHandle<::ScriptModuleMinecraft::ScriptButtonPushAfterEvent>&); - MCAPI void + MCFOLD void $onExplosion(::Scripting::StrongTypedObjectHandle<::ScriptModuleMinecraft::ScriptExplosionStartedAfterEvent>&); - MCAPI void + MCFOLD void $onExplodeBlock(::Scripting::StrongTypedObjectHandle<::ScriptModuleMinecraft::ScriptBlockExplodedAfterEvent>&); - MCAPI void $onPlayerPlaceBlock(::Scripting::StrongTypedObjectHandle< - ::ScriptModuleMinecraft::ScriptPlayerPlaceBlockAfterEvent>&); + MCFOLD void $onPlayerPlaceBlock(::Scripting::StrongTypedObjectHandle< + ::ScriptModuleMinecraft::ScriptPlayerPlaceBlockAfterEvent>&); - MCAPI void $onPlayerBreakBlock(::Scripting::StrongTypedObjectHandle< - ::ScriptModuleMinecraft::ScriptPlayerBreakBlockAfterEvent>&); + MCFOLD void $onPlayerBreakBlock(::Scripting::StrongTypedObjectHandle< + ::ScriptModuleMinecraft::ScriptPlayerBreakBlockAfterEvent>&); - MCAPI void $onPushPressurePlate(::Scripting::StrongTypedObjectHandle< - ::ScriptModuleMinecraft::ScriptPressurePlatePushAfterEvent>&); + MCFOLD void $onPushPressurePlate(::Scripting::StrongTypedObjectHandle< + ::ScriptModuleMinecraft::ScriptPressurePlatePushAfterEvent>&); - MCAPI void $onPopPressurePlate(::Scripting::StrongTypedObjectHandle< - ::ScriptModuleMinecraft::ScriptPressurePlatePopAfterEvent>&); + MCFOLD void $onPopPressurePlate(::Scripting::StrongTypedObjectHandle< + ::ScriptModuleMinecraft::ScriptPressurePlatePopAfterEvent>&); - MCAPI void + MCFOLD void $onHitTargetBlock(::Scripting::StrongTypedObjectHandle<::ScriptModuleMinecraft::ScriptTargetBlockHitAfterEvent>&); - MCAPI void + MCFOLD void $onTripTripWire(::Scripting::StrongTypedObjectHandle<::ScriptModuleMinecraft::ScriptTripWireTripAfterEvent>&); - MCAPI void $onItemUse(::Scripting::StrongTypedObjectHandle<::ScriptModuleMinecraft::ScriptItemUseAfterEvent>&); + MCFOLD void $onItemUse(::Scripting::StrongTypedObjectHandle<::ScriptModuleMinecraft::ScriptItemUseAfterEvent>&); - MCAPI void $onItemUseOn(::Scripting::StrongTypedObjectHandle<::ScriptModuleMinecraft::ScriptItemUseOnAfterEvent>&); + MCFOLD void $onItemUseOn(::Scripting::StrongTypedObjectHandle<::ScriptModuleMinecraft::ScriptItemUseOnAfterEvent>&); - MCAPI void + MCFOLD void $onItemStartUseOn(::Scripting::StrongTypedObjectHandle<::ScriptModuleMinecraft::ScriptItemStartUseOnAfterEvent>&); - MCAPI void + MCFOLD void $onItemStopUseOn(::Scripting::StrongTypedObjectHandle<::ScriptModuleMinecraft::ScriptItemStopUseOnAfterEvent>&); - MCAPI void + MCFOLD void $onItemStartUse(::Scripting::StrongTypedObjectHandle<::ScriptModuleMinecraft::ScriptItemStartUseAfterEvent>&); - MCAPI void + MCFOLD void $onItemCompleteUse(::Scripting::StrongTypedObjectHandle<::ScriptModuleMinecraft::ScriptItemCompleteUseAfterEvent>&); - MCAPI void + MCFOLD void $onItemReleaseUse(::Scripting::StrongTypedObjectHandle<::ScriptModuleMinecraft::ScriptItemReleaseUseAfterEvent>&); - MCAPI void + MCFOLD void $onItemStopUse(::Scripting::StrongTypedObjectHandle<::ScriptModuleMinecraft::ScriptItemStopUseAfterEvent>&); - MCAPI void $onProjectileHitEntity(::Scripting::StrongTypedObjectHandle< - ::ScriptModuleMinecraft::ScriptProjectileHitEntityAfterEvent>&); + MCFOLD void $onProjectileHitEntity(::Scripting::StrongTypedObjectHandle< + ::ScriptModuleMinecraft::ScriptProjectileHitEntityAfterEvent>&); - MCAPI void $onProjectileHitBlock(::Scripting::StrongTypedObjectHandle< - ::ScriptModuleMinecraft::ScriptProjectileHitBlockAfterEvent>&); + MCFOLD void $onProjectileHitBlock(::Scripting::StrongTypedObjectHandle< + ::ScriptModuleMinecraft::ScriptProjectileHitBlockAfterEvent>&); // NOLINTEND public: diff --git a/src/mc/scripting/modules/minecraft/events/IScriptWorldBeforeEvents.h b/src/mc/scripting/modules/minecraft/events/IScriptWorldBeforeEvents.h index 3f6c1d4673..2afab52332 100644 --- a/src/mc/scripting/modules/minecraft/events/IScriptWorldBeforeEvents.h +++ b/src/mc/scripting/modules/minecraft/events/IScriptWorldBeforeEvents.h @@ -120,13 +120,13 @@ class IScriptWorldBeforeEvents { public: // virtual function thunks // NOLINTBEGIN - MCAPI ::std::optional<::Scripting::StrongTypedObjectHandle<::ScriptModuleMinecraft::ScriptChatSendBeforeEvent>> + MCFOLD ::std::optional<::Scripting::StrongTypedObjectHandle<::ScriptModuleMinecraft::ScriptChatSendBeforeEvent>> $onBeforeChat(::ChatEvent const&, ::Player const&); - MCAPI void + MCFOLD void $onBeforeWorldInitialize(::Scripting::StrongTypedObjectHandle<::ScriptModuleMinecraft::ScriptBlockComponentRegistry> const&, ::Scripting::StrongTypedObjectHandle<::ScriptModuleMinecraft::ScriptItemComponentRegistry> const&); - MCAPI ::std::optional< + MCFOLD ::std::optional< ::Scripting::StrongTypedObjectHandle<::ScriptModuleMinecraft::ScriptWeatherChangedBeforeEvent>> $onBeforeWeatherChangedEvent( ::ScriptModuleMinecraft::ScriptWeatherType, @@ -134,42 +134,42 @@ class IScriptWorldBeforeEvents { int ); - MCAPI ::std::optional< + MCFOLD ::std::optional< ::Scripting::StrongTypedObjectHandle<::ScriptModuleMinecraft::ScriptPlayerInteractWithEntityBeforeEvent>> $onBeforePlayerInteractWithEntity(::Player&, ::Actor&, ::PlayerInteractWithEntityBeforeEvent const&); - MCAPI ::std::optional< + MCFOLD ::std::optional< ::Scripting::StrongTypedObjectHandle<::ScriptModuleMinecraft::ScriptPlayerInteractWithBlockBeforeEvent>> $onBeforePlayerInteractWithBlock(::Player&, ::PlayerInteractWithBlockBeforeEvent const&); - MCAPI ::std::optional< + MCFOLD ::std::optional< ::Scripting::StrongTypedObjectHandle<::ScriptModuleMinecraft::ScriptPlayerGameModeChangeBeforeEvent>> $onBeforePlayerGameModeChange(::Player const&, ::GameType, ::GameType); - MCAPI void $onBeforePlayerLeave(::Player const&); + MCFOLD void $onBeforePlayerLeave(::Player const&); - MCAPI void $onBeforeActorRemove(::Actor const&); + MCFOLD void $onBeforeActorRemove(::Actor const&); - MCAPI ::std::optional< + MCFOLD ::std::optional< ::Scripting::StrongTypedObjectHandle<::ScriptModuleMinecraft::ScriptActorAddEffectBeforeEvent>> $onBeforeEffectAddedEventSend(::ActorAddEffectEvent&, ::Actor const&); - MCAPI ::std::optional< + MCFOLD ::std::optional< ::Scripting::StrongTypedObjectHandle<::ScriptModuleMinecraft::ScriptExplosionStartedBeforeEvent>> $onBeforeExplosion(::ExplosionStartedEvent const&); - MCAPI ::std::optional< + MCFOLD ::std::optional< ::Scripting::StrongTypedObjectHandle<::ScriptModuleMinecraft::ScriptPlayerBreakBlockBeforeEvent>> $onBeforePlayerBreakBlock(::Player const&, ::BlockTryDestroyByPlayerEvent const&); - MCAPI ::std::optional< + MCFOLD ::std::optional< ::Scripting::StrongTypedObjectHandle<::ScriptModuleMinecraft::ScriptPlayerPlaceBlockBeforeEvent>> $onBeforePlayerPlaceBlock(::Player const&, ::BlockTryPlaceByPlayerEvent const&); - MCAPI ::std::optional<::Scripting::StrongTypedObjectHandle<::ScriptModuleMinecraft::ScriptItemUseBeforeEvent>> + MCFOLD ::std::optional<::Scripting::StrongTypedObjectHandle<::ScriptModuleMinecraft::ScriptItemUseBeforeEvent>> $onBeforeItemUse(::Player const&, ::ItemUseEvent const&); - MCAPI ::std::optional<::Scripting::StrongTypedObjectHandle<::ScriptModuleMinecraft::ScriptItemUseOnBeforeEvent>> + MCFOLD ::std::optional<::Scripting::StrongTypedObjectHandle<::ScriptModuleMinecraft::ScriptItemUseOnBeforeEvent>> $onBeforeItemUseOn(::Player const&, ::ItemUseOnEvent const&); // NOLINTEND diff --git a/src/mc/scripting/modules/minecraft/events/ScriptActorEventListener.h b/src/mc/scripting/modules/minecraft/events/ScriptActorEventListener.h index 9417afc3cf..5b2ce47481 100644 --- a/src/mc/scripting/modules/minecraft/events/ScriptActorEventListener.h +++ b/src/mc/scripting/modules/minecraft/events/ScriptActorEventListener.h @@ -83,7 +83,7 @@ class ScriptActorEventListener : public ::EventListenerDispatcher<::ActorEventLi // NOLINTBEGIN MCAPI ::EventResult $onEvent(::ActorRemovedEvent const& actorRemovedEvent); - MCAPI ::EventResult $onEvent(::ActorRemoveEffectEvent const& actorRemoveEffectEvent); + MCFOLD ::EventResult $onEvent(::ActorRemoveEffectEvent const& actorRemoveEffectEvent); MCAPI ::EventResult $onEvent(::ActorDefinitionEndedEvent const& actorDefintionEvent); diff --git a/src/mc/scripting/modules/minecraft/events/ScriptActorHealthChangedAfterEvent.h b/src/mc/scripting/modules/minecraft/events/ScriptActorHealthChangedAfterEvent.h index b14def55d7..ce80018276 100644 --- a/src/mc/scripting/modules/minecraft/events/ScriptActorHealthChangedAfterEvent.h +++ b/src/mc/scripting/modules/minecraft/events/ScriptActorHealthChangedAfterEvent.h @@ -38,7 +38,7 @@ struct ScriptActorHealthChangedAfterEvent { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/scripting/modules/minecraft/events/ScriptActorHitEntityAfterEvent.h b/src/mc/scripting/modules/minecraft/events/ScriptActorHitEntityAfterEvent.h index 6811fc34b1..7e3671e376 100644 --- a/src/mc/scripting/modules/minecraft/events/ScriptActorHitEntityAfterEvent.h +++ b/src/mc/scripting/modules/minecraft/events/ScriptActorHitEntityAfterEvent.h @@ -37,7 +37,7 @@ struct ScriptActorHitEntityAfterEvent { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/scripting/modules/minecraft/events/ScriptActorRemoveAfterEvent.h b/src/mc/scripting/modules/minecraft/events/ScriptActorRemoveAfterEvent.h index e0065d405f..ba7c592b2e 100644 --- a/src/mc/scripting/modules/minecraft/events/ScriptActorRemoveAfterEvent.h +++ b/src/mc/scripting/modules/minecraft/events/ScriptActorRemoveAfterEvent.h @@ -24,7 +24,7 @@ struct ScriptActorRemoveAfterEvent { public: // member functions // NOLINTBEGIN - MCAPI ::ScriptModuleMinecraft::ScriptActorRemoveAfterEvent& + MCFOLD ::ScriptModuleMinecraft::ScriptActorRemoveAfterEvent& operator=(::ScriptModuleMinecraft::ScriptActorRemoveAfterEvent&&); MCAPI ~ScriptActorRemoveAfterEvent(); @@ -39,7 +39,7 @@ struct ScriptActorRemoveAfterEvent { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/scripting/modules/minecraft/events/ScriptBlockCustomComponentEntityFallOnAfterEvent.h b/src/mc/scripting/modules/minecraft/events/ScriptBlockCustomComponentEntityFallOnAfterEvent.h index 7aeb5a7f96..45daf7d421 100644 --- a/src/mc/scripting/modules/minecraft/events/ScriptBlockCustomComponentEntityFallOnAfterEvent.h +++ b/src/mc/scripting/modules/minecraft/events/ScriptBlockCustomComponentEntityFallOnAfterEvent.h @@ -47,7 +47,7 @@ struct ScriptBlockCustomComponentEntityFallOnAfterEvent // NOLINTBEGIN MCAPI static ::Scripting::ClassBinding bind(); - MCAPI static ::std::vector<::gsl::not_null<::ScriptModuleMinecraft::ScriptBlockCustomComponentInterface const*>> + MCFOLD static ::std::vector<::gsl::not_null<::ScriptModuleMinecraft::ScriptBlockCustomComponentInterface const*>> tryGetComponentsToExecute( ::ScriptModuleMinecraft::ScriptBlockCustomComponentEntityFallOnAfterEventIntermediateStorage const& eventData ); diff --git a/src/mc/scripting/modules/minecraft/events/ScriptBlockCustomComponentEntityFallOnAfterEventIntermediateStorage.h b/src/mc/scripting/modules/minecraft/events/ScriptBlockCustomComponentEntityFallOnAfterEventIntermediateStorage.h index bedd182325..75828c5f86 100644 --- a/src/mc/scripting/modules/minecraft/events/ScriptBlockCustomComponentEntityFallOnAfterEventIntermediateStorage.h +++ b/src/mc/scripting/modules/minecraft/events/ScriptBlockCustomComponentEntityFallOnAfterEventIntermediateStorage.h @@ -32,7 +32,7 @@ struct ScriptBlockCustomComponentEntityFallOnAfterEventIntermediateStorage public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/scripting/modules/minecraft/events/ScriptBlockCustomComponentOnPlaceAfterEvent.h b/src/mc/scripting/modules/minecraft/events/ScriptBlockCustomComponentOnPlaceAfterEvent.h index 4c56abc8ea..5564158003 100644 --- a/src/mc/scripting/modules/minecraft/events/ScriptBlockCustomComponentOnPlaceAfterEvent.h +++ b/src/mc/scripting/modules/minecraft/events/ScriptBlockCustomComponentOnPlaceAfterEvent.h @@ -44,7 +44,7 @@ struct ScriptBlockCustomComponentOnPlaceAfterEvent : public ::ScriptModuleMinecr // NOLINTBEGIN MCAPI static ::Scripting::ClassBinding bind(); - MCAPI static ::std::vector<::gsl::not_null<::ScriptModuleMinecraft::ScriptBlockCustomComponentInterface const*>> + MCFOLD static ::std::vector<::gsl::not_null<::ScriptModuleMinecraft::ScriptBlockCustomComponentInterface const*>> tryGetComponentsToExecute( ::ScriptModuleMinecraft::ScriptBlockCustomComponentOnPlaceAfterEventIntermediateStorage const& eventData ); diff --git a/src/mc/scripting/modules/minecraft/events/ScriptBlockCustomComponentPlayerDestroyAfterEvent.h b/src/mc/scripting/modules/minecraft/events/ScriptBlockCustomComponentPlayerDestroyAfterEvent.h index 9cffdb2061..fe5f2b71d3 100644 --- a/src/mc/scripting/modules/minecraft/events/ScriptBlockCustomComponentPlayerDestroyAfterEvent.h +++ b/src/mc/scripting/modules/minecraft/events/ScriptBlockCustomComponentPlayerDestroyAfterEvent.h @@ -41,7 +41,7 @@ struct ScriptBlockCustomComponentPlayerDestroyAfterEvent ::Scripting::WeakLifetimeScope const& scope ); - MCAPI ::ScriptModuleMinecraft::ScriptBlockCustomComponentPlayerDestroyAfterEvent& + MCFOLD ::ScriptModuleMinecraft::ScriptBlockCustomComponentPlayerDestroyAfterEvent& operator=(::ScriptModuleMinecraft::ScriptBlockCustomComponentPlayerDestroyAfterEvent&&); // NOLINTEND @@ -50,7 +50,7 @@ struct ScriptBlockCustomComponentPlayerDestroyAfterEvent // NOLINTBEGIN MCAPI static ::Scripting::ClassBinding bind(); - MCAPI static ::std::vector<::gsl::not_null<::ScriptModuleMinecraft::ScriptBlockCustomComponentInterface const*>> + MCFOLD static ::std::vector<::gsl::not_null<::ScriptModuleMinecraft::ScriptBlockCustomComponentInterface const*>> tryGetComponentsToExecute( ::ScriptModuleMinecraft::ScriptBlockCustomComponentPlayerDestroyAfterEventIntermediateStorage const& eventData ); diff --git a/src/mc/scripting/modules/minecraft/events/ScriptBlockCustomComponentPlayerDestroyAfterEventIntermediateStorage.h b/src/mc/scripting/modules/minecraft/events/ScriptBlockCustomComponentPlayerDestroyAfterEventIntermediateStorage.h index bab44c7262..d9a16fe787 100644 --- a/src/mc/scripting/modules/minecraft/events/ScriptBlockCustomComponentPlayerDestroyAfterEventIntermediateStorage.h +++ b/src/mc/scripting/modules/minecraft/events/ScriptBlockCustomComponentPlayerDestroyAfterEventIntermediateStorage.h @@ -31,7 +31,7 @@ struct ScriptBlockCustomComponentPlayerDestroyAfterEventIntermediateStorage public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/scripting/modules/minecraft/events/ScriptBlockCustomComponentPlayerInteractAfterEvent.h b/src/mc/scripting/modules/minecraft/events/ScriptBlockCustomComponentPlayerInteractAfterEvent.h index e19826648c..e18df02c02 100644 --- a/src/mc/scripting/modules/minecraft/events/ScriptBlockCustomComponentPlayerInteractAfterEvent.h +++ b/src/mc/scripting/modules/minecraft/events/ScriptBlockCustomComponentPlayerInteractAfterEvent.h @@ -51,7 +51,7 @@ struct ScriptBlockCustomComponentPlayerInteractAfterEvent // NOLINTBEGIN MCAPI static ::Scripting::ClassBinding bind(); - MCAPI static ::std::vector<::gsl::not_null<::ScriptModuleMinecraft::ScriptBlockCustomComponentInterface const*>> + MCFOLD static ::std::vector<::gsl::not_null<::ScriptModuleMinecraft::ScriptBlockCustomComponentInterface const*>> tryGetComponentsToExecute( ::ScriptModuleMinecraft::ScriptBlockCustomComponentPlayerInteractAfterEventIntermediateStorage const& eventData ); diff --git a/src/mc/scripting/modules/minecraft/events/ScriptBlockCustomComponentPlayerInteractAfterEventIntermediateStorage.h b/src/mc/scripting/modules/minecraft/events/ScriptBlockCustomComponentPlayerInteractAfterEventIntermediateStorage.h index ca0f0d1dc5..5d3369a471 100644 --- a/src/mc/scripting/modules/minecraft/events/ScriptBlockCustomComponentPlayerInteractAfterEventIntermediateStorage.h +++ b/src/mc/scripting/modules/minecraft/events/ScriptBlockCustomComponentPlayerInteractAfterEventIntermediateStorage.h @@ -33,7 +33,7 @@ struct ScriptBlockCustomComponentPlayerInteractAfterEventIntermediateStorage public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/scripting/modules/minecraft/events/ScriptBlockCustomComponentPlayerPlaceBeforeEvent.h b/src/mc/scripting/modules/minecraft/events/ScriptBlockCustomComponentPlayerPlaceBeforeEvent.h index c213944ef8..55321591a8 100644 --- a/src/mc/scripting/modules/minecraft/events/ScriptBlockCustomComponentPlayerPlaceBeforeEvent.h +++ b/src/mc/scripting/modules/minecraft/events/ScriptBlockCustomComponentPlayerPlaceBeforeEvent.h @@ -87,7 +87,7 @@ struct ScriptBlockCustomComponentPlayerPlaceBeforeEvent // NOLINTBEGIN MCAPI void $updateEngineEvent(::BlockEvents::BlockPlayerPlacingEvent& engineEvent) const; - MCAPI bool $shouldCancel() const; + MCFOLD bool $shouldCancel() const; // NOLINTEND public: diff --git a/src/mc/scripting/modules/minecraft/events/ScriptBlockCustomComponentRandomTickAfterEvent.h b/src/mc/scripting/modules/minecraft/events/ScriptBlockCustomComponentRandomTickAfterEvent.h index 8afb8632c8..9336dacc83 100644 --- a/src/mc/scripting/modules/minecraft/events/ScriptBlockCustomComponentRandomTickAfterEvent.h +++ b/src/mc/scripting/modules/minecraft/events/ScriptBlockCustomComponentRandomTickAfterEvent.h @@ -33,7 +33,7 @@ struct ScriptBlockCustomComponentRandomTickAfterEvent // NOLINTBEGIN MCAPI static ::Scripting::ClassBinding bind(); - MCAPI static ::std::vector<::gsl::not_null<::ScriptModuleMinecraft::ScriptBlockCustomComponentInterface const*>> + MCFOLD static ::std::vector<::gsl::not_null<::ScriptModuleMinecraft::ScriptBlockCustomComponentInterface const*>> tryGetComponentsToExecute( ::ScriptModuleMinecraft::ScriptBlockCustomComponentAfterEventIntermediateStorage const& eventData ); @@ -42,7 +42,7 @@ struct ScriptBlockCustomComponentRandomTickAfterEvent public: // constructor thunks // NOLINTBEGIN - MCAPI void* $ctor( + MCFOLD void* $ctor( ::ScriptModuleMinecraft::ScriptBlockCustomComponentAfterEventIntermediateStorage const& eventData, ::Scripting::WeakLifetimeScope const& scope ); diff --git a/src/mc/scripting/modules/minecraft/events/ScriptBlockCustomComponentStepOffAfterEvent.h b/src/mc/scripting/modules/minecraft/events/ScriptBlockCustomComponentStepOffAfterEvent.h index 8b6cd722fb..ac2b92d041 100644 --- a/src/mc/scripting/modules/minecraft/events/ScriptBlockCustomComponentStepOffAfterEvent.h +++ b/src/mc/scripting/modules/minecraft/events/ScriptBlockCustomComponentStepOffAfterEvent.h @@ -38,7 +38,7 @@ struct ScriptBlockCustomComponentStepOffAfterEvent : public ::ScriptModuleMinecr ::Scripting::WeakLifetimeScope const& scope ); - MCAPI ::ScriptModuleMinecraft::ScriptBlockCustomComponentStepOffAfterEvent& + MCFOLD ::ScriptModuleMinecraft::ScriptBlockCustomComponentStepOffAfterEvent& operator=(::ScriptModuleMinecraft::ScriptBlockCustomComponentStepOffAfterEvent&&); // NOLINTEND @@ -47,7 +47,7 @@ struct ScriptBlockCustomComponentStepOffAfterEvent : public ::ScriptModuleMinecr // NOLINTBEGIN MCAPI static ::Scripting::ClassBinding bind(); - MCAPI static ::std::vector<::gsl::not_null<::ScriptModuleMinecraft::ScriptBlockCustomComponentInterface const*>> + MCFOLD static ::std::vector<::gsl::not_null<::ScriptModuleMinecraft::ScriptBlockCustomComponentInterface const*>> tryGetComponentsToExecute( ::ScriptModuleMinecraft::ScriptBlockCustomComponentStepOffAfterEventIntermediateStorage const& eventData ); @@ -56,7 +56,7 @@ struct ScriptBlockCustomComponentStepOffAfterEvent : public ::ScriptModuleMinecr public: // constructor thunks // NOLINTBEGIN - MCAPI void* $ctor( + MCFOLD void* $ctor( ::ScriptModuleMinecraft::ScriptBlockCustomComponentStepOffAfterEventIntermediateStorage const& eventData, ::Scripting::WeakLifetimeScope const& scope ); diff --git a/src/mc/scripting/modules/minecraft/events/ScriptBlockCustomComponentStepOffAfterEventIntermediateStorage.h b/src/mc/scripting/modules/minecraft/events/ScriptBlockCustomComponentStepOffAfterEventIntermediateStorage.h index 6c645956d8..40142027ae 100644 --- a/src/mc/scripting/modules/minecraft/events/ScriptBlockCustomComponentStepOffAfterEventIntermediateStorage.h +++ b/src/mc/scripting/modules/minecraft/events/ScriptBlockCustomComponentStepOffAfterEventIntermediateStorage.h @@ -31,7 +31,7 @@ struct ScriptBlockCustomComponentStepOffAfterEventIntermediateStorage public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/scripting/modules/minecraft/events/ScriptBlockCustomComponentStepOnAfterEvent.h b/src/mc/scripting/modules/minecraft/events/ScriptBlockCustomComponentStepOnAfterEvent.h index f95b13092e..85e60b2566 100644 --- a/src/mc/scripting/modules/minecraft/events/ScriptBlockCustomComponentStepOnAfterEvent.h +++ b/src/mc/scripting/modules/minecraft/events/ScriptBlockCustomComponentStepOnAfterEvent.h @@ -38,7 +38,7 @@ struct ScriptBlockCustomComponentStepOnAfterEvent : public ::ScriptModuleMinecra ::Scripting::WeakLifetimeScope const& scope ); - MCAPI ::ScriptModuleMinecraft::ScriptBlockCustomComponentStepOnAfterEvent& + MCFOLD ::ScriptModuleMinecraft::ScriptBlockCustomComponentStepOnAfterEvent& operator=(::ScriptModuleMinecraft::ScriptBlockCustomComponentStepOnAfterEvent&&); // NOLINTEND @@ -47,7 +47,7 @@ struct ScriptBlockCustomComponentStepOnAfterEvent : public ::ScriptModuleMinecra // NOLINTBEGIN MCAPI static ::Scripting::ClassBinding bind(); - MCAPI static ::std::vector<::gsl::not_null<::ScriptModuleMinecraft::ScriptBlockCustomComponentInterface const*>> + MCFOLD static ::std::vector<::gsl::not_null<::ScriptModuleMinecraft::ScriptBlockCustomComponentInterface const*>> tryGetComponentsToExecute( ::ScriptModuleMinecraft::ScriptBlockCustomComponentStepOnAfterEventIntermediateStorage const& eventData ); @@ -56,7 +56,7 @@ struct ScriptBlockCustomComponentStepOnAfterEvent : public ::ScriptModuleMinecra public: // constructor thunks // NOLINTBEGIN - MCAPI void* $ctor( + MCFOLD void* $ctor( ::ScriptModuleMinecraft::ScriptBlockCustomComponentStepOnAfterEventIntermediateStorage const& eventData, ::Scripting::WeakLifetimeScope const& scope ); diff --git a/src/mc/scripting/modules/minecraft/events/ScriptBlockCustomComponentStepOnAfterEventIntermediateStorage.h b/src/mc/scripting/modules/minecraft/events/ScriptBlockCustomComponentStepOnAfterEventIntermediateStorage.h index 8a72c256ce..2406ae9aeb 100644 --- a/src/mc/scripting/modules/minecraft/events/ScriptBlockCustomComponentStepOnAfterEventIntermediateStorage.h +++ b/src/mc/scripting/modules/minecraft/events/ScriptBlockCustomComponentStepOnAfterEventIntermediateStorage.h @@ -31,7 +31,7 @@ struct ScriptBlockCustomComponentStepOnAfterEventIntermediateStorage public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/scripting/modules/minecraft/events/ScriptBlockCustomComponentTickAfterEvent.h b/src/mc/scripting/modules/minecraft/events/ScriptBlockCustomComponentTickAfterEvent.h index 30e3d0fc4c..5db9757c06 100644 --- a/src/mc/scripting/modules/minecraft/events/ScriptBlockCustomComponentTickAfterEvent.h +++ b/src/mc/scripting/modules/minecraft/events/ScriptBlockCustomComponentTickAfterEvent.h @@ -32,7 +32,7 @@ struct ScriptBlockCustomComponentTickAfterEvent : public ::ScriptModuleMinecraft // NOLINTBEGIN MCAPI static ::Scripting::ClassBinding bind(); - MCAPI static ::std::vector<::gsl::not_null<::ScriptModuleMinecraft::ScriptBlockCustomComponentInterface const*>> + MCFOLD static ::std::vector<::gsl::not_null<::ScriptModuleMinecraft::ScriptBlockCustomComponentInterface const*>> tryGetComponentsToExecute( ::ScriptModuleMinecraft::ScriptBlockCustomComponentAfterEventIntermediateStorage const& eventData ); @@ -41,7 +41,7 @@ struct ScriptBlockCustomComponentTickAfterEvent : public ::ScriptModuleMinecraft public: // constructor thunks // NOLINTBEGIN - MCAPI void* $ctor( + MCFOLD void* $ctor( ::ScriptModuleMinecraft::ScriptBlockCustomComponentAfterEventIntermediateStorage const& eventData, ::Scripting::WeakLifetimeScope const& scope ); diff --git a/src/mc/scripting/modules/minecraft/events/ScriptBlockEvent.h b/src/mc/scripting/modules/minecraft/events/ScriptBlockEvent.h index cac5319f37..47fe3160ee 100644 --- a/src/mc/scripting/modules/minecraft/events/ScriptBlockEvent.h +++ b/src/mc/scripting/modules/minecraft/events/ScriptBlockEvent.h @@ -36,7 +36,7 @@ struct ScriptBlockEvent { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/scripting/modules/minecraft/events/ScriptBlockExplodedAfterEvent.h b/src/mc/scripting/modules/minecraft/events/ScriptBlockExplodedAfterEvent.h index fa275823a5..202a0e4d6e 100644 --- a/src/mc/scripting/modules/minecraft/events/ScriptBlockExplodedAfterEvent.h +++ b/src/mc/scripting/modules/minecraft/events/ScriptBlockExplodedAfterEvent.h @@ -25,7 +25,7 @@ struct ScriptBlockExplodedAfterEvent : public ::ScriptModuleMinecraft::ScriptBlo public: // member functions // NOLINTBEGIN - MCAPI ::ScriptModuleMinecraft::ScriptBlockExplodedAfterEvent& + MCFOLD ::ScriptModuleMinecraft::ScriptBlockExplodedAfterEvent& operator=(::ScriptModuleMinecraft::ScriptBlockExplodedAfterEvent&&); // NOLINTEND diff --git a/src/mc/scripting/modules/minecraft/events/ScriptBlockHitInformation.h b/src/mc/scripting/modules/minecraft/events/ScriptBlockHitInformation.h index 5b1fea4a25..48fe7cb104 100644 --- a/src/mc/scripting/modules/minecraft/events/ScriptBlockHitInformation.h +++ b/src/mc/scripting/modules/minecraft/events/ScriptBlockHitInformation.h @@ -37,7 +37,7 @@ struct ScriptBlockHitInformation { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/scripting/modules/minecraft/events/ScriptEntityHitInformation.h b/src/mc/scripting/modules/minecraft/events/ScriptEntityHitInformation.h index 44d67fd9dc..5f452965c7 100644 --- a/src/mc/scripting/modules/minecraft/events/ScriptEntityHitInformation.h +++ b/src/mc/scripting/modules/minecraft/events/ScriptEntityHitInformation.h @@ -35,7 +35,7 @@ struct ScriptEntityHitInformation { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/scripting/modules/minecraft/events/ScriptGlobalEventListeners.h b/src/mc/scripting/modules/minecraft/events/ScriptGlobalEventListeners.h index 66e872a823..cb91abd99b 100644 --- a/src/mc/scripting/modules/minecraft/events/ScriptGlobalEventListeners.h +++ b/src/mc/scripting/modules/minecraft/events/ScriptGlobalEventListeners.h @@ -47,7 +47,7 @@ class ScriptGlobalEventListeners { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/scripting/modules/minecraft/events/ScriptItemCustomComponentBeforeDurabilityDamageEvent.h b/src/mc/scripting/modules/minecraft/events/ScriptItemCustomComponentBeforeDurabilityDamageEvent.h index 5eaa2810cf..068671c1cb 100644 --- a/src/mc/scripting/modules/minecraft/events/ScriptItemCustomComponentBeforeDurabilityDamageEvent.h +++ b/src/mc/scripting/modules/minecraft/events/ScriptItemCustomComponentBeforeDurabilityDamageEvent.h @@ -71,7 +71,7 @@ struct ScriptItemCustomComponentBeforeDurabilityDamageEvent // NOLINTBEGIN MCAPI void $updateEngineEvent(int& durabilityDamage, ::ItemStack& item, ::Actor&, ::Mob&) const; - MCAPI bool $shouldCancel() const; + MCFOLD bool $shouldCancel() const; // NOLINTEND public: diff --git a/src/mc/scripting/modules/minecraft/events/ScriptItemCustomComponentCompleteUseEvent.h b/src/mc/scripting/modules/minecraft/events/ScriptItemCustomComponentCompleteUseEvent.h index a1689dc006..9c544e82e8 100644 --- a/src/mc/scripting/modules/minecraft/events/ScriptItemCustomComponentCompleteUseEvent.h +++ b/src/mc/scripting/modules/minecraft/events/ScriptItemCustomComponentCompleteUseEvent.h @@ -52,7 +52,7 @@ struct ScriptItemCustomComponentCompleteUseEvent : public ::ScriptModuleMinecraf public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/scripting/modules/minecraft/events/ScriptItemCustomComponentConsumeEvent.h b/src/mc/scripting/modules/minecraft/events/ScriptItemCustomComponentConsumeEvent.h index b8da849d2d..5cc02da860 100644 --- a/src/mc/scripting/modules/minecraft/events/ScriptItemCustomComponentConsumeEvent.h +++ b/src/mc/scripting/modules/minecraft/events/ScriptItemCustomComponentConsumeEvent.h @@ -48,7 +48,7 @@ struct ScriptItemCustomComponentConsumeEvent : public ::ScriptModuleMinecraft::S public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/scripting/modules/minecraft/events/ScriptItemCustomComponentIntermediateStorage.h b/src/mc/scripting/modules/minecraft/events/ScriptItemCustomComponentIntermediateStorage.h index 8e99d21fff..6789a68823 100644 --- a/src/mc/scripting/modules/minecraft/events/ScriptItemCustomComponentIntermediateStorage.h +++ b/src/mc/scripting/modules/minecraft/events/ScriptItemCustomComponentIntermediateStorage.h @@ -24,7 +24,7 @@ struct ScriptItemCustomComponentIntermediateStorage public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/scripting/modules/minecraft/events/ScriptItemCustomComponentMineBlockEvent.h b/src/mc/scripting/modules/minecraft/events/ScriptItemCustomComponentMineBlockEvent.h index 04c802d0f3..82ad306493 100644 --- a/src/mc/scripting/modules/minecraft/events/ScriptItemCustomComponentMineBlockEvent.h +++ b/src/mc/scripting/modules/minecraft/events/ScriptItemCustomComponentMineBlockEvent.h @@ -51,7 +51,7 @@ struct ScriptItemCustomComponentMineBlockEvent : public ::ScriptModuleMinecraft: public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/scripting/modules/minecraft/events/ScriptItemCustomComponentUseEvent.h b/src/mc/scripting/modules/minecraft/events/ScriptItemCustomComponentUseEvent.h index a9e8a768b9..c7da3f8252 100644 --- a/src/mc/scripting/modules/minecraft/events/ScriptItemCustomComponentUseEvent.h +++ b/src/mc/scripting/modules/minecraft/events/ScriptItemCustomComponentUseEvent.h @@ -47,7 +47,7 @@ struct ScriptItemCustomComponentUseEvent : public ::ScriptModuleMinecraft::Scrip public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/scripting/modules/minecraft/events/ScriptItemCustomComponentUseOnEvent.h b/src/mc/scripting/modules/minecraft/events/ScriptItemCustomComponentUseOnEvent.h index c7f3ba3d8d..b568450ac5 100644 --- a/src/mc/scripting/modules/minecraft/events/ScriptItemCustomComponentUseOnEvent.h +++ b/src/mc/scripting/modules/minecraft/events/ScriptItemCustomComponentUseOnEvent.h @@ -57,7 +57,7 @@ struct ScriptItemCustomComponentUseOnEvent : public ::ScriptModuleMinecraft::Scr public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/scripting/modules/minecraft/events/ScriptItemReleaseUseAfterEvent.h b/src/mc/scripting/modules/minecraft/events/ScriptItemReleaseUseAfterEvent.h index 00f4a3757f..f93b196644 100644 --- a/src/mc/scripting/modules/minecraft/events/ScriptItemReleaseUseAfterEvent.h +++ b/src/mc/scripting/modules/minecraft/events/ScriptItemReleaseUseAfterEvent.h @@ -25,7 +25,7 @@ struct ScriptItemReleaseUseAfterEvent { public: // member functions // NOLINTBEGIN - MCAPI ::ScriptModuleMinecraft::ScriptItemReleaseUseAfterEvent& + MCFOLD ::ScriptModuleMinecraft::ScriptItemReleaseUseAfterEvent& operator=(::ScriptModuleMinecraft::ScriptItemReleaseUseAfterEvent&&); // NOLINTEND diff --git a/src/mc/scripting/modules/minecraft/events/ScriptItemStopUseAfterEvent.h b/src/mc/scripting/modules/minecraft/events/ScriptItemStopUseAfterEvent.h index 1ac6a3f3b0..8a98d0d935 100644 --- a/src/mc/scripting/modules/minecraft/events/ScriptItemStopUseAfterEvent.h +++ b/src/mc/scripting/modules/minecraft/events/ScriptItemStopUseAfterEvent.h @@ -25,7 +25,7 @@ struct ScriptItemStopUseAfterEvent { public: // member functions // NOLINTBEGIN - MCAPI ::ScriptModuleMinecraft::ScriptItemStopUseAfterEvent& + MCFOLD ::ScriptModuleMinecraft::ScriptItemStopUseAfterEvent& operator=(::ScriptModuleMinecraft::ScriptItemStopUseAfterEvent&&); // NOLINTEND diff --git a/src/mc/scripting/modules/minecraft/events/ScriptItemStopUseOnAfterEvent.h b/src/mc/scripting/modules/minecraft/events/ScriptItemStopUseOnAfterEvent.h index f52797d23c..ca375d385e 100644 --- a/src/mc/scripting/modules/minecraft/events/ScriptItemStopUseOnAfterEvent.h +++ b/src/mc/scripting/modules/minecraft/events/ScriptItemStopUseOnAfterEvent.h @@ -25,7 +25,7 @@ struct ScriptItemStopUseOnAfterEvent { public: // member functions // NOLINTBEGIN - MCAPI ::ScriptModuleMinecraft::ScriptItemStopUseOnAfterEvent& + MCFOLD ::ScriptModuleMinecraft::ScriptItemStopUseOnAfterEvent& operator=(::ScriptModuleMinecraft::ScriptItemStopUseOnAfterEvent&&); // NOLINTEND diff --git a/src/mc/scripting/modules/minecraft/events/ScriptListener.h b/src/mc/scripting/modules/minecraft/events/ScriptListener.h index 894ed29288..1a74234754 100644 --- a/src/mc/scripting/modules/minecraft/events/ScriptListener.h +++ b/src/mc/scripting/modules/minecraft/events/ScriptListener.h @@ -27,7 +27,7 @@ struct ScriptListener { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/scripting/modules/minecraft/events/ScriptPlayerInteractEvent.h b/src/mc/scripting/modules/minecraft/events/ScriptPlayerInteractEvent.h index fc69f57b57..cf88e56c5e 100644 --- a/src/mc/scripting/modules/minecraft/events/ScriptPlayerInteractEvent.h +++ b/src/mc/scripting/modules/minecraft/events/ScriptPlayerInteractEvent.h @@ -26,7 +26,7 @@ struct ScriptPlayerInteractEvent { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/scripting/modules/minecraft/events/ScriptPlayerInteractWithBlockEvent.h b/src/mc/scripting/modules/minecraft/events/ScriptPlayerInteractWithBlockEvent.h index ca1cb64719..4115bbd752 100644 --- a/src/mc/scripting/modules/minecraft/events/ScriptPlayerInteractWithBlockEvent.h +++ b/src/mc/scripting/modules/minecraft/events/ScriptPlayerInteractWithBlockEvent.h @@ -32,7 +32,7 @@ struct ScriptPlayerInteractWithBlockEvent : public ::ScriptModuleMinecraft::Scri public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/scripting/modules/minecraft/events/ScriptPlayerInteractWithEntityEvent.h b/src/mc/scripting/modules/minecraft/events/ScriptPlayerInteractWithEntityEvent.h index 3f40a11b34..def2fdd35d 100644 --- a/src/mc/scripting/modules/minecraft/events/ScriptPlayerInteractWithEntityEvent.h +++ b/src/mc/scripting/modules/minecraft/events/ScriptPlayerInteractWithEntityEvent.h @@ -29,7 +29,7 @@ struct ScriptPlayerInteractWithEntityEvent : public ::ScriptModuleMinecraft::Scr public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/scripting/modules/minecraft/events/ScriptPlayerLeaveAfterEvent.h b/src/mc/scripting/modules/minecraft/events/ScriptPlayerLeaveAfterEvent.h index 15936cc297..88ad08fb55 100644 --- a/src/mc/scripting/modules/minecraft/events/ScriptPlayerLeaveAfterEvent.h +++ b/src/mc/scripting/modules/minecraft/events/ScriptPlayerLeaveAfterEvent.h @@ -24,7 +24,7 @@ struct ScriptPlayerLeaveAfterEvent { public: // member functions // NOLINTBEGIN - MCAPI ::ScriptModuleMinecraft::ScriptPlayerLeaveAfterEvent& + MCFOLD ::ScriptModuleMinecraft::ScriptPlayerLeaveAfterEvent& operator=(::ScriptModuleMinecraft::ScriptPlayerLeaveAfterEvent&&); // NOLINTEND diff --git a/src/mc/scripting/modules/minecraft/events/ScriptSystemAfterEvents.h b/src/mc/scripting/modules/minecraft/events/ScriptSystemAfterEvents.h index b9082389f5..ea840ba73a 100644 --- a/src/mc/scripting/modules/minecraft/events/ScriptSystemAfterEvents.h +++ b/src/mc/scripting/modules/minecraft/events/ScriptSystemAfterEvents.h @@ -55,7 +55,7 @@ class ScriptSystemAfterEvents public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; @@ -120,9 +120,9 @@ class ScriptSystemAfterEvents MCAPI ::std::vector<::ScriptModuleMinecraft::ScriptSystemAfterEvents::SignalNameSubscriberCount> getFineGrainedSignalSubscriberStats() const; - MCAPI ::ScriptModuleMinecraft::ScriptTickSignal& getScriptTickSignal(); + MCFOLD ::ScriptModuleMinecraft::ScriptTickSignal& getScriptTickSignal(); - MCAPI ::ScriptModuleMinecraft::ScriptAsyncEventList const& getSignalList() const; + MCFOLD ::ScriptModuleMinecraft::ScriptAsyncEventList const& getSignalList() const; MCAPI ::ScriptModuleMinecraft::ScriptSystemAfterEvents& operator=(::ScriptModuleMinecraft::ScriptSystemAfterEvents&&); diff --git a/src/mc/scripting/modules/minecraft/events/ScriptSystemBeforeEvents.h b/src/mc/scripting/modules/minecraft/events/ScriptSystemBeforeEvents.h index 1ca0af7a63..26b246ece0 100644 --- a/src/mc/scripting/modules/minecraft/events/ScriptSystemBeforeEvents.h +++ b/src/mc/scripting/modules/minecraft/events/ScriptSystemBeforeEvents.h @@ -51,7 +51,7 @@ class ScriptSystemBeforeEvents public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/scripting/modules/minecraft/events/ScriptTickSignal.h b/src/mc/scripting/modules/minecraft/events/ScriptTickSignal.h index 6bce2d5930..228c961667 100644 --- a/src/mc/scripting/modules/minecraft/events/ScriptTickSignal.h +++ b/src/mc/scripting/modules/minecraft/events/ScriptTickSignal.h @@ -58,7 +58,7 @@ class ScriptTickSignal { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; @@ -84,7 +84,7 @@ class ScriptTickSignal { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/scripting/modules/minecraft/events/ScriptV010Events.h b/src/mc/scripting/modules/minecraft/events/ScriptV010Events.h index 0046f03bc5..c0491a30e9 100644 --- a/src/mc/scripting/modules/minecraft/events/ScriptV010Events.h +++ b/src/mc/scripting/modules/minecraft/events/ScriptV010Events.h @@ -339,7 +339,7 @@ class ScriptV010Events : public ::ScriptModuleMinecraft::IScriptWorldAfterEvents public: // virtual function thunks // NOLINTBEGIN - MCAPI ::Level& $getLevel() const; + MCFOLD ::Level& $getLevel() const; MCAPI void $onWeatherChanged(::Scripting::StrongTypedObjectHandle<::ScriptModuleMinecraft::ScriptWeatherChangedAfterEvent>& diff --git a/src/mc/scripting/modules/minecraft/events/ScriptWorldAfterEvents.h b/src/mc/scripting/modules/minecraft/events/ScriptWorldAfterEvents.h index 3b4adf00d8..1aa6da2b8c 100644 --- a/src/mc/scripting/modules/minecraft/events/ScriptWorldAfterEvents.h +++ b/src/mc/scripting/modules/minecraft/events/ScriptWorldAfterEvents.h @@ -103,7 +103,7 @@ class ScriptWorldAfterEvents public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/scripting/modules/minecraft/events/ScriptWorldInitializeAfterEvent.h b/src/mc/scripting/modules/minecraft/events/ScriptWorldInitializeAfterEvent.h index 67d2692530..e619d2ee2c 100644 --- a/src/mc/scripting/modules/minecraft/events/ScriptWorldInitializeAfterEvent.h +++ b/src/mc/scripting/modules/minecraft/events/ScriptWorldInitializeAfterEvent.h @@ -42,7 +42,7 @@ struct ScriptWorldInitializeAfterEvent { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/scripting/modules/minecraft/events/ScriptWorldInitializeBeforeEvent.h b/src/mc/scripting/modules/minecraft/events/ScriptWorldInitializeBeforeEvent.h index 52a0594a6c..8356874d8b 100644 --- a/src/mc/scripting/modules/minecraft/events/ScriptWorldInitializeBeforeEvent.h +++ b/src/mc/scripting/modules/minecraft/events/ScriptWorldInitializeBeforeEvent.h @@ -37,7 +37,7 @@ struct ScriptWorldInitializeBeforeEvent { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/scripting/modules/minecraft/events/SignalNameSubscriberCount.h b/src/mc/scripting/modules/minecraft/events/SignalNameSubscriberCount.h index a2cdd0e287..3c25ab4d7d 100644 --- a/src/mc/scripting/modules/minecraft/events/SignalNameSubscriberCount.h +++ b/src/mc/scripting/modules/minecraft/events/SignalNameSubscriberCount.h @@ -27,7 +27,7 @@ struct SignalNameSubscriberCount { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/scripting/modules/minecraft/events/metadata/ScriptCustomComponentAsyncEventList.h b/src/mc/scripting/modules/minecraft/events/metadata/ScriptCustomComponentAsyncEventList.h index 7258bdd129..9aacf5dc74 100644 --- a/src/mc/scripting/modules/minecraft/events/metadata/ScriptCustomComponentAsyncEventList.h +++ b/src/mc/scripting/modules/minecraft/events/metadata/ScriptCustomComponentAsyncEventList.h @@ -26,7 +26,7 @@ class ScriptCustomComponentAsyncEventList { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/scripting/modules/minecraft/events/metadata/ScriptCustomComponentAsyncSignalHandle.h b/src/mc/scripting/modules/minecraft/events/metadata/ScriptCustomComponentAsyncSignalHandle.h index 1ea151a663..37226871e1 100644 --- a/src/mc/scripting/modules/minecraft/events/metadata/ScriptCustomComponentAsyncSignalHandle.h +++ b/src/mc/scripting/modules/minecraft/events/metadata/ScriptCustomComponentAsyncSignalHandle.h @@ -27,7 +27,7 @@ struct ScriptCustomComponentAsyncSignalHandle { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/scripting/modules/minecraft/interfaces/ScriptRawMessageScoreInterface.h b/src/mc/scripting/modules/minecraft/interfaces/ScriptRawMessageScoreInterface.h index d8d9953077..37bd37cf33 100644 --- a/src/mc/scripting/modules/minecraft/interfaces/ScriptRawMessageScoreInterface.h +++ b/src/mc/scripting/modules/minecraft/interfaces/ScriptRawMessageScoreInterface.h @@ -24,7 +24,7 @@ struct ScriptRawMessageScoreInterface { public: // member functions // NOLINTBEGIN - MCAPI ::ScriptModuleMinecraft::ScriptRawMessageScoreInterface& + MCFOLD ::ScriptModuleMinecraft::ScriptRawMessageScoreInterface& operator=(::ScriptModuleMinecraft::ScriptRawMessageScoreInterface&&); MCAPI bool operator==(::ScriptModuleMinecraft::ScriptRawMessageScoreInterface const& other) const; @@ -41,7 +41,7 @@ struct ScriptRawMessageScoreInterface { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/scripting/modules/minecraft/interfaces/ScriptRawTextInterface.h b/src/mc/scripting/modules/minecraft/interfaces/ScriptRawTextInterface.h index a7b55398d6..b36f416f5e 100644 --- a/src/mc/scripting/modules/minecraft/interfaces/ScriptRawTextInterface.h +++ b/src/mc/scripting/modules/minecraft/interfaces/ScriptRawTextInterface.h @@ -47,7 +47,7 @@ struct ScriptRawTextInterface { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/scripting/modules/minecraft/items/ScriptInvalidContainerSlotError.h b/src/mc/scripting/modules/minecraft/items/ScriptInvalidContainerSlotError.h index 3d62e950ff..03ba5ee894 100644 --- a/src/mc/scripting/modules/minecraft/items/ScriptInvalidContainerSlotError.h +++ b/src/mc/scripting/modules/minecraft/items/ScriptInvalidContainerSlotError.h @@ -32,7 +32,7 @@ struct ScriptInvalidContainerSlotError : public ::Scripting::Error { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/scripting/modules/minecraft/items/ScriptItemCustomComponentAlreadyRegisteredError.h b/src/mc/scripting/modules/minecraft/items/ScriptItemCustomComponentAlreadyRegisteredError.h index 5f2a68fd2f..8ca7b40d8b 100644 --- a/src/mc/scripting/modules/minecraft/items/ScriptItemCustomComponentAlreadyRegisteredError.h +++ b/src/mc/scripting/modules/minecraft/items/ScriptItemCustomComponentAlreadyRegisteredError.h @@ -28,7 +28,7 @@ struct ScriptItemCustomComponentAlreadyRegisteredError : public ::Scripting::Err public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/scripting/modules/minecraft/items/ScriptItemCustomComponentRegistry.h b/src/mc/scripting/modules/minecraft/items/ScriptItemCustomComponentRegistry.h index 25470a1899..7e5b322e00 100644 --- a/src/mc/scripting/modules/minecraft/items/ScriptItemCustomComponentRegistry.h +++ b/src/mc/scripting/modules/minecraft/items/ScriptItemCustomComponentRegistry.h @@ -58,7 +58,7 @@ class ScriptItemCustomComponentRegistry : public ::ScriptModuleMinecraft::IScrip public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; @@ -199,7 +199,7 @@ class ScriptItemCustomComponentRegistry : public ::ScriptModuleMinecraft::IScrip ::ScriptModuleMinecraft::ScriptItemCustomComponentInterface&& closures ); - MCAPI ::ScriptDeferredEventListener& $getEventListener(); + MCFOLD ::ScriptDeferredEventListener& $getEventListener(); MCAPI void $onReload(); diff --git a/src/mc/scripting/modules/minecraft/items/ScriptItemCustomComponentReloadNewComponentError.h b/src/mc/scripting/modules/minecraft/items/ScriptItemCustomComponentReloadNewComponentError.h index b63a8e975b..ec854a69f0 100644 --- a/src/mc/scripting/modules/minecraft/items/ScriptItemCustomComponentReloadNewComponentError.h +++ b/src/mc/scripting/modules/minecraft/items/ScriptItemCustomComponentReloadNewComponentError.h @@ -28,7 +28,7 @@ struct ScriptItemCustomComponentReloadNewComponentError : public ::Scripting::Er public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/scripting/modules/minecraft/items/ScriptItemCustomComponentReloadNewEventError.h b/src/mc/scripting/modules/minecraft/items/ScriptItemCustomComponentReloadNewEventError.h index 96da1561a8..7b607e6cce 100644 --- a/src/mc/scripting/modules/minecraft/items/ScriptItemCustomComponentReloadNewEventError.h +++ b/src/mc/scripting/modules/minecraft/items/ScriptItemCustomComponentReloadNewEventError.h @@ -28,7 +28,7 @@ struct ScriptItemCustomComponentReloadNewEventError : public ::Scripting::Error public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/scripting/modules/minecraft/items/ScriptItemCustomComponentReloadVersionError.h b/src/mc/scripting/modules/minecraft/items/ScriptItemCustomComponentReloadVersionError.h index 9df1cd24d2..88eb453f87 100644 --- a/src/mc/scripting/modules/minecraft/items/ScriptItemCustomComponentReloadVersionError.h +++ b/src/mc/scripting/modules/minecraft/items/ScriptItemCustomComponentReloadVersionError.h @@ -37,7 +37,7 @@ struct ScriptItemCustomComponentReloadVersionError : public ::Scripting::Error { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/scripting/modules/minecraft/items/ScriptItemEnchantmentInstance.h b/src/mc/scripting/modules/minecraft/items/ScriptItemEnchantmentInstance.h index 22deb8d3ed..9356eda5c9 100644 --- a/src/mc/scripting/modules/minecraft/items/ScriptItemEnchantmentInstance.h +++ b/src/mc/scripting/modules/minecraft/items/ScriptItemEnchantmentInstance.h @@ -52,7 +52,7 @@ struct ScriptItemEnchantmentInstance { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/scripting/modules/minecraft/items/ScriptItemEnchantmentType.h b/src/mc/scripting/modules/minecraft/items/ScriptItemEnchantmentType.h index a6ee2e55f2..73488d8a62 100644 --- a/src/mc/scripting/modules/minecraft/items/ScriptItemEnchantmentType.h +++ b/src/mc/scripting/modules/minecraft/items/ScriptItemEnchantmentType.h @@ -66,7 +66,7 @@ struct ScriptItemEnchantmentType { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/scripting/modules/minecraft/items/ScriptItemEnchantmentUnknownIdError.h b/src/mc/scripting/modules/minecraft/items/ScriptItemEnchantmentUnknownIdError.h index 8cd25005c1..47cae468b1 100644 --- a/src/mc/scripting/modules/minecraft/items/ScriptItemEnchantmentUnknownIdError.h +++ b/src/mc/scripting/modules/minecraft/items/ScriptItemEnchantmentUnknownIdError.h @@ -32,7 +32,7 @@ struct ScriptItemEnchantmentUnknownIdError : public ::Scripting::Error { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/scripting/modules/minecraft/items/ScriptItemStack.h b/src/mc/scripting/modules/minecraft/items/ScriptItemStack.h index ab4066f25c..82dc4a1861 100644 --- a/src/mc/scripting/modules/minecraft/items/ScriptItemStack.h +++ b/src/mc/scripting/modules/minecraft/items/ScriptItemStack.h @@ -79,7 +79,7 @@ class ScriptItemStack { MCAPI ::ItemInstance const& getItemInstance() const; - MCAPI ::ItemInstance& getItemInstance(); + MCFOLD ::ItemInstance& getItemInstance(); MCAPI ::std::vector<::std::string> getLore() const; diff --git a/src/mc/scripting/modules/minecraft/items/ScriptItemType.h b/src/mc/scripting/modules/minecraft/items/ScriptItemType.h index fc0e5f7c28..274d9da260 100644 --- a/src/mc/scripting/modules/minecraft/items/ScriptItemType.h +++ b/src/mc/scripting/modules/minecraft/items/ScriptItemType.h @@ -28,7 +28,7 @@ class ScriptItemType { public: // member functions // NOLINTBEGIN - MCAPI ::Item const& getItem() const; + MCFOLD ::Item const& getItem() const; MCAPI ::std::string getName() const; diff --git a/src/mc/scripting/modules/minecraft/items/potions/ScriptPotionEffectType.h b/src/mc/scripting/modules/minecraft/items/potions/ScriptPotionEffectType.h index 69ecdd4189..5c2dbc2493 100644 --- a/src/mc/scripting/modules/minecraft/items/potions/ScriptPotionEffectType.h +++ b/src/mc/scripting/modules/minecraft/items/potions/ScriptPotionEffectType.h @@ -27,7 +27,8 @@ class ScriptPotionEffectType { MCAPI ::std::string getPotionEffectTypeId() const; - MCAPI ::ScriptModuleMinecraft::ScriptPotionEffectType& operator=(::ScriptModuleMinecraft::ScriptPotionEffectType&&); + MCFOLD ::ScriptModuleMinecraft::ScriptPotionEffectType& + operator=(::ScriptModuleMinecraft::ScriptPotionEffectType&&); MCAPI ~ScriptPotionEffectType(); // NOLINTEND @@ -41,13 +42,13 @@ class ScriptPotionEffectType { public: // constructor thunks // NOLINTBEGIN - MCAPI void* $ctor(::ScriptModuleMinecraft::ScriptPotionEffectType&&); + MCFOLD void* $ctor(::ScriptModuleMinecraft::ScriptPotionEffectType&&); // NOLINTEND public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/scripting/modules/minecraft/items/potions/ScriptPotionLiquidType.h b/src/mc/scripting/modules/minecraft/items/potions/ScriptPotionLiquidType.h index a958eabece..96123f7cd3 100644 --- a/src/mc/scripting/modules/minecraft/items/potions/ScriptPotionLiquidType.h +++ b/src/mc/scripting/modules/minecraft/items/potions/ScriptPotionLiquidType.h @@ -27,7 +27,8 @@ class ScriptPotionLiquidType { MCAPI ::std::string getPotionLiquidTypeId() const; - MCAPI ::ScriptModuleMinecraft::ScriptPotionLiquidType& operator=(::ScriptModuleMinecraft::ScriptPotionLiquidType&&); + MCFOLD ::ScriptModuleMinecraft::ScriptPotionLiquidType& + operator=(::ScriptModuleMinecraft::ScriptPotionLiquidType&&); MCAPI ~ScriptPotionLiquidType(); // NOLINTEND @@ -41,13 +42,13 @@ class ScriptPotionLiquidType { public: // constructor thunks // NOLINTBEGIN - MCAPI void* $ctor(::ScriptModuleMinecraft::ScriptPotionLiquidType&&); + MCFOLD void* $ctor(::ScriptModuleMinecraft::ScriptPotionLiquidType&&); // NOLINTEND public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/scripting/modules/minecraft/items/potions/ScriptPotionModifierType.h b/src/mc/scripting/modules/minecraft/items/potions/ScriptPotionModifierType.h index c039d568cd..8dd42b17be 100644 --- a/src/mc/scripting/modules/minecraft/items/potions/ScriptPotionModifierType.h +++ b/src/mc/scripting/modules/minecraft/items/potions/ScriptPotionModifierType.h @@ -23,7 +23,7 @@ class ScriptPotionModifierType { public: // member functions // NOLINTBEGIN - MCAPI ::ScriptModuleMinecraft::ScriptPotionModifierType& + MCFOLD ::ScriptModuleMinecraft::ScriptPotionModifierType& operator=(::ScriptModuleMinecraft::ScriptPotionModifierType&&); MCAPI ~ScriptPotionModifierType(); @@ -38,7 +38,7 @@ class ScriptPotionModifierType { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/scripting/modules/minecraft/molang/ScriptMolangVariableMap.h b/src/mc/scripting/modules/minecraft/molang/ScriptMolangVariableMap.h index 376722a9c6..a106a6374a 100644 --- a/src/mc/scripting/modules/minecraft/molang/ScriptMolangVariableMap.h +++ b/src/mc/scripting/modules/minecraft/molang/ScriptMolangVariableMap.h @@ -40,7 +40,7 @@ class ScriptMolangVariableMap // NOLINTBEGIN MCAPI ::Scripting::Result_deprecated<::std::string> _prependVariable(::std::string const& variableName); - MCAPI ::MolangVariableMap& getVariableMap(); + MCFOLD ::MolangVariableMap& getVariableMap(); MCAPI ::Scripting::Result setColorRBGA_V010(::std::string const& variableName, ::ScriptModuleMinecraft::ScriptColor const& color); diff --git a/src/mc/scripting/modules/minecraft/options/ScriptCameraFadeOptions.h b/src/mc/scripting/modules/minecraft/options/ScriptCameraFadeOptions.h index 55c71c865b..62a7fd0cf8 100644 --- a/src/mc/scripting/modules/minecraft/options/ScriptCameraFadeOptions.h +++ b/src/mc/scripting/modules/minecraft/options/ScriptCameraFadeOptions.h @@ -23,7 +23,7 @@ struct ScriptCameraFadeOptions { public: // member functions // NOLINTBEGIN - MCAPI ::ScriptModuleMinecraft::ScriptCameraFadeOptions& + MCFOLD ::ScriptModuleMinecraft::ScriptCameraFadeOptions& operator=(::ScriptModuleMinecraft::ScriptCameraFadeOptions&&); MCAPI ::ScriptModuleMinecraft::ScriptCameraFadeOptions& @@ -41,7 +41,7 @@ struct ScriptCameraFadeOptions { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/scripting/modules/minecraft/options/ScriptCameraSetFacingOptions.h b/src/mc/scripting/modules/minecraft/options/ScriptCameraSetFacingOptions.h index d20a0e9a04..f61ad1c897 100644 --- a/src/mc/scripting/modules/minecraft/options/ScriptCameraSetFacingOptions.h +++ b/src/mc/scripting/modules/minecraft/options/ScriptCameraSetFacingOptions.h @@ -39,7 +39,7 @@ struct ScriptCameraSetFacingOptions { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/scripting/modules/minecraft/options/ScriptMoveToOptions.h b/src/mc/scripting/modules/minecraft/options/ScriptMoveToOptions.h index 2dbdf98d7c..b345d3352c 100644 --- a/src/mc/scripting/modules/minecraft/options/ScriptMoveToOptions.h +++ b/src/mc/scripting/modules/minecraft/options/ScriptMoveToOptions.h @@ -31,7 +31,7 @@ struct ScriptMoveToOptions { // NOLINTBEGIN MCAPI bool getFaceTarget() const; - MCAPI float getSpeed() const; + MCFOLD float getSpeed() const; MCAPI ::std::optional<::Scripting::Error> validate() const; // NOLINTEND diff --git a/src/mc/scripting/modules/minecraft/options/ScriptMusicOptions.h b/src/mc/scripting/modules/minecraft/options/ScriptMusicOptions.h index b278926e35..3a8ca144da 100644 --- a/src/mc/scripting/modules/minecraft/options/ScriptMusicOptions.h +++ b/src/mc/scripting/modules/minecraft/options/ScriptMusicOptions.h @@ -31,11 +31,11 @@ struct ScriptMusicOptions { public: // member functions // NOLINTBEGIN - MCAPI float getFade() const; + MCFOLD float getFade() const; MCAPI bool getLoop() const; - MCAPI float getVolume() const; + MCFOLD float getVolume() const; MCAPI ::std::optional<::Scripting::Error> validate() const; // NOLINTEND diff --git a/src/mc/scripting/modules/minecraft/options/ScriptTeleportOptions.h b/src/mc/scripting/modules/minecraft/options/ScriptTeleportOptions.h index 2940c0b51a..5b95b75877 100644 --- a/src/mc/scripting/modules/minecraft/options/ScriptTeleportOptions.h +++ b/src/mc/scripting/modules/minecraft/options/ScriptTeleportOptions.h @@ -43,7 +43,7 @@ struct ScriptTeleportOptions { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/scripting/modules/minecraft/options/ScriptTitleDisplayOptions.h b/src/mc/scripting/modules/minecraft/options/ScriptTitleDisplayOptions.h index 6dd95d0729..04cefcb2eb 100644 --- a/src/mc/scripting/modules/minecraft/options/ScriptTitleDisplayOptions.h +++ b/src/mc/scripting/modules/minecraft/options/ScriptTitleDisplayOptions.h @@ -54,7 +54,7 @@ struct ScriptTitleDisplayOptions { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/scripting/modules/minecraft/options/ScriptWorldSoundOptions.h b/src/mc/scripting/modules/minecraft/options/ScriptWorldSoundOptions.h index 6672b43191..d17b960a52 100644 --- a/src/mc/scripting/modules/minecraft/options/ScriptWorldSoundOptions.h +++ b/src/mc/scripting/modules/minecraft/options/ScriptWorldSoundOptions.h @@ -34,7 +34,7 @@ struct ScriptWorldSoundOptions { MCAPI float getPitch() const; - MCAPI float getVolume() const; + MCFOLD float getVolume() const; MCAPI ::std::optional<::Scripting::Error> validate() const; // NOLINTEND diff --git a/src/mc/scripting/modules/minecraft/persistence/ScriptDynamicPropertiesDefinition.h b/src/mc/scripting/modules/minecraft/persistence/ScriptDynamicPropertiesDefinition.h index 63d8996a6c..1a1b7e2bc8 100644 --- a/src/mc/scripting/modules/minecraft/persistence/ScriptDynamicPropertiesDefinition.h +++ b/src/mc/scripting/modules/minecraft/persistence/ScriptDynamicPropertiesDefinition.h @@ -52,7 +52,7 @@ class ScriptDynamicPropertiesDefinition ::Scripting::StrongTypedObjectHandle<::ScriptModuleMinecraft::ScriptDynamicPropertiesDefinition>> defineVector3(::std::string const& identifier, ::std::optional<::Vec3> defaultValue); - MCAPI ::DynamicPropertiesDefinition const& getDefinition() const; + MCFOLD ::DynamicPropertiesDefinition const& getDefinition() const; MCAPI ::ScriptModuleMinecraft::ScriptDynamicPropertiesDefinition& operator=(::ScriptModuleMinecraft::ScriptDynamicPropertiesDefinition&&); diff --git a/src/mc/scripting/modules/minecraft/persistence/ScriptPropertyRegistry.h b/src/mc/scripting/modules/minecraft/persistence/ScriptPropertyRegistry.h index d6d75ede99..1f034ee2a2 100644 --- a/src/mc/scripting/modules/minecraft/persistence/ScriptPropertyRegistry.h +++ b/src/mc/scripting/modules/minecraft/persistence/ScriptPropertyRegistry.h @@ -54,7 +54,7 @@ class ScriptPropertyRegistry { public: // constructor thunks // NOLINTBEGIN - MCAPI void* $ctor(::ServerLevel& level); + MCFOLD void* $ctor(::ServerLevel& level); // NOLINTEND }; diff --git a/src/mc/scripting/modules/minecraft/player/ScriptPlayerInputPermissions.h b/src/mc/scripting/modules/minecraft/player/ScriptPlayerInputPermissions.h index 37b8cac1eb..098359800d 100644 --- a/src/mc/scripting/modules/minecraft/player/ScriptPlayerInputPermissions.h +++ b/src/mc/scripting/modules/minecraft/player/ScriptPlayerInputPermissions.h @@ -40,7 +40,7 @@ class ScriptPlayerInputPermissions { MCAPI ::Scripting::Result _setPermissionCategoryV2(::ClientInputLockCategory category, bool isEnabled); - MCAPI ::ScriptModuleMinecraft::ScriptPlayerInputPermissions& + MCFOLD ::ScriptModuleMinecraft::ScriptPlayerInputPermissions& operator=(::ScriptModuleMinecraft::ScriptPlayerInputPermissions&&); // NOLINTEND diff --git a/src/mc/scripting/modules/minecraft/player/ScriptPlayerIterator.h b/src/mc/scripting/modules/minecraft/player/ScriptPlayerIterator.h index 42aae59474..94daaf113f 100644 --- a/src/mc/scripting/modules/minecraft/player/ScriptPlayerIterator.h +++ b/src/mc/scripting/modules/minecraft/player/ScriptPlayerIterator.h @@ -34,7 +34,7 @@ class ScriptPlayerIterator : public ::ScriptModuleMinecraft::ScriptVectorIterato public: // constructor thunks // NOLINTBEGIN - MCAPI void* + MCFOLD void* $ctor(::std::vector<::Scripting::StrongTypedObjectHandle<::ScriptModuleMinecraft::ScriptPlayer>>&& scriptPlayers); // NOLINTEND }; diff --git a/src/mc/scripting/modules/minecraft/scoreboard/ScriptScoreboardObjectiveDisplayOptions.h b/src/mc/scripting/modules/minecraft/scoreboard/ScriptScoreboardObjectiveDisplayOptions.h index b32d1e477c..7a8e079893 100644 --- a/src/mc/scripting/modules/minecraft/scoreboard/ScriptScoreboardObjectiveDisplayOptions.h +++ b/src/mc/scripting/modules/minecraft/scoreboard/ScriptScoreboardObjectiveDisplayOptions.h @@ -37,7 +37,7 @@ class ScriptScoreboardObjectiveDisplayOptions { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/scripting/modules/minecraft/scoreboard/ScriptScoreboardScoreInfo.h b/src/mc/scripting/modules/minecraft/scoreboard/ScriptScoreboardScoreInfo.h index 9cbc85450a..d981da05a4 100644 --- a/src/mc/scripting/modules/minecraft/scoreboard/ScriptScoreboardScoreInfo.h +++ b/src/mc/scripting/modules/minecraft/scoreboard/ScriptScoreboardScoreInfo.h @@ -43,7 +43,7 @@ class ScriptScoreboardScoreInfo { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/scripting/modules/minecraft/screendisplay/ScriptScreenDisplay.h b/src/mc/scripting/modules/minecraft/screendisplay/ScriptScreenDisplay.h index 0ab69ab3b4..1e0ee857f2 100644 --- a/src/mc/scripting/modules/minecraft/screendisplay/ScriptScreenDisplay.h +++ b/src/mc/scripting/modules/minecraft/screendisplay/ScriptScreenDisplay.h @@ -94,9 +94,9 @@ struct ScriptScreenDisplay { public: // constructor thunks // NOLINTBEGIN - MCAPI void* $ctor(::Player const& player); + MCFOLD void* $ctor(::Player const& player); - MCAPI void* $ctor(::WeakEntityRef const& playerRef); + MCFOLD void* $ctor(::WeakEntityRef const& playerRef); // NOLINTEND }; diff --git a/src/mc/scripting/modules/minecraft/structure/ScriptInvalidStructureError.h b/src/mc/scripting/modules/minecraft/structure/ScriptInvalidStructureError.h index 4ad5b29ceb..04397047fb 100644 --- a/src/mc/scripting/modules/minecraft/structure/ScriptInvalidStructureError.h +++ b/src/mc/scripting/modules/minecraft/structure/ScriptInvalidStructureError.h @@ -32,7 +32,7 @@ struct ScriptInvalidStructureError : public ::Scripting::Error { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/scripting/modules/minecraft/structure/ScriptPlaceJigsawError.h b/src/mc/scripting/modules/minecraft/structure/ScriptPlaceJigsawError.h index 203c626d9a..17f4ea0881 100644 --- a/src/mc/scripting/modules/minecraft/structure/ScriptPlaceJigsawError.h +++ b/src/mc/scripting/modules/minecraft/structure/ScriptPlaceJigsawError.h @@ -32,7 +32,7 @@ struct ScriptPlaceJigsawError : public ::Scripting::Error { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/scripting/modules/minecraft/structure/ScriptStructureTemplate.h b/src/mc/scripting/modules/minecraft/structure/ScriptStructureTemplate.h index 59d461987d..e86e51c401 100644 --- a/src/mc/scripting/modules/minecraft/structure/ScriptStructureTemplate.h +++ b/src/mc/scripting/modules/minecraft/structure/ScriptStructureTemplate.h @@ -66,7 +66,7 @@ class ScriptStructureTemplate { ::Scripting::InvalidArgumentError> getBlockPermutation(::Vec3 const& location) const; - MCAPI ::std::string const& getId() const; + MCFOLD ::std::string const& getId() const; MCAPI ::Scripting::Result<::Vec3, ::ScriptModuleMinecraft::ScriptInvalidStructureError> getSize() const; diff --git a/src/mc/scripting/modules/minecraft_ui/IControl.h b/src/mc/scripting/modules/minecraft_ui/IControl.h index 37129fa6fa..68892e5d21 100644 --- a/src/mc/scripting/modules/minecraft_ui/IControl.h +++ b/src/mc/scripting/modules/minecraft_ui/IControl.h @@ -28,7 +28,7 @@ class IControl { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND public: diff --git a/src/mc/scripting/modules/minecraft_ui/ScriptFormRejectError.h b/src/mc/scripting/modules/minecraft_ui/ScriptFormRejectError.h index 8bfac36127..f878dcfa0e 100644 --- a/src/mc/scripting/modules/minecraft_ui/ScriptFormRejectError.h +++ b/src/mc/scripting/modules/minecraft_ui/ScriptFormRejectError.h @@ -45,7 +45,7 @@ class ScriptFormRejectError : public ::Scripting::Error { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/scripting/modules/minecraft_ui/ScriptModalFormData.h b/src/mc/scripting/modules/minecraft_ui/ScriptModalFormData.h index c333c254a2..84e1d17932 100644 --- a/src/mc/scripting/modules/minecraft_ui/ScriptModalFormData.h +++ b/src/mc/scripting/modules/minecraft_ui/ScriptModalFormData.h @@ -57,7 +57,7 @@ class ScriptModalFormData public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/scripting/modules/minecraft_ui/ScriptUIManager.h b/src/mc/scripting/modules/minecraft_ui/ScriptUIManager.h index 3755cdaacf..03f1568678 100644 --- a/src/mc/scripting/modules/minecraft_ui/ScriptUIManager.h +++ b/src/mc/scripting/modules/minecraft_ui/ScriptUIManager.h @@ -33,13 +33,13 @@ class ScriptUIManager { public: // constructor thunks // NOLINTBEGIN - MCAPI void* $ctor(); + MCFOLD void* $ctor(); // NOLINTEND public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/scripting/modules/server_admin/ScriptServerSecrets.h b/src/mc/scripting/modules/server_admin/ScriptServerSecrets.h index 21988b295e..0c49535d5f 100644 --- a/src/mc/scripting/modules/server_admin/ScriptServerSecrets.h +++ b/src/mc/scripting/modules/server_admin/ScriptServerSecrets.h @@ -53,7 +53,7 @@ class ScriptServerSecrets { public: // constructor thunks // NOLINTBEGIN - MCAPI void* $ctor( + MCFOLD void* $ctor( ::Bedrock::NonOwnerPointer<::ScriptPackConfigurationManager> packConfigManager, ::Scripting::ContextConfig const& contextConfig ); @@ -62,7 +62,7 @@ class ScriptServerSecrets { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/scripting/modules/server_admin/ScriptServerVariables.h b/src/mc/scripting/modules/server_admin/ScriptServerVariables.h index 2b021bedce..7f6f6c3de3 100644 --- a/src/mc/scripting/modules/server_admin/ScriptServerVariables.h +++ b/src/mc/scripting/modules/server_admin/ScriptServerVariables.h @@ -53,7 +53,7 @@ class ScriptServerVariables { public: // constructor thunks // NOLINTBEGIN - MCAPI void* $ctor( + MCFOLD void* $ctor( ::Bedrock::NonOwnerPointer<::ScriptPackConfigurationManager> packConfigManager, ::Scripting::ContextConfig const& contextConfig ); @@ -62,7 +62,7 @@ class ScriptServerVariables { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/server/AllowList.h b/src/mc/server/AllowList.h index 5762bb3fe2..0fd5ced5c4 100644 --- a/src/mc/server/AllowList.h +++ b/src/mc/server/AllowList.h @@ -80,7 +80,7 @@ class AllowList : public ::IJsonSerializable { // NOLINTBEGIN MCAPI bool addEntry(::AllowListEntry const& entry); - MCAPI ::std::vector<::AllowListEntry> const& getEntries() const; + MCFOLD ::std::vector<::AllowListEntry> const& getEntries() const; MCAPI bool isAllowed(::mce::UUID const& uuid, ::std::string const& xuid) const; diff --git a/src/mc/server/AllowListFile.h b/src/mc/server/AllowListFile.h index e5d8f778f7..343f1dd19e 100644 --- a/src/mc/server/AllowListFile.h +++ b/src/mc/server/AllowListFile.h @@ -27,7 +27,7 @@ class AllowListFile { public: // member functions // NOLINTBEGIN - MCAPI ::AllowList& getAllowList() const; + MCFOLD ::AllowList& getAllowList() const; MCAPI ::FileReadResult reload(); @@ -45,6 +45,6 @@ class AllowListFile { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/server/AsynchronousIPResolver.h b/src/mc/server/AsynchronousIPResolver.h index c232a03fc9..6b165c6bf7 100644 --- a/src/mc/server/AsynchronousIPResolver.h +++ b/src/mc/server/AsynchronousIPResolver.h @@ -47,7 +47,7 @@ class AsynchronousIPResolver { MCAPI ::std::string getIp() const; - MCAPI ::std::string const& getOriginalUrl() const; + MCFOLD ::std::string const& getOriginalUrl() const; MCAPI bool isDone() const; // NOLINTEND diff --git a/src/mc/server/DedicatedServer.h b/src/mc/server/DedicatedServer.h index 73832f052e..931dfba422 100644 --- a/src/mc/server/DedicatedServer.h +++ b/src/mc/server/DedicatedServer.h @@ -153,11 +153,11 @@ class DedicatedServer : public ::IMinecraftApp, public ::Bedrock::AppIsland { MCAPI bool $isEduMode() const; - MCAPI bool $isDedicatedServer() const; + MCFOLD bool $isDedicatedServer() const; - MCAPI void $onNetworkMaxPlayersChanged(uint newMaxPlayerCount); + MCFOLD void $onNetworkMaxPlayersChanged(uint newMaxPlayerCount); - MCAPI ::IGameModuleShared& $getGameModuleShared(); + MCFOLD ::IGameModuleShared& $getGameModuleShared(); MCAPI void $requestServerShutdown(::std::string const& message); // NOLINTEND diff --git a/src/mc/server/IJsonSerializable.h b/src/mc/server/IJsonSerializable.h index bd22babfcd..d524c63597 100644 --- a/src/mc/server/IJsonSerializable.h +++ b/src/mc/server/IJsonSerializable.h @@ -24,7 +24,7 @@ class IJsonSerializable { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND public: diff --git a/src/mc/server/PermissionsFile.h b/src/mc/server/PermissionsFile.h index 523e5cb0eb..a3a462e394 100644 --- a/src/mc/server/PermissionsFile.h +++ b/src/mc/server/PermissionsFile.h @@ -40,7 +40,7 @@ class PermissionsFile { ::CommandPermissionLevel opCommandPermissionLevel ); - MCAPI ::std::unordered_map<::std::string, ::PlayerPermissionLevel> const& getPermissions() const; + MCFOLD ::std::unordered_map<::std::string, ::PlayerPermissionLevel> const& getPermissions() const; MCAPI ::std::vector<::std::string> getXUIDsByPermission(::PlayerPermissionLevel permission) const; diff --git a/src/mc/server/PropertiesSettings.h b/src/mc/server/PropertiesSettings.h index efc3bfa90c..9e0302a829 100644 --- a/src/mc/server/PropertiesSettings.h +++ b/src/mc/server/PropertiesSettings.h @@ -109,7 +109,7 @@ class PropertiesSettings { MCAPI bool forceGamemode() const; - MCAPI bool getAllowSubclientLogin() const; + MCFOLD bool getAllowSubclientLogin() const; MCAPI bool getAllowUnconnectedPings() const; @@ -119,17 +119,17 @@ class PropertiesSettings { MCAPI ::std::unordered_map<::std::string, ::std::string> getChangedValues() const; - MCAPI ::ChatRestrictionLevel getChatRestrictionLevel() const; + MCFOLD ::ChatRestrictionLevel getChatRestrictionLevel() const; MCAPI float getClientThrottleScalar() const; - MCAPI int getClientThrottleThreshold() const; + MCFOLD int getClientThrottleThreshold() const; MCAPI ::PacketCompressionAlgorithm getCompressionAlgorithm() const; MCAPI ushort getCompressionThresholdBytesize() const; - MCAPI ::LogLevel getContentLogLevel() const; + MCFOLD ::LogLevel getContentLogLevel() const; MCAPI ::std::string const& getCustomProperty(::std::string const& propertyName) const; @@ -137,51 +137,51 @@ class PropertiesSettings { MCAPI ::Difficulty getDifficulty() const; - MCAPI ::std::vector<::std::string> const& getExtraTrustedKeys() const; + MCFOLD ::std::vector<::std::string> const& getExtraTrustedKeys() const; MCAPI ::GameType getGameMode() const; - MCAPI ::std::string const& getLanguage() const; + MCFOLD ::std::string const& getLanguage() const; - MCAPI ::std::string const& getLevelName() const; + MCFOLD ::std::string const& getLevelName() const; - MCAPI ::std::string const& getLevelSeed() const; + MCFOLD ::std::string const& getLevelSeed() const; - MCAPI ::std::string const& getLevelType() const; + MCFOLD ::std::string const& getLevelType() const; MCAPI ::std::chrono::minutes getMaxPlayerIdleTime() const; - MCAPI int getMaxPlayers() const; + MCFOLD int getMaxPlayers() const; MCAPI uint getMaxThreads() const; MCAPI int getMaxViewDistanceChunks() const; - MCAPI ::std::string const& getMotd() const; + MCFOLD ::std::string const& getMotd() const; MCAPI ::NetworkPermissions const& getNetworkPermissions() const; MCAPI ::CommandPermissionLevel getOpPermissionLevel() const; - MCAPI ::PlayerMovementSettings const& getPlayerMovementSettings() const; + MCFOLD ::PlayerMovementSettings const& getPlayerMovementSettings() const; MCAPI ::NetworkAddress getRemoteServerCommunicationEndpoint() const; - MCAPI ::ScriptSettings const& getScriptSettings() const; + MCFOLD ::ScriptSettings const& getScriptSettings() const; MCAPI ::std::optional getServerBuildRatioOverride() const; - MCAPI ::std::string const& getServerId() const; + MCFOLD ::std::string const& getServerId() const; MCAPI ushort getServerPort() const; MCAPI ushort getServerPortv6() const; - MCAPI ::std::bitset<3> const& getServerTextSettings() const; + MCFOLD ::std::bitset<3> const& getServerTextSettings() const; MCAPI int getServerTickRange() const; - MCAPI ::std::string const& getServerType() const; + MCFOLD ::std::string const& getServerType() const; MCAPI int getServerWakeupFrequency() const; @@ -191,7 +191,7 @@ class PropertiesSettings { MCAPI bool isContentLogConsoleOutputEnabled() const; - MCAPI bool isContentLogFileEnabled() const; + MCFOLD bool isContentLogFileEnabled() const; MCAPI bool isEmoteChatMuted() const; @@ -205,13 +205,13 @@ class PropertiesSettings { MCAPI bool isRakNetJoinFloodProtectionEnabled() const; - MCAPI bool isServerVisibleToLanDiscovery() const; + MCFOLD bool isServerVisibleToLanDiscovery() const; MCAPI bool texturePackRequired() const; MCAPI bool useAllowList() const; - MCAPI bool useMsaGamertagsOnly() const; + MCFOLD bool useMsaGamertagsOnly() const; MCAPI bool useOnlineAuthentication() const; diff --git a/src/mc/server/ServerGameplayUserManagerProxy.h b/src/mc/server/ServerGameplayUserManagerProxy.h index c45311e2b4..e560ba61bd 100644 --- a/src/mc/server/ServerGameplayUserManagerProxy.h +++ b/src/mc/server/ServerGameplayUserManagerProxy.h @@ -38,7 +38,7 @@ class ServerGameplayUserManagerProxy : public ::GameplayUserManagerProxy { MCAPI ::std::optional<::std::string> $validatePlayerName(::std::string const& playerName, ::GameplayUserManager const& gameplayUserManager) const; - MCAPI bool $shouldGeneratePlayerIndex() const; + MCFOLD bool $shouldGeneratePlayerIndex() const; // NOLINTEND public: diff --git a/src/mc/server/ServerInstance.h b/src/mc/server/ServerInstance.h index f46442e9be..14d6fbf9fd 100644 --- a/src/mc/server/ServerInstance.h +++ b/src/mc/server/ServerInstance.h @@ -306,15 +306,15 @@ class ServerInstance : public ::Bedrock::EnableNonOwnerReferences, MCAPI void $onCriticalScriptError(char const* clientDisconnectMessage, char const* logMessage); - MCAPI void $onGameModeChanged(); + MCFOLD void $onGameModeChanged(); - MCAPI void $onTick(int nTick, int maxTick); + MCFOLD void $onTick(int nTick, int maxTick); - MCAPI void $onInternetUpdate(); + MCFOLD void $onInternetUpdate(); - MCAPI void $onGameSessionReset(); + MCFOLD void $onGameSessionReset(); - MCAPI void $onLevelExit(); + MCFOLD void $onLevelExit(); MCAPI void $onRequestResourceReload(); @@ -328,7 +328,7 @@ class ServerInstance : public ::Bedrock::EnableNonOwnerReferences, MCAPI void $onAppResumed(); - MCAPI void $updateScreens(); + MCFOLD void $updateScreens(); // NOLINTEND public: diff --git a/src/mc/server/ServerLevel.h b/src/mc/server/ServerLevel.h index ee8e1817d3..329470a298 100644 --- a/src/mc/server/ServerLevel.h +++ b/src/mc/server/ServerLevel.h @@ -230,7 +230,7 @@ class ServerLevel : public ::Level { MCAPI ::MobEvents const& getMobEvents() const; - MCAPI ::MobEvents& getMobEvents(); + MCFOLD ::MobEvents& getMobEvents(); MCAPI ::DynamicProperties& getOrAddDynamicProperties(); @@ -282,13 +282,13 @@ class ServerLevel : public ::Level { ::std::string const* levelId ); - MCAPI ::PlayerSleepManager const& $getPlayerSleepManager() const; + MCFOLD ::PlayerSleepManager const& $getPlayerSleepManager() const; - MCAPI ::PlayerSleepManager& $getPlayerSleepManager(); + MCFOLD ::PlayerSleepManager& $getPlayerSleepManager(); - MCAPI ::Bedrock::NonOwnerPointer<::ServerPlayerSleepManager> $getServerPlayerSleepManager(); + MCFOLD ::Bedrock::NonOwnerPointer<::ServerPlayerSleepManager> $getServerPlayerSleepManager(); - MCAPI ::Bedrock::NonOwnerPointer<::ServerPlayerSleepManager const> $getServerPlayerSleepManager() const; + MCFOLD ::Bedrock::NonOwnerPointer<::ServerPlayerSleepManager const> $getServerPlayerSleepManager() const; MCAPI void $setCommandsEnabled(bool commandsEnabled); @@ -312,13 +312,13 @@ class ServerLevel : public ::Level { MCAPI void $loadFunctionManager(); - MCAPI ::Random& $getThreadRandom() const; + MCFOLD ::Random& $getThreadRandom() const; MCAPI ::PositionTrackingDB::PositionTrackingDBServer* $getPositionTrackerDBServer() const; - MCAPI ::Bedrock::NonOwnerPointer<::ChunkGenerationManager> $getChunkGenerationManager(); + MCFOLD ::Bedrock::NonOwnerPointer<::ChunkGenerationManager> $getChunkGenerationManager(); - MCAPI ::Bedrock::NonOwnerPointer<::ChunkGenerationManager const> $getChunkGenerationManager() const; + MCFOLD ::Bedrock::NonOwnerPointer<::ChunkGenerationManager const> $getChunkGenerationManager() const; MCAPI ::Bedrock::NotNullNonOwnerPtr<::MapDataManager> $getMapDataManager(); diff --git a/src/mc/server/ServerMapDataManager.h b/src/mc/server/ServerMapDataManager.h index 2e0e567838..1f9d0db4fa 100644 --- a/src/mc/server/ServerMapDataManager.h +++ b/src/mc/server/ServerMapDataManager.h @@ -69,11 +69,11 @@ class ServerMapDataManager : public ::MapDataManager, public ::IServerMapDataMan // NOLINTBEGIN MCAPI void $registerOnGameplayUserAddedSubscription(::IGameplayUserManagerConnector& gameplayUserManagerConnector); - MCAPI ::Bedrock::PubSub::Connector& $getOnCreateMapSavedDataConnector(); + MCFOLD ::Bedrock::PubSub::Connector& $getOnCreateMapSavedDataConnector(); MCAPI ::MapItemSavedData& $createMapSavedData(::ActorUniqueID const& uuid); - MCAPI void $requestMapInfo(::ActorUniqueID const uuid, bool forceUpdate); + MCFOLD void $requestMapInfo(::ActorUniqueID const uuid, bool forceUpdate); MCAPI void $_copyAndLockMap(::ActorUniqueID const originalMapUuid, ::ActorUniqueID const newMapUuid); // NOLINTEND diff --git a/src/mc/server/ServerMetrics.h b/src/mc/server/ServerMetrics.h index 0f1468f3f0..7dfe5758c3 100644 --- a/src/mc/server/ServerMetrics.h +++ b/src/mc/server/ServerMetrics.h @@ -27,7 +27,7 @@ class ServerMetrics { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND public: diff --git a/src/mc/server/ServerPlayer.h b/src/mc/server/ServerPlayer.h index bf2ce678a5..f5494e235d 100644 --- a/src/mc/server/ServerPlayer.h +++ b/src/mc/server/ServerPlayer.h @@ -407,7 +407,7 @@ class ServerPlayer : public ::Player { MCAPI ::std::array<::HudVisibility, 13> const& getHudVisibilityState() const; - MCAPI ::ItemStackNetManagerServer& getItemStackNetManagerServer(); + MCFOLD ::ItemStackNetManagerServer& getItemStackNetManagerServer(); MCAPI int getMaxClientViewDistance() const; @@ -529,7 +529,7 @@ class ServerPlayer : public ::Player { MCAPI void $moveSpawnView(::Vec3 const& spawnPosition, ::DimensionType dimensionType); - MCAPI void $frameUpdate(::FrameUpdateContextBase&); + MCFOLD void $frameUpdate(::FrameUpdateContextBase&); MCAPI bool $isValidTarget(::Actor* attacker) const; @@ -577,9 +577,9 @@ class ServerPlayer : public ::Player { MCAPI void $openTrading(::ActorUniqueID const& uniqueID, bool useNewScreen); - MCAPI void $openPortfolio(); + MCFOLD void $openPortfolio(); - MCAPI void $openNpcInteractScreen(::std::shared_ptr<::INpcDialogueData> npc); + MCFOLD void $openNpcInteractScreen(::std::shared_ptr<::INpcDialogueData> npc); MCAPI void $openInventory(); diff --git a/src/mc/server/ServerPlayerSleepManager.h b/src/mc/server/ServerPlayerSleepManager.h index 81c6ad970a..304aae05fe 100644 --- a/src/mc/server/ServerPlayerSleepManager.h +++ b/src/mc/server/ServerPlayerSleepManager.h @@ -69,7 +69,7 @@ class ServerPlayerSleepManager : public ::PlayerSleepManager, public ::IServerPl MCAPI void _broadcastSleepingPlayerList(::PlayerSleepStatus const& playerSleepStatus); - MCAPI void _onPlayerDeath(); + MCFOLD void _onPlayerDeath(); MCAPI bool enoughPlayersDeepSleeping() const; @@ -100,9 +100,9 @@ class ServerPlayerSleepManager : public ::PlayerSleepManager, public ::IServerPl // NOLINTBEGIN MCAPI void $updateSleepingPlayerList(); - MCAPI ::Bedrock::PubSub::Connector& $getPlayerWakeUpConnector(); + MCFOLD ::Bedrock::PubSub::Connector& $getPlayerWakeUpConnector(); - MCAPI ::Bedrock::PubSub::Connector& $getOnWakeUpAllPlayersConnector(); + MCFOLD ::Bedrock::PubSub::Connector& $getOnWakeUpAllPlayersConnector(); // NOLINTEND public: diff --git a/src/mc/server/ServerTextSettings.h b/src/mc/server/ServerTextSettings.h index d8d3f91747..fd770bc89e 100644 --- a/src/mc/server/ServerTextSettings.h +++ b/src/mc/server/ServerTextSettings.h @@ -30,7 +30,7 @@ class ServerTextSettings : public ::Bedrock::EnableNonOwnerReferences { // NOLINTBEGIN MCAPI explicit ServerTextSettings(::std::bitset<3> const& settings); - MCAPI ::std::bitset<3> const& getEnabledServerTextEvents() const; + MCFOLD ::std::bitset<3> const& getEnabledServerTextEvents() const; // NOLINTEND public: diff --git a/src/mc/server/SimulatedPlayer.h b/src/mc/server/SimulatedPlayer.h index cd2f166af1..4bad1e8024 100644 --- a/src/mc/server/SimulatedPlayer.h +++ b/src/mc/server/SimulatedPlayer.h @@ -270,7 +270,7 @@ class SimulatedPlayer : public ::ServerPlayer { MCAPI void $aiStep(); - MCAPI bool $isSimulated() const; + MCFOLD bool $isSimulated() const; MCAPI ::std::string $getXuid() const; @@ -279,11 +279,11 @@ class SimulatedPlayer : public ::ServerPlayer { MCAPI void $teleportTo(::Vec3 const& pos, bool shouldStopRiding, int cause, int sourceEntityType, bool keepVelocity); - MCAPI int $_getSpawnChunkLimit() const; + MCFOLD int $_getSpawnChunkLimit() const; MCAPI ::std::shared_ptr<::ChunkViewSource> $_createChunkSource(::ChunkSource& mainChunkSource); - MCAPI void $_updateChunkPublisherView(::Vec3 const& position, float minDistance); + MCFOLD void $_updateChunkPublisherView(::Vec3 const& position, float minDistance); // NOLINTEND public: diff --git a/src/mc/server/TestConfig.h b/src/mc/server/TestConfig.h index 26e0573ec4..a9935e7985 100644 --- a/src/mc/server/TestConfig.h +++ b/src/mc/server/TestConfig.h @@ -38,15 +38,15 @@ class TestConfig { MCAPI ::std::string _readFile(::std::string const& fileName) const; - MCAPI ::cereal::ReflectionCtx const& context() const; + MCFOLD ::cereal::ReflectionCtx const& context() const; - MCAPI bool isLoaded() const; + MCFOLD bool isLoaded() const; MCAPI ::TestConfig& operator=(::TestConfig const&); MCAPI ::TestConfig& operator=(::TestConfig&&); - MCAPI void setLoaded(); + MCFOLD void setLoaded(); MCAPI ~TestConfig(); // NOLINTEND diff --git a/src/mc/server/blob_cache/ActiveTransfersManager.h b/src/mc/server/blob_cache/ActiveTransfersManager.h index c7e7ece82c..12813a95aa 100644 --- a/src/mc/server/blob_cache/ActiveTransfersManager.h +++ b/src/mc/server/blob_cache/ActiveTransfersManager.h @@ -77,7 +77,7 @@ class ActiveTransfersManager : public ::Bedrock::EnableNonOwnerReferences { // NOLINTBEGIN MCAPI ActiveTransfersManager(); - MCAPI void collectTrackingData() const; + MCFOLD void collectTrackingData() const; MCAPI ::std::shared_ptr<::ClientBlobCache::Server::Blob> dropBlobFor(::NetworkIdentifier const& client, uint64 id); diff --git a/src/mc/server/commands/ActorCommandOrigin.h b/src/mc/server/commands/ActorCommandOrigin.h index d6f009adf5..f596aece0d 100644 --- a/src/mc/server/commands/ActorCommandOrigin.h +++ b/src/mc/server/commands/ActorCommandOrigin.h @@ -97,7 +97,7 @@ class ActorCommandOrigin : public ::CommandOrigin { public: // virtual function thunks // NOLINTBEGIN - MCAPI ::std::string const& $getRequestId() const; + MCFOLD ::std::string const& $getRequestId() const; MCAPI ::std::string $getName() const; @@ -107,7 +107,7 @@ class ActorCommandOrigin : public ::CommandOrigin { MCAPI ::std::optional<::Vec2> $getRotation() const; - MCAPI ::Level* $getLevel() const; + MCFOLD ::Level* $getLevel() const; MCAPI ::Dimension* $getDimension() const; @@ -117,13 +117,13 @@ class ActorCommandOrigin : public ::CommandOrigin { MCAPI ::std::unique_ptr<::CommandOrigin> $clone() const; - MCAPI bool $isSelectorExpansionAllowed() const; + MCFOLD bool $isSelectorExpansionAllowed() const; - MCAPI ::CommandOriginType $getOriginType() const; + MCFOLD ::CommandOriginType $getOriginType() const; MCAPI ::CompoundTag $serialize() const; - MCAPI bool $isValid() const; + MCFOLD bool $isValid() const; // NOLINTEND public: diff --git a/src/mc/server/commands/ActorServerCommandOrigin.h b/src/mc/server/commands/ActorServerCommandOrigin.h index 8c05839237..fa5629f97c 100644 --- a/src/mc/server/commands/ActorServerCommandOrigin.h +++ b/src/mc/server/commands/ActorServerCommandOrigin.h @@ -52,7 +52,7 @@ class ActorServerCommandOrigin : public ::ActorCommandOrigin { public: // member functions // NOLINTBEGIN - MCAPI ::ActorUniqueID getTargetOther() const; + MCFOLD ::ActorUniqueID getTargetOther() const; MCAPI void setTargetOther(::ActorUniqueID targetOther); // NOLINTEND @@ -66,13 +66,13 @@ class ActorServerCommandOrigin : public ::ActorCommandOrigin { public: // virtual function thunks // NOLINTBEGIN - MCAPI bool $isSelectorExpansionAllowed() const; + MCFOLD bool $isSelectorExpansionAllowed() const; MCAPI ::CommandPermissionLevel $getPermissionsLevel() const; MCAPI ::std::unique_ptr<::CommandOrigin> $clone() const; - MCAPI ::CommandOriginType $getOriginType() const; + MCFOLD ::CommandOriginType $getOriginType() const; MCAPI ::CompoundTag $serialize() const; // NOLINTEND diff --git a/src/mc/server/commands/AutomationPlayerCommandOrigin.h b/src/mc/server/commands/AutomationPlayerCommandOrigin.h index 0c62424230..78ad2f3d1d 100644 --- a/src/mc/server/commands/AutomationPlayerCommandOrigin.h +++ b/src/mc/server/commands/AutomationPlayerCommandOrigin.h @@ -97,19 +97,19 @@ class AutomationPlayerCommandOrigin : public ::PlayerCommandOrigin { public: // virtual function thunks // NOLINTBEGIN - MCAPI ::std::string $getName() const; + MCFOLD ::std::string $getName() const; - MCAPI ::std::string const& $getRequestId() const; + MCFOLD ::std::string const& $getRequestId() const; MCAPI ::std::unique_ptr<::CommandOrigin> $clone() const; - MCAPI ::CommandOriginType $getOriginType() const; + MCFOLD ::CommandOriginType $getOriginType() const; MCAPI ::CommandOriginData $toCommandOriginData() const; - MCAPI ::NetworkIdentifier const& $getSourceId() const; + MCFOLD ::NetworkIdentifier const& $getSourceId() const; - MCAPI ::CompoundTag $serialize() const; + MCFOLD ::CompoundTag $serialize() const; MCAPI bool $isValid() const; // NOLINTEND diff --git a/src/mc/server/commands/BlockCommandOrigin.h b/src/mc/server/commands/BlockCommandOrigin.h index c103eb87fe..3fa0f7d82a 100644 --- a/src/mc/server/commands/BlockCommandOrigin.h +++ b/src/mc/server/commands/BlockCommandOrigin.h @@ -112,41 +112,41 @@ class BlockCommandOrigin : public ::CommandOrigin { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND public: // virtual function thunks // NOLINTBEGIN - MCAPI ::std::string const& $getRequestId() const; + MCFOLD ::std::string const& $getRequestId() const; - MCAPI ::std::string $getName() const; + MCFOLD ::std::string $getName() const; - MCAPI ::BlockPos $getBlockPosition() const; + MCFOLD ::BlockPos $getBlockPosition() const; MCAPI ::Vec3 $getWorldPosition() const; MCAPI ::std::optional<::Vec2> $getRotation() const; - MCAPI ::Level* $getLevel() const; + MCFOLD ::Level* $getLevel() const; MCAPI ::Dimension* $getDimension() const; - MCAPI ::Actor* $getEntity() const; + MCFOLD ::Actor* $getEntity() const; - MCAPI ::CommandPermissionLevel $getPermissionsLevel() const; + MCFOLD ::CommandPermissionLevel $getPermissionsLevel() const; MCAPI ::std::unique_ptr<::CommandOrigin> $clone() const; - MCAPI bool $canUseCommandsWithoutCheatsEnabled() const; + MCFOLD bool $canUseCommandsWithoutCheatsEnabled() const; - MCAPI bool $isSelectorExpansionAllowed() const; + MCFOLD bool $isSelectorExpansionAllowed() const; - MCAPI ::CommandOriginType $getOriginType() const; + MCFOLD ::CommandOriginType $getOriginType() const; MCAPI ::CompoundTag $serialize() const; - MCAPI bool $isValid() const; + MCFOLD bool $isValid() const; MCAPI ::BaseCommandBlock* $_getBaseCommandBlock(::BlockSource& region) const; diff --git a/src/mc/server/commands/BlockStateCommandParam.h b/src/mc/server/commands/BlockStateCommandParam.h index d508f362ce..3bafc71fc1 100644 --- a/src/mc/server/commands/BlockStateCommandParam.h +++ b/src/mc/server/commands/BlockStateCommandParam.h @@ -56,6 +56,6 @@ class BlockStateCommandParam { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/server/commands/ClientAutomationCommandOrigin.h b/src/mc/server/commands/ClientAutomationCommandOrigin.h index 5fd2ae0403..2887cbe2b6 100644 --- a/src/mc/server/commands/ClientAutomationCommandOrigin.h +++ b/src/mc/server/commands/ClientAutomationCommandOrigin.h @@ -108,37 +108,37 @@ class ClientAutomationCommandOrigin : public ::CommandOrigin { public: // virtual function thunks // NOLINTBEGIN - MCAPI ::std::string const& $getRequestId() const; + MCFOLD ::std::string const& $getRequestId() const; - MCAPI ::std::string $getName() const; + MCFOLD ::std::string $getName() const; - MCAPI ::BlockPos $getBlockPosition() const; + MCFOLD ::BlockPos $getBlockPosition() const; - MCAPI ::Vec3 $getWorldPosition() const; + MCFOLD ::Vec3 $getWorldPosition() const; - MCAPI ::std::optional<::Vec2> $getRotation() const; + MCFOLD ::std::optional<::Vec2> $getRotation() const; - MCAPI ::Level* $getLevel() const; + MCFOLD ::Level* $getLevel() const; - MCAPI ::Dimension* $getDimension() const; + MCFOLD ::Dimension* $getDimension() const; - MCAPI ::Actor* $getEntity() const; + MCFOLD ::Actor* $getEntity() const; - MCAPI ::CommandPermissionLevel $getPermissionsLevel() const; + MCFOLD ::CommandPermissionLevel $getPermissionsLevel() const; MCAPI ::std::unique_ptr<::CommandOrigin> $clone() const; - MCAPI bool $canUseCommandsWithoutCheatsEnabled() const; + MCFOLD bool $canUseCommandsWithoutCheatsEnabled() const; - MCAPI bool $isSelectorExpansionAllowed() const; + MCFOLD bool $isSelectorExpansionAllowed() const; - MCAPI ::CommandOriginType $getOriginType() const; + MCFOLD ::CommandOriginType $getOriginType() const; MCAPI ::CommandOriginData $toCommandOriginData() const; - MCAPI ::CompoundTag $serialize() const; + MCFOLD ::CompoundTag $serialize() const; - MCAPI bool $isValid() const; + MCFOLD bool $isValid() const; // NOLINTEND public: diff --git a/src/mc/server/commands/Command.h b/src/mc/server/commands/Command.h index 84a6e62e13..54b88bf8bc 100644 --- a/src/mc/server/commands/Command.h +++ b/src/mc/server/commands/Command.h @@ -46,7 +46,7 @@ class Command { MCAPI ::std::string getCommandName() const; - MCAPI ::CommandRegistry const& getRegistry() const; + MCFOLD ::CommandRegistry const& getRegistry() const; MCAPI bool hasFlag(::CommandFlag flag) const; @@ -96,7 +96,7 @@ class Command { public: // virtual function thunks // NOLINTBEGIN - MCAPI bool $collectOptionalArguments(); + MCFOLD bool $collectOptionalArguments(); // NOLINTEND public: diff --git a/src/mc/server/commands/CommandArea.h b/src/mc/server/commands/CommandArea.h index be557ef567..25a7893de2 100644 --- a/src/mc/server/commands/CommandArea.h +++ b/src/mc/server/commands/CommandArea.h @@ -34,12 +34,12 @@ class CommandArea { public: // constructor thunks // NOLINTBEGIN - MCAPI void* $ctor(::std::unique_ptr<::ChunkViewSource> commandSource); + MCFOLD void* $ctor(::std::unique_ptr<::ChunkViewSource> commandSource); // NOLINTEND public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/server/commands/CommandAreaFactory.h b/src/mc/server/commands/CommandAreaFactory.h index e3004c0c2f..beec756629 100644 --- a/src/mc/server/commands/CommandAreaFactory.h +++ b/src/mc/server/commands/CommandAreaFactory.h @@ -61,6 +61,6 @@ class CommandAreaFactory { public: // constructor thunks // NOLINTBEGIN - MCAPI void* $ctor(::Dimension& dimension); + MCFOLD void* $ctor(::Dimension& dimension); // NOLINTEND }; diff --git a/src/mc/server/commands/CommandBlockName.h b/src/mc/server/commands/CommandBlockName.h index e603cee5b6..dea5885594 100644 --- a/src/mc/server/commands/CommandBlockName.h +++ b/src/mc/server/commands/CommandBlockName.h @@ -23,7 +23,7 @@ class CommandBlockName { MCAPI ::std::string getDescriptionId() const; - MCAPI explicit operator uint64() const; + MCFOLD explicit operator uint64() const; MCAPI ::CommandBlockNameResult resolveBlock(int data) const; @@ -37,6 +37,6 @@ class CommandBlockName { public: // constructor thunks // NOLINTBEGIN - MCAPI void* $ctor(uint64 blockNameHash); + MCFOLD void* $ctor(uint64 blockNameHash); // NOLINTEND }; diff --git a/src/mc/server/commands/CommandBlockNameResult.h b/src/mc/server/commands/CommandBlockNameResult.h index d33c74691f..f7485efc15 100644 --- a/src/mc/server/commands/CommandBlockNameResult.h +++ b/src/mc/server/commands/CommandBlockNameResult.h @@ -30,11 +30,11 @@ class CommandBlockNameResult { public: // member functions // NOLINTBEGIN - MCAPI ::Block const* getBlock() const; + MCFOLD ::Block const* getBlock() const; - MCAPI ::CommandBlockNameResult::Result getResult() const; + MCFOLD ::CommandBlockNameResult::Result getResult() const; - MCAPI bool isComplexAlias() const; + MCFOLD bool isComplexAlias() const; MCAPI bool isSameBlock(::Block const& rhs, bool onlyCompareBlockLegacy) const; @@ -44,6 +44,6 @@ class CommandBlockNameResult { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/server/commands/CommandChainedSubcommand.h b/src/mc/server/commands/CommandChainedSubcommand.h index 6e5494fb69..cb6284fa39 100644 --- a/src/mc/server/commands/CommandChainedSubcommand.h +++ b/src/mc/server/commands/CommandChainedSubcommand.h @@ -27,9 +27,9 @@ class CommandChainedSubcommand { public: // member functions // NOLINTBEGIN - MCAPI ::Command const* getCommand() const; + MCFOLD ::Command const* getCommand() const; - MCAPI void setCommand(::std::unique_ptr<::Command> command); + MCFOLD void setCommand(::std::unique_ptr<::Command> command); // NOLINTEND public: diff --git a/src/mc/server/commands/CommandContext.h b/src/mc/server/commands/CommandContext.h index f6f1767509..d8ef598ad5 100644 --- a/src/mc/server/commands/CommandContext.h +++ b/src/mc/server/commands/CommandContext.h @@ -21,7 +21,7 @@ class CommandContext { // NOLINTBEGIN MCAPI CommandContext(::std::string const& cmd, ::std::unique_ptr<::CommandOrigin> origin, int version); - MCAPI ::CommandOrigin const& getCommandOrigin() const; + MCFOLD ::CommandOrigin const& getCommandOrigin() const; MCAPI ~CommandContext(); // NOLINTEND @@ -35,6 +35,6 @@ class CommandContext { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/server/commands/CommandFilePath.h b/src/mc/server/commands/CommandFilePath.h index 115d97bdc4..fc030ba7e7 100644 --- a/src/mc/server/commands/CommandFilePath.h +++ b/src/mc/server/commands/CommandFilePath.h @@ -16,7 +16,7 @@ class CommandFilePath { MCAPI int findInvalidCharacter() const; - MCAPI ::std::string const& getText() const; + MCFOLD ::std::string const& getText() const; MCAPI ~CommandFilePath(); // NOLINTEND @@ -24,12 +24,12 @@ class CommandFilePath { public: // constructor thunks // NOLINTBEGIN - MCAPI void* $ctor(); + MCFOLD void* $ctor(); // NOLINTEND public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/server/commands/CommandIntegerRange.h b/src/mc/server/commands/CommandIntegerRange.h index 8ac06738aa..2ce2c6738c 100644 --- a/src/mc/server/commands/CommandIntegerRange.h +++ b/src/mc/server/commands/CommandIntegerRange.h @@ -27,6 +27,6 @@ class CommandIntegerRange { // NOLINTBEGIN MCAPI void* $ctor(); - MCAPI void* $ctor(int minVal, int maxVal, bool invert, bool inclusive); + MCFOLD void* $ctor(int minVal, int maxVal, bool invert, bool inclusive); // NOLINTEND }; diff --git a/src/mc/server/commands/CommandItem.h b/src/mc/server/commands/CommandItem.h index 2cbfa4c982..af8fd511d9 100644 --- a/src/mc/server/commands/CommandItem.h +++ b/src/mc/server/commands/CommandItem.h @@ -34,11 +34,11 @@ class CommandItem { MCAPI ::std::optional<::ItemInstance> createInstance(int count, int aux, ::CommandOutput& output, bool requireExactAux) const; - MCAPI int getId() const; + MCFOLD int getId() const; MCAPI explicit operator bool() const; - MCAPI explicit operator uint64() const; + MCFOLD explicit operator uint64() const; // NOLINTEND public: @@ -46,7 +46,7 @@ class CommandItem { // NOLINTBEGIN MCAPI void* $ctor(); - MCAPI void* $ctor(uint64 versionId); + MCFOLD void* $ctor(uint64 versionId); MCAPI void* $ctor(int id, short version, bool overrideAux); // NOLINTEND diff --git a/src/mc/server/commands/CommandLexer.h b/src/mc/server/commands/CommandLexer.h index 22c921a741..5b3a4ae70d 100644 --- a/src/mc/server/commands/CommandLexer.h +++ b/src/mc/server/commands/CommandLexer.h @@ -69,7 +69,7 @@ class CommandLexer { // NOLINTBEGIN MCAPI explicit CommandLexer(::std::string const& commandInput); - MCAPI ::CommandLexer::Token const& next() const; + MCFOLD ::CommandLexer::Token const& next() const; MCAPI void step(); // NOLINTEND diff --git a/src/mc/server/commands/CommandMessage.h b/src/mc/server/commands/CommandMessage.h index 0351cbf49a..e52007202c 100644 --- a/src/mc/server/commands/CommandMessage.h +++ b/src/mc/server/commands/CommandMessage.h @@ -41,7 +41,7 @@ class CommandMessage { public: // constructor thunks // NOLINTBEGIN - MCAPI void* $ctor(::CommandMessage::MessageComponent&& m); + MCFOLD void* $ctor(::CommandMessage::MessageComponent&& m); MCAPI void* $ctor(::std::string&& s); @@ -68,7 +68,7 @@ class CommandMessage { public: // constructor thunks // NOLINTBEGIN - MCAPI void* $ctor(); + MCFOLD void* $ctor(); // NOLINTEND public: diff --git a/src/mc/server/commands/CommandOrigin.h b/src/mc/server/commands/CommandOrigin.h index c5522e3663..7fbe80fd74 100644 --- a/src/mc/server/commands/CommandOrigin.h +++ b/src/mc/server/commands/CommandOrigin.h @@ -186,45 +186,45 @@ class CommandOrigin { public: // virtual function thunks // NOLINTBEGIN - MCAPI ::std::optional<::BlockPos> $getCursorHitBlockPos() const; + MCFOLD ::std::optional<::BlockPos> $getCursorHitBlockPos() const; - MCAPI ::std::optional<::Vec3> $getCursorHitPos() const; + MCFOLD ::std::optional<::Vec3> $getCursorHitPos() const; MCAPI bool $hasChatPerms() const; MCAPI bool $hasTellPerms() const; - MCAPI bool $canUseAbility(::AbilitiesIndex ability) const; + MCFOLD bool $canUseAbility(::AbilitiesIndex ability) const; MCAPI bool $isWorldBuilder() const; - MCAPI bool $canUseCommandsWithoutCheatsEnabled() const; + MCFOLD bool $canUseCommandsWithoutCheatsEnabled() const; MCAPI bool $isSelectorExpansionAllowed() const; MCAPI ::NetworkIdentifier const& $getSourceId() const; - MCAPI ::SubClientId $getSourceSubId() const; + MCFOLD ::SubClientId $getSourceSubId() const; - MCAPI ::CommandOrigin const& $getOutputReceiver() const; + MCFOLD ::CommandOrigin const& $getOutputReceiver() const; MCAPI ::CommandOriginIdentity $getIdentity() const; MCAPI ::CommandOriginData $toCommandOriginData() const; - MCAPI ::mce::UUID const& $getUUID() const; + MCFOLD ::mce::UUID const& $getUUID() const; - MCAPI void $handleCommandOutputCallback(int, ::std::string&&) const; + MCFOLD void $handleCommandOutputCallback(int, ::std::string&&) const; - MCAPI void $updateValues(); + MCFOLD void $updateValues(); MCAPI ::Vec3 const $getExecutePosition(int version, ::CommandPositionFloat const& commandPosition) const; MCAPI ::CompoundTag $serialize() const; - MCAPI bool $requiresValidLevel() const; + MCFOLD bool $requiresValidLevel() const; - MCAPI void $_setUUID(::mce::UUID const& uuid); + MCFOLD void $_setUUID(::mce::UUID const& uuid); // NOLINTEND public: diff --git a/src/mc/server/commands/CommandOriginData.h b/src/mc/server/commands/CommandOriginData.h index 9cf4d24dab..ba00391588 100644 --- a/src/mc/server/commands/CommandOriginData.h +++ b/src/mc/server/commands/CommandOriginData.h @@ -43,6 +43,6 @@ struct CommandOriginData { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/server/commands/CommandOriginIdentity.h b/src/mc/server/commands/CommandOriginIdentity.h index 260b77ffe5..6123c3dcad 100644 --- a/src/mc/server/commands/CommandOriginIdentity.h +++ b/src/mc/server/commands/CommandOriginIdentity.h @@ -25,6 +25,6 @@ struct CommandOriginIdentity { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/server/commands/CommandOutput.h b/src/mc/server/commands/CommandOutput.h index e4418d1a99..29d21aa6e5 100644 --- a/src/mc/server/commands/CommandOutput.h +++ b/src/mc/server/commands/CommandOutput.h @@ -48,13 +48,13 @@ class CommandOutput { MCAPI void forceOutput(::std::string const& msgId, ::std::vector<::CommandOutputParameter> const& params); - MCAPI ::CommandPropertyBag const& getData() const; + MCFOLD ::CommandPropertyBag const& getData() const; - MCAPI ::std::vector<::CommandOutputMessage> const& getMessages() const; + MCFOLD ::std::vector<::CommandOutputMessage> const& getMessages() const; - MCAPI int getSuccessCount() const; + MCFOLD int getSuccessCount() const; - MCAPI ::CommandOutputType getType() const; + MCFOLD ::CommandOutputType getType() const; MCAPI bool hasErrorMessage() const; @@ -65,13 +65,13 @@ class CommandOutput { ::std::unique_ptr<::CommandPropertyBag>&& data ); - MCAPI void setHasPlayerText(); + MCFOLD void setHasPlayerText(); MCAPI void success(); MCAPI void success(::std::string const& msgId, ::std::vector<::CommandOutputParameter> const& params); - MCAPI bool wantsData() const; + MCFOLD bool wantsData() const; MCAPI ~CommandOutput(); // NOLINTEND diff --git a/src/mc/server/commands/CommandOutputMessage.h b/src/mc/server/commands/CommandOutputMessage.h index 707f3b8b43..c66dacda38 100644 --- a/src/mc/server/commands/CommandOutputMessage.h +++ b/src/mc/server/commands/CommandOutputMessage.h @@ -27,11 +27,11 @@ class CommandOutputMessage { ::std::vector<::std::string>&& params ); - MCAPI ::std::string const& getMessageId() const; + MCFOLD ::std::string const& getMessageId() const; - MCAPI ::std::vector<::std::string> const& getParams() const; + MCFOLD ::std::vector<::std::string> const& getParams() const; - MCAPI ::CommandOutputMessageType getType() const; + MCFOLD ::CommandOutputMessageType getType() const; MCAPI ~CommandOutputMessage(); // NOLINTEND @@ -50,6 +50,6 @@ class CommandOutputMessage { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/server/commands/CommandOutputParameter.h b/src/mc/server/commands/CommandOutputParameter.h index 352a97dfc4..2e63962eed 100644 --- a/src/mc/server/commands/CommandOutputParameter.h +++ b/src/mc/server/commands/CommandOutputParameter.h @@ -61,7 +61,7 @@ class CommandOutputParameter { MCAPI explicit CommandOutputParameter(::std::vector<::std::string> const& strings); - MCAPI ::CommandOutputParameter& operator=(::CommandOutputParameter&& rhs); + MCFOLD ::CommandOutputParameter& operator=(::CommandOutputParameter&& rhs); MCAPI ~CommandOutputParameter(); // NOLINTEND @@ -69,15 +69,15 @@ class CommandOutputParameter { public: // constructor thunks // NOLINTBEGIN - MCAPI void* $ctor(::std::vector<::Player const*> const& players); + MCFOLD void* $ctor(::std::vector<::Player const*> const& players); MCAPI void* $ctor(::CommandOutputParameter const& rhs); MCAPI void* $ctor(::std::vector<::Actor const*> const&); - MCAPI void* $ctor(::CommandOutputParameter::NoCountType); + MCFOLD void* $ctor(::CommandOutputParameter::NoCountType); - MCAPI void* $ctor(::CommandSelectorResults<::Player> const& players); + MCFOLD void* $ctor(::CommandSelectorResults<::Player> const& players); MCAPI void* $ctor(::std::string const& text); @@ -85,9 +85,9 @@ class CommandOutputParameter { MCAPI void* $ctor(::CommandSelectorResults<::Actor> const&); - MCAPI void* $ctor(::Actor const* entity); + MCFOLD void* $ctor(::Actor const* entity); - MCAPI void* $ctor(::CommandOutputParameter&& rhs); + MCFOLD void* $ctor(::CommandOutputParameter&& rhs); MCAPI void* $ctor(char const* text); @@ -105,6 +105,6 @@ class CommandOutputParameter { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/server/commands/CommandOutputSender.h b/src/mc/server/commands/CommandOutputSender.h index 9ab5f64997..e6d9652131 100644 --- a/src/mc/server/commands/CommandOutputSender.h +++ b/src/mc/server/commands/CommandOutputSender.h @@ -70,7 +70,7 @@ class CommandOutputSender { // NOLINTBEGIN MCAPI void $send(::CommandOrigin const& origin, ::CommandOutput const& output); - MCAPI void $registerOutputCallback(::std::function const& callback); + MCFOLD void $registerOutputCallback(::std::function const& callback); // NOLINTEND public: diff --git a/src/mc/server/commands/CommandParameterData.h b/src/mc/server/commands/CommandParameterData.h index 05fb4bc8cd..f897f2d822 100644 --- a/src/mc/server/commands/CommandParameterData.h +++ b/src/mc/server/commands/CommandParameterData.h @@ -90,6 +90,6 @@ class CommandParameterData { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/server/commands/CommandRawText.h b/src/mc/server/commands/CommandRawText.h index e35b06e0da..90174d1db7 100644 --- a/src/mc/server/commands/CommandRawText.h +++ b/src/mc/server/commands/CommandRawText.h @@ -12,6 +12,6 @@ class CommandRawText { public: // member functions // NOLINTBEGIN - MCAPI ::std::string const& getText() const; + MCFOLD ::std::string const& getText() const; // NOLINTEND }; diff --git a/src/mc/server/commands/CommandRegistry.h b/src/mc/server/commands/CommandRegistry.h index 3cd1e40c23..a03ffdd2b8 100644 --- a/src/mc/server/commands/CommandRegistry.h +++ b/src/mc/server/commands/CommandRegistry.h @@ -86,7 +86,7 @@ class CommandRegistry { MCAPI ::std::unique_ptr<::CommandSelector<::Actor>> createSelector(::std::string const& selectorString, ::CommandOrigin const& origin); - MCAPI ::std::string const& getErrorMessage() const; + MCFOLD ::std::string const& getErrorMessage() const; MCAPI ::std::vector<::std::string> getErrorParams() const; @@ -243,13 +243,13 @@ class CommandRegistry { MCAPI uint64 toIndex() const; - MCAPI int value() const; + MCFOLD int value() const; // NOLINTEND public: // constructor thunks // NOLINTBEGIN - MCAPI void* $ctor(uint64 value); + MCFOLD void* $ctor(uint64 value); // NOLINTEND }; @@ -474,7 +474,7 @@ class CommandRegistry { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; @@ -504,7 +504,7 @@ class CommandRegistry { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; @@ -893,7 +893,7 @@ class CommandRegistry { MCAPI ::CommandSyntaxInformation getCommandOverloadSyntaxInformation(::CommandOrigin const& origin, ::std::string const& commandName) const; - MCAPI ::CommandRunStats& getCommandRunStats() const; + MCFOLD ::CommandRunStats& getCommandRunStats() const; MCAPI ::CommandStatus getCommandStatus(::std::string const& nameIn) const; @@ -960,9 +960,9 @@ class CommandRegistry { // NOLINTBEGIN MCAPI static ::std::string _removeStringQuotes(::std::string const& str); - MCAPI static void buildOverload(::CommandRegistry::Overload& overload); + MCFOLD static void buildOverload(::CommandRegistry::Overload& overload); - MCAPI static ::CommandRegistry::ParseToken* + MCFOLD static ::CommandRegistry::ParseToken* collapse(::CommandRegistry::ParseToken& parent, ::CommandRegistry::Symbol symbol); MCAPI static ::CommandRegistry::ParseToken* collapseOn( diff --git a/src/mc/server/commands/CommandRunStats.h b/src/mc/server/commands/CommandRunStats.h index 2898b064c0..22ad01f8f0 100644 --- a/src/mc/server/commands/CommandRunStats.h +++ b/src/mc/server/commands/CommandRunStats.h @@ -23,7 +23,7 @@ class CommandRunStats { // NOLINTBEGIN MCAPI void clearRunCounts(); - MCAPI ::std::unordered_map<::CommandOriginType, uint64> const& getRunCountMap() const; + MCFOLD ::std::unordered_map<::CommandOriginType, uint64> const& getRunCountMap() const; MCAPI void incrementRunCount(::CommandOriginType originType); // NOLINTEND diff --git a/src/mc/server/commands/CommandSelectorBase.h b/src/mc/server/commands/CommandSelectorBase.h index bb77459978..e3d04e5ca2 100644 --- a/src/mc/server/commands/CommandSelectorBase.h +++ b/src/mc/server/commands/CommandSelectorBase.h @@ -109,7 +109,7 @@ class CommandSelectorBase { MCAPI ::std::string getName() const; - MCAPI ::CommandSelectionOrder getOrder() const; + MCFOLD ::CommandSelectionOrder getOrder() const; MCAPI uint64 getResultCount() const; @@ -117,7 +117,7 @@ class CommandSelectorBase { MCAPI bool isExpansionAllowed(::CommandOrigin const& origin) const; - MCAPI bool isExplicitIdSelector() const; + MCFOLD bool isExplicitIdSelector() const; MCAPI bool matchFamily(::Actor const& entity) const; @@ -151,7 +151,7 @@ class CommandSelectorBase { MCAPI void setType(::CommandSelectionType type); - MCAPI void setVersion(int version); + MCFOLD void setVersion(int version); MCAPI ~CommandSelectorBase(); // NOLINTEND diff --git a/src/mc/server/commands/CommandSoftEnumRegistry.h b/src/mc/server/commands/CommandSoftEnumRegistry.h index df72741351..f482103e6e 100644 --- a/src/mc/server/commands/CommandSoftEnumRegistry.h +++ b/src/mc/server/commands/CommandSoftEnumRegistry.h @@ -31,12 +31,12 @@ class CommandSoftEnumRegistry { public: // constructor thunks // NOLINTBEGIN - MCAPI void* $ctor(::CommandRegistry* registry); + MCFOLD void* $ctor(::CommandRegistry* registry); // NOLINTEND public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/server/commands/CommandVersion.h b/src/mc/server/commands/CommandVersion.h index 5eec9f1d19..34b6d073ec 100644 --- a/src/mc/server/commands/CommandVersion.h +++ b/src/mc/server/commands/CommandVersion.h @@ -41,6 +41,6 @@ class CommandVersion { public: // constructor thunks // NOLINTBEGIN - MCAPI void* $ctor(int from, int to); + MCFOLD void* $ctor(int from, int to); // NOLINTEND }; diff --git a/src/mc/server/commands/CommandWildcardInt.h b/src/mc/server/commands/CommandWildcardInt.h index 14a0e21610..13fe8d0522 100644 --- a/src/mc/server/commands/CommandWildcardInt.h +++ b/src/mc/server/commands/CommandWildcardInt.h @@ -15,9 +15,9 @@ class CommandWildcardInt { // NOLINTBEGIN MCAPI CommandWildcardInt(); - MCAPI int getValue() const; + MCFOLD int getValue() const; - MCAPI bool isWildcard() const; + MCFOLD bool isWildcard() const; // NOLINTEND public: diff --git a/src/mc/server/commands/DeferredCommandBase.h b/src/mc/server/commands/DeferredCommandBase.h index 9ea0876f1a..804155b6c5 100644 --- a/src/mc/server/commands/DeferredCommandBase.h +++ b/src/mc/server/commands/DeferredCommandBase.h @@ -21,7 +21,7 @@ class DeferredCommandBase { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND public: diff --git a/src/mc/server/commands/DelayRequest.h b/src/mc/server/commands/DelayRequest.h index eaef1ce0c0..17722568b5 100644 --- a/src/mc/server/commands/DelayRequest.h +++ b/src/mc/server/commands/DelayRequest.h @@ -35,9 +35,9 @@ class DelayRequest { MCAPI ::gsl::not_null<::IRequestAction*> getAction() const; - MCAPI ::std::string const& getSerializationId() const; + MCFOLD ::std::string const& getSerializationId() const; - MCAPI uint64 getTickToExecuteOn() const; + MCFOLD uint64 getTickToExecuteOn() const; MCAPI ::DelayRequest& operator=(::DelayRequest&&); diff --git a/src/mc/server/commands/ExecuteContextCommandOrigin.h b/src/mc/server/commands/ExecuteContextCommandOrigin.h index 6ab02cdb12..88e4ffe6cd 100644 --- a/src/mc/server/commands/ExecuteContextCommandOrigin.h +++ b/src/mc/server/commands/ExecuteContextCommandOrigin.h @@ -160,11 +160,11 @@ class ExecuteContextCommandOrigin : public ::CommandOrigin { public: // virtual function thunks // NOLINTBEGIN - MCAPI ::std::string const& $getRequestId() const; + MCFOLD ::std::string const& $getRequestId() const; MCAPI ::std::string $getName() const; - MCAPI ::BlockPos $getBlockPosition() const; + MCFOLD ::BlockPos $getBlockPosition() const; MCAPI ::Vec3 $getWorldPosition() const; @@ -172,9 +172,9 @@ class ExecuteContextCommandOrigin : public ::CommandOrigin { MCAPI ::Actor* $getEntity() const; - MCAPI ::CommandPermissionLevel $getPermissionsLevel() const; + MCFOLD ::CommandPermissionLevel $getPermissionsLevel() const; - MCAPI ::CommandOriginType $getOriginType() const; + MCFOLD ::CommandOriginType $getOriginType() const; MCAPI bool $isValid() const; @@ -186,7 +186,7 @@ class ExecuteContextCommandOrigin : public ::CommandOrigin { MCAPI ::Vec3 const $getExecutePosition(int version, ::CommandPositionFloat const& commandPosition) const; - MCAPI ::Level* $getLevel() const; + MCFOLD ::Level* $getLevel() const; MCAPI ::Dimension* $getDimension() const; // NOLINTEND diff --git a/src/mc/server/commands/GameDirectorEntityServerCommandOrigin.h b/src/mc/server/commands/GameDirectorEntityServerCommandOrigin.h index 4eaeac0e2e..973f55a0f3 100644 --- a/src/mc/server/commands/GameDirectorEntityServerCommandOrigin.h +++ b/src/mc/server/commands/GameDirectorEntityServerCommandOrigin.h @@ -57,15 +57,15 @@ class GameDirectorEntityServerCommandOrigin : public ::ActorServerCommandOrigin public: // virtual function thunks // NOLINTBEGIN - MCAPI ::CommandPermissionLevel $getPermissionsLevel() const; + MCFOLD ::CommandPermissionLevel $getPermissionsLevel() const; MCAPI ::std::unique_ptr<::CommandOrigin> $clone() const; - MCAPI bool $canUseCommandsWithoutCheatsEnabled() const; + MCFOLD bool $canUseCommandsWithoutCheatsEnabled() const; MCAPI ::CommandOriginType $getOriginType() const; - MCAPI bool $isSelectorExpansionAllowed() const; + MCFOLD bool $isSelectorExpansionAllowed() const; // NOLINTEND public: diff --git a/src/mc/server/commands/GenerateMessageResult.h b/src/mc/server/commands/GenerateMessageResult.h index 593e579cdd..5d231ed29b 100644 --- a/src/mc/server/commands/GenerateMessageResult.h +++ b/src/mc/server/commands/GenerateMessageResult.h @@ -19,6 +19,6 @@ struct GenerateMessageResult { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/server/commands/MinecartBlockCommandOrigin.h b/src/mc/server/commands/MinecartBlockCommandOrigin.h index b964ebbfb1..245f28ca06 100644 --- a/src/mc/server/commands/MinecartBlockCommandOrigin.h +++ b/src/mc/server/commands/MinecartBlockCommandOrigin.h @@ -94,7 +94,7 @@ class MinecartBlockCommandOrigin : public ::BlockCommandOrigin { public: // virtual function thunks // NOLINTBEGIN - MCAPI ::BlockPos $getBlockPosition() const; + MCFOLD ::BlockPos $getBlockPosition() const; MCAPI ::Vec3 $getWorldPosition() const; @@ -104,15 +104,15 @@ class MinecartBlockCommandOrigin : public ::BlockCommandOrigin { MCAPI ::std::unique_ptr<::CommandOrigin> $clone() const; - MCAPI bool $canUseCommandsWithoutCheatsEnabled() const; + MCFOLD bool $canUseCommandsWithoutCheatsEnabled() const; - MCAPI ::CommandOriginType $getOriginType() const; + MCFOLD ::CommandOriginType $getOriginType() const; MCAPI ::CompoundTag $serialize() const; - MCAPI bool $isValid() const; + MCFOLD bool $isValid() const; - MCAPI ::CommandBlockActor* $_getBlockEntity(::BlockSource& region) const; + MCFOLD ::CommandBlockActor* $_getBlockEntity(::BlockSource& region) const; MCAPI ::BaseCommandBlock* $_getBaseCommandBlock(::BlockSource& region) const; // NOLINTEND diff --git a/src/mc/server/commands/MinecraftCommands.h b/src/mc/server/commands/MinecraftCommands.h index efb69578f3..0a5b9e1ce5 100644 --- a/src/mc/server/commands/MinecraftCommands.h +++ b/src/mc/server/commands/MinecraftCommands.h @@ -79,7 +79,7 @@ class MinecraftCommands { MCAPI ::MCRESULT executeCommand(::CommandContext& context, bool suppressOutput) const; - MCAPI ::CommandRegistry& getRegistry(); + MCFOLD ::CommandRegistry& getRegistry(); MCAPI void handleOutput(::CommandOrigin const& origin, ::CommandOutput const& output) const; diff --git a/src/mc/server/commands/PlayerCommandOrigin.h b/src/mc/server/commands/PlayerCommandOrigin.h index 9003eaf3b7..68e2a026ac 100644 --- a/src/mc/server/commands/PlayerCommandOrigin.h +++ b/src/mc/server/commands/PlayerCommandOrigin.h @@ -107,7 +107,7 @@ class PlayerCommandOrigin : public ::CommandOrigin { public: // virtual function thunks // NOLINTBEGIN - MCAPI ::std::string const& $getRequestId() const; + MCFOLD ::std::string const& $getRequestId() const; MCAPI ::std::string $getName() const; @@ -117,7 +117,7 @@ class PlayerCommandOrigin : public ::CommandOrigin { MCAPI ::std::optional<::Vec2> $getRotation() const; - MCAPI ::Level* $getLevel() const; + MCFOLD ::Level* $getLevel() const; MCAPI ::Dimension* $getDimension() const; @@ -133,7 +133,7 @@ class PlayerCommandOrigin : public ::CommandOrigin { MCAPI bool $canUseAbility(::AbilitiesIndex ability) const; - MCAPI bool $isSelectorExpansionAllowed() const; + MCFOLD bool $isSelectorExpansionAllowed() const; MCAPI ::NetworkIdentifier const& $getSourceId() const; @@ -141,11 +141,11 @@ class PlayerCommandOrigin : public ::CommandOrigin { MCAPI ::CommandOriginIdentity $getIdentity() const; - MCAPI ::CommandOriginType $getOriginType() const; + MCFOLD ::CommandOriginType $getOriginType() const; MCAPI ::CompoundTag $serialize() const; - MCAPI bool $isValid() const; + MCFOLD bool $isValid() const; // NOLINTEND public: diff --git a/src/mc/server/commands/PrecompiledCommandOrigin.h b/src/mc/server/commands/PrecompiledCommandOrigin.h index 7ed5ca02cd..abe4bbd2f5 100644 --- a/src/mc/server/commands/PrecompiledCommandOrigin.h +++ b/src/mc/server/commands/PrecompiledCommandOrigin.h @@ -93,43 +93,43 @@ class PrecompiledCommandOrigin : public ::CommandOrigin { public: // virtual function thunks // NOLINTBEGIN - MCAPI ::std::string const& $getRequestId() const; + MCFOLD ::std::string const& $getRequestId() const; - MCAPI ::std::string $getName() const; + MCFOLD ::std::string $getName() const; - MCAPI ::BlockPos $getBlockPosition() const; + MCFOLD ::BlockPos $getBlockPosition() const; - MCAPI ::Vec3 $getWorldPosition() const; + MCFOLD ::Vec3 $getWorldPosition() const; - MCAPI ::std::optional<::Vec2> $getRotation() const; + MCFOLD ::std::optional<::Vec2> $getRotation() const; - MCAPI ::Level* $getLevel() const; + MCFOLD ::Level* $getLevel() const; - MCAPI ::Dimension* $getDimension() const; + MCFOLD ::Dimension* $getDimension() const; - MCAPI ::Actor* $getEntity() const; + MCFOLD ::Actor* $getEntity() const; - MCAPI ::CommandPermissionLevel $getPermissionsLevel() const; + MCFOLD ::CommandPermissionLevel $getPermissionsLevel() const; MCAPI ::std::unique_ptr<::CommandOrigin> $clone() const; MCAPI ::CommandOriginType $getOriginType() const; - MCAPI bool $canUseCommandsWithoutCheatsEnabled() const; + MCFOLD bool $canUseCommandsWithoutCheatsEnabled() const; - MCAPI bool $isSelectorExpansionAllowed() const; + MCFOLD bool $isSelectorExpansionAllowed() const; - MCAPI bool $hasChatPerms() const; + MCFOLD bool $hasChatPerms() const; - MCAPI bool $hasTellPerms() const; + MCFOLD bool $hasTellPerms() const; - MCAPI bool $canUseAbility(::AbilitiesIndex ability) const; + MCFOLD bool $canUseAbility(::AbilitiesIndex ability) const; - MCAPI bool $isWorldBuilder() const; + MCFOLD bool $isWorldBuilder() const; - MCAPI ::CompoundTag $serialize() const; + MCFOLD ::CompoundTag $serialize() const; - MCAPI bool $isValid() const; + MCFOLD bool $isValid() const; // NOLINTEND public: diff --git a/src/mc/server/commands/RelativeFloat.h b/src/mc/server/commands/RelativeFloat.h index d578997a09..9cef4a411a 100644 --- a/src/mc/server/commands/RelativeFloat.h +++ b/src/mc/server/commands/RelativeFloat.h @@ -19,13 +19,13 @@ class RelativeFloat { MCAPI float getValue(float base) const; - MCAPI bool isRelative() const; + MCFOLD bool isRelative() const; // NOLINTEND public: // constructor thunks // NOLINTBEGIN - MCAPI void* $ctor(); + MCFOLD void* $ctor(); MCAPI void* $ctor(float offset, bool relative); // NOLINTEND diff --git a/src/mc/server/commands/ServerCommand.h b/src/mc/server/commands/ServerCommand.h index 2cab40985e..fa58f563a3 100644 --- a/src/mc/server/commands/ServerCommand.h +++ b/src/mc/server/commands/ServerCommand.h @@ -60,6 +60,6 @@ class ServerCommand : public ::Command { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/server/commands/ServerCommandOrigin.h b/src/mc/server/commands/ServerCommandOrigin.h index 2742009c41..1bedb24de1 100644 --- a/src/mc/server/commands/ServerCommandOrigin.h +++ b/src/mc/server/commands/ServerCommandOrigin.h @@ -113,35 +113,35 @@ class ServerCommandOrigin : public ::CommandOrigin { public: // virtual function thunks // NOLINTBEGIN - MCAPI ::std::string const& $getRequestId() const; + MCFOLD ::std::string const& $getRequestId() const; MCAPI ::std::string $getName() const; - MCAPI ::BlockPos $getBlockPosition() const; + MCFOLD ::BlockPos $getBlockPosition() const; - MCAPI ::Vec3 $getWorldPosition() const; + MCFOLD ::Vec3 $getWorldPosition() const; - MCAPI ::std::optional<::Vec2> $getRotation() const; + MCFOLD ::std::optional<::Vec2> $getRotation() const; - MCAPI ::Level* $getLevel() const; + MCFOLD ::Level* $getLevel() const; MCAPI ::Dimension* $getDimension() const; - MCAPI ::Actor* $getEntity() const; + MCFOLD ::Actor* $getEntity() const; - MCAPI ::CommandPermissionLevel $getPermissionsLevel() const; + MCFOLD ::CommandPermissionLevel $getPermissionsLevel() const; MCAPI ::std::unique_ptr<::CommandOrigin> $clone() const; - MCAPI bool $canUseCommandsWithoutCheatsEnabled() const; + MCFOLD bool $canUseCommandsWithoutCheatsEnabled() const; - MCAPI bool $isSelectorExpansionAllowed() const; + MCFOLD bool $isSelectorExpansionAllowed() const; - MCAPI ::CommandOriginType $getOriginType() const; + MCFOLD ::CommandOriginType $getOriginType() const; MCAPI ::CompoundTag $serialize() const; - MCAPI bool $isValid() const; + MCFOLD bool $isValid() const; // NOLINTEND public: diff --git a/src/mc/server/commands/VirtualCommandOrigin.h b/src/mc/server/commands/VirtualCommandOrigin.h index 24c228f23e..2a4016643f 100644 --- a/src/mc/server/commands/VirtualCommandOrigin.h +++ b/src/mc/server/commands/VirtualCommandOrigin.h @@ -141,7 +141,7 @@ class VirtualCommandOrigin : public ::CommandOrigin { int version ); - MCAPI ::CommandOrigin* getOrigin() const; + MCFOLD ::CommandOrigin* getOrigin() const; // NOLINTEND public: @@ -204,7 +204,7 @@ class VirtualCommandOrigin : public ::CommandOrigin { MCAPI ::std::unique_ptr<::CommandOrigin> $clone() const; - MCAPI ::CommandOrigin const& $getOutputReceiver() const; + MCFOLD ::CommandOrigin const& $getOutputReceiver() const; MCAPI bool $hasChatPerms() const; @@ -216,7 +216,7 @@ class VirtualCommandOrigin : public ::CommandOrigin { MCAPI bool $isSelectorExpansionAllowed() const; - MCAPI ::CommandOriginType $getOriginType() const; + MCFOLD ::CommandOriginType $getOriginType() const; MCAPI ::NetworkIdentifier const& $getSourceId() const; diff --git a/src/mc/server/commands/functions/FunctionEntry.h b/src/mc/server/commands/functions/FunctionEntry.h index 63299aa2f6..7b712fdbab 100644 --- a/src/mc/server/commands/functions/FunctionEntry.h +++ b/src/mc/server/commands/functions/FunctionEntry.h @@ -41,7 +41,7 @@ class FunctionEntry : public ::IFunctionEntry { public: // member functions // NOLINTBEGIN - MCAPI ::FunctionState getErrorState() const; + MCFOLD ::FunctionState getErrorState() const; // NOLINTEND public: diff --git a/src/mc/server/commands/functions/FunctionManager.h b/src/mc/server/commands/functions/FunctionManager.h index 2467adc51d..932d4c3a32 100644 --- a/src/mc/server/commands/functions/FunctionManager.h +++ b/src/mc/server/commands/functions/FunctionManager.h @@ -82,7 +82,7 @@ class FunctionManager { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/server/commands/shared/ScriptDebugCommand.h b/src/mc/server/commands/shared/ScriptDebugCommand.h index 909e14e048..269ddd86e5 100644 --- a/src/mc/server/commands/shared/ScriptDebugCommand.h +++ b/src/mc/server/commands/shared/ScriptDebugCommand.h @@ -81,7 +81,7 @@ class ScriptDebugCommand : public ::Command { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND public: diff --git a/src/mc/server/commands/standard/MessagingCommand.h b/src/mc/server/commands/standard/MessagingCommand.h index 4594d3b5ad..079f966c11 100644 --- a/src/mc/server/commands/standard/MessagingCommand.h +++ b/src/mc/server/commands/standard/MessagingCommand.h @@ -68,7 +68,7 @@ class MessagingCommand : public ::ServerCommand { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND public: diff --git a/src/mc/server/commands/standard/ScheduleCommand.h b/src/mc/server/commands/standard/ScheduleCommand.h index eb610a9251..b4c2c13982 100644 --- a/src/mc/server/commands/standard/ScheduleCommand.h +++ b/src/mc/server/commands/standard/ScheduleCommand.h @@ -68,7 +68,7 @@ class ScheduleCommand : public ::Command { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/server/commands/standard/ScoreboardCommand.h b/src/mc/server/commands/standard/ScoreboardCommand.h index 9b760a0e53..9fcd431fa1 100644 --- a/src/mc/server/commands/standard/ScoreboardCommand.h +++ b/src/mc/server/commands/standard/ScoreboardCommand.h @@ -80,7 +80,7 @@ class ScoreboardCommand : public ::Command { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/server/editor/EditorManagerServer.h b/src/mc/server/editor/EditorManagerServer.h index 90d9be1b91..58c0628bbd 100644 --- a/src/mc/server/editor/EditorManagerServer.h +++ b/src/mc/server/editor/EditorManagerServer.h @@ -110,7 +110,7 @@ class EditorManagerServer : public ::Editor::EditorManager, // NOLINTBEGIN MCAPI ::EventResult $onEvent(::ScriptingWorldInitializeEvent const& scriptingInitializedEvent); - MCAPI bool $isClientSide() const; + MCFOLD bool $isClientSide() const; MCAPI ::std::unique_ptr<::Editor::IEditorPlayer> $createPlayer(::Player& player); diff --git a/src/mc/server/editor/api/EditorExtensionOptionalParameters.h b/src/mc/server/editor/api/EditorExtensionOptionalParameters.h index 71db91829f..f0f4b62b4a 100644 --- a/src/mc/server/editor/api/EditorExtensionOptionalParameters.h +++ b/src/mc/server/editor/api/EditorExtensionOptionalParameters.h @@ -45,7 +45,7 @@ struct EditorExtensionOptionalParameters { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/server/editor/api/EditorExtensionService.h b/src/mc/server/editor/api/EditorExtensionService.h index 53f7a75585..98efcdba44 100644 --- a/src/mc/server/editor/api/EditorExtensionService.h +++ b/src/mc/server/editor/api/EditorExtensionService.h @@ -141,7 +141,7 @@ class EditorExtensionService : public ::Editor::Services::IEditorService, // NOLINTBEGIN MCAPI ::Scripting::Result $init(); - MCAPI ::Scripting::Result $ready(); + MCFOLD ::Scripting::Result $ready(); MCAPI ::Scripting::Result $quit(); diff --git a/src/mc/server/editor/block_utils/ServerBlockUtilityService.h b/src/mc/server/editor/block_utils/ServerBlockUtilityService.h index 7f8b580d02..49788db818 100644 --- a/src/mc/server/editor/block_utils/ServerBlockUtilityService.h +++ b/src/mc/server/editor/block_utils/ServerBlockUtilityService.h @@ -73,11 +73,11 @@ class ServerBlockUtilityService : public ::Editor::BlockUtils::CommonBlockUtilit ::std::optional<::Block const*> const optBlock ); - MCAPI ::Scripting::Result $_implInit(); + MCFOLD ::Scripting::Result $_implInit(); - MCAPI ::Scripting::Result $_implReady(); + MCFOLD ::Scripting::Result $_implReady(); - MCAPI ::Scripting::Result $_implQuit(); + MCFOLD ::Scripting::Result $_implQuit(); // NOLINTEND public: diff --git a/src/mc/server/editor/brush/BrushShapeManagerService.h b/src/mc/server/editor/brush/BrushShapeManagerService.h index 743d288287..86a01efd60 100644 --- a/src/mc/server/editor/brush/BrushShapeManagerService.h +++ b/src/mc/server/editor/brush/BrushShapeManagerService.h @@ -175,7 +175,7 @@ class BrushShapeManagerService : public ::Editor::Services::IEditorService, // NOLINTBEGIN MCAPI ::Scripting::Result $init(); - MCAPI ::Scripting::Result $ready(); + MCFOLD ::Scripting::Result $ready(); MCAPI ::Scripting::Result $quit(); diff --git a/src/mc/server/editor/logging/ServerLoggingService.h b/src/mc/server/editor/logging/ServerLoggingService.h index 81c945ab4e..6fc323a758 100644 --- a/src/mc/server/editor/logging/ServerLoggingService.h +++ b/src/mc/server/editor/logging/ServerLoggingService.h @@ -77,9 +77,9 @@ class ServerLoggingService : public ::Editor::Services::LoggingService { MCAPI void $log(::std::string&& msg, ::Player* player, ::Editor::LogLevel level, ::std::vector<::HashedString>&& areaTags); - MCAPI void $flush(); + MCFOLD void $flush(); - MCAPI ::std::vector<::Editor::LogMessage> const& $getMessages() const; + MCFOLD ::std::vector<::Editor::LogMessage> const& $getMessages() const; // NOLINTEND public: diff --git a/src/mc/server/editor/logging/ServerPlayerLogMessageHandlerService.h b/src/mc/server/editor/logging/ServerPlayerLogMessageHandlerService.h index 36f7d631e5..06ec77ec57 100644 --- a/src/mc/server/editor/logging/ServerPlayerLogMessageHandlerService.h +++ b/src/mc/server/editor/logging/ServerPlayerLogMessageHandlerService.h @@ -39,11 +39,11 @@ class ServerPlayerLogMessageHandlerService : public ::Editor::Services::IEditorS // NOLINTBEGIN MCAPI ::std::string_view $getServiceName() const; - MCAPI ::Scripting::Result $init(); + MCFOLD ::Scripting::Result $init(); MCAPI ::Scripting::Result $ready(); - MCAPI ::Scripting::Result $quit(); + MCFOLD ::Scripting::Result $quit(); // NOLINTEND public: diff --git a/src/mc/server/editor/script/ScriptBrushShape.h b/src/mc/server/editor/script/ScriptBrushShape.h index 1ccf83c2a0..d2cd2199f9 100644 --- a/src/mc/server/editor/script/ScriptBrushShape.h +++ b/src/mc/server/editor/script/ScriptBrushShape.h @@ -23,9 +23,9 @@ class ScriptBrushShape { public: // member functions // NOLINTBEGIN - MCAPI ::Editor::ScriptModule::ScriptBrushShape& operator=(::Editor::ScriptModule::ScriptBrushShape&&); + MCFOLD ::Editor::ScriptModule::ScriptBrushShape& operator=(::Editor::ScriptModule::ScriptBrushShape&&); - MCAPI ::Editor::ScriptModule::ScriptBrushShape& operator=(::Editor::ScriptModule::ScriptBrushShape const&); + MCFOLD ::Editor::ScriptModule::ScriptBrushShape& operator=(::Editor::ScriptModule::ScriptBrushShape const&); MCAPI ~ScriptBrushShape(); // NOLINTEND @@ -39,7 +39,7 @@ class ScriptBrushShape { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/server/editor/script/ScriptBrushShapeManagerService.h b/src/mc/server/editor/script/ScriptBrushShapeManagerService.h index 12527f9fad..a578e72628 100644 --- a/src/mc/server/editor/script/ScriptBrushShapeManagerService.h +++ b/src/mc/server/editor/script/ScriptBrushShapeManagerService.h @@ -44,7 +44,7 @@ class ScriptBrushShapeManagerService { // NOLINTBEGIN MCAPI ScriptBrushShapeManagerService(::Editor::ScriptModule::ScriptBrushShapeManagerService const&); - MCAPI void activateBrushTool(); + MCFOLD void activateBrushTool(); MCAPI ::Scripting::Result beginPainting(::Scripting::Closure const& closureEvent); diff --git a/src/mc/server/editor/selection/ServerSelectionContainer.h b/src/mc/server/editor/selection/ServerSelectionContainer.h index c63960e759..6ad25e82bb 100644 --- a/src/mc/server/editor/selection/ServerSelectionContainer.h +++ b/src/mc/server/editor/selection/ServerSelectionContainer.h @@ -178,7 +178,7 @@ class ServerSelectionContainer : public ::Editor::Selection::SelectionContainer MCAPI ::Scripting::Result $_checkVolumeIsValid(::SimpleBlockVolume const& volume) const; - MCAPI bool $_isClientSide() const; + MCFOLD bool $_isClientSide() const; // NOLINTEND public: diff --git a/src/mc/server/editor/services/blocks/ServerBlockPaletteService.h b/src/mc/server/editor/services/blocks/ServerBlockPaletteService.h index 44aeb77460..b5abf8399f 100644 --- a/src/mc/server/editor/services/blocks/ServerBlockPaletteService.h +++ b/src/mc/server/editor/services/blocks/ServerBlockPaletteService.h @@ -125,13 +125,13 @@ class ServerBlockPaletteService : public ::Editor::Services::EditorBlockPaletteS // NOLINTBEGIN MCAPI ::Scripting::Result $init(); - MCAPI ::Scripting::Result $quit(); + MCFOLD ::Scripting::Result $quit(); MCAPI ::Scripting::Result $ready(); MCAPI ::std::string_view $getServiceName() const; - MCAPI ::Scripting::Result $setSelectedPaletteItemIndex(int index); + MCFOLD ::Scripting::Result $setSelectedPaletteItemIndex(int index); MCAPI ::Scripting::Result $setPaletteItem( ::HashedString const& paletteId, @@ -139,7 +139,7 @@ class ServerBlockPaletteService : public ::Editor::Services::EditorBlockPaletteS ::std::variant<::Editor::SimpleBlockPaletteItem, ::Editor::ProbabilityBlockPaletteItem> const& item ); - MCAPI ::Scripting::Result $pickBlock(::Block const&); + MCFOLD ::Scripting::Result $pickBlock(::Block const&); MCAPI void $addOrReplacePalette(::Editor::EditorBlockPalette const& palette); diff --git a/src/mc/server/editor/services/datastore/ServerDataStoreService.h b/src/mc/server/editor/services/datastore/ServerDataStoreService.h index f824c742a0..753cc7f79c 100644 --- a/src/mc/server/editor/services/datastore/ServerDataStoreService.h +++ b/src/mc/server/editor/services/datastore/ServerDataStoreService.h @@ -77,7 +77,7 @@ class ServerDataStoreService : public ::Editor::Services::DataStoreService { bool ); - MCAPI ::Json::Value + MCFOLD ::Json::Value $_getPayload(::HashedString const& dataTag, ::Editor::DataStore::PayloadDescription const&) const; // NOLINTEND diff --git a/src/mc/server/editor/services/export/EditorExportProjectManagerService.h b/src/mc/server/editor/services/export/EditorExportProjectManagerService.h index 7648948720..697e3aa439 100644 --- a/src/mc/server/editor/services/export/EditorExportProjectManagerService.h +++ b/src/mc/server/editor/services/export/EditorExportProjectManagerService.h @@ -65,9 +65,9 @@ class EditorExportProjectManagerService : public ::Editor::Services::IEditorServ public: // virtual function thunks // NOLINTBEGIN - MCAPI ::Scripting::Result $init(); + MCFOLD ::Scripting::Result $init(); - MCAPI ::Scripting::Result $quit(); + MCFOLD ::Scripting::Result $quit(); MCAPI ::std::string_view $getServiceName() const; @@ -77,7 +77,7 @@ class EditorExportProjectManagerService : public ::Editor::Services::IEditorServ ::std::function callback ); - MCAPI bool $canExportProject(); + MCFOLD bool $canExportProject(); // NOLINTEND public: diff --git a/src/mc/server/editor/services/input/ServerPlayerInputService.h b/src/mc/server/editor/services/input/ServerPlayerInputService.h index 5b5e3c1d3f..bf49c6b221 100644 --- a/src/mc/server/editor/services/input/ServerPlayerInputService.h +++ b/src/mc/server/editor/services/input/ServerPlayerInputService.h @@ -58,9 +58,9 @@ class ServerPlayerInputService : public ::Editor::Services::IEditorService, public: // virtual function thunks // NOLINTBEGIN - MCAPI ::Scripting::Result $init(); + MCFOLD ::Scripting::Result $init(); - MCAPI ::Scripting::Result $quit(); + MCFOLD ::Scripting::Result $quit(); MCAPI ::std::string_view $getServiceName() const; diff --git a/src/mc/server/editor/services/playtest/EditorPlaytestManagerService.h b/src/mc/server/editor/services/playtest/EditorPlaytestManagerService.h index 5402091ebe..6afb42c42d 100644 --- a/src/mc/server/editor/services/playtest/EditorPlaytestManagerService.h +++ b/src/mc/server/editor/services/playtest/EditorPlaytestManagerService.h @@ -129,9 +129,9 @@ class EditorPlaytestManagerService : public ::Editor::Services::IEditorService, public: // virtual function thunks // NOLINTBEGIN - MCAPI ::Scripting::Result $init(); + MCFOLD ::Scripting::Result $init(); - MCAPI ::Scripting::Result $quit(); + MCFOLD ::Scripting::Result $quit(); MCAPI ::std::string_view $getServiceName() const; diff --git a/src/mc/server/editor/services/settings/EditorServerSettingsService.h b/src/mc/server/editor/services/settings/EditorServerSettingsService.h index 0a53c1e71c..f3760004ca 100644 --- a/src/mc/server/editor/services/settings/EditorServerSettingsService.h +++ b/src/mc/server/editor/services/settings/EditorServerSettingsService.h @@ -119,7 +119,7 @@ class EditorServerSettingsService : public ::Editor::Services::EditorSettingsSer // NOLINTBEGIN MCAPI ::Scripting::Result $init(); - MCAPI ::Scripting::Result $quit(); + MCFOLD ::Scripting::Result $quit(); MCAPI ::std::string_view $getServiceName() const; diff --git a/src/mc/server/editor/transactions/BlockChangeIntentData.h b/src/mc/server/editor/transactions/BlockChangeIntentData.h index 1bd6c3878a..07171c4fd4 100644 --- a/src/mc/server/editor/transactions/BlockChangeIntentData.h +++ b/src/mc/server/editor/transactions/BlockChangeIntentData.h @@ -29,7 +29,7 @@ struct BlockChangeIntentData { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/server/editor/transactions/IOperation.h b/src/mc/server/editor/transactions/IOperation.h index a88211a5b2..4e0874423e 100644 --- a/src/mc/server/editor/transactions/IOperation.h +++ b/src/mc/server/editor/transactions/IOperation.h @@ -32,7 +32,7 @@ class IOperation { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND public: diff --git a/src/mc/server/editor/transactions/TransactionContext.h b/src/mc/server/editor/transactions/TransactionContext.h index 5c724f4d56..7e6acc027c 100644 --- a/src/mc/server/editor/transactions/TransactionContext.h +++ b/src/mc/server/editor/transactions/TransactionContext.h @@ -51,7 +51,7 @@ class TransactionContext { MCAPI ::Scripting::Result _undo(::Editor::ServiceProviderCollection& serviceProviders) const; - MCAPI void addOperation(::std::unique_ptr<::Editor::Transactions::IOperation> operation); + MCFOLD void addOperation(::std::unique_ptr<::Editor::Transactions::IOperation> operation); MCAPI void addPendingOperation(::std::unique_ptr<::Editor::Transactions::IPendingOperation> operation); diff --git a/src/mc/server/entity/utilities/ExternalDataServerLevel.h b/src/mc/server/entity/utilities/ExternalDataServerLevel.h index f295315b76..b426e995ae 100644 --- a/src/mc/server/entity/utilities/ExternalDataServerLevel.h +++ b/src/mc/server/entity/utilities/ExternalDataServerLevel.h @@ -78,19 +78,19 @@ struct ExternalDataServerLevel : public ::ExternalDataInterface { public: // virtual function thunks // NOLINTBEGIN - MCAPI bool $isInWorldAndNotShowingAnyMenuScreens() const; + MCFOLD bool $isInWorldAndNotShowingAnyMenuScreens() const; MCAPI ::AdventureSettings const& $getAdventureSettings() const; - MCAPI ::ClientPlayMode $getPlayMode() const; + MCFOLD ::ClientPlayMode $getPlayMode() const; - MCAPI float $getSmoothRotationSpeed() const; + MCFOLD float $getSmoothRotationSpeed() const; - MCAPI ::InputMode $getInputMode() const; + MCFOLD ::InputMode $getInputMode() const; MCAPI ::GameType $getDefaultGameType() const; - MCAPI ::Vec3 $getWorldSpaceVRRealityGazeDir() const; + MCFOLD ::Vec3 $getWorldSpaceVRRealityGazeDir() const; // NOLINTEND public: diff --git a/src/mc/server/module/VanillaGameModuleServer.h b/src/mc/server/module/VanillaGameModuleServer.h index b2b9942032..d06cb40365 100644 --- a/src/mc/server/module/VanillaGameModuleServer.h +++ b/src/mc/server/module/VanillaGameModuleServer.h @@ -141,12 +141,12 @@ class VanillaGameModuleServer : public ::GameModuleServer { ::std::optional<::gsl::not_null<::ServerScriptManager const*>> scriptManager ); - MCAPI void $configureNewPlayer(::Player& player); + MCFOLD void $configureNewPlayer(::Player& player); MCAPI void $configureDocumentation(::IGameModuleDocumentation& moduleDocumentation, ::ItemRegistryRef const docItemRegistry); - MCAPI void $tick(); + MCFOLD void $tick(); MCAPI void $setupCommands(::CommandRegistry& commandRegistry); diff --git a/src/mc/server/module/VanillaServerGameplayEventListener.h b/src/mc/server/module/VanillaServerGameplayEventListener.h index d52ddc3a35..1324e27223 100644 --- a/src/mc/server/module/VanillaServerGameplayEventListener.h +++ b/src/mc/server/module/VanillaServerGameplayEventListener.h @@ -64,9 +64,9 @@ class VanillaServerGameplayEventListener : public ::EventListenerDispatcher<::Ac public: // virtual function thunks // NOLINTBEGIN - MCAPI ::EventResult $onEvent(::ActorHurtEvent const& actorHurtEvent); + MCFOLD ::EventResult $onEvent(::ActorHurtEvent const& actorHurtEvent); - MCAPI ::EventResult $onEvent(::PlayerDamageEvent const& playerDamageEvent); + MCFOLD ::EventResult $onEvent(::PlayerDamageEvent const& playerDamageEvent); MCAPI ::EventResult $onEvent(::PlayerOpenContainerEvent const& playerOpenContainerEvent); diff --git a/src/mc/server/sim/MovementIntent.h b/src/mc/server/sim/MovementIntent.h index d302c6a4e7..331d6fb102 100644 --- a/src/mc/server/sim/MovementIntent.h +++ b/src/mc/server/sim/MovementIntent.h @@ -53,7 +53,7 @@ struct MovementIntent { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/server/sim/NavigateToPositionsIntent.h b/src/mc/server/sim/NavigateToPositionsIntent.h index cab4185ca6..1c915eee8b 100644 --- a/src/mc/server/sim/NavigateToPositionsIntent.h +++ b/src/mc/server/sim/NavigateToPositionsIntent.h @@ -38,7 +38,7 @@ struct NavigateToPositionsIntent { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/textobject/ResolvedTextObject.h b/src/mc/textobject/ResolvedTextObject.h index af3f442c3b..3b9b2c3892 100644 --- a/src/mc/textobject/ResolvedTextObject.h +++ b/src/mc/textobject/ResolvedTextObject.h @@ -25,7 +25,7 @@ class ResolvedTextObject { // NOLINTBEGIN MCAPI ::std::string getAsJsonString() const; - MCAPI ::Json::Value const& getJson() const; + MCFOLD ::Json::Value const& getJson() const; MCAPI ~ResolvedTextObject(); // NOLINTEND @@ -33,6 +33,6 @@ class ResolvedTextObject { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/textobject/TextObjectLocalizedText.h b/src/mc/textobject/TextObjectLocalizedText.h index 98acdae87f..5120cb2b9e 100644 --- a/src/mc/textobject/TextObjectLocalizedText.h +++ b/src/mc/textobject/TextObjectLocalizedText.h @@ -65,7 +65,7 @@ class TextObjectLocalizedText : public ::ITextObject { MCAPI ::Json::Value $asJsonValue() const; - MCAPI ::Json::Value $resolve(::ResolveData const& resolveData) const; + MCFOLD ::Json::Value $resolve(::ResolveData const& resolveData) const; // NOLINTEND public: diff --git a/src/mc/textobject/TextObjectParser.h b/src/mc/textobject/TextObjectParser.h index 4f6d547d63..7f5af842e9 100644 --- a/src/mc/textobject/TextObjectParser.h +++ b/src/mc/textobject/TextObjectParser.h @@ -78,7 +78,7 @@ class TextObjectParser { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/textobject/TextObjectRoot.h b/src/mc/textobject/TextObjectRoot.h index 127c1a69d4..16828eea1f 100644 --- a/src/mc/textobject/TextObjectRoot.h +++ b/src/mc/textobject/TextObjectRoot.h @@ -50,9 +50,9 @@ class TextObjectRoot : public ::ITextObject { MCAPI ::std::vector<::std::string> asStringVector() const; - MCAPI void clear(); + MCFOLD void clear(); - MCAPI bool isEmpty() const; + MCFOLD bool isEmpty() const; MCAPI ::ResolvedTextObject resolveRoot(::Actor const& actor, ::Scoreboard const& scoreboard) const; // NOLINTEND @@ -60,7 +60,7 @@ class TextObjectRoot : public ::ITextObject { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND public: diff --git a/src/mc/textobject/TextObjectScore.h b/src/mc/textobject/TextObjectScore.h index 1a7311e168..fd82bcc643 100644 --- a/src/mc/textobject/TextObjectScore.h +++ b/src/mc/textobject/TextObjectScore.h @@ -62,7 +62,7 @@ class TextObjectScore : public ::ITextObject { public: // virtual function thunks // NOLINTBEGIN - MCAPI ::std::string $asString() const; + MCFOLD ::std::string $asString() const; MCAPI ::Json::Value $asJsonValue() const; diff --git a/src/mc/textobject/TextObjectSelector.h b/src/mc/textobject/TextObjectSelector.h index c668d0c5f8..66f14a429c 100644 --- a/src/mc/textobject/TextObjectSelector.h +++ b/src/mc/textobject/TextObjectSelector.h @@ -57,7 +57,7 @@ class TextObjectSelector : public ::ITextObject { public: // virtual function thunks // NOLINTBEGIN - MCAPI ::std::string $asString() const; + MCFOLD ::std::string $asString() const; MCAPI ::Json::Value $asJsonValue() const; diff --git a/src/mc/textobject/TextObjectText.h b/src/mc/textobject/TextObjectText.h index a5f2eefdb4..b744d079f2 100644 --- a/src/mc/textobject/TextObjectText.h +++ b/src/mc/textobject/TextObjectText.h @@ -67,11 +67,11 @@ class TextObjectText : public ::ITextObject { public: // virtual function thunks // NOLINTBEGIN - MCAPI ::std::string $asString() const; + MCFOLD ::std::string $asString() const; MCAPI ::Json::Value $asJsonValue() const; - MCAPI ::Json::Value $resolve(::ResolveData const& resolveData) const; + MCFOLD ::Json::Value $resolve(::ResolveData const& resolveData) const; // NOLINTEND public: diff --git a/src/mc/util/BigEndianStringByteInput.h b/src/mc/util/BigEndianStringByteInput.h index 3fca0b04aa..128fff2243 100644 --- a/src/mc/util/BigEndianStringByteInput.h +++ b/src/mc/util/BigEndianStringByteInput.h @@ -38,7 +38,7 @@ class BigEndianStringByteInput : public ::StringByteInput { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND public: diff --git a/src/mc/util/BigEndianStringByteOutput.h b/src/mc/util/BigEndianStringByteOutput.h index ca6d43fd29..096998c515 100644 --- a/src/mc/util/BigEndianStringByteOutput.h +++ b/src/mc/util/BigEndianStringByteOutput.h @@ -31,7 +31,7 @@ class BigEndianStringByteOutput : public ::StringByteOutput { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND public: diff --git a/src/mc/util/BiomeLoadingUtil.h b/src/mc/util/BiomeLoadingUtil.h index 6068eef52e..ddbe076e44 100644 --- a/src/mc/util/BiomeLoadingUtil.h +++ b/src/mc/util/BiomeLoadingUtil.h @@ -16,7 +16,7 @@ namespace BiomeLoadingUtil { MCAPI void _doContentError(::std::string const& message, ::Core::Path const& filePath, ::std::vector<::std::string> const& errors); -MCAPI ::std::string _getUnrecognizedFieldText(::std::vector<::cereal::SerializerContext::LogEntry> const& schemaLog); +MCFOLD ::std::string _getUnrecognizedFieldText(::std::vector<::cereal::SerializerContext::LogEntry> const& schemaLog); // NOLINTEND } // namespace BiomeLoadingUtil diff --git a/src/mc/util/BlockCerealSchemaUpgrade.h b/src/mc/util/BlockCerealSchemaUpgrade.h index d3850c39cd..53a925a29a 100644 --- a/src/mc/util/BlockCerealSchemaUpgrade.h +++ b/src/mc/util/BlockCerealSchemaUpgrade.h @@ -38,7 +38,7 @@ class BlockCerealSchemaUpgrade : public ::CerealSchemaUpgrade { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND public: diff --git a/src/mc/util/BlockColorUtil.h b/src/mc/util/BlockColorUtil.h index e3dfbaa43c..6959396f9f 100644 --- a/src/mc/util/BlockColorUtil.h +++ b/src/mc/util/BlockColorUtil.h @@ -11,7 +11,7 @@ namespace BlockColorUtil { // NOLINTBEGIN MCAPI ::BlockColor fromInt(int auxValue); -MCAPI ::BlockColor fromItemColor(::ItemColor color); +MCFOLD ::BlockColor fromItemColor(::ItemColor color); MCAPI ::std::string const& getName(::BlockColor color); diff --git a/src/mc/util/CallbackToken.h b/src/mc/util/CallbackToken.h index 015c19d2db..557974c175 100644 --- a/src/mc/util/CallbackToken.h +++ b/src/mc/util/CallbackToken.h @@ -38,14 +38,14 @@ class CallbackToken { public: // constructor thunks // NOLINTBEGIN - MCAPI void* $ctor(); + MCFOLD void* $ctor(); - MCAPI void* $ctor(::std::weak_ptr<::CallbackTokenCancelState> cancelState); + MCFOLD void* $ctor(::std::weak_ptr<::CallbackTokenCancelState> cancelState); // NOLINTEND public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/util/CallbackTokenCancelState.h b/src/mc/util/CallbackTokenCancelState.h index a2a7c52912..7e807276ff 100644 --- a/src/mc/util/CallbackTokenCancelState.h +++ b/src/mc/util/CallbackTokenCancelState.h @@ -25,6 +25,6 @@ class CallbackTokenCancelState { public: // constructor thunks // NOLINTBEGIN - MCAPI void* $ctor(); + MCFOLD void* $ctor(); // NOLINTEND }; diff --git a/src/mc/util/CerealSchemaDeprecate.h b/src/mc/util/CerealSchemaDeprecate.h index 62a5320acc..ee97b29084 100644 --- a/src/mc/util/CerealSchemaDeprecate.h +++ b/src/mc/util/CerealSchemaDeprecate.h @@ -70,9 +70,9 @@ class CerealSchemaDeprecate : public ::CerealSchemaUpgrade { public: // virtual function thunks // NOLINTBEGIN - MCAPI bool $previousSchema(::rapidjson::GenericValue< - ::rapidjson::UTF8, - ::rapidjson::MemoryPoolAllocator<::rapidjson::CrtAllocator>> const&) const; + MCFOLD bool $previousSchema(::rapidjson::GenericValue< + ::rapidjson::UTF8, + ::rapidjson::MemoryPoolAllocator<::rapidjson::CrtAllocator>> const&) const; MCAPI void $upgradeToNext( ::rapidjson::GenericDocument< diff --git a/src/mc/util/CerealSchemaUpgrade.h b/src/mc/util/CerealSchemaUpgrade.h index 0a9607d3e2..b6221427ee 100644 --- a/src/mc/util/CerealSchemaUpgrade.h +++ b/src/mc/util/CerealSchemaUpgrade.h @@ -73,13 +73,13 @@ class CerealSchemaUpgrade { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND public: // virtual function thunks // NOLINTBEGIN - MCAPI void + MCFOLD void $upgradeToNext(::rapidjson::GenericDocument<::rapidjson::UTF8, ::rapidjson::MemoryPoolAllocator<::rapidjson::CrtAllocator>, ::rapidjson::CrtAllocator>&, ::SemVersion const&) const; // NOLINTEND diff --git a/src/mc/util/CerealSchemaUpgradeSet.h b/src/mc/util/CerealSchemaUpgradeSet.h index 358cf2ee19..fd33976bbf 100644 --- a/src/mc/util/CerealSchemaUpgradeSet.h +++ b/src/mc/util/CerealSchemaUpgradeSet.h @@ -31,6 +31,6 @@ class CerealSchemaUpgradeSet { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/util/CompoundTagUpdater.h b/src/mc/util/CompoundTagUpdater.h index b2b3ff5964..5d61c1d4bc 100644 --- a/src/mc/util/CompoundTagUpdater.h +++ b/src/mc/util/CompoundTagUpdater.h @@ -61,6 +61,6 @@ class CompoundTagUpdater { // NOLINTBEGIN MCAPI bool _update(::CompoundTagUpdater::Node const& node, ::CompoundTag& tag) const; - MCAPI uint getVersion() const; + MCFOLD uint getVersion() const; // NOLINTEND }; diff --git a/src/mc/util/ConstDeserializeDataParams.h b/src/mc/util/ConstDeserializeDataParams.h index 5fccf2ca71..992afc9ffc 100644 --- a/src/mc/util/ConstDeserializeDataParams.h +++ b/src/mc/util/ConstDeserializeDataParams.h @@ -26,6 +26,6 @@ struct ConstDeserializeDataParams { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/util/DataDrivenVanillaBlocksAndItemsUtil.h b/src/mc/util/DataDrivenVanillaBlocksAndItemsUtil.h index d0191a4e5e..eb6b2d75cc 100644 --- a/src/mc/util/DataDrivenVanillaBlocksAndItemsUtil.h +++ b/src/mc/util/DataDrivenVanillaBlocksAndItemsUtil.h @@ -10,7 +10,7 @@ class Experiments; namespace DataDrivenVanillaBlocksAndItemsUtil { // functions // NOLINTBEGIN -MCAPI bool isEnabled(::Experiments const& experiments); +MCFOLD bool isEnabled(::Experiments const& experiments); // NOLINTEND } // namespace DataDrivenVanillaBlocksAndItemsUtil diff --git a/src/mc/util/DeserializeDataParams.h b/src/mc/util/DeserializeDataParams.h index 573569d902..fde33502e8 100644 --- a/src/mc/util/DeserializeDataParams.h +++ b/src/mc/util/DeserializeDataParams.h @@ -61,6 +61,6 @@ struct DeserializeDataParams { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/util/ExpressionNode.h b/src/mc/util/ExpressionNode.h index bf7910b73d..215dcedb18 100644 --- a/src/mc/util/ExpressionNode.h +++ b/src/mc/util/ExpressionNode.h @@ -86,7 +86,7 @@ class ExpressionNode { MCAPI bool _buildTree(::ExpressionOpBitField const& usedTokenFlags, ::MolangVersion molangVersion); - MCAPI bool _checkAllOperationsAreValid() const; + MCFOLD bool _checkAllOperationsAreValid() const; MCAPI bool _hasDisallowedQueryPtrs( ::std::vector<::std::function< @@ -133,7 +133,7 @@ class ExpressionNode { MCAPI ::std::string const& getExpressionString(); - MCAPI ::MolangVersion const getMolangVersion() const; + MCFOLD ::MolangVersion const getMolangVersion() const; MCAPI uint64 getTreeHash(bool sideEffectsReturnZero) const; @@ -147,7 +147,7 @@ class ExpressionNode { MCAPI bool isInitialized() const; - MCAPI bool isValid() const; + MCFOLD bool isValid() const; MCAPI ::MolangCompileResult link() const; diff --git a/src/mc/util/ExpressionNodeCerealConstraint.h b/src/mc/util/ExpressionNodeCerealConstraint.h index efdb2b44f5..6a3b4de502 100644 --- a/src/mc/util/ExpressionNodeCerealConstraint.h +++ b/src/mc/util/ExpressionNodeCerealConstraint.h @@ -50,7 +50,7 @@ class ExpressionNodeCerealConstraint : public ::cereal::Constraint { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND public: @@ -58,7 +58,7 @@ class ExpressionNodeCerealConstraint : public ::cereal::Constraint { // NOLINTBEGIN MCAPI void $doValidate(::entt::meta_any const& any, ::cereal::SerializerContext& context) const; - MCAPI ::cereal::internal::ConstraintDescription $description() const; + MCFOLD ::cereal::internal::ConstraintDescription $description() const; // NOLINTEND public: diff --git a/src/mc/util/ExternalHandlers.h b/src/mc/util/ExternalHandlers.h index 8171bd34cb..6ae1d2eea9 100644 --- a/src/mc/util/ExternalHandlers.h +++ b/src/mc/util/ExternalHandlers.h @@ -28,7 +28,7 @@ MCAPI void executeBlockEvent(::Block const* block, ::std::string const& name, :: MCAPI void executeBlockTrigger(::Block const& block, ::DefinitionTrigger const& trigger, ::RenderParams& params); -MCAPI void executeEventResponse(::EventResponse const& response, ::RenderParams& params); +MCFOLD void executeEventResponse(::EventResponse const& response, ::RenderParams& params); MCAPI bool executeItemStackEvent(::ItemStackBase& item, ::std::string const& name, ::RenderParams& params); // NOLINTEND diff --git a/src/mc/util/FileChunkInfo.h b/src/mc/util/FileChunkInfo.h index c35f942589..75367a9709 100644 --- a/src/mc/util/FileChunkInfo.h +++ b/src/mc/util/FileChunkInfo.h @@ -30,6 +30,6 @@ struct FileChunkInfo { public: // constructor thunks // NOLINTBEGIN - MCAPI void* $ctor(int _chunk, uint64 _startByte, uint64 _endByte); + MCFOLD void* $ctor(int _chunk, uint64 _startByte, uint64 _endByte); // NOLINTEND }; diff --git a/src/mc/util/FileChunkManager.h b/src/mc/util/FileChunkManager.h index 0ef5e35972..8dc8294a8f 100644 --- a/src/mc/util/FileChunkManager.h +++ b/src/mc/util/FileChunkManager.h @@ -35,9 +35,9 @@ class FileChunkManager { MCAPI ::FileChunkInfo getChunkInfo(int chunkID) const; - MCAPI ::std::vector<::FileChunkInfo> const& getChunks() const; + MCFOLD ::std::vector<::FileChunkInfo> const& getChunks() const; - MCAPI int getTotalNumberOfChunks(); + MCFOLD int getTotalNumberOfChunks(); MCAPI void reset(); diff --git a/src/mc/util/FileInfo.h b/src/mc/util/FileInfo.h index 4cd970f028..1d0d515f1a 100644 --- a/src/mc/util/FileInfo.h +++ b/src/mc/util/FileInfo.h @@ -39,6 +39,6 @@ struct FileInfo { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/util/FilePickerSettings.h b/src/mc/util/FilePickerSettings.h index 562b8a7015..1d64d1514e 100644 --- a/src/mc/util/FilePickerSettings.h +++ b/src/mc/util/FilePickerSettings.h @@ -33,7 +33,7 @@ class FilePickerSettings { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/util/FileUploadManager.h b/src/mc/util/FileUploadManager.h index 2891022dec..95c1d59d65 100644 --- a/src/mc/util/FileUploadManager.h +++ b/src/mc/util/FileUploadManager.h @@ -50,7 +50,7 @@ class FileUploadManager : public ::std::enable_shared_from_this<::FileUploadMana public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/util/FloatRange.h b/src/mc/util/FloatRange.h index 0422821788..079c2259c4 100644 --- a/src/mc/util/FloatRange.h +++ b/src/mc/util/FloatRange.h @@ -25,7 +25,7 @@ struct FloatRange { public: // member functions // NOLINTBEGIN - MCAPI float getValue(::Random& random) const; + MCFOLD float getValue(::Random& random) const; MCAPI bool parseJson(::Json::Value const& node, float minDefault, float maxDefault); // NOLINTEND diff --git a/src/mc/util/IFileChunkUploader.h b/src/mc/util/IFileChunkUploader.h index 6a6763130f..353d450ade 100644 --- a/src/mc/util/IFileChunkUploader.h +++ b/src/mc/util/IFileChunkUploader.h @@ -113,14 +113,14 @@ class IFileChunkUploader { public: // virtual function thunks // NOLINTBEGIN - MCAPI void $update(); + MCFOLD void $update(); MCAPI void $getServerMissingChunks( ::FileInfo const& file, ::std::function)> callback ) const; - MCAPI void $confirmChunkReceived(::FileInfo const& file, ::FileChunkInfo const& chunk); + MCFOLD void $confirmChunkReceived(::FileInfo const& file, ::FileChunkInfo const& chunk); MCAPI void $uploadChunk( ::FileInfo const& file, diff --git a/src/mc/util/IndexSet.h b/src/mc/util/IndexSet.h index 36bf2de343..f5f0f785d5 100644 --- a/src/mc/util/IndexSet.h +++ b/src/mc/util/IndexSet.h @@ -25,7 +25,7 @@ class IndexSet { MCAPI bool contains(uint64 index) const; - MCAPI ::std::vector const& getPacked() const; + MCFOLD ::std::vector const& getPacked() const; MCAPI void insert(uint64 index); @@ -39,7 +39,7 @@ class IndexSet { public: // constructor thunks // NOLINTBEGIN - MCAPI void* $ctor(); + MCFOLD void* $ctor(); MCAPI void* $ctor(::IndexSet const& other); @@ -49,6 +49,6 @@ class IndexSet { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/util/IntRange.h b/src/mc/util/IntRange.h index a322f063d4..8fb4be7769 100644 --- a/src/mc/util/IntRange.h +++ b/src/mc/util/IntRange.h @@ -30,9 +30,9 @@ struct IntRange { MCAPI IntRange(int min, int max); - MCAPI int getValue(::Random& random) const; + MCFOLD int getValue(::Random& random) const; - MCAPI int getValueInclusive(::Random& random) const; + MCFOLD int getValueInclusive(::Random& random) const; MCAPI int getValueInclusive(::Randomize& randomize) const; @@ -50,8 +50,8 @@ struct IntRange { public: // constructor thunks // NOLINTBEGIN - MCAPI void* $ctor(int value); + MCFOLD void* $ctor(int value); - MCAPI void* $ctor(int min, int max); + MCFOLD void* $ctor(int min, int max); // NOLINTEND }; diff --git a/src/mc/util/ItemCerealSchemaUpgrade.h b/src/mc/util/ItemCerealSchemaUpgrade.h index 9ab487a084..a3f81c1235 100644 --- a/src/mc/util/ItemCerealSchemaUpgrade.h +++ b/src/mc/util/ItemCerealSchemaUpgrade.h @@ -38,7 +38,7 @@ class ItemCerealSchemaUpgrade : public ::CerealSchemaUpgrade { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND public: diff --git a/src/mc/util/ItemColorUtil.h b/src/mc/util/ItemColorUtil.h index 2a5c91f53a..ece88961e9 100644 --- a/src/mc/util/ItemColorUtil.h +++ b/src/mc/util/ItemColorUtil.h @@ -14,7 +14,7 @@ namespace mce { class Color; } namespace ItemColorUtil { // functions // NOLINTBEGIN -MCAPI ::ItemColor fromBlockColor(::BlockColor color); +MCFOLD ::ItemColor fromBlockColor(::BlockColor color); MCAPI ::ItemColor fromColor(::mce::Color const& color); diff --git a/src/mc/util/MolangActorArrayPtr.h b/src/mc/util/MolangActorArrayPtr.h index ac7994907a..5a840f0201 100644 --- a/src/mc/util/MolangActorArrayPtr.h +++ b/src/mc/util/MolangActorArrayPtr.h @@ -25,12 +25,12 @@ struct MolangActorArrayPtr { public: // constructor thunks // NOLINTBEGIN - MCAPI void* $ctor(::std::vector<::Actor*> actors); + MCFOLD void* $ctor(::std::vector<::Actor*> actors); // NOLINTEND public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/util/MolangActorIdArrayPtr.h b/src/mc/util/MolangActorIdArrayPtr.h index 8c6e319c26..5d706e5d0c 100644 --- a/src/mc/util/MolangActorIdArrayPtr.h +++ b/src/mc/util/MolangActorIdArrayPtr.h @@ -25,12 +25,12 @@ struct MolangActorIdArrayPtr { public: // constructor thunks // NOLINTBEGIN - MCAPI void* $ctor(::std::vector<::ActorUniqueID> actorIds); + MCFOLD void* $ctor(::std::vector<::ActorUniqueID> actorIds); // NOLINTEND public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/util/MolangArrayVariable.h b/src/mc/util/MolangArrayVariable.h index 70d92b14ab..0e35bb5005 100644 --- a/src/mc/util/MolangArrayVariable.h +++ b/src/mc/util/MolangArrayVariable.h @@ -15,6 +15,6 @@ struct MolangArrayVariable : public ::MolangHashStringVariable<::MolangArrayVari public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/util/MolangContextVariable.h b/src/mc/util/MolangContextVariable.h index a7fdbfc120..db00909d1e 100644 --- a/src/mc/util/MolangContextVariable.h +++ b/src/mc/util/MolangContextVariable.h @@ -35,6 +35,6 @@ struct MolangContextVariable : public ::MolangHashStringVariable<::MolangContext public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/util/MolangDataDrivenGeometry.h b/src/mc/util/MolangDataDrivenGeometry.h index b21dec2423..b73291ed81 100644 --- a/src/mc/util/MolangDataDrivenGeometry.h +++ b/src/mc/util/MolangDataDrivenGeometry.h @@ -19,7 +19,7 @@ struct MolangDataDrivenGeometry { public: // member functions // NOLINTBEGIN - MCAPI bool operator==(::MolangDataDrivenGeometry const& rhs) const; + MCFOLD bool operator==(::MolangDataDrivenGeometry const& rhs) const; MCAPI ~MolangDataDrivenGeometry(); // NOLINTEND @@ -27,6 +27,6 @@ struct MolangDataDrivenGeometry { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/util/MolangEntityVariable.h b/src/mc/util/MolangEntityVariable.h index 398440f1c3..09930e0f32 100644 --- a/src/mc/util/MolangEntityVariable.h +++ b/src/mc/util/MolangEntityVariable.h @@ -35,6 +35,6 @@ struct MolangEntityVariable : public ::MolangHashStringVariable<::MolangEntityVa public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/util/MolangGeometryVariable.h b/src/mc/util/MolangGeometryVariable.h index a6e1c7b612..7e73096f71 100644 --- a/src/mc/util/MolangGeometryVariable.h +++ b/src/mc/util/MolangGeometryVariable.h @@ -15,6 +15,6 @@ struct MolangGeometryVariable : public ::MolangHashStringVariable<::MolangGeomet public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/util/MolangJsonContainer.h b/src/mc/util/MolangJsonContainer.h index 583877f2cf..6c608db7aa 100644 --- a/src/mc/util/MolangJsonContainer.h +++ b/src/mc/util/MolangJsonContainer.h @@ -51,6 +51,6 @@ struct MolangJsonContainer { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/util/MolangMaterialVariable.h b/src/mc/util/MolangMaterialVariable.h index 2f69a0b536..382bbe3f59 100644 --- a/src/mc/util/MolangMaterialVariable.h +++ b/src/mc/util/MolangMaterialVariable.h @@ -15,6 +15,6 @@ struct MolangMaterialVariable : public ::MolangHashStringVariable<::MolangMateri public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/util/MolangMemberAccessor.h b/src/mc/util/MolangMemberAccessor.h index 9855102746..60e92c758f 100644 --- a/src/mc/util/MolangMemberAccessor.h +++ b/src/mc/util/MolangMemberAccessor.h @@ -15,6 +15,6 @@ struct MolangMemberAccessor : public ::MolangHashStringVariable<::MolangMemberAc public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/util/MolangMemberArray.h b/src/mc/util/MolangMemberArray.h index e11be4ce44..2a68c39e4c 100644 --- a/src/mc/util/MolangMemberArray.h +++ b/src/mc/util/MolangMemberArray.h @@ -73,7 +73,7 @@ struct MolangMemberArray { MCAPI ::MolangScriptArg const* get(::HashedString const& name) const; - MCAPI ::std::vector<::MolangMemberVariable> const& getMembers() const; + MCFOLD ::std::vector<::MolangMemberVariable> const& getMembers() const; MCAPI ::MolangScriptArg& getOrAdd(::HashedString const& name); @@ -91,7 +91,7 @@ struct MolangMemberArray { public: // constructor thunks // NOLINTBEGIN - MCAPI void* $ctor(); + MCFOLD void* $ctor(); MCAPI void* $ctor(::MolangMemberArray const&); diff --git a/src/mc/util/MolangQueryFunctionPtr.h b/src/mc/util/MolangQueryFunctionPtr.h index 86cd262d5c..c80c6f1e6d 100644 --- a/src/mc/util/MolangQueryFunctionPtr.h +++ b/src/mc/util/MolangQueryFunctionPtr.h @@ -35,6 +35,6 @@ struct MolangQueryFunctionPtr { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/util/MolangScriptArg.h b/src/mc/util/MolangScriptArg.h index 5643d02ebe..0dcdb22c71 100644 --- a/src/mc/util/MolangScriptArg.h +++ b/src/mc/util/MolangScriptArg.h @@ -60,21 +60,15 @@ struct MolangScriptArg { // NOLINTBEGIN MCAPI MolangScriptArg(); - MCAPI explicit MolangScriptArg(::MolangMatrix const&); - MCAPI MolangScriptArg(::MolangScriptArg&&); MCAPI MolangScriptArg(::MolangScriptArg const&); MCAPI explicit MolangScriptArg(float value); - MCAPI explicit MolangScriptArg(::MolangActorIdArrayPtr const&); - - MCAPI explicit MolangScriptArg(::MolangMemberArray const&); - MCAPI ::MolangMemberArray* getAsNonConstMolangMemberArray(); - MCAPI ::MolangScriptArgType getBaseType() const; + MCFOLD ::MolangScriptArgType getBaseType() const; MCAPI bool isEqual(::MolangScriptArg const& rhs) const; @@ -86,7 +80,7 @@ struct MolangScriptArg { MCAPI void reportGetFailure() const; - MCAPI void setType(::MolangScriptArgType type); + MCFOLD void setType(::MolangScriptArgType type); MCAPI ~MolangScriptArg(); // NOLINTEND @@ -114,17 +108,11 @@ struct MolangScriptArg { // NOLINTBEGIN MCAPI void* $ctor(); - MCAPI void* $ctor(::MolangMatrix const&); - MCAPI void* $ctor(::MolangScriptArg&&); MCAPI void* $ctor(::MolangScriptArg const&); MCAPI void* $ctor(float value); - - MCAPI void* $ctor(::MolangActorIdArrayPtr const&); - - MCAPI void* $ctor(::MolangMemberArray const&); // NOLINTEND public: diff --git a/src/mc/util/MolangTempVariable.h b/src/mc/util/MolangTempVariable.h index 1e8a9b1eae..781f3ac2a1 100644 --- a/src/mc/util/MolangTempVariable.h +++ b/src/mc/util/MolangTempVariable.h @@ -35,6 +35,6 @@ struct MolangTempVariable : public ::MolangHashStringVariable<::MolangTempVariab public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/util/MolangTextureVariable.h b/src/mc/util/MolangTextureVariable.h index faa443f18a..be10502dc8 100644 --- a/src/mc/util/MolangTextureVariable.h +++ b/src/mc/util/MolangTextureVariable.h @@ -15,6 +15,6 @@ struct MolangTextureVariable : public ::MolangHashStringVariable<::MolangTexture public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/util/MolangVariableMap.h b/src/mc/util/MolangVariableMap.h index f391f089b8..700572ca31 100644 --- a/src/mc/util/MolangVariableMap.h +++ b/src/mc/util/MolangVariableMap.h @@ -44,7 +44,7 @@ class MolangVariableMap { MCAPI ::MolangScriptArg const& getMolangVariable(uint64 const& variableNameHash, bool& doesVariableExist) const; - MCAPI ::std::vector<::std::unique_ptr<::MolangVariable>> const& getVariables() const; + MCFOLD ::std::vector<::std::unique_ptr<::MolangVariable>> const& getVariables() const; MCAPI ::MolangVariableMap& operator=(::MolangVariableMap&& rhs); diff --git a/src/mc/util/NamedMolangScript.h b/src/mc/util/NamedMolangScript.h index 4fb42d34a4..a984c028ed 100644 --- a/src/mc/util/NamedMolangScript.h +++ b/src/mc/util/NamedMolangScript.h @@ -25,6 +25,6 @@ struct NamedMolangScript { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/util/PauseChecks.h b/src/mc/util/PauseChecks.h index ac3bfacd3e..79034c3dd1 100644 --- a/src/mc/util/PauseChecks.h +++ b/src/mc/util/PauseChecks.h @@ -12,9 +12,9 @@ struct PauseChecks { public: // static functions // NOLINTBEGIN - MCAPI static bool isActorTickPaused(::Actor const& actor); + MCFOLD static bool isActorTickPaused(::Actor const& actor); - MCAPI static bool isAnimationPaused(::Actor const& actor); + MCFOLD static bool isAnimationPaused(::Actor const& actor); MCAPI static bool isMobSpawningPaused(::ILevel const& level); // NOLINTEND diff --git a/src/mc/util/PauseManager.h b/src/mc/util/PauseManager.h index 56beae2d85..9c6608ba3f 100644 --- a/src/mc/util/PauseManager.h +++ b/src/mc/util/PauseManager.h @@ -23,7 +23,7 @@ class PauseManager { public: // member functions // NOLINTBEGIN - MCAPI ::SimulationType getSimulationType() const; + MCFOLD ::SimulationType getSimulationType() const; MCAPI void setSimulationType(::SimulationType simulationType); // NOLINTEND diff --git a/src/mc/util/PerfContextTracker.h b/src/mc/util/PerfContextTracker.h index f22c71ee21..6e680a4dd5 100644 --- a/src/mc/util/PerfContextTracker.h +++ b/src/mc/util/PerfContextTracker.h @@ -53,7 +53,7 @@ class PerfContextTracker { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND public: diff --git a/src/mc/util/PerfContextTrackerReport.h b/src/mc/util/PerfContextTrackerReport.h index d4c4365272..8f9cab5ebb 100644 --- a/src/mc/util/PerfContextTrackerReport.h +++ b/src/mc/util/PerfContextTrackerReport.h @@ -44,6 +44,6 @@ class PerfContextTrackerReport { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/util/PrintStream.h b/src/mc/util/PrintStream.h index 814ab50147..75e4fe6a1d 100644 --- a/src/mc/util/PrintStream.h +++ b/src/mc/util/PrintStream.h @@ -22,7 +22,7 @@ class PrintStream { public: // virtual function thunks // NOLINTBEGIN - MCAPI void $print(::std::string const& s); + MCFOLD void $print(::std::string const& s); // NOLINTEND public: diff --git a/src/mc/util/ProfilerLite.h b/src/mc/util/ProfilerLite.h index ffe27a9d44..daa3d87afc 100644 --- a/src/mc/util/ProfilerLite.h +++ b/src/mc/util/ProfilerLite.h @@ -2,6 +2,16 @@ #include "mc/_HeaderOutputPredefine.h" +// auto generated inclusion list +#include "mc/deps/core/file/PathBuffer.h" + +// auto generated forward declare list +// clang-format off +class _ProfilerLiteTimer; +struct ProfilerLiteTelemetry; +namespace Core { class OutputFileStream; } +// clang-format on + class ProfilerLite { public: // ProfilerLite inner types declare @@ -69,7 +79,7 @@ class ProfilerLite { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; @@ -96,51 +106,46 @@ class ProfilerLite { public: // member variables // NOLINTBEGIN - ::ll::UntypedStorage<8, 144> mUnkdc322a; - ::ll::UntypedStorage<8, 96> mUnke02755; - ::ll::UntypedStorage<8, 32> mUnke8d928; - ::ll::UntypedStorage<8, 296> mUnkb301d1; - ::ll::UntypedStorage<8, 32> mUnk73f06f; - ::ll::UntypedStorage<8, 296> mUnk9779b9; - ::ll::UntypedStorage<8, 32> mUnk45e7e5; - ::ll::UntypedStorage<8, 296> mUnk4e6fae; - ::ll::UntypedStorage<8, 32> mUnk91563b; - ::ll::UntypedStorage<8, 296> mUnk7b9cc6; - ::ll::UntypedStorage<8, 32> mUnk7a9c00; - ::ll::UntypedStorage<8, 296> mUnk73e205; - ::ll::UntypedStorage<8, 32> mUnk948d84; - ::ll::UntypedStorage<8, 296> mUnkeb990e; - ::ll::UntypedStorage<4, 4> mUnk679280; - ::ll::UntypedStorage<8, 8> mUnkf7c578; - ::ll::UntypedStorage<8, 8> mUnka1ba5d; - ::ll::UntypedStorage<8, 8> mUnk410714; - ::ll::UntypedStorage<8, 8> mUnk94b9e5; - ::ll::UntypedStorage<8, 8> mUnk8d502c; - ::ll::UntypedStorage<1, 1> mUnk52676e; - ::ll::UntypedStorage<1, 1> mUnk1751f9; - ::ll::UntypedStorage<1, 1> mUnk4d26c4; - ::ll::UntypedStorage<1, 1> mUnka296e3; - ::ll::UntypedStorage<1, 1> mUnka27805; - ::ll::UntypedStorage<1, 1> mUnkbe1dc2; - ::ll::UntypedStorage<8, 8> mUnk9e2e66; - ::ll::UntypedStorage<8, 16> mUnk5b98bf; - ::ll::UntypedStorage<8, 32> mUnk6251e2; - ::ll::UntypedStorage<8, 8> mUnkfa2d7b; - ::ll::UntypedStorage<8, 8> mUnkd9eb8e; - ::ll::UntypedStorage<4, 4> mUnkec0797; - ::ll::UntypedStorage<4, 44> mUnkcdff15; - ::ll::UntypedStorage<8, 32> mUnk3acfcb; - ::ll::UntypedStorage<4, 16> mUnkbee98d; - ::ll::UntypedStorage<8, 8> mUnk2a36d3; - ::ll::UntypedStorage<8, 8> mUnk576846; - ::ll::UntypedStorage<8, 40> mUnk46b161; + ::ll::TypedStorage<8, 144, ::std::array<::ProfilerLite::ScopedData*, 18>> mCustomScopeDatas; + ::ll::TypedStorage<8, 96, ::ProfilerLite::ScopedData> mUninitializedScopedData; + ::ll::TypedStorage<8, 32, ::Core::PathBuffer<::std::string>> mLogFileName; + ::ll::TypedStorage<8, 296, ::Core::OutputFileStream> mLogFile; + ::ll::TypedStorage<8, 32, ::Core::PathBuffer<::std::string>> mScreenLoadLogFileName; + ::ll::TypedStorage<8, 296, ::Core::OutputFileStream> mScreenLoadLogFile; + ::ll::TypedStorage<8, 32, ::Core::PathBuffer<::std::string>> mEventLogFileName; + ::ll::TypedStorage<8, 296, ::Core::OutputFileStream> mEventLogFile; + ::ll::TypedStorage<8, 32, ::Core::PathBuffer<::std::string>> mSecondaryLogFileName; + ::ll::TypedStorage<8, 296, ::Core::OutputFileStream> mSecondaryLogFile; + ::ll::TypedStorage<8, 32, ::Core::PathBuffer<::std::string>> mSecondaryScreenLoadLogFileName; + ::ll::TypedStorage<8, 296, ::Core::OutputFileStream> mSecondaryScreenLoadLogFile; + ::ll::TypedStorage<8, 32, ::Core::PathBuffer<::std::string>> mSecondaryEventLogFileName; + ::ll::TypedStorage<8, 296, ::Core::OutputFileStream> mSecondaryEventLogFile; + ::ll::TypedStorage<4, 4, float> mSecondsPerUpdate; + ::ll::TypedStorage<8, 8, double> mTime; + ::ll::TypedStorage<8, 8, double> mStartTime; + ::ll::TypedStorage<8, 8, double> mNextUpdateTime; + ::ll::TypedStorage<8, 8, double> mLastUpdateTime; + ::ll::TypedStorage<8, 8, double> mBenchmarkModeTime; + ::ll::TypedStorage<1, 1, bool> mBenchmarkModeDone; + ::ll::TypedStorage<1, 1, bool> mBenchmarkModeIsSetup; + ::ll::TypedStorage<1, 1, bool> mDefaultEnabled; + ::ll::TypedStorage<1, 1, bool> mForceEnabled; + ::ll::TypedStorage<1, 1, bool> mShouldCheckTreatments; + ::ll::TypedStorage<1, 1, bool> mCanLogToSecondaryFile; + ::ll::TypedStorage<8, 8, ::_ProfilerLiteTimer*> mActiveScope; + ::ll::TypedStorage<8, 16, ::std::map<::std::thread::id, ::_ProfilerLiteTimer*>> mThreadedActiveScopes; + ::ll::TypedStorage<8, 32, ::std::string> mCurrentGamestate; + ::ll::TypedStorage<8, 8, ::std::chrono::nanoseconds> mDebugServerTickTime; + ::ll::TypedStorage<8, 8, ::std::chrono::nanoseconds> mDebugServerNetworkTime; + ::ll::TypedStorage<4, 4, float> mDebugRemoteServerTickTime; + ::ll::TypedStorage<4, 44, ::ProfilerLiteTelemetry> mTelemetry; + ::ll::TypedStorage<8, 32, ::std::string> mCachedProfileString; + ::ll::TypedStorage<4, 16, ::std::array> mLastNetworkStatSampleNum; + ::ll::TypedStorage<8, 8, uint64> mPrevTotalBytesWritten; + ::ll::TypedStorage<8, 8, uint64> mPrevTotalBytesRead; + ::ll::TypedStorage<8, 40, ::ProfilerLite::RealtimeFrameData> mFrameData; // NOLINTEND -public: - // prevent constructor by default - ProfilerLite& operator=(ProfilerLite const&); - ProfilerLite(ProfilerLite const&); - public: // member functions // NOLINTBEGIN diff --git a/src/mc/util/RakDataInput.h b/src/mc/util/RakDataInput.h index 7e022c4c39..eebcd19b30 100644 --- a/src/mc/util/RakDataInput.h +++ b/src/mc/util/RakDataInput.h @@ -34,7 +34,7 @@ class RakDataInput : public ::BytesDataInput { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND public: diff --git a/src/mc/util/RakDataOutput.h b/src/mc/util/RakDataOutput.h index 936b0acb1e..33e7f96a17 100644 --- a/src/mc/util/RakDataOutput.h +++ b/src/mc/util/RakDataOutput.h @@ -30,7 +30,7 @@ class RakDataOutput : public ::BytesDataOutput { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND public: diff --git a/src/mc/util/Randomize.h b/src/mc/util/Randomize.h index 767c214e77..3f16cf0a8d 100644 --- a/src/mc/util/Randomize.h +++ b/src/mc/util/Randomize.h @@ -56,6 +56,6 @@ class Randomize { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/util/ServerFileChunkUploader.h b/src/mc/util/ServerFileChunkUploader.h index 0796730d30..e6c89ca08e 100644 --- a/src/mc/util/ServerFileChunkUploader.h +++ b/src/mc/util/ServerFileChunkUploader.h @@ -91,7 +91,7 @@ class ServerFileChunkUploader : public ::IFileChunkUploader, public: // virtual function thunks // NOLINTBEGIN - MCAPI void $update(); + MCFOLD void $update(); MCAPI void $initFileUploader( ::std::string const& uploadId, @@ -106,7 +106,7 @@ class ServerFileChunkUploader : public ::IFileChunkUploader, ::std::function)> callback ) const; - MCAPI void $confirmChunkReceived(::FileInfo const& file, ::FileChunkInfo const& chunk); + MCFOLD void $confirmChunkReceived(::FileInfo const& file, ::FileChunkInfo const& chunk); MCAPI void $uploadChunk( ::FileInfo const& file, @@ -115,13 +115,13 @@ class ServerFileChunkUploader : public ::IFileChunkUploader, ::std::function onCompleteCallback ); - MCAPI bool $canCancelUpload(::FileInfo const& file) const; + MCFOLD bool $canCancelUpload(::FileInfo const& file) const; - MCAPI void $cancelUpload(::FileInfo const& file); + MCFOLD void $cancelUpload(::FileInfo const& file); - MCAPI ::UploadError $getInitErrorCode() const; + MCFOLD ::UploadError $getInitErrorCode() const; - MCAPI float $getUploadProgress(::FileInfo const& file) const; + MCFOLD float $getUploadProgress(::FileInfo const& file) const; MCAPI ::FileChunkInfo $getChunkInfo(::FileInfo const& file, int chunkID) const; // NOLINTEND diff --git a/src/mc/util/SimpleRandom.h b/src/mc/util/SimpleRandom.h index 70f61ab2af..7e48375a53 100644 --- a/src/mc/util/SimpleRandom.h +++ b/src/mc/util/SimpleRandom.h @@ -90,7 +90,7 @@ class SimpleRandom : public ::IRandom, public ::IRandomSeeded { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND public: @@ -120,7 +120,7 @@ class SimpleRandom : public ::IRandom, public ::IRandomSeeded { MCAPI void $setSeed(::Seed128Bit seed); - MCAPI int64 $seed64() const; + MCFOLD int64 $seed64() const; MCAPI ::Seed128Bit $seed128() const; // NOLINTEND diff --git a/src/mc/util/StringByteInput.h b/src/mc/util/StringByteInput.h index 572409547e..84b76b4269 100644 --- a/src/mc/util/StringByteInput.h +++ b/src/mc/util/StringByteInput.h @@ -30,7 +30,7 @@ class StringByteInput : public ::BytesDataInput { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND public: diff --git a/src/mc/util/StringByteOutput.h b/src/mc/util/StringByteOutput.h index bea2c48f3e..fcd3cf0711 100644 --- a/src/mc/util/StringByteOutput.h +++ b/src/mc/util/StringByteOutput.h @@ -25,7 +25,7 @@ class StringByteOutput : public ::BytesDataOutput { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND public: diff --git a/src/mc/util/Timer.h b/src/mc/util/Timer.h index 0fc65b7627..52938eed62 100644 --- a/src/mc/util/Timer.h +++ b/src/mc/util/Timer.h @@ -30,7 +30,7 @@ class Timer { MCAPI uint64 getTicks() const; - MCAPI float getTimeScale() const; + MCFOLD float getTimeScale() const; MCAPI void resetTimePassed(); diff --git a/src/mc/util/Token.h b/src/mc/util/Token.h index b1e1e0d27d..c99d1a08b7 100644 --- a/src/mc/util/Token.h +++ b/src/mc/util/Token.h @@ -56,6 +56,6 @@ struct Token { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/util/VarIntDataInput.h b/src/mc/util/VarIntDataInput.h index 812a2918ea..813f57e544 100644 --- a/src/mc/util/VarIntDataInput.h +++ b/src/mc/util/VarIntDataInput.h @@ -58,15 +58,15 @@ class VarIntDataInput : public ::BytesDataInput { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND public: // virtual function thunks // NOLINTBEGIN - MCAPI ::Bedrock::Result<::std::string> $readStringResult(); + MCFOLD ::Bedrock::Result<::std::string> $readStringResult(); - MCAPI ::Bedrock::Result<::std::string> $readLongStringResult(); + MCFOLD ::Bedrock::Result<::std::string> $readLongStringResult(); MCAPI ::Bedrock::Result $readFloatResult(); @@ -80,7 +80,7 @@ class VarIntDataInput : public ::BytesDataInput { MCAPI ::Bedrock::Result $readLongLongResult(); - MCAPI ::Bedrock::Result $readBytesResult(void* data, uint64 bytes); + MCFOLD ::Bedrock::Result $readBytesResult(void* data, uint64 bytes); MCAPI uint64 $numBytesLeft() const; // NOLINTEND diff --git a/src/mc/util/VarIntDataOutput.h b/src/mc/util/VarIntDataOutput.h index e43e399108..b86975f051 100644 --- a/src/mc/util/VarIntDataOutput.h +++ b/src/mc/util/VarIntDataOutput.h @@ -54,7 +54,7 @@ class VarIntDataOutput : public ::BytesDataOutput { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND public: diff --git a/src/mc/util/VariantParameterList.h b/src/mc/util/VariantParameterList.h index 02708d8a13..515b08a9f5 100644 --- a/src/mc/util/VariantParameterList.h +++ b/src/mc/util/VariantParameterList.h @@ -33,6 +33,6 @@ struct VariantParameterList { public: // constructor thunks // NOLINTBEGIN - MCAPI void* $ctor(); + MCFOLD void* $ctor(); // NOLINTEND }; diff --git a/src/mc/util/cereal_helpers/CerealHelpers.h b/src/mc/util/cereal_helpers/CerealHelpers.h index 3cb3a48898..d6867f58a8 100644 --- a/src/mc/util/cereal_helpers/CerealHelpers.h +++ b/src/mc/util/cereal_helpers/CerealHelpers.h @@ -28,7 +28,7 @@ MCAPI void bindRotationAndMirror(::cereal::ReflectionCtx& ctx); MCAPI ::std::array blockPosAsArray(::BlockPos const& instance); -MCAPI void blockPosFromArray(::BlockPos& instance, ::std::array const& arr); +MCFOLD void blockPosFromArray(::BlockPos& instance, ::std::array const& arr); MCAPI bool checkBoolSchema(::rapidjson::GenericValue< ::rapidjson::UTF8, diff --git a/src/mc/util/json_util/SchemaConverterCollection.h b/src/mc/util/json_util/SchemaConverterCollection.h index 0ac45577b1..04a4ddedb1 100644 --- a/src/mc/util/json_util/SchemaConverterCollection.h +++ b/src/mc/util/json_util/SchemaConverterCollection.h @@ -49,7 +49,7 @@ class SchemaConverterCollection { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/util/random/XoroshiroPositionalRandomFactory.h b/src/mc/util/random/XoroshiroPositionalRandomFactory.h index 09481d55b0..afb91596b0 100644 --- a/src/mc/util/random/XoroshiroPositionalRandomFactory.h +++ b/src/mc/util/random/XoroshiroPositionalRandomFactory.h @@ -50,7 +50,7 @@ class XoroshiroPositionalRandomFactory : public ::IPositionalRandomFactory { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND public: diff --git a/src/mc/util/random/XoroshiroRandom.h b/src/mc/util/random/XoroshiroRandom.h index 72d127ef3a..641ddb8f87 100644 --- a/src/mc/util/random/XoroshiroRandom.h +++ b/src/mc/util/random/XoroshiroRandom.h @@ -78,17 +78,17 @@ class XoroshiroRandom : public ::IRandom, public ::IRandomSeeded { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND public: // virtual function thunks // NOLINTBEGIN - MCAPI int $nextInt(); + MCFOLD int $nextInt(); MCAPI int $nextInt(int bound); - MCAPI int64 $nextLong(); + MCFOLD int64 $nextLong(); MCAPI bool $nextBoolean(); @@ -108,7 +108,7 @@ class XoroshiroRandom : public ::IRandom, public ::IRandomSeeded { MCAPI void $setSeed(::Seed128Bit seed); - MCAPI int64 $seed64() const; + MCFOLD int64 $seed64() const; MCAPI ::Seed128Bit $seed128() const; // NOLINTEND diff --git a/src/mc/util/texture_set_helpers/NamePair.h b/src/mc/util/texture_set_helpers/NamePair.h index 708252c63e..e8860d0dc7 100644 --- a/src/mc/util/texture_set_helpers/NamePair.h +++ b/src/mc/util/texture_set_helpers/NamePair.h @@ -27,7 +27,7 @@ struct NamePair { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/util/value_providers/UniformFloat.h b/src/mc/util/value_providers/UniformFloat.h index e66366a3e1..91e698c847 100644 --- a/src/mc/util/value_providers/UniformFloat.h +++ b/src/mc/util/value_providers/UniformFloat.h @@ -26,7 +26,7 @@ struct UniformFloat { public: // member functions // NOLINTBEGIN - MCAPI float generateNext(::Random& random) const; + MCFOLD float generateNext(::Random& random) const; // NOLINTEND }; diff --git a/src/mc/util/value_providers/UniformInt.h b/src/mc/util/value_providers/UniformInt.h index 88aff2d7ae..e84e5e80c5 100644 --- a/src/mc/util/value_providers/UniformInt.h +++ b/src/mc/util/value_providers/UniformInt.h @@ -26,7 +26,7 @@ struct UniformInt { public: // member functions // NOLINTBEGIN - MCAPI int generateNext(::Random& random) const; + MCFOLD int generateNext(::Random& random) const; // NOLINTEND }; diff --git a/src/mc/volume/VolumeDefinitionGroup.h b/src/mc/volume/VolumeDefinitionGroup.h index ebd867eadc..d01317fb6a 100644 --- a/src/mc/volume/VolumeDefinitionGroup.h +++ b/src/mc/volume/VolumeDefinitionGroup.h @@ -24,6 +24,6 @@ class VolumeDefinitionGroup { public: // member functions // NOLINTBEGIN - MCAPI ::VolumeDefinition const* tryGetVolumeDefinition(::std::string const& identifier) const; + MCFOLD ::VolumeDefinition const* tryGetVolumeDefinition(::std::string const& identifier) const; // NOLINTEND }; diff --git a/src/mc/websockets/RakWebSocketDataFrameParser.h b/src/mc/websockets/RakWebSocketDataFrameParser.h index 0bdbad6b2b..d018ce09db 100644 --- a/src/mc/websockets/RakWebSocketDataFrameParser.h +++ b/src/mc/websockets/RakWebSocketDataFrameParser.h @@ -37,7 +37,7 @@ class RakWebSocketDataFrameParser { MCAPI ::std::shared_ptr<::RakWebSocketDataFrame> readFrame(::RakNet::BitStream& data); - MCAPI void setOnFailHandler(::std::function handler); + MCFOLD void setOnFailHandler(::std::function handler); MCAPI ~RakWebSocketDataFrameParser(); // NOLINTEND diff --git a/src/mc/websockets/TcpProxy.h b/src/mc/websockets/TcpProxy.h index 47117b396f..a6c6ae2224 100644 --- a/src/mc/websockets/TcpProxy.h +++ b/src/mc/websockets/TcpProxy.h @@ -49,7 +49,7 @@ class TcpProxy { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND public: diff --git a/src/mc/websockets/automation/AutomationClient.h b/src/mc/websockets/automation/AutomationClient.h index e11b2c25a0..b848752778 100644 --- a/src/mc/websockets/automation/AutomationClient.h +++ b/src/mc/websockets/automation/AutomationClient.h @@ -99,11 +99,11 @@ class AutomationClient : public ::CodeBuilder::IClient, public ::UriListener, pu MCAPI ::std::shared_ptr<::Automation::AutomationSession> getSessionForCommand(::CommandOrigin const& origin); - MCAPI bool isReadyForInGameCommands(); + MCFOLD bool isReadyForInGameCommands(); MCAPI void setRequireEncryption(bool isEncryptionRequired); - MCAPI void setServerRetryTime(float retryTime); + MCFOLD void setServerRetryTime(float retryTime); // NOLINTEND public: diff --git a/src/mc/win/AppPlatformWindows.h b/src/mc/win/AppPlatformWindows.h index 02fa0c2a6c..6064bdff78 100644 --- a/src/mc/win/AppPlatformWindows.h +++ b/src/mc/win/AppPlatformWindows.h @@ -135,31 +135,31 @@ class AppPlatformWindows : public ::AppPlatform { MCAPI ::Core::PathBuffer<::std::string> $getPlatformTempPath() const; - MCAPI ::Core::PathBuffer<::std::string> $copyImportFileToTempFolder(::Core::Path const& filePath); + MCFOLD ::Core::PathBuffer<::std::string> $copyImportFileToTempFolder(::Core::Path const& filePath); MCAPI uint64 $calculateAvailableDiskFreeSpace(::Core::Path const& rootPath); - MCAPI bool $allowContentLogWriteToDisk(); + MCFOLD bool $allowContentLogWriteToDisk(); - MCAPI bool $devHotReloadRenderResources() const; + MCFOLD bool $devHotReloadRenderResources() const; MCAPI void $queueForMainThread_DEPRECATED(::std::function callback); MCAPI ::MPMCQueue<::std::function>& $getMainThreadQueue(); - MCAPI bool $canAppSelfTerminate() const; + MCFOLD bool $canAppSelfTerminate() const; - MCAPI bool $getPlatformTTSExists() const; + MCFOLD bool $getPlatformTTSExists() const; MCAPI bool $getPlatformTTSEnabled() const; MCAPI void $registerExperimentsActiveCrashDump(::std::vector<::std::string> const& activeExperiments) const; - MCAPI bool $allowsExternalCommandExecution() const; + MCFOLD bool $allowsExternalCommandExecution() const; - MCAPI ::Core::PathBuffer<::std::string> $_getCurrentStoragePath() const; + MCFOLD ::Core::PathBuffer<::std::string> $_getCurrentStoragePath() const; - MCAPI ::Core::PathBuffer<::std::string> $_getExternalStoragePath() const; + MCFOLD ::Core::PathBuffer<::std::string> $_getExternalStoragePath() const; MCAPI ::Core::PathBuffer<::std::string> $_getInternalStoragePath() const; diff --git a/src/mc/win/AppPlatform_win32.h b/src/mc/win/AppPlatform_win32.h index 4c2ba0d219..8a810dee42 100644 --- a/src/mc/win/AppPlatform_win32.h +++ b/src/mc/win/AppPlatform_win32.h @@ -253,7 +253,7 @@ class AppPlatform_win32 : public ::AppPlatformWindows { MCAPI ::Core::PathBuffer<::std::string> $copyImportFileToTempFolder(::Core::Path const& filePath); - MCAPI bool $canLaunchUri(::std::string const& uri); + MCFOLD bool $canLaunchUri(::std::string const& uri); MCAPI void $launchUri(::std::string const& uri); @@ -265,11 +265,11 @@ class AppPlatform_win32 : public ::AppPlatformWindows { MCAPI ::OsVersion $getOSVersion() const; - MCAPI bool $hasFastAlphaTest() const; + MCFOLD bool $hasFastAlphaTest() const; - MCAPI bool $supportsVibration() const; + MCFOLD bool $supportsVibration() const; - MCAPI bool $supportsFliteTTS() const; + MCFOLD bool $supportsFliteTTS() const; MCAPI int $getScreenWidth() const; @@ -279,21 +279,21 @@ class AppPlatform_win32 : public ::AppPlatformWindows { MCAPI int $getDisplayHeight(); - MCAPI void $setScreenSize(int width, int height); + MCFOLD void $setScreenSize(int width, int height); MCAPI void $setWindowSize(int width, int height); MCAPI void $setWindowText(::std::string const& title); - MCAPI ::std::string $getTextBoxBackend() const; + MCFOLD ::std::string $getTextBoxBackend() const; - MCAPI void $setTextBoxBackend(::std::string const& newText); + MCFOLD void $setTextBoxBackend(::std::string const& newText); - MCAPI int $getCaretPosition() const; + MCFOLD int $getCaretPosition() const; - MCAPI void $setCaretPosition(int position); + MCFOLD void $setCaretPosition(int position); - MCAPI bool $hasBuyButtonWhenInvalidLicense(); + MCFOLD bool $hasBuyButtonWhenInvalidLicense(); MCAPI ::std::string $getApplicationId() const; @@ -301,15 +301,15 @@ class AppPlatform_win32 : public ::AppPlatformWindows { MCAPI ::std::string $getPackageFamilyName() const; - MCAPI ::PlatformType $getPlatformType() const; + MCFOLD ::PlatformType $getPlatformType() const; - MCAPI ::BuildPlatform $getBuildPlatform() const; + MCFOLD ::BuildPlatform $getBuildPlatform() const; MCAPI ::std::unique_ptr<::SecureStorage> $getSecureStorage(); MCAPI ::SecureStorageKey $getSecureStorageKey(::std::string const&); - MCAPI void $setSecureStorageKey(::std::string const&, ::SecureStorageKey const&); + MCFOLD void $setSecureStorageKey(::std::string const&, ::SecureStorageKey const&); MCAPI ::std::string $getPlatformString() const; @@ -339,9 +339,9 @@ class AppPlatform_win32 : public ::AppPlatformWindows { MCAPI void $hideSplashScreen(); - MCAPI int $getPlatformDpi() const; + MCFOLD int $getPlatformDpi() const; - MCAPI ::UIScalingRules $getPlatformUIScalingRules() const; + MCFOLD ::UIScalingRules $getPlatformUIScalingRules() const; // NOLINTEND public: diff --git a/src/mc/world/Container.h b/src/mc/world/Container.h index 2cd4b9c861..c2d786ab0b 100644 --- a/src/mc/world/Container.h +++ b/src/mc/world/Container.h @@ -54,7 +54,7 @@ class Container { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; @@ -233,15 +233,15 @@ class Container { MCAPI void addCloseListener(::ContainerCloseListener* listener); - MCAPI ::ContainerType getContainerType() const; + MCFOLD ::ContainerType getContainerType() const; - MCAPI ::ContainerType getGameplayContainerType() const; + MCFOLD ::ContainerType getGameplayContainerType() const; MCAPI int getItemCount(::std::function comparator); MCAPI int getRedstoneSignalFromContainer(::BlockSource& region); - MCAPI ::ContainerRuntimeId const& getRuntimeId() const; + MCFOLD ::ContainerRuntimeId const& getRuntimeId() const; MCAPI void initRuntimeId(); @@ -253,7 +253,7 @@ class Container { MCAPI void serverInitItemStackIdsAll(::std::function onNetIdChanged); - MCAPI void setGameplayContainerType(::ContainerType type); + MCFOLD void setGameplayContainerType(::ContainerType type); MCAPI void triggerTransactionChange(int slot, ::ItemStack const& oldItem, ::ItemStack const& newItem); // NOLINTEND @@ -291,13 +291,13 @@ class Container { public: // virtual function thunks // NOLINTBEGIN - MCAPI void $init(); + MCFOLD void $init(); MCAPI void $addContentChangeListener(::ContainerContentChangeListener* listener); MCAPI void $removeContentChangeListener(::ContainerContentChangeListener* listener); - MCAPI ::Bedrock::PubSub::Connector* $getContainerRemovedConnector(); + MCFOLD ::Bedrock::PubSub::Connector* $getContainerRemovedConnector(); MCAPI bool $hasRemovedSubscribers() const; @@ -309,7 +309,7 @@ class Container { MCAPI bool $addItemToFirstEmptySlot(::ItemStack const& item); - MCAPI void $setItemWithForceBalance(int slot, ::ItemStack const& item, bool forceBalanced); + MCFOLD void $setItemWithForceBalance(int slot, ::ItemStack const& item, bool forceBalanced); MCAPI void $removeItem(int slot, int count); @@ -335,9 +335,9 @@ class Container { MCAPI int $findFirstSlotForItem(::ItemStack const& item) const; - MCAPI bool $canPushInItem(int, int, ::ItemStack const&) const; + MCFOLD bool $canPushInItem(int, int, ::ItemStack const&) const; - MCAPI bool $canPullOutItem(int, int, ::ItemStack const&) const; + MCFOLD bool $canPullOutItem(int, int, ::ItemStack const&) const; MCAPI void $setContainerChanged(int slot); @@ -356,11 +356,11 @@ class Container { ::std::function execute ); - MCAPI void $initializeContainerContents(::BlockSource& region); + MCFOLD void $initializeContainerContents(::BlockSource& region); MCAPI bool $isEmpty() const; - MCAPI bool $isSlotDisabled(int) const; + MCFOLD bool $isSlotDisabled(int) const; // NOLINTEND public: diff --git a/src/mc/world/ContainerCloseListener.h b/src/mc/world/ContainerCloseListener.h index 7bef15527a..705289f979 100644 --- a/src/mc/world/ContainerCloseListener.h +++ b/src/mc/world/ContainerCloseListener.h @@ -21,7 +21,7 @@ class ContainerCloseListener { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND public: diff --git a/src/mc/world/ContainerContentChangeListener.h b/src/mc/world/ContainerContentChangeListener.h index 181fe56404..7e80125dd8 100644 --- a/src/mc/world/ContainerContentChangeListener.h +++ b/src/mc/world/ContainerContentChangeListener.h @@ -16,7 +16,7 @@ class ContainerContentChangeListener { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND public: diff --git a/src/mc/world/ContainerOwner.h b/src/mc/world/ContainerOwner.h index 3f917f7e66..603189d479 100644 --- a/src/mc/world/ContainerOwner.h +++ b/src/mc/world/ContainerOwner.h @@ -32,7 +32,7 @@ struct ContainerOwner { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; @@ -57,6 +57,6 @@ struct ContainerOwner { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/world/ContainerSizeChangeListener.h b/src/mc/world/ContainerSizeChangeListener.h index a17919c3b0..eda5e74593 100644 --- a/src/mc/world/ContainerSizeChangeListener.h +++ b/src/mc/world/ContainerSizeChangeListener.h @@ -16,7 +16,7 @@ class ContainerSizeChangeListener { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND public: diff --git a/src/mc/world/GameCallbacks.h b/src/mc/world/GameCallbacks.h index 5d06ae0d52..ec4b3f8967 100644 --- a/src/mc/world/GameCallbacks.h +++ b/src/mc/world/GameCallbacks.h @@ -49,7 +49,7 @@ class GameCallbacks { public: // virtual function thunks // NOLINTBEGIN - MCAPI void $onBeforeSimTick(); + MCFOLD void $onBeforeSimTick(); // NOLINTEND public: diff --git a/src/mc/world/Minecraft.h b/src/mc/world/Minecraft.h index 2037f1bc24..9fdbb447f9 100644 --- a/src/mc/world/Minecraft.h +++ b/src/mc/world/Minecraft.h @@ -153,13 +153,13 @@ class Minecraft : public ::IEntityRegistryOwner { MCAPI ::ClientNetworkSystem& getClientNetworkSystem(); - MCAPI ::MinecraftCommands& getCommands(); + MCFOLD ::MinecraftCommands& getCommands(); - MCAPI ::IMinecraftEventing& getEventing() const; + MCFOLD ::IMinecraftEventing& getEventing() const; MCAPI ::Bedrock::NotNullNonOwnerPtr<::FileArchiver> getFileArchiver() const; - MCAPI ::GameModuleServer& getGameModuleServer(); + MCFOLD ::GameModuleServer& getGameModuleServer(); MCAPI ::optional_ref<::MinecraftGameTest> getGameTest(); @@ -167,7 +167,7 @@ class Minecraft : public ::IEntityRegistryOwner { MCAPI ::Level* getLevel() const; - MCAPI ::ResourcePackManager& getResourceLoader(); + MCFOLD ::ResourcePackManager& getResourceLoader(); MCAPI ::Bedrock::NonOwnerPointer<::ServerNetworkHandler> getServerNetworkHandler(); @@ -192,9 +192,9 @@ class Minecraft : public ::IEntityRegistryOwner { ::NetworkServerConfig const& packetHandlerConfig ); - MCAPI void init(); + MCFOLD void init(); - MCAPI void initAsDedicatedServer(); + MCFOLD void initAsDedicatedServer(); MCAPI bool isDedicatedServer() const; @@ -253,9 +253,9 @@ class Minecraft : public ::IEntityRegistryOwner { MCAPI bool $isOnlineClient() const; - MCAPI ::StackRefResult<::EntityRegistry> $getEntityRegistry(); + MCFOLD ::StackRefResult<::EntityRegistry> $getEntityRegistry(); - MCAPI ::StackRefResult<::EntityRegistry const> $getEntityRegistry() const; + MCFOLD ::StackRefResult<::EntityRegistry const> $getEntityRegistry() const; // NOLINTEND public: diff --git a/src/mc/world/ParticleProvider.h b/src/mc/world/ParticleProvider.h index 69f8821a69..221f7d8ba0 100644 --- a/src/mc/world/ParticleProvider.h +++ b/src/mc/world/ParticleProvider.h @@ -83,13 +83,13 @@ class ParticleProvider { void(::Vec3 const&, ::BreakingItemParticleData const&, ::ResolvedItemIconInfo const&)>& getAddBreakingItemParticleEffectConnector(); - MCAPI ::Bedrock::PubSub::Connector& + MCFOLD ::Bedrock::PubSub::Connector& getAddTerrainParticleEffectConnector(); - MCAPI ::Bedrock::PubSub::Connector& + MCFOLD ::Bedrock::PubSub::Connector& getAddTerrainSlideEffectConnector(); - MCAPI ::Bedrock::PubSub::Connector& + MCFOLD ::Bedrock::PubSub::Connector& getSendServerLegacyParticleConnector(); MCAPI void sendServerLegacyParticle(::ParticleType id, ::Vec3 const& pos, ::Vec3 const& dir, int data); diff --git a/src/mc/world/SimpleContainer.h b/src/mc/world/SimpleContainer.h index e692b2e56c..b83cf481c8 100644 --- a/src/mc/world/SimpleContainer.h +++ b/src/mc/world/SimpleContainer.h @@ -83,13 +83,13 @@ class SimpleContainer : public ::Container { MCAPI void $setItem(int slot, ::ItemStack const& item); - MCAPI int $getContainerSize() const; + MCFOLD int $getContainerSize() const; - MCAPI int $getMaxStackSize() const; + MCFOLD int $getMaxStackSize() const; - MCAPI void $startOpen(::Player&); + MCFOLD void $startOpen(::Player&); - MCAPI void $stopOpen(::Player& player); + MCFOLD void $stopOpen(::Player& player); MCAPI void $serverInitItemStackIds( int containerSlot, diff --git a/src/mc/world/SimpleSparseContainer.h b/src/mc/world/SimpleSparseContainer.h index 998b517e88..aace951aee 100644 --- a/src/mc/world/SimpleSparseContainer.h +++ b/src/mc/world/SimpleSparseContainer.h @@ -118,7 +118,7 @@ class SimpleSparseContainer : public ::Container, public ::ContainerContentChang MCAPI void $containerContentChanged(int slot); - MCAPI void $serverInitItemStackIds( + MCFOLD void $serverInitItemStackIds( int containerSlot, int count, ::std::function onNetIdChanged diff --git a/src/mc/world/WorldSessionEndPoint.h b/src/mc/world/WorldSessionEndPoint.h index 988b8d420e..44ab94f384 100644 --- a/src/mc/world/WorldSessionEndPoint.h +++ b/src/mc/world/WorldSessionEndPoint.h @@ -71,13 +71,13 @@ class WorldSessionEndPoint : public ::ContentLogEndPoint { // NOLINTBEGIN MCAPI void $log(::LogArea const area, ::LogLevel const level, char const* message); - MCAPI void $flush(); + MCFOLD void $flush(); - MCAPI void $setEnabled(bool enabled); + MCFOLD void $setEnabled(bool enabled); - MCAPI bool $isEnabled() const; + MCFOLD bool $isEnabled() const; - MCAPI bool $logOnlyOnce() const; + MCFOLD bool $logOnlyOnce() const; // NOLINTEND public: diff --git a/src/mc/world/WorldTemplateInfo.h b/src/mc/world/WorldTemplateInfo.h index 707c4eb803..593201efa1 100644 --- a/src/mc/world/WorldTemplateInfo.h +++ b/src/mc/world/WorldTemplateInfo.h @@ -41,11 +41,11 @@ struct WorldTemplateInfo { MCAPI void addWorldTemplatePackSource(::WorldTemplatePackSource& source); - MCAPI ::WorldTemplatePackManifest const& getPackManifest() const; + MCFOLD ::WorldTemplatePackManifest const& getPackManifest() const; - MCAPI ::std::string const& getWorldName() const; + MCFOLD ::std::string const& getWorldName() const; - MCAPI ::Core::PathBuffer<::std::string> const& getWorldPath() const; + MCFOLD ::Core::PathBuffer<::std::string> const& getWorldPath() const; MCAPI bool isVirtualCatalogItem() const; diff --git a/src/mc/world/actor/ActionEvent.h b/src/mc/world/actor/ActionEvent.h index f6312bdf3c..3b26eababa 100644 --- a/src/mc/world/actor/ActionEvent.h +++ b/src/mc/world/actor/ActionEvent.h @@ -90,7 +90,7 @@ class ActionEvent { public: // constructor thunks // NOLINTBEGIN - MCAPI void* + MCFOLD void* $ctor(int actionId, ::ActionEvent::ActionState actionState, bool isExclusive, ::FocusImpact focusImpact); // NOLINTEND }; diff --git a/src/mc/world/actor/ActionQueue.h b/src/mc/world/actor/ActionQueue.h index 3f2b93f520..c015a83877 100644 --- a/src/mc/world/actor/ActionQueue.h +++ b/src/mc/world/actor/ActionQueue.h @@ -30,6 +30,6 @@ class ActionQueue { public: // constructor thunks // NOLINTBEGIN - MCAPI void* $ctor(); + MCFOLD void* $ctor(); // NOLINTEND }; diff --git a/src/mc/world/actor/Actor.h b/src/mc/world/actor/Actor.h index 4de1ccd3a1..1a0938b50c 100644 --- a/src/mc/world/actor/Actor.h +++ b/src/mc/world/actor/Actor.h @@ -668,7 +668,7 @@ class Actor { MCAPI ::ItemActor const* _drop(::ItemStack const& item, bool randomly); - MCAPI ::std::vector<::MobEffectInstance>& _getAllEffectsNonConst(); + MCFOLD ::std::vector<::MobEffectInstance>& _getAllEffectsNonConst(); MCAPI ::AnimationComponent& _getAnimationComponent( ::std::shared_ptr<::AnimationComponent>& animationComponent, @@ -703,9 +703,9 @@ class Actor { MCAPI void _setLevelPtr(::ILevel* level); - MCAPI void _setPos(::Vec3 const& pos); + MCFOLD void _setPos(::Vec3 const& pos); - MCAPI void _setPosPrev(::Vec3 const& posPrev); + MCFOLD void _setPosPrev(::Vec3 const& posPrev); MCAPI void _setupServerAnimationComponent(); @@ -819,7 +819,7 @@ class Actor { MCAPI ::ActorDefinitionIdentifier const& getActorIdentifier() const; - MCAPI ::std::vector<::MobEffectInstance> const& getAllEffects() const; + MCFOLD ::std::vector<::MobEffectInstance> const& getAllEffects() const; MCAPI ::ItemStack const& getArmor(::ArmorSlot slot) const; @@ -845,7 +845,7 @@ class Actor { MCAPI ::ItemStack const& getCarriedItemInSlotPreferredBy(::ItemStack const& item) const; - MCAPI ::ActorCategory getCategories() const; + MCFOLD ::ActorCategory getCategories() const; MCAPI bool getChainedDamageEffects() const; @@ -863,13 +863,13 @@ class Actor { MCAPI ::ActorDefinitionDiffList* getDiffListNonConst(); - MCAPI ::Dimension& getDimension() const; + MCFOLD ::Dimension& getDimension() const; - MCAPI ::BlockSource& getDimensionBlockSource() const; + MCFOLD ::BlockSource& getDimensionBlockSource() const; - MCAPI ::BlockSource const& getDimensionBlockSourceConst() const; + MCFOLD ::BlockSource const& getDimensionBlockSourceConst() const; - MCAPI ::Dimension const& getDimensionConst() const; + MCFOLD ::Dimension const& getDimensionConst() const; MCAPI ::DimensionType getDimensionId() const; @@ -879,7 +879,7 @@ class Actor { MCAPI ::SynchedActorDataEntityWrapper const& getEntityData() const; - MCAPI ::SynchedActorDataEntityWrapper& getEntityData(); + MCFOLD ::SynchedActorDataEntityWrapper& getEntityData(); MCAPI ::StackRefResult<::EntityRegistry> getEntityRegistry(); @@ -909,9 +909,9 @@ class Actor { MCAPI int getHurtTime() const; - MCAPI ::ILevel& getILevel(); + MCFOLD ::ILevel& getILevel(); - MCAPI ::ActorInitializationMethod getInitializationMethod(); + MCFOLD ::ActorInitializationMethod getInitializationMethod(); MCAPI ::Vec3 getInterpolatedPosition(float a) const; @@ -935,7 +935,7 @@ class Actor { MCAPI ::ActorUniqueID getLastHurtByPlayerID() const; - MCAPI ::ActorDamageCause getLastHurtCause() const; + MCFOLD ::ActorDamageCause getLastHurtCause() const; MCAPI float getLastHurtDamage() const; @@ -949,7 +949,7 @@ class Actor { MCAPI ::Level const& getLevel() const; - MCAPI ::Level& getLevel(); + MCFOLD ::Level& getLevel(); MCAPI uint64 getLevelTimeStamp() const; @@ -993,9 +993,9 @@ class Actor { MCAPI ::Player* getPlayerOwner() const; - MCAPI ::Vec3 const& getPosDelta() const; + MCFOLD ::Vec3 const& getPosDelta() const; - MCAPI ::Vec3& getPosDeltaNonConst(); + MCFOLD ::Vec3& getPosDeltaNonConst(); MCAPI ::Vec3 const& getPosPrev() const; @@ -1005,7 +1005,7 @@ class Actor { MCAPI ::Random& getRandom() const; - MCAPI ::RenderParams& getRenderParams(); + MCFOLD ::RenderParams& getRenderParams(); MCAPI float getRidingHeight() const; @@ -1015,11 +1015,11 @@ class Actor { MCAPI ::ActorRuntimeID getRuntimeID() const; - MCAPI int getShakeTime() const; + MCFOLD int getShakeTime() const; MCAPI int getSkinID() const; - MCAPI ::SpatialActorNetworkData& getSpatialNetworkData(); + MCFOLD ::SpatialActorNetworkData& getSpatialNetworkData(); MCAPI float getSpeedInMetersPerSecond() const; @@ -1111,7 +1111,7 @@ class Actor { MCAPI void heal(int heal); - MCAPI void healEffects(int); + MCFOLD void healEffects(int); MCAPI bool hurt(::ActorDamageSource const& source, float damage, bool knock, bool ignite); @@ -1119,7 +1119,7 @@ class Actor { MCAPI void initActorProperties(); - MCAPI void initParams(::VariantParameterListConst& params) const; + MCFOLD void initParams(::VariantParameterListConst& params) const; MCAPI void initParams(::VariantParameterList&); @@ -1300,7 +1300,7 @@ class Actor { MCAPI void markHurt(); - MCAPI void migrateUniqueID(::ActorUniqueID id); + MCFOLD void migrateUniqueID(::ActorUniqueID id); MCAPI void move(::Vec3 const& posDelta); @@ -1392,7 +1392,7 @@ class Actor { MCAPI void setBaseDefinition(::ActorDefinitionIdentifier const& sourceId, bool clearDefs, bool update); - MCAPI void setBlockTarget(::BlockPos const& target); + MCFOLD void setBlockTarget(::BlockPos const& target); MCAPI void setBodyRotationBlocked(bool value); @@ -1480,11 +1480,11 @@ class Actor { MCAPI void setPos(::Vec3 const& pos); - MCAPI void setPosDelta(::Vec3 const& posDelta); + MCFOLD void setPosDelta(::Vec3 const& posDelta); - MCAPI void setPosDirectLegacy(::Vec3 const& pos); + MCFOLD void setPosDirectLegacy(::Vec3 const& pos); - MCAPI void setPosPrev(::Vec3 const& posPrev); + MCFOLD void setPosPrev(::Vec3 const& posPrev); MCAPI void setPrevPosRotSetThisTick(bool value); @@ -1534,11 +1534,11 @@ class Actor { MCAPI void setTradingPlayer(::Player* player); - MCAPI void setUniqueID(::ActorUniqueID id); + MCFOLD void setUniqueID(::ActorUniqueID id); MCAPI void setVariant(int value); - MCAPI void setVelocity(::Vec3 const& vel); + MCFOLD void setVelocity(::Vec3 const& vel); MCAPI void setWASDControlled(bool value); @@ -1654,7 +1654,7 @@ class Actor { MCAPI static ::Actor const* tryGetFromComponent(::ActorOwnerComponent const& component, bool includeRemoved); - MCAPI static ::Actor* tryGetFromComponent(::ActorOwnerComponent& component, bool includeRemoved); + MCFOLD static ::Actor* tryGetFromComponent(::ActorOwnerComponent& component, bool includeRemoved); MCAPI static ::Actor const* tryGetFromEntity(::EntityContext const& entity, bool includeRemoved); @@ -1701,7 +1701,7 @@ class Actor { MCAPI void $outOfWorld(); - MCAPI void $reloadHardcoded(::ActorInitializationMethod, ::VariantParameterList const&); + MCFOLD void $reloadHardcoded(::ActorInitializationMethod, ::VariantParameterList const&); MCAPI void $reloadHardcodedClient(::ActorInitializationMethod); @@ -1713,7 +1713,7 @@ class Actor { MCAPI void $_doInitialMove(); - MCAPI void $resetUserPos(bool); + MCFOLD void $resetUserPos(bool); MCAPI ::ActorType $getOwnerEntityType(); @@ -1723,13 +1723,13 @@ class Actor { MCAPI float $getInterpolatedBodyRot(float a) const; - MCAPI float $getInterpolatedHeadRot(float) const; + MCFOLD float $getInterpolatedHeadRot(float) const; - MCAPI float $getInterpolatedBodyYaw(float) const; + MCFOLD float $getInterpolatedBodyYaw(float) const; MCAPI float $getYawSpeedInDegreesPerSecond() const; - MCAPI ::Vec3 $getInterpolatedRidingOffset(float, int const) const; + MCFOLD ::Vec3 $getInterpolatedRidingOffset(float, int const) const; MCAPI bool $isFireImmune() const; @@ -1739,7 +1739,7 @@ class Actor { MCAPI void $teleportTo(::Vec3 const& pos, bool shouldStopRiding, int, int, bool keepVelocity); - MCAPI void $lerpMotion(::Vec3 const& delta); + MCFOLD void $lerpMotion(::Vec3 const& delta); MCAPI ::std::unique_ptr<::AddActorBasePacket> $tryCreateAddActorPacket(); @@ -1765,43 +1765,43 @@ class Actor { MCAPI ::std::string $getFormattedNameTag() const; - MCAPI ::mce::Color $getNameTagTextColor() const; + MCFOLD ::mce::Color $getNameTagTextColor() const; MCAPI float $getShadowRadius() const; MCAPI ::Vec3 $getHeadLookVector(float a) const; - MCAPI bool $canInteractWithOtherEntitiesInGame() const; + MCFOLD bool $canInteractWithOtherEntitiesInGame() const; MCAPI float $getBrightness(float a, ::IConstBlockSource const& region) const; - MCAPI void $playerTouch(::Player&); + MCFOLD void $playerTouch(::Player&); MCAPI bool $isImmobile() const; MCAPI bool $isSilentObserver() const; - MCAPI bool $isSleeping() const; + MCFOLD bool $isSleeping() const; - MCAPI void $setSleeping(bool); + MCFOLD void $setSleeping(bool); MCAPI void $setSneaking(bool value); - MCAPI bool $isBlocking() const; + MCFOLD bool $isBlocking() const; - MCAPI bool $isDamageBlocked(::ActorDamageSource const&) const; + MCFOLD bool $isDamageBlocked(::ActorDamageSource const&) const; MCAPI bool $isAlive() const; MCAPI bool $isOnFire() const; - MCAPI bool $isSurfaceMob() const; + MCFOLD bool $isSurfaceMob() const; - MCAPI bool $isTargetable() const; + MCFOLD bool $isTargetable() const; MCAPI void $setTarget(::Actor* entity); - MCAPI bool $isValidTarget(::Actor*) const; + MCFOLD bool $isValidTarget(::Actor*) const; MCAPI bool $attack(::Actor& target, ::ActorDamageCause const&); @@ -1811,9 +1811,9 @@ class Actor { MCAPI void $setSitting(bool value); - MCAPI void $onTame(); + MCFOLD void $onTame(); - MCAPI void $onFailedTame(); + MCFOLD void $onFailedTame(); MCAPI void $setStanding(bool value); @@ -1839,19 +1839,19 @@ class Actor { MCAPI void $handleEntityEvent(::ActorEvent eventId, int data); - MCAPI ::HashedString const& $getActorRendererId() const; + MCFOLD ::HashedString const& $getActorRendererId() const; MCAPI void $despawn(); MCAPI void $setArmor(::ArmorSlot slot, ::ItemStack const& item); - MCAPI ::ArmorMaterialType $getArmorMaterialTypeInSlot(::ArmorSlot) const; + MCFOLD ::ArmorMaterialType $getArmorMaterialTypeInSlot(::ArmorSlot) const; - MCAPI int $getArmorTextureIndexInSlot(::ArmorSlot) const; + MCFOLD int $getArmorTextureIndexInSlot(::ArmorSlot) const; - MCAPI float $getArmorColorInSlot(::ArmorSlot, int) const; + MCFOLD float $getArmorColorInSlot(::ArmorSlot, int) const; - MCAPI void $setEquippedSlot(::SharedTypes::Legacy::EquipmentSlot, ::ItemStack const&); + MCFOLD void $setEquippedSlot(::SharedTypes::Legacy::EquipmentSlot, ::ItemStack const&); MCAPI void $setCarriedItem(::ItemStack const& item); @@ -1865,11 +1865,11 @@ class Actor { MCAPI bool $load(::CompoundTag const& tag, ::DataLoadHelper& dataLoadHelper); - MCAPI ::HashedString const& $queryEntityRenderer() const; + MCFOLD ::HashedString const& $queryEntityRenderer() const; - MCAPI ::ActorUniqueID $getSourceUniqueID() const; + MCFOLD ::ActorUniqueID $getSourceUniqueID() const; - MCAPI bool $canFreeze() const; + MCFOLD bool $canFreeze() const; MCAPI ::AABB $getLiquidAABB(::MaterialType const liquidType) const; @@ -1879,33 +1879,33 @@ class Actor { MCAPI void $changeDimension(::DimensionType toId); - MCAPI void $changeDimension(::ChangeDimensionPacket const&); + MCFOLD void $changeDimension(::ChangeDimensionPacket const&); - MCAPI ::ActorUniqueID $getControllingPlayer() const; + MCFOLD ::ActorUniqueID $getControllingPlayer() const; - MCAPI float $causeFallDamageToActor(float, float, ::ActorDamageSource); + MCFOLD float $causeFallDamageToActor(float, float, ::ActorDamageSource); MCAPI void $onSynchedDataUpdate(int dataId); MCAPI bool $canAddPassenger(::Actor& passenger) const; - MCAPI bool $canPickupItem(::ItemStack const&) const; + MCFOLD bool $canPickupItem(::ItemStack const&) const; - MCAPI bool $canBePulledIntoVehicle() const; + MCFOLD bool $canBePulledIntoVehicle() const; - MCAPI bool $inCaravan() const; + MCFOLD bool $inCaravan() const; MCAPI void $sendMotionPacketIfNeeded(::PlayerMovementSettings const& playerMovementSettings); - MCAPI bool $canSynchronizeNewEntity() const; + MCFOLD bool $canSynchronizeNewEntity() const; MCAPI void $startSwimming(); MCAPI void $stopSwimming(); - MCAPI void $buildDebugInfo(::std::string&) const; + MCFOLD void $buildDebugInfo(::std::string&) const; - MCAPI int $getDeathTime() const; + MCFOLD int $getDeathTime() const; MCAPI bool $canBeAffected(uint id) const; @@ -1919,7 +1919,7 @@ class Actor { MCAPI void $openContainerComponent(::Player& player); - MCAPI void $swing(); + MCFOLD void $swing(); MCAPI void $useItem(::ItemStackBase& item, ::ItemUseMethod itemUseMethod, bool consumeItem); @@ -1935,11 +1935,11 @@ class Actor { MCAPI bool $getInteraction(::Player& player, ::ActorInteraction& interaction, ::Vec3 const&); - MCAPI bool $canDestroyBlock(::Block const&) const; + MCFOLD bool $canDestroyBlock(::Block const&) const; - MCAPI void $setAuxValue(int); + MCFOLD void $setAuxValue(int); - MCAPI void $renderDebugServerState(::Options const&); + MCFOLD void $renderDebugServerState(::Options const&); MCAPI void $kill(); @@ -1954,17 +1954,17 @@ class Actor { MCAPI float $getNextStep(float const moveDist); - MCAPI void $onPush(::Actor&); + MCFOLD void $onPush(::Actor&); - MCAPI ::std::optional<::BlockPos> $getLastDeathPos() const; + MCFOLD ::std::optional<::BlockPos> $getLastDeathPos() const; - MCAPI ::std::optional<::DimensionType> $getLastDeathDimension() const; + MCFOLD ::std::optional<::DimensionType> $getLastDeathDimension() const; - MCAPI bool $hasDiedBefore() const; + MCFOLD bool $hasDiedBefore() const; - MCAPI void $doEnterWaterSplashEffect(); + MCFOLD void $doEnterWaterSplashEffect(); - MCAPI void $doExitWaterSplashEffect(); + MCFOLD void $doExitWaterSplashEffect(); MCAPI void $doWaterSplashEffect(); diff --git a/src/mc/world/actor/ActorClassTree.h b/src/mc/world/actor/ActorClassTree.h index b9cfb957e8..0e433c6482 100644 --- a/src/mc/world/actor/ActorClassTree.h +++ b/src/mc/world/actor/ActorClassTree.h @@ -15,7 +15,7 @@ class ActorClassTree { public: // static functions // NOLINTBEGIN - MCAPI static ::ActorType getEntityTypeIdLegacy(::ActorType entityId); + MCFOLD static ::ActorType getEntityTypeIdLegacy(::ActorType entityId); MCAPI static bool hasCategory(::ActorCategory const& category, ::ActorCategory testFor); diff --git a/src/mc/world/actor/ActorComponentDescription.h b/src/mc/world/actor/ActorComponentDescription.h index 34a9daa487..146277fc55 100644 --- a/src/mc/world/actor/ActorComponentDescription.h +++ b/src/mc/world/actor/ActorComponentDescription.h @@ -16,6 +16,6 @@ struct ActorComponentDescription : public ::Description { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/world/actor/ActorDamageByActorSource.h b/src/mc/world/actor/ActorDamageByActorSource.h index 8c63adfbc5..e2e40adf69 100644 --- a/src/mc/world/actor/ActorDamageByActorSource.h +++ b/src/mc/world/actor/ActorDamageByActorSource.h @@ -81,30 +81,30 @@ class ActorDamageByActorSource : public ::ActorDamageSource { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND public: // virtual function thunks // NOLINTBEGIN - MCAPI bool $isEntitySource() const; + MCFOLD bool $isEntitySource() const; MCAPI ::std::pair<::std::string, ::std::vector<::std::string>> $getDeathMessage(::std::string deadName, ::Actor* dead) const; - MCAPI bool $getIsCreative() const; + MCFOLD bool $getIsCreative() const; - MCAPI bool $getIsWorldBuilder() const; + MCFOLD bool $getIsWorldBuilder() const; - MCAPI ::ActorUniqueID $getEntityUniqueID() const; + MCFOLD ::ActorUniqueID $getEntityUniqueID() const; - MCAPI ::ActorType $getEntityType() const; + MCFOLD ::ActorType $getEntityType() const; - MCAPI ::ActorCategory $getEntityCategories() const; + MCFOLD ::ActorCategory $getEntityCategories() const; - MCAPI ::ActorUniqueID $getDamagingEntityUniqueID() const; + MCFOLD ::ActorUniqueID $getDamagingEntityUniqueID() const; - MCAPI ::ActorType $getDamagingEntityType() const; + MCFOLD ::ActorType $getDamagingEntityType() const; MCAPI ::std::unique_ptr<::ActorDamageSource> $clone() const; // NOLINTEND diff --git a/src/mc/world/actor/ActorDamageByBlockSource.h b/src/mc/world/actor/ActorDamageByBlockSource.h index b385d04bd7..159d4e0fc1 100644 --- a/src/mc/world/actor/ActorDamageByBlockSource.h +++ b/src/mc/world/actor/ActorDamageByBlockSource.h @@ -57,7 +57,7 @@ class ActorDamageByBlockSource : public ::ActorDamageSource { public: // virtual function thunks // NOLINTBEGIN - MCAPI bool $isBlockSource() const; + MCFOLD bool $isBlockSource() const; MCAPI ::std::pair<::std::string, ::std::vector<::std::string>> $getDeathMessage(::std::string deadName, ::Actor* dead) const; diff --git a/src/mc/world/actor/ActorDamageByChildActorSource.h b/src/mc/world/actor/ActorDamageByChildActorSource.h index f036ba6008..1c8e2f133f 100644 --- a/src/mc/world/actor/ActorDamageByChildActorSource.h +++ b/src/mc/world/actor/ActorDamageByChildActorSource.h @@ -80,18 +80,18 @@ class ActorDamageByChildActorSource : public ::ActorDamageByActorSource { public: // virtual function thunks // NOLINTBEGIN - MCAPI bool $isChildEntitySource() const; + MCFOLD bool $isChildEntitySource() const; MCAPI ::std::pair<::std::string, ::std::vector<::std::string>> $getDeathMessage(::std::string deadName, ::Actor* dead) const; - MCAPI bool $getDamagingEntityIsCreative() const; + MCFOLD bool $getDamagingEntityIsCreative() const; - MCAPI bool $getDamagingEntityIsWorldBuilder() const; + MCFOLD bool $getDamagingEntityIsWorldBuilder() const; MCAPI ::ActorUniqueID $getDamagingEntityUniqueID() const; - MCAPI ::ActorType $getDamagingEntityType() const; + MCFOLD ::ActorType $getDamagingEntityType() const; MCAPI ::ActorCategory $getDamagingEntityCategories() const; diff --git a/src/mc/world/actor/ActorDamageSource.h b/src/mc/world/actor/ActorDamageSource.h index 856fc36649..865bde582e 100644 --- a/src/mc/world/actor/ActorDamageSource.h +++ b/src/mc/world/actor/ActorDamageSource.h @@ -98,9 +98,9 @@ class ActorDamageSource { // NOLINTBEGIN MCAPI explicit ActorDamageSource(::ActorDamageCause cause); - MCAPI ::ActorDamageCause getCause() const; + MCFOLD ::ActorDamageCause getCause() const; - MCAPI void setCause(::ActorDamageCause cause); + MCFOLD void setCause(::ActorDamageCause cause); // NOLINTEND public: @@ -132,17 +132,17 @@ class ActorDamageSource { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND public: // virtual function thunks // NOLINTBEGIN - MCAPI bool $isEntitySource() const; + MCFOLD bool $isEntitySource() const; - MCAPI bool $isChildEntitySource() const; + MCFOLD bool $isChildEntitySource() const; - MCAPI bool $isBlockSource() const; + MCFOLD bool $isBlockSource() const; MCAPI bool $isFire() const; @@ -159,25 +159,25 @@ class ActorDamageSource { MCAPI ::std::pair<::std::string, ::std::vector<::std::string>> $getDeathMessage(::std::string deadName, ::Actor* dead) const; - MCAPI bool $getIsCreative() const; + MCFOLD bool $getIsCreative() const; - MCAPI bool $getIsWorldBuilder() const; + MCFOLD bool $getIsWorldBuilder() const; - MCAPI ::ActorUniqueID $getEntityUniqueID() const; + MCFOLD ::ActorUniqueID $getEntityUniqueID() const; - MCAPI ::ActorType $getEntityType() const; + MCFOLD ::ActorType $getEntityType() const; - MCAPI ::ActorCategory $getEntityCategories() const; + MCFOLD ::ActorCategory $getEntityCategories() const; - MCAPI bool $getDamagingEntityIsCreative() const; + MCFOLD bool $getDamagingEntityIsCreative() const; - MCAPI bool $getDamagingEntityIsWorldBuilder() const; + MCFOLD bool $getDamagingEntityIsWorldBuilder() const; - MCAPI ::ActorUniqueID $getDamagingEntityUniqueID() const; + MCFOLD ::ActorUniqueID $getDamagingEntityUniqueID() const; - MCAPI ::ActorType $getDamagingEntityType() const; + MCFOLD ::ActorType $getDamagingEntityType() const; - MCAPI ::ActorCategory $getDamagingEntityCategories() const; + MCFOLD ::ActorCategory $getDamagingEntityCategories() const; MCAPI ::std::unique_ptr<::ActorDamageSource> $clone() const; // NOLINTEND diff --git a/src/mc/world/actor/ActorDefinitionAttribute.h b/src/mc/world/actor/ActorDefinitionAttribute.h index 28a5822596..07e18032be 100644 --- a/src/mc/world/actor/ActorDefinitionAttribute.h +++ b/src/mc/world/actor/ActorDefinitionAttribute.h @@ -27,6 +27,6 @@ struct ActorDefinitionAttribute { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/world/actor/ActorDefinitionDiffList.h b/src/mc/world/actor/ActorDefinitionDiffList.h index d1976f1c72..46ce58aef5 100644 --- a/src/mc/world/actor/ActorDefinitionDiffList.h +++ b/src/mc/world/actor/ActorDefinitionDiffList.h @@ -49,17 +49,17 @@ class ActorDefinitionDiffList { MCAPI ::std::string definitionListToString(::std::string const& delimiter) const; - MCAPI ::DefinitionInstanceGroup const& getAddedDefinitionGroup() const; + MCFOLD ::DefinitionInstanceGroup const& getAddedDefinitionGroup() const; - MCAPI ::ActorDefinitionDescriptor& getChangedDescription(); + MCFOLD ::ActorDefinitionDescriptor& getChangedDescription(); - MCAPI ::std::vector<::DiffListPair> const& getDefinitionStack() const; + MCFOLD ::std::vector<::DiffListPair> const& getDefinitionStack() const; MCAPI ::std::unique_ptr<::ActorDefinitionDescriptor> getDescription(bool needsUpdate); - MCAPI ::DefinitionInstanceGroup const& getRemovedDefinitionGroup() const; + MCFOLD ::DefinitionInstanceGroup const& getRemovedDefinitionGroup() const; - MCAPI bool hasChanged() const; + MCFOLD bool hasChanged() const; MCAPI bool hasDefinition(::std::string const& def) const; diff --git a/src/mc/world/actor/ActorDefinitionFeedItem.h b/src/mc/world/actor/ActorDefinitionFeedItem.h index 220db73e04..b24786712c 100644 --- a/src/mc/world/actor/ActorDefinitionFeedItem.h +++ b/src/mc/world/actor/ActorDefinitionFeedItem.h @@ -24,6 +24,6 @@ struct ActorDefinitionFeedItem { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/world/actor/ActorDefinitionGroup.h b/src/mc/world/actor/ActorDefinitionGroup.h index 1279487b62..12bed4500a 100644 --- a/src/mc/world/actor/ActorDefinitionGroup.h +++ b/src/mc/world/actor/ActorDefinitionGroup.h @@ -81,7 +81,7 @@ class ActorDefinitionGroup : public ::Bedrock::EnableNonOwnerReferences { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/world/actor/ActorDefinitionIdentifier.h b/src/mc/world/actor/ActorDefinitionIdentifier.h index 5a8adf946c..8453f03479 100644 --- a/src/mc/world/actor/ActorDefinitionIdentifier.h +++ b/src/mc/world/actor/ActorDefinitionIdentifier.h @@ -44,17 +44,17 @@ struct ActorDefinitionIdentifier { MCAPI void clear(); - MCAPI ::HashedString const& getCanonicalHash() const; + MCFOLD ::HashedString const& getCanonicalHash() const; - MCAPI ::std::string const& getCanonicalName() const; + MCFOLD ::std::string const& getCanonicalName() const; - MCAPI ::std::string const& getFullName() const; + MCFOLD ::std::string const& getFullName() const; - MCAPI ::std::string const& getIdentifier() const; + MCFOLD ::std::string const& getIdentifier() const; - MCAPI ::std::string const& getInitEvent() const; + MCFOLD ::std::string const& getInitEvent() const; - MCAPI ::std::string const& getNamespace() const; + MCFOLD ::std::string const& getNamespace() const; MCAPI void initialize(::std::string const& fullName); @@ -103,6 +103,6 @@ struct ActorDefinitionIdentifier { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/world/actor/ActorDefinitionPtr.h b/src/mc/world/actor/ActorDefinitionPtr.h index b5b1253503..f8dfe40279 100644 --- a/src/mc/world/actor/ActorDefinitionPtr.h +++ b/src/mc/world/actor/ActorDefinitionPtr.h @@ -39,7 +39,7 @@ class ActorDefinitionPtr { public: // constructor thunks // NOLINTBEGIN - MCAPI void* $ctor(); + MCFOLD void* $ctor(); MCAPI void* $ctor(::ActorDefinitionPtr const& rhs); diff --git a/src/mc/world/actor/ActorDefinitionTrigger.h b/src/mc/world/actor/ActorDefinitionTrigger.h index 1fb7ba74b6..9b343f47f7 100644 --- a/src/mc/world/actor/ActorDefinitionTrigger.h +++ b/src/mc/world/actor/ActorDefinitionTrigger.h @@ -44,6 +44,6 @@ class ActorDefinitionTrigger { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/world/actor/ActorFactory.h b/src/mc/world/actor/ActorFactory.h index 9a24273fa3..cbad8ecb28 100644 --- a/src/mc/world/actor/ActorFactory.h +++ b/src/mc/world/actor/ActorFactory.h @@ -118,7 +118,7 @@ class ActorFactory { MCAPI ::OwnerPtr<::EntityContext> createTransformedActor(::ActorDefinitionIdentifier const& identifier, ::Actor* from); - MCAPI ::ActorGoalFactory& getGoalFactory(); + MCFOLD ::ActorGoalFactory& getGoalFactory(); MCAPI void init(::Experiments const& experiments); @@ -138,7 +138,7 @@ class ActorFactory { MCAPI void setDefinitionGroup(::ActorDefinitionGroup* group); - MCAPI void setEntityInitializer(::std::shared_ptr<::IEntityInitializer> entityInitializer); + MCFOLD void setEntityInitializer(::std::shared_ptr<::IEntityInitializer> entityInitializer); // NOLINTEND public: diff --git a/src/mc/world/actor/ActorFilterGroup.h b/src/mc/world/actor/ActorFilterGroup.h index cb6d8d07b0..d4824028a3 100644 --- a/src/mc/world/actor/ActorFilterGroup.h +++ b/src/mc/world/actor/ActorFilterGroup.h @@ -94,7 +94,7 @@ class ActorFilterGroup : public ::FilterGroup { MCAPI bool evaluateActor(::Actor const& e, ::VariantParameterListConst const& params) const; - MCAPI ::ActorFilterGroup& operator=(::ActorFilterGroup const&); + MCFOLD ::ActorFilterGroup& operator=(::ActorFilterGroup const&); MCAPI ::ActorFilterGroup& operator=(::ActorFilterGroup&&); // NOLINTEND @@ -108,7 +108,7 @@ class ActorFilterGroup : public ::FilterGroup { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND public: diff --git a/src/mc/world/actor/ActorHistory.h b/src/mc/world/actor/ActorHistory.h index 4de0cb1e9b..d15916158b 100644 --- a/src/mc/world/actor/ActorHistory.h +++ b/src/mc/world/actor/ActorHistory.h @@ -81,7 +81,7 @@ class ActorHistory { MCAPI ::ActorHistory::Snapshot const* getFrame(uint64 frame) const; - MCAPI uint64 getOldestFrame() const; + MCFOLD uint64 getOldestFrame() const; MCAPI void queueCorrection(::std::shared_ptr<::IMovementCorrection> correction); diff --git a/src/mc/world/actor/ActorInteraction.h b/src/mc/world/actor/ActorInteraction.h index 1205e885e9..981a7239fc 100644 --- a/src/mc/world/actor/ActorInteraction.h +++ b/src/mc/world/actor/ActorInteraction.h @@ -22,13 +22,13 @@ class ActorInteraction { // NOLINTBEGIN MCAPI explicit ActorInteraction(bool noCapture); - MCAPI void capture(::std::function interactFunc); + MCFOLD void capture(::std::function interactFunc); - MCAPI ::std::string const& getInteractText() const; + MCFOLD ::std::string const& getInteractText() const; MCAPI void interact(); - MCAPI void setInteractText(::std::string const& text); + MCFOLD void setInteractText(::std::string const& text); MCAPI bool shouldCapture() const; @@ -44,6 +44,6 @@ class ActorInteraction { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/world/actor/ActorPropertiesDescription.h b/src/mc/world/actor/ActorPropertiesDescription.h index 31f3ee511a..b3efa6f3f9 100644 --- a/src/mc/world/actor/ActorPropertiesDescription.h +++ b/src/mc/world/actor/ActorPropertiesDescription.h @@ -43,7 +43,7 @@ struct ActorPropertiesDescription : public ::DefintionDescription { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND public: diff --git a/src/mc/world/actor/ActorSpawnRuleDataLoader.h b/src/mc/world/actor/ActorSpawnRuleDataLoader.h index 250b520e1a..9c2a835ed4 100644 --- a/src/mc/world/actor/ActorSpawnRuleDataLoader.h +++ b/src/mc/world/actor/ActorSpawnRuleDataLoader.h @@ -42,6 +42,6 @@ class ActorSpawnRuleDataLoader { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/world/actor/AreaEffectCloud.h b/src/mc/world/actor/AreaEffectCloud.h index 238c52c890..c5ba12ee51 100644 --- a/src/mc/world/actor/AreaEffectCloud.h +++ b/src/mc/world/actor/AreaEffectCloud.h @@ -89,7 +89,7 @@ class AreaEffectCloud : public ::Actor { MCAPI void notifyPickup(); - MCAPI void setAffectOwner(bool shouldAffect); + MCFOLD void setAffectOwner(bool shouldAffect); MCAPI void setDuration(::EffectDuration duration); @@ -131,7 +131,7 @@ class AreaEffectCloud : public ::Actor { MCAPI void $normalTick(); - MCAPI float $getShadowRadius() const; + MCFOLD float $getShadowRadius() const; MCAPI void $addAdditionalSaveData(::CompoundTag& tag) const; diff --git a/src/mc/world/actor/ArmorStand.h b/src/mc/world/actor/ArmorStand.h index ededf5a2a5..624c0ee789 100644 --- a/src/mc/world/actor/ArmorStand.h +++ b/src/mc/world/actor/ArmorStand.h @@ -178,7 +178,7 @@ class ArmorStand : public ::Mob { public: // virtual function thunks // NOLINTBEGIN - MCAPI float $getShadowRadius() const; + MCFOLD float $getShadowRadius() const; MCAPI void $addAdditionalSaveData(::CompoundTag& tag) const; @@ -196,7 +196,7 @@ class ArmorStand : public ::Mob { MCAPI void $pushActors(); - MCAPI bool $isInvulnerableTo(::ActorDamageSource const& source) const; + MCFOLD bool $isInvulnerableTo(::ActorDamageSource const& source) const; // NOLINTEND public: diff --git a/src/mc/world/actor/DataItem.h b/src/mc/world/actor/DataItem.h index 38112f23c7..7f181047e7 100644 --- a/src/mc/world/actor/DataItem.h +++ b/src/mc/world/actor/DataItem.h @@ -39,7 +39,7 @@ class DataItem { public: // virtual function thunks // NOLINTBEGIN - MCAPI bool $isDataEqual(::DataItem const& rhs) const; + MCFOLD bool $isDataEqual(::DataItem const& rhs) const; // NOLINTEND public: diff --git a/src/mc/world/actor/FeedItem.h b/src/mc/world/actor/FeedItem.h index 0eeb759f8a..8bf6314271 100644 --- a/src/mc/world/actor/FeedItem.h +++ b/src/mc/world/actor/FeedItem.h @@ -44,7 +44,7 @@ struct FeedItem { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/world/actor/FishingHook.h b/src/mc/world/actor/FishingHook.h index 07a815124a..4c7048d52a 100644 --- a/src/mc/world/actor/FishingHook.h +++ b/src/mc/world/actor/FishingHook.h @@ -10,6 +10,7 @@ // auto generated forward declare list // clang-format off class ActorDefinitionGroup; +class BlockPos; class EntityContext; class HitResult; struct ActorDefinitionIdentifier; @@ -21,27 +22,21 @@ class FishingHook : public ::Actor { public: // member variables // NOLINTBEGIN - ::ll::UntypedStorage<4, 4> mUnkcf4e6f; - ::ll::UntypedStorage<4, 4> mUnk76505b; - ::ll::UntypedStorage<4, 4> mUnk7c8b78; - ::ll::UntypedStorage<4, 12> mUnk924a7e; - ::ll::UntypedStorage<4, 4> mUnk492d84; - ::ll::UntypedStorage<4, 4> mUnk2f83bf; - ::ll::UntypedStorage<4, 4> mUnkecddce; - ::ll::UntypedStorage<4, 4> mUnke90b0a; - ::ll::UntypedStorage<4, 4> mUnk860015; - ::ll::UntypedStorage<4, 4> mUnk5d4d06; - ::ll::UntypedStorage<4, 4> mUnk345281; - ::ll::UntypedStorage<4, 4> mUnkdbb449; - ::ll::UntypedStorage<1, 1> mUnkc2f77f; + ::ll::TypedStorage<4, 4, float const> SHOOT_SPEED; + ::ll::TypedStorage<4, 4, float const> SHOOT_POWER; + ::ll::TypedStorage<4, 4, int const> NUM_PERCENTAGE_STEPS; + ::ll::TypedStorage<4, 12, ::BlockPos> mBlockPos; + ::ll::TypedStorage<4, 4, float> mBobTimer; + ::ll::TypedStorage<4, 4, float> mFishAngle; + ::ll::TypedStorage<4, 4, int> mLife; + ::ll::TypedStorage<4, 4, int> mFlightTime; + ::ll::TypedStorage<4, 4, int> mTimeUntilHooked; + ::ll::TypedStorage<4, 4, int> mTimeUntilLured; + ::ll::TypedStorage<4, 4, int> mTimeUntilNibble; + ::ll::TypedStorage<4, 4, int> mFishingSpeed; + ::ll::TypedStorage<1, 1, bool> mInGround; // NOLINTEND -public: - // prevent constructor by default - FishingHook& operator=(FishingHook const&); - FishingHook(FishingHook const&); - FishingHook(); - public: // virtual functions // NOLINTBEGIN @@ -130,11 +125,11 @@ class FishingHook : public ::Actor { // NOLINTBEGIN MCAPI void $remove(); - MCAPI float $getShadowRadius() const; + MCFOLD float $getShadowRadius() const; - MCAPI ::ActorUniqueID $getSourceUniqueID() const; + MCFOLD ::ActorUniqueID $getSourceUniqueID() const; - MCAPI bool $shouldDropDeathLoot() const; + MCFOLD bool $shouldDropDeathLoot() const; // NOLINTEND public: diff --git a/src/mc/world/actor/HangingActor.h b/src/mc/world/actor/HangingActor.h index 99bf5bcc4c..2da6d479dc 100644 --- a/src/mc/world/actor/HangingActor.h +++ b/src/mc/world/actor/HangingActor.h @@ -121,7 +121,7 @@ class HangingActor : public ::Actor { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND public: @@ -131,11 +131,11 @@ class HangingActor : public ::Actor { MCAPI float $getBrightness(float a, ::IConstBlockSource const& region) const; - MCAPI bool $placeHangingEntity(::BlockSource& region, int direction); + MCFOLD bool $placeHangingEntity(::BlockSource& region, int direction); MCAPI bool $wouldSurvive(::BlockSource& region); - MCAPI bool $isInvulnerableTo(::ActorDamageSource const& source) const; + MCFOLD bool $isInvulnerableTo(::ActorDamageSource const& source) const; MCAPI bool $_hurt(::ActorDamageSource const& source, float damage, bool knock, bool ignite); diff --git a/src/mc/world/actor/Hopper.h b/src/mc/world/actor/Hopper.h index 8e5bc3db0e..a7c7a090b6 100644 --- a/src/mc/world/actor/Hopper.h +++ b/src/mc/world/actor/Hopper.h @@ -66,11 +66,11 @@ class Hopper { int face ); - MCAPI int getCooldownTime() const; + MCFOLD int getCooldownTime() const; - MCAPI bool isOnCooldown() const; + MCFOLD bool isOnCooldown() const; - MCAPI void setCooldownTime(int time); + MCFOLD void setCooldownTime(int time); // NOLINTEND public: diff --git a/src/mc/world/actor/IdentifierDescription.h b/src/mc/world/actor/IdentifierDescription.h index b5c24c9a18..a503ed30f5 100644 --- a/src/mc/world/actor/IdentifierDescription.h +++ b/src/mc/world/actor/IdentifierDescription.h @@ -30,13 +30,13 @@ struct IdentifierDescription : public ::DefintionDescription { public: // member functions // NOLINTBEGIN - MCAPI ::IdentifierDescription& operator=(::IdentifierDescription const&); + MCFOLD ::IdentifierDescription& operator=(::IdentifierDescription const&); // NOLINTEND public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND public: diff --git a/src/mc/world/actor/InternalComponentRegistry.h b/src/mc/world/actor/InternalComponentRegistry.h index 9799b4e881..c94f03aace 100644 --- a/src/mc/world/actor/InternalComponentRegistry.h +++ b/src/mc/world/actor/InternalComponentRegistry.h @@ -31,7 +31,7 @@ class InternalComponentRegistry { public: // member functions // NOLINTBEGIN - MCAPI ::InternalComponentRegistry::ComponentInfo& operator=(::InternalComponentRegistry::ComponentInfo&&); + MCFOLD ::InternalComponentRegistry::ComponentInfo& operator=(::InternalComponentRegistry::ComponentInfo&&); MCAPI ~ComponentInfo(); // NOLINTEND @@ -39,7 +39,7 @@ class InternalComponentRegistry { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/world/actor/KeyOrNameResult.h b/src/mc/world/actor/KeyOrNameResult.h index df30edd80a..6b1e46f483 100644 --- a/src/mc/world/actor/KeyOrNameResult.h +++ b/src/mc/world/actor/KeyOrNameResult.h @@ -32,6 +32,6 @@ struct KeyOrNameResult { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/world/actor/LeashFenceKnotActor.h b/src/mc/world/actor/LeashFenceKnotActor.h index a47a15bdc5..503f83ad5e 100644 --- a/src/mc/world/actor/LeashFenceKnotActor.h +++ b/src/mc/world/actor/LeashFenceKnotActor.h @@ -103,17 +103,17 @@ class LeashFenceKnotActor : public ::HangingActor { public: // virtual function thunks // NOLINTBEGIN - MCAPI float $getShadowRadius() const; + MCFOLD float $getShadowRadius() const; - MCAPI int $getWidth() const; + MCFOLD int $getWidth() const; - MCAPI int $getHeight() const; + MCFOLD int $getHeight() const; - MCAPI void $dropItem(); + MCFOLD void $dropItem(); - MCAPI void $addAdditionalSaveData(::CompoundTag& tag) const; + MCFOLD void $addAdditionalSaveData(::CompoundTag& tag) const; - MCAPI void $readAdditionalSaveData(::CompoundTag const& tag, ::DataLoadHelper& dataLoadHelper); + MCFOLD void $readAdditionalSaveData(::CompoundTag const& tag, ::DataLoadHelper& dataLoadHelper); MCAPI bool $wouldSurvive(::BlockSource& region); diff --git a/src/mc/world/actor/Mob.h b/src/mc/world/actor/Mob.h index ac6419b07e..5a4abff122 100644 --- a/src/mc/world/actor/Mob.h +++ b/src/mc/world/actor/Mob.h @@ -396,7 +396,7 @@ class Mob : public ::Actor { MCAPI void addSpeedModifier(::mce::UUID const& attributeID, ::std::string const& attributeName, float speedModifier); - MCAPI void ate(); + MCFOLD void ate(); MCAPI float calcMoveRelativeSpeed(::TravelType travelType); @@ -574,7 +574,7 @@ class Mob : public ::Actor { public: // static functions // NOLINTBEGIN - MCAPI static char const* _getDescriptionJsonName(::Description const* description); + MCFOLD static char const* _getDescriptionJsonName(::Description const* description); MCAPI static ::Mob* tryGetFromEntity(::EntityContext& entity, bool includeRemoved); // NOLINTEND @@ -655,7 +655,7 @@ class Mob : public ::Actor { MCAPI bool $shouldDropDeathLoot() const; - MCAPI void $spawnAnim(); + MCFOLD void $spawnAnim(); MCAPI bool $isAlive() const; @@ -667,7 +667,7 @@ class Mob : public ::Actor { MCAPI void $setSprinting(bool shouldSprint); - MCAPI bool $canBePulledIntoVehicle() const; + MCFOLD bool $canBePulledIntoVehicle() const; MCAPI ::SharedTypes::Legacy::LevelSoundEvent $getDeathSound(); @@ -699,11 +699,11 @@ class Mob : public ::Actor { MCAPI void $handleEntityEvent(::ActorEvent id, int data); - MCAPI int $getItemUseDuration() const; + MCFOLD int $getItemUseDuration() const; - MCAPI float $getItemUseStartupProgress() const; + MCFOLD float $getItemUseStartupProgress() const; - MCAPI float $getItemUseIntervalProgress() const; + MCFOLD float $getItemUseIntervalProgress() const; MCAPI void $swing(); @@ -717,7 +717,7 @@ class Mob : public ::Actor { MCAPI bool $attack(::Actor& target, ::ActorDamageCause const& cause); - MCAPI bool $isAlliedTo(::Mob*); + MCFOLD bool $isAlliedTo(::Mob*); MCAPI bool $doHurtTarget(::Actor* target, ::ActorDamageCause const& cause); @@ -731,7 +731,7 @@ class Mob : public ::Actor { MCAPI void $setDamagedArmor(::ArmorSlot slot, ::ItemStack const& item); - MCAPI void $sendArmorDamage(::std::bitset<5> const); + MCFOLD void $sendArmorDamage(::std::bitset<5> const); MCAPI void $sendArmor(::std::bitset<5> const armorSlots); @@ -769,7 +769,7 @@ class Mob : public ::Actor { MCAPI bool $createAIGoals(); - MCAPI void $onBorn(::Actor&, ::Actor&); + MCFOLD void $onBorn(::Actor&, ::Actor&); MCAPI bool $setItemSlot(::SharedTypes::Legacy::EquipmentSlot slot, ::ItemStack const& item); @@ -782,7 +782,7 @@ class Mob : public ::Actor { MCAPI void $teleportTo(::Vec3 const& pos, bool shouldStopRiding, int cause, int sourceEntityType, bool keepVelocity); - MCAPI float $_getWalkTargetValue(::BlockPos const&); + MCFOLD float $_getWalkTargetValue(::BlockPos const&); MCAPI bool $canExistWhenDisallowMob() const; @@ -790,7 +790,7 @@ class Mob : public ::Actor { MCAPI void $setEquippedSlot(::SharedTypes::Legacy::EquipmentSlot slot, ::ItemStack const& item); - MCAPI void $renderDebugServerState(::Options const& options); + MCFOLD void $renderDebugServerState(::Options const& options); MCAPI bool $canFreeze() const; diff --git a/src/mc/world/actor/Motif.h b/src/mc/world/actor/Motif.h index 4738e922dc..29abedc4d0 100644 --- a/src/mc/world/actor/Motif.h +++ b/src/mc/world/actor/Motif.h @@ -70,7 +70,7 @@ class Motif { public: // member functions // NOLINTBEGIN - MCAPI ::std::string const getName() const; + MCFOLD ::std::string const getName() const; // NOLINTEND public: diff --git a/src/mc/world/actor/NetheriteArmorEquippedListener.h b/src/mc/world/actor/NetheriteArmorEquippedListener.h index 000c2792f4..2c08b005b4 100644 --- a/src/mc/world/actor/NetheriteArmorEquippedListener.h +++ b/src/mc/world/actor/NetheriteArmorEquippedListener.h @@ -26,7 +26,7 @@ class NetheriteArmorEquippedListener : public ::EventListenerDispatcher<::ActorE public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND public: diff --git a/src/mc/world/actor/Painting.h b/src/mc/world/actor/Painting.h index 0bebd30488..2933b0f450 100644 --- a/src/mc/world/actor/Painting.h +++ b/src/mc/world/actor/Painting.h @@ -95,7 +95,7 @@ class Painting : public ::HangingActor { public: // virtual function thunks // NOLINTBEGIN - MCAPI float $getShadowRadius() const; + MCFOLD float $getShadowRadius() const; MCAPI ::std::unique_ptr<::AddActorBasePacket> $tryCreateAddActorPacket(); diff --git a/src/mc/world/actor/RenderParams.h b/src/mc/world/actor/RenderParams.h index 0d5f073187..652796e41d 100644 --- a/src/mc/world/actor/RenderParams.h +++ b/src/mc/world/actor/RenderParams.h @@ -116,7 +116,7 @@ class RenderParams { public: // static functions // NOLINTBEGIN - MCAPI static ::RenderParams& getRenderParams(::Actor& actor); + MCFOLD static ::RenderParams& getRenderParams(::Actor& actor); // NOLINTEND public: diff --git a/src/mc/world/actor/RuntimeIdentifierDescription.h b/src/mc/world/actor/RuntimeIdentifierDescription.h index 51dcf330e4..0a8136eb14 100644 --- a/src/mc/world/actor/RuntimeIdentifierDescription.h +++ b/src/mc/world/actor/RuntimeIdentifierDescription.h @@ -42,7 +42,7 @@ struct RuntimeIdentifierDescription : public ::DefintionDescription { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND public: diff --git a/src/mc/world/actor/SerializedAbilitiesData.h b/src/mc/world/actor/SerializedAbilitiesData.h index a4ec4ab0eb..56f1665a73 100644 --- a/src/mc/world/actor/SerializedAbilitiesData.h +++ b/src/mc/world/actor/SerializedAbilitiesData.h @@ -59,7 +59,7 @@ struct SerializedAbilitiesData { MCAPI void fillIn(::LayeredAbilities& layeredAbilities) const; - MCAPI ::ActorUniqueID getTargetPlayer() const; + MCFOLD ::ActorUniqueID getTargetPlayer() const; MCAPI ~SerializedAbilitiesData(); // NOLINTEND diff --git a/src/mc/world/actor/SpawnChecks.h b/src/mc/world/actor/SpawnChecks.h index 9ec1fb118e..a51b5de695 100644 --- a/src/mc/world/actor/SpawnChecks.h +++ b/src/mc/world/actor/SpawnChecks.h @@ -14,35 +14,35 @@ class SpawnChecks { public: // static functions // NOLINTBEGIN - MCAPI static bool canHatchEgg(::ILevel const& level); + MCFOLD static bool canHatchEgg(::ILevel const& level); - MCAPI static bool canRespawnEnderDragon(::ILevel const& level); + MCFOLD static bool canRespawnEnderDragon(::ILevel const& level); - MCAPI static bool canReviveBees(::ILevel const& level); + MCFOLD static bool canReviveBees(::ILevel const& level); - MCAPI static bool canSpawnBees(::ILevel const& level); + MCFOLD static bool canSpawnBees(::ILevel const& level); MCAPI static bool canSpawnEnderDragon(::ServerLevel const& level); - MCAPI static bool canSpawnFromMobSpawnerBlock(::ILevel const& level); + MCFOLD static bool canSpawnFromMobSpawnerBlock(::ILevel const& level); - MCAPI static bool canSpawnNaturally(::ILevel const& level); + MCFOLD static bool canSpawnNaturally(::ILevel const& level); MCAPI static bool canSpawnPigZombieFromPortal(::Dimension const& dimension, ::Randomize const& randomize); MCAPI static bool canSpawnSkeletonTrap(::ILevel const& level, ::Randomize const& randomize); - MCAPI static bool canSpawnTadpoles(::ILevel const& level); + MCFOLD static bool canSpawnTadpoles(::ILevel const& level); - MCAPI static bool canSpawnVillageDwellers(::ILevel const& level); + MCFOLD static bool canSpawnVillageDwellers(::ILevel const& level); MCAPI static bool canSpawnWanderingTrader(::ServerLevel const& level); - MCAPI static bool canSpawnWarden(::ILevel const& level); + MCFOLD static bool canSpawnWarden(::ILevel const& level); MCAPI static bool canSpawnWithWorldGeneration(::ILevel const& level); - MCAPI static bool canTriggerRaid(::ILevel const& level); + MCFOLD static bool canTriggerRaid(::ILevel const& level); MCAPI static bool shouldAbortRaid(::ILevel const& level); diff --git a/src/mc/world/actor/SpawnGroupData.h b/src/mc/world/actor/SpawnGroupData.h index bfff911624..2259964680 100644 --- a/src/mc/world/actor/SpawnGroupData.h +++ b/src/mc/world/actor/SpawnGroupData.h @@ -22,9 +22,9 @@ class SpawnGroupData { MCAPI void addSpawnRules(::MobSpawnRules& spawnRules); - MCAPI ::std::string const& getIdentifier() const; + MCFOLD ::std::string const& getIdentifier() const; - MCAPI ::std::vector<::MobSpawnRules> const& getSpawnRules() const; + MCFOLD ::std::vector<::MobSpawnRules> const& getSpawnRules() const; // NOLINTEND public: diff --git a/src/mc/world/actor/SpawnGroupDataLoader.h b/src/mc/world/actor/SpawnGroupDataLoader.h index dd68d6baef..39b29208a1 100644 --- a/src/mc/world/actor/SpawnGroupDataLoader.h +++ b/src/mc/world/actor/SpawnGroupDataLoader.h @@ -29,7 +29,7 @@ class SpawnGroupDataLoader { // NOLINTBEGIN MCAPI SpawnGroupDataLoader(); - MCAPI ::SemVersion const& firstCerealSlice() const; + MCFOLD ::SemVersion const& firstCerealSlice() const; MCAPI ::Puv::LoadResult<::ActorSpawnRuleData> load(::Bedrock::Resources::MinecraftDocumentInput const& input) const; diff --git a/src/mc/world/actor/SynchedActorData.h b/src/mc/world/actor/SynchedActorData.h index d2684519c4..f6be85b838 100644 --- a/src/mc/world/actor/SynchedActorData.h +++ b/src/mc/world/actor/SynchedActorData.h @@ -95,6 +95,6 @@ class SynchedActorData { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/world/actor/SynchedActorDataEntityWrapper.h b/src/mc/world/actor/SynchedActorDataEntityWrapper.h index df98f9d67e..9af4b8147e 100644 --- a/src/mc/world/actor/SynchedActorDataEntityWrapper.h +++ b/src/mc/world/actor/SynchedActorDataEntityWrapper.h @@ -37,7 +37,7 @@ class SynchedActorDataEntityWrapper { MCAPI ::gsl::not_null<::SynchedActorData const*> _get() const; - MCAPI ::gsl::not_null<::SynchedActorData*> _get(); + MCFOLD ::gsl::not_null<::SynchedActorData*> _get(); MCAPI ::CompoundTag const& getCompoundTag(ushort id) const; @@ -49,7 +49,7 @@ class SynchedActorDataEntityWrapper { MCAPI schar getInt8(ushort id) const; - MCAPI ::BlockPos getPosition(ushort id) const; + MCFOLD ::BlockPos getPosition(ushort id) const; MCAPI short getShort(ushort id) const; @@ -67,7 +67,7 @@ class SynchedActorDataEntityWrapper { MCAPI ::std::vector<::std::unique_ptr<::DataItem>> packDirty(); - MCAPI ::SynchedActorDataReader reader() const; + MCFOLD ::SynchedActorDataReader reader() const; MCAPI ::SynchedActorDataWriter writer(); @@ -83,6 +83,6 @@ class SynchedActorDataEntityWrapper { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/world/actor/SynchedActorDataReader.h b/src/mc/world/actor/SynchedActorDataReader.h index eb9a424cf9..bd446a4a1f 100644 --- a/src/mc/world/actor/SynchedActorDataReader.h +++ b/src/mc/world/actor/SynchedActorDataReader.h @@ -27,7 +27,7 @@ class SynchedActorDataReader { public: // member functions // NOLINTBEGIN - MCAPI ::BlockPos getPosition(ushort id) const; + MCFOLD ::BlockPos getPosition(ushort id) const; MCAPI bool getStatusFlag(::ActorFlags flag) const; // NOLINTEND diff --git a/src/mc/world/actor/SynchedActorDataWriter.h b/src/mc/world/actor/SynchedActorDataWriter.h index 76994aa97b..16023e0326 100644 --- a/src/mc/world/actor/SynchedActorDataWriter.h +++ b/src/mc/world/actor/SynchedActorDataWriter.h @@ -26,8 +26,8 @@ class SynchedActorDataWriter { public: // member functions // NOLINTBEGIN - MCAPI ::gsl::not_null<::SynchedActorData*> _get(); + MCFOLD ::gsl::not_null<::SynchedActorData*> _get(); - MCAPI ::SynchedActorDataReader reader() const; + MCFOLD ::SynchedActorDataReader reader() const; // NOLINTEND }; diff --git a/src/mc/world/actor/TempEPtr.h b/src/mc/world/actor/TempEPtr.h new file mode 100644 index 0000000000..097e6caa8e --- /dev/null +++ b/src/mc/world/actor/TempEPtr.h @@ -0,0 +1,6 @@ +#pragma once + +#include "mc/_HeaderOutputPredefine.h" + +template +class TempEPtr {}; diff --git a/src/mc/world/actor/VersionedActorDamageCause.h b/src/mc/world/actor/VersionedActorDamageCause.h index d7292e4b6b..bb21885d35 100644 --- a/src/mc/world/actor/VersionedActorDamageCause.h +++ b/src/mc/world/actor/VersionedActorDamageCause.h @@ -29,11 +29,11 @@ class VersionedActorDamageCause { public: // member functions // NOLINTBEGIN - MCAPI ::ActorDamageCause getCause() const; + MCFOLD ::ActorDamageCause getCause() const; MCAPI ::std::optional getDeprecatedMajorVersion() const; - MCAPI ::std::string const& getName() const; + MCFOLD ::std::string const& getName() const; MCAPI ::Scripting::Version getVersion() const; @@ -43,6 +43,6 @@ class VersionedActorDamageCause { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/world/actor/_TickPtr.h b/src/mc/world/actor/_TickPtr.h index 122b6e2f24..9938ca3b70 100644 --- a/src/mc/world/actor/_TickPtr.h +++ b/src/mc/world/actor/_TickPtr.h @@ -16,7 +16,7 @@ class _TickPtr { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND public: diff --git a/src/mc/world/actor/agent/Agent.h b/src/mc/world/actor/agent/Agent.h index 9c16fb5cd6..79fcde693b 100644 --- a/src/mc/world/actor/agent/Agent.h +++ b/src/mc/world/actor/agent/Agent.h @@ -111,7 +111,7 @@ class Agent : public ::Mob { virtual void kill() /*override*/; // vIndex: 56 - virtual void setOwner(::ActorUniqueID const id) /*override*/; + virtual void setOwner(::ActorUniqueID const ownerId) /*override*/; // vIndex: 139 virtual bool _hurt(::ActorDamageSource const& source, float damage, bool knock, bool ignite) /*override*/; @@ -142,7 +142,7 @@ class Agent : public ::Mob { MCAPI ::AgentRenderData& getRenderData(); - MCAPI int getSelectedSlot() const; + MCFOLD int getSelectedSlot() const; MCAPI int getSwingAnimationDuration() const; @@ -204,13 +204,13 @@ class Agent : public ::Mob { // NOLINTBEGIN MCAPI ::mce::Color $getNameTagTextColor() const; - MCAPI bool $canShowNameTag() const; + MCFOLD bool $canShowNameTag() const; - MCAPI bool $canBePulledIntoVehicle() const; + MCFOLD bool $canBePulledIntoVehicle() const; - MCAPI bool $canBeAffected(uint id) const; + MCFOLD bool $canBeAffected(uint id) const; - MCAPI void $knockback(::Actor*, int, float, float, float, float, float); + MCFOLD void $knockback(::Actor*, int, float, float, float, float, float); MCAPI void $initializeComponents(::ActorInitializationMethod method, ::VariantParameterList const& params); @@ -224,15 +224,15 @@ class Agent : public ::Mob { MCAPI void $teleportTo(::Vec3 const& pos, bool shouldStopRiding, int cause, int entityType, bool keepVelocity); - MCAPI bool $canExistWhenDisallowMob() const; + MCFOLD bool $canExistWhenDisallowMob() const; - MCAPI bool $isTargetable() const; + MCFOLD bool $isTargetable() const; MCAPI bool $isInvisible() const; MCAPI void $kill(); - MCAPI void $setOwner(::ActorUniqueID const id); + MCAPI void $setOwner(::ActorUniqueID const ownerId); MCAPI bool $_hurt(::ActorDamageSource const& source, float damage, bool knock, bool ignite); diff --git a/src/mc/world/actor/agent/agent_commands/CollectCommand.h b/src/mc/world/actor/agent/agent_commands/CollectCommand.h index 9b6e9f01ff..362fb2ca01 100644 --- a/src/mc/world/actor/agent/agent_commands/CollectCommand.h +++ b/src/mc/world/actor/agent/agent_commands/CollectCommand.h @@ -46,7 +46,7 @@ class CollectCommand : public ::AgentCommands::Command { // NOLINTBEGIN MCAPI void $execute(); - MCAPI bool $isDone(); + MCFOLD bool $isDone(); // NOLINTEND public: diff --git a/src/mc/world/actor/agent/agent_commands/Command.h b/src/mc/world/actor/agent/agent_commands/Command.h index d526d5e5e8..6016d9375b 100644 --- a/src/mc/world/actor/agent/agent_commands/Command.h +++ b/src/mc/world/actor/agent/agent_commands/Command.h @@ -51,7 +51,7 @@ class Command { // NOLINTBEGIN MCAPI void $execute(); - MCAPI void $tick(); + MCFOLD void $tick(); MCAPI void $fireCommandDoneEvent(); // NOLINTEND diff --git a/src/mc/world/actor/agent/agent_commands/DropAllCommand.h b/src/mc/world/actor/agent/agent_commands/DropAllCommand.h index 95250f45bf..395d7855fb 100644 --- a/src/mc/world/actor/agent/agent_commands/DropAllCommand.h +++ b/src/mc/world/actor/agent/agent_commands/DropAllCommand.h @@ -44,7 +44,7 @@ class DropAllCommand : public ::AgentCommands::Command { // NOLINTBEGIN MCAPI void $execute(); - MCAPI bool $isDone(); + MCFOLD bool $isDone(); // NOLINTEND public: diff --git a/src/mc/world/actor/agent/agent_commands/DropCommand.h b/src/mc/world/actor/agent/agent_commands/DropCommand.h index 8db56c1285..2801867ff0 100644 --- a/src/mc/world/actor/agent/agent_commands/DropCommand.h +++ b/src/mc/world/actor/agent/agent_commands/DropCommand.h @@ -46,7 +46,7 @@ class DropCommand : public ::AgentCommands::Command { // NOLINTBEGIN MCAPI void $execute(); - MCAPI bool $isDone(); + MCFOLD bool $isDone(); // NOLINTEND public: diff --git a/src/mc/world/actor/agent/agent_commands/GetItemCountCommand.h b/src/mc/world/actor/agent/agent_commands/GetItemCountCommand.h index 74c27ca8f7..32072f9201 100644 --- a/src/mc/world/actor/agent/agent_commands/GetItemCountCommand.h +++ b/src/mc/world/actor/agent/agent_commands/GetItemCountCommand.h @@ -45,9 +45,9 @@ class GetItemCountCommand : public ::AgentCommands::Command { public: // virtual function thunks // NOLINTBEGIN - MCAPI void $execute(); + MCFOLD void $execute(); - MCAPI bool $isDone(); + MCFOLD bool $isDone(); MCAPI void $fireCommandDoneEvent(); // NOLINTEND diff --git a/src/mc/world/actor/agent/agent_commands/GetItemDetailsCommand.h b/src/mc/world/actor/agent/agent_commands/GetItemDetailsCommand.h index 01ebef0169..56d049eb5a 100644 --- a/src/mc/world/actor/agent/agent_commands/GetItemDetailsCommand.h +++ b/src/mc/world/actor/agent/agent_commands/GetItemDetailsCommand.h @@ -45,9 +45,9 @@ class GetItemDetailsCommand : public ::AgentCommands::Command { public: // virtual function thunks // NOLINTBEGIN - MCAPI void $execute(); + MCFOLD void $execute(); - MCAPI bool $isDone(); + MCFOLD bool $isDone(); MCAPI void $fireCommandDoneEvent(); // NOLINTEND diff --git a/src/mc/world/actor/agent/agent_commands/GetItemSpaceCommand.h b/src/mc/world/actor/agent/agent_commands/GetItemSpaceCommand.h index b8cb512620..6cce5deba1 100644 --- a/src/mc/world/actor/agent/agent_commands/GetItemSpaceCommand.h +++ b/src/mc/world/actor/agent/agent_commands/GetItemSpaceCommand.h @@ -46,9 +46,9 @@ class GetItemSpaceCommand : public ::AgentCommands::Command { public: // virtual function thunks // NOLINTBEGIN - MCAPI void $execute(); + MCFOLD void $execute(); - MCAPI bool $isDone(); + MCFOLD bool $isDone(); MCAPI void $fireCommandDoneEvent(); // NOLINTEND diff --git a/src/mc/world/actor/agent/agent_commands/InspectDataCommand.h b/src/mc/world/actor/agent/agent_commands/InspectDataCommand.h index 9489ea4431..32529e35b8 100644 --- a/src/mc/world/actor/agent/agent_commands/InspectDataCommand.h +++ b/src/mc/world/actor/agent/agent_commands/InspectDataCommand.h @@ -46,9 +46,9 @@ class InspectDataCommand : public ::AgentCommands::Command { public: // virtual function thunks // NOLINTBEGIN - MCAPI void $execute(); + MCFOLD void $execute(); - MCAPI bool $isDone(); + MCFOLD bool $isDone(); MCAPI void $fireCommandDoneEvent(); // NOLINTEND diff --git a/src/mc/world/actor/agent/agent_commands/TransferToCommand.h b/src/mc/world/actor/agent/agent_commands/TransferToCommand.h index cf74490621..fa4dbe9aaf 100644 --- a/src/mc/world/actor/agent/agent_commands/TransferToCommand.h +++ b/src/mc/world/actor/agent/agent_commands/TransferToCommand.h @@ -46,7 +46,7 @@ class TransferToCommand : public ::AgentCommands::Command { // NOLINTBEGIN MCAPI void $execute(); - MCAPI bool $isDone(); + MCFOLD bool $isDone(); // NOLINTEND public: diff --git a/src/mc/world/actor/agent/agent_components/actions/PlaceBlock.h b/src/mc/world/actor/agent/agent_components/actions/PlaceBlock.h index 74cb963448..90af68f46e 100644 --- a/src/mc/world/actor/agent/agent_components/actions/PlaceBlock.h +++ b/src/mc/world/actor/agent/agent_components/actions/PlaceBlock.h @@ -28,7 +28,7 @@ struct PlaceBlock { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/world/actor/agent/agent_components/actions/Till.h b/src/mc/world/actor/agent/agent_components/actions/Till.h index 56dcc0d8ba..3a1cbd3182 100644 --- a/src/mc/world/actor/agent/agent_components/actions/Till.h +++ b/src/mc/world/actor/agent/agent_components/actions/Till.h @@ -27,7 +27,7 @@ struct Till { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/world/actor/ai/control/BodyControl.h b/src/mc/world/actor/ai/control/BodyControl.h index 3d5c1644b0..d6184d4ed5 100644 --- a/src/mc/world/actor/ai/control/BodyControl.h +++ b/src/mc/world/actor/ai/control/BodyControl.h @@ -54,7 +54,7 @@ class BodyControl : public ::Control { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND public: diff --git a/src/mc/world/actor/ai/control/DynamicJumpControl.h b/src/mc/world/actor/ai/control/DynamicJumpControl.h index 3e81e4bb22..67cda3624e 100644 --- a/src/mc/world/actor/ai/control/DynamicJumpControl.h +++ b/src/mc/world/actor/ai/control/DynamicJumpControl.h @@ -66,7 +66,7 @@ class DynamicJumpControl : public ::JumpControl { public: // virtual function thunks // NOLINTBEGIN - MCAPI void $initializeInternal(::Mob& mob, ::JumpControlDescription* description); + MCFOLD void $initializeInternal(::Mob& mob, ::JumpControlDescription* description); MCAPI ::std::unique_ptr<::JumpControl> $clone() const; diff --git a/src/mc/world/actor/ai/control/GenericMoveControl.h b/src/mc/world/actor/ai/control/GenericMoveControl.h index 0c88181bed..642088298c 100644 --- a/src/mc/world/actor/ai/control/GenericMoveControl.h +++ b/src/mc/world/actor/ai/control/GenericMoveControl.h @@ -47,7 +47,7 @@ class GenericMoveControl : public ::MoveControl { public: // virtual function thunks // NOLINTBEGIN - MCAPI void $initializeInternal(::Mob& mob, ::MoveControlDescription* description); + MCFOLD void $initializeInternal(::Mob& mob, ::MoveControlDescription* description); MCAPI void $tick(::MoveControlComponent& parent, ::Mob& mob); // NOLINTEND diff --git a/src/mc/world/actor/ai/control/JumpControl.h b/src/mc/world/actor/ai/control/JumpControl.h index 13dcfdfcf1..0835949f36 100644 --- a/src/mc/world/actor/ai/control/JumpControl.h +++ b/src/mc/world/actor/ai/control/JumpControl.h @@ -66,21 +66,21 @@ class JumpControl : public ::Control { public: // virtual function thunks // NOLINTBEGIN - MCAPI void $initializeInternal(::Mob& mob, ::JumpControlDescription* description); + MCFOLD void $initializeInternal(::Mob& mob, ::JumpControlDescription* description); MCAPI ::std::unique_ptr<::JumpControl> $clone() const; MCAPI void $tick(::JumpControlComponent& parent, ::Mob& mob); - MCAPI int $getJumpDelay(::JumpControlComponent const&) const; + MCFOLD int $getJumpDelay(::JumpControlComponent const&) const; MCAPI float $getJumpPower(::JumpControlComponent const& parent) const; - MCAPI ::JumpType $getJumpType(::JumpControlComponent const&) const; + MCFOLD ::JumpType $getJumpType(::JumpControlComponent const&) const; - MCAPI void $setJumpType(::JumpControlComponent&, ::JumpType); + MCFOLD void $setJumpType(::JumpControlComponent&, ::JumpType); - MCAPI void $resetSpeedModifier(::JumpControlComponent const&, ::Mob&); + MCFOLD void $resetSpeedModifier(::JumpControlComponent const&, ::Mob&); // NOLINTEND public: diff --git a/src/mc/world/actor/ai/control/JumpInfo.h b/src/mc/world/actor/ai/control/JumpInfo.h index b2fcf34c57..54f5c96f32 100644 --- a/src/mc/world/actor/ai/control/JumpInfo.h +++ b/src/mc/world/actor/ai/control/JumpInfo.h @@ -23,13 +23,13 @@ class JumpInfo { // NOLINTBEGIN MCAPI JumpInfo(float distanceScale, float height, int jumpDelay, int animDuration); - MCAPI int getAnimDuration() const; + MCFOLD int getAnimDuration() const; - MCAPI float getDistanceScale() const; + MCFOLD float getDistanceScale() const; - MCAPI float getHeight() const; + MCFOLD float getHeight() const; - MCAPI int getJumpDelay() const; + MCFOLD int getJumpDelay() const; // NOLINTEND public: diff --git a/src/mc/world/actor/ai/control/LookControl.h b/src/mc/world/actor/ai/control/LookControl.h index 1873cfe9f4..eee136ca0f 100644 --- a/src/mc/world/actor/ai/control/LookControl.h +++ b/src/mc/world/actor/ai/control/LookControl.h @@ -45,7 +45,7 @@ class LookControl : public ::Control { public: // virtual function thunks // NOLINTBEGIN - MCAPI void $initializeInternal(::Mob& mob); + MCFOLD void $initializeInternal(::Mob& mob); MCAPI void $tick(::Mob& mob); // NOLINTEND diff --git a/src/mc/world/actor/ai/control/MoveControl.h b/src/mc/world/actor/ai/control/MoveControl.h index b1f4caf3f0..3989836586 100644 --- a/src/mc/world/actor/ai/control/MoveControl.h +++ b/src/mc/world/actor/ai/control/MoveControl.h @@ -77,7 +77,7 @@ class MoveControl : public ::Control { public: // virtual function thunks // NOLINTBEGIN - MCAPI void $initializeInternal(::Mob& mob, ::MoveControlDescription* description); + MCFOLD void $initializeInternal(::Mob& mob, ::MoveControlDescription* description); MCAPI void $tick(::MoveControlComponent& parent, ::Mob& mob); diff --git a/src/mc/world/actor/ai/goal/AdmireItemGoal.h b/src/mc/world/actor/ai/goal/AdmireItemGoal.h index 941e338326..fb3f8392a9 100644 --- a/src/mc/world/actor/ai/goal/AdmireItemGoal.h +++ b/src/mc/world/actor/ai/goal/AdmireItemGoal.h @@ -95,7 +95,7 @@ class AdmireItemGoal : public ::Goal { // NOLINTBEGIN MCAPI bool $canUse(); - MCAPI bool $canContinueToUse(); + MCFOLD bool $canContinueToUse(); MCAPI void $start(); diff --git a/src/mc/world/actor/ai/goal/AgentCommandExecutionGoal.h b/src/mc/world/actor/ai/goal/AgentCommandExecutionGoal.h index 0c3181da5f..5f95566ae2 100644 --- a/src/mc/world/actor/ai/goal/AgentCommandExecutionGoal.h +++ b/src/mc/world/actor/ai/goal/AgentCommandExecutionGoal.h @@ -72,7 +72,7 @@ class AgentCommandExecutionGoal : public ::Goal { MCAPI void $stop(); - MCAPI bool $canBeInterrupted(); + MCFOLD bool $canBeInterrupted(); MCAPI void $appendDebugInfo(::std::string& str) const; // NOLINTEND diff --git a/src/mc/world/actor/ai/goal/BarterGoal.h b/src/mc/world/actor/ai/goal/BarterGoal.h index a283e18651..78cc42cae5 100644 --- a/src/mc/world/actor/ai/goal/BarterGoal.h +++ b/src/mc/world/actor/ai/goal/BarterGoal.h @@ -71,7 +71,7 @@ class BarterGoal : public ::Goal { // NOLINTBEGIN MCAPI bool $canUse(); - MCAPI bool $canContinueToUse(); + MCFOLD bool $canContinueToUse(); MCAPI void $tick(); diff --git a/src/mc/world/actor/ai/goal/BaseGoalDefinition.h b/src/mc/world/actor/ai/goal/BaseGoalDefinition.h index 864bc3c3cc..361306e9dd 100644 --- a/src/mc/world/actor/ai/goal/BaseGoalDefinition.h +++ b/src/mc/world/actor/ai/goal/BaseGoalDefinition.h @@ -58,9 +58,9 @@ class BaseGoalDefinition { public: // virtual function thunks // NOLINTBEGIN - MCAPI bool $validateMobType(::Mob&) const; + MCFOLD bool $validateMobType(::Mob&) const; - MCAPI bool $validate(::Mob&) const; + MCFOLD bool $validate(::Mob&) const; // NOLINTEND public: diff --git a/src/mc/world/actor/ai/goal/BaseMoveToBlockGoal.h b/src/mc/world/actor/ai/goal/BaseMoveToBlockGoal.h index 5e9bd4d0ed..45a3cc68b6 100644 --- a/src/mc/world/actor/ai/goal/BaseMoveToBlockGoal.h +++ b/src/mc/world/actor/ai/goal/BaseMoveToBlockGoal.h @@ -75,7 +75,7 @@ class BaseMoveToBlockGoal : public ::BaseMoveToGoal { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND public: diff --git a/src/mc/world/actor/ai/goal/BaseMoveToGoal.h b/src/mc/world/actor/ai/goal/BaseMoveToGoal.h index 4671f00a79..37a1688844 100644 --- a/src/mc/world/actor/ai/goal/BaseMoveToGoal.h +++ b/src/mc/world/actor/ai/goal/BaseMoveToGoal.h @@ -117,7 +117,7 @@ class BaseMoveToGoal : public ::Goal { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND public: @@ -133,7 +133,7 @@ class BaseMoveToGoal : public ::Goal { MCAPI void $tick(); - MCAPI bool $hasReachedTarget() const; + MCFOLD bool $hasReachedTarget() const; MCAPI int $_nextStartTick(); @@ -141,7 +141,7 @@ class BaseMoveToGoal : public ::Goal { MCAPI ::Vec3 $_getTargetPosition() const; - MCAPI uint64 $_getRepathTime() const; + MCFOLD uint64 $_getRepathTime() const; // NOLINTEND public: diff --git a/src/mc/world/actor/ai/goal/CircleAroundAnchorGoal.h b/src/mc/world/actor/ai/goal/CircleAroundAnchorGoal.h index 2e8c6a1d11..f20c115269 100644 --- a/src/mc/world/actor/ai/goal/CircleAroundAnchorGoal.h +++ b/src/mc/world/actor/ai/goal/CircleAroundAnchorGoal.h @@ -88,7 +88,7 @@ class CircleAroundAnchorGoal : public ::Goal { MCAPI void $stop(); - MCAPI bool $canUse(); + MCFOLD bool $canUse(); MCAPI void $tick(); diff --git a/src/mc/world/actor/ai/goal/DelayedAttackGoal.h b/src/mc/world/actor/ai/goal/DelayedAttackGoal.h index 04da4c3bc8..526839f161 100644 --- a/src/mc/world/actor/ai/goal/DelayedAttackGoal.h +++ b/src/mc/world/actor/ai/goal/DelayedAttackGoal.h @@ -89,11 +89,11 @@ class DelayedAttackGoal : public ::MeleeAttackGoal { public: // virtual function thunks // NOLINTBEGIN - MCAPI bool $canUse(); + MCFOLD bool $canUse(); MCAPI bool $canContinueToUse(); - MCAPI void $start(); + MCFOLD void $start(); MCAPI void $stop(); diff --git a/src/mc/world/actor/ai/goal/DigGoal.h b/src/mc/world/actor/ai/goal/DigGoal.h index 4819a0b8e6..6203e599cc 100644 --- a/src/mc/world/actor/ai/goal/DigGoal.h +++ b/src/mc/world/actor/ai/goal/DigGoal.h @@ -171,7 +171,7 @@ class DigGoal : public ::Goal { MCAPI void $stop(); - MCAPI void $tick(); + MCFOLD void $tick(); MCAPI void $appendDebugInfo(::std::string& str) const; // NOLINTEND diff --git a/src/mc/world/actor/ai/goal/DragonBaseGoalDefinition.h b/src/mc/world/actor/ai/goal/DragonBaseGoalDefinition.h index aa49455cd2..cd3a717b30 100644 --- a/src/mc/world/actor/ai/goal/DragonBaseGoalDefinition.h +++ b/src/mc/world/actor/ai/goal/DragonBaseGoalDefinition.h @@ -45,7 +45,7 @@ class DragonBaseGoalDefinition : public ::BaseGoalDefinition { public: // virtual function thunks // NOLINTBEGIN - MCAPI bool $validateMobType(::Mob& mob) const; + MCFOLD bool $validateMobType(::Mob& mob) const; // NOLINTEND public: diff --git a/src/mc/world/actor/ai/goal/DragonDeathGoal.h b/src/mc/world/actor/ai/goal/DragonDeathGoal.h index d888274399..963bf29a7d 100644 --- a/src/mc/world/actor/ai/goal/DragonDeathGoal.h +++ b/src/mc/world/actor/ai/goal/DragonDeathGoal.h @@ -70,9 +70,9 @@ class DragonDeathGoal : public ::Goal { public: // virtual function thunks // NOLINTBEGIN - MCAPI bool $canUse(); + MCFOLD bool $canUse(); - MCAPI bool $canContinueToUse(); + MCFOLD bool $canContinueToUse(); MCAPI void $start(); diff --git a/src/mc/world/actor/ai/goal/DragonFlamingDefinition.h b/src/mc/world/actor/ai/goal/DragonFlamingDefinition.h index a00b5ade22..af6d37dfbd 100644 --- a/src/mc/world/actor/ai/goal/DragonFlamingDefinition.h +++ b/src/mc/world/actor/ai/goal/DragonFlamingDefinition.h @@ -74,7 +74,7 @@ class DragonFlamingDefinition : public ::BaseGoalDefinition { public: // virtual function thunks // NOLINTBEGIN - MCAPI bool $validateMobType(::Mob& mob) const; + MCFOLD bool $validateMobType(::Mob& mob) const; // NOLINTEND public: diff --git a/src/mc/world/actor/ai/goal/DragonFlamingGoal.h b/src/mc/world/actor/ai/goal/DragonFlamingGoal.h index 6fe6e111d5..939a391334 100644 --- a/src/mc/world/actor/ai/goal/DragonFlamingGoal.h +++ b/src/mc/world/actor/ai/goal/DragonFlamingGoal.h @@ -7,31 +7,28 @@ // auto generated forward declare list // clang-format off +class EnderDragon; class Mob; +struct EffectDuration; +namespace mce { class Color; } // clang-format on class DragonFlamingGoal : public ::Goal { public: // member variables // NOLINTBEGIN - ::ll::UntypedStorage<8, 8> mUnk56d4a3; - ::ll::UntypedStorage<4, 4> mUnkb35df2; - ::ll::UntypedStorage<4, 4> mUnkb86092; - ::ll::UntypedStorage<4, 4> mUnk71996e; - ::ll::UntypedStorage<4, 4> mUnkc536ef; - ::ll::UntypedStorage<4, 4> mUnk54770c; - ::ll::UntypedStorage<4, 4> mUnk38bd92; - ::ll::UntypedStorage<4, 4> mUnk30f99a; - ::ll::UntypedStorage<4, 4> mUnk6d2d38; - ::ll::UntypedStorage<4, 16> mUnk813ff1; + ::ll::TypedStorage<8, 8, ::EnderDragon&> mDragon; + ::ll::TypedStorage<4, 4, int> mGroundFlameAttackCount; + ::ll::TypedStorage<4, 4, int> mCooldownTicks; + ::ll::TypedStorage<4, 4, int> mFlameTicks; + ::ll::TypedStorage<4, 4, int> mFlameDurationTicks; + ::ll::TypedStorage<4, 4, int> mRoarTicks; + ::ll::TypedStorage<4, 4, int> mRoarDurationTicks; + ::ll::TypedStorage<4, 4, ::EffectDuration> mSmokeDurationTicks; + ::ll::TypedStorage<4, 4, float> mSmokeRadius; + ::ll::TypedStorage<4, 16, ::mce::Color> mSmokeColor; // NOLINTEND -public: - // prevent constructor by default - DragonFlamingGoal& operator=(DragonFlamingGoal const&); - DragonFlamingGoal(DragonFlamingGoal const&); - DragonFlamingGoal(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/actor/ai/goal/DragonStrafePlayerGoal.h b/src/mc/world/actor/ai/goal/DragonStrafePlayerGoal.h index adb6b42797..a780e55e8b 100644 --- a/src/mc/world/actor/ai/goal/DragonStrafePlayerGoal.h +++ b/src/mc/world/actor/ai/goal/DragonStrafePlayerGoal.h @@ -9,30 +9,26 @@ // clang-format off class Actor; class Mob; +class Path; +class WeakEntityRef; // clang-format on class DragonStrafePlayerGoal : public ::DragonBaseGoal { public: // member variables // NOLINTBEGIN - ::ll::UntypedStorage<8, 24> mUnkd50c8e; - ::ll::UntypedStorage<8, 8> mUnkc70361; - ::ll::UntypedStorage<1, 1> mUnkb07a61; - ::ll::UntypedStorage<1, 1> mUnk52836d; - ::ll::UntypedStorage<4, 4> mUnk119092; - ::ll::UntypedStorage<4, 4> mUnk4fc9e2; - ::ll::UntypedStorage<4, 4> mUnka7714b; - ::ll::UntypedStorage<4, 4> mUnk926532; - ::ll::UntypedStorage<4, 4> mUnk139a05; - ::ll::UntypedStorage<4, 4> mUnk7910ab; + ::ll::TypedStorage<8, 24, ::WeakEntityRef> mAttackTarget; + ::ll::TypedStorage<8, 8, ::std::unique_ptr<::Path>> mCurrentPath; + ::ll::TypedStorage<1, 1, bool> mClockwise; + ::ll::TypedStorage<1, 1, bool> mDone; + ::ll::TypedStorage<4, 4, int> mHasTargetTicks; + ::ll::TypedStorage<4, 4, int> mRangeAndViewTicks; + ::ll::TypedStorage<4, 4, float> mFireballPower; + ::ll::TypedStorage<4, 4, float> mFireballRange; + ::ll::TypedStorage<4, 4, float> mSwitchDirectionProbability; + ::ll::TypedStorage<4, 4, float> mViewAngle; // NOLINTEND -public: - // prevent constructor by default - DragonStrafePlayerGoal& operator=(DragonStrafePlayerGoal const&); - DragonStrafePlayerGoal(DragonStrafePlayerGoal const&); - DragonStrafePlayerGoal(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/actor/ai/goal/DrinkPotionGoal.h b/src/mc/world/actor/ai/goal/DrinkPotionGoal.h index 17c7e3b7a9..9cc6e11ff7 100644 --- a/src/mc/world/actor/ai/goal/DrinkPotionGoal.h +++ b/src/mc/world/actor/ai/goal/DrinkPotionGoal.h @@ -88,7 +88,7 @@ class DrinkPotionGoal : public ::Goal { MCAPI bool $canContinueToUse(); - MCAPI void $start(); + MCFOLD void $start(); MCAPI void $stop(); diff --git a/src/mc/world/actor/ai/goal/EatBlockGoal.h b/src/mc/world/actor/ai/goal/EatBlockGoal.h index 212c86d5d5..5ce4c8ab74 100644 --- a/src/mc/world/actor/ai/goal/EatBlockGoal.h +++ b/src/mc/world/actor/ai/goal/EatBlockGoal.h @@ -81,7 +81,7 @@ class EatBlockGoal : public ::Goal { MCAPI void $start(); - MCAPI void $stop(); + MCFOLD void $stop(); MCAPI bool $canContinueToUse(); diff --git a/src/mc/world/actor/ai/goal/EatCarriedItemGoal.h b/src/mc/world/actor/ai/goal/EatCarriedItemGoal.h index 42ab061b51..6bba7b18fc 100644 --- a/src/mc/world/actor/ai/goal/EatCarriedItemGoal.h +++ b/src/mc/world/actor/ai/goal/EatCarriedItemGoal.h @@ -81,7 +81,7 @@ class EatCarriedItemGoal : public ::Goal { // NOLINTBEGIN MCAPI bool $canUse(); - MCAPI void $start(); + MCFOLD void $start(); MCAPI void $stop(); diff --git a/src/mc/world/actor/ai/goal/EmergeGoal.h b/src/mc/world/actor/ai/goal/EmergeGoal.h index 7a2cc823a2..8e6c1811a2 100644 --- a/src/mc/world/actor/ai/goal/EmergeGoal.h +++ b/src/mc/world/actor/ai/goal/EmergeGoal.h @@ -150,7 +150,7 @@ class EmergeGoal : public ::Goal { MCAPI void $stop(); - MCAPI void $tick(); + MCFOLD void $tick(); MCAPI void $appendDebugInfo(::std::string& str) const; // NOLINTEND diff --git a/src/mc/world/actor/ai/goal/EquipItemGoal.h b/src/mc/world/actor/ai/goal/EquipItemGoal.h index 99b0a97b32..1a27b79bc2 100644 --- a/src/mc/world/actor/ai/goal/EquipItemGoal.h +++ b/src/mc/world/actor/ai/goal/EquipItemGoal.h @@ -120,7 +120,7 @@ class EquipItemGoal : public ::Goal { // NOLINTBEGIN MCAPI bool $canUse(); - MCAPI bool $canContinueToUse(); + MCFOLD bool $canContinueToUse(); MCAPI void $tick(); diff --git a/src/mc/world/actor/ai/goal/FindUnderwaterTreasureGoal.h b/src/mc/world/actor/ai/goal/FindUnderwaterTreasureGoal.h index d2ae689ed7..1cc949b104 100644 --- a/src/mc/world/actor/ai/goal/FindUnderwaterTreasureGoal.h +++ b/src/mc/world/actor/ai/goal/FindUnderwaterTreasureGoal.h @@ -68,7 +68,7 @@ class FindUnderwaterTreasureGoal : public ::Goal { MCAPI bool $canContinueToUse(); - MCAPI bool $canBeInterrupted(); + MCFOLD bool $canBeInterrupted(); MCAPI void $start(); diff --git a/src/mc/world/actor/ai/goal/FollowFlockGoal.h b/src/mc/world/actor/ai/goal/FollowFlockGoal.h index 12061cb713..9d397ea3ac 100644 --- a/src/mc/world/actor/ai/goal/FollowFlockGoal.h +++ b/src/mc/world/actor/ai/goal/FollowFlockGoal.h @@ -79,7 +79,7 @@ class FollowFlockGoal : public ::Goal { MCAPI bool $canContinueToUse(); - MCAPI bool $canBeInterrupted(); + MCFOLD bool $canBeInterrupted(); MCAPI void $start(); diff --git a/src/mc/world/actor/ai/goal/FollowMobGoal.h b/src/mc/world/actor/ai/goal/FollowMobGoal.h index 41ce221529..f6d14cdf24 100644 --- a/src/mc/world/actor/ai/goal/FollowMobGoal.h +++ b/src/mc/world/actor/ai/goal/FollowMobGoal.h @@ -67,9 +67,9 @@ class FollowMobGoal : public ::Goal { MCAPI bool $canContinueToUse(); - MCAPI void $start(); + MCFOLD void $start(); - MCAPI void $stop(); + MCFOLD void $stop(); MCAPI void $tick(); diff --git a/src/mc/world/actor/ai/goal/FollowParentGoal.h b/src/mc/world/actor/ai/goal/FollowParentGoal.h index e764fd6197..4de0e3d4ba 100644 --- a/src/mc/world/actor/ai/goal/FollowParentGoal.h +++ b/src/mc/world/actor/ai/goal/FollowParentGoal.h @@ -60,7 +60,7 @@ class FollowParentGoal : public ::Goal { MCAPI bool $canContinueToUse(); - MCAPI void $start(); + MCFOLD void $start(); MCAPI void $stop(); diff --git a/src/mc/world/actor/ai/goal/FollowTargetCaptainGoal.h b/src/mc/world/actor/ai/goal/FollowTargetCaptainGoal.h index 96b2844ea3..dd280808c9 100644 --- a/src/mc/world/actor/ai/goal/FollowTargetCaptainGoal.h +++ b/src/mc/world/actor/ai/goal/FollowTargetCaptainGoal.h @@ -69,7 +69,7 @@ class FollowTargetCaptainGoal : public ::MoveTowardsTargetGoal { MCAPI bool $canContinueToUse(); - MCAPI void $stop(); + MCFOLD void $stop(); // NOLINTEND public: diff --git a/src/mc/world/actor/ai/goal/GoAndGiveItemsToNoteblockGoal.h b/src/mc/world/actor/ai/goal/GoAndGiveItemsToNoteblockGoal.h index c6635defe8..57e1bbe83c 100644 --- a/src/mc/world/actor/ai/goal/GoAndGiveItemsToNoteblockGoal.h +++ b/src/mc/world/actor/ai/goal/GoAndGiveItemsToNoteblockGoal.h @@ -75,7 +75,7 @@ class GoAndGiveItemsToNoteblockGoal : public ::Goal { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND public: @@ -158,7 +158,7 @@ class GoAndGiveItemsToNoteblockGoal : public ::Goal { MCAPI void $start(); - MCAPI void $stop(); + MCFOLD void $stop(); MCAPI void $tick(); diff --git a/src/mc/world/actor/ai/goal/GoAndGiveItemsToOwnerGoal.h b/src/mc/world/actor/ai/goal/GoAndGiveItemsToOwnerGoal.h index eec0b458ee..60e37d449d 100644 --- a/src/mc/world/actor/ai/goal/GoAndGiveItemsToOwnerGoal.h +++ b/src/mc/world/actor/ai/goal/GoAndGiveItemsToOwnerGoal.h @@ -73,7 +73,7 @@ class GoAndGiveItemsToOwnerGoal : public ::Goal { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND public: @@ -158,7 +158,7 @@ class GoAndGiveItemsToOwnerGoal : public ::Goal { MCAPI void $start(); - MCAPI void $stop(); + MCFOLD void $stop(); MCAPI void $tick(); diff --git a/src/mc/world/actor/ai/goal/Goal.h b/src/mc/world/actor/ai/goal/Goal.h index 5b89ed08b8..5ae162ee7a 100644 --- a/src/mc/world/actor/ai/goal/Goal.h +++ b/src/mc/world/actor/ai/goal/Goal.h @@ -64,11 +64,11 @@ class Goal { // NOLINTBEGIN MCAPI Goal(); - MCAPI int getRequiredControlFlags() const; + MCFOLD int getRequiredControlFlags() const; - MCAPI ushort getTypeId() const; + MCFOLD ushort getTypeId() const; - MCAPI void setRequiredControlFlags(int requiredControlFlags); + MCFOLD void setRequiredControlFlags(int requiredControlFlags); MCAPI void setTypeId(ushort typeId); // NOLINTEND @@ -88,19 +88,19 @@ class Goal { public: // virtual function thunks // NOLINTBEGIN - MCAPI bool $canContinueToUse(); + MCFOLD bool $canContinueToUse(); - MCAPI bool $canBeInterrupted(); + MCFOLD bool $canBeInterrupted(); - MCAPI void $start(); + MCFOLD void $start(); - MCAPI void $stop(); + MCFOLD void $stop(); - MCAPI void $tick(); + MCFOLD void $tick(); - MCAPI bool $isTargetGoal() const; + MCFOLD bool $isTargetGoal() const; - MCAPI void $onPlayerDimensionChanged(::Player* player, ::DimensionType fromDimension, ::DimensionType toDimension); + MCFOLD void $onPlayerDimensionChanged(::Player* player, ::DimensionType fromDimension, ::DimensionType toDimension); // NOLINTEND public: diff --git a/src/mc/world/actor/ai/goal/HarvestFarmBlockGoal.h b/src/mc/world/actor/ai/goal/HarvestFarmBlockGoal.h index 2e3e347693..067fcc4a36 100644 --- a/src/mc/world/actor/ai/goal/HarvestFarmBlockGoal.h +++ b/src/mc/world/actor/ai/goal/HarvestFarmBlockGoal.h @@ -92,9 +92,9 @@ class HarvestFarmBlockGoal : public ::BaseMoveToBlockGoal { MCAPI bool $canContinueToUse(); - MCAPI void $start(); + MCFOLD void $start(); - MCAPI void $stop(); + MCFOLD void $stop(); MCAPI void $tick(); diff --git a/src/mc/world/actor/ai/goal/HideGoal.h b/src/mc/world/actor/ai/goal/HideGoal.h index e74c66d747..ebbdf96dd0 100644 --- a/src/mc/world/actor/ai/goal/HideGoal.h +++ b/src/mc/world/actor/ai/goal/HideGoal.h @@ -73,7 +73,7 @@ class HideGoal : public ::MoveToPOIGoal { MCAPI ::std::weak_ptr<::POIInstance> $_getOwnedPOI(::POIType type) const; - MCAPI uint64 $_getRepathTime() const; + MCFOLD uint64 $_getRepathTime() const; // NOLINTEND public: diff --git a/src/mc/world/actor/ai/goal/HoverGoal.h b/src/mc/world/actor/ai/goal/HoverGoal.h index 04bb200f31..9e6eaf1c1f 100644 --- a/src/mc/world/actor/ai/goal/HoverGoal.h +++ b/src/mc/world/actor/ai/goal/HoverGoal.h @@ -57,7 +57,7 @@ class HoverGoal : public ::Goal { MCAPI void $tick(); - MCAPI void $stop(); + MCFOLD void $stop(); MCAPI void $appendDebugInfo(::std::string& str) const; // NOLINTEND diff --git a/src/mc/world/actor/ai/goal/IdleState.h b/src/mc/world/actor/ai/goal/IdleState.h index 24f1b8b817..78215ab267 100644 --- a/src/mc/world/actor/ai/goal/IdleState.h +++ b/src/mc/world/actor/ai/goal/IdleState.h @@ -30,7 +30,7 @@ class IdleState : public ::PetSleepWithOwnerState { // NOLINTBEGIN MCAPI void $start(); - MCAPI void $tick(); + MCFOLD void $tick(); // NOLINTEND public: diff --git a/src/mc/world/actor/ai/goal/JumpAroundTargetGoal.h b/src/mc/world/actor/ai/goal/JumpAroundTargetGoal.h index 73d027934e..8821cd808d 100644 --- a/src/mc/world/actor/ai/goal/JumpAroundTargetGoal.h +++ b/src/mc/world/actor/ai/goal/JumpAroundTargetGoal.h @@ -209,7 +209,7 @@ class JumpAroundTargetGoal : public ::Goal { MCAPI void $tick(); - MCAPI bool $canBeInterrupted(); + MCFOLD bool $canBeInterrupted(); MCAPI void $appendDebugInfo(::std::string& str) const; // NOLINTEND diff --git a/src/mc/world/actor/ai/goal/JumpToBlockGoal.h b/src/mc/world/actor/ai/goal/JumpToBlockGoal.h index 89b304f0ed..314d8374f6 100644 --- a/src/mc/world/actor/ai/goal/JumpToBlockGoal.h +++ b/src/mc/world/actor/ai/goal/JumpToBlockGoal.h @@ -208,7 +208,7 @@ class JumpToBlockGoal : public ::Goal { MCAPI void $tick(); - MCAPI bool $canBeInterrupted(); + MCFOLD bool $canBeInterrupted(); MCAPI void $appendDebugInfo(::std::string& str) const; // NOLINTEND diff --git a/src/mc/world/actor/ai/goal/LayDownGoal.h b/src/mc/world/actor/ai/goal/LayDownGoal.h index ed946a83cd..d918a1be3b 100644 --- a/src/mc/world/actor/ai/goal/LayDownGoal.h +++ b/src/mc/world/actor/ai/goal/LayDownGoal.h @@ -62,7 +62,7 @@ class LayDownGoal : public ::Goal { MCAPI void $stop(); - MCAPI void $tick(); + MCFOLD void $tick(); MCAPI void $appendDebugInfo(::std::string& str) const; // NOLINTEND diff --git a/src/mc/world/actor/ai/goal/LegacyGoalDefinition.h b/src/mc/world/actor/ai/goal/LegacyGoalDefinition.h index eba04672f5..364f5bea5c 100644 --- a/src/mc/world/actor/ai/goal/LegacyGoalDefinition.h +++ b/src/mc/world/actor/ai/goal/LegacyGoalDefinition.h @@ -251,7 +251,7 @@ struct LegacyGoalDefinition { MCAPI static bool goalExists(::std::string const& name); - MCAPI static void init(); + MCFOLD static void init(); MCAPI static void shutdown(); // NOLINTEND diff --git a/src/mc/world/actor/ai/goal/LookAtActorGoal.h b/src/mc/world/actor/ai/goal/LookAtActorGoal.h index e22e480668..182e248c71 100644 --- a/src/mc/world/actor/ai/goal/LookAtActorGoal.h +++ b/src/mc/world/actor/ai/goal/LookAtActorGoal.h @@ -103,7 +103,7 @@ class LookAtActorGoal : public ::Goal { MCAPI void $start(); - MCAPI void $stop(); + MCFOLD void $stop(); MCAPI void $tick(); diff --git a/src/mc/world/actor/ai/goal/MobDescriptor.h b/src/mc/world/actor/ai/goal/MobDescriptor.h index 2ab2a99b88..040b11af75 100644 --- a/src/mc/world/actor/ai/goal/MobDescriptor.h +++ b/src/mc/world/actor/ai/goal/MobDescriptor.h @@ -36,6 +36,6 @@ struct MobDescriptor { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/world/actor/ai/goal/MountPathingGoal.h b/src/mc/world/actor/ai/goal/MountPathingGoal.h index 8f30f69d53..050e243ac5 100644 --- a/src/mc/world/actor/ai/goal/MountPathingGoal.h +++ b/src/mc/world/actor/ai/goal/MountPathingGoal.h @@ -83,7 +83,7 @@ class MountPathingGoal : public ::Goal { MCAPI bool $canContinueToUse(); - MCAPI void $start(); + MCFOLD void $start(); MCAPI void $stop(); diff --git a/src/mc/world/actor/ai/goal/MoveOutdoorsGoal.h b/src/mc/world/actor/ai/goal/MoveOutdoorsGoal.h index ae0481224e..bcd7832c8b 100644 --- a/src/mc/world/actor/ai/goal/MoveOutdoorsGoal.h +++ b/src/mc/world/actor/ai/goal/MoveOutdoorsGoal.h @@ -76,7 +76,7 @@ class MoveOutdoorsGoal : public ::BaseMoveToBlockGoal { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND public: diff --git a/src/mc/world/actor/ai/goal/MoveThroughVillageGoal.h b/src/mc/world/actor/ai/goal/MoveThroughVillageGoal.h index e10fa668c5..6fef377d6c 100644 --- a/src/mc/world/actor/ai/goal/MoveThroughVillageGoal.h +++ b/src/mc/world/actor/ai/goal/MoveThroughVillageGoal.h @@ -68,13 +68,13 @@ class MoveThroughVillageGoal : public ::Goal { public: // virtual function thunks // NOLINTBEGIN - MCAPI bool $canUse(); + MCFOLD bool $canUse(); - MCAPI bool $canContinueToUse(); + MCFOLD bool $canContinueToUse(); MCAPI void $start(); - MCAPI void $stop(); + MCFOLD void $stop(); MCAPI void $appendDebugInfo(::std::string& str) const; // NOLINTEND diff --git a/src/mc/world/actor/ai/goal/MoveTowardsDwellingRestrictionDefinition.h b/src/mc/world/actor/ai/goal/MoveTowardsDwellingRestrictionDefinition.h index 2c46378634..158d53019f 100644 --- a/src/mc/world/actor/ai/goal/MoveTowardsDwellingRestrictionDefinition.h +++ b/src/mc/world/actor/ai/goal/MoveTowardsDwellingRestrictionDefinition.h @@ -38,7 +38,7 @@ class MoveTowardsDwellingRestrictionDefinition : public ::MoveTowardsRestriction public: // constructor thunks // NOLINTBEGIN - MCAPI void* $ctor(); + MCFOLD void* $ctor(); // NOLINTEND public: diff --git a/src/mc/world/actor/ai/goal/MoveTowardsHomeRestrictionDefinition.h b/src/mc/world/actor/ai/goal/MoveTowardsHomeRestrictionDefinition.h index 974e095203..9486711c15 100644 --- a/src/mc/world/actor/ai/goal/MoveTowardsHomeRestrictionDefinition.h +++ b/src/mc/world/actor/ai/goal/MoveTowardsHomeRestrictionDefinition.h @@ -38,7 +38,7 @@ class MoveTowardsHomeRestrictionDefinition : public ::MoveTowardsRestrictionDefi public: // constructor thunks // NOLINTBEGIN - MCAPI void* $ctor(); + MCFOLD void* $ctor(); // NOLINTEND public: diff --git a/src/mc/world/actor/ai/goal/MoveTowardsRestrictionGoal.h b/src/mc/world/actor/ai/goal/MoveTowardsRestrictionGoal.h index b73137024c..72b4f985f3 100644 --- a/src/mc/world/actor/ai/goal/MoveTowardsRestrictionGoal.h +++ b/src/mc/world/actor/ai/goal/MoveTowardsRestrictionGoal.h @@ -53,7 +53,7 @@ class MoveTowardsRestrictionGoal : public ::Goal { public: // virtual function thunks // NOLINTBEGIN - MCAPI bool $canContinueToUse(); + MCFOLD bool $canContinueToUse(); MCAPI void $start(); // NOLINTEND diff --git a/src/mc/world/actor/ai/goal/MoveTowardsTargetGoal.h b/src/mc/world/actor/ai/goal/MoveTowardsTargetGoal.h index 13653f5239..31f7792e9f 100644 --- a/src/mc/world/actor/ai/goal/MoveTowardsTargetGoal.h +++ b/src/mc/world/actor/ai/goal/MoveTowardsTargetGoal.h @@ -74,7 +74,7 @@ class MoveTowardsTargetGoal : public ::Goal { MCAPI bool $canContinueToUse(); - MCAPI void $stop(); + MCFOLD void $stop(); MCAPI void $start(); diff --git a/src/mc/world/actor/ai/goal/OcelotSitOnBlockGoal.h b/src/mc/world/actor/ai/goal/OcelotSitOnBlockGoal.h index 22e51e06dd..acdd0d005d 100644 --- a/src/mc/world/actor/ai/goal/OcelotSitOnBlockGoal.h +++ b/src/mc/world/actor/ai/goal/OcelotSitOnBlockGoal.h @@ -76,9 +76,9 @@ class OcelotSitOnBlockGoal : public ::BaseMoveToBlockGoal { // NOLINTBEGIN MCAPI bool $canUse(); - MCAPI void $start(); + MCFOLD void $start(); - MCAPI void $stop(); + MCFOLD void $stop(); MCAPI void $tick(); diff --git a/src/mc/world/actor/ai/goal/OfferFlowerGoal.h b/src/mc/world/actor/ai/goal/OfferFlowerGoal.h index 75ca300d28..48d72fc037 100644 --- a/src/mc/world/actor/ai/goal/OfferFlowerGoal.h +++ b/src/mc/world/actor/ai/goal/OfferFlowerGoal.h @@ -130,7 +130,7 @@ class OfferFlowerGoal : public ::Goal { // NOLINTBEGIN MCAPI explicit OfferFlowerGoal(::Mob& mob); - MCAPI int getMaxOfferFlowerDurationTicks() const; + MCFOLD int getMaxOfferFlowerDurationTicks() const; // NOLINTEND public: diff --git a/src/mc/world/actor/ai/goal/OwnerHurtByTargetGoal.h b/src/mc/world/actor/ai/goal/OwnerHurtByTargetGoal.h index 3f5163822b..313c6f29c9 100644 --- a/src/mc/world/actor/ai/goal/OwnerHurtByTargetGoal.h +++ b/src/mc/world/actor/ai/goal/OwnerHurtByTargetGoal.h @@ -61,7 +61,7 @@ class OwnerHurtByTargetGoal : public ::TargetGoal { // NOLINTBEGIN MCAPI bool $canUse(); - MCAPI void $start(); + MCFOLD void $start(); // NOLINTEND public: diff --git a/src/mc/world/actor/ai/goal/OwnerHurtTargetGoal.h b/src/mc/world/actor/ai/goal/OwnerHurtTargetGoal.h index 4e372333d4..f815a46599 100644 --- a/src/mc/world/actor/ai/goal/OwnerHurtTargetGoal.h +++ b/src/mc/world/actor/ai/goal/OwnerHurtTargetGoal.h @@ -62,7 +62,7 @@ class OwnerHurtTargetGoal : public ::TargetGoal { // NOLINTBEGIN MCAPI bool $canUse(); - MCAPI void $start(); + MCFOLD void $start(); // NOLINTEND public: diff --git a/src/mc/world/actor/ai/goal/PanicGoal.h b/src/mc/world/actor/ai/goal/PanicGoal.h index f8b9e3c70f..12e77698ae 100644 --- a/src/mc/world/actor/ai/goal/PanicGoal.h +++ b/src/mc/world/actor/ai/goal/PanicGoal.h @@ -113,7 +113,7 @@ class PanicGoal : public ::Goal { MCAPI void $stop(); - MCAPI bool $canContinueToUse(); + MCFOLD bool $canContinueToUse(); MCAPI void $tick(); diff --git a/src/mc/world/actor/ai/goal/PetSleepWithOwnerState.h b/src/mc/world/actor/ai/goal/PetSleepWithOwnerState.h index a77bf3a60b..56f2e42f53 100644 --- a/src/mc/world/actor/ai/goal/PetSleepWithOwnerState.h +++ b/src/mc/world/actor/ai/goal/PetSleepWithOwnerState.h @@ -40,7 +40,7 @@ class PetSleepWithOwnerState { public: // virtual function thunks // NOLINTBEGIN - MCAPI void $start(); + MCFOLD void $start(); MCAPI void $stop(); // NOLINTEND diff --git a/src/mc/world/actor/ai/goal/PickupItemsGoal.h b/src/mc/world/actor/ai/goal/PickupItemsGoal.h index b6723ba9a4..ac31c38584 100644 --- a/src/mc/world/actor/ai/goal/PickupItemsGoal.h +++ b/src/mc/world/actor/ai/goal/PickupItemsGoal.h @@ -3,14 +3,18 @@ #include "mc/_HeaderOutputPredefine.h" // auto generated inclusion list +#include "mc/world/actor/TempEPtr.h" #include "mc/world/actor/ai/goal/Goal.h" // auto generated forward declare list // clang-format off +class Actor; class ItemActor; class ItemDescriptor; class ItemStack; class Mob; +class Path; +class Vec3; class WeakEntityRef; struct DistanceSortedActor; struct Shareable; @@ -20,32 +24,26 @@ class PickupItemsGoal : public ::Goal { public: // member variables // NOLINTBEGIN - ::ll::UntypedStorage<8, 40> mUnkc13171; - ::ll::UntypedStorage<4, 12> mUnkdf0376; - ::ll::UntypedStorage<8, 8> mUnk964019; - ::ll::UntypedStorage<4, 4> mUnk856f2f; - ::ll::UntypedStorage<4, 4> mUnkdfe959; - ::ll::UntypedStorage<4, 4> mUnk60523b; - ::ll::UntypedStorage<1, 1> mUnkcce7ee; - ::ll::UntypedStorage<8, 8> mUnk38d569; - ::ll::UntypedStorage<4, 4> mUnk21c42a; - ::ll::UntypedStorage<4, 4> mUnke45fd0; - ::ll::UntypedStorage<4, 4> mUnk8f5ecd; - ::ll::UntypedStorage<1, 1> mUnk405a73; - ::ll::UntypedStorage<1, 1> mUnk103933; - ::ll::UntypedStorage<4, 4> mUnkc5272c; - ::ll::UntypedStorage<1, 1> mUnka95469; - ::ll::UntypedStorage<1, 1> mUnk6031c2; - ::ll::UntypedStorage<8, 24> mUnkdaddd5; - ::ll::UntypedStorage<8, 24> mUnkabc376; + ::ll::TypedStorage<8, 40, ::TempEPtr<::Actor>> mTarget; + ::ll::TypedStorage<4, 12, ::Vec3> mTargetPos; + ::ll::TypedStorage<8, 8, ::Mob&> mMob; + ::ll::TypedStorage<4, 4, int> mSearchRange; + ::ll::TypedStorage<4, 4, int> mSearchHeight; + ::ll::TypedStorage<4, 4, float> mSpeedModifier; + ::ll::TypedStorage<1, 1, bool> mTrackTarget; + ::ll::TypedStorage<8, 8, ::std::unique_ptr<::Path>> mPath; + ::ll::TypedStorage<4, 4, int> mRandomStopInterval; + ::ll::TypedStorage<4, 4, float> mGoalRadiusSq; + ::ll::TypedStorage<4, 4, int> mTimeToRecalcPath; + ::ll::TypedStorage<1, 1, bool> mPickupBasedOnChance; + ::ll::TypedStorage<1, 1, bool> mCanPickupAnyItem; + ::ll::TypedStorage<4, 4, int> mTimeoutAfterBeingAttacked; + ::ll::TypedStorage<1, 1, bool> mCanPickupToHandOrEquipment; + ::ll::TypedStorage<1, 1, bool> mPickupSameItemsAsInHand; + ::ll::TypedStorage<8, 24, ::std::vector<::ItemDescriptor> const> mExcludedItemsList; + ::ll::TypedStorage<8, 24, ::std::vector<::WeakEntityRef>> mFilteredPickupTargets; // NOLINTEND -public: - // prevent constructor by default - PickupItemsGoal& operator=(PickupItemsGoal const&); - PickupItemsGoal(PickupItemsGoal const&); - PickupItemsGoal(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/actor/ai/goal/PlayerVehicleTamedGoal.h b/src/mc/world/actor/ai/goal/PlayerVehicleTamedGoal.h index 7fac141512..9be16b46e0 100644 --- a/src/mc/world/actor/ai/goal/PlayerVehicleTamedGoal.h +++ b/src/mc/world/actor/ai/goal/PlayerVehicleTamedGoal.h @@ -66,13 +66,13 @@ class PlayerVehicleTamedGoal : public ::Goal { public: // virtual function thunks // NOLINTBEGIN - MCAPI bool $canUse(); + MCFOLD bool $canUse(); - MCAPI bool $canContinueToUse(); + MCFOLD bool $canContinueToUse(); - MCAPI void $start(); + MCFOLD void $start(); - MCAPI void $tick(); + MCFOLD void $tick(); MCAPI void $appendDebugInfo(::std::string& str) const; // NOLINTEND diff --git a/src/mc/world/actor/ai/goal/RandomBreachingGoal.h b/src/mc/world/actor/ai/goal/RandomBreachingGoal.h index 119dafc25b..cca107815b 100644 --- a/src/mc/world/actor/ai/goal/RandomBreachingGoal.h +++ b/src/mc/world/actor/ai/goal/RandomBreachingGoal.h @@ -82,7 +82,7 @@ class RandomBreachingGoal : public ::RandomStrollGoal { MCAPI void $stop(); - MCAPI bool $canBeInterrupted(); + MCFOLD bool $canBeInterrupted(); MCAPI void $appendDebugInfo(::std::string& str) const; diff --git a/src/mc/world/actor/ai/goal/RandomStrollGoal.h b/src/mc/world/actor/ai/goal/RandomStrollGoal.h index 2ecae9ad85..c72472a949 100644 --- a/src/mc/world/actor/ai/goal/RandomStrollGoal.h +++ b/src/mc/world/actor/ai/goal/RandomStrollGoal.h @@ -73,7 +73,7 @@ class RandomStrollGoal : public ::Goal { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND public: diff --git a/src/mc/world/actor/ai/goal/ReceiveLoveGoal.h b/src/mc/world/actor/ai/goal/ReceiveLoveGoal.h index dde7756989..d71c8b2372 100644 --- a/src/mc/world/actor/ai/goal/ReceiveLoveGoal.h +++ b/src/mc/world/actor/ai/goal/ReceiveLoveGoal.h @@ -46,9 +46,9 @@ class ReceiveLoveGoal : public ::Goal { public: // virtual function thunks // NOLINTBEGIN - MCAPI bool $canUse(); + MCFOLD bool $canUse(); - MCAPI bool $canContinueToUse(); + MCFOLD bool $canContinueToUse(); MCAPI void $tick(); diff --git a/src/mc/world/actor/ai/goal/RollGoal.h b/src/mc/world/actor/ai/goal/RollGoal.h index 9cd31d57bf..68e5c34a82 100644 --- a/src/mc/world/actor/ai/goal/RollGoal.h +++ b/src/mc/world/actor/ai/goal/RollGoal.h @@ -82,7 +82,7 @@ class RollGoal : public ::Goal { MCAPI bool $canContinueToUse(); - MCAPI bool $canBeInterrupted(); + MCFOLD bool $canBeInterrupted(); MCAPI void $start(); diff --git a/src/mc/world/actor/ai/goal/SendEventStage.h b/src/mc/world/actor/ai/goal/SendEventStage.h index 982d7a3b6d..7a3ff85a08 100644 --- a/src/mc/world/actor/ai/goal/SendEventStage.h +++ b/src/mc/world/actor/ai/goal/SendEventStage.h @@ -26,6 +26,6 @@ struct SendEventStage { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/world/actor/ai/goal/SitGoal.h b/src/mc/world/actor/ai/goal/SitGoal.h index d345c729e8..d05cc3c89f 100644 --- a/src/mc/world/actor/ai/goal/SitGoal.h +++ b/src/mc/world/actor/ai/goal/SitGoal.h @@ -65,9 +65,9 @@ class SitGoal : public ::Goal { // NOLINTBEGIN MCAPI bool $canUse(); - MCAPI void $start(); + MCFOLD void $start(); - MCAPI void $stop(); + MCFOLD void $stop(); MCAPI void $appendDebugInfo(::std::string& str) const; // NOLINTEND diff --git a/src/mc/world/actor/ai/goal/SkeletonHorseTrapGoal.h b/src/mc/world/actor/ai/goal/SkeletonHorseTrapGoal.h index 859aff317e..5b9b6c794d 100644 --- a/src/mc/world/actor/ai/goal/SkeletonHorseTrapGoal.h +++ b/src/mc/world/actor/ai/goal/SkeletonHorseTrapGoal.h @@ -75,7 +75,7 @@ class SkeletonHorseTrapGoal : public ::Goal { MCAPI bool $canUse(); - MCAPI void $start(); + MCFOLD void $start(); MCAPI void $appendDebugInfo(::std::string& debugInfo) const; // NOLINTEND diff --git a/src/mc/world/actor/ai/goal/SleepGoal.h b/src/mc/world/actor/ai/goal/SleepGoal.h index 92c98a7de7..9126a5a148 100644 --- a/src/mc/world/actor/ai/goal/SleepGoal.h +++ b/src/mc/world/actor/ai/goal/SleepGoal.h @@ -120,7 +120,7 @@ class SleepGoal : public ::MoveToPOIGoal { MCAPI void $appendDebugInfo(::std::string& str) const; - MCAPI uint64 $_getRepathTime() const; + MCFOLD uint64 $_getRepathTime() const; // NOLINTEND public: diff --git a/src/mc/world/actor/ai/goal/SleepState.h b/src/mc/world/actor/ai/goal/SleepState.h index b3d122b0d3..f953546b67 100644 --- a/src/mc/world/actor/ai/goal/SleepState.h +++ b/src/mc/world/actor/ai/goal/SleepState.h @@ -30,7 +30,7 @@ class SleepState : public ::PetSleepWithOwnerState { // NOLINTBEGIN MCAPI void $stop(); - MCAPI void $tick(); + MCFOLD void $tick(); // NOLINTEND public: diff --git a/src/mc/world/actor/ai/goal/SlimeKeepOnJumpingGoal.h b/src/mc/world/actor/ai/goal/SlimeKeepOnJumpingGoal.h index c704be3ca6..d05f75bab1 100644 --- a/src/mc/world/actor/ai/goal/SlimeKeepOnJumpingGoal.h +++ b/src/mc/world/actor/ai/goal/SlimeKeepOnJumpingGoal.h @@ -44,7 +44,7 @@ class SlimeKeepOnJumpingGoal : public ::Goal { public: // virtual function thunks // NOLINTBEGIN - MCAPI bool $canUse(); + MCFOLD bool $canUse(); MCAPI void $tick(); diff --git a/src/mc/world/actor/ai/goal/SnackGoal.h b/src/mc/world/actor/ai/goal/SnackGoal.h index 275b32ac99..183e0d9e2a 100644 --- a/src/mc/world/actor/ai/goal/SnackGoal.h +++ b/src/mc/world/actor/ai/goal/SnackGoal.h @@ -117,7 +117,7 @@ class SnackGoal : public ::Goal { MCAPI void $appendDebugInfo(::std::string& str) const; - MCAPI int $getRandomEatingEnd() const; + MCFOLD int $getRandomEatingEnd() const; // NOLINTEND public: diff --git a/src/mc/world/actor/ai/goal/SniffGoal.h b/src/mc/world/actor/ai/goal/SniffGoal.h index a4ea71ed22..9cce9f4df6 100644 --- a/src/mc/world/actor/ai/goal/SniffGoal.h +++ b/src/mc/world/actor/ai/goal/SniffGoal.h @@ -160,7 +160,7 @@ class SniffGoal : public ::Goal { MCAPI void $stop(); - MCAPI void $tick(); + MCFOLD void $tick(); MCAPI void $appendDebugInfo(::std::string& str) const; // NOLINTEND diff --git a/src/mc/world/actor/ai/goal/StayNearNoteblockGoal.h b/src/mc/world/actor/ai/goal/StayNearNoteblockGoal.h index 7ded45ab02..990f9d0417 100644 --- a/src/mc/world/actor/ai/goal/StayNearNoteblockGoal.h +++ b/src/mc/world/actor/ai/goal/StayNearNoteblockGoal.h @@ -57,7 +57,7 @@ class StayNearNoteblockGoal : public ::Goal { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND public: diff --git a/src/mc/world/actor/ai/goal/StompAttackGoal.h b/src/mc/world/actor/ai/goal/StompAttackGoal.h index 9f8b2882ca..31f65d9ee6 100644 --- a/src/mc/world/actor/ai/goal/StompAttackGoal.h +++ b/src/mc/world/actor/ai/goal/StompAttackGoal.h @@ -53,11 +53,11 @@ class StompAttackGoal : public ::MeleeAttackGoal { public: // virtual function thunks // NOLINTBEGIN - MCAPI bool $canUse(); + MCFOLD bool $canUse(); MCAPI bool $canContinueToUse(); - MCAPI void $start(); + MCFOLD void $start(); MCAPI void $stop(); diff --git a/src/mc/world/actor/ai/goal/StompBlockGoal.h b/src/mc/world/actor/ai/goal/StompBlockGoal.h index aa23e3b4ce..098c107aa8 100644 --- a/src/mc/world/actor/ai/goal/StompBlockGoal.h +++ b/src/mc/world/actor/ai/goal/StompBlockGoal.h @@ -92,7 +92,7 @@ class StompBlockGoal : public ::BaseMoveToBlockGoal { MCAPI void $start(); - MCAPI void $stop(); + MCFOLD void $stop(); MCAPI void $tick(); @@ -104,13 +104,13 @@ class StompBlockGoal : public ::BaseMoveToBlockGoal { MCAPI bool $_canReach(::BlockPos const& pos); - MCAPI void $_createBreakProgressParticles(::Level& level, ::BlockSource& region, ::BlockPos pos); + MCFOLD void $_createBreakProgressParticles(::Level& level, ::BlockSource& region, ::BlockPos pos); - MCAPI void $_createDestroyParticles(::Level& level, ::BlockSource& region, ::BlockPos pos); + MCFOLD void $_createDestroyParticles(::Level& level, ::BlockSource& region, ::BlockPos pos); - MCAPI void $_playBreakProgressSound(::Level& level, ::BlockSource& region, ::BlockPos pos); + MCFOLD void $_playBreakProgressSound(::Level& level, ::BlockSource& region, ::BlockPos pos); - MCAPI void $_playDestroySound(::Level& level, ::BlockSource& region, ::BlockPos pos); + MCFOLD void $_playDestroySound(::Level& level, ::BlockSource& region, ::BlockPos pos); // NOLINTEND public: diff --git a/src/mc/world/actor/ai/goal/SwimIdleGoal.h b/src/mc/world/actor/ai/goal/SwimIdleGoal.h index 48dc09f8fb..c25a0a7c2c 100644 --- a/src/mc/world/actor/ai/goal/SwimIdleGoal.h +++ b/src/mc/world/actor/ai/goal/SwimIdleGoal.h @@ -58,7 +58,7 @@ class SwimIdleGoal : public ::Goal { MCAPI void $start(); - MCAPI void $tick(); + MCFOLD void $tick(); MCAPI void $appendDebugInfo(::std::string& str) const; // NOLINTEND diff --git a/src/mc/world/actor/ai/goal/SwimUpForBreathGoal.h b/src/mc/world/actor/ai/goal/SwimUpForBreathGoal.h index 44ffeea5e3..8e293b4c8e 100644 --- a/src/mc/world/actor/ai/goal/SwimUpForBreathGoal.h +++ b/src/mc/world/actor/ai/goal/SwimUpForBreathGoal.h @@ -84,7 +84,7 @@ class SwimUpForBreathGoal : public ::Goal { MCAPI bool $canContinueToUse(); - MCAPI bool $canBeInterrupted(); + MCFOLD bool $canBeInterrupted(); MCAPI void $start(); diff --git a/src/mc/world/actor/ai/goal/SwimWanderGoal.h b/src/mc/world/actor/ai/goal/SwimWanderGoal.h index 04abfabfe4..fc9a090226 100644 --- a/src/mc/world/actor/ai/goal/SwimWanderGoal.h +++ b/src/mc/world/actor/ai/goal/SwimWanderGoal.h @@ -65,7 +65,7 @@ class SwimWanderGoal : public ::Goal { MCAPI bool $canContinueToUse(); - MCAPI void $start(); + MCFOLD void $start(); MCAPI void $tick(); diff --git a/src/mc/world/actor/ai/goal/SwimWithEntityGoal.h b/src/mc/world/actor/ai/goal/SwimWithEntityGoal.h index 4f7b7ebd9f..e667eb89dc 100644 --- a/src/mc/world/actor/ai/goal/SwimWithEntityGoal.h +++ b/src/mc/world/actor/ai/goal/SwimWithEntityGoal.h @@ -85,11 +85,11 @@ class SwimWithEntityGoal : public ::Goal { MCAPI bool $canContinueToUse(); - MCAPI bool $canBeInterrupted(); + MCFOLD bool $canBeInterrupted(); MCAPI void $start(); - MCAPI void $stop(); + MCFOLD void $stop(); MCAPI void $tick(); diff --git a/src/mc/world/actor/ai/goal/TargetWhenPushedGoal.h b/src/mc/world/actor/ai/goal/TargetWhenPushedGoal.h index e9bcc5742b..4b7b343cad 100644 --- a/src/mc/world/actor/ai/goal/TargetWhenPushedGoal.h +++ b/src/mc/world/actor/ai/goal/TargetWhenPushedGoal.h @@ -74,15 +74,15 @@ class TargetWhenPushedGoal : public ::Goal { // NOLINTBEGIN MCAPI bool $canUse(); - MCAPI bool $canContinueToUse(); + MCFOLD bool $canContinueToUse(); - MCAPI bool $canBeInterrupted(); + MCFOLD bool $canBeInterrupted(); MCAPI void $start(); MCAPI void $stop(); - MCAPI void $appendDebugInfo(::std::string& str) const; + MCFOLD void $appendDebugInfo(::std::string& str) const; // NOLINTEND public: diff --git a/src/mc/world/actor/ai/goal/TeleportToOwnerGoal.h b/src/mc/world/actor/ai/goal/TeleportToOwnerGoal.h index 7d017ca62f..275b21aef8 100644 --- a/src/mc/world/actor/ai/goal/TeleportToOwnerGoal.h +++ b/src/mc/world/actor/ai/goal/TeleportToOwnerGoal.h @@ -54,7 +54,7 @@ class TeleportToOwnerGoal : public ::Goal { MCAPI void $start(); - MCAPI bool $canContinueToUse(); + MCFOLD bool $canContinueToUse(); MCAPI void $appendDebugInfo(::std::string& str) const; // NOLINTEND diff --git a/src/mc/world/actor/ai/goal/TimerActorFlagBaseGoal.h b/src/mc/world/actor/ai/goal/TimerActorFlagBaseGoal.h index 422c2df48b..ffc5ff8c1f 100644 --- a/src/mc/world/actor/ai/goal/TimerActorFlagBaseGoal.h +++ b/src/mc/world/actor/ai/goal/TimerActorFlagBaseGoal.h @@ -82,7 +82,7 @@ class TimerActorFlagBaseGoal : public ::Goal { MCAPI bool $canContinueToUse(); - MCAPI void $tick(); + MCFOLD void $tick(); MCAPI void $stop(); diff --git a/src/mc/world/actor/ai/goal/VexRandomMoveGoal.h b/src/mc/world/actor/ai/goal/VexRandomMoveGoal.h index 93b0d71fbf..97e0e466eb 100644 --- a/src/mc/world/actor/ai/goal/VexRandomMoveGoal.h +++ b/src/mc/world/actor/ai/goal/VexRandomMoveGoal.h @@ -65,7 +65,7 @@ class VexRandomMoveGoal : public ::Goal { // NOLINTBEGIN MCAPI bool $canUse(); - MCAPI bool $canContinueToUse(); + MCFOLD bool $canContinueToUse(); MCAPI void $tick(); diff --git a/src/mc/world/actor/ai/goal/VillagerCelebrationGoal.h b/src/mc/world/actor/ai/goal/VillagerCelebrationGoal.h index c42ce4ea8c..3564b53141 100644 --- a/src/mc/world/actor/ai/goal/VillagerCelebrationGoal.h +++ b/src/mc/world/actor/ai/goal/VillagerCelebrationGoal.h @@ -123,7 +123,7 @@ class VillagerCelebrationGoal : public ::Goal { public: // virtual function thunks // NOLINTBEGIN - MCAPI bool $canUse(); + MCFOLD bool $canUse(); MCAPI bool $canContinueToUse(); diff --git a/src/mc/world/actor/ai/goal/ram_attack_goal_utils/RamGoalNoItemDropper.h b/src/mc/world/actor/ai/goal/ram_attack_goal_utils/RamGoalNoItemDropper.h index 952f6476e8..85eda8effc 100644 --- a/src/mc/world/actor/ai/goal/ram_attack_goal_utils/RamGoalNoItemDropper.h +++ b/src/mc/world/actor/ai/goal/ram_attack_goal_utils/RamGoalNoItemDropper.h @@ -38,11 +38,11 @@ class RamGoalNoItemDropper : public ::RamAttackGoalUtils::RamGoalItemDropperInte public: // virtual function thunks // NOLINTBEGIN - MCAPI void $tryDropHorn(::Vec3 dropPos) const; + MCFOLD void $tryDropHorn(::Vec3 dropPos) const; - MCAPI void $checkForHornDropOnCollision(::Vec3 collisionPos); + MCFOLD void $checkForHornDropOnCollision(::Vec3 collisionPos); - MCAPI void $dontDropHorn(); + MCFOLD void $dontDropHorn(); // NOLINTEND public: diff --git a/src/mc/world/actor/ai/goal/target/TargetGoal.h b/src/mc/world/actor/ai/goal/target/TargetGoal.h index 9a9d4ad6be..60bf766c6f 100644 --- a/src/mc/world/actor/ai/goal/target/TargetGoal.h +++ b/src/mc/world/actor/ai/goal/target/TargetGoal.h @@ -142,13 +142,13 @@ class TargetGoal : public ::Goal { public: // virtual function thunks // NOLINTBEGIN - MCAPI bool $isTargetGoal() const; + MCFOLD bool $isTargetGoal() const; MCAPI bool $canContinueToUse(); MCAPI void $start(); - MCAPI void $stop(); + MCFOLD void $stop(); MCAPI void $tick(); diff --git a/src/mc/world/actor/ai/navigation/HoverPathNavigation.h b/src/mc/world/actor/ai/navigation/HoverPathNavigation.h index bbb3497c84..f0a470e8d8 100644 --- a/src/mc/world/actor/ai/navigation/HoverPathNavigation.h +++ b/src/mc/world/actor/ai/navigation/HoverPathNavigation.h @@ -78,9 +78,9 @@ class HoverPathNavigation : public ::PathNavigation { MCAPI ::std::unique_ptr<::Path> $createPath(::NavigationComponent& parent, ::Mob& mob, ::Vec3 const& pos); - MCAPI ::std::unique_ptr<::Path> $createPath(::NavigationComponent& parent, ::Mob& mob, ::Actor const& target); + MCFOLD ::std::unique_ptr<::Path> $createPath(::NavigationComponent& parent, ::Mob& mob, ::Actor const& target); - MCAPI void $stop(::NavigationComponent& parent, ::Mob& mob); + MCFOLD void $stop(::NavigationComponent& parent, ::Mob& mob); MCAPI bool $canUpdatePath(::Mob const& mob) const; diff --git a/src/mc/world/actor/ai/navigation/PathNavigation.h b/src/mc/world/actor/ai/navigation/PathNavigation.h index 3dc999da75..463b787c04 100644 --- a/src/mc/world/actor/ai/navigation/PathNavigation.h +++ b/src/mc/world/actor/ai/navigation/PathNavigation.h @@ -97,7 +97,7 @@ class PathNavigation { MCAPI ::std::unique_ptr<::Path> $createPath(::NavigationComponent& parent, ::Mob& mob, ::Vec3 const& pos); - MCAPI ::std::unique_ptr<::Path> $createPath(::NavigationComponent& parent, ::Mob& mob, ::Actor const& target); + MCFOLD ::std::unique_ptr<::Path> $createPath(::NavigationComponent& parent, ::Mob& mob, ::Actor const& target); MCAPI bool $moveTo(::NavigationComponent& parent, ::Mob& mob, ::Vec3 const& pos, float speed); @@ -105,9 +105,9 @@ class PathNavigation { MCAPI bool $moveTo(::NavigationComponent& parent, ::Mob& mob, ::std::unique_ptr<::Path> newPath, float speed); - MCAPI void $stop(::NavigationComponent& parent, ::Mob& mob); + MCFOLD void $stop(::NavigationComponent& parent, ::Mob& mob); - MCAPI bool $travel(::NavigationComponent& parent, ::Mob& mob, float& xa, float& ya, float& za); + MCFOLD bool $travel(::NavigationComponent& parent, ::Mob& mob, float& xa, float& ya, float& za); MCAPI bool $canUpdatePath(::Mob const& mob) const; diff --git a/src/mc/world/actor/ai/util/ExpiringTick.h b/src/mc/world/actor/ai/util/ExpiringTick.h index 94efcbf25b..aede170e79 100644 --- a/src/mc/world/actor/ai/util/ExpiringTick.h +++ b/src/mc/world/actor/ai/util/ExpiringTick.h @@ -26,7 +26,7 @@ class ExpiringTick { // NOLINTBEGIN MCAPI ExpiringTick(::Tick currentTick, ushort ticksUntilExpire); - MCAPI ::Tick getExpireAtTick() const; + MCFOLD ::Tick getExpireAtTick() const; MCAPI float getNormalizedElapsedTime(::Tick const& currentTick) const; diff --git a/src/mc/world/actor/ai/village/POIInstance.h b/src/mc/world/actor/ai/village/POIInstance.h index a98180fdc1..f66f1dab60 100644 --- a/src/mc/world/actor/ai/village/POIInstance.h +++ b/src/mc/world/actor/ai/village/POIInstance.h @@ -56,15 +56,15 @@ class POIInstance { ::std::string endEvent ); - MCAPI ::HashedString const& getName() const; + MCFOLD ::HashedString const& getName() const; - MCAPI ::BlockPos const& getPosition() const; + MCFOLD ::BlockPos const& getPosition() const; MCAPI float getRadius() const; MCAPI ::AABB getSecondBlockFullAABB(::BlockSource& region); - MCAPI ::HashedString const& getSoundEvent() const; + MCFOLD ::HashedString const& getSoundEvent() const; MCAPI void incrementArrivalFailureCount(); @@ -74,7 +74,7 @@ class POIInstance { MCAPI void trySpawnParticles(::BlockSource& region, ::Random& random, int particleType) const; - MCAPI bool useBoundingBox() const; + MCFOLD bool useBoundingBox() const; MCAPI ~POIInstance(); // NOLINTEND diff --git a/src/mc/world/actor/ai/village/Raid.h b/src/mc/world/actor/ai/village/Raid.h index 9c386d62d0..6147dbfb29 100644 --- a/src/mc/world/actor/ai/village/Raid.h +++ b/src/mc/world/actor/ai/village/Raid.h @@ -109,7 +109,7 @@ class Raid { MCAPI float getBossBarFilledFraction() const; - MCAPI uint64 getRemainingRaiders() const; + MCFOLD uint64 getRemainingRaiders() const; MCAPI bool isRaider(::ActorUniqueID actor) const; diff --git a/src/mc/world/actor/ai/village/Village.h b/src/mc/world/actor/ai/village/Village.h index b09fc0f65e..dda0bc4bcf 100644 --- a/src/mc/world/actor/ai/village/Village.h +++ b/src/mc/world/actor/ai/village/Village.h @@ -206,7 +206,7 @@ class Village { MCAPI uint64 getBedPOICount() const; - MCAPI ::AABB const& getBounds() const; + MCFOLD ::AABB const& getBounds() const; MCAPI ::Vec3 getCenter() const; @@ -216,13 +216,13 @@ class Village { MCAPI ::std::weak_ptr<::POIInstance> getClosestPOI(::POIType type, ::BlockPos const& position); - MCAPI ::Raid const* getRaid() const; + MCFOLD ::Raid const* getRaid() const; - MCAPI ::AABB const& getRaidBounds() const; + MCFOLD ::AABB const& getRaidBounds() const; - MCAPI ::Raid* getRaidMutable(); + MCFOLD ::Raid* getRaidMutable(); - MCAPI ::mce::UUID getUniqueID() const; + MCFOLD ::mce::UUID getUniqueID() const; MCAPI bool hasInvalidRole(::ActorUniqueID const& actorId, ::DwellerRole const& role); diff --git a/src/mc/world/actor/ai/village/VillageManager.h b/src/mc/world/actor/ai/village/VillageManager.h index 66152a1475..45dff85ec2 100644 --- a/src/mc/world/actor/ai/village/VillageManager.h +++ b/src/mc/world/actor/ai/village/VillageManager.h @@ -66,7 +66,7 @@ class VillageManager : public ::IVillageManager { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; @@ -92,7 +92,7 @@ class VillageManager : public ::IVillageManager { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/world/actor/animal/Animal.h b/src/mc/world/actor/animal/Animal.h index 0ac3daa372..9e8d009b45 100644 --- a/src/mc/world/actor/animal/Animal.h +++ b/src/mc/world/actor/animal/Animal.h @@ -56,7 +56,7 @@ class Animal : public ::Mob { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND public: diff --git a/src/mc/world/actor/animal/Axolotl.h b/src/mc/world/actor/animal/Axolotl.h index 9d42de6f41..2bbb6dca7f 100644 --- a/src/mc/world/actor/animal/Axolotl.h +++ b/src/mc/world/actor/animal/Axolotl.h @@ -66,7 +66,7 @@ class Axolotl : public ::Animal { // NOLINTBEGIN MCAPI void $initializeComponents(::ActorInitializationMethod method, ::VariantParameterList const& params); - MCAPI float $_getWalkTargetValue(::BlockPos const& pos); + MCFOLD float $_getWalkTargetValue(::BlockPos const& pos); MCAPI ::AABB $_getAdjustedAABBForSpawnCheck(::AABB const& aabb, ::Vec3 const& mobPos) const; // NOLINTEND diff --git a/src/mc/world/actor/animal/Bat.h b/src/mc/world/actor/animal/Bat.h index 25a1779ec6..167d38e2d6 100644 --- a/src/mc/world/actor/animal/Bat.h +++ b/src/mc/world/actor/animal/Bat.h @@ -89,7 +89,7 @@ class Bat : public ::Mob { MCAPI void $addAdditionalSaveData(::CompoundTag& tag) const; - MCAPI void $pushActors(); + MCFOLD void $pushActors(); // NOLINTEND public: diff --git a/src/mc/world/actor/animal/Chicken.h b/src/mc/world/actor/animal/Chicken.h index 563725f6a6..5c7d222253 100644 --- a/src/mc/world/actor/animal/Chicken.h +++ b/src/mc/world/actor/animal/Chicken.h @@ -54,7 +54,7 @@ class Chicken : public ::Animal { public: // virtual function thunks // NOLINTBEGIN - MCAPI void $_playStepSound(::BlockPos const& pos, ::Block const& onBlock); + MCFOLD void $_playStepSound(::BlockPos const& pos, ::Block const& onBlock); // NOLINTEND public: diff --git a/src/mc/world/actor/animal/Dolphin.h b/src/mc/world/actor/animal/Dolphin.h index 67eee41bf3..c8d449f846 100644 --- a/src/mc/world/actor/animal/Dolphin.h +++ b/src/mc/world/actor/animal/Dolphin.h @@ -80,7 +80,7 @@ class Dolphin : public ::WaterAnimal { public: // virtual function thunks // NOLINTBEGIN - MCAPI bool $canBePulledIntoVehicle() const; + MCFOLD bool $canBePulledIntoVehicle() const; MCAPI float $_getWalkTargetValue(::BlockPos const& pos); diff --git a/src/mc/world/actor/animal/Fish.h b/src/mc/world/actor/animal/Fish.h index 0f6374b40d..7610556802 100644 --- a/src/mc/world/actor/animal/Fish.h +++ b/src/mc/world/actor/animal/Fish.h @@ -56,13 +56,13 @@ class Fish : public ::WaterAnimal { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND public: // virtual function thunks // NOLINTBEGIN - MCAPI bool $startRiding(::Actor& vehicle, bool forceRiding); + MCFOLD bool $startRiding(::Actor& vehicle, bool forceRiding); MCAPI bool $createAIGoals(); diff --git a/src/mc/world/actor/animal/GlowSquid.h b/src/mc/world/actor/animal/GlowSquid.h index 8129f11aa5..79d69a57fe 100644 --- a/src/mc/world/actor/animal/GlowSquid.h +++ b/src/mc/world/actor/animal/GlowSquid.h @@ -85,7 +85,7 @@ class GlowSquid : public ::Squid { // NOLINTBEGIN MCAPI void $normalTick(); - MCAPI float $_getWalkTargetValue(::BlockPos const& pos); + MCFOLD float $_getWalkTargetValue(::BlockPos const& pos); MCAPI bool $_hurt(::ActorDamageSource const& source, float damage, bool knock, bool ignite); diff --git a/src/mc/world/actor/animal/Horse.h b/src/mc/world/actor/animal/Horse.h index 3b0f4aed9c..989bd84586 100644 --- a/src/mc/world/actor/animal/Horse.h +++ b/src/mc/world/actor/animal/Horse.h @@ -35,7 +35,7 @@ class Horse : public ::Animal { virtual ~Horse() /*override*/ = default; // vIndex: 125 - virtual void die(::ActorDamageSource const& damagesource) /*override*/; + virtual void die(::ActorDamageSource const& source) /*override*/; // vIndex: 182 virtual void setHorseEating(bool state); @@ -92,7 +92,7 @@ class Horse : public ::Animal { virtual bool _hurt(::ActorDamageSource const& source, float dmg, bool knock, bool ignite) /*override*/; // vIndex: 142 - virtual void _playStepSound(::BlockPos const& pos, ::Block const& onBlock) /*override*/; + virtual void _playStepSound(::BlockPos const& pos, ::Block const& _onBlock) /*override*/; // vIndex: 2 virtual void reloadHardcoded(::ActorInitializationMethod method, ::VariantParameterList const& params) /*override*/; @@ -163,7 +163,7 @@ class Horse : public ::Animal { public: // virtual function thunks // NOLINTBEGIN - MCAPI void $die(::ActorDamageSource const& damagesource); + MCAPI void $die(::ActorDamageSource const& source); MCAPI void $setHorseEating(bool state); @@ -183,7 +183,7 @@ class Horse : public ::Animal { MCAPI bool $tameToPlayer(::Player& player, bool tamingParticles); - MCAPI void $onSynchedDataUpdate(int dataId); + MCFOLD void $onSynchedDataUpdate(int dataId); MCAPI void $openContainerComponent(::Player& player); @@ -201,7 +201,7 @@ class Horse : public ::Animal { MCAPI bool $_hurt(::ActorDamageSource const& source, float dmg, bool knock, bool ignite); - MCAPI void $_playStepSound(::BlockPos const& pos, ::Block const& onBlock); + MCAPI void $_playStepSound(::BlockPos const& pos, ::Block const& _onBlock); MCAPI void $reloadHardcoded(::ActorInitializationMethod method, ::VariantParameterList const& params); // NOLINTEND diff --git a/src/mc/world/actor/animal/IronGolem.h b/src/mc/world/actor/animal/IronGolem.h index e904d6eaf6..3c4a6ef0cc 100644 --- a/src/mc/world/actor/animal/IronGolem.h +++ b/src/mc/world/actor/animal/IronGolem.h @@ -84,13 +84,13 @@ class IronGolem : public ::Mob { // NOLINTBEGIN MCAPI bool $doHurtTarget(::Actor* target, ::ActorDamageCause const& cause); - MCAPI void $die(::ActorDamageSource const& source); + MCFOLD void $die(::ActorDamageSource const& source); - MCAPI float $getShadowRadius() const; + MCFOLD float $getShadowRadius() const; MCAPI void $hurtEffects(::ActorDamageSource const& source, float damage, bool knock, bool ignite); - MCAPI void $_playStepSound(::BlockPos const& pos, ::Block const& onBlock); + MCFOLD void $_playStepSound(::BlockPos const& pos, ::Block const& onBlock); // NOLINTEND public: diff --git a/src/mc/world/actor/animal/Llama.h b/src/mc/world/actor/animal/Llama.h index ed298b1745..afa4e2d285 100644 --- a/src/mc/world/actor/animal/Llama.h +++ b/src/mc/world/actor/animal/Llama.h @@ -65,7 +65,7 @@ class Llama : public ::Animal { MCAPI float $causeFallDamageToActor(float fallDistance, float multiplier, ::ActorDamageSource source); - MCAPI void $_playStepSound(::BlockPos const& pos, ::Block const& onBlock); + MCFOLD void $_playStepSound(::BlockPos const& pos, ::Block const& onBlock); // NOLINTEND public: diff --git a/src/mc/world/actor/animal/Parrot.h b/src/mc/world/actor/animal/Parrot.h index 176a97192c..30d5902bde 100644 --- a/src/mc/world/actor/animal/Parrot.h +++ b/src/mc/world/actor/animal/Parrot.h @@ -99,7 +99,7 @@ class Parrot : public ::Animal { MCAPI void $reloadHardcodedClient(::ActorInitializationMethod method); - MCAPI void $_playStepSound(::BlockPos const& pos, ::Block const& onBlock); + MCFOLD void $_playStepSound(::BlockPos const& pos, ::Block const& onBlock); // NOLINTEND public: diff --git a/src/mc/world/actor/animal/Pig.h b/src/mc/world/actor/animal/Pig.h index a94c56c3cc..34be02c732 100644 --- a/src/mc/world/actor/animal/Pig.h +++ b/src/mc/world/actor/animal/Pig.h @@ -59,7 +59,7 @@ class Pig : public ::Animal { // NOLINTBEGIN MCAPI bool $_hurt(::ActorDamageSource const& source, float dmg, bool knock, bool ignite); - MCAPI void $_playStepSound(::BlockPos const& pos, ::Block const& onBlock); + MCFOLD void $_playStepSound(::BlockPos const& pos, ::Block const& onBlock); // NOLINTEND public: diff --git a/src/mc/world/actor/animal/PolarBear.h b/src/mc/world/actor/animal/PolarBear.h index 0079e480d0..72060251e8 100644 --- a/src/mc/world/actor/animal/PolarBear.h +++ b/src/mc/world/actor/animal/PolarBear.h @@ -78,7 +78,7 @@ class PolarBear : public ::Animal { // NOLINTBEGIN MCAPI void $normalTick(); - MCAPI bool $canFreeze() const; + MCFOLD bool $canFreeze() const; // NOLINTEND public: diff --git a/src/mc/world/actor/animal/Pufferfish.h b/src/mc/world/actor/animal/Pufferfish.h index 01e35e4aef..5a328e7b3a 100644 --- a/src/mc/world/actor/animal/Pufferfish.h +++ b/src/mc/world/actor/animal/Pufferfish.h @@ -62,7 +62,7 @@ class Pufferfish : public ::Fish { // NOLINTBEGIN MCAPI void $normalTick(); - MCAPI bool $startRiding(::Actor& vehicle, bool forceRiding); + MCFOLD bool $startRiding(::Actor& vehicle, bool forceRiding); MCAPI bool $_hurt(::ActorDamageSource const& source, float damage, bool knock, bool ignite); // NOLINTEND diff --git a/src/mc/world/actor/animal/Squid.h b/src/mc/world/actor/animal/Squid.h index e31035fa22..5af69c9d04 100644 --- a/src/mc/world/actor/animal/Squid.h +++ b/src/mc/world/actor/animal/Squid.h @@ -106,13 +106,13 @@ class Squid : public ::Mob { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND public: // virtual function thunks // NOLINTBEGIN - MCAPI bool $checkSpawnObstruction() const; + MCFOLD bool $checkSpawnObstruction() const; MCAPI bool $checkSpawnRules(bool fromSpawner); diff --git a/src/mc/world/actor/animal/SquidDiveGoal.h b/src/mc/world/actor/animal/SquidDiveGoal.h index 8530289396..b8ee251f73 100644 --- a/src/mc/world/actor/animal/SquidDiveGoal.h +++ b/src/mc/world/actor/animal/SquidDiveGoal.h @@ -54,13 +54,13 @@ class SquidDiveGoal : public ::Goal { // NOLINTBEGIN MCAPI bool $canUse(); - MCAPI bool $canContinueToUse(); + MCFOLD bool $canContinueToUse(); MCAPI void $start(); - MCAPI void $stop(); + MCFOLD void $stop(); - MCAPI void $tick(); + MCFOLD void $tick(); MCAPI void $appendDebugInfo(::std::string& str) const; // NOLINTEND diff --git a/src/mc/world/actor/animal/SquidFleeGoal.h b/src/mc/world/actor/animal/SquidFleeGoal.h index 6ec9f6506c..bbe16dc5e7 100644 --- a/src/mc/world/actor/animal/SquidFleeGoal.h +++ b/src/mc/world/actor/animal/SquidFleeGoal.h @@ -55,11 +55,11 @@ class SquidFleeGoal : public ::Goal { // NOLINTBEGIN MCAPI bool $canUse(); - MCAPI bool $canContinueToUse(); + MCFOLD bool $canContinueToUse(); - MCAPI void $start(); + MCFOLD void $start(); - MCAPI void $stop(); + MCFOLD void $stop(); MCAPI void $tick(); diff --git a/src/mc/world/actor/animal/SquidIdleGoal.h b/src/mc/world/actor/animal/SquidIdleGoal.h index 0e12c7d897..349a864b62 100644 --- a/src/mc/world/actor/animal/SquidIdleGoal.h +++ b/src/mc/world/actor/animal/SquidIdleGoal.h @@ -55,11 +55,11 @@ class SquidIdleGoal : public ::Goal { // NOLINTBEGIN MCAPI bool $canUse(); - MCAPI bool $canContinueToUse(); + MCFOLD bool $canContinueToUse(); MCAPI void $start(); - MCAPI void $stop(); + MCFOLD void $stop(); MCAPI void $tick(); diff --git a/src/mc/world/actor/animal/SquidMoveAwayFromGroundGoal.h b/src/mc/world/actor/animal/SquidMoveAwayFromGroundGoal.h index ab632ec2ae..06c91f985c 100644 --- a/src/mc/world/actor/animal/SquidMoveAwayFromGroundGoal.h +++ b/src/mc/world/actor/animal/SquidMoveAwayFromGroundGoal.h @@ -52,15 +52,15 @@ class SquidMoveAwayFromGroundGoal : public ::Goal { public: // virtual function thunks // NOLINTBEGIN - MCAPI bool $canUse(); + MCFOLD bool $canUse(); - MCAPI bool $canContinueToUse(); + MCFOLD bool $canContinueToUse(); MCAPI void $start(); - MCAPI void $stop(); + MCFOLD void $stop(); - MCAPI void $tick(); + MCFOLD void $tick(); MCAPI void $appendDebugInfo(::std::string& str) const; // NOLINTEND diff --git a/src/mc/world/actor/animal/SquidOutOfWaterGoal.h b/src/mc/world/actor/animal/SquidOutOfWaterGoal.h index 75efb51912..66478e432a 100644 --- a/src/mc/world/actor/animal/SquidOutOfWaterGoal.h +++ b/src/mc/world/actor/animal/SquidOutOfWaterGoal.h @@ -52,15 +52,15 @@ class SquidOutOfWaterGoal : public ::Goal { public: // virtual function thunks // NOLINTBEGIN - MCAPI bool $canUse(); + MCFOLD bool $canUse(); - MCAPI bool $canContinueToUse(); + MCFOLD bool $canContinueToUse(); MCAPI void $start(); - MCAPI void $stop(); + MCFOLD void $stop(); - MCAPI void $tick(); + MCFOLD void $tick(); MCAPI void $appendDebugInfo(::std::string& str) const; // NOLINTEND diff --git a/src/mc/world/actor/animal/Tadpole.h b/src/mc/world/actor/animal/Tadpole.h index 9a15e5e63b..3d56483610 100644 --- a/src/mc/world/actor/animal/Tadpole.h +++ b/src/mc/world/actor/animal/Tadpole.h @@ -65,7 +65,7 @@ class Tadpole : public ::WaterAnimal { MCAPI float $getFlopVerticalVelocityFactor() const; - MCAPI float $getFlopHorizontalVelocityFactor() const; + MCFOLD float $getFlopHorizontalVelocityFactor() const; // NOLINTEND public: diff --git a/src/mc/world/actor/animal/TropicalFish.h b/src/mc/world/actor/animal/TropicalFish.h index 9cdf4e2169..1eec30c1a6 100644 --- a/src/mc/world/actor/animal/TropicalFish.h +++ b/src/mc/world/actor/animal/TropicalFish.h @@ -65,7 +65,7 @@ class TropicalFish : public ::WaterAnimal { public: // virtual function thunks // NOLINTBEGIN - MCAPI bool $startRiding(::Actor& vehicle, bool forceRiding); + MCFOLD bool $startRiding(::Actor& vehicle, bool forceRiding); MCAPI bool $createAIGoals(); diff --git a/src/mc/world/actor/animal/WaterAnimal.h b/src/mc/world/actor/animal/WaterAnimal.h index aad35e25fd..ea55ea3889 100644 --- a/src/mc/world/actor/animal/WaterAnimal.h +++ b/src/mc/world/actor/animal/WaterAnimal.h @@ -54,7 +54,7 @@ class WaterAnimal : public ::Mob { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND public: @@ -62,7 +62,7 @@ class WaterAnimal : public ::Mob { // NOLINTBEGIN MCAPI bool $checkSpawnRules(bool); - MCAPI float $getFlopVerticalVelocityFactor() const; + MCFOLD float $getFlopVerticalVelocityFactor() const; MCAPI float $getFlopHorizontalVelocityFactor() const; // NOLINTEND diff --git a/src/mc/world/actor/animation/ActorAnimationControllerPlayer.h b/src/mc/world/actor/animation/ActorAnimationControllerPlayer.h index b912831e34..de0ac58c46 100644 --- a/src/mc/world/actor/animation/ActorAnimationControllerPlayer.h +++ b/src/mc/world/actor/animation/ActorAnimationControllerPlayer.h @@ -138,7 +138,7 @@ class ActorAnimationControllerPlayer : public ::ActorAnimationPlayer { MCAPI ::std::shared_ptr<::ActorAnimationPlayer> $findAnimation(::HashedString const& friendlyName); - MCAPI ::ActorAnimationType $getAnimationType() const; + MCFOLD ::ActorAnimationType $getAnimationType() const; MCAPI ::HashedString const& $getRawName() const; // NOLINTEND diff --git a/src/mc/world/actor/animation/ActorAnimationControllerPtr.h b/src/mc/world/actor/animation/ActorAnimationControllerPtr.h index 4269686aef..7c102abc9b 100644 --- a/src/mc/world/actor/animation/ActorAnimationControllerPtr.h +++ b/src/mc/world/actor/animation/ActorAnimationControllerPtr.h @@ -18,7 +18,7 @@ class ActorAnimationControllerPtr { public: // member functions // NOLINTBEGIN - MCAPI bool isNull() const; + MCFOLD bool isNull() const; MCAPI ~ActorAnimationControllerPtr(); // NOLINTEND @@ -32,6 +32,6 @@ class ActorAnimationControllerPtr { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/world/actor/animation/ActorAnimationControllerStatePlayer.h b/src/mc/world/actor/animation/ActorAnimationControllerStatePlayer.h index e03d098280..12fc5b259b 100644 --- a/src/mc/world/actor/animation/ActorAnimationControllerStatePlayer.h +++ b/src/mc/world/actor/animation/ActorAnimationControllerStatePlayer.h @@ -119,17 +119,17 @@ class ActorAnimationControllerStatePlayer : public ::ActorAnimationPlayer { MCAPI void $resetAnimation(); - MCAPI void $bindParticleEffects(::std::unordered_map<::HashedString, ::HashedString> const&); + MCFOLD void $bindParticleEffects(::std::unordered_map<::HashedString, ::HashedString> const&); - MCAPI void $bindSoundEffects(::std::unordered_map<::HashedString, ::std::string> const& actorSoundEffectMap); + MCFOLD void $bindSoundEffects(::std::unordered_map<::HashedString, ::std::string> const& actorSoundEffectMap); - MCAPI bool $hasAnimationFinished() const; + MCFOLD bool $hasAnimationFinished() const; MCAPI ::std::shared_ptr<::ActorAnimationPlayer> $findAnimation(::HashedString const& friendlyName); - MCAPI ::ActorAnimationType $getAnimationType() const; + MCFOLD ::ActorAnimationType $getAnimationType() const; - MCAPI ::HashedString const& $getRawName() const; + MCFOLD ::HashedString const& $getRawName() const; // NOLINTEND public: diff --git a/src/mc/world/actor/animation/ActorAnimationGroupParseMetaData.h b/src/mc/world/actor/animation/ActorAnimationGroupParseMetaData.h index eb2ca4ba46..68157d7a84 100644 --- a/src/mc/world/actor/animation/ActorAnimationGroupParseMetaData.h +++ b/src/mc/world/actor/animation/ActorAnimationGroupParseMetaData.h @@ -25,6 +25,6 @@ struct ActorAnimationGroupParseMetaData { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/world/actor/animation/ActorAnimationPlayer.h b/src/mc/world/actor/animation/ActorAnimationPlayer.h index 1c2007b33f..f9a246d0ca 100644 --- a/src/mc/world/actor/animation/ActorAnimationPlayer.h +++ b/src/mc/world/actor/animation/ActorAnimationPlayer.h @@ -77,11 +77,11 @@ class ActorAnimationPlayer { public: // virtual function thunks // NOLINTBEGIN - MCAPI void $buildBoneToPartMapping(::AnimationComponent&); + MCFOLD void $buildBoneToPartMapping(::AnimationComponent&); - MCAPI void $bindParticleEffects(::std::unordered_map<::HashedString, ::HashedString> const&); + MCFOLD void $bindParticleEffects(::std::unordered_map<::HashedString, ::HashedString> const&); - MCAPI void $bindSoundEffects(::std::unordered_map<::HashedString, ::std::string> const&); + MCFOLD void $bindSoundEffects(::std::unordered_map<::HashedString, ::std::string> const&); // NOLINTEND public: diff --git a/src/mc/world/actor/animation/ActorSkeletalAnimationPlayer.h b/src/mc/world/actor/animation/ActorSkeletalAnimationPlayer.h index 6ec2fe88b8..0836bef94d 100644 --- a/src/mc/world/actor/animation/ActorSkeletalAnimationPlayer.h +++ b/src/mc/world/actor/animation/ActorSkeletalAnimationPlayer.h @@ -116,17 +116,17 @@ class ActorSkeletalAnimationPlayer : public ::ActorAnimationPlayer { MCAPI void $resetAnimation(); - MCAPI void $buildBoneToPartMapping(::AnimationComponent& animationComponent); + MCFOLD void $buildBoneToPartMapping(::AnimationComponent& animationComponent); MCAPI void $bindParticleEffects(::std::unordered_map<::HashedString, ::HashedString> const& actorParticleEffectMap); MCAPI void $bindSoundEffects(::std::unordered_map<::HashedString, ::std::string> const& actorSoundEffectMap); - MCAPI bool $hasAnimationFinished() const; + MCFOLD bool $hasAnimationFinished() const; - MCAPI ::std::shared_ptr<::ActorAnimationPlayer> $findAnimation(::HashedString const&); + MCFOLD ::std::shared_ptr<::ActorAnimationPlayer> $findAnimation(::HashedString const&); - MCAPI ::ActorAnimationType $getAnimationType() const; + MCFOLD ::ActorAnimationType $getAnimationType() const; MCAPI ::HashedString const& $getRawName() const; // NOLINTEND diff --git a/src/mc/world/actor/animation/ActorSkeletalAnimationPtr.h b/src/mc/world/actor/animation/ActorSkeletalAnimationPtr.h index 88df1349f7..a97d917b96 100644 --- a/src/mc/world/actor/animation/ActorSkeletalAnimationPtr.h +++ b/src/mc/world/actor/animation/ActorSkeletalAnimationPtr.h @@ -18,7 +18,7 @@ class ActorSkeletalAnimationPtr { public: // member functions // NOLINTBEGIN - MCAPI bool isNull() const; + MCFOLD bool isNull() const; MCAPI ~ActorSkeletalAnimationPtr(); // NOLINTEND @@ -32,6 +32,6 @@ class ActorSkeletalAnimationPtr { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/world/actor/animation/ActorSoundEffectEvent.h b/src/mc/world/actor/animation/ActorSoundEffectEvent.h index ed6aaf82bc..a8fa059244 100644 --- a/src/mc/world/actor/animation/ActorSoundEffectEvent.h +++ b/src/mc/world/actor/animation/ActorSoundEffectEvent.h @@ -25,6 +25,6 @@ class ActorSoundEffectEvent { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/world/actor/animation/AnimationComponent.h b/src/mc/world/actor/animation/AnimationComponent.h index e1187171e0..48fb6e3da7 100644 --- a/src/mc/world/actor/animation/AnimationComponent.h +++ b/src/mc/world/actor/animation/AnimationComponent.h @@ -90,17 +90,17 @@ class AnimationComponent { ::std::set<::HashedString, ::std::hash<::HashedString>>& animationControllerNameStack ); - MCAPI ::std::unordered_map<::SkeletalHierarchyIndex, ::std::vector<::BoneOrientation>>& getAllBoneOrientations(); + MCFOLD ::std::unordered_map<::SkeletalHierarchyIndex, ::std::vector<::BoneOrientation>>& getAllBoneOrientations(); MCAPI ::std::vector<::BoneOrientation>* getBoneOrientations(::SkeletalHierarchyIndex skeletalHierarchyIndex, bool missingIsOkay); - MCAPI ::std::shared_ptr<::ActorAnimationControllerStatePlayer> const + MCFOLD ::std::shared_ptr<::ActorAnimationControllerStatePlayer> const getCurrentAnimationControllerStatePlayer() const; MCAPI ::ModelPartLocator* getLocator(uint64 const& locatorNameHash); - MCAPI ::RenderParams& getRenderParams(); + MCFOLD ::RenderParams& getRenderParams(); MCAPI void initInstanceSpecificAnimationData(::MolangVariableMap* variableMap); diff --git a/src/mc/world/actor/animation/AnimationComponentID.h b/src/mc/world/actor/animation/AnimationComponentID.h index 41a4079f54..038defe0ef 100644 --- a/src/mc/world/actor/animation/AnimationComponentID.h +++ b/src/mc/world/actor/animation/AnimationComponentID.h @@ -34,7 +34,7 @@ class AnimationComponentID { MCAPI uint64 getHash() const; - MCAPI bool operator==(::AnimationComponentID const& rhs) const; + MCFOLD bool operator==(::AnimationComponentID const& rhs) const; // NOLINTEND public: diff --git a/src/mc/world/actor/animation/BoneOrientation.h b/src/mc/world/actor/animation/BoneOrientation.h index 30088d0bb6..593012160e 100644 --- a/src/mc/world/actor/animation/BoneOrientation.h +++ b/src/mc/world/actor/animation/BoneOrientation.h @@ -45,11 +45,11 @@ class BoneOrientation { float ); - MCAPI ::HashedString const& getName() const; + MCFOLD ::HashedString const& getName() const; MCAPI ::Vec3 const& getPivot() const; - MCAPI ::Vec3& getPivot(); + MCFOLD ::Vec3& getPivot(); MCAPI void setDefaultPose(); // NOLINTEND diff --git a/src/mc/world/actor/animation/CommonResourceDefinitionMap.h b/src/mc/world/actor/animation/CommonResourceDefinitionMap.h index ee4f1e3e0e..c80e848938 100644 --- a/src/mc/world/actor/animation/CommonResourceDefinitionMap.h +++ b/src/mc/world/actor/animation/CommonResourceDefinitionMap.h @@ -33,11 +33,11 @@ class CommonResourceDefinitionMap { MCAPI ::std::vector<::NamedMolangScript> const& getAnimateScriptArray() const; - MCAPI ::std::unordered_map<::HashedString, ::ActorAnimationControllerPtr> const& getAnimationControllers() const; + MCFOLD ::std::unordered_map<::HashedString, ::ActorAnimationControllerPtr> const& getAnimationControllers() const; - MCAPI ::std::unordered_map<::HashedString, ::ActorSkeletalAnimationPtr> const& getAnimations() const; + MCFOLD ::std::unordered_map<::HashedString, ::ActorSkeletalAnimationPtr> const& getAnimations() const; - MCAPI ::std::vector<::MolangVariableSettings> const& getVariableSettings() const; + MCFOLD ::std::vector<::MolangVariableSettings> const& getVariableSettings() const; MCAPI bool isCommonResourceDefinitionMapEmpty() const; diff --git a/src/mc/world/actor/bhave/BehaviorTreeDefinitionPtr.h b/src/mc/world/actor/bhave/BehaviorTreeDefinitionPtr.h index ae50bc95c0..7c3bdc1ee0 100644 --- a/src/mc/world/actor/bhave/BehaviorTreeDefinitionPtr.h +++ b/src/mc/world/actor/bhave/BehaviorTreeDefinitionPtr.h @@ -22,7 +22,7 @@ class BehaviorTreeDefinitionPtr { MCAPI BehaviorTreeDefinitionPtr(::BehaviorTreeDefinitionPtr&& moved); - MCAPI ::BehaviorTreeDefinitionPtr& operator=(::BehaviorTreeDefinitionPtr&& moved); + MCFOLD ::BehaviorTreeDefinitionPtr& operator=(::BehaviorTreeDefinitionPtr&& moved); MCAPI ~BehaviorTreeDefinitionPtr(); // NOLINTEND @@ -36,9 +36,9 @@ class BehaviorTreeDefinitionPtr { public: // constructor thunks // NOLINTBEGIN - MCAPI void* $ctor(); + MCFOLD void* $ctor(); - MCAPI void* $ctor(::BehaviorTreeDefinitionPtr&& moved); + MCFOLD void* $ctor(::BehaviorTreeDefinitionPtr&& moved); // NOLINTEND public: diff --git a/src/mc/world/actor/bhave/definition/ActivateToolDefinition.h b/src/mc/world/actor/bhave/definition/ActivateToolDefinition.h index d3e8b42b8d..504846aa6a 100644 --- a/src/mc/world/actor/bhave/definition/ActivateToolDefinition.h +++ b/src/mc/world/actor/bhave/definition/ActivateToolDefinition.h @@ -44,7 +44,7 @@ class ActivateToolDefinition : public ::BehaviorDefinition { public: // virtual function thunks // NOLINTBEGIN - MCAPI void $load(::Json::Value value, ::BehaviorFactory const& factory); + MCFOLD void $load(::Json::Value value, ::BehaviorFactory const& factory); // NOLINTEND public: diff --git a/src/mc/world/actor/bhave/definition/AttackDefinition.h b/src/mc/world/actor/bhave/definition/AttackDefinition.h index ce09b5ef14..ede7d1b130 100644 --- a/src/mc/world/actor/bhave/definition/AttackDefinition.h +++ b/src/mc/world/actor/bhave/definition/AttackDefinition.h @@ -44,7 +44,7 @@ class AttackDefinition : public ::BehaviorDefinition { public: // virtual function thunks // NOLINTBEGIN - MCAPI void $load(::Json::Value value, ::BehaviorFactory const& factory); + MCFOLD void $load(::Json::Value value, ::BehaviorFactory const& factory); // NOLINTEND public: diff --git a/src/mc/world/actor/bhave/definition/FindActorDefinition.h b/src/mc/world/actor/bhave/definition/FindActorDefinition.h index a9340e79c9..734b81b12c 100644 --- a/src/mc/world/actor/bhave/definition/FindActorDefinition.h +++ b/src/mc/world/actor/bhave/definition/FindActorDefinition.h @@ -40,13 +40,13 @@ class FindActorDefinition : public ::BehaviorDefinition { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND public: // virtual function thunks // NOLINTBEGIN - MCAPI void $load(::Json::Value value, ::BehaviorFactory const& factory); + MCFOLD void $load(::Json::Value value, ::BehaviorFactory const& factory); // NOLINTEND public: diff --git a/src/mc/world/actor/bhave/definition/FindBlockDefinition.h b/src/mc/world/actor/bhave/definition/FindBlockDefinition.h index d0838509a4..234f9758a5 100644 --- a/src/mc/world/actor/bhave/definition/FindBlockDefinition.h +++ b/src/mc/world/actor/bhave/definition/FindBlockDefinition.h @@ -40,7 +40,7 @@ class FindBlockDefinition : public ::BehaviorDefinition { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND public: diff --git a/src/mc/world/actor/bhave/definition/InteractActionDefinition.h b/src/mc/world/actor/bhave/definition/InteractActionDefinition.h index 9a15fc182d..87d3bca702 100644 --- a/src/mc/world/actor/bhave/definition/InteractActionDefinition.h +++ b/src/mc/world/actor/bhave/definition/InteractActionDefinition.h @@ -44,7 +44,7 @@ class InteractActionDefinition : public ::BehaviorDefinition { public: // virtual function thunks // NOLINTBEGIN - MCAPI void $load(::Json::Value value, ::BehaviorFactory const& factory); + MCFOLD void $load(::Json::Value value, ::BehaviorFactory const& factory); // NOLINTEND public: diff --git a/src/mc/world/actor/bhave/definition/InverterDefinition.h b/src/mc/world/actor/bhave/definition/InverterDefinition.h index 63e8b76b40..9e9fdc2613 100644 --- a/src/mc/world/actor/bhave/definition/InverterDefinition.h +++ b/src/mc/world/actor/bhave/definition/InverterDefinition.h @@ -31,7 +31,7 @@ class InverterDefinition : public ::DecoratorDefinition { public: // virtual function thunks // NOLINTBEGIN - MCAPI void $load(::Json::Value value, ::BehaviorFactory const& factory); + MCFOLD void $load(::Json::Value value, ::BehaviorFactory const& factory); // NOLINTEND public: diff --git a/src/mc/world/actor/bhave/definition/LookAtActorDefinition.h b/src/mc/world/actor/bhave/definition/LookAtActorDefinition.h index ada82576c6..9ca5f9301b 100644 --- a/src/mc/world/actor/bhave/definition/LookAtActorDefinition.h +++ b/src/mc/world/actor/bhave/definition/LookAtActorDefinition.h @@ -40,13 +40,13 @@ class LookAtActorDefinition : public ::BehaviorDefinition { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND public: // virtual function thunks // NOLINTBEGIN - MCAPI void $load(::Json::Value value, ::BehaviorFactory const& factory); + MCFOLD void $load(::Json::Value value, ::BehaviorFactory const& factory); // NOLINTEND public: diff --git a/src/mc/world/actor/bhave/definition/LookAtBlockDefinition.h b/src/mc/world/actor/bhave/definition/LookAtBlockDefinition.h index 4d4191ba92..5201c48fcd 100644 --- a/src/mc/world/actor/bhave/definition/LookAtBlockDefinition.h +++ b/src/mc/world/actor/bhave/definition/LookAtBlockDefinition.h @@ -44,7 +44,7 @@ class LookAtBlockDefinition : public ::BehaviorDefinition { public: // virtual function thunks // NOLINTBEGIN - MCAPI void $load(::Json::Value value, ::BehaviorFactory const& factory); + MCFOLD void $load(::Json::Value value, ::BehaviorFactory const& factory); // NOLINTEND public: diff --git a/src/mc/world/actor/bhave/definition/RepeatUntilFailureDefinition.h b/src/mc/world/actor/bhave/definition/RepeatUntilFailureDefinition.h index 6337fc59eb..1a8b8652f4 100644 --- a/src/mc/world/actor/bhave/definition/RepeatUntilFailureDefinition.h +++ b/src/mc/world/actor/bhave/definition/RepeatUntilFailureDefinition.h @@ -31,7 +31,7 @@ class RepeatUntilFailureDefinition : public ::DecoratorDefinition { public: // virtual function thunks // NOLINTBEGIN - MCAPI void $load(::Json::Value value, ::BehaviorFactory const& factory); + MCFOLD void $load(::Json::Value value, ::BehaviorFactory const& factory); // NOLINTEND public: diff --git a/src/mc/world/actor/bhave/definition/SelectorDefinition.h b/src/mc/world/actor/bhave/definition/SelectorDefinition.h index 2125f1f3a1..37d0ae28c1 100644 --- a/src/mc/world/actor/bhave/definition/SelectorDefinition.h +++ b/src/mc/world/actor/bhave/definition/SelectorDefinition.h @@ -31,7 +31,7 @@ class SelectorDefinition : public ::CompositeDefinition { public: // virtual function thunks // NOLINTBEGIN - MCAPI void $load(::Json::Value value, ::BehaviorFactory const& factory); + MCFOLD void $load(::Json::Value value, ::BehaviorFactory const& factory); // NOLINTEND public: diff --git a/src/mc/world/actor/bhave/definition/SequenceDefinition.h b/src/mc/world/actor/bhave/definition/SequenceDefinition.h index 28ba639227..16dcc42b7c 100644 --- a/src/mc/world/actor/bhave/definition/SequenceDefinition.h +++ b/src/mc/world/actor/bhave/definition/SequenceDefinition.h @@ -31,7 +31,7 @@ class SequenceDefinition : public ::CompositeDefinition { public: // virtual function thunks // NOLINTBEGIN - MCAPI void $load(::Json::Value value, ::BehaviorFactory const& factory); + MCFOLD void $load(::Json::Value value, ::BehaviorFactory const& factory); // NOLINTEND public: diff --git a/src/mc/world/actor/bhave/definition/WaitTicksDefinition.h b/src/mc/world/actor/bhave/definition/WaitTicksDefinition.h index fd873f55bf..891bdceabe 100644 --- a/src/mc/world/actor/bhave/definition/WaitTicksDefinition.h +++ b/src/mc/world/actor/bhave/definition/WaitTicksDefinition.h @@ -44,7 +44,7 @@ class WaitTicksDefinition : public ::BehaviorDefinition { public: // virtual function thunks // NOLINTBEGIN - MCAPI void $load(::Json::Value value, ::BehaviorFactory const& factory); + MCFOLD void $load(::Json::Value value, ::BehaviorFactory const& factory); // NOLINTEND public: diff --git a/src/mc/world/actor/bhave/node/ActivateToolNode.h b/src/mc/world/actor/bhave/node/ActivateToolNode.h index edd1e94f87..e0203ee333 100644 --- a/src/mc/world/actor/bhave/node/ActivateToolNode.h +++ b/src/mc/world/actor/bhave/node/ActivateToolNode.h @@ -53,7 +53,7 @@ class ActivateToolNode : public ::BehaviorNode { // NOLINTBEGIN MCAPI ::BehaviorStatus $tick(::Actor& owner); - MCAPI void $initializeFromDefinition(::Actor& owner); + MCFOLD void $initializeFromDefinition(::Actor& owner); // NOLINTEND public: diff --git a/src/mc/world/actor/bhave/node/AttackNode.h b/src/mc/world/actor/bhave/node/AttackNode.h index 9c058ecb61..6bb213639e 100644 --- a/src/mc/world/actor/bhave/node/AttackNode.h +++ b/src/mc/world/actor/bhave/node/AttackNode.h @@ -50,7 +50,7 @@ class AttackNode : public ::BehaviorNode { // NOLINTBEGIN MCAPI ::BehaviorStatus $tick(::Actor& owner); - MCAPI void $initializeFromDefinition(::Actor& owner); + MCFOLD void $initializeFromDefinition(::Actor& owner); // NOLINTEND public: diff --git a/src/mc/world/actor/bhave/node/BehaviorNode.h b/src/mc/world/actor/bhave/node/BehaviorNode.h index 14476b64d0..464b5907e9 100644 --- a/src/mc/world/actor/bhave/node/BehaviorNode.h +++ b/src/mc/world/actor/bhave/node/BehaviorNode.h @@ -50,7 +50,7 @@ class BehaviorNode { public: // virtual function thunks // NOLINTBEGIN - MCAPI void $initializeFromDefinition(::Actor& owner); + MCFOLD void $initializeFromDefinition(::Actor& owner); // NOLINTEND public: diff --git a/src/mc/world/actor/bhave/node/InteractActionNode.h b/src/mc/world/actor/bhave/node/InteractActionNode.h index 74aac033c9..a8ff169440 100644 --- a/src/mc/world/actor/bhave/node/InteractActionNode.h +++ b/src/mc/world/actor/bhave/node/InteractActionNode.h @@ -51,7 +51,7 @@ class InteractActionNode : public ::BehaviorNode { // NOLINTBEGIN MCAPI ::BehaviorStatus $tick(::Actor& owner); - MCAPI void $initializeFromDefinition(::Actor& owner); + MCFOLD void $initializeFromDefinition(::Actor& owner); // NOLINTEND public: diff --git a/src/mc/world/actor/bhave/node/InverterNode.h b/src/mc/world/actor/bhave/node/InverterNode.h index 39c38e074d..355517d7fa 100644 --- a/src/mc/world/actor/bhave/node/InverterNode.h +++ b/src/mc/world/actor/bhave/node/InverterNode.h @@ -48,7 +48,7 @@ class InverterNode : public ::BehaviorNode { // NOLINTBEGIN MCAPI ::BehaviorStatus $tick(::Actor& owner); - MCAPI void $initializeFromDefinition(::Actor& owner); + MCFOLD void $initializeFromDefinition(::Actor& owner); // NOLINTEND public: diff --git a/src/mc/world/actor/bhave/node/LookAtBlockNode.h b/src/mc/world/actor/bhave/node/LookAtBlockNode.h index 484aeca02d..7357bafc43 100644 --- a/src/mc/world/actor/bhave/node/LookAtBlockNode.h +++ b/src/mc/world/actor/bhave/node/LookAtBlockNode.h @@ -50,7 +50,7 @@ class LookAtBlockNode : public ::BehaviorNode { // NOLINTBEGIN MCAPI ::BehaviorStatus $tick(::Actor& owner); - MCAPI void $initializeFromDefinition(::Actor& owner); + MCFOLD void $initializeFromDefinition(::Actor& owner); // NOLINTEND public: diff --git a/src/mc/world/actor/bhave/node/RepeatUntilFailureNode.h b/src/mc/world/actor/bhave/node/RepeatUntilFailureNode.h index b7f20d5f1b..2d75bc91c3 100644 --- a/src/mc/world/actor/bhave/node/RepeatUntilFailureNode.h +++ b/src/mc/world/actor/bhave/node/RepeatUntilFailureNode.h @@ -48,7 +48,7 @@ class RepeatUntilFailureNode : public ::BehaviorNode { // NOLINTBEGIN MCAPI ::BehaviorStatus $tick(::Actor& owner); - MCAPI void $initializeFromDefinition(::Actor& owner); + MCFOLD void $initializeFromDefinition(::Actor& owner); // NOLINTEND public: diff --git a/src/mc/world/actor/bhave/node/SelectorBehaviorNode.h b/src/mc/world/actor/bhave/node/SelectorBehaviorNode.h index 67f0c56030..c400fd36da 100644 --- a/src/mc/world/actor/bhave/node/SelectorBehaviorNode.h +++ b/src/mc/world/actor/bhave/node/SelectorBehaviorNode.h @@ -49,7 +49,7 @@ class SelectorBehaviorNode : public ::BehaviorNode { // NOLINTBEGIN MCAPI ::BehaviorStatus $tick(::Actor& owner); - MCAPI void $initializeFromDefinition(::Actor& owner); + MCFOLD void $initializeFromDefinition(::Actor& owner); // NOLINTEND public: diff --git a/src/mc/world/actor/bhave/node/SequenceBehaviorNode.h b/src/mc/world/actor/bhave/node/SequenceBehaviorNode.h index ca339f6e59..0d8424a737 100644 --- a/src/mc/world/actor/bhave/node/SequenceBehaviorNode.h +++ b/src/mc/world/actor/bhave/node/SequenceBehaviorNode.h @@ -49,7 +49,7 @@ class SequenceBehaviorNode : public ::BehaviorNode { // NOLINTBEGIN MCAPI ::BehaviorStatus $tick(::Actor& owner); - MCAPI void $initializeFromDefinition(::Actor& owner); + MCFOLD void $initializeFromDefinition(::Actor& owner); // NOLINTEND public: diff --git a/src/mc/world/actor/bhave/node/ShootBowNode.h b/src/mc/world/actor/bhave/node/ShootBowNode.h index 4bbb56accd..06547daef6 100644 --- a/src/mc/world/actor/bhave/node/ShootBowNode.h +++ b/src/mc/world/actor/bhave/node/ShootBowNode.h @@ -51,7 +51,7 @@ class ShootBowNode : public ::BehaviorNode { // NOLINTBEGIN MCAPI ::BehaviorStatus $tick(::Actor& owner); - MCAPI void $initializeFromDefinition(::Actor& owner); + MCFOLD void $initializeFromDefinition(::Actor& owner); // NOLINTEND public: diff --git a/src/mc/world/actor/boss/WitherBoss.h b/src/mc/world/actor/boss/WitherBoss.h index f372374142..5cdbb0e485 100644 --- a/src/mc/world/actor/boss/WitherBoss.h +++ b/src/mc/world/actor/boss/WitherBoss.h @@ -109,7 +109,7 @@ class WitherBoss : public ::Monster { virtual bool canFreeze() const /*override*/; // vIndex: 107 - virtual bool canBeAffected(uint id) const /*override*/; + virtual bool canBeAffected(uint effectId) const /*override*/; // vIndex: 108 virtual bool canBeAffectedByArrow(::MobEffectInstance const& effect) const /*override*/; @@ -195,7 +195,7 @@ class WitherBoss : public ::Monster { MCAPI ::WitherBossPreAIStepResult preAiStep(); - MCAPI void removeSkeleton(); + MCFOLD void removeSkeleton(); MCAPI void setAerialAttack(bool aerialAttack); @@ -209,7 +209,7 @@ class WitherBoss : public ::Monster { MCAPI void setWantsToMove(bool shouldMove); - MCAPI bool wantsToMove(); + MCFOLD bool wantsToMove(); // NOLINTEND public: @@ -251,9 +251,9 @@ class WitherBoss : public ::Monster { MCAPI void $newServerAiStep(); - MCAPI bool $canFreeze() const; + MCFOLD bool $canFreeze() const; - MCAPI bool $canBeAffected(uint id) const; + MCAPI bool $canBeAffected(uint effectId) const; MCAPI bool $canBeAffectedByArrow(::MobEffectInstance const& effect) const; @@ -263,7 +263,7 @@ class WitherBoss : public ::Monster { MCAPI void $readAdditionalSaveData(::CompoundTag const& tag, ::DataLoadHelper& dataLoadHelper); - MCAPI float $causeFallDamageToActor(float, float, ::ActorDamageSource); + MCFOLD float $causeFallDamageToActor(float, float, ::ActorDamageSource); MCAPI int $getArmorValue() const; @@ -271,7 +271,7 @@ class WitherBoss : public ::Monster { MCAPI void $remove(); - MCAPI bool $startRiding(::Actor& vehicle, bool forceRiding); + MCFOLD bool $startRiding(::Actor& vehicle, bool forceRiding); MCAPI bool $isInvulnerableTo(::ActorDamageSource const& source) const; diff --git a/src/mc/world/actor/global/LightningBolt.h b/src/mc/world/actor/global/LightningBolt.h index 2f119e5d02..3df1fe3f23 100644 --- a/src/mc/world/actor/global/LightningBolt.h +++ b/src/mc/world/actor/global/LightningBolt.h @@ -98,13 +98,13 @@ class LightningBolt : public ::Actor { MCAPI void $normalTick(); - MCAPI void $addAdditionalSaveData(::CompoundTag& tag) const; + MCFOLD void $addAdditionalSaveData(::CompoundTag& tag) const; - MCAPI void $readAdditionalSaveData(::CompoundTag const& tag, ::DataLoadHelper& dataLoadHelper); + MCFOLD void $readAdditionalSaveData(::CompoundTag const& tag, ::DataLoadHelper& dataLoadHelper); - MCAPI float $getShadowRadius() const; + MCFOLD float $getShadowRadius() const; - MCAPI bool $shouldAlwaysRender(); + MCFOLD bool $shouldAlwaysRender(); // NOLINTEND public: diff --git a/src/mc/world/actor/item/Balloon.h b/src/mc/world/actor/item/Balloon.h index 5e24fa5ca8..5653666d5c 100644 --- a/src/mc/world/actor/item/Balloon.h +++ b/src/mc/world/actor/item/Balloon.h @@ -63,7 +63,7 @@ class Balloon : public ::PredictableProjectile { public: // virtual function thunks // NOLINTBEGIN - MCAPI void $reloadHardcoded(::ActorInitializationMethod method, ::VariantParameterList const& params); + MCFOLD void $reloadHardcoded(::ActorInitializationMethod method, ::VariantParameterList const& params); MCAPI bool $_hurt(::ActorDamageSource const& source, float damage, bool knock, bool ignite); diff --git a/src/mc/world/actor/item/Boat.h b/src/mc/world/actor/item/Boat.h index fb8c9c08ae..06dd89f261 100644 --- a/src/mc/world/actor/item/Boat.h +++ b/src/mc/world/actor/item/Boat.h @@ -115,7 +115,7 @@ class Boat : public ::Actor { MCAPI void $normalTick(); - MCAPI float $getShadowRadius() const; + MCFOLD float $getShadowRadius() const; MCAPI ::std::string $getExitTip(::std::string const& kind, ::InputMode mode, ::NewInteractionModel scheme) const; @@ -125,7 +125,7 @@ class Boat : public ::Actor { MCAPI float $getPassengerYRotation(::Actor const& passenger) const; - MCAPI bool $isInvulnerableTo(::ActorDamageSource const& source) const; + MCFOLD bool $isInvulnerableTo(::ActorDamageSource const& source) const; MCAPI bool $_hurt(::ActorDamageSource const& source, float damage, bool knock, bool ignite); // NOLINTEND diff --git a/src/mc/world/actor/item/ExperienceOrb.h b/src/mc/world/actor/item/ExperienceOrb.h index 8e5ac5f983..997f64d100 100644 --- a/src/mc/world/actor/item/ExperienceOrb.h +++ b/src/mc/world/actor/item/ExperienceOrb.h @@ -153,15 +153,15 @@ class ExperienceOrb : public ::Actor { MCAPI void $playerTouch(::Player& player); - MCAPI float $getShadowRadius() const; + MCFOLD float $getShadowRadius() const; MCAPI bool $isInvulnerableTo(::ActorDamageSource const& source) const; MCAPI bool $_hurt(::ActorDamageSource const&, float damage, bool, bool); - MCAPI void $doWaterSplashEffect(); + MCFOLD void $doWaterSplashEffect(); - MCAPI void $_playStepSound(::BlockPos const& pos, ::Block const& onBlock); + MCFOLD void $_playStepSound(::BlockPos const& pos, ::Block const& onBlock); // NOLINTEND public: diff --git a/src/mc/world/actor/item/EyeOfEnder.h b/src/mc/world/actor/item/EyeOfEnder.h index b77cdc2b98..14e829e8d7 100644 --- a/src/mc/world/actor/item/EyeOfEnder.h +++ b/src/mc/world/actor/item/EyeOfEnder.h @@ -91,7 +91,7 @@ class EyeOfEnder : public ::Actor { MCAPI void $normalTick(); - MCAPI float $getShadowRadius() const; + MCFOLD float $getShadowRadius() const; // NOLINTEND public: diff --git a/src/mc/world/actor/item/FallingBlockActor.h b/src/mc/world/actor/item/FallingBlockActor.h index 47cb78faa0..8f30750f5f 100644 --- a/src/mc/world/actor/item/FallingBlockActor.h +++ b/src/mc/world/actor/item/FallingBlockActor.h @@ -134,18 +134,18 @@ class FallingBlockActor : public ::PredictableProjectile { MCAPI void $normalTick(); - MCAPI float $getShadowRadius() const; + MCFOLD float $getShadowRadius() const; MCAPI float $causeFallDamageToActor(float distance, float multiplier, ::ActorDamageSource source); - MCAPI void + MCFOLD void $teleportTo(::Vec3 const& pos, bool shouldStopRiding, int cause, int sourceEntityType, bool keepVelocity); MCAPI bool $canChangeDimensionsUsingPortal() const; MCAPI void $onSynchedDataUpdate(int dataId); - MCAPI bool $_hurt(::ActorDamageSource const&, float, bool, bool); + MCFOLD bool $_hurt(::ActorDamageSource const&, float, bool, bool); MCAPI void $addAdditionalSaveData(::CompoundTag& tag) const; diff --git a/src/mc/world/actor/item/FireworksRocketActor.h b/src/mc/world/actor/item/FireworksRocketActor.h index 7cb2c6360d..52763c2c8b 100644 --- a/src/mc/world/actor/item/FireworksRocketActor.h +++ b/src/mc/world/actor/item/FireworksRocketActor.h @@ -90,7 +90,7 @@ class FireworksRocketActor : public ::PredictableProjectile { MCAPI void postNormalTick(); - MCAPI void setDispensed(bool dispensed); + MCFOLD void setDispensed(bool dispensed); // NOLINTEND public: @@ -125,7 +125,7 @@ class FireworksRocketActor : public ::PredictableProjectile { public: // virtual function thunks // NOLINTBEGIN - MCAPI float $getShadowRadius() const; + MCFOLD float $getShadowRadius() const; MCAPI void $lerpMotion(::Vec3 const& delta); diff --git a/src/mc/world/actor/item/ItemActor.h b/src/mc/world/actor/item/ItemActor.h index 7108093e51..f88ff4433a 100644 --- a/src/mc/world/actor/item/ItemActor.h +++ b/src/mc/world/actor/item/ItemActor.h @@ -141,7 +141,7 @@ class ItemActor : public ::Actor { MCAPI ::std::unique_ptr<::AddActorBasePacket> $tryCreateAddActorPacket(); - MCAPI ::ActorUniqueID $getSourceUniqueID() const; + MCFOLD ::ActorUniqueID $getSourceUniqueID() const; MCAPI bool $isInvulnerableTo(::ActorDamageSource const& source) const; diff --git a/src/mc/world/actor/item/Minecart.h b/src/mc/world/actor/item/Minecart.h index d00cd91c1d..08571dc1f0 100644 --- a/src/mc/world/actor/item/Minecart.h +++ b/src/mc/world/actor/item/Minecart.h @@ -147,15 +147,15 @@ class Minecart : public ::Actor { MCAPI void $destroy(::ActorDamageSource const&, bool dropMinecartComponents); - MCAPI ::Block const* $getDefaultDisplayBlock() const; + MCFOLD ::Block const* $getDefaultDisplayBlock() const; - MCAPI int $getDefaultDisplayOffset() const; + MCFOLD int $getDefaultDisplayOffset() const; - MCAPI float $getShadowRadius() const; + MCFOLD float $getShadowRadius() const; - MCAPI ::ActorUniqueID $getControllingPlayer() const; + MCFOLD ::ActorUniqueID $getControllingPlayer() const; - MCAPI bool $isInvulnerableTo(::ActorDamageSource const& source) const; + MCFOLD bool $isInvulnerableTo(::ActorDamageSource const& source) const; MCAPI float $getInterpolatedBodyYaw(float) const; diff --git a/src/mc/world/actor/item/MinecartChest.h b/src/mc/world/actor/item/MinecartChest.h index cc2916e4c6..aaf0cfac8f 100644 --- a/src/mc/world/actor/item/MinecartChest.h +++ b/src/mc/world/actor/item/MinecartChest.h @@ -73,9 +73,9 @@ class MinecartChest : public ::Minecart { // NOLINTBEGIN MCAPI void $destroy(::ActorDamageSource const& source, bool dropMinecartComponents); - MCAPI void $applyNaturalSlowdown(::BlockSource& region); + MCFOLD void $applyNaturalSlowdown(::BlockSource& region); - MCAPI ::MinecartType $getType(); + MCFOLD ::MinecartType $getType(); MCAPI ::Block const* $getDefaultDisplayBlock() const; // NOLINTEND diff --git a/src/mc/world/actor/item/MinecartCommandBlock.h b/src/mc/world/actor/item/MinecartCommandBlock.h index 64b49b7e8b..ac67e5434c 100644 --- a/src/mc/world/actor/item/MinecartCommandBlock.h +++ b/src/mc/world/actor/item/MinecartCommandBlock.h @@ -81,7 +81,7 @@ class MinecartCommandBlock : public ::Minecart { public: // virtual function thunks // NOLINTBEGIN - MCAPI bool $canShowNameTag() const; + MCFOLD bool $canShowNameTag() const; MCAPI void $addAdditionalSaveData(::CompoundTag& tag) const; @@ -89,7 +89,7 @@ class MinecartCommandBlock : public ::Minecart { MCAPI void $initializeComponents(::ActorInitializationMethod method, ::VariantParameterList const& params); - MCAPI ::MinecartType $getType(); + MCFOLD ::MinecartType $getType(); MCAPI ::Block const* $getDefaultDisplayBlock() const; diff --git a/src/mc/world/actor/item/MinecartHopper.h b/src/mc/world/actor/item/MinecartHopper.h index e95d0a000d..00a83929a7 100644 --- a/src/mc/world/actor/item/MinecartHopper.h +++ b/src/mc/world/actor/item/MinecartHopper.h @@ -82,13 +82,13 @@ class MinecartHopper : public ::Minecart { // NOLINTBEGIN MCAPI void $destroy(::ActorDamageSource const& source, bool dropMinecartComponents); - MCAPI void $applyNaturalSlowdown(::BlockSource& region); + MCFOLD void $applyNaturalSlowdown(::BlockSource& region); - MCAPI ::MinecartType $getType(); + MCFOLD ::MinecartType $getType(); MCAPI ::Block const* $getDefaultDisplayBlock() const; - MCAPI int $getDefaultDisplayOffset() const; + MCFOLD int $getDefaultDisplayOffset() const; // NOLINTEND public: diff --git a/src/mc/world/actor/item/MinecartRideable.h b/src/mc/world/actor/item/MinecartRideable.h index dea2b00dcb..8c5d7baf69 100644 --- a/src/mc/world/actor/item/MinecartRideable.h +++ b/src/mc/world/actor/item/MinecartRideable.h @@ -53,7 +53,7 @@ class MinecartRideable : public ::Minecart { public: // virtual function thunks // NOLINTBEGIN - MCAPI ::MinecartType $getType(); + MCFOLD ::MinecartType $getType(); // NOLINTEND public: diff --git a/src/mc/world/actor/item/MinecartTNT.h b/src/mc/world/actor/item/MinecartTNT.h index 31b353dbad..7d31c1664c 100644 --- a/src/mc/world/actor/item/MinecartTNT.h +++ b/src/mc/world/actor/item/MinecartTNT.h @@ -87,7 +87,7 @@ class MinecartTNT : public ::Minecart { MCAPI void $destroy(::ActorDamageSource const& source, bool dropMinecartComponents); - MCAPI ::MinecartType $getType(); + MCFOLD ::MinecartType $getType(); MCAPI ::Block const* $getDefaultDisplayBlock() const; diff --git a/src/mc/world/actor/item/PrimedTnt.h b/src/mc/world/actor/item/PrimedTnt.h index b399c421d7..ddc26180d5 100644 --- a/src/mc/world/actor/item/PrimedTnt.h +++ b/src/mc/world/actor/item/PrimedTnt.h @@ -120,20 +120,20 @@ class PrimedTnt : public ::PredictableProjectile { MCAPI void $normalTick(); - MCAPI float $getShadowRadius() const; + MCFOLD float $getShadowRadius() const; MCAPI ::ActorUniqueID $getSourceUniqueID() const; - MCAPI ::ActorType $getOwnerEntityType(); + MCFOLD ::ActorType $getOwnerEntityType(); - MCAPI void + MCFOLD void $teleportTo(::Vec3 const& pos, bool shouldStopRiding, int cause, int sourceEntityType, bool keepVelocity); MCAPI bool $_hurt(::ActorDamageSource const& source, float damage, bool knock, bool ignite); - MCAPI void $addAdditionalSaveData(::CompoundTag& tag) const; + MCFOLD void $addAdditionalSaveData(::CompoundTag& tag) const; - MCAPI void $readAdditionalSaveData(::CompoundTag const& tag, ::DataLoadHelper& dataLoadHelper); + MCFOLD void $readAdditionalSaveData(::CompoundTag const& tag, ::DataLoadHelper& dataLoadHelper); // NOLINTEND public: diff --git a/src/mc/world/actor/item/TripodCamera.h b/src/mc/world/actor/item/TripodCamera.h index 84256499a4..4386dc28cb 100644 --- a/src/mc/world/actor/item/TripodCamera.h +++ b/src/mc/world/actor/item/TripodCamera.h @@ -95,11 +95,11 @@ class TripodCamera : public ::Mob { // NOLINTBEGIN MCAPI void $reloadHardcoded(::ActorInitializationMethod method, ::VariantParameterList const& params); - MCAPI float $getShadowRadius() const; + MCFOLD float $getShadowRadius() const; - MCAPI bool $isTargetable() const; + MCFOLD bool $isTargetable() const; - MCAPI bool $canExistWhenDisallowMob() const; + MCFOLD bool $canExistWhenDisallowMob() const; MCAPI void $remove(); diff --git a/src/mc/world/actor/monster/Blaze.h b/src/mc/world/actor/monster/Blaze.h index 3dd2c01611..d99f351287 100644 --- a/src/mc/world/actor/monster/Blaze.h +++ b/src/mc/world/actor/monster/Blaze.h @@ -86,13 +86,13 @@ class Blaze : public ::Monster { // NOLINTBEGIN MCAPI void $reloadHardcodedClient(::ActorInitializationMethod method); - MCAPI float $getBrightness(float a, ::IConstBlockSource const& region) const; + MCFOLD float $getBrightness(float a, ::IConstBlockSource const& region) const; MCAPI void $aiStep(); MCAPI bool $isOnFire() const; - MCAPI bool $isDarkEnoughToSpawn() const; + MCFOLD bool $isDarkEnoughToSpawn() const; MCAPI void $normalTick(); // NOLINTEND diff --git a/src/mc/world/actor/monster/Creaking.h b/src/mc/world/actor/monster/Creaking.h index 47151444eb..ed232227b6 100644 --- a/src/mc/world/actor/monster/Creaking.h +++ b/src/mc/world/actor/monster/Creaking.h @@ -57,7 +57,7 @@ class Creaking : public ::Monster { // NOLINTBEGIN MCAPI float $getShadowRadius() const; - MCAPI bool $checkSpawnRules(bool); + MCFOLD bool $checkSpawnRules(bool); // NOLINTEND public: diff --git a/src/mc/world/actor/monster/Creeper.h b/src/mc/world/actor/monster/Creeper.h index c427427b71..fe4856e960 100644 --- a/src/mc/world/actor/monster/Creeper.h +++ b/src/mc/world/actor/monster/Creeper.h @@ -52,7 +52,7 @@ class Creeper : public ::Monster { MCAPI void _setSwellDir(int dir); - MCAPI int getSwellDir(); + MCFOLD int getSwellDir(); MCAPI float getSwelling(float a) const; // NOLINTEND diff --git a/src/mc/world/actor/monster/EnderCrystal.h b/src/mc/world/actor/monster/EnderCrystal.h index a229f25ac0..fdf2900412 100644 --- a/src/mc/world/actor/monster/EnderCrystal.h +++ b/src/mc/world/actor/monster/EnderCrystal.h @@ -63,7 +63,7 @@ class EnderCrystal : public ::Actor { ::EntityContext& entityContext ); - MCAPI void setBeamTarget(::BlockPos const& target); + MCFOLD void setBeamTarget(::BlockPos const& target); MCAPI void setCrystalDamagedCallback(::std::function onDamaged); // NOLINTEND @@ -97,7 +97,7 @@ class EnderCrystal : public ::Actor { MCAPI bool $isInvulnerableTo(::ActorDamageSource const& source) const; - MCAPI float $getShadowRadius() const; + MCFOLD float $getShadowRadius() const; MCAPI void $addAdditionalSaveData(::CompoundTag& tag) const; diff --git a/src/mc/world/actor/monster/EnderDragon.h b/src/mc/world/actor/monster/EnderDragon.h index cae71c2d5f..ee2f3455ec 100644 --- a/src/mc/world/actor/monster/EnderDragon.h +++ b/src/mc/world/actor/monster/EnderDragon.h @@ -209,13 +209,13 @@ class EnderDragon : public ::Monster { public: // virtual function thunks // NOLINTBEGIN - MCAPI void $reloadHardcoded(::ActorInitializationMethod method, ::VariantParameterList const& params); + MCFOLD void $reloadHardcoded(::ActorInitializationMethod method, ::VariantParameterList const& params); MCAPI void $remove(); MCAPI void $setSitting(bool value); - MCAPI bool $canBeAffected(uint id) const; + MCFOLD bool $canBeAffected(uint id) const; MCAPI bool $isImmobile() const; @@ -229,7 +229,7 @@ class EnderDragon : public ::Monster { MCAPI bool $isInvulnerableTo(::ActorDamageSource const& source) const; - MCAPI bool $canBePulledIntoVehicle() const; + MCFOLD bool $canBePulledIntoVehicle() const; MCAPI bool $_hurt(::ActorDamageSource const& source, float damage, bool knock, bool ignite); diff --git a/src/mc/world/actor/monster/EnderMan.h b/src/mc/world/actor/monster/EnderMan.h index 803801091c..c4f02a226d 100644 --- a/src/mc/world/actor/monster/EnderMan.h +++ b/src/mc/world/actor/monster/EnderMan.h @@ -127,11 +127,11 @@ class EnderMan : public ::Monster { MCAPI void $hurtEffects(::ActorDamageSource const& source, float damage, bool knock, bool ignite); - MCAPI bool $canBeAffectedByArrow(::MobEffectInstance const& effect) const; + MCFOLD bool $canBeAffectedByArrow(::MobEffectInstance const& effect) const; MCAPI ::SharedTypes::Legacy::LevelSoundEvent $getAmbientSound() const; - MCAPI bool $shouldRender() const; + MCFOLD bool $shouldRender() const; MCAPI bool $_hurt(::ActorDamageSource const& source, float damage, bool knock, bool ignite); diff --git a/src/mc/world/actor/monster/EndermanTakeBlockGoal.h b/src/mc/world/actor/monster/EndermanTakeBlockGoal.h index 6adce02bc0..dff492b91b 100644 --- a/src/mc/world/actor/monster/EndermanTakeBlockGoal.h +++ b/src/mc/world/actor/monster/EndermanTakeBlockGoal.h @@ -16,15 +16,9 @@ class EndermanTakeBlockGoal : public ::Goal { public: // member variables // NOLINTBEGIN - ::ll::UntypedStorage<8, 8> mUnk2848f9; + ::ll::TypedStorage<8, 8, ::EnderMan&> mEnderman; // NOLINTEND -public: - // prevent constructor by default - EndermanTakeBlockGoal& operator=(EndermanTakeBlockGoal const&); - EndermanTakeBlockGoal(EndermanTakeBlockGoal const&); - EndermanTakeBlockGoal(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/actor/monster/EvocationIllager.h b/src/mc/world/actor/monster/EvocationIllager.h index 189cd87949..0213709a38 100644 --- a/src/mc/world/actor/monster/EvocationIllager.h +++ b/src/mc/world/actor/monster/EvocationIllager.h @@ -58,7 +58,7 @@ class EvocationIllager : public ::HumanoidMonster { // NOLINTBEGIN MCAPI bool $isAlliedTo(::Mob* other); - MCAPI int $getArmorValue() const; + MCFOLD int $getArmorValue() const; // NOLINTEND public: diff --git a/src/mc/world/actor/monster/Ghast.h b/src/mc/world/actor/monster/Ghast.h index e9c2051702..c551b6ac25 100644 --- a/src/mc/world/actor/monster/Ghast.h +++ b/src/mc/world/actor/monster/Ghast.h @@ -65,9 +65,9 @@ class Ghast : public ::Monster { public: // virtual function thunks // NOLINTBEGIN - MCAPI bool $isDarkEnoughToSpawn() const; + MCFOLD bool $isDarkEnoughToSpawn() const; - MCAPI float $_getWalkTargetValue(::BlockPos const& pos); + MCFOLD float $_getWalkTargetValue(::BlockPos const& pos); MCAPI bool $_hurt(::ActorDamageSource const& source, float damage, bool knock, bool ignite); diff --git a/src/mc/world/actor/monster/Guardian.h b/src/mc/world/actor/monster/Guardian.h index d9c719f1d5..a2d7a3cfdf 100644 --- a/src/mc/world/actor/monster/Guardian.h +++ b/src/mc/world/actor/monster/Guardian.h @@ -98,7 +98,7 @@ class Guardian : public ::Monster { MCAPI void registerLoopingSounds(); - MCAPI void setAttackTime(int time); + MCFOLD void setAttackTime(int time); MCAPI void setElder(bool value); // NOLINTEND @@ -136,15 +136,15 @@ class Guardian : public ::Monster { MCAPI bool $checkSpawnRules(bool); - MCAPI void $setTarget(::Actor* entity); + MCFOLD void $setTarget(::Actor* entity); - MCAPI float $getMaxHeadXRot(); + MCFOLD float $getMaxHeadXRot(); MCAPI void $addAdditionalSaveData(::CompoundTag& tag) const; MCAPI void $readAdditionalSaveData(::CompoundTag const& tag, ::DataLoadHelper& dataLoadHelper); - MCAPI bool $isDarkEnoughToSpawn() const; + MCFOLD bool $isDarkEnoughToSpawn() const; MCAPI bool $_hurt(::ActorDamageSource const& source, float damage, bool knock, bool ignite); // NOLINTEND diff --git a/src/mc/world/actor/monster/HumanoidMonster.h b/src/mc/world/actor/monster/HumanoidMonster.h index 4892df3583..3321f757d6 100644 --- a/src/mc/world/actor/monster/HumanoidMonster.h +++ b/src/mc/world/actor/monster/HumanoidMonster.h @@ -43,7 +43,7 @@ class HumanoidMonster : public ::Monster { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND public: @@ -51,9 +51,9 @@ class HumanoidMonster : public ::Monster { // NOLINTBEGIN MCAPI int $getItemUseDuration() const; - MCAPI void $addAdditionalSaveData(::CompoundTag& tag) const; + MCFOLD void $addAdditionalSaveData(::CompoundTag& tag) const; - MCAPI void $readAdditionalSaveData(::CompoundTag const& tag, ::DataLoadHelper& dataLoadHelper); + MCFOLD void $readAdditionalSaveData(::CompoundTag const& tag, ::DataLoadHelper& dataLoadHelper); // NOLINTEND public: diff --git a/src/mc/world/actor/monster/LavaSlime.h b/src/mc/world/actor/monster/LavaSlime.h index 668f036a18..94b7bdbc6b 100644 --- a/src/mc/world/actor/monster/LavaSlime.h +++ b/src/mc/world/actor/monster/LavaSlime.h @@ -82,21 +82,21 @@ class LavaSlime : public ::Slime { // NOLINTBEGIN MCAPI void $reloadHardcoded(::ActorInitializationMethod method, ::VariantParameterList const& params); - MCAPI bool $checkSpawnRules(bool fromSpawner); + MCFOLD bool $checkSpawnRules(bool fromSpawner); - MCAPI bool $isDarkEnoughToSpawn() const; + MCFOLD bool $isDarkEnoughToSpawn() const; MCAPI int $getArmorValue() const; - MCAPI float $getBrightness(float a, ::IConstBlockSource const& region) const; + MCFOLD float $getBrightness(float a, ::IConstBlockSource const& region) const; MCAPI ::OwnerPtr<::EntityContext> $createChild(int i); - MCAPI bool $isOnFire() const; + MCFOLD bool $isOnFire() const; MCAPI void $decreaseSquish(); - MCAPI bool $doPlayLandSound(); + MCFOLD bool $doPlayLandSound(); // NOLINTEND public: diff --git a/src/mc/world/actor/monster/Monster.h b/src/mc/world/actor/monster/Monster.h index 9e8270afd1..608993a280 100644 --- a/src/mc/world/actor/monster/Monster.h +++ b/src/mc/world/actor/monster/Monster.h @@ -80,7 +80,7 @@ class Monster : public ::Mob { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND public: @@ -90,7 +90,7 @@ class Monster : public ::Mob { MCAPI bool $isDarkEnoughToSpawn() const; - MCAPI bool $checkSpawnRules(bool fromSpawner); + MCFOLD bool $checkSpawnRules(bool fromSpawner); MCAPI float $_getWalkTargetValue(::BlockPos const& pos); diff --git a/src/mc/world/actor/monster/Phantom.h b/src/mc/world/actor/monster/Phantom.h index 8f238faf47..39b7188c41 100644 --- a/src/mc/world/actor/monster/Phantom.h +++ b/src/mc/world/actor/monster/Phantom.h @@ -62,7 +62,7 @@ class Phantom : public ::Monster { MCAPI bool $checkSpawnRules(bool fromSpawner); - MCAPI bool $shouldRender() const; + MCFOLD bool $shouldRender() const; // NOLINTEND public: diff --git a/src/mc/world/actor/monster/PigZombie.h b/src/mc/world/actor/monster/PigZombie.h index 260fdf0726..ddf019384a 100644 --- a/src/mc/world/actor/monster/PigZombie.h +++ b/src/mc/world/actor/monster/PigZombie.h @@ -44,7 +44,7 @@ class PigZombie : public ::Zombie { virtual bool _hurt(::ActorDamageSource const& source, float damage, bool knock, bool ignite) /*override*/; // vIndex: 141 - virtual void addAdditionalSaveData(::CompoundTag& entityTag) const /*override*/; + virtual void addAdditionalSaveData(::CompoundTag& tag) const /*override*/; // vIndex: 140 virtual void readAdditionalSaveData(::CompoundTag const& tag, ::DataLoadHelper& dataLoadHelper) /*override*/; @@ -94,7 +94,7 @@ class PigZombie : public ::Zombie { MCAPI bool $_hurt(::ActorDamageSource const& source, float damage, bool knock, bool ignite); - MCAPI void $addAdditionalSaveData(::CompoundTag& entityTag) const; + MCAPI void $addAdditionalSaveData(::CompoundTag& tag) const; MCAPI void $readAdditionalSaveData(::CompoundTag const& tag, ::DataLoadHelper& dataLoadHelper); // NOLINTEND diff --git a/src/mc/world/actor/monster/Piglin.h b/src/mc/world/actor/monster/Piglin.h index 1f18bbcc2d..5f66a65aa7 100644 --- a/src/mc/world/actor/monster/Piglin.h +++ b/src/mc/world/actor/monster/Piglin.h @@ -60,7 +60,7 @@ class Piglin : public ::HumanoidMonster { // NOLINTBEGIN MCAPI bool $getInteraction(::Player& player, ::ActorInteraction& interaction, ::Vec3 const& location); - MCAPI bool $isDarkEnoughToSpawn() const; + MCFOLD bool $isDarkEnoughToSpawn() const; // NOLINTEND public: diff --git a/src/mc/world/actor/monster/Pillager.h b/src/mc/world/actor/monster/Pillager.h index 266616c90d..9557df5716 100644 --- a/src/mc/world/actor/monster/Pillager.h +++ b/src/mc/world/actor/monster/Pillager.h @@ -61,11 +61,11 @@ class Pillager : public ::HumanoidMonster { public: // virtual function thunks // NOLINTBEGIN - MCAPI bool $isDarkEnoughToSpawn() const; + MCFOLD bool $isDarkEnoughToSpawn() const; MCAPI void $readAdditionalSaveData(::CompoundTag const& tag, ::DataLoadHelper& dataLoadHelper); - MCAPI float $_getWalkTargetValue(::BlockPos const& pos); + MCFOLD float $_getWalkTargetValue(::BlockPos const& pos); // NOLINTEND public: diff --git a/src/mc/world/actor/monster/Shulker.h b/src/mc/world/actor/monster/Shulker.h index d9f3558dc5..a6422b460e 100644 --- a/src/mc/world/actor/monster/Shulker.h +++ b/src/mc/world/actor/monster/Shulker.h @@ -149,15 +149,15 @@ class Shulker : public ::Mob { MCAPI int $getArmorValue() const; - MCAPI bool $shouldRender() const; + MCFOLD bool $shouldRender() const; - MCAPI void $_doInitialMove(); + MCFOLD void $_doInitialMove(); - MCAPI ::std::unique_ptr<::BodyControl> $initBodyControl(); + MCFOLD ::std::unique_ptr<::BodyControl> $initBodyControl(); - MCAPI float $getShadowRadius() const; + MCFOLD float $getShadowRadius() const; - MCAPI float $getMaxHeadXRot(); + MCFOLD float $getMaxHeadXRot(); MCAPI bool $isInWall() const; diff --git a/src/mc/world/actor/monster/Silverfish.h b/src/mc/world/actor/monster/Silverfish.h index 498a0843ea..0153343125 100644 --- a/src/mc/world/actor/monster/Silverfish.h +++ b/src/mc/world/actor/monster/Silverfish.h @@ -70,7 +70,7 @@ class Silverfish : public ::Monster { public: // virtual function thunks // NOLINTBEGIN - MCAPI bool $isDarkEnoughToSpawn() const; + MCFOLD bool $isDarkEnoughToSpawn() const; MCAPI void $spawnAnim(); @@ -78,7 +78,7 @@ class Silverfish : public ::Monster { MCAPI bool $checkSpawnRules(bool fromSpawner); - MCAPI void $_playStepSound(::BlockPos const& pos, ::Block const& onBlock); + MCFOLD void $_playStepSound(::BlockPos const& pos, ::Block const& onBlock); // NOLINTEND public: diff --git a/src/mc/world/actor/monster/Skeleton.h b/src/mc/world/actor/monster/Skeleton.h index a4a7d6db55..f073c98868 100644 --- a/src/mc/world/actor/monster/Skeleton.h +++ b/src/mc/world/actor/monster/Skeleton.h @@ -110,7 +110,7 @@ class Skeleton : public ::HumanoidMonster { MCAPI bool $canBeAffected(uint id) const; - MCAPI void $setTarget(::Actor* entity); + MCFOLD void $setTarget(::Actor* entity); MCAPI void $normalTick(); diff --git a/src/mc/world/actor/monster/Slime.h b/src/mc/world/actor/monster/Slime.h index b2044294b1..89183e4f91 100644 --- a/src/mc/world/actor/monster/Slime.h +++ b/src/mc/world/actor/monster/Slime.h @@ -130,7 +130,7 @@ class Slime : public ::Monster { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND public: diff --git a/src/mc/world/actor/monster/Spider.h b/src/mc/world/actor/monster/Spider.h index 65b0f1f077..8f6365945c 100644 --- a/src/mc/world/actor/monster/Spider.h +++ b/src/mc/world/actor/monster/Spider.h @@ -75,13 +75,13 @@ class Spider : public ::Monster { // NOLINTBEGIN MCAPI bool $canBeAffected(uint id) const; - MCAPI float $getModelScale() const; + MCFOLD float $getModelScale() const; - MCAPI float $getShadowRadius() const; + MCFOLD float $getShadowRadius() const; - MCAPI bool $shouldRender() const; + MCFOLD bool $shouldRender() const; - MCAPI void $_playStepSound(::BlockPos const& pos, ::Block const& onBlock); + MCFOLD void $_playStepSound(::BlockPos const& pos, ::Block const& onBlock); // NOLINTEND public: diff --git a/src/mc/world/actor/monster/Vex.h b/src/mc/world/actor/monster/Vex.h index d6d7268b8d..a999841cad 100644 --- a/src/mc/world/actor/monster/Vex.h +++ b/src/mc/world/actor/monster/Vex.h @@ -68,15 +68,15 @@ class Vex : public ::Monster { public: // virtual function thunks // NOLINTBEGIN - MCAPI bool $isInWall() const; + MCFOLD bool $isInWall() const; MCAPI void $initializeComponents(::ActorInitializationMethod method, ::VariantParameterList const& params); MCAPI void $reloadHardcoded(::ActorInitializationMethod method, ::VariantParameterList const& params); - MCAPI void $addAdditionalSaveData(::CompoundTag& tag) const; + MCFOLD void $addAdditionalSaveData(::CompoundTag& tag) const; - MCAPI void $readAdditionalSaveData(::CompoundTag const& tag, ::DataLoadHelper& dataLoadHelper); + MCFOLD void $readAdditionalSaveData(::CompoundTag const& tag, ::DataLoadHelper& dataLoadHelper); // NOLINTEND public: diff --git a/src/mc/world/actor/monster/VindicationIllager.h b/src/mc/world/actor/monster/VindicationIllager.h index 3950711d7e..1b9b11b4c7 100644 --- a/src/mc/world/actor/monster/VindicationIllager.h +++ b/src/mc/world/actor/monster/VindicationIllager.h @@ -53,7 +53,7 @@ class VindicationIllager : public ::HumanoidMonster { public: // virtual function thunks // NOLINTBEGIN - MCAPI float $_getWalkTargetValue(::BlockPos const& pos); + MCFOLD float $_getWalkTargetValue(::BlockPos const& pos); // NOLINTEND public: diff --git a/src/mc/world/actor/monster/Warden.h b/src/mc/world/actor/monster/Warden.h index 22171adc15..b08108923b 100644 --- a/src/mc/world/actor/monster/Warden.h +++ b/src/mc/world/actor/monster/Warden.h @@ -95,11 +95,11 @@ class Warden : public ::Monster { public: // virtual function thunks // NOLINTBEGIN - MCAPI bool $canDisableShield(); + MCFOLD bool $canDisableShield(); MCAPI bool $isInvulnerableTo(::ActorDamageSource const& source) const; - MCAPI void $onSynchedDataUpdate(int dataId); + MCFOLD void $onSynchedDataUpdate(int dataId); MCAPI void $onPush(::Actor& source); @@ -107,7 +107,7 @@ class Warden : public ::Monster { MCAPI void $setTarget(::Actor* entity); - MCAPI bool $checkSpawnRules(bool); + MCFOLD bool $checkSpawnRules(bool); MCAPI bool $checkSpawnObstruction() const; diff --git a/src/mc/world/actor/monster/Zombie.h b/src/mc/world/actor/monster/Zombie.h index dc2dbdfe07..f6c2267ac1 100644 --- a/src/mc/world/actor/monster/Zombie.h +++ b/src/mc/world/actor/monster/Zombie.h @@ -78,7 +78,7 @@ class Zombie : public ::HumanoidMonster { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND public: @@ -90,7 +90,7 @@ class Zombie : public ::HumanoidMonster { MCAPI bool $checkSpawnRules(bool fromSpawner); - MCAPI int $getArmorValue() const; + MCFOLD int $getArmorValue() const; // NOLINTEND public: diff --git a/src/mc/world/actor/npc/ActionContainer.h b/src/mc/world/actor/npc/ActionContainer.h index fa160bad91..1d41119b06 100644 --- a/src/mc/world/actor/npc/ActionContainer.h +++ b/src/mc/world/actor/npc/ActionContainer.h @@ -29,11 +29,11 @@ struct ActionContainer { // NOLINTBEGIN MCAPI ::std::variant<::npc::CommandAction, ::npc::UrlAction> const* at(uint64) const; - MCAPI ::std::variant<::npc::CommandAction, ::npc::UrlAction>* at(uint64 i); + MCFOLD ::std::variant<::npc::CommandAction, ::npc::UrlAction>* at(uint64 i); MCAPI uint64 countUrl() const; - MCAPI ::std::vector<::std::variant<::npc::CommandAction, ::npc::UrlAction>> const& data() const; + MCFOLD ::std::vector<::std::variant<::npc::CommandAction, ::npc::UrlAction>> const& data() const; MCAPI ::npc::ActionContainer& operator=(::npc::ActionContainer&&); @@ -41,7 +41,7 @@ struct ActionContainer { MCAPI void reset(::std::vector<::std::variant<::npc::CommandAction, ::npc::UrlAction>>&& data); - MCAPI uint64 size() const; + MCFOLD uint64 size() const; MCAPI ~ActionContainer(); // NOLINTEND diff --git a/src/mc/world/actor/npc/ActionValue.h b/src/mc/world/actor/npc/ActionValue.h index 02252d353f..8bf13d0639 100644 --- a/src/mc/world/actor/npc/ActionValue.h +++ b/src/mc/world/actor/npc/ActionValue.h @@ -19,7 +19,7 @@ struct ActionValue { MCAPI ::npc::ActionValue& operator=(::std::string_view newName); - MCAPI ::std::string_view rawValue() const; + MCFOLD ::std::string_view rawValue() const; MCAPI ~ActionValue(); // NOLINTEND @@ -27,13 +27,13 @@ struct ActionValue { public: // constructor thunks // NOLINTBEGIN - MCAPI void* $ctor(); + MCFOLD void* $ctor(); // NOLINTEND public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/world/actor/npc/Button.h b/src/mc/world/actor/npc/Button.h index cc545d3b70..80f6fdee64 100644 --- a/src/mc/world/actor/npc/Button.h +++ b/src/mc/world/actor/npc/Button.h @@ -30,13 +30,13 @@ struct Button { public: // constructor thunks // NOLINTBEGIN - MCAPI void* $ctor(); + MCFOLD void* $ctor(); // NOLINTEND public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/world/actor/npc/INpcDialogueData.h b/src/mc/world/actor/npc/INpcDialogueData.h index df4e6dc6c0..9fcb30954a 100644 --- a/src/mc/world/actor/npc/INpcDialogueData.h +++ b/src/mc/world/actor/npc/INpcDialogueData.h @@ -59,8 +59,8 @@ struct INpcDialogueData { public: // virtual function thunks // NOLINTBEGIN - MCAPI ::std::string const& $getRawDialogueText() const; + MCFOLD ::std::string const& $getRawDialogueText() const; - MCAPI bool $isRemoteFire(); + MCFOLD bool $isRemoteFire(); // NOLINTEND }; diff --git a/src/mc/world/actor/npc/NpcSceneDialogueData.h b/src/mc/world/actor/npc/NpcSceneDialogueData.h index 096780611d..0609ee812f 100644 --- a/src/mc/world/actor/npc/NpcSceneDialogueData.h +++ b/src/mc/world/actor/npc/NpcSceneDialogueData.h @@ -78,21 +78,21 @@ struct NpcSceneDialogueData : public ::INpcDialogueData { // NOLINTBEGIN MCAPI ::std::string const& $getDialogueText() const; - MCAPI ::std::string const& $getSceneName() const; + MCFOLD ::std::string const& $getSceneName() const; MCAPI ::std::string const& $getNameText() const; MCAPI ::std::string const& $getNameRawText() const; - MCAPI ::npc::ActionContainer* $getActionsContainer(); + MCFOLD ::npc::ActionContainer* $getActionsContainer(); - MCAPI ::npc::ActionContainer const* $getActionsContainer() const; + MCFOLD ::npc::ActionContainer const* $getActionsContainer() const; MCAPI ::ActorUniqueID $getActorUniqueID(); - MCAPI ::Actor* $getActor(); + MCFOLD ::Actor* $getActor(); - MCAPI ::Actor const* $getActor() const; + MCFOLD ::Actor const* $getActor() const; // NOLINTEND public: diff --git a/src/mc/world/actor/npc/StoredCommand.h b/src/mc/world/actor/npc/StoredCommand.h index 7554808be3..3ef520d7d0 100644 --- a/src/mc/world/actor/npc/StoredCommand.h +++ b/src/mc/world/actor/npc/StoredCommand.h @@ -28,7 +28,7 @@ struct StoredCommand { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/world/actor/npc/UrlAction.h b/src/mc/world/actor/npc/UrlAction.h index f104a7ea8f..6a629ec718 100644 --- a/src/mc/world/actor/npc/UrlAction.h +++ b/src/mc/world/actor/npc/UrlAction.h @@ -29,7 +29,7 @@ struct UrlAction { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/world/actor/npc/VillagerBase.h b/src/mc/world/actor/npc/VillagerBase.h index 70f284f2c5..386ae22a1d 100644 --- a/src/mc/world/actor/npc/VillagerBase.h +++ b/src/mc/world/actor/npc/VillagerBase.h @@ -53,7 +53,7 @@ class VillagerBase : public ::Mob { virtual void readAdditionalSaveData(::CompoundTag const& tag, ::DataLoadHelper& dataLoadHelper) /*override*/; // vIndex: 71 - virtual void handleEntityEvent(::ActorEvent event, int data) /*override*/; + virtual void handleEntityEvent(::ActorEvent eventId, int data) /*override*/; // vIndex: 69 virtual void onLightningHit() /*override*/; @@ -101,7 +101,7 @@ class VillagerBase : public ::Mob { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND public: @@ -111,7 +111,7 @@ class VillagerBase : public ::Mob { MCAPI void $readAdditionalSaveData(::CompoundTag const& tag, ::DataLoadHelper& dataLoadHelper); - MCAPI void $handleEntityEvent(::ActorEvent event, int data); + MCAPI void $handleEntityEvent(::ActorEvent eventId, int data); MCAPI void $onLightningHit(); // NOLINTEND diff --git a/src/mc/world/actor/npc/VillagerV2.h b/src/mc/world/actor/npc/VillagerV2.h index 204651280b..4783020c68 100644 --- a/src/mc/world/actor/npc/VillagerV2.h +++ b/src/mc/world/actor/npc/VillagerV2.h @@ -81,7 +81,7 @@ class VillagerV2 : public ::VillagerBase { MCAPI void $newServerAiStep(); - MCAPI void $die(::ActorDamageSource const& source); + MCFOLD void $die(::ActorDamageSource const& source); MCAPI void $remove(); diff --git a/src/mc/world/actor/npc/allay/AllayVibrationConfig.h b/src/mc/world/actor/npc/allay/AllayVibrationConfig.h index 8b89b473bc..2b29213280 100644 --- a/src/mc/world/actor/npc/allay/AllayVibrationConfig.h +++ b/src/mc/world/actor/npc/allay/AllayVibrationConfig.h @@ -71,7 +71,7 @@ class AllayVibrationConfig : public ::VibrationListenerConfig { MCAPI bool $isValidVibration(::GameEvent const& gameEvent); - MCAPI bool $shouldListen(::BlockSource&, ::GameEvent const&, ::GameEventContext const&); + MCFOLD bool $shouldListen(::BlockSource&, ::GameEvent const&, ::GameEventContext const&); // NOLINTEND public: diff --git a/src/mc/world/actor/npc/npc.h b/src/mc/world/actor/npc/npc.h index b146109f8e..bae2f5981f 100644 --- a/src/mc/world/actor/npc/npc.h +++ b/src/mc/world/actor/npc/npc.h @@ -101,29 +101,29 @@ class Npc : public ::Mob { public: // virtual function thunks // NOLINTBEGIN - MCAPI void $reloadHardcoded(::ActorInitializationMethod method, ::VariantParameterList const& params); + MCFOLD void $reloadHardcoded(::ActorInitializationMethod method, ::VariantParameterList const& params); MCAPI void $initializeComponents(::ActorInitializationMethod method, ::VariantParameterList const& params); MCAPI void $newServerAiStep(); - MCAPI void $die(::ActorDamageSource const& source); + MCFOLD void $die(::ActorDamageSource const& source); - MCAPI bool $canBeAffected(uint id) const; + MCFOLD bool $canBeAffected(uint id) const; MCAPI ::mce::Color $getNameTagTextColor() const; - MCAPI bool $canShowNameTag() const; + MCFOLD bool $canShowNameTag() const; - MCAPI bool $isTargetable() const; + MCFOLD bool $isTargetable() const; MCAPI void $buildDebugInfo(::std::string& out) const; - MCAPI void $knockback(::Actor*, int, float, float, float, float, float); + MCFOLD void $knockback(::Actor*, int, float, float, float, float, float); - MCAPI bool $canBePulledIntoVehicle() const; + MCFOLD bool $canBePulledIntoVehicle() const; - MCAPI bool $canExistWhenDisallowMob() const; + MCFOLD bool $canExistWhenDisallowMob() const; MCAPI bool $_hurt(::ActorDamageSource const& source, float, bool, bool); // NOLINTEND diff --git a/src/mc/world/actor/player/Abilities.h b/src/mc/world/actor/player/Abilities.h index dcd7d578ed..0bac4f1f8e 100644 --- a/src/mc/world/actor/player/Abilities.h +++ b/src/mc/world/actor/player/Abilities.h @@ -29,7 +29,7 @@ class Abilities { MCAPI void addSaveData(::CompoundTag& parentTag) const; - MCAPI void forEachAbility( + MCFOLD void forEachAbility( ::std::function const& callback, ::Ability::Options requiredOptions ); diff --git a/src/mc/world/actor/player/Ability.h b/src/mc/world/actor/player/Ability.h index 434390d94b..bbd3c19e75 100644 --- a/src/mc/world/actor/player/Ability.h +++ b/src/mc/world/actor/player/Ability.h @@ -48,7 +48,7 @@ class Ability { MCAPI float getFloat() const; - MCAPI ::Ability::Type getType() const; + MCFOLD ::Ability::Type getType() const; MCAPI bool hasOption(::Ability::Options op) const; @@ -60,7 +60,7 @@ class Ability { MCAPI void setFloat(float val); - MCAPI void unSet(); + MCFOLD void unSet(); // NOLINTEND public: diff --git a/src/mc/world/actor/player/Inventory.h b/src/mc/world/actor/player/Inventory.h index c290242a64..04610945d4 100644 --- a/src/mc/world/actor/player/Inventory.h +++ b/src/mc/world/actor/player/Inventory.h @@ -82,7 +82,7 @@ class Inventory : public ::FillingContainer { MCAPI void $setContainerSize(int size); - MCAPI void $setItem(int slot, ::ItemStack const& item); + MCFOLD void $setItem(int slot, ::ItemStack const& item); MCAPI void $setItemWithForceBalance(int slot, ::ItemStack const& item, bool forceBalanced); // NOLINTEND diff --git a/src/mc/world/actor/player/LayeredAbilities.h b/src/mc/world/actor/player/LayeredAbilities.h index 38e5bae990..1c781b5a77 100644 --- a/src/mc/world/actor/player/LayeredAbilities.h +++ b/src/mc/world/actor/player/LayeredAbilities.h @@ -44,7 +44,7 @@ class LayeredAbilities { ::Ability::Options requiredOptions ) const; - MCAPI void forEachLayer(::std::function const& callback); + MCFOLD void forEachLayer(::std::function const& callback); MCAPI void forEachLayer(::std::function const&) const; @@ -56,15 +56,15 @@ class LayeredAbilities { MCAPI ::std::pair getBoolWithLayer(::AbilitiesIndex val) const; - MCAPI ::CommandPermissionLevel getCommandPermissions() const; + MCFOLD ::CommandPermissionLevel getCommandPermissions() const; MCAPI ::std::pair getFloatWithLayer(::AbilitiesIndex val) const; MCAPI ::Abilities& getLayer(::AbilitiesLayer layer); - MCAPI ::PermissionsHandler& getPermissionsHandler(); + MCFOLD ::PermissionsHandler& getPermissionsHandler(); - MCAPI ::PlayerPermissionLevel getPlayerPermissions() const; + MCFOLD ::PlayerPermissionLevel getPlayerPermissions() const; MCAPI bool loadSaveData(::CompoundTag const& parentTag); @@ -74,7 +74,7 @@ class LayeredAbilities { MCAPI void setAbility(::AbilitiesIndex val, bool value); - MCAPI void setCommandPermissions(::CommandPermissionLevel permissions); + MCFOLD void setCommandPermissions(::CommandPermissionLevel permissions); MCAPI void setPermissions(::PermissionsHandler const& permissions); diff --git a/src/mc/world/actor/player/PermissionsHandler.h b/src/mc/world/actor/player/PermissionsHandler.h index a7ce7b4340..e4775baabb 100644 --- a/src/mc/world/actor/player/PermissionsHandler.h +++ b/src/mc/world/actor/player/PermissionsHandler.h @@ -28,15 +28,15 @@ class PermissionsHandler { MCAPI void addSaveData(::CompoundTag& tag) const; - MCAPI ::CommandPermissionLevel getCommandPermissions() const; + MCFOLD ::CommandPermissionLevel getCommandPermissions() const; - MCAPI ::PlayerPermissionLevel getPlayerPermissions() const; + MCFOLD ::PlayerPermissionLevel getPlayerPermissions() const; MCAPI bool loadSaveData(::CompoundTag const& tag); - MCAPI void setCommandPermissions(::CommandPermissionLevel permissions); + MCFOLD void setCommandPermissions(::CommandPermissionLevel permissions); - MCAPI void setPlayerPermissions(::PlayerPermissionLevel permissions); + MCFOLD void setPlayerPermissions(::PlayerPermissionLevel permissions); // NOLINTEND public: @@ -58,7 +58,7 @@ class PermissionsHandler { public: // constructor thunks // NOLINTBEGIN - MCAPI void* $ctor(); + MCFOLD void* $ctor(); MCAPI void* $ctor(::PermissionsHandler const& rhs); // NOLINTEND diff --git a/src/mc/world/actor/player/Player.h b/src/mc/world/actor/player/Player.h index e58020e85b..f8aff58059 100644 --- a/src/mc/world/actor/player/Player.h +++ b/src/mc/world/actor/player/Player.h @@ -579,7 +579,7 @@ class Player : public ::Mob { virtual bool isSilentObserver() const /*override*/; // vIndex: 114 - virtual void useItem(::ItemStackBase& item, ::ItemUseMethod itemUseMethod, bool consumeItem) /*override*/; + virtual void useItem(::ItemStackBase& instance, ::ItemUseMethod itemUseMethod, bool consumeItem) /*override*/; // vIndex: 215 virtual bool isLoading() const; @@ -918,7 +918,7 @@ class Player : public ::Mob { MCAPI ::LayeredAbilities const& getAbilities() const; - MCAPI ::LayeredAbilities& getAbilities(); + MCFOLD ::LayeredAbilities& getAbilities(); MCAPI ::Agent* getAgent() const; @@ -926,7 +926,7 @@ class Player : public ::Mob { MCAPI ::Agent* getAgentIfAllowed(bool callerCanAccessOtherAgents, ::ActorUniqueID callerAgentID) const; - MCAPI ::BlockPos const& getBedPosition() const; + MCFOLD ::BlockPos const& getBedPosition() const; MCAPI int64 getBlockedUsingDamagedShieldTimeStamp() const; @@ -958,7 +958,7 @@ class Player : public ::Mob { MCAPI ::BlockPos const& getExpectedSpawnPosition() const; - MCAPI ::GameMode& getGameMode() const; + MCFOLD ::GameMode& getGameMode() const; MCAPI ::std::string getInteractText() const; @@ -974,7 +974,7 @@ class Player : public ::Mob { MCAPI ::ItemStackNetManagerBase const* getItemStackNetManager() const; - MCAPI ::ItemStackNetManagerBase* getItemStackNetManager(); + MCFOLD ::ItemStackNetManagerBase* getItemStackNetManager(); MCAPI float getLuck(); @@ -1002,17 +1002,17 @@ class Player : public ::Mob { MCAPI ::ItemStack const& getPlayerUIItem(::PlayerUISlot slot); - MCAPI ::BlockPos const& getRespawnAnchorPosition() const; + MCFOLD ::BlockPos const& getRespawnAnchorPosition() const; - MCAPI ::ItemStack const& getSelectedItem() const; + MCFOLD ::ItemStack const& getSelectedItem() const; MCAPI int getSelectedItemSlot() const; - MCAPI ::std::string const& getServerId() const; + MCFOLD ::std::string const& getServerId() const; MCAPI ::SerializedSkin const& getSkin() const; - MCAPI ::SerializedSkin& getSkin(); + MCFOLD ::SerializedSkin& getSkin(); MCAPI float getSleepRotation() const; @@ -1022,7 +1022,7 @@ class Player : public ::Mob { MCAPI ::PlayerInventory const& getSupplies() const; - MCAPI ::PlayerInventory& getSupplies(); + MCFOLD ::PlayerInventory& getSupplies(); MCAPI ::std::vector<::ActorUniqueID> const& getTrackedBosses(); @@ -1046,7 +1046,7 @@ class Player : public ::Mob { MCAPI bool hasRespawnAnchorPosition() const; - MCAPI bool hasRespawnPosition() const; + MCFOLD bool hasRespawnPosition() const; MCAPI bool interact(::Actor& actor, ::Vec3 const& location); @@ -1086,7 +1086,7 @@ class Player : public ::Mob { MCAPI bool isUsingItem() const; - MCAPI bool isValidSpawn() const; + MCFOLD bool isValidSpawn() const; MCAPI void passengerCheckMovementStats(); @@ -1259,7 +1259,7 @@ class Player : public ::Mob { MCAPI static ::Player const* tryGetFromComponent(::PlayerComponent const&, ::ActorOwnerComponent const&, bool); - MCAPI static ::Player* + MCFOLD static ::Player* tryGetFromComponent(::PlayerComponent const&, ::ActorOwnerComponent& actor, bool includeRemoved); MCAPI static ::Player* tryGetFromEntity(::EntityContext& entity, bool includeRemoved); @@ -1361,7 +1361,7 @@ class Player : public ::Mob { MCAPI bool $canChangeDimensionsUsingPortal() const; - MCAPI void $changeDimensionWithCredits(::DimensionType); + MCFOLD void $changeDimensionWithCredits(::DimensionType); MCAPI void $tickWorld(::Tick const&); @@ -1373,17 +1373,17 @@ class Player : public ::Mob { MCAPI void $moveSpawnView(::Vec3 const& spawnPosition, ::DimensionType dimensionType); - MCAPI void $onSynchedDataUpdate(int dataId); + MCFOLD void $onSynchedDataUpdate(int dataId); MCAPI void $aiStep(); MCAPI bool $isFireImmune() const; - MCAPI void $checkMovementStats(::Vec3 const&); + MCFOLD void $checkMovementStats(::Vec3 const&); - MCAPI ::HashedString $getCurrentStructureFeature() const; + MCFOLD ::HashedString $getCurrentStructureFeature() const; - MCAPI bool $isAutoJumpEnabled() const; + MCFOLD bool $isAutoJumpEnabled() const; MCAPI ::Vec3 $getInterpolatedRidingOffset(float, int const) const; @@ -1401,15 +1401,15 @@ class Player : public ::Mob { MCAPI void $dropEquipmentOnDeath(); - MCAPI void $clearVanishEnchantedItemsOnDeath(); + MCFOLD void $clearVanishEnchantedItemsOnDeath(); MCAPI bool $drop(::ItemStack const& item, bool const randomly); - MCAPI void $resetRot(); + MCFOLD void $resetRot(); MCAPI void $resetUserPos(bool clearMore); - MCAPI bool $isInTrialMode(); + MCFOLD bool $isInTrialMode(); MCAPI void $setSpeed(float speed); @@ -1433,23 +1433,23 @@ class Player : public ::Mob { MCAPI bool $attack(::Actor& actor, ::ActorDamageCause const& cause); - MCAPI ::ItemStack const& $getCarriedItem() const; + MCFOLD ::ItemStack const& $getCarriedItem() const; MCAPI void $setCarriedItem(::ItemStack const& item); - MCAPI void $openPortfolio(); + MCFOLD void $openPortfolio(); - MCAPI void $openBook(int, bool, int, ::BlockActor*); + MCFOLD void $openBook(int, bool, int, ::BlockActor*); - MCAPI void $openTrading(::ActorUniqueID const&, bool); + MCFOLD void $openTrading(::ActorUniqueID const&, bool); - MCAPI void $openChalkboard(::ChalkboardBlockActor&, bool); + MCFOLD void $openChalkboard(::ChalkboardBlockActor&, bool); - MCAPI void $openNpcInteractScreen(::std::shared_ptr<::INpcDialogueData> npc); + MCFOLD void $openNpcInteractScreen(::std::shared_ptr<::INpcDialogueData> npc); - MCAPI void $openInventory(); + MCFOLD void $openInventory(); - MCAPI void $displayChatMessage( + MCFOLD void $displayChatMessage( ::std::string const& author, ::std::string const& message, ::std::optional<::std::string> const filteredMessage @@ -1458,25 +1458,25 @@ class Player : public ::Mob { MCAPI void $displayClientMessage(::std::string const& message, ::std::optional<::std::string> const filteredMessage); - MCAPI void $displayTextObjectMessage( + MCFOLD void $displayTextObjectMessage( ::TextObjectRoot const& textObject, ::std::string const& fromXuid, ::std::string const& fromPlatformId ); - MCAPI void $displayTextObjectWhisperMessage( + MCFOLD void $displayTextObjectWhisperMessage( ::ResolvedTextObject const& resolvedTextObject, ::std::string const& xuid, ::std::string const& platformId ); - MCAPI void $displayTextObjectWhisperMessage( + MCFOLD void $displayTextObjectWhisperMessage( ::std::string const& message, ::std::string const& xuid, ::std::string const& platformId ); - MCAPI void $displayWhisperMessage( + MCFOLD void $displayWhisperMessage( ::std::string const& author, ::std::string const& message, ::std::optional<::std::string> const filteredMessage, @@ -1496,21 +1496,21 @@ class Player : public ::Mob { MCAPI bool $canStartSleepInBed(); - MCAPI void $sendInventory(bool); + MCFOLD void $sendInventory(bool); - MCAPI void $openSign(::BlockPos const&, bool); + MCFOLD void $openSign(::BlockPos const&, bool); - MCAPI void $playEmote(::std::string const&, bool const); + MCFOLD void $playEmote(::std::string const&, bool const); MCAPI bool $isSilentObserver() const; - MCAPI void $useItem(::ItemStackBase& item, ::ItemUseMethod itemUseMethod, bool consumeItem); + MCAPI void $useItem(::ItemStackBase& instance, ::ItemUseMethod itemUseMethod, bool consumeItem); - MCAPI bool $isLoading() const; + MCFOLD bool $isLoading() const; - MCAPI bool $isPlayerInitialized() const; + MCFOLD bool $isPlayerInitialized() const; - MCAPI void $stopLoading(); + MCFOLD void $stopLoading(); MCAPI float $getSpeed() const; @@ -1522,11 +1522,11 @@ class Player : public ::Mob { MCAPI bool $isImmobile() const; - MCAPI void $sendMotionPacketIfNeeded(::PlayerMovementSettings const& playerMovementSettings); + MCFOLD void $sendMotionPacketIfNeeded(::PlayerMovementSettings const& playerMovementSettings); MCAPI ::IMinecraftEventing* $getEventing() const; - MCAPI uint $getUserId() const; + MCFOLD uint $getUserId() const; MCAPI void $addExperience(int xp); @@ -1546,7 +1546,7 @@ class Player : public ::Mob { MCAPI bool $consumeTotem(); - MCAPI bool $isActorRelevant(::Actor const&); + MCFOLD bool $isActorRelevant(::Actor const&); MCAPI float $getMapDecorationRotation() const; @@ -1559,23 +1559,23 @@ class Player : public ::Mob { MCAPI void $stopSwimming(); - MCAPI void $onSuspension(); + MCFOLD void $onSuspension(); - MCAPI void $onLinkedSlotsChanged(); + MCFOLD void $onLinkedSlotsChanged(); - MCAPI bool $canBePulledIntoVehicle() const; + MCFOLD bool $canBePulledIntoVehicle() const; MCAPI void $feed(int itemId); - MCAPI void $sendNetworkPacket(::Packet& packet) const; + MCFOLD void $sendNetworkPacket(::Packet& packet) const; - MCAPI bool $canExistWhenDisallowMob() const; + MCFOLD bool $canExistWhenDisallowMob() const; MCAPI ::mce::Color $getNameTagTextColor() const; MCAPI bool $canAddPassenger(::Actor& passenger) const; - MCAPI bool $isSimulated() const; + MCFOLD bool $isSimulated() const; MCAPI ::std::string $getXuid() const; @@ -1597,7 +1597,7 @@ class Player : public ::Mob { MCAPI void $doExitWaterSplashEffect(); - MCAPI void $requestMissingSubChunk(::SubChunkPos const&); + MCFOLD void $requestMissingSubChunk(::SubChunkPos const&); MCAPI uchar $getMaxChunkBuildRadius() const; @@ -1623,7 +1623,7 @@ class Player : public ::Mob { MCAPI ::HashedString const& $getActorRendererId() const; - MCAPI void $_serverInitItemStackIds(); + MCFOLD void $_serverInitItemStackIds(); MCAPI ::std::unique_ptr<::BodyControl> $initBodyControl(); // NOLINTEND diff --git a/src/mc/world/actor/player/PlayerDeathManager.h b/src/mc/world/actor/player/PlayerDeathManager.h index c335cde721..1fe5312c11 100644 --- a/src/mc/world/actor/player/PlayerDeathManager.h +++ b/src/mc/world/actor/player/PlayerDeathManager.h @@ -64,7 +64,7 @@ class PlayerDeathManager : public ::IPlayerDeathManagerConnector { public: // virtual function thunks // NOLINTBEGIN - MCAPI ::Bedrock::PubSub::Connector& $getOnPlayerDeathConnector(); + MCFOLD ::Bedrock::PubSub::Connector& $getOnPlayerDeathConnector(); // NOLINTEND public: diff --git a/src/mc/world/actor/player/PlayerInventory.h b/src/mc/world/actor/player/PlayerInventory.h index 46e2889866..8cb17bfc64 100644 --- a/src/mc/world/actor/player/PlayerInventory.h +++ b/src/mc/world/actor/player/PlayerInventory.h @@ -80,7 +80,7 @@ class PlayerInventory : public ::ContainerSizeChangeListener, public ::Container MCAPI ::std::vector<::ItemStack> const& getComplexItems(::ContainerID containerId) const; - MCAPI ::Container& getContainer(); + MCFOLD ::Container& getContainer(); MCAPI int getContainerSize(::ContainerID containerId) const; @@ -147,7 +147,7 @@ class PlayerInventory : public ::ContainerSizeChangeListener, public ::Container public: // virtual function thunks // NOLINTBEGIN - MCAPI void $containerSizeChanged(int size); + MCFOLD void $containerSizeChanged(int size); MCAPI void $containerContentChanged(int slot); diff --git a/src/mc/world/actor/player/PlayerItemInUse.h b/src/mc/world/actor/player/PlayerItemInUse.h index 648f1148d0..712e610b80 100644 --- a/src/mc/world/actor/player/PlayerItemInUse.h +++ b/src/mc/world/actor/player/PlayerItemInUse.h @@ -33,7 +33,7 @@ struct PlayerItemInUse { MCAPI void clearItemInUse(::EntityContext& owner); - MCAPI ::ItemStack const& getItemInUse() const; + MCFOLD ::ItemStack const& getItemInUse() const; MCAPI int getMoveToMouthDuration() const; @@ -52,6 +52,6 @@ struct PlayerItemInUse { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/world/actor/player/PlayerRespawnTelemetryData.h b/src/mc/world/actor/player/PlayerRespawnTelemetryData.h index 12e21eb1fb..65d54278c8 100644 --- a/src/mc/world/actor/player/PlayerRespawnTelemetryData.h +++ b/src/mc/world/actor/player/PlayerRespawnTelemetryData.h @@ -31,17 +31,17 @@ class PlayerRespawnTelemetryData { MCAPI void WriteEventData(::Social::Events::Event& event) const; - MCAPI void setChangedDimension(bool changed); + MCFOLD void setChangedDimension(bool changed); MCAPI void setJumpDistance(double blockDistance); - MCAPI void setLongJumpCount(uint jumps); + MCFOLD void setLongJumpCount(uint jumps); - MCAPI void setPositionSourceType(uint spawnPositionSource); + MCFOLD void setPositionSourceType(uint spawnPositionSource); MCAPI void setSearchTime(double seconds); - MCAPI void setShortJumpCount(uint jumps); + MCFOLD void setShortJumpCount(uint jumps); // NOLINTEND public: diff --git a/src/mc/world/actor/player/SerializedSkin.h b/src/mc/world/actor/player/SerializedSkin.h index d041e9ebde..9b7b1d8f4f 100644 --- a/src/mc/world/actor/player/SerializedSkin.h +++ b/src/mc/world/actor/player/SerializedSkin.h @@ -69,7 +69,7 @@ class SerializedSkin { MCAPI float getAnimationFrames(::persona::AnimatedTextureType animationType) const; - MCAPI ::std::string const& getName() const; + MCFOLD ::std::string const& getName() const; MCAPI bool isTrustedSkin() const; diff --git a/src/mc/world/actor/projectile/AbstractArrow.h b/src/mc/world/actor/projectile/AbstractArrow.h index ff91ba3462..8c3c2a1415 100644 --- a/src/mc/world/actor/projectile/AbstractArrow.h +++ b/src/mc/world/actor/projectile/AbstractArrow.h @@ -117,7 +117,7 @@ class AbstractArrow : public ::PredictableProjectile { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND public: @@ -139,7 +139,7 @@ class AbstractArrow : public ::PredictableProjectile { MCAPI void $readAdditionalSaveData(::CompoundTag const& tag, ::DataLoadHelper& dataLoadHelper); - MCAPI ::ActorUniqueID $getSourceUniqueID() const; + MCFOLD ::ActorUniqueID $getSourceUniqueID() const; // NOLINTEND public: diff --git a/src/mc/world/actor/projectile/DragonFireball.h b/src/mc/world/actor/projectile/DragonFireball.h index a87bec0cb0..e7d51d6ef9 100644 --- a/src/mc/world/actor/projectile/DragonFireball.h +++ b/src/mc/world/actor/projectile/DragonFireball.h @@ -68,9 +68,9 @@ class DragonFireball : public ::Fireball { // NOLINTBEGIN MCAPI ::ParticleType $getTrailParticle(); - MCAPI bool $shouldBurn(); + MCFOLD bool $shouldBurn(); - MCAPI bool $_hurt(::ActorDamageSource const&, float, bool, bool); + MCFOLD bool $_hurt(::ActorDamageSource const&, float, bool, bool); // NOLINTEND public: diff --git a/src/mc/world/actor/projectile/EvocationFang.h b/src/mc/world/actor/projectile/EvocationFang.h index 823c072d18..5a0996ab56 100644 --- a/src/mc/world/actor/projectile/EvocationFang.h +++ b/src/mc/world/actor/projectile/EvocationFang.h @@ -80,9 +80,9 @@ class EvocationFang : public ::Actor { // NOLINTBEGIN MCAPI void $normalTick(); - MCAPI ::ActorUniqueID $getSourceUniqueID() const; + MCFOLD ::ActorUniqueID $getSourceUniqueID() const; - MCAPI float $getShadowRadius() const; + MCFOLD float $getShadowRadius() const; // NOLINTEND public: diff --git a/src/mc/world/actor/projectile/ExperiencePotion.h b/src/mc/world/actor/projectile/ExperiencePotion.h index 1885d96313..58b3ff6655 100644 --- a/src/mc/world/actor/projectile/ExperiencePotion.h +++ b/src/mc/world/actor/projectile/ExperiencePotion.h @@ -58,9 +58,9 @@ class ExperiencePotion : public ::Throwable { public: // virtual function thunks // NOLINTBEGIN - MCAPI float $getGravity(); + MCFOLD float $getGravity(); - MCAPI float $getThrowPower(); + MCFOLD float $getThrowPower(); MCAPI float $getThrowUpAngleOffset(); // NOLINTEND diff --git a/src/mc/world/actor/projectile/Fireball.h b/src/mc/world/actor/projectile/Fireball.h index 3a484595a9..0a4d710f71 100644 --- a/src/mc/world/actor/projectile/Fireball.h +++ b/src/mc/world/actor/projectile/Fireball.h @@ -88,7 +88,7 @@ class Fireball : public ::PredictableProjectile { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND public: @@ -96,9 +96,9 @@ class Fireball : public ::PredictableProjectile { // NOLINTBEGIN MCAPI void $normalTick(); - MCAPI float $getBrightness(float a, ::IConstBlockSource const& region) const; + MCFOLD float $getBrightness(float a, ::IConstBlockSource const& region) const; - MCAPI ::ActorUniqueID $getSourceUniqueID() const; + MCFOLD ::ActorUniqueID $getSourceUniqueID() const; MCAPI void $addAdditionalSaveData(::CompoundTag& tag) const; @@ -106,9 +106,9 @@ class Fireball : public ::PredictableProjectile { MCAPI float $getInertia(); - MCAPI ::ParticleType $getTrailParticle(); + MCFOLD ::ParticleType $getTrailParticle(); - MCAPI bool $shouldBurn(); + MCFOLD bool $shouldBurn(); // NOLINTEND public: diff --git a/src/mc/world/actor/projectile/LlamaSpit.h b/src/mc/world/actor/projectile/LlamaSpit.h index de4762cbda..1213aee9ac 100644 --- a/src/mc/world/actor/projectile/LlamaSpit.h +++ b/src/mc/world/actor/projectile/LlamaSpit.h @@ -74,9 +74,9 @@ class LlamaSpit : public ::PredictableProjectile { // NOLINTBEGIN MCAPI void $normalTick(); - MCAPI float $getBrightness(float a, ::IConstBlockSource const& region) const; + MCFOLD float $getBrightness(float a, ::IConstBlockSource const& region) const; - MCAPI ::ActorUniqueID $getSourceUniqueID() const; + MCFOLD ::ActorUniqueID $getSourceUniqueID() const; // NOLINTEND public: diff --git a/src/mc/world/actor/projectile/PredictableProjectile.h b/src/mc/world/actor/projectile/PredictableProjectile.h index 6fc81e09f5..41b193ed1d 100644 --- a/src/mc/world/actor/projectile/PredictableProjectile.h +++ b/src/mc/world/actor/projectile/PredictableProjectile.h @@ -46,7 +46,7 @@ class PredictableProjectile : public ::Actor { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND public: diff --git a/src/mc/world/actor/projectile/ProjectileFactory.h b/src/mc/world/actor/projectile/ProjectileFactory.h index 7e7d30fc6a..f4959480f5 100644 --- a/src/mc/world/actor/projectile/ProjectileFactory.h +++ b/src/mc/world/actor/projectile/ProjectileFactory.h @@ -64,6 +64,6 @@ class ProjectileFactory { public: // constructor thunks // NOLINTBEGIN - MCAPI void* $ctor(::Level& level); + MCFOLD void* $ctor(::Level& level); // NOLINTEND }; diff --git a/src/mc/world/actor/projectile/ShulkerBullet.h b/src/mc/world/actor/projectile/ShulkerBullet.h index 6a2c236250..145917bb7b 100644 --- a/src/mc/world/actor/projectile/ShulkerBullet.h +++ b/src/mc/world/actor/projectile/ShulkerBullet.h @@ -88,13 +88,13 @@ class ShulkerBullet : public ::PredictableProjectile { MCAPI void $normalTick(); - MCAPI bool $isOnFire() const; + MCFOLD bool $isOnFire() const; - MCAPI ::ActorUniqueID $getSourceUniqueID() const; + MCFOLD ::ActorUniqueID $getSourceUniqueID() const; - MCAPI void $addAdditionalSaveData(::CompoundTag& tag) const; + MCFOLD void $addAdditionalSaveData(::CompoundTag& tag) const; - MCAPI void $readAdditionalSaveData(::CompoundTag const& tag, ::DataLoadHelper& dataLoadHelper); + MCFOLD void $readAdditionalSaveData(::CompoundTag const& tag, ::DataLoadHelper& dataLoadHelper); // NOLINTEND public: diff --git a/src/mc/world/actor/projectile/SmallFireball.h b/src/mc/world/actor/projectile/SmallFireball.h index 1401d20cbc..16f97adaba 100644 --- a/src/mc/world/actor/projectile/SmallFireball.h +++ b/src/mc/world/actor/projectile/SmallFireball.h @@ -53,7 +53,7 @@ class SmallFireball : public ::Fireball { public: // virtual function thunks // NOLINTBEGIN - MCAPI bool $_hurt(::ActorDamageSource const&, float, bool, bool); + MCFOLD bool $_hurt(::ActorDamageSource const&, float, bool, bool); // NOLINTEND public: diff --git a/src/mc/world/actor/projectile/Snowball.h b/src/mc/world/actor/projectile/Snowball.h index 264b88867a..7f5148bff0 100644 --- a/src/mc/world/actor/projectile/Snowball.h +++ b/src/mc/world/actor/projectile/Snowball.h @@ -38,7 +38,7 @@ class Snowball : public ::Throwable { public: // constructor thunks // NOLINTBEGIN - MCAPI void* $ctor( + MCFOLD void* $ctor( ::ActorDefinitionGroup* definitions, ::ActorDefinitionIdentifier const& definitionName, ::EntityContext& entityContext @@ -54,7 +54,7 @@ class Snowball : public ::Throwable { public: // virtual function thunks // NOLINTBEGIN - MCAPI void $reloadHardcoded(::ActorInitializationMethod method, ::VariantParameterList const& params); + MCFOLD void $reloadHardcoded(::ActorInitializationMethod method, ::VariantParameterList const& params); // NOLINTEND public: diff --git a/src/mc/world/actor/projectile/Throwable.h b/src/mc/world/actor/projectile/Throwable.h index a86cc99004..fc064dbe6f 100644 --- a/src/mc/world/actor/projectile/Throwable.h +++ b/src/mc/world/actor/projectile/Throwable.h @@ -102,7 +102,7 @@ class Throwable : public ::PredictableProjectile { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND public: @@ -120,7 +120,7 @@ class Throwable : public ::PredictableProjectile { MCAPI void $readAdditionalSaveData(::CompoundTag const& tag, ::DataLoadHelper& dataLoadHelper); - MCAPI float $getThrowUpAngleOffset(); + MCFOLD float $getThrowUpAngleOffset(); MCAPI float $getGravity(); // NOLINTEND diff --git a/src/mc/world/actor/projectile/ThrownEgg.h b/src/mc/world/actor/projectile/ThrownEgg.h index 757ca8613a..9537196e95 100644 --- a/src/mc/world/actor/projectile/ThrownEgg.h +++ b/src/mc/world/actor/projectile/ThrownEgg.h @@ -38,7 +38,7 @@ class ThrownEgg : public ::Throwable { public: // constructor thunks // NOLINTBEGIN - MCAPI void* $ctor( + MCFOLD void* $ctor( ::ActorDefinitionGroup* definitions, ::ActorDefinitionIdentifier const& definitionName, ::EntityContext& entityContext @@ -54,7 +54,7 @@ class ThrownEgg : public ::Throwable { public: // virtual function thunks // NOLINTBEGIN - MCAPI void $reloadHardcoded(::ActorInitializationMethod method, ::VariantParameterList const& params); + MCFOLD void $reloadHardcoded(::ActorInitializationMethod method, ::VariantParameterList const& params); // NOLINTEND public: diff --git a/src/mc/world/actor/projectile/ThrownEnderpearl.h b/src/mc/world/actor/projectile/ThrownEnderpearl.h index 3dffd3191a..d55a5ed01b 100644 --- a/src/mc/world/actor/projectile/ThrownEnderpearl.h +++ b/src/mc/world/actor/projectile/ThrownEnderpearl.h @@ -38,7 +38,7 @@ class ThrownEnderpearl : public ::Throwable { public: // constructor thunks // NOLINTBEGIN - MCAPI void* $ctor( + MCFOLD void* $ctor( ::ActorDefinitionGroup* definitions, ::ActorDefinitionIdentifier const& definitionName, ::EntityContext& entityContext @@ -54,7 +54,7 @@ class ThrownEnderpearl : public ::Throwable { public: // virtual function thunks // NOLINTBEGIN - MCAPI void $reloadHardcoded(::ActorInitializationMethod method, ::VariantParameterList const& params); + MCFOLD void $reloadHardcoded(::ActorInitializationMethod method, ::VariantParameterList const& params); // NOLINTEND public: diff --git a/src/mc/world/actor/projectile/ThrownIceBomb.h b/src/mc/world/actor/projectile/ThrownIceBomb.h index c73d06d31b..77104c4230 100644 --- a/src/mc/world/actor/projectile/ThrownIceBomb.h +++ b/src/mc/world/actor/projectile/ThrownIceBomb.h @@ -38,7 +38,7 @@ class ThrownIceBomb : public ::Throwable { public: // constructor thunks // NOLINTBEGIN - MCAPI void* $ctor( + MCFOLD void* $ctor( ::ActorDefinitionGroup* definitions, ::ActorDefinitionIdentifier const& definitionName, ::EntityContext& entityContext @@ -54,7 +54,7 @@ class ThrownIceBomb : public ::Throwable { public: // virtual function thunks // NOLINTBEGIN - MCAPI void $reloadHardcoded(::ActorInitializationMethod method, ::VariantParameterList const& params); + MCFOLD void $reloadHardcoded(::ActorInitializationMethod method, ::VariantParameterList const& params); // NOLINTEND public: diff --git a/src/mc/world/actor/projectile/WitherSkull.h b/src/mc/world/actor/projectile/WitherSkull.h index dca6fbaa31..e1d3b45aa9 100644 --- a/src/mc/world/actor/projectile/WitherSkull.h +++ b/src/mc/world/actor/projectile/WitherSkull.h @@ -86,9 +86,9 @@ class WitherSkull : public ::Fireball { // NOLINTBEGIN MCAPI void $initializeComponents(::ActorInitializationMethod method, ::VariantParameterList const& params); - MCAPI bool $shouldBurn(); + MCFOLD bool $shouldBurn(); - MCAPI bool $isOnFire() const; + MCFOLD bool $isOnFire() const; MCAPI bool $canDestroyBlock(::Block const& block) const; diff --git a/src/mc/world/actor/provider/ActorCollision.h b/src/mc/world/actor/provider/ActorCollision.h index 9e5889fe2e..48ed1cf400 100644 --- a/src/mc/world/actor/provider/ActorCollision.h +++ b/src/mc/world/actor/provider/ActorCollision.h @@ -30,11 +30,11 @@ MCAPI ::ActorUniqueID getPushedByID(::EntityContext const& provider); MCAPI ::std::vector<::AABB>& getSubAABBs(::EntityContext& provider); -MCAPI bool hasCollision(::EntityContext const& provider); +MCFOLD bool hasCollision(::EntityContext const& provider); -MCAPI bool hasHorizontalCollision(::EntityContext const& provider); +MCFOLD bool hasHorizontalCollision(::EntityContext const& provider); -MCAPI bool hasVerticalCollision(::EntityContext const& provider); +MCFOLD bool hasVerticalCollision(::EntityContext const& provider); MCAPI void initializeActor(::EntityContext& provider); @@ -44,7 +44,7 @@ MCAPI void initializePlayer(::EntityContext& provider); MCAPI bool isKnockedBackOnDeath(::EntityContext const& provider); -MCAPI bool isOnGround(::EntityContext const& provider); +MCFOLD bool isOnGround(::EntityContext const& provider); MCAPI bool isPickable(::EntityContext const& provider); @@ -84,7 +84,7 @@ MCAPI void setWasOnGround(::EntityContext& provider, bool value); MCAPI bool usesOneWayCollision(::EntityContext const& provider); -MCAPI bool wasOnGround(::EntityContext const& provider); +MCFOLD bool wasOnGround(::EntityContext const& provider); MCAPI bool wasPenetratingLastFrame(::EntityContext const& provider); // NOLINTEND diff --git a/src/mc/world/actor/provider/ActorEnvironment.h b/src/mc/world/actor/provider/ActorEnvironment.h index 8d8f13c6db..e14eed1293 100644 --- a/src/mc/world/actor/provider/ActorEnvironment.h +++ b/src/mc/world/actor/provider/ActorEnvironment.h @@ -14,7 +14,7 @@ MCAPI bool getHeadInWater(::EntityContext const& provider); MCAPI bool getIsInLava(::EntityContext const& provider); -MCAPI bool getIsInWater(::EntityContext const& provider); +MCFOLD bool getIsInWater(::EntityContext const& provider); MCAPI void setHeadInWater(::EntityContext& provider, bool value); diff --git a/src/mc/world/actor/provider/ActorEquipment.h b/src/mc/world/actor/provider/ActorEquipment.h index fc171e3336..c67a36cea2 100644 --- a/src/mc/world/actor/provider/ActorEquipment.h +++ b/src/mc/world/actor/provider/ActorEquipment.h @@ -15,13 +15,13 @@ namespace ActorEquipment { // NOLINTBEGIN MCAPI ::std::vector<::ItemStack const*> getAllArmor(::EntityContext const& provider); -MCAPI ::SimpleContainer const& getArmorContainer(::EntityContext const& provider); +MCFOLD ::SimpleContainer const& getArmorContainer(::EntityContext const& provider); MCAPI ::SimpleContainer& getArmorContainer(::EntityContext&); MCAPI ::SimpleContainer const& getHandContainer(::EntityContext const&); -MCAPI ::SimpleContainer& getHandContainer(::EntityContext& provider); +MCFOLD ::SimpleContainer& getHandContainer(::EntityContext& provider); MCAPI void initializeActor(::EntityContext& provider); diff --git a/src/mc/world/actor/provider/ActorMovement.h b/src/mc/world/actor/provider/ActorMovement.h index b7ec86e425..7ff8214aea 100644 --- a/src/mc/world/actor/provider/ActorMovement.h +++ b/src/mc/world/actor/provider/ActorMovement.h @@ -22,7 +22,7 @@ MCAPI void setHasTeleported(::EntityContext& entity, bool newValue); MCAPI void setIsImmobile(::EntityContext& entity, bool newValue); -MCAPI void setIsJumping(::EntityContext& entity, bool newValue); +MCFOLD void setIsJumping(::EntityContext& entity, bool newValue); // NOLINTEND } // namespace ActorMovement diff --git a/src/mc/world/actor/provider/HorseMovement.h b/src/mc/world/actor/provider/HorseMovement.h index 47d4528c00..a3581697a4 100644 --- a/src/mc/world/actor/provider/HorseMovement.h +++ b/src/mc/world/actor/provider/HorseMovement.h @@ -15,11 +15,11 @@ MCAPI bool allowStandSliding(::EntityContext const& provider); MCAPI void initializeHorse(::EntityContext& provider); -MCAPI void resetStandCounter(::HorseStandCounterComponent& horseStandCounter); +MCFOLD void resetStandCounter(::HorseStandCounterComponent& horseStandCounter); MCAPI void setAllowStandSliding(::EntityContext& provider, bool value); -MCAPI void startStandCounter(::HorseStandCounterComponent& horseStandCounter); +MCFOLD void startStandCounter(::HorseStandCounterComponent& horseStandCounter); MCAPI bool tickStandCounter(::HorseStandCounterComponent& horseStandCounter, int maxValue); // NOLINTEND diff --git a/src/mc/world/actor/provider/MobJump.h b/src/mc/world/actor/provider/MobJump.h index 623dd61362..26f0576183 100644 --- a/src/mc/world/actor/provider/MobJump.h +++ b/src/mc/world/actor/provider/MobJump.h @@ -20,7 +20,7 @@ MCAPI void setJumpPendingScale(::EntityContext& provider, float jumpPendingScale MCAPI void setJumpVelRedux(::EntityContext& provider, bool jumpStartVelRedux); -MCAPI void setJumping(::EntityContext& provider, bool jumping); +MCFOLD void setJumping(::EntityContext& provider, bool jumping); MCAPI void setNoJumpDelay(::EntityContext& provider, int noJumpDelay); // NOLINTEND diff --git a/src/mc/world/actor/provider/PlayerMovement.h b/src/mc/world/actor/provider/PlayerMovement.h index e9fa251b31..647e981c9c 100644 --- a/src/mc/world/actor/provider/PlayerMovement.h +++ b/src/mc/world/actor/provider/PlayerMovement.h @@ -49,7 +49,7 @@ MCAPI ::PlayerPositionModeComponent::PositionMode getPositionMode(::EntityContex MCAPI void initializePlayer(::EntityContext& provider); -MCAPI bool isGamepadOrMotionController(::PlayerInputModeComponent const& playerInputModeComponent); +MCFOLD bool isGamepadOrMotionController(::PlayerInputModeComponent const& playerInputModeComponent); MCAPI bool isHoloRealityMode(::PlayerInputModeComponent const& playerInputModeComponent); diff --git a/src/mc/world/actor/provider/SynchedActorDataAccess.h b/src/mc/world/actor/provider/SynchedActorDataAccess.h index 1f6ae2e54c..ddf507f0d1 100644 --- a/src/mc/world/actor/provider/SynchedActorDataAccess.h +++ b/src/mc/world/actor/provider/SynchedActorDataAccess.h @@ -85,13 +85,13 @@ MCAPI void setHorseType(::EntityContext& entity, int type); MCAPI void setJumpDuration(::EntityContext& entity, schar jumpDuration); -MCAPI void setJumpDuration( +MCFOLD void setJumpDuration( ::ActorDataJumpDurationComponent& jumpDurationComponent, ::ActorDataDirtyFlagsComponent& dirtyFlagsComponent, schar jumpDuration ); -MCAPI void setSeatOffset( +MCFOLD void setSeatOffset( ::ActorDataSeatOffsetComponent& seatOffsetComponent, ::ActorDataDirtyFlagsComponent& dirtyFlagsComponent, ::Vec3 const& seatOffset @@ -103,13 +103,13 @@ MCAPI void setValue( ::std::array const& values ); -MCAPI void setValue( +MCFOLD void setValue( ::ActorDataJumpDurationComponent& jumpDurationComponent, ::ActorDataDirtyFlagsComponent& dirtyFlagsComponent, schar jumpDuration ); -MCAPI void setValue( +MCFOLD void setValue( ::ActorDataSeatOffsetComponent& seatOffsetComponent, ::ActorDataDirtyFlagsComponent& dirtyFlagsComponent, ::Vec3 const& seatOffset diff --git a/src/mc/world/actor/selectors/ActorSelectorArgs.h b/src/mc/world/actor/selectors/ActorSelectorArgs.h index 7fb9626845..0d75b8a375 100644 --- a/src/mc/world/actor/selectors/ActorSelectorArgs.h +++ b/src/mc/world/actor/selectors/ActorSelectorArgs.h @@ -2,31 +2,47 @@ #include "mc/_HeaderOutputPredefine.h" +// auto generated inclusion list +#include "mc/world/actor/selectors/ActorSelectorType.h" +#include "mc/world/actor/selectors/InvertableFilter.h" +#include "mc/world/level/GameType.h" + +// auto generated forward declare list +// clang-format off +class CommandIntegerRange; +class CommandPosition; +class Vec3; +struct CodeBuilderSelectorFilter; +struct HasItemFilter; +struct HasPermissionFilter; +struct HasPropertyFilter; +// clang-format on + struct ActorSelectorArgs { public: // member variables // NOLINTBEGIN - ::ll::UntypedStorage<4, 4> mUnkadcd83; - ::ll::UntypedStorage<8, 40> mUnkc61bda; - ::ll::UntypedStorage<8, 24> mUnk7a55bf; - ::ll::UntypedStorage<8, 24> mUnk90219e; - ::ll::UntypedStorage<8, 24> mUnkd51d33; - ::ll::UntypedStorage<8, 24> mUnkd51eca; - ::ll::UntypedStorage<8, 24> mUnk87e3db; - ::ll::UntypedStorage<4, 8> mUnk3d0fb4; - ::ll::UntypedStorage<4, 8> mUnk46f764; - ::ll::UntypedStorage<4, 8> mUnkd7828b; - ::ll::UntypedStorage<4, 20> mUnkf23d86; - ::ll::UntypedStorage<4, 16> mUnk1ec315; - ::ll::UntypedStorage<4, 12> mUnk6c7b4e; - ::ll::UntypedStorage<4, 12> mUnka9fd47; - ::ll::UntypedStorage<4, 12> mUnk8b12bd; - ::ll::UntypedStorage<1, 2> mUnkd7f31e; - ::ll::UntypedStorage<8, 24> mUnk57203b; - ::ll::UntypedStorage<8, 24> mUnk7a0f8b; - ::ll::UntypedStorage<8, 24> mUnk5f2535; - ::ll::UntypedStorage<8, 24> mUnkfb381e; - ::ll::UntypedStorage<8, 24> mUnk75f067; + ::ll::TypedStorage<4, 4, ::ActorSelectorType> mSelectionType; + ::ll::TypedStorage<8, 40, ::std::optional<::std::string>> mExplicitId; + ::ll::TypedStorage<8, 24, ::std::vector<::InvertableFilter<::std::string>>> mTypeFilters; + ::ll::TypedStorage<8, 24, ::std::vector<::InvertableFilter<::std::string>>> mTagFilters; + ::ll::TypedStorage<8, 24, ::std::vector<::InvertableFilter<::std::string>>> mNameFilters; + ::ll::TypedStorage<8, 24, ::std::vector<::InvertableFilter<::std::string>>> mFamilyFilters; + ::ll::TypedStorage<8, 24, ::std::vector<::InvertableFilter<::GameType>>> mGameModeFilters; + ::ll::TypedStorage<4, 8, ::std::optional> mCount; + ::ll::TypedStorage<4, 8, ::std::optional> mRadiusMax; + ::ll::TypedStorage<4, 8, ::std::optional> mRadiusMin; + ::ll::TypedStorage<4, 20, ::std::optional<::CommandPosition>> mPosition; + ::ll::TypedStorage<4, 16, ::std::optional<::Vec3>> mDeltas; + ::ll::TypedStorage<4, 12, ::std::optional<::std::pair>> mXRotation; + ::ll::TypedStorage<4, 12, ::std::optional<::std::pair>> mYRotation; + ::ll::TypedStorage<4, 12, ::std::optional<::std::pair>> mLevel; + ::ll::TypedStorage<1, 2, ::std::optional> mForceDimensionFiltering; + ::ll::TypedStorage<8, 24, ::std::vector<::std::pair<::std::string, ::CommandIntegerRange>>> mScoreFilters; + ::ll::TypedStorage<8, 24, ::std::vector<::HasItemFilter>> mHasItemFilters; + ::ll::TypedStorage<8, 24, ::std::vector<::HasPermissionFilter>> mHasPermissionFilters; + ::ll::TypedStorage<8, 24, ::std::vector<::HasPropertyFilter>> mHasPropertyFilters; + ::ll::TypedStorage<8, 24, ::std::vector<::CodeBuilderSelectorFilter>> mCodeBuilderFilters; // NOLINTEND public: diff --git a/src/mc/world/actor/selectors/CodeBuilderSelectorFilter.h b/src/mc/world/actor/selectors/CodeBuilderSelectorFilter.h index 7fa300af21..dc5abc9170 100644 --- a/src/mc/world/actor/selectors/CodeBuilderSelectorFilter.h +++ b/src/mc/world/actor/selectors/CodeBuilderSelectorFilter.h @@ -25,6 +25,6 @@ struct CodeBuilderSelectorFilter { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/world/actor/state/PropertyGroupManager.h b/src/mc/world/actor/state/PropertyGroupManager.h index c2e37c38e2..c17a8e6d8f 100644 --- a/src/mc/world/actor/state/PropertyGroupManager.h +++ b/src/mc/world/actor/state/PropertyGroupManager.h @@ -29,7 +29,7 @@ class PropertyGroupManager { MCAPI ::CompoundTag getActorPropertyDataTag(::HashedString const& actorCanonicalName) const; - MCAPI ::std::unordered_map<::HashedString, ::std::shared_ptr<::PropertyGroup const>> const& + MCFOLD ::std::unordered_map<::HashedString, ::std::shared_ptr<::PropertyGroup const>> const& getAllPropertyGroups() const; MCAPI void registerGroup(::HashedString const& id, ::std::shared_ptr<::PropertyGroup const> group); diff --git a/src/mc/world/actor/state/PropertyMetadata.h b/src/mc/world/actor/state/PropertyMetadata.h index 57ea6a5285..cb69175273 100644 --- a/src/mc/world/actor/state/PropertyMetadata.h +++ b/src/mc/world/actor/state/PropertyMetadata.h @@ -39,6 +39,6 @@ class PropertyMetadata { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/world/actor/state/PropertySyncData.h b/src/mc/world/actor/state/PropertySyncData.h index d1525c6b3e..b6c4ca097d 100644 --- a/src/mc/world/actor/state/PropertySyncData.h +++ b/src/mc/world/actor/state/PropertySyncData.h @@ -59,6 +59,6 @@ struct PropertySyncData { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/world/attribute/Amplifier.h b/src/mc/world/attribute/Amplifier.h index 84c713de8d..1ad18eb3f6 100644 --- a/src/mc/world/attribute/Amplifier.h +++ b/src/mc/world/attribute/Amplifier.h @@ -28,11 +28,11 @@ class Amplifier { public: // virtual function thunks // NOLINTBEGIN - MCAPI float $getAmount(int amplification, float scale) const; + MCFOLD float $getAmount(int amplification, float scale) const; - MCAPI bool $shouldBuff(int remainingDuration, int amplification) const; + MCFOLD bool $shouldBuff(int remainingDuration, int amplification) const; - MCAPI int $getTickInterval(int amplification) const; + MCFOLD int $getTickInterval(int amplification) const; // NOLINTEND public: diff --git a/src/mc/world/attribute/Attribute.h b/src/mc/world/attribute/Attribute.h index fd474fe5f9..c5d7ebe17e 100644 --- a/src/mc/world/attribute/Attribute.h +++ b/src/mc/world/attribute/Attribute.h @@ -31,9 +31,9 @@ class Attribute { // NOLINTBEGIN MCAPI Attribute(::HashedString const& name, ::RedefinitionMode redefMode, bool isSyncable); - MCAPI ::HashedString const& getName() const; + MCFOLD ::HashedString const& getName() const; - MCAPI ::RedefinitionMode getRedefinitionMode() const; + MCFOLD ::RedefinitionMode getRedefinitionMode() const; // NOLINTEND public: diff --git a/src/mc/world/attribute/AttributeBuff.h b/src/mc/world/attribute/AttributeBuff.h index cdecf41ec6..ba9a615cf9 100644 --- a/src/mc/world/attribute/AttributeBuff.h +++ b/src/mc/world/attribute/AttributeBuff.h @@ -57,23 +57,23 @@ class AttributeBuff { MCAPI float getAmount() const; - MCAPI uint64 getId() const; + MCFOLD uint64 getId() const; - MCAPI int getOperand() const; + MCFOLD int getOperand() const; - MCAPI ::AttributeBuffType getType() const; + MCFOLD ::AttributeBuffType getType() const; MCAPI ::AttributeBuff& operator=(::AttributeBuff const&); MCAPI void setAmplificationAmount(int amplification, float scale); - MCAPI void setId(uint64 val); + MCFOLD void setId(uint64 val); - MCAPI void setOperand(int val); + MCFOLD void setOperand(int val); MCAPI void setSource(::Actor* source); - MCAPI void setValueAmplifier(::std::shared_ptr<::Amplifier> amplifier); + MCFOLD void setValueAmplifier(::std::shared_ptr<::Amplifier> amplifier); // NOLINTEND public: diff --git a/src/mc/world/attribute/AttributeInstance.h b/src/mc/world/attribute/AttributeInstance.h index 0c87d7871f..e5dfaf0e8b 100644 --- a/src/mc/world/attribute/AttributeInstance.h +++ b/src/mc/world/attribute/AttributeInstance.h @@ -71,7 +71,7 @@ class AttributeInstance { MCAPI void addModifier(::AttributeModifier const& modifier); - MCAPI ::Attribute const* getAttribute() const; + MCFOLD ::Attribute const* getAttribute() const; MCAPI float getCurrentValue() const; @@ -99,7 +99,7 @@ class AttributeInstance { MCAPI void inheritFrom(::AttributeInstance const& other, ::BaseAttributeMap* attributeMap); - MCAPI bool isValid() const; + MCFOLD bool isValid() const; MCAPI void recalculateModifiers(); diff --git a/src/mc/world/attribute/AttributeInstanceDelegate.h b/src/mc/world/attribute/AttributeInstanceDelegate.h index 4a26b872f8..358f846ba2 100644 --- a/src/mc/world/attribute/AttributeInstanceDelegate.h +++ b/src/mc/world/attribute/AttributeInstanceDelegate.h @@ -60,11 +60,11 @@ class AttributeInstanceDelegate { public: // virtual function thunks // NOLINTBEGIN - MCAPI void $tick(); + MCFOLD void $tick(); - MCAPI void $notify(int64); + MCFOLD void $notify(int64); - MCAPI bool $willChange(float, float, ::AttributeBuff const&); + MCFOLD bool $willChange(float, float, ::AttributeBuff const&); MCAPI float $change(float, float newValue, ::AttributeBuff const&); diff --git a/src/mc/world/attribute/AttributeModifier.h b/src/mc/world/attribute/AttributeModifier.h index bd55652751..e2b9dee2d3 100644 --- a/src/mc/world/attribute/AttributeModifier.h +++ b/src/mc/world/attribute/AttributeModifier.h @@ -56,15 +56,15 @@ class AttributeModifier { bool serializable ); - MCAPI float getAmount() const; + MCFOLD float getAmount() const; - MCAPI ::mce::UUID const& getId() const; + MCFOLD ::mce::UUID const& getId() const; - MCAPI ::std::string const& getName() const; + MCFOLD ::std::string const& getName() const; - MCAPI int getOperand() const; + MCFOLD int getOperand() const; - MCAPI int getOperation() const; + MCFOLD int getOperation() const; MCAPI ::AttributeModifier& operator=(::AttributeModifier const& rhs); // NOLINTEND @@ -102,7 +102,7 @@ class AttributeModifier { public: // virtual function thunks // NOLINTBEGIN - MCAPI bool $isInstantaneous() const; + MCFOLD bool $isInstantaneous() const; // NOLINTEND public: diff --git a/src/mc/world/attribute/BaseAttributeMap.h b/src/mc/world/attribute/BaseAttributeMap.h index 27165ca632..0995e4d024 100644 --- a/src/mc/world/attribute/BaseAttributeMap.h +++ b/src/mc/world/attribute/BaseAttributeMap.h @@ -28,17 +28,17 @@ class BaseAttributeMap { // NOLINTBEGIN MCAPI BaseAttributeMap(); - MCAPI ::std::_List_iterator< + MCFOLD ::std::_List_iterator< ::std::_List_val<::std::_List_simple_types<::std::pair>>> begin(); MCAPI void clearDirtyAttributes(); - MCAPI ::std::_List_iterator< + MCFOLD ::std::_List_iterator< ::std::_List_val<::std::_List_simple_types<::std::pair>>> end(); - MCAPI ::std::vector<::AttributeInstanceHandle> const& getDirtyAttributes() const; + MCFOLD ::std::vector<::AttributeInstanceHandle> const& getDirtyAttributes() const; MCAPI ::AttributeInstance const& getInstance(::Attribute const& attribute) const; @@ -80,7 +80,7 @@ class BaseAttributeMap { public: // constructor thunks // NOLINTBEGIN - MCAPI void* $ctor(); + MCFOLD void* $ctor(); // NOLINTEND public: diff --git a/src/mc/world/attribute/InstantaneousAttributeBuff.h b/src/mc/world/attribute/InstantaneousAttributeBuff.h index 8a87226141..1ea5416092 100644 --- a/src/mc/world/attribute/InstantaneousAttributeBuff.h +++ b/src/mc/world/attribute/InstantaneousAttributeBuff.h @@ -50,9 +50,9 @@ class InstantaneousAttributeBuff : public ::AttributeBuff { public: // virtual function thunks // NOLINTBEGIN - MCAPI bool $isInstantaneous() const; + MCFOLD bool $isInstantaneous() const; - MCAPI bool $isSerializable() const; + MCFOLD bool $isSerializable() const; // NOLINTEND public: diff --git a/src/mc/world/attribute/TemporalAttributeBuff.h b/src/mc/world/attribute/TemporalAttributeBuff.h index 2030394bec..fd804c0021 100644 --- a/src/mc/world/attribute/TemporalAttributeBuff.h +++ b/src/mc/world/attribute/TemporalAttributeBuff.h @@ -62,7 +62,7 @@ class TemporalAttributeBuff : public ::AttributeBuff { ::std::string const& name ); - MCAPI float getBaseAmount() const; + MCFOLD float getBaseAmount() const; // NOLINTEND public: @@ -87,9 +87,9 @@ class TemporalAttributeBuff : public ::AttributeBuff { MCAPI bool $isComplete() const; - MCAPI bool $isInstantaneous() const; + MCFOLD bool $isInstantaneous() const; - MCAPI bool $isSerializable() const; + MCFOLD bool $isSerializable() const; MCAPI void $setDurationAmplifier(::std::shared_ptr<::Amplifier> amplifier); // NOLINTEND diff --git a/src/mc/world/containers/ContainerRegistry.h b/src/mc/world/containers/ContainerRegistry.h index dd60cb046a..e9abd088da 100644 --- a/src/mc/world/containers/ContainerRegistry.h +++ b/src/mc/world/containers/ContainerRegistry.h @@ -143,7 +143,7 @@ class ContainerRegistry : public ::IDynamicContainerSerialization, MCAPI void $setExpired(::std::vector<::FullContainerName> const& removedContainers); - MCAPI uint64 $getSize(); + MCFOLD uint64 $getSize(); // NOLINTEND public: diff --git a/src/mc/world/containers/DynamicTrackedContainer.h b/src/mc/world/containers/DynamicTrackedContainer.h index 2d893bada3..d371ad8362 100644 --- a/src/mc/world/containers/DynamicTrackedContainer.h +++ b/src/mc/world/containers/DynamicTrackedContainer.h @@ -26,6 +26,6 @@ struct DynamicTrackedContainer { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/world/containers/FullContainerName.h b/src/mc/world/containers/FullContainerName.h index b21a85b68f..70d7a3ec17 100644 --- a/src/mc/world/containers/FullContainerName.h +++ b/src/mc/world/containers/FullContainerName.h @@ -2,20 +2,17 @@ #include "mc/_HeaderOutputPredefine.h" +// auto generated inclusion list +#include "mc/world/containers/ContainerEnumName.h" + struct FullContainerName { public: // member variables // NOLINTBEGIN - ::ll::UntypedStorage<1, 1> mUnk6b9174; - ::ll::UntypedStorage<4, 8> mUnk5245b5; + ::ll::TypedStorage<1, 1, ::ContainerEnumName> mName; + ::ll::TypedStorage<4, 8, ::std::optional> mDynamicId; // NOLINTEND -public: - // prevent constructor by default - FullContainerName& operator=(FullContainerName const&); - FullContainerName(FullContainerName const&); - FullContainerName(); - public: // member functions // NOLINTBEGIN diff --git a/src/mc/world/containers/SlotData.h b/src/mc/world/containers/SlotData.h index f42c1aa64b..481876f912 100644 --- a/src/mc/world/containers/SlotData.h +++ b/src/mc/world/containers/SlotData.h @@ -32,12 +32,12 @@ struct SlotData { public: // constructor thunks // NOLINTBEGIN - MCAPI void* $ctor(); + MCFOLD void* $ctor(); // NOLINTEND public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/world/containers/managers/controllers/BlockReducer.h b/src/mc/world/containers/managers/controllers/BlockReducer.h index 0f93cebc55..7b384ac8c1 100644 --- a/src/mc/world/containers/managers/controllers/BlockReducer.h +++ b/src/mc/world/containers/managers/controllers/BlockReducer.h @@ -60,7 +60,7 @@ class BlockReducer { MCAPI ::std::vector<::ItemStack> const* getReduction(::ItemStackBase const& block) const; - MCAPI ::std::unordered_map> const& getReductionMap() const; + MCFOLD ::std::unordered_map> const& getReductionMap() const; MCAPI ::ItemDescriptor tryGetItemDescriptorFromKey(int blockKey) const; // NOLINTEND diff --git a/src/mc/world/containers/managers/controllers/ChemistryIngredient.h b/src/mc/world/containers/managers/controllers/ChemistryIngredient.h index fdb1b2cceb..1a5e644794 100644 --- a/src/mc/world/containers/managers/controllers/ChemistryIngredient.h +++ b/src/mc/world/containers/managers/controllers/ChemistryIngredient.h @@ -24,6 +24,6 @@ struct ChemistryIngredient { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/world/containers/managers/models/AnvilContainerManagerModel.h b/src/mc/world/containers/managers/models/AnvilContainerManagerModel.h index e13d51e3c4..84fd3b5cfb 100644 --- a/src/mc/world/containers/managers/models/AnvilContainerManagerModel.h +++ b/src/mc/world/containers/managers/models/AnvilContainerManagerModel.h @@ -92,11 +92,11 @@ class AnvilContainerManagerModel : public ::ContainerManagerModel { MCAPI ::ItemStack const& $getSlot(int slot) const; - MCAPI void $setData(int id, int value); + MCFOLD void $setData(int id, int value); MCAPI bool $isValid(float pickRange); - MCAPI void $broadcastChanges(); + MCFOLD void $broadcastChanges(); MCAPI ::ContainerScreenContext $_postInit(); // NOLINTEND diff --git a/src/mc/world/containers/managers/models/CartographyContainerManagerModel.h b/src/mc/world/containers/managers/models/CartographyContainerManagerModel.h index 04f77ac3bf..ced89ba3f7 100644 --- a/src/mc/world/containers/managers/models/CartographyContainerManagerModel.h +++ b/src/mc/world/containers/managers/models/CartographyContainerManagerModel.h @@ -82,9 +82,9 @@ class CartographyContainerManagerModel : public ::ContainerManagerModel { MCAPI ::ItemStack const& $getSlot(int slot) const; - MCAPI void $setData(int id, int value); + MCFOLD void $setData(int id, int value); - MCAPI void $broadcastChanges(); + MCFOLD void $broadcastChanges(); MCAPI bool $isValid(float pickRange); diff --git a/src/mc/world/containers/managers/models/CompoundCreatorContainerManagerModel.h b/src/mc/world/containers/managers/models/CompoundCreatorContainerManagerModel.h index e5e453a1aa..b9e92c4af0 100644 --- a/src/mc/world/containers/managers/models/CompoundCreatorContainerManagerModel.h +++ b/src/mc/world/containers/managers/models/CompoundCreatorContainerManagerModel.h @@ -78,15 +78,15 @@ class CompoundCreatorContainerManagerModel : public ::ContainerManagerModel { // NOLINTBEGIN MCAPI ::std::vector<::ItemStack> $getItemCopies() const; - MCAPI void $setSlot(int slot, ::ItemStack const& item, bool fromNetwork); + MCFOLD void $setSlot(int slot, ::ItemStack const& item, bool fromNetwork); - MCAPI ::ItemStack const& $getSlot(int slot) const; + MCFOLD ::ItemStack const& $getSlot(int slot) const; - MCAPI void $setData(int id, int value); + MCFOLD void $setData(int id, int value); MCAPI bool $isValid(float pickRange); - MCAPI void $broadcastChanges(); + MCFOLD void $broadcastChanges(); MCAPI ::ContainerScreenContext $_postInit(); // NOLINTEND diff --git a/src/mc/world/containers/managers/models/ContainerManagerModel.h b/src/mc/world/containers/managers/models/ContainerManagerModel.h index 4dd3332015..2a1afaa0d0 100644 --- a/src/mc/world/containers/managers/models/ContainerManagerModel.h +++ b/src/mc/world/containers/managers/models/ContainerManagerModel.h @@ -120,7 +120,7 @@ class ContainerManagerModel : public ::IContainerManager { MCAPI void addDynamicContainer(::std::shared_ptr<::ContainerModel> model); - MCAPI ::Player& getPlayer() const; + MCFOLD ::Player& getPlayer() const; MCAPI void postInit(); // NOLINTEND @@ -146,13 +146,13 @@ class ContainerManagerModel : public ::IContainerManager { public: // virtual function thunks // NOLINTBEGIN - MCAPI bool $tick(); + MCFOLD bool $tick(); - MCAPI ::ContainerID $getContainerId() const; + MCFOLD ::ContainerID $getContainerId() const; - MCAPI void $setContainerId(::ContainerID id); + MCFOLD void $setContainerId(::ContainerID id); - MCAPI ::ContainerType $getContainerType() const; + MCFOLD ::ContainerType $getContainerType() const; MCAPI void $setContainerType(::ContainerType type); diff --git a/src/mc/world/containers/managers/models/DynamicContainerManager.h b/src/mc/world/containers/managers/models/DynamicContainerManager.h index 2ee38836a3..2644fb7bf8 100644 --- a/src/mc/world/containers/managers/models/DynamicContainerManager.h +++ b/src/mc/world/containers/managers/models/DynamicContainerManager.h @@ -45,13 +45,13 @@ class DynamicContainerManager { MCAPI void broadcastChanges(::PlayerContainerRefresher const& refresher); - MCAPI ::ContainerID getContainerId() const; + MCFOLD ::ContainerID getContainerId() const; - MCAPI ::FullContainerName getDynamicContainerId() const; + MCFOLD ::FullContainerName getDynamicContainerId() const; MCAPI ::std::vector<::ItemStack> const& getItems() const; - MCAPI ::ItemStack const& getStorageItemForNetworkPacket() const; + MCFOLD ::ItemStack const& getStorageItemForNetworkPacket() const; MCAPI void shareContainer(::ContainerOwner& containerOwner); diff --git a/src/mc/world/containers/managers/models/ElementConstructorContainerManagerModel.h b/src/mc/world/containers/managers/models/ElementConstructorContainerManagerModel.h index f722ab3adb..94decd4b2f 100644 --- a/src/mc/world/containers/managers/models/ElementConstructorContainerManagerModel.h +++ b/src/mc/world/containers/managers/models/ElementConstructorContainerManagerModel.h @@ -79,15 +79,15 @@ class ElementConstructorContainerManagerModel : public ::ContainerManagerModel { // NOLINTBEGIN MCAPI ::std::vector<::ItemStack> $getItemCopies() const; - MCAPI void $setSlot(int slot, ::ItemStack const& item, bool fromNetwork); + MCFOLD void $setSlot(int slot, ::ItemStack const& item, bool fromNetwork); - MCAPI ::ItemStack const& $getSlot(int slot) const; + MCFOLD ::ItemStack const& $getSlot(int slot) const; - MCAPI void $setData(int id, int value); + MCFOLD void $setData(int id, int value); MCAPI bool $isValid(float pickRange); - MCAPI void $broadcastChanges(); + MCFOLD void $broadcastChanges(); MCAPI ::ContainerScreenContext $_postInit(); // NOLINTEND diff --git a/src/mc/world/containers/managers/models/EnchantingContainerManagerModel.h b/src/mc/world/containers/managers/models/EnchantingContainerManagerModel.h index 58acdc7397..9d4c371019 100644 --- a/src/mc/world/containers/managers/models/EnchantingContainerManagerModel.h +++ b/src/mc/world/containers/managers/models/EnchantingContainerManagerModel.h @@ -64,7 +64,7 @@ class EnchantingContainerManagerModel : public ::ContainerManagerModel { // NOLINTBEGIN MCAPI EnchantingContainerManagerModel(::ContainerID containerId, ::Player& player, ::BlockPos const& blockPos); - MCAPI ::std::vector<::ItemEnchantOption> const& getEnchantOptions() const; + MCFOLD ::std::vector<::ItemEnchantOption> const& getEnchantOptions() const; MCAPI void recalculateOptions(); // NOLINTEND @@ -96,11 +96,11 @@ class EnchantingContainerManagerModel : public ::ContainerManagerModel { MCAPI ::ItemStack const& $getSlot(int slot) const; - MCAPI void $setData(int id, int value); + MCFOLD void $setData(int id, int value); MCAPI bool $isValid(float pickRange); - MCAPI void $broadcastChanges(); + MCFOLD void $broadcastChanges(); MCAPI ::ContainerScreenContext $_postInit(); // NOLINTEND diff --git a/src/mc/world/containers/managers/models/GrindstoneContainerManagerModel.h b/src/mc/world/containers/managers/models/GrindstoneContainerManagerModel.h index bdb56861ea..cb37539954 100644 --- a/src/mc/world/containers/managers/models/GrindstoneContainerManagerModel.h +++ b/src/mc/world/containers/managers/models/GrindstoneContainerManagerModel.h @@ -92,11 +92,11 @@ class GrindstoneContainerManagerModel : public ::ContainerManagerModel { MCAPI ::ItemStack const& $getSlot(int slot) const; - MCAPI void $setData(int, int); + MCFOLD void $setData(int, int); MCAPI bool $isValid(float pickRange); - MCAPI void $broadcastChanges(); + MCFOLD void $broadcastChanges(); MCAPI ::ContainerScreenContext $_postInit(); // NOLINTEND diff --git a/src/mc/world/containers/managers/models/HudContainerManagerModel.h b/src/mc/world/containers/managers/models/HudContainerManagerModel.h index a47be523b0..04ede9f279 100644 --- a/src/mc/world/containers/managers/models/HudContainerManagerModel.h +++ b/src/mc/world/containers/managers/models/HudContainerManagerModel.h @@ -75,13 +75,13 @@ class HudContainerManagerModel : public ::ContainerManagerModel { public: // virtual function thunks // NOLINTBEGIN - MCAPI ::std::vector<::ItemStack> $getItemCopies() const; + MCFOLD ::std::vector<::ItemStack> $getItemCopies() const; MCAPI void $setSlot(int slot, ::ItemStack const& item, bool); MCAPI ::ItemStack const& $getSlot(int slot) const; - MCAPI void $setData(int id, int value); + MCFOLD void $setData(int id, int value); MCAPI void $broadcastChanges(); diff --git a/src/mc/world/containers/managers/models/LabTableContainerManagerModel.h b/src/mc/world/containers/managers/models/LabTableContainerManagerModel.h index 6231b795af..d995459a2b 100644 --- a/src/mc/world/containers/managers/models/LabTableContainerManagerModel.h +++ b/src/mc/world/containers/managers/models/LabTableContainerManagerModel.h @@ -88,11 +88,11 @@ class LabTableContainerManagerModel : public ::LevelContainerManagerModel { MCAPI ::ItemStack const& $getSlot(int slot) const; - MCAPI void $setData(int id, int value); + MCFOLD void $setData(int id, int value); MCAPI bool $isValid(float pickRange); - MCAPI void $broadcastChanges(); + MCFOLD void $broadcastChanges(); MCAPI ::ContainerScreenContext $_postInit(); // NOLINTEND diff --git a/src/mc/world/containers/managers/models/LevelContainerManagerModel.h b/src/mc/world/containers/managers/models/LevelContainerManagerModel.h index e3e760446b..234414c7be 100644 --- a/src/mc/world/containers/managers/models/LevelContainerManagerModel.h +++ b/src/mc/world/containers/managers/models/LevelContainerManagerModel.h @@ -77,7 +77,7 @@ class LevelContainerManagerModel : public ::ContainerManagerModel { MCAPI ::Container* _getRawContainer(); - MCAPI ::BlockPos const& getBlockPos() const; + MCFOLD ::BlockPos const& getBlockPos() const; MCAPI ::ActorUniqueID getEntityUniqueID() const; // NOLINTEND @@ -106,7 +106,7 @@ class LevelContainerManagerModel : public ::ContainerManagerModel { MCAPI ::ItemStack const& $getSlot(int slot) const; - MCAPI void $setData(int id, int value); + MCFOLD void $setData(int id, int value); MCAPI void $broadcastChanges(); diff --git a/src/mc/world/containers/managers/models/LoomContainerManagerModel.h b/src/mc/world/containers/managers/models/LoomContainerManagerModel.h index ab6d541163..a861d05172 100644 --- a/src/mc/world/containers/managers/models/LoomContainerManagerModel.h +++ b/src/mc/world/containers/managers/models/LoomContainerManagerModel.h @@ -94,9 +94,9 @@ class LoomContainerManagerModel : public ::ContainerManagerModel { MCAPI ::ItemStack const& $getSlot(int slot) const; - MCAPI void $setData(int id, int value); + MCFOLD void $setData(int id, int value); - MCAPI void $broadcastChanges(); + MCFOLD void $broadcastChanges(); MCAPI bool $isValid(float pickRange); diff --git a/src/mc/world/containers/managers/models/MaterialReducerContainerManagerModel.h b/src/mc/world/containers/managers/models/MaterialReducerContainerManagerModel.h index 089042372d..3f35bd410b 100644 --- a/src/mc/world/containers/managers/models/MaterialReducerContainerManagerModel.h +++ b/src/mc/world/containers/managers/models/MaterialReducerContainerManagerModel.h @@ -76,17 +76,17 @@ class MaterialReducerContainerManagerModel : public ::ContainerManagerModel { public: // virtual function thunks // NOLINTBEGIN - MCAPI ::std::vector<::ItemStack> $getItemCopies() const; + MCFOLD ::std::vector<::ItemStack> $getItemCopies() const; - MCAPI void $setSlot(int slot, ::ItemStack const& item, bool fromNetwork); + MCFOLD void $setSlot(int slot, ::ItemStack const& item, bool fromNetwork); - MCAPI ::ItemStack const& $getSlot(int slot) const; + MCFOLD ::ItemStack const& $getSlot(int slot) const; - MCAPI void $setData(int id, int value); + MCFOLD void $setData(int id, int value); MCAPI bool $isValid(float pickRange); - MCAPI void $broadcastChanges(); + MCFOLD void $broadcastChanges(); MCAPI ::ContainerScreenContext $_postInit(); // NOLINTEND diff --git a/src/mc/world/containers/managers/models/SmithingTableContainerManagerModel.h b/src/mc/world/containers/managers/models/SmithingTableContainerManagerModel.h index a8197f379f..95c32963be 100644 --- a/src/mc/world/containers/managers/models/SmithingTableContainerManagerModel.h +++ b/src/mc/world/containers/managers/models/SmithingTableContainerManagerModel.h @@ -94,11 +94,11 @@ class SmithingTableContainerManagerModel : public ::ContainerManagerModel { MCAPI ::ItemStack const& $getSlot(int slot) const; - MCAPI void $setData(int, int); + MCFOLD void $setData(int, int); MCAPI bool $isValid(float pickRange); - MCAPI void $broadcastChanges(); + MCFOLD void $broadcastChanges(); MCAPI ::ContainerScreenContext $_postInit(); // NOLINTEND diff --git a/src/mc/world/containers/managers/models/StonecutterContainerManagerModel.h b/src/mc/world/containers/managers/models/StonecutterContainerManagerModel.h index 1d56457c5f..cb523f1360 100644 --- a/src/mc/world/containers/managers/models/StonecutterContainerManagerModel.h +++ b/src/mc/world/containers/managers/models/StonecutterContainerManagerModel.h @@ -82,9 +82,9 @@ class StonecutterContainerManagerModel : public ::ContainerManagerModel { MCAPI ::ItemStack const& $getSlot(int slot) const; - MCAPI void $setData(int, int); + MCFOLD void $setData(int, int); - MCAPI void $broadcastChanges(); + MCFOLD void $broadcastChanges(); MCAPI bool $isValid(float pickRange); diff --git a/src/mc/world/containers/managers/models/Trade2ContainerManagerModel.h b/src/mc/world/containers/managers/models/Trade2ContainerManagerModel.h index 0c8161f2e0..6aff803ded 100644 --- a/src/mc/world/containers/managers/models/Trade2ContainerManagerModel.h +++ b/src/mc/world/containers/managers/models/Trade2ContainerManagerModel.h @@ -91,7 +91,7 @@ class Trade2ContainerManagerModel : public ::LevelContainerManagerModel { MCAPI bool $isValid(float pickRange); - MCAPI void $broadcastChanges(); + MCFOLD void $broadcastChanges(); MCAPI ::ContainerScreenContext $_postInit(); // NOLINTEND diff --git a/src/mc/world/containers/managers/models/TradeContainerManagerModel.h b/src/mc/world/containers/managers/models/TradeContainerManagerModel.h index a32b206f5b..c13af67a7f 100644 --- a/src/mc/world/containers/managers/models/TradeContainerManagerModel.h +++ b/src/mc/world/containers/managers/models/TradeContainerManagerModel.h @@ -81,7 +81,7 @@ class TradeContainerManagerModel : public ::LevelContainerManagerModel { MCAPI bool $isValid(float pickRange); - MCAPI void $broadcastChanges(); + MCFOLD void $broadcastChanges(); MCAPI ::ContainerScreenContext $_postInit(); // NOLINTEND diff --git a/src/mc/world/containers/models/ContainerModel.h b/src/mc/world/containers/models/ContainerModel.h index 308be43557..adce216c24 100644 --- a/src/mc/world/containers/models/ContainerModel.h +++ b/src/mc/world/containers/models/ContainerModel.h @@ -166,7 +166,7 @@ class ContainerModel : public ::ContainerContentChangeListener { public: // virtual function thunks // NOLINTBEGIN - MCAPI void $postInit(); + MCFOLD void $postInit(); MCAPI void $releaseResources(); @@ -174,41 +174,41 @@ class ContainerModel : public ::ContainerContentChangeListener { MCAPI int $getContainerSize() const; - MCAPI int $getFilteredContainerSize() const; + MCFOLD int $getFilteredContainerSize() const; - MCAPI void $tick(int selectedSlot); + MCFOLD void $tick(int selectedSlot); MCAPI ::ContainerWeakRef $getContainerWeakRef() const; MCAPI ::ItemStack const& $getItemStack(int modelSlot) const; - MCAPI ::std::vector<::ItemStack> const& $getItems() const; + MCFOLD ::std::vector<::ItemStack> const& $getItems() const; MCAPI ::ItemInstance const& $getItemInstance(int modelSlot) const; MCAPI ::ItemStackBase const& $getItemStackBase(int modelSlot) const; - MCAPI bool $isItemInstanceBased() const; + MCFOLD bool $isItemInstanceBased() const; MCAPI void $setItem(int modelSlot, ::ItemStack const& item); - MCAPI bool $isValid(); + MCFOLD bool $isValid(); - MCAPI bool $isItemFiltered(::ItemStackBase const& item) const; + MCFOLD bool $isItemFiltered(::ItemStackBase const& item) const; - MCAPI bool $isExpanableItemFiltered(int index) const; + MCFOLD bool $isExpanableItemFiltered(int index) const; - MCAPI ::ContainerExpandStatus $getItemExpandStatus(int itemId) const; + MCFOLD ::ContainerExpandStatus $getItemExpandStatus(int itemId) const; - MCAPI ::std::string const& $getItemGroupName(int itemId) const; + MCFOLD ::std::string const& $getItemGroupName(int itemId) const; - MCAPI void $switchItemExpando(int itemId); + MCFOLD void $switchItemExpando(int itemId); - MCAPI bool $isSlotDisabled(int) const; + MCFOLD bool $isSlotDisabled(int) const; - MCAPI ::Container* $_getContainer() const; + MCFOLD ::Container* $_getContainer() const; - MCAPI int $_getContainerOffset() const; + MCFOLD int $_getContainerOffset() const; MCAPI void $_init(); diff --git a/src/mc/world/containers/models/HudContainerModel.h b/src/mc/world/containers/models/HudContainerModel.h index 7a2d3abbc9..0aec0d7be2 100644 --- a/src/mc/world/containers/models/HudContainerModel.h +++ b/src/mc/world/containers/models/HudContainerModel.h @@ -71,11 +71,11 @@ class HudContainerModel : public ::ContainerModel { // NOLINTBEGIN MCAPI void $containerContentChanged(int slot); - MCAPI bool $isValid(); + MCFOLD bool $isValid(); - MCAPI ::ContainerWeakRef $getContainerWeakRef() const; + MCFOLD ::ContainerWeakRef $getContainerWeakRef() const; - MCAPI ::Container* $_getContainer() const; + MCFOLD ::Container* $_getContainer() const; MCAPI void $_init(); // NOLINTEND diff --git a/src/mc/world/containers/models/InventoryContainerModel.h b/src/mc/world/containers/models/InventoryContainerModel.h index 3d489a3f2d..5f4741b75e 100644 --- a/src/mc/world/containers/models/InventoryContainerModel.h +++ b/src/mc/world/containers/models/InventoryContainerModel.h @@ -85,15 +85,15 @@ class InventoryContainerModel : public ::ContainerModel { MCAPI void $containerContentChanged(int slot); - MCAPI bool $isValid(); + MCFOLD bool $isValid(); - MCAPI ::ContainerWeakRef $getContainerWeakRef() const; + MCFOLD ::ContainerWeakRef $getContainerWeakRef() const; MCAPI int $_getContainerOffset() const; MCAPI void $_onItemChanged(int modelSlot, ::ItemStack const& oldItem, ::ItemStack const& newItem); - MCAPI ::Container* $_getContainer() const; + MCFOLD ::Container* $_getContainer() const; // NOLINTEND public: diff --git a/src/mc/world/containers/models/LevelContainerModel.h b/src/mc/world/containers/models/LevelContainerModel.h index d69d400c40..48342aa2f5 100644 --- a/src/mc/world/containers/models/LevelContainerModel.h +++ b/src/mc/world/containers/models/LevelContainerModel.h @@ -141,7 +141,7 @@ class LevelContainerModel : public ::ContainerModel { MCAPI int $_getContainerOffset() const; - MCAPI void $_onItemChanged(int modelSlot, ::ItemStack const& oldItem, ::ItemStack const& newItem); + MCFOLD void $_onItemChanged(int modelSlot, ::ItemStack const& oldItem, ::ItemStack const& newItem); MCAPI ::Container* $_getContainer() const; // NOLINTEND diff --git a/src/mc/world/containers/models/PlayerUIContainerModelBase.h b/src/mc/world/containers/models/PlayerUIContainerModelBase.h index fa2bde5450..57699480db 100644 --- a/src/mc/world/containers/models/PlayerUIContainerModelBase.h +++ b/src/mc/world/containers/models/PlayerUIContainerModelBase.h @@ -77,11 +77,11 @@ class PlayerUIContainerModelBase : public ::ContainerModel { MCAPI void $containerContentChanged(int slot); - MCAPI bool $isValid(); + MCFOLD bool $isValid(); MCAPI ::ContainerWeakRef $getContainerWeakRef() const; - MCAPI int $_getContainerOffset() const; + MCFOLD int $_getContainerOffset() const; MCAPI void $_onItemChanged(int modelSlot, ::ItemStack const& oldItem, ::ItemStack const& newItem); diff --git a/src/mc/world/containers/models/StorageItemContainerModel.h b/src/mc/world/containers/models/StorageItemContainerModel.h index 6b3f86409b..0181b430d8 100644 --- a/src/mc/world/containers/models/StorageItemContainerModel.h +++ b/src/mc/world/containers/models/StorageItemContainerModel.h @@ -95,13 +95,13 @@ class StorageItemContainerModel : public ::ContainerModel { MCAPI void $containerContentChanged(int slot); - MCAPI bool $isValid(); + MCFOLD bool $isValid(); MCAPI ::ContainerWeakRef $getContainerWeakRef() const; - MCAPI int $_getContainerOffset() const; + MCFOLD int $_getContainerOffset() const; - MCAPI void $_onItemChanged(int modelSlot, ::ItemStack const& oldItem, ::ItemStack const& newItem); + MCFOLD void $_onItemChanged(int modelSlot, ::ItemStack const& oldItem, ::ItemStack const& newItem); MCAPI ::Container* $_getContainer() const; // NOLINTEND diff --git a/src/mc/world/effect/EffectDuration.h b/src/mc/world/effect/EffectDuration.h index e369ab3d33..48abb9d930 100644 --- a/src/mc/world/effect/EffectDuration.h +++ b/src/mc/world/effect/EffectDuration.h @@ -14,9 +14,9 @@ struct EffectDuration { // NOLINTBEGIN MCAPI ::std::optional getValue() const; - MCAPI int getValueForSerialization() const; + MCFOLD int getValueForSerialization() const; - MCAPI bool isInfinite() const; + MCFOLD bool isInfinite() const; MCAPI bool operator!=(int rhs) const; diff --git a/src/mc/world/effect/InstantaneousMobEffect.h b/src/mc/world/effect/InstantaneousMobEffect.h index 9d55e16e8f..962190b590 100644 --- a/src/mc/world/effect/InstantaneousMobEffect.h +++ b/src/mc/world/effect/InstantaneousMobEffect.h @@ -28,7 +28,7 @@ class InstantaneousMobEffect : public ::MobEffect { public: // virtual function thunks // NOLINTBEGIN - MCAPI bool $isInstantaneous() const; + MCFOLD bool $isInstantaneous() const; MCAPI bool $isDurationEffectTick(int remainingDuration, int) const; // NOLINTEND diff --git a/src/mc/world/effect/MobEffect.h b/src/mc/world/effect/MobEffect.h index c2717c0fc1..075a1173f9 100644 --- a/src/mc/world/effect/MobEffect.h +++ b/src/mc/world/effect/MobEffect.h @@ -70,7 +70,7 @@ class MobEffect { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; @@ -159,21 +159,21 @@ class MobEffect { applyModsAndBuffs(::BaseAttributeMap& attributeMapToRemoveFrom, ::EffectDuration durationTicks, int amplification) const; - MCAPI ::mce::Color const& getColor() const; + MCFOLD ::mce::Color const& getColor() const; - MCAPI ::std::string const& getDescriptionId() const; + MCFOLD ::std::string const& getDescriptionId() const; - MCAPI float getDurationModifier() const; + MCFOLD float getDurationModifier() const; - MCAPI uint getId() const; + MCFOLD uint getId() const; MCAPI ::HashedString const& getParticleEffect(bool isAmbient) const; - MCAPI ::std::string const& getResourceName() const; + MCFOLD ::std::string const& getResourceName() const; - MCAPI bool isHarmful() const; + MCFOLD bool isHarmful() const; - MCAPI bool isVisible() const; + MCFOLD bool isVisible() const; MCAPI void setDurationAmplifier(::std::shared_ptr<::Amplifier> amplifier); @@ -318,16 +318,16 @@ class MobEffect { MCAPI void $removeEffects(::BaseAttributeMap& attributeMapToRemoveFrom); - MCAPI void $onEffectExpired(::Actor&) const; + MCFOLD void $onEffectExpired(::Actor&) const; - MCAPI void $onActorDied(::Actor&, int) const; + MCFOLD void $onActorDied(::Actor&, int) const; - MCAPI void $onActorHurt(::Actor&, int, ::ActorDamageSource const&, float) const; + MCFOLD void $onActorHurt(::Actor&, int, ::ActorDamageSource const&, float) const; MCAPI void $applyInstantaneousEffect(::Actor* source, ::Actor* owner, ::Actor* target, int amplification, float scale) const; - MCAPI bool $isInstantaneous() const; + MCFOLD bool $isInstantaneous() const; MCAPI float $getAttributeModifierValue(int amplifier, ::AttributeModifier const& modifier) const; // NOLINTEND diff --git a/src/mc/world/effect/MobEffectInstance.h b/src/mc/world/effect/MobEffectInstance.h index ce4839168d..06a2cdb381 100644 --- a/src/mc/world/effect/MobEffectInstance.h +++ b/src/mc/world/effect/MobEffectInstance.h @@ -58,9 +58,9 @@ class MobEffectInstance { MCAPI void applyEffects(::Actor& mob) const; - MCAPI bool displaysOnScreenTextureAnimation() const; + MCFOLD bool displaysOnScreenTextureAnimation() const; - MCAPI int getAmplifier() const; + MCFOLD int getAmplifier() const; MCAPI ::HashedString const& getComponentName() const; @@ -72,7 +72,7 @@ class MobEffectInstance { MCAPI ::EffectDuration getDuration() const; - MCAPI uint getId() const; + MCFOLD uint getId() const; MCAPI ::EffectDuration getLingerDuration() const; @@ -96,7 +96,7 @@ class MobEffectInstance { MCAPI ::MobEffectInstance& operator=(::MobEffectInstance const&); - MCAPI void pauseCounterThisTick(); + MCFOLD void pauseCounterThisTick(); MCAPI void removeEffects(::BaseAttributeMap& attributeMapToRemoveFrom) const; @@ -104,7 +104,7 @@ class MobEffectInstance { MCAPI void setDifficultyDuration(::Difficulty difficulty, ::EffectDuration duration); - MCAPI void setDuration(::EffectDuration dur); + MCFOLD void setDuration(::EffectDuration dur); MCAPI void splitDurations(int splitValue); diff --git a/src/mc/world/events/ActorAddEffectEvent.h b/src/mc/world/events/ActorAddEffectEvent.h index 8f953f6f52..a49eabfda2 100644 --- a/src/mc/world/events/ActorAddEffectEvent.h +++ b/src/mc/world/events/ActorAddEffectEvent.h @@ -33,6 +33,6 @@ struct ActorAddEffectEvent { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/world/events/ActorAttackEvent.h b/src/mc/world/events/ActorAttackEvent.h index 3a850f5b88..873de64f21 100644 --- a/src/mc/world/events/ActorAttackEvent.h +++ b/src/mc/world/events/ActorAttackEvent.h @@ -34,6 +34,6 @@ struct ActorAttackEvent { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/world/events/ActorDefinitionStartedEvent.h b/src/mc/world/events/ActorDefinitionStartedEvent.h index 22d247cd49..9383a77d8c 100644 --- a/src/mc/world/events/ActorDefinitionStartedEvent.h +++ b/src/mc/world/events/ActorDefinitionStartedEvent.h @@ -26,6 +26,6 @@ struct ActorDefinitionStartedEvent { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/world/events/ActorDefinitionTriggeredEvent.h b/src/mc/world/events/ActorDefinitionTriggeredEvent.h index b27a42c4a9..e5663c4203 100644 --- a/src/mc/world/events/ActorDefinitionTriggeredEvent.h +++ b/src/mc/world/events/ActorDefinitionTriggeredEvent.h @@ -25,6 +25,6 @@ struct ActorDefinitionTriggeredEvent { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/world/events/ActorDiedEvent.h b/src/mc/world/events/ActorDiedEvent.h index 02b5bc3eff..b2aac08740 100644 --- a/src/mc/world/events/ActorDiedEvent.h +++ b/src/mc/world/events/ActorDiedEvent.h @@ -26,6 +26,6 @@ struct ActorDiedEvent { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/world/events/ActorDroppedItemEvent.h b/src/mc/world/events/ActorDroppedItemEvent.h index 36c8a7fd73..400ae714ea 100644 --- a/src/mc/world/events/ActorDroppedItemEvent.h +++ b/src/mc/world/events/ActorDroppedItemEvent.h @@ -25,6 +25,6 @@ struct ActorDroppedItemEvent { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/world/events/ActorEquippedArmorEvent.h b/src/mc/world/events/ActorEquippedArmorEvent.h index 68a9ab7660..793e334343 100644 --- a/src/mc/world/events/ActorEquippedArmorEvent.h +++ b/src/mc/world/events/ActorEquippedArmorEvent.h @@ -26,6 +26,6 @@ struct ActorEquippedArmorEvent { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/world/events/ActorEventCoordinator.h b/src/mc/world/events/ActorEventCoordinator.h index 7268b449f6..c4362680c6 100644 --- a/src/mc/world/events/ActorEventCoordinator.h +++ b/src/mc/world/events/ActorEventCoordinator.h @@ -50,9 +50,9 @@ class ActorEventCoordinator : public ::EventCoordinator<::ActorEventListener> { MCAPI void _postReloadActorAdded(::Actor& actor, ::ActorInitializationMethod initializationMethod); - MCAPI ::ActorGameplayHandler& getActorGameplayHandler(); + MCFOLD ::ActorGameplayHandler& getActorGameplayHandler(); - MCAPI void registerActorGameplayHandler(::std::unique_ptr<::ActorGameplayHandler>&& handler); + MCFOLD void registerActorGameplayHandler(::std::unique_ptr<::ActorGameplayHandler>&& handler); MCAPI void registerWithActorManagerEvents(::IActorManagerConnector& actorManagerConnector); diff --git a/src/mc/world/events/ActorEventListener.h b/src/mc/world/events/ActorEventListener.h index bb032dd5d5..a86179286f 100644 --- a/src/mc/world/events/ActorEventListener.h +++ b/src/mc/world/events/ActorEventListener.h @@ -88,54 +88,54 @@ class ActorEventListener { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND public: // virtual function thunks // NOLINTBEGIN - MCAPI ::EventResult $onEvent(::ActorNotificationEvent const& event); + MCFOLD ::EventResult $onEvent(::ActorNotificationEvent const& event); - MCAPI ::EventResult $onActorDefinitionEvent( + MCFOLD ::EventResult $onActorDefinitionEvent( ::Actor& actor, ::std::string const& event, ::std::vector<::ActorDefinitionModifier>& modifiers ); - MCAPI ::EventResult $onActorTick(::Actor& actor); + MCFOLD ::EventResult $onActorTick(::Actor& actor); - MCAPI ::EventResult $onActorSneakChanged(::Actor& actor, bool isSneaking); + MCFOLD ::EventResult $onActorSneakChanged(::Actor& actor, bool isSneaking); - MCAPI ::EventResult $onActorStartRiding(::Actor& actor, ::Actor& vehicle); + MCFOLD ::EventResult $onActorStartRiding(::Actor& actor, ::Actor& vehicle); - MCAPI ::EventResult + MCFOLD ::EventResult $onActorStopRiding(::Actor& actor, bool exitFromPassenger, bool actorIsBeingDestroyed, bool switchingVehicles); - MCAPI ::EventResult $onActorCreated(::Actor& actor, ::ActorInitializationMethod initializationMethod); + MCFOLD ::EventResult $onActorCreated(::Actor& actor, ::ActorInitializationMethod initializationMethod); - MCAPI ::EventResult $onActorCreationAttemptFailed(::Actor& actor, ::std::string_view message); + MCFOLD ::EventResult $onActorCreationAttemptFailed(::Actor& actor, ::std::string_view message); - MCAPI ::EventResult $onActorTeleported(::Actor& actor); + MCFOLD ::EventResult $onActorTeleported(::Actor& actor); - MCAPI ::EventResult $onActorAttackedActor(::Actor& actor, ::Actor& target); + MCFOLD ::EventResult $onActorAttackedActor(::Actor& actor, ::Actor& target); - MCAPI ::EventResult $onActorMobInteraction( + MCFOLD ::EventResult $onActorMobInteraction( ::Actor& actor, ::MinecraftEventing::InteractionType interactionType, ::ActorType interactedActorType ); - MCAPI ::EventResult $onActorTargetAcquired(::Actor& actor, ::Actor& target); + MCFOLD ::EventResult $onActorTargetAcquired(::Actor& actor, ::Actor& target); - MCAPI ::EventResult $onPlayerAuthInputReceived(::Player&); + MCFOLD ::EventResult $onPlayerAuthInputReceived(::Player&); - MCAPI ::EventResult $onPlayerAuthInputApplied(::Player&); + MCFOLD ::EventResult $onPlayerAuthInputApplied(::Player&); - MCAPI ::EventResult $onPlayerAIStepBegin(::Player&); + MCFOLD ::EventResult $onPlayerAIStepBegin(::Player&); - MCAPI ::EventResult $onPlayerAIStepEnd(::Player&); + MCFOLD ::EventResult $onPlayerAIStepEnd(::Player&); - MCAPI ::EventResult $onActorMovementRewindCorrected(::Actor&, uint64, ::ReplayCorrectionResult); + MCFOLD ::EventResult $onActorMovementRewindCorrected(::Actor&, uint64, ::ReplayCorrectionResult); // NOLINTEND public: diff --git a/src/mc/world/events/ActorHealthChangedEvent.h b/src/mc/world/events/ActorHealthChangedEvent.h index 12d87dda70..881ec435bf 100644 --- a/src/mc/world/events/ActorHealthChangedEvent.h +++ b/src/mc/world/events/ActorHealthChangedEvent.h @@ -26,6 +26,6 @@ struct ActorHealthChangedEvent { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/world/events/ActorHurtEvent.h b/src/mc/world/events/ActorHurtEvent.h index a9c14f21f7..d94802cc98 100644 --- a/src/mc/world/events/ActorHurtEvent.h +++ b/src/mc/world/events/ActorHurtEvent.h @@ -27,6 +27,6 @@ struct ActorHurtEvent { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/world/events/ActorKilledEvent.h b/src/mc/world/events/ActorKilledEvent.h index edc7db707c..5d119ad280 100644 --- a/src/mc/world/events/ActorKilledEvent.h +++ b/src/mc/world/events/ActorKilledEvent.h @@ -25,6 +25,6 @@ struct ActorKilledEvent { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/world/events/ActorRemoveEffectEvent.h b/src/mc/world/events/ActorRemoveEffectEvent.h index d729b87378..26eb8c5428 100644 --- a/src/mc/world/events/ActorRemoveEffectEvent.h +++ b/src/mc/world/events/ActorRemoveEffectEvent.h @@ -25,6 +25,6 @@ struct ActorRemoveEffectEvent { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/world/events/ActorRemovedEvent.h b/src/mc/world/events/ActorRemovedEvent.h index b322746448..50fde495b3 100644 --- a/src/mc/world/events/ActorRemovedEvent.h +++ b/src/mc/world/events/ActorRemovedEvent.h @@ -24,6 +24,6 @@ struct ActorRemovedEvent { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/world/events/ActorStartRidingEvent.h b/src/mc/world/events/ActorStartRidingEvent.h index c767b93716..b4434cd605 100644 --- a/src/mc/world/events/ActorStartRidingEvent.h +++ b/src/mc/world/events/ActorStartRidingEvent.h @@ -25,6 +25,6 @@ struct ActorStartRidingEvent { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/world/events/ActorStopRidingEvent.h b/src/mc/world/events/ActorStopRidingEvent.h index fe6c414e63..9591af9510 100644 --- a/src/mc/world/events/ActorStopRidingEvent.h +++ b/src/mc/world/events/ActorStopRidingEvent.h @@ -28,6 +28,6 @@ struct ActorStopRidingEvent { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/world/events/BeforeWatchdogTerminateEvent.h b/src/mc/world/events/BeforeWatchdogTerminateEvent.h index 7a2bde7042..2f02409aa8 100644 --- a/src/mc/world/events/BeforeWatchdogTerminateEvent.h +++ b/src/mc/world/events/BeforeWatchdogTerminateEvent.h @@ -25,6 +25,6 @@ struct BeforeWatchdogTerminateEvent { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/world/events/BlockEventCoordinator.h b/src/mc/world/events/BlockEventCoordinator.h index 33d2baa1c1..798442094d 100644 --- a/src/mc/world/events/BlockEventCoordinator.h +++ b/src/mc/world/events/BlockEventCoordinator.h @@ -47,9 +47,9 @@ class BlockEventCoordinator : public ::EventCoordinator<::BlockEventListener> { public: // member functions // NOLINTBEGIN - MCAPI ::BlockGameplayHandler& getBlockGameplayHandler(); + MCFOLD ::BlockGameplayHandler& getBlockGameplayHandler(); - MCAPI void registerBlockGameplayHandler(::std::unique_ptr<::BlockGameplayHandler>&& handler); + MCFOLD void registerBlockGameplayHandler(::std::unique_ptr<::BlockGameplayHandler>&& handler); MCAPI void sendBlockDestroyedByPlayer( ::Player& player, diff --git a/src/mc/world/events/BlockEventDispatcherToken.h b/src/mc/world/events/BlockEventDispatcherToken.h index 26f9c256d0..787201e9e9 100644 --- a/src/mc/world/events/BlockEventDispatcherToken.h +++ b/src/mc/world/events/BlockEventDispatcherToken.h @@ -25,9 +25,9 @@ class BlockEventDispatcherToken { MCAPI BlockEventDispatcherToken(::BlockEventDispatcherToken&& rhs); - MCAPI ::BlockEventDispatcher* getDispatcher() const; + MCFOLD ::BlockEventDispatcher* getDispatcher() const; - MCAPI int getHandle() const; + MCFOLD int getHandle() const; MCAPI bool isValid() const; diff --git a/src/mc/world/events/BlockEventListener.h b/src/mc/world/events/BlockEventListener.h index 441ca73738..8921a2b847 100644 --- a/src/mc/world/events/BlockEventListener.h +++ b/src/mc/world/events/BlockEventListener.h @@ -73,35 +73,35 @@ class BlockEventListener { public: // virtual function thunks // NOLINTBEGIN - MCAPI ::EventResult + MCFOLD ::EventResult $onBlockPlacedByPlayer(::Player& player, ::Block const& placedBlock, ::BlockPos const& pos, bool isUnderwater); - MCAPI ::EventResult + MCFOLD ::EventResult $onBlockDestroyedByPlayer(::Player& player, ::Block const& destroyedBlock, ::BlockPos const& pos, ::ItemStackBase const&, ::ItemStackBase const&); - MCAPI ::EventResult $onBlockInPosWillBeDestroyedByPlayer(::Player& player, ::BlockPos const& pos); + MCFOLD ::EventResult $onBlockInPosWillBeDestroyedByPlayer(::Player& player, ::BlockPos const& pos); - MCAPI ::EventResult + MCFOLD ::EventResult $onBlockMovedByPiston(::BlockPos const& pistonPos, ::BlockPos const& blockPos, ::PistonState const action); - MCAPI ::EventResult $onBlockDestructionStopped(::Player& player, ::BlockPos const& blockPos, int progress); + MCFOLD ::EventResult $onBlockDestructionStopped(::Player& player, ::BlockPos const& blockPos, int progress); - MCAPI ::EventResult $onBlockDestructionStarted(::Player&, ::BlockPos const&, ::Block const&, uchar const); + MCFOLD ::EventResult $onBlockDestructionStarted(::Player&, ::BlockPos const&, ::Block const&, uchar const); - MCAPI ::EventResult $onBlockInteractedWith(::Player& player, ::BlockPos const& blockPos); + MCFOLD ::EventResult $onBlockInteractedWith(::Player& player, ::BlockPos const& blockPos); - MCAPI ::EventResult $onBlockExploded( + MCFOLD ::EventResult $onBlockExploded( ::Dimension& dimension, ::BlockPos const& blockPos, ::Block const& destroyedBlock, ::Actor* source ); - MCAPI ::EventResult $onBlockModified(::BlockPos const& pos, ::Block const& oldBlock, ::Block const& newBlock); + MCFOLD ::EventResult $onBlockModified(::BlockPos const& pos, ::Block const& oldBlock, ::Block const& newBlock); - MCAPI ::EventResult $onUnknownBlockReceived(::Level& level, ::NewBlockID const& blockId, ushort data); + MCFOLD ::EventResult $onUnknownBlockReceived(::Level& level, ::NewBlockID const& blockId, ushort data); - MCAPI ::EventResult $onEvent(::BlockNotificationEvent const& event); + MCFOLD ::EventResult $onEvent(::BlockNotificationEvent const& event); // NOLINTEND public: diff --git a/src/mc/world/events/BlockPatternPostEvent.h b/src/mc/world/events/BlockPatternPostEvent.h index d31f320f29..dad0715a55 100644 --- a/src/mc/world/events/BlockPatternPostEvent.h +++ b/src/mc/world/events/BlockPatternPostEvent.h @@ -15,6 +15,6 @@ struct BlockPatternPostEvent : public ::BlockPatternEvent { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/world/events/BlockPatternPreEvent.h b/src/mc/world/events/BlockPatternPreEvent.h index 13f89b1da4..dd54b1b94a 100644 --- a/src/mc/world/events/BlockPatternPreEvent.h +++ b/src/mc/world/events/BlockPatternPreEvent.h @@ -15,6 +15,6 @@ struct BlockPatternPreEvent : public ::BlockPatternEvent { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/world/events/BlockRandomTickEvent.h b/src/mc/world/events/BlockRandomTickEvent.h index df4eec76bd..3d5f853396 100644 --- a/src/mc/world/events/BlockRandomTickEvent.h +++ b/src/mc/world/events/BlockRandomTickEvent.h @@ -25,6 +25,6 @@ struct BlockRandomTickEvent { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/world/events/BlockSourceHandle.h b/src/mc/world/events/BlockSourceHandle.h index 4810035e09..b9e2dcc9e3 100644 --- a/src/mc/world/events/BlockSourceHandle.h +++ b/src/mc/world/events/BlockSourceHandle.h @@ -42,7 +42,7 @@ class BlockSourceHandle : public ::BlockSourceListener { public: // virtual function thunks // NOLINTBEGIN - MCAPI void $onSourceDestroyed(::BlockSource& source); + MCFOLD void $onSourceDestroyed(::BlockSource& source); // NOLINTEND public: diff --git a/src/mc/world/events/BlockTryPlaceByPlayerEvent.h b/src/mc/world/events/BlockTryPlaceByPlayerEvent.h index 6ae3fcba0f..2bb11ef4f0 100644 --- a/src/mc/world/events/BlockTryPlaceByPlayerEvent.h +++ b/src/mc/world/events/BlockTryPlaceByPlayerEvent.h @@ -28,6 +28,6 @@ struct BlockTryPlaceByPlayerEvent { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/world/events/ButtonPushEvent.h b/src/mc/world/events/ButtonPushEvent.h index 4493bbaaa7..1c1d5a2039 100644 --- a/src/mc/world/events/ButtonPushEvent.h +++ b/src/mc/world/events/ButtonPushEvent.h @@ -26,6 +26,6 @@ struct ButtonPushEvent { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/world/events/ChestBlockTryPairEvent.h b/src/mc/world/events/ChestBlockTryPairEvent.h index af3d3e638d..513822e639 100644 --- a/src/mc/world/events/ChestBlockTryPairEvent.h +++ b/src/mc/world/events/ChestBlockTryPairEvent.h @@ -26,6 +26,6 @@ struct ChestBlockTryPairEvent { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/world/events/DiagnosticsEvent.h b/src/mc/world/events/DiagnosticsEvent.h index 7b82c82a0e..78e20e2ff8 100644 --- a/src/mc/world/events/DiagnosticsEvent.h +++ b/src/mc/world/events/DiagnosticsEvent.h @@ -25,6 +25,6 @@ struct DiagnosticsEvent { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/world/events/IncomingPacketEvent.h b/src/mc/world/events/IncomingPacketEvent.h index 008592cce4..e8d2c0d1c0 100644 --- a/src/mc/world/events/IncomingPacketEvent.h +++ b/src/mc/world/events/IncomingPacketEvent.h @@ -26,6 +26,6 @@ struct IncomingPacketEvent { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/world/events/ItemCompleteUseEvent.h b/src/mc/world/events/ItemCompleteUseEvent.h index 430367e79f..dee7208b5a 100644 --- a/src/mc/world/events/ItemCompleteUseEvent.h +++ b/src/mc/world/events/ItemCompleteUseEvent.h @@ -15,6 +15,6 @@ struct ItemCompleteUseEvent : public ::ItemChargeEvent { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/world/events/ItemEventCoordinator.h b/src/mc/world/events/ItemEventCoordinator.h index 6b85eee38f..2ea728b7ac 100644 --- a/src/mc/world/events/ItemEventCoordinator.h +++ b/src/mc/world/events/ItemEventCoordinator.h @@ -40,7 +40,7 @@ class ItemEventCoordinator : public ::EventCoordinator<::ItemEventListener> { // NOLINTBEGIN MCAPI ItemEventCoordinator(); - MCAPI ::ItemGameplayHandler& getItemGameplayHandler(); + MCFOLD ::ItemGameplayHandler& getItemGameplayHandler(); MCAPI void onItemModifiedActor(::ItemStackBase const& item, ::Actor const& modifiedActor); diff --git a/src/mc/world/events/ItemEventListener.h b/src/mc/world/events/ItemEventListener.h index 3c3ce74bdd..cac93f1364 100644 --- a/src/mc/world/events/ItemEventListener.h +++ b/src/mc/world/events/ItemEventListener.h @@ -83,41 +83,41 @@ class ItemEventListener { public: // virtual function thunks // NOLINTBEGIN - MCAPI ::EventResult $onInventoryItemOpened(bool workbench); + MCFOLD ::EventResult $onInventoryItemOpened(bool workbench); - MCAPI ::EventResult $onInventoryItemClosed(); + MCFOLD ::EventResult $onInventoryItemClosed(); - MCAPI ::EventResult + MCFOLD ::EventResult $onItemTransferredFromContainer(::ItemStackBase const& item, ::std::string const& srcContainerName); - MCAPI ::EventResult + MCFOLD ::EventResult $onItemTransferredToContainer(::ItemStackBase const& item, ::std::string const& dstContainerName); - MCAPI ::EventResult + MCFOLD ::EventResult $onPreviewItemPopulatedInContainer(::ItemStackBase const& item, ::std::string const& containerName); - MCAPI ::EventResult $onInventoryLayoutSelected(int activeInventoryLayout, int activeInventoryLeftTabIndex); + MCFOLD ::EventResult $onInventoryLayoutSelected(int activeInventoryLayout, int activeInventoryLeftTabIndex); - MCAPI ::EventResult $onInventoryItemCraftedAutomaticallyByRecipe(::ItemStackBase const& item); + MCFOLD ::EventResult $onInventoryItemCraftedAutomaticallyByRecipe(::ItemStackBase const& item); - MCAPI ::EventResult $onRecipeSelected(::ItemStackBase const& item); + MCFOLD ::EventResult $onRecipeSelected(::ItemStackBase const& item); - MCAPI ::EventResult + MCFOLD ::EventResult $onItemSmelted(::Player& player, ::ItemDescriptor const& item, ::ItemDescriptor const& lastFuelItem); - MCAPI ::EventResult $onItemSpawningActor(::Actor const& spawningActor); + MCFOLD ::EventResult $onItemSpawningActor(::Actor const& spawningActor); - MCAPI ::EventResult $onItemSpawnedActor(::ItemStackBase const& item, ::Actor const& spawnedActor); + MCFOLD ::EventResult $onItemSpawnedActor(::ItemStackBase const& item, ::Actor const& spawnedActor); - MCAPI ::EventResult $onItemModifiedActor(::ItemStackBase const& item, ::Actor const& modifiedActor); + MCFOLD ::EventResult $onItemModifiedActor(::ItemStackBase const& item, ::Actor const& modifiedActor); - MCAPI ::EventResult $onItemSelectedSlot(int slot); + MCFOLD ::EventResult $onItemSelectedSlot(int slot); - MCAPI ::EventResult $onItemSelected(::ItemStackBase const&); + MCFOLD ::EventResult $onItemSelected(::ItemStackBase const&); - MCAPI ::EventResult $onItemDefinitionEventTriggered(::ItemStackBase const& item, ::std::string const& event); + MCFOLD ::EventResult $onItemDefinitionEventTriggered(::ItemStackBase const& item, ::std::string const& event); - MCAPI ::EventResult $onEvent(::ItemNotificationEvent const& event); + MCFOLD ::EventResult $onEvent(::ItemNotificationEvent const& event); // NOLINTEND public: diff --git a/src/mc/world/events/ItemReleaseUseEvent.h b/src/mc/world/events/ItemReleaseUseEvent.h index 899f3bdbb7..098282a3b5 100644 --- a/src/mc/world/events/ItemReleaseUseEvent.h +++ b/src/mc/world/events/ItemReleaseUseEvent.h @@ -15,6 +15,6 @@ struct ItemReleaseUseEvent : public ::ItemChargeEvent { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/world/events/ItemStartUseEvent.h b/src/mc/world/events/ItemStartUseEvent.h index 0cb9f0b923..3bb5fff464 100644 --- a/src/mc/world/events/ItemStartUseEvent.h +++ b/src/mc/world/events/ItemStartUseEvent.h @@ -15,6 +15,6 @@ struct ItemStartUseEvent : public ::ItemChargeEvent { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/world/events/ItemStartUseOnEvent.h b/src/mc/world/events/ItemStartUseOnEvent.h index 25bdf7eda2..aaeb3cb6ae 100644 --- a/src/mc/world/events/ItemStartUseOnEvent.h +++ b/src/mc/world/events/ItemStartUseOnEvent.h @@ -28,6 +28,6 @@ struct ItemStartUseOnEvent { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/world/events/ItemStopUseEvent.h b/src/mc/world/events/ItemStopUseEvent.h index 233e65cee3..c7b82c8505 100644 --- a/src/mc/world/events/ItemStopUseEvent.h +++ b/src/mc/world/events/ItemStopUseEvent.h @@ -15,6 +15,6 @@ struct ItemStopUseEvent : public ::ItemChargeEvent { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/world/events/ItemStopUseOnEvent.h b/src/mc/world/events/ItemStopUseOnEvent.h index 6458e43f7f..f0576016a6 100644 --- a/src/mc/world/events/ItemStopUseOnEvent.h +++ b/src/mc/world/events/ItemStopUseOnEvent.h @@ -26,6 +26,6 @@ struct ItemStopUseOnEvent { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/world/events/ItemUseEvent.h b/src/mc/world/events/ItemUseEvent.h index 5b288fb1c3..03174d8995 100644 --- a/src/mc/world/events/ItemUseEvent.h +++ b/src/mc/world/events/ItemUseEvent.h @@ -25,6 +25,6 @@ struct ItemUseEvent { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/world/events/ItemUseOnEvent.h b/src/mc/world/events/ItemUseOnEvent.h index e70f08d469..a94fbcd3ff 100644 --- a/src/mc/world/events/ItemUseOnEvent.h +++ b/src/mc/world/events/ItemUseOnEvent.h @@ -29,6 +29,6 @@ struct ItemUseOnEvent { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/world/events/KnockBackEvent.h b/src/mc/world/events/KnockBackEvent.h index 94faf8079c..ba6869b63e 100644 --- a/src/mc/world/events/KnockBackEvent.h +++ b/src/mc/world/events/KnockBackEvent.h @@ -24,6 +24,6 @@ struct KnockBackEvent { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/world/events/LevelEventCoordinator.h b/src/mc/world/events/LevelEventCoordinator.h index a3ef357c9f..fa67bdd6cf 100644 --- a/src/mc/world/events/LevelEventCoordinator.h +++ b/src/mc/world/events/LevelEventCoordinator.h @@ -54,11 +54,11 @@ class LevelEventCoordinator : public ::EventCoordinator<::LevelEventListener> { MCAPI void _postReloadActorAdded(::Actor& actor, ::ActorInitializationMethod initializationMethod); - MCAPI ::LevelGameplayHandler& getLevelGameplayHandler(); + MCFOLD ::LevelGameplayHandler& getLevelGameplayHandler(); MCAPI void registerGameRules(::GameRules& gameRules); - MCAPI void registerLevelGameplayHandler(::std::unique_ptr<::LevelGameplayHandler>&& handler); + MCFOLD void registerLevelGameplayHandler(::std::unique_ptr<::LevelGameplayHandler>&& handler); MCAPI void registerWithActorManagerEvents(::IActorManagerConnector& actorManagerConnector, bool isClientSide); diff --git a/src/mc/world/events/LevelEventListener.h b/src/mc/world/events/LevelEventListener.h index a4caa90764..0fedd8c0e1 100644 --- a/src/mc/world/events/LevelEventListener.h +++ b/src/mc/world/events/LevelEventListener.h @@ -57,22 +57,22 @@ class LevelEventListener { public: // virtual function thunks // NOLINTBEGIN - MCAPI ::EventResult $onLevelInitialized(::Level& level); + MCFOLD ::EventResult $onLevelInitialized(::Level& level); - MCAPI ::EventResult $onLevelAddedPlayer(::Player& player); + MCFOLD ::EventResult $onLevelAddedPlayer(::Player& player); - MCAPI ::EventResult $onLevelRemovedPlayer(::Player&); + MCFOLD ::EventResult $onLevelRemovedPlayer(::Player&); - MCAPI ::EventResult $onLevelRemovedActor(::Actor& actor); + MCFOLD ::EventResult $onLevelRemovedActor(::Actor& actor); - MCAPI ::EventResult $onLevelTick(::Level&); + MCFOLD ::EventResult $onLevelTick(::Level&); - MCAPI ::EventResult $onLevelTickStart(::Level&); + MCFOLD ::EventResult $onLevelTickStart(::Level&); - MCAPI ::EventResult $onLevelTickEnd(::Level&); + MCFOLD ::EventResult $onLevelTickEnd(::Level&); - MCAPI ::EventResult $onLevelWeatherChange(::std::string const&, bool, bool, bool, bool); + MCFOLD ::EventResult $onLevelWeatherChange(::std::string const&, bool, bool, bool, bool); - MCAPI ::EventResult $onEvent(::LevelNotificationEvent const& event); + MCFOLD ::EventResult $onEvent(::LevelNotificationEvent const& event); // NOLINTEND }; diff --git a/src/mc/world/events/LevelStartLeaveGameEvent.h b/src/mc/world/events/LevelStartLeaveGameEvent.h index 3edbf5838a..91de3388d5 100644 --- a/src/mc/world/events/LevelStartLeaveGameEvent.h +++ b/src/mc/world/events/LevelStartLeaveGameEvent.h @@ -24,6 +24,6 @@ struct LevelStartLeaveGameEvent { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/world/events/LeverActionEvent.h b/src/mc/world/events/LeverActionEvent.h index 35629d4c34..a6b366413b 100644 --- a/src/mc/world/events/LeverActionEvent.h +++ b/src/mc/world/events/LeverActionEvent.h @@ -27,6 +27,6 @@ struct LeverActionEvent { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/world/events/MountTamingEvent.h b/src/mc/world/events/MountTamingEvent.h index aa2483a960..0f1c05103d 100644 --- a/src/mc/world/events/MountTamingEvent.h +++ b/src/mc/world/events/MountTamingEvent.h @@ -25,6 +25,6 @@ struct MountTamingEvent { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/world/events/OutgoingPacketEvent.h b/src/mc/world/events/OutgoingPacketEvent.h index 1e12cdffcf..7fe27461ec 100644 --- a/src/mc/world/events/OutgoingPacketEvent.h +++ b/src/mc/world/events/OutgoingPacketEvent.h @@ -25,6 +25,6 @@ struct OutgoingPacketEvent { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/world/events/PistonActionEvent.h b/src/mc/world/events/PistonActionEvent.h index 5825b92a4f..1e23316dae 100644 --- a/src/mc/world/events/PistonActionEvent.h +++ b/src/mc/world/events/PistonActionEvent.h @@ -27,6 +27,6 @@ struct PistonActionEvent { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/world/events/PlayerAddEvent.h b/src/mc/world/events/PlayerAddEvent.h index a993e614dd..413389b2a3 100644 --- a/src/mc/world/events/PlayerAddEvent.h +++ b/src/mc/world/events/PlayerAddEvent.h @@ -24,6 +24,6 @@ struct PlayerAddEvent { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/world/events/PlayerAddExpEvent.h b/src/mc/world/events/PlayerAddExpEvent.h index 4a5c8664bb..3eec1fdf87 100644 --- a/src/mc/world/events/PlayerAddExpEvent.h +++ b/src/mc/world/events/PlayerAddExpEvent.h @@ -25,6 +25,6 @@ struct PlayerAddExpEvent { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/world/events/PlayerAddLevelEvent.h b/src/mc/world/events/PlayerAddLevelEvent.h index c39e55b5ed..839825c95d 100644 --- a/src/mc/world/events/PlayerAddLevelEvent.h +++ b/src/mc/world/events/PlayerAddLevelEvent.h @@ -26,6 +26,6 @@ struct PlayerAddLevelEvent { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/world/events/PlayerDestroyBlockEvent.h b/src/mc/world/events/PlayerDestroyBlockEvent.h index 268c34a8db..9b0018d743 100644 --- a/src/mc/world/events/PlayerDestroyBlockEvent.h +++ b/src/mc/world/events/PlayerDestroyBlockEvent.h @@ -27,6 +27,6 @@ struct PlayerDestroyBlockEvent { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/world/events/PlayerDimensionChangeAfterEvent.h b/src/mc/world/events/PlayerDimensionChangeAfterEvent.h index 6a099a515e..fd33321951 100644 --- a/src/mc/world/events/PlayerDimensionChangeAfterEvent.h +++ b/src/mc/world/events/PlayerDimensionChangeAfterEvent.h @@ -28,6 +28,6 @@ struct PlayerDimensionChangeAfterEvent { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/world/events/PlayerDimensionChangeBeforeEvent.h b/src/mc/world/events/PlayerDimensionChangeBeforeEvent.h index e19080c86b..afcd2fa02f 100644 --- a/src/mc/world/events/PlayerDimensionChangeBeforeEvent.h +++ b/src/mc/world/events/PlayerDimensionChangeBeforeEvent.h @@ -28,6 +28,6 @@ struct PlayerDimensionChangeBeforeEvent { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/world/events/PlayerDisconnectEvent.h b/src/mc/world/events/PlayerDisconnectEvent.h index 41609e8618..4cd0e10628 100644 --- a/src/mc/world/events/PlayerDisconnectEvent.h +++ b/src/mc/world/events/PlayerDisconnectEvent.h @@ -24,6 +24,6 @@ struct PlayerDisconnectEvent { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/world/events/PlayerDropItemEvent.h b/src/mc/world/events/PlayerDropItemEvent.h index 8075e523f5..66b6e61d53 100644 --- a/src/mc/world/events/PlayerDropItemEvent.h +++ b/src/mc/world/events/PlayerDropItemEvent.h @@ -25,6 +25,6 @@ struct PlayerDropItemEvent { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/world/events/PlayerEatFoodEvent.h b/src/mc/world/events/PlayerEatFoodEvent.h index 4876464ffb..87897276cf 100644 --- a/src/mc/world/events/PlayerEatFoodEvent.h +++ b/src/mc/world/events/PlayerEatFoodEvent.h @@ -25,6 +25,6 @@ struct PlayerEatFoodEvent { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/world/events/PlayerEmoteEvent.h b/src/mc/world/events/PlayerEmoteEvent.h index 1c0dbee8a9..5d32b30ccd 100644 --- a/src/mc/world/events/PlayerEmoteEvent.h +++ b/src/mc/world/events/PlayerEmoteEvent.h @@ -25,6 +25,6 @@ struct PlayerEmoteEvent { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/world/events/PlayerEventCoordinator.h b/src/mc/world/events/PlayerEventCoordinator.h index 028e8ef0d8..1157da3b3c 100644 --- a/src/mc/world/events/PlayerEventCoordinator.h +++ b/src/mc/world/events/PlayerEventCoordinator.h @@ -47,9 +47,9 @@ class PlayerEventCoordinator : public ::EventCoordinator<::PlayerEventListener> // NOLINTBEGIN MCAPI PlayerEventCoordinator(); - MCAPI ::PlayerGameplayHandler& getPlayerGameplayHandler(); + MCFOLD ::PlayerGameplayHandler& getPlayerGameplayHandler(); - MCAPI void registerPlayerGameplayHandler(::std::unique_ptr<::PlayerGameplayHandler>&& handler); + MCFOLD void registerPlayerGameplayHandler(::std::unique_ptr<::PlayerGameplayHandler>&& handler); MCAPI ::CoordinatorResult sendEvent(::EventRef<::MutablePlayerGameplayEvent<::CoordinatorResult>> event); diff --git a/src/mc/world/events/PlayerEventListener.h b/src/mc/world/events/PlayerEventListener.h index b4a4a7e6a0..c7d3c6dd3e 100644 --- a/src/mc/world/events/PlayerEventListener.h +++ b/src/mc/world/events/PlayerEventListener.h @@ -173,85 +173,85 @@ class PlayerEventListener { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND public: // virtual function thunks // NOLINTBEGIN - MCAPI ::EventResult $onPlayerAwardAchievement(::Player& player, ::MinecraftEventing::AchievementIds achievement); + MCFOLD ::EventResult $onPlayerAwardAchievement(::Player& player, ::MinecraftEventing::AchievementIds achievement); - MCAPI ::EventResult $onPlayerPortalBuilt(::Player& player, ::DimensionType dimensionBuiltIn); + MCFOLD ::EventResult $onPlayerPortalBuilt(::Player& player, ::DimensionType dimensionBuiltIn); - MCAPI ::EventResult + MCFOLD ::EventResult $onPlayerPortalUsed(::Player& player, ::DimensionType fromDimension, ::DimensionType toDimension); - MCAPI ::EventResult $onPlayerPoweredBeacon(::Player const& player, int const level); + MCFOLD ::EventResult $onPlayerPoweredBeacon(::Player const& player, int const level); - MCAPI ::EventResult $onPlayerCaravanChanged(::Actor const& mob, int caravanCount); + MCFOLD ::EventResult $onPlayerCaravanChanged(::Actor const& mob, int caravanCount); - MCAPI ::EventResult $onPlayerSaved(::Player& player); + MCFOLD ::EventResult $onPlayerSaved(::Player& player); - MCAPI ::EventResult $onPlayerInput(::EntityContext&); + MCFOLD ::EventResult $onPlayerInput(::EntityContext&); - MCAPI ::EventResult $onPlayerAuthInputReceived(::Player&); + MCFOLD ::EventResult $onPlayerAuthInputReceived(::Player&); - MCAPI ::EventResult $onPlayerAuthInputApplied(::Player&); + MCFOLD ::EventResult $onPlayerAuthInputApplied(::Player&); - MCAPI ::EventResult $onPlayerTurn(::Player& player, ::Vec2& turnDelta); + MCFOLD ::EventResult $onPlayerTurn(::Player& player, ::Vec2& turnDelta); - MCAPI ::EventResult $onCameraSetPlayerRot(::Player&, ::Vec2 const&); + MCFOLD ::EventResult $onCameraSetPlayerRot(::Player&, ::Vec2 const&); - MCAPI ::EventResult $onStartDestroyBlock(::Player& player, ::BlockPos const& pos, uchar& face); + MCFOLD ::EventResult $onStartDestroyBlock(::Player& player, ::BlockPos const& pos, uchar& face); - MCAPI ::EventResult $onPlayerAction(::Player& player, ::PlayerActionType type, ::BlockPos const& pos, int data); + MCFOLD ::EventResult $onPlayerAction(::Player& player, ::PlayerActionType type, ::BlockPos const& pos, int data); - MCAPI ::EventResult $onLocalPlayerDeath(::IClientInstance& client, ::LocalPlayer& player); + MCFOLD ::EventResult $onLocalPlayerDeath(::IClientInstance& client, ::LocalPlayer& player); - MCAPI ::EventResult $onLocalPlayerRespawn(::IClientInstance& client, ::LocalPlayer& player); + MCFOLD ::EventResult $onLocalPlayerRespawn(::IClientInstance& client, ::LocalPlayer& player); - MCAPI ::EventResult $onPlayerMove(::Player& player); + MCFOLD ::EventResult $onPlayerMove(::Player& player); - MCAPI ::EventResult $onPlayerSlide(::Player& player); + MCFOLD ::EventResult $onPlayerSlide(::Player& player); - MCAPI ::EventResult $onPlayerTargetBlockHit(::Player& player, int const signalStrength); + MCFOLD ::EventResult $onPlayerTargetBlockHit(::Player& player, int const signalStrength); - MCAPI ::EventResult $onPlayerTick(::Player& player); + MCFOLD ::EventResult $onPlayerTick(::Player& player); - MCAPI ::EventResult $onPlayerStartRiding(::Player& player, ::Actor& vehicle); + MCFOLD ::EventResult $onPlayerStartRiding(::Player& player, ::Actor& vehicle); - MCAPI ::EventResult + MCFOLD ::EventResult $onPlayerStopRiding(::Player& player, bool exitFromPassenger, bool entityIsBeingDestroyed, bool switchingVehicles); - MCAPI ::EventResult $onPlayerCreated( + MCFOLD ::EventResult $onPlayerCreated( ::LocalPlayer& player, ::std::string const& personaSlot, ::std::string const& classicSkinId, bool usingClassicSkin ); - MCAPI ::EventResult $onPlayerTeleported(::Player& player); + MCFOLD ::EventResult $onPlayerTeleported(::Player& player); - MCAPI ::EventResult $onPlayerTeleported(::Player&, float); + MCFOLD ::EventResult $onPlayerTeleported(::Player&, float); - MCAPI ::EventResult $onPlayerAttackedActor(::Player& player, ::Actor& target); + MCFOLD ::EventResult $onPlayerAttackedActor(::Player& player, ::Actor& target); - MCAPI ::EventResult $onPlayerDestroyedBlock(::Player& player, int x, int y, int z); + MCFOLD ::EventResult $onPlayerDestroyedBlock(::Player& player, int x, int y, int z); - MCAPI ::EventResult $onPlayerDestroyedBlock(::Player& player, ::Block const& block); + MCFOLD ::EventResult $onPlayerDestroyedBlock(::Player& player, ::Block const& block); - MCAPI ::EventResult $onPlayerEquippedArmor(::Player& player, ::ItemDescriptor const& item); + MCFOLD ::EventResult $onPlayerEquippedArmor(::Player& player, ::ItemDescriptor const& item); - MCAPI ::EventResult + MCFOLD ::EventResult $onPlayerEnchantedItem(::Player& player, ::ItemStack const& item, ::ItemEnchants const& enchants); - MCAPI ::EventResult $onPlayerNamedItem(::Player& player, ::ItemDescriptor const& item); + MCFOLD ::EventResult $onPlayerNamedItem(::Player& player, ::ItemDescriptor const& item); - MCAPI ::EventResult $onPlayerItemUseInteraction(::Player& player, ::ItemInstance const& itemBeforeUse); + MCFOLD ::EventResult $onPlayerItemUseInteraction(::Player& player, ::ItemInstance const& itemBeforeUse); - MCAPI ::EventResult $onPlayerItemPlaceInteraction(::Player& player, ::ItemInstance const& itemBeforeUse); + MCFOLD ::EventResult $onPlayerItemPlaceInteraction(::Player& player, ::ItemInstance const& itemBeforeUse); - MCAPI ::EventResult $onPlayerCraftedItem( + MCFOLD ::EventResult $onPlayerCraftedItem( ::Player& player, ::ItemInstance const& craftedItem, bool recipeBook, @@ -265,17 +265,17 @@ class PlayerEventListener { ::std::vector const& ingredientItemIDs ); - MCAPI ::EventResult $onPlayerSmithiedItem(::Player&, ::ItemDescriptor const&); + MCFOLD ::EventResult $onPlayerSmithiedItem(::Player&, ::ItemDescriptor const&); - MCAPI ::EventResult + MCFOLD ::EventResult $onPlayerItemEquipped(::Player& player, ::ItemInstance const& equippedItem, int equipmentSlotId); - MCAPI ::EventResult + MCFOLD ::EventResult $onPlayerPiglinBarter(::Player& player, ::std::string const& item, bool wasTargetingBarteringPlayer); - MCAPI ::EventResult $onPlayerWaxOnWaxOff(::Player& player, int const blockID); + MCFOLD ::EventResult $onPlayerWaxOnWaxOff(::Player& player, int const blockID); - MCAPI ::EventResult $onEvent(::PlayerNotificationEvent const& event); + MCFOLD ::EventResult $onEvent(::PlayerNotificationEvent const& event); // NOLINTEND public: diff --git a/src/mc/world/events/PlayerFormCloseEvent.h b/src/mc/world/events/PlayerFormCloseEvent.h index 0d11e3ad84..e679459e2e 100644 --- a/src/mc/world/events/PlayerFormCloseEvent.h +++ b/src/mc/world/events/PlayerFormCloseEvent.h @@ -26,6 +26,6 @@ struct PlayerFormCloseEvent { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/world/events/PlayerGameModeChangeEvent.h b/src/mc/world/events/PlayerGameModeChangeEvent.h index ebfe3ef3d9..c92a71983f 100644 --- a/src/mc/world/events/PlayerGameModeChangeEvent.h +++ b/src/mc/world/events/PlayerGameModeChangeEvent.h @@ -26,6 +26,6 @@ struct PlayerGameModeChangeEvent { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/world/events/PlayerGetExperienceOrbEvent.h b/src/mc/world/events/PlayerGetExperienceOrbEvent.h index 6d94cdb506..2003ff009b 100644 --- a/src/mc/world/events/PlayerGetExperienceOrbEvent.h +++ b/src/mc/world/events/PlayerGetExperienceOrbEvent.h @@ -25,6 +25,6 @@ struct PlayerGetExperienceOrbEvent { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/world/events/PlayerInitialSpawnEvent.h b/src/mc/world/events/PlayerInitialSpawnEvent.h index dba1be38a3..d562a22e94 100644 --- a/src/mc/world/events/PlayerInitialSpawnEvent.h +++ b/src/mc/world/events/PlayerInitialSpawnEvent.h @@ -24,6 +24,6 @@ struct PlayerInitialSpawnEvent { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/world/events/PlayerInputModeChangeEvent.h b/src/mc/world/events/PlayerInputModeChangeEvent.h index 62ae233a78..0a13faa725 100644 --- a/src/mc/world/events/PlayerInputModeChangeEvent.h +++ b/src/mc/world/events/PlayerInputModeChangeEvent.h @@ -26,6 +26,6 @@ struct PlayerInputModeChangeEvent { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/world/events/PlayerInputPermissionCategoryChangeEvent.h b/src/mc/world/events/PlayerInputPermissionCategoryChangeEvent.h index 42cadaee1a..6599a98af9 100644 --- a/src/mc/world/events/PlayerInputPermissionCategoryChangeEvent.h +++ b/src/mc/world/events/PlayerInputPermissionCategoryChangeEvent.h @@ -26,6 +26,6 @@ struct PlayerInputPermissionCategoryChangeEvent { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/world/events/PlayerInteractEvent.h b/src/mc/world/events/PlayerInteractEvent.h index cef95cc541..84ac59c731 100644 --- a/src/mc/world/events/PlayerInteractEvent.h +++ b/src/mc/world/events/PlayerInteractEvent.h @@ -26,6 +26,6 @@ struct PlayerInteractEvent { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/world/events/PlayerInteractWithEntityAfterEvent.h b/src/mc/world/events/PlayerInteractWithEntityAfterEvent.h index 23d6775fc5..6cb9659078 100644 --- a/src/mc/world/events/PlayerInteractWithEntityAfterEvent.h +++ b/src/mc/world/events/PlayerInteractWithEntityAfterEvent.h @@ -27,6 +27,6 @@ struct PlayerInteractWithEntityAfterEvent { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/world/events/PlayerInteractWithEntityBeforeEvent.h b/src/mc/world/events/PlayerInteractWithEntityBeforeEvent.h index e7f04e0e61..cec6d2c4b0 100644 --- a/src/mc/world/events/PlayerInteractWithEntityBeforeEvent.h +++ b/src/mc/world/events/PlayerInteractWithEntityBeforeEvent.h @@ -26,6 +26,6 @@ struct PlayerInteractWithEntityBeforeEvent { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/world/events/PlayerOpenContainerEvent.h b/src/mc/world/events/PlayerOpenContainerEvent.h index b731689a32..d08e949f11 100644 --- a/src/mc/world/events/PlayerOpenContainerEvent.h +++ b/src/mc/world/events/PlayerOpenContainerEvent.h @@ -27,6 +27,6 @@ struct PlayerOpenContainerEvent { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/world/events/PlayerRespawnEvent.h b/src/mc/world/events/PlayerRespawnEvent.h index 7c613416c2..130539208f 100644 --- a/src/mc/world/events/PlayerRespawnEvent.h +++ b/src/mc/world/events/PlayerRespawnEvent.h @@ -24,6 +24,6 @@ struct PlayerRespawnEvent { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/world/events/PlayerSayCommandEvent.h b/src/mc/world/events/PlayerSayCommandEvent.h index eae391565a..bcc850b90a 100644 --- a/src/mc/world/events/PlayerSayCommandEvent.h +++ b/src/mc/world/events/PlayerSayCommandEvent.h @@ -25,6 +25,6 @@ struct PlayerSayCommandEvent { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/world/events/PlayerScriptInputEvent.h b/src/mc/world/events/PlayerScriptInputEvent.h index 2240d35f6b..a41a3d262e 100644 --- a/src/mc/world/events/PlayerScriptInputEvent.h +++ b/src/mc/world/events/PlayerScriptInputEvent.h @@ -26,6 +26,6 @@ struct PlayerScriptInputEvent { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/world/events/PlayerShootArrowEvent.h b/src/mc/world/events/PlayerShootArrowEvent.h index 58ac7ba1c9..78dad8fce8 100644 --- a/src/mc/world/events/PlayerShootArrowEvent.h +++ b/src/mc/world/events/PlayerShootArrowEvent.h @@ -27,6 +27,6 @@ struct PlayerShootArrowEvent { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/world/events/PlayerUpdateInteractionEvent.h b/src/mc/world/events/PlayerUpdateInteractionEvent.h index 729b58ef89..b150c2bf20 100644 --- a/src/mc/world/events/PlayerUpdateInteractionEvent.h +++ b/src/mc/world/events/PlayerUpdateInteractionEvent.h @@ -33,6 +33,6 @@ struct PlayerUpdateInteractionEvent { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/world/events/PlayerUseNameTagEvent.h b/src/mc/world/events/PlayerUseNameTagEvent.h index a2f06d4d27..14c9c0e276 100644 --- a/src/mc/world/events/PlayerUseNameTagEvent.h +++ b/src/mc/world/events/PlayerUseNameTagEvent.h @@ -25,6 +25,6 @@ struct PlayerUseNameTagEvent { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/world/events/PressurePlatePopEvent.h b/src/mc/world/events/PressurePlatePopEvent.h index cd94c32e80..9033a3777b 100644 --- a/src/mc/world/events/PressurePlatePopEvent.h +++ b/src/mc/world/events/PressurePlatePopEvent.h @@ -27,6 +27,6 @@ struct PressurePlatePopEvent { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/world/events/PressurePlatePushEvent.h b/src/mc/world/events/PressurePlatePushEvent.h index 75e3f9a282..d1d331ea0b 100644 --- a/src/mc/world/events/PressurePlatePushEvent.h +++ b/src/mc/world/events/PressurePlatePushEvent.h @@ -28,6 +28,6 @@ struct PressurePlatePushEvent { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/world/events/ScoreboardEventListener.h b/src/mc/world/events/ScoreboardEventListener.h index 90afa65192..d59b18313d 100644 --- a/src/mc/world/events/ScoreboardEventListener.h +++ b/src/mc/world/events/ScoreboardEventListener.h @@ -39,13 +39,13 @@ class ScoreboardEventListener { public: // virtual function thunks // NOLINTBEGIN - MCAPI ::EventResult $onObjectiveAdded(::std::string const&); + MCFOLD ::EventResult $onObjectiveAdded(::std::string const&); - MCAPI ::EventResult $onObjectiveRemoved(::std::string const&); + MCFOLD ::EventResult $onObjectiveRemoved(::std::string const&); - MCAPI ::EventResult $onScoreboardIdentityRemoved(::ScoreboardId const&); + MCFOLD ::EventResult $onScoreboardIdentityRemoved(::ScoreboardId const&); - MCAPI ::EventResult $onScoreChanged(::ScoreboardId const&, ::std::string const&, int); + MCFOLD ::EventResult $onScoreChanged(::ScoreboardId const&, ::std::string const&, int); // NOLINTEND public: diff --git a/src/mc/world/events/ScriptCommandMessageEvent.h b/src/mc/world/events/ScriptCommandMessageEvent.h index 7020c12168..046c9b4ae1 100644 --- a/src/mc/world/events/ScriptCommandMessageEvent.h +++ b/src/mc/world/events/ScriptCommandMessageEvent.h @@ -29,6 +29,6 @@ struct ScriptCommandMessageEvent { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/world/events/ScriptDeferredEventCoordinator.h b/src/mc/world/events/ScriptDeferredEventCoordinator.h index 367ed23313..5648b0ac04 100644 --- a/src/mc/world/events/ScriptDeferredEventCoordinator.h +++ b/src/mc/world/events/ScriptDeferredEventCoordinator.h @@ -43,7 +43,7 @@ class ScriptDeferredEventCoordinator : public ::EventCoordinatorNoTracking<::Scr public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/world/events/ScriptDeferredEventListener.h b/src/mc/world/events/ScriptDeferredEventListener.h index e50014ad56..8f929fce7a 100644 --- a/src/mc/world/events/ScriptDeferredEventListener.h +++ b/src/mc/world/events/ScriptDeferredEventListener.h @@ -52,26 +52,26 @@ class ScriptDeferredEventListener { public: // virtual function thunks // NOLINTBEGIN - MCAPI bool $onRunSystemTick(); + MCFOLD bool $onRunSystemTick(); - MCAPI bool $onFlushWorldAfterEvents(); + MCFOLD bool $onFlushWorldAfterEvents(); - MCAPI bool $onFlushSystemAfterEvents(); + MCFOLD bool $onFlushSystemAfterEvents(); - MCAPI bool $onFlushEditorExtensionContextAfterEvents(); + MCFOLD bool $onFlushEditorExtensionContextAfterEvents(); - MCAPI bool $onFlushBlockCustomComponentAfterEvents(); + MCFOLD bool $onFlushBlockCustomComponentAfterEvents(); - MCAPI bool $onFlushEditorDataStoreAfterEvents(); + MCFOLD bool $onFlushEditorDataStoreAfterEvents(); - MCAPI bool $onFlushItemCustomComponentAfterEvents(); + MCFOLD bool $onFlushItemCustomComponentAfterEvents(); - MCAPI void $onPreFlushAfterEvents(); + MCFOLD void $onPreFlushAfterEvents(); - MCAPI void $onPostFlushAfterEvents(); + MCFOLD void $onPostFlushAfterEvents(); - MCAPI void $onScriptTickStart(); + MCFOLD void $onScriptTickStart(); - MCAPI void $onScriptTickEnd(); + MCFOLD void $onScriptTickEnd(); // NOLINTEND }; diff --git a/src/mc/world/events/ScriptModuleShutdownEvent.h b/src/mc/world/events/ScriptModuleShutdownEvent.h index dc639406b2..d63f552bd2 100644 --- a/src/mc/world/events/ScriptModuleShutdownEvent.h +++ b/src/mc/world/events/ScriptModuleShutdownEvent.h @@ -24,6 +24,6 @@ struct ScriptModuleShutdownEvent { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/world/events/ScriptingEventCoordinator.h b/src/mc/world/events/ScriptingEventCoordinator.h index d73367a416..06b5b1f0b6 100644 --- a/src/mc/world/events/ScriptingEventCoordinator.h +++ b/src/mc/world/events/ScriptingEventCoordinator.h @@ -38,9 +38,9 @@ class ScriptingEventCoordinator : public ::EventCoordinator<::ScriptingEventList public: // member functions // NOLINTBEGIN - MCAPI ::ScriptingEventHandler& getScriptingEventHandler(); + MCFOLD ::ScriptingEventHandler& getScriptingEventHandler(); - MCAPI void registerScriptingEventHandler(::std::unique_ptr<::ScriptingEventHandler>&& handler); + MCFOLD void registerScriptingEventHandler(::std::unique_ptr<::ScriptingEventHandler>&& handler); MCAPI ::CoordinatorResult sendEvent(::EventRef<::MutableScriptingGameplayEvent<::CoordinatorResult>> event); diff --git a/src/mc/world/events/ScriptingEventListener.h b/src/mc/world/events/ScriptingEventListener.h index 5b7b3852d4..bb6645153c 100644 --- a/src/mc/world/events/ScriptingEventListener.h +++ b/src/mc/world/events/ScriptingEventListener.h @@ -30,7 +30,7 @@ class ScriptingEventListener { public: // virtual function thunks // NOLINTBEGIN - MCAPI ::EventResult $onEvent(::ScriptingNotificationEvent const&); + MCFOLD ::EventResult $onEvent(::ScriptingNotificationEvent const&); // NOLINTEND public: diff --git a/src/mc/world/events/ServerInstanceEventCoordinator.h b/src/mc/world/events/ServerInstanceEventCoordinator.h index f509da292d..cde92984be 100644 --- a/src/mc/world/events/ServerInstanceEventCoordinator.h +++ b/src/mc/world/events/ServerInstanceEventCoordinator.h @@ -34,7 +34,7 @@ class ServerInstanceEventCoordinator : public ::EventCoordinator<::ServerInstanc public: // member functions // NOLINTBEGIN - MCAPI void registerServerInstanceEventHandler(::std::unique_ptr<::ServerInstanceEventHandler>&& handler); + MCFOLD void registerServerInstanceEventHandler(::std::unique_ptr<::ServerInstanceEventHandler>&& handler); MCAPI void sendEvent(::EventRef<::ServerInstanceGameplayEvent> const& event); diff --git a/src/mc/world/events/ServerInstanceEventListener.h b/src/mc/world/events/ServerInstanceEventListener.h index be3ba4e73e..0563bfc35c 100644 --- a/src/mc/world/events/ServerInstanceEventListener.h +++ b/src/mc/world/events/ServerInstanceEventListener.h @@ -70,31 +70,31 @@ class ServerInstanceEventListener { public: // virtual function thunks // NOLINTBEGIN - MCAPI ::EventResult $onServerInitializeStart(::ServerInstance& instance); + MCFOLD ::EventResult $onServerInitializeStart(::ServerInstance& instance); - MCAPI ::EventResult $onServerInitializeEnd(::ServerInstance& instance); + MCFOLD ::EventResult $onServerInitializeEnd(::ServerInstance& instance); - MCAPI ::EventResult $onServerMinecraftInitialized( + MCFOLD ::EventResult $onServerMinecraftInitialized( ::ServerInstance& instance, ::Bedrock::NotNullNonOwnerPtr<::Minecraft> const& minecraft ); - MCAPI ::EventResult $onServerLevelInitialized(::ServerInstance& instance, ::Level& level); + MCFOLD ::EventResult $onServerLevelInitialized(::ServerInstance& instance, ::Level& level); - MCAPI ::EventResult $onServerUpdateStart(::ServerInstance& instance); + MCFOLD ::EventResult $onServerUpdateStart(::ServerInstance& instance); - MCAPI ::EventResult $onServerUpdateEnd(::ServerInstance& instance); + MCFOLD ::EventResult $onServerUpdateEnd(::ServerInstance& instance); - MCAPI ::EventResult $onServerSuspend(::ServerInstance& instance); + MCFOLD ::EventResult $onServerSuspend(::ServerInstance& instance); - MCAPI ::EventResult $onServerResume(::ServerInstance& instance); + MCFOLD ::EventResult $onServerResume(::ServerInstance& instance); - MCAPI ::EventResult $onServerThreadStarted(::ServerInstance& instance); + MCFOLD ::EventResult $onServerThreadStarted(::ServerInstance& instance); - MCAPI ::EventResult $onServerThreadStopped(::ServerInstance& instance); + MCFOLD ::EventResult $onServerThreadStopped(::ServerInstance& instance); - MCAPI ::EventResult $onStartLeaveGame(::ServerInstance& instance); + MCFOLD ::EventResult $onStartLeaveGame(::ServerInstance& instance); - MCAPI ::EventResult $onEvent(::ServerInstanceNotificationEvent const& event); + MCFOLD ::EventResult $onEvent(::ServerInstanceNotificationEvent const& event); // NOLINTEND }; diff --git a/src/mc/world/events/ServerInstanceLeaveGameDoneEvent.h b/src/mc/world/events/ServerInstanceLeaveGameDoneEvent.h index 1fdbc311b1..cae020e2c9 100644 --- a/src/mc/world/events/ServerInstanceLeaveGameDoneEvent.h +++ b/src/mc/world/events/ServerInstanceLeaveGameDoneEvent.h @@ -24,6 +24,6 @@ struct ServerInstanceLeaveGameDoneEvent { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/world/events/ServerInstanceNotificationEvent.h b/src/mc/world/events/ServerInstanceNotificationEvent.h index c2a8f9988c..6cab7dc7e0 100644 --- a/src/mc/world/events/ServerInstanceNotificationEvent.h +++ b/src/mc/world/events/ServerInstanceNotificationEvent.h @@ -22,6 +22,6 @@ struct ServerInstanceNotificationEvent public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/world/events/ServerInstanceRequestResourceReload.h b/src/mc/world/events/ServerInstanceRequestResourceReload.h index fa99b43985..e935e61022 100644 --- a/src/mc/world/events/ServerInstanceRequestResourceReload.h +++ b/src/mc/world/events/ServerInstanceRequestResourceReload.h @@ -24,6 +24,6 @@ struct ServerInstanceRequestResourceReload { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/world/events/ServerNetworkEventCoordinator.h b/src/mc/world/events/ServerNetworkEventCoordinator.h index cce8d5bd40..e11ed4429a 100644 --- a/src/mc/world/events/ServerNetworkEventCoordinator.h +++ b/src/mc/world/events/ServerNetworkEventCoordinator.h @@ -39,9 +39,9 @@ class ServerNetworkEventCoordinator : public ::EventCoordinator<::ServerNetworkE public: // member functions // NOLINTBEGIN - MCAPI ::ServerNetworkEventHandler& getServerNetworkEventHandler(); + MCFOLD ::ServerNetworkEventHandler& getServerNetworkEventHandler(); - MCAPI void registerServerNetworkEventHandler(::std::unique_ptr<::ServerNetworkEventHandler>&& handler); + MCFOLD void registerServerNetworkEventHandler(::std::unique_ptr<::ServerNetworkEventHandler>&& handler); MCAPI void sendDiagnostics(::DiagnosticsEvent& diagnosticsEvent); diff --git a/src/mc/world/events/ServerNetworkEventListener.h b/src/mc/world/events/ServerNetworkEventListener.h index e58bd3cb37..bb7c2ae084 100644 --- a/src/mc/world/events/ServerNetworkEventListener.h +++ b/src/mc/world/events/ServerNetworkEventListener.h @@ -38,11 +38,11 @@ class ServerNetworkEventListener { public: // virtual function thunks // NOLINTBEGIN - MCAPI ::EventResult $onEvent(::ServerNetworkGameplayNotificationEvent const&); + MCFOLD ::EventResult $onEvent(::ServerNetworkGameplayNotificationEvent const&); - MCAPI ::EventResult $onMessage(::MessageEvent const&); + MCFOLD ::EventResult $onMessage(::MessageEvent const&); - MCAPI ::EventResult $onDiagnostics(::DiagnosticsEvent const&); + MCFOLD ::EventResult $onDiagnostics(::DiagnosticsEvent const&); // NOLINTEND public: diff --git a/src/mc/world/events/ServerNetworkGameplayNotificationEvent.h b/src/mc/world/events/ServerNetworkGameplayNotificationEvent.h index 932213ab08..a395fe88c9 100644 --- a/src/mc/world/events/ServerNetworkGameplayNotificationEvent.h +++ b/src/mc/world/events/ServerNetworkGameplayNotificationEvent.h @@ -23,6 +23,6 @@ struct ServerNetworkGameplayNotificationEvent public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/world/events/TargetBlockHitEvent.h b/src/mc/world/events/TargetBlockHitEvent.h index ed89f73e9b..77c0986c5f 100644 --- a/src/mc/world/events/TargetBlockHitEvent.h +++ b/src/mc/world/events/TargetBlockHitEvent.h @@ -29,6 +29,6 @@ struct TargetBlockHitEvent { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/world/events/gameevents/GameEvent.h b/src/mc/world/events/gameevents/GameEvent.h index b868c09c6c..0b5d3d29d3 100644 --- a/src/mc/world/events/gameevents/GameEvent.h +++ b/src/mc/world/events/gameevents/GameEvent.h @@ -22,6 +22,6 @@ class GameEvent { public: // member functions // NOLINTBEGIN - MCAPI ::GameEventConfig::GameEventType const getType() const; + MCFOLD ::GameEventConfig::GameEventType const getType() const; // NOLINTEND }; diff --git a/src/mc/world/events/gameevents/GameEventListener.h b/src/mc/world/events/gameevents/GameEventListener.h index 155b89711b..f245933f24 100644 --- a/src/mc/world/events/gameevents/GameEventListener.h +++ b/src/mc/world/events/gameevents/GameEventListener.h @@ -46,6 +46,6 @@ class GameEventListener { public: // virtual function thunks // NOLINTBEGIN - MCAPI ::GameEventListener::DeliveryMode $getDeliveryMode() const; + MCFOLD ::GameEventListener::DeliveryMode $getDeliveryMode() const; // NOLINTEND }; diff --git a/src/mc/world/events/gameevents/GameEventPair.h b/src/mc/world/events/gameevents/GameEventPair.h index f611caf6dd..7d806ce2bd 100644 --- a/src/mc/world/events/gameevents/GameEventPair.h +++ b/src/mc/world/events/gameevents/GameEventPair.h @@ -25,6 +25,6 @@ struct GameEventPair { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/world/events/gameevents/VibrationListener.h b/src/mc/world/events/gameevents/VibrationListener.h index 691c8d316a..96b389b1e0 100644 --- a/src/mc/world/events/gameevents/VibrationListener.h +++ b/src/mc/world/events/gameevents/VibrationListener.h @@ -13,7 +13,9 @@ class CompoundTag; class DataLoadHelper; class GameEvent; class Vec3; +class VibrationInfo; class VibrationListenerConfig; +class VibrationSelector; struct GameEventContext; namespace GameEvents { class PositionSource; } // clang-format on @@ -31,22 +33,16 @@ class VibrationListener : public ::GameEventListener { public: // member variables // NOLINTBEGIN - ::ll::UntypedStorage<8, 72> mUnk9fe2da; - ::ll::UntypedStorage<8, 8> mUnkc1ec6a; - ::ll::UntypedStorage<8, 24> mUnke9d03d; - ::ll::UntypedStorage<4, 4> mUnk26b475; - ::ll::UntypedStorage<4, 4> mUnk9c2a5f; - ::ll::UntypedStorage<8, 64> mUnk7a6332; - ::ll::UntypedStorage<4, 4> mUnkf5cdb0; - ::ll::UntypedStorage<8, 8> mUnk2d3f25; + ::ll::TypedStorage<8, 72, ::VibrationSelector> mVibrationSelector; + ::ll::TypedStorage<8, 8, ::std::unique_ptr<::VibrationListenerConfig>> mConfig; + ::ll::TypedStorage<8, 24, ::GameEvents::PositionSource> mPositionSource; + ::ll::TypedStorage<4, 4, ::VibrationListener::OwnerType> mOwnerType; + ::ll::TypedStorage<4, 4, uint> mRange; + ::ll::TypedStorage<8, 64, ::std::optional<::VibrationInfo>> mInFlightVibrationInfo; + ::ll::TypedStorage<4, 4, int> mInFlightVibrationTicks; + ::ll::TypedStorage<8, 8, ::std::reference_wrapper<::GameEvent const>> mLatestReceivedVibration; // NOLINTEND -public: - // prevent constructor by default - VibrationListener& operator=(VibrationListener const&); - VibrationListener(VibrationListener const&); - VibrationListener(); - public: // virtual functions // NOLINTBEGIN @@ -88,7 +84,7 @@ class VibrationListener : public ::GameEventListener { ::Vec3 const& sensorPos ); - MCAPI ::GameEvent const& getLatestReceivedVibration() const; + MCFOLD ::GameEvent const& getLatestReceivedVibration() const; MCAPI void load(::CompoundTag const& tag, ::DataLoadHelper& dataLoadHelper); @@ -132,9 +128,9 @@ class VibrationListener : public ::GameEventListener { MCAPI void $handleGameEvent(::GameEvent const& gameEvent, ::GameEventContext const& gameEventContext, ::BlockSource& region); - MCAPI uint $getRange() const; + MCFOLD uint $getRange() const; - MCAPI ::GameEvents::PositionSource const& $getPositionSource() const; + MCFOLD ::GameEvents::PositionSource const& $getPositionSource() const; // NOLINTEND public: diff --git a/src/mc/world/events/gameevents/VibrationListenerConfig.h b/src/mc/world/events/gameevents/VibrationListenerConfig.h index b0b991ddb3..6b6c8f3109 100644 --- a/src/mc/world/events/gameevents/VibrationListenerConfig.h +++ b/src/mc/world/events/gameevents/VibrationListenerConfig.h @@ -46,8 +46,8 @@ class VibrationListenerConfig { // NOLINTBEGIN MCAPI bool $isValidVibration(::GameEvent const& gameEvent); - MCAPI void $onSerializableDataChanged(::BlockSource&); + MCFOLD void $onSerializableDataChanged(::BlockSource&); - MCAPI bool $canReceiveOnlyIfAdjacentChunksAreTicking() const; + MCFOLD bool $canReceiveOnlyIfAdjacentChunksAreTicking() const; // NOLINTEND }; diff --git a/src/mc/world/filters/ActorBoolPropertyTest.h b/src/mc/world/filters/ActorBoolPropertyTest.h index 805984c425..74326de6b2 100644 --- a/src/mc/world/filters/ActorBoolPropertyTest.h +++ b/src/mc/world/filters/ActorBoolPropertyTest.h @@ -51,7 +51,7 @@ class ActorBoolPropertyTest : public ::FilterTest { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND public: @@ -63,9 +63,9 @@ class ActorBoolPropertyTest : public ::FilterTest { MCAPI ::std::string_view $getName() const; - MCAPI ::Json::Value $_serializeValue() const; + MCFOLD ::Json::Value $_serializeValue() const; - MCAPI ::Json::Value $_serializeDomain() const; + MCFOLD ::Json::Value $_serializeDomain() const; // NOLINTEND public: diff --git a/src/mc/world/filters/ActorEnumPropertyTest.h b/src/mc/world/filters/ActorEnumPropertyTest.h index a94dced6a5..6544118565 100644 --- a/src/mc/world/filters/ActorEnumPropertyTest.h +++ b/src/mc/world/filters/ActorEnumPropertyTest.h @@ -63,7 +63,7 @@ class ActorEnumPropertyTest : public ::FilterTest { MCAPI ::std::string_view $getName() const; - MCAPI ::Json::Value $_serializeValue() const; + MCFOLD ::Json::Value $_serializeValue() const; MCAPI ::Json::Value $_serializeDomain() const; // NOLINTEND diff --git a/src/mc/world/filters/ActorFloatPropertyTest.h b/src/mc/world/filters/ActorFloatPropertyTest.h index 748ccda470..3e01371746 100644 --- a/src/mc/world/filters/ActorFloatPropertyTest.h +++ b/src/mc/world/filters/ActorFloatPropertyTest.h @@ -51,7 +51,7 @@ class ActorFloatPropertyTest : public ::FilterTest { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND public: @@ -63,9 +63,9 @@ class ActorFloatPropertyTest : public ::FilterTest { MCAPI ::std::string_view $getName() const; - MCAPI ::Json::Value $_serializeValue() const; + MCFOLD ::Json::Value $_serializeValue() const; - MCAPI ::Json::Value $_serializeDomain() const; + MCFOLD ::Json::Value $_serializeDomain() const; // NOLINTEND public: diff --git a/src/mc/world/filters/ActorHasAbilityTest.h b/src/mc/world/filters/ActorHasAbilityTest.h index 02cb49fa41..1d27df6a5f 100644 --- a/src/mc/world/filters/ActorHasAbilityTest.h +++ b/src/mc/world/filters/ActorHasAbilityTest.h @@ -27,7 +27,7 @@ class ActorHasAbilityTest : public ::SimpleIntFilterTest { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND public: diff --git a/src/mc/world/filters/ActorHasAllSlotsEmptyTest.h b/src/mc/world/filters/ActorHasAllSlotsEmptyTest.h index e07a35da46..c3d1c85116 100644 --- a/src/mc/world/filters/ActorHasAllSlotsEmptyTest.h +++ b/src/mc/world/filters/ActorHasAllSlotsEmptyTest.h @@ -47,19 +47,19 @@ class ActorHasAllSlotsEmptyTest : public ::FilterTest { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND public: // virtual function thunks // NOLINTBEGIN - MCAPI bool $setup(::FilterTest::Definition const& definition, ::FilterInputs const& inputs); + MCFOLD bool $setup(::FilterTest::Definition const& definition, ::FilterInputs const& inputs); MCAPI bool $evaluate(::FilterContext const& context) const; MCAPI ::std::string_view $getName() const; - MCAPI ::Json::Value $_serializeValue() const; + MCFOLD ::Json::Value $_serializeValue() const; // NOLINTEND public: diff --git a/src/mc/world/filters/ActorHasAnySlotEmptyTest.h b/src/mc/world/filters/ActorHasAnySlotEmptyTest.h index 01d4f3dc8a..436558aa76 100644 --- a/src/mc/world/filters/ActorHasAnySlotEmptyTest.h +++ b/src/mc/world/filters/ActorHasAnySlotEmptyTest.h @@ -47,19 +47,19 @@ class ActorHasAnySlotEmptyTest : public ::FilterTest { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND public: // virtual function thunks // NOLINTBEGIN - MCAPI bool $setup(::FilterTest::Definition const& definition, ::FilterInputs const& inputs); + MCFOLD bool $setup(::FilterTest::Definition const& definition, ::FilterInputs const& inputs); MCAPI bool $evaluate(::FilterContext const& context) const; MCAPI ::std::string_view $getName() const; - MCAPI ::Json::Value $_serializeValue() const; + MCFOLD ::Json::Value $_serializeValue() const; // NOLINTEND public: diff --git a/src/mc/world/filters/ActorHasComponentTest.h b/src/mc/world/filters/ActorHasComponentTest.h index d845818ffc..d67f870d98 100644 --- a/src/mc/world/filters/ActorHasComponentTest.h +++ b/src/mc/world/filters/ActorHasComponentTest.h @@ -27,7 +27,7 @@ class ActorHasComponentTest : public ::SimpleHashStringFilterTest { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND public: diff --git a/src/mc/world/filters/ActorHasContainerOpenTest.h b/src/mc/world/filters/ActorHasContainerOpenTest.h index 97b9302489..f93e004dc4 100644 --- a/src/mc/world/filters/ActorHasContainerOpenTest.h +++ b/src/mc/world/filters/ActorHasContainerOpenTest.h @@ -27,7 +27,7 @@ class ActorHasContainerOpenTest : public ::SimpleBoolFilterTest { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND public: diff --git a/src/mc/world/filters/ActorHasDamageTest.h b/src/mc/world/filters/ActorHasDamageTest.h index 8d1dd25b0b..45ec82c343 100644 --- a/src/mc/world/filters/ActorHasDamageTest.h +++ b/src/mc/world/filters/ActorHasDamageTest.h @@ -27,7 +27,7 @@ class ActorHasDamageTest : public ::SimpleIntFilterTest { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND public: diff --git a/src/mc/world/filters/ActorHasDamagedEquipmentTest.h b/src/mc/world/filters/ActorHasDamagedEquipmentTest.h index 6381daaeaa..8dce16dab5 100644 --- a/src/mc/world/filters/ActorHasDamagedEquipmentTest.h +++ b/src/mc/world/filters/ActorHasDamagedEquipmentTest.h @@ -27,7 +27,7 @@ class ActorHasDamagedEquipmentTest : public ::ActorHasEquipmentTest { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND public: diff --git a/src/mc/world/filters/ActorHasEquipmentTest.h b/src/mc/world/filters/ActorHasEquipmentTest.h index 6b9bc4a93a..204503673b 100644 --- a/src/mc/world/filters/ActorHasEquipmentTest.h +++ b/src/mc/world/filters/ActorHasEquipmentTest.h @@ -55,7 +55,7 @@ class ActorHasEquipmentTest : public ::FilterTest { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND public: diff --git a/src/mc/world/filters/ActorHasMobEffect.h b/src/mc/world/filters/ActorHasMobEffect.h index a83b4927cd..1b6b6e58ff 100644 --- a/src/mc/world/filters/ActorHasMobEffect.h +++ b/src/mc/world/filters/ActorHasMobEffect.h @@ -47,7 +47,7 @@ class ActorHasMobEffect : public ::FilterTest { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND public: diff --git a/src/mc/world/filters/ActorHasPropertyTest.h b/src/mc/world/filters/ActorHasPropertyTest.h index 39a938ce85..a744093294 100644 --- a/src/mc/world/filters/ActorHasPropertyTest.h +++ b/src/mc/world/filters/ActorHasPropertyTest.h @@ -47,19 +47,19 @@ class ActorHasPropertyTest : public ::FilterTest { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND public: // virtual function thunks // NOLINTBEGIN - MCAPI bool $setup(::FilterTest::Definition const& definition, ::FilterInputs const& inputs); + MCFOLD bool $setup(::FilterTest::Definition const& definition, ::FilterInputs const& inputs); MCAPI bool $evaluate(::FilterContext const& context) const; MCAPI ::std::string_view $getName() const; - MCAPI ::Json::Value $_serializeValue() const; + MCFOLD ::Json::Value $_serializeValue() const; // NOLINTEND public: diff --git a/src/mc/world/filters/ActorHasRangedWeaponTest.h b/src/mc/world/filters/ActorHasRangedWeaponTest.h index b7b730bdae..a1f09984c8 100644 --- a/src/mc/world/filters/ActorHasRangedWeaponTest.h +++ b/src/mc/world/filters/ActorHasRangedWeaponTest.h @@ -27,7 +27,7 @@ class ActorHasRangedWeaponTest : public ::SimpleBoolFilterTest { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND public: diff --git a/src/mc/world/filters/ActorHasSneakHeldTest.h b/src/mc/world/filters/ActorHasSneakHeldTest.h index b4ac2acf63..725c18ba83 100644 --- a/src/mc/world/filters/ActorHasSneakHeldTest.h +++ b/src/mc/world/filters/ActorHasSneakHeldTest.h @@ -27,7 +27,7 @@ class ActorHasSneakHeldTest : public ::SimpleBoolFilterTest { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND public: diff --git a/src/mc/world/filters/ActorHasTagTest.h b/src/mc/world/filters/ActorHasTagTest.h index 6a66e6f31f..83a9847ffb 100644 --- a/src/mc/world/filters/ActorHasTagTest.h +++ b/src/mc/world/filters/ActorHasTagTest.h @@ -27,7 +27,7 @@ class ActorHasTagTest : public ::SimpleHashStringFilterTest { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND public: diff --git a/src/mc/world/filters/ActorHasTargetTest.h b/src/mc/world/filters/ActorHasTargetTest.h index 77d8b5f6a2..caac517017 100644 --- a/src/mc/world/filters/ActorHasTargetTest.h +++ b/src/mc/world/filters/ActorHasTargetTest.h @@ -27,7 +27,7 @@ class ActorHasTargetTest : public ::SimpleBoolFilterTest { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND public: diff --git a/src/mc/world/filters/ActorInBlockTest.h b/src/mc/world/filters/ActorInBlockTest.h index 8a512693f9..9549039ba8 100644 --- a/src/mc/world/filters/ActorInBlockTest.h +++ b/src/mc/world/filters/ActorInBlockTest.h @@ -27,7 +27,7 @@ class ActorInBlockTest : public ::SimpleHashStringFilterTest { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND public: diff --git a/src/mc/world/filters/ActorInCaravanTest.h b/src/mc/world/filters/ActorInCaravanTest.h index 4d7e6fb905..cb15b1d64f 100644 --- a/src/mc/world/filters/ActorInCaravanTest.h +++ b/src/mc/world/filters/ActorInCaravanTest.h @@ -27,7 +27,7 @@ class ActorInCaravanTest : public ::SimpleBoolFilterTest { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND public: diff --git a/src/mc/world/filters/ActorInCloudsTest.h b/src/mc/world/filters/ActorInCloudsTest.h index 15cffe68b3..f96af67347 100644 --- a/src/mc/world/filters/ActorInCloudsTest.h +++ b/src/mc/world/filters/ActorInCloudsTest.h @@ -27,7 +27,7 @@ class ActorInCloudsTest : public ::SimpleBoolFilterTest { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND public: diff --git a/src/mc/world/filters/ActorInContactWithWater.h b/src/mc/world/filters/ActorInContactWithWater.h index ea744948b6..c60cd2a135 100644 --- a/src/mc/world/filters/ActorInContactWithWater.h +++ b/src/mc/world/filters/ActorInContactWithWater.h @@ -27,7 +27,7 @@ class ActorInContactWithWater : public ::SimpleBoolFilterTest { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND public: diff --git a/src/mc/world/filters/ActorInLavaTest.h b/src/mc/world/filters/ActorInLavaTest.h index aecacee371..434ef46b92 100644 --- a/src/mc/world/filters/ActorInLavaTest.h +++ b/src/mc/world/filters/ActorInLavaTest.h @@ -27,7 +27,7 @@ class ActorInLavaTest : public ::SimpleBoolFilterTest { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND public: diff --git a/src/mc/world/filters/ActorInNetherTest.h b/src/mc/world/filters/ActorInNetherTest.h index f38043147d..2214dfc38a 100644 --- a/src/mc/world/filters/ActorInNetherTest.h +++ b/src/mc/world/filters/ActorInNetherTest.h @@ -27,7 +27,7 @@ class ActorInNetherTest : public ::SimpleBoolFilterTest { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND public: diff --git a/src/mc/world/filters/ActorInOverworldTest.h b/src/mc/world/filters/ActorInOverworldTest.h index b4996bd200..4fc7b14cea 100644 --- a/src/mc/world/filters/ActorInOverworldTest.h +++ b/src/mc/world/filters/ActorInOverworldTest.h @@ -27,7 +27,7 @@ class ActorInOverworldTest : public ::SimpleBoolFilterTest { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND public: diff --git a/src/mc/world/filters/ActorInVillageTest.h b/src/mc/world/filters/ActorInVillageTest.h index dda97b8fe0..77edd810eb 100644 --- a/src/mc/world/filters/ActorInVillageTest.h +++ b/src/mc/world/filters/ActorInVillageTest.h @@ -27,7 +27,7 @@ class ActorInVillageTest : public ::SimpleBoolFilterTest { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND public: diff --git a/src/mc/world/filters/ActorInWaterOrRainTest.h b/src/mc/world/filters/ActorInWaterOrRainTest.h index 4e1e1eeabf..b1bb5b4c67 100644 --- a/src/mc/world/filters/ActorInWaterOrRainTest.h +++ b/src/mc/world/filters/ActorInWaterOrRainTest.h @@ -27,7 +27,7 @@ class ActorInWaterOrRainTest : public ::SimpleBoolFilterTest { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND public: diff --git a/src/mc/world/filters/ActorInWaterTest.h b/src/mc/world/filters/ActorInWaterTest.h index 4053f5dad8..5d1cffb469 100644 --- a/src/mc/world/filters/ActorInWaterTest.h +++ b/src/mc/world/filters/ActorInWaterTest.h @@ -27,7 +27,7 @@ class ActorInWaterTest : public ::SimpleBoolFilterTest { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND public: diff --git a/src/mc/world/filters/ActorInWeatherTest.h b/src/mc/world/filters/ActorInWeatherTest.h index c763b73f80..0b631fa1c7 100644 --- a/src/mc/world/filters/ActorInWeatherTest.h +++ b/src/mc/world/filters/ActorInWeatherTest.h @@ -69,7 +69,7 @@ class ActorInWeatherTest : public ::FilterTest { MCAPI ::std::string_view $getName() const; - MCAPI ::Json::Value $_serializeValue() const; + MCFOLD ::Json::Value $_serializeValue() const; // NOLINTEND public: diff --git a/src/mc/world/filters/ActorIntPropertyTest.h b/src/mc/world/filters/ActorIntPropertyTest.h index 9b1a959445..e489c40cdc 100644 --- a/src/mc/world/filters/ActorIntPropertyTest.h +++ b/src/mc/world/filters/ActorIntPropertyTest.h @@ -51,7 +51,7 @@ class ActorIntPropertyTest : public ::FilterTest { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND public: @@ -63,9 +63,9 @@ class ActorIntPropertyTest : public ::FilterTest { MCAPI ::std::string_view $getName() const; - MCAPI ::Json::Value $_serializeValue() const; + MCFOLD ::Json::Value $_serializeValue() const; - MCAPI ::Json::Value $_serializeDomain() const; + MCFOLD ::Json::Value $_serializeDomain() const; // NOLINTEND public: diff --git a/src/mc/world/filters/ActorIsAvoidingMobsTest.h b/src/mc/world/filters/ActorIsAvoidingMobsTest.h index 75de7e6bce..608481ed42 100644 --- a/src/mc/world/filters/ActorIsAvoidingMobsTest.h +++ b/src/mc/world/filters/ActorIsAvoidingMobsTest.h @@ -27,7 +27,7 @@ class ActorIsAvoidingMobsTest : public ::SimpleBoolFilterTest { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND public: diff --git a/src/mc/world/filters/ActorIsBabyTest.h b/src/mc/world/filters/ActorIsBabyTest.h index b6ea018e1c..9e4c0d0c19 100644 --- a/src/mc/world/filters/ActorIsBabyTest.h +++ b/src/mc/world/filters/ActorIsBabyTest.h @@ -27,7 +27,7 @@ class ActorIsBabyTest : public ::SimpleBoolFilterTest { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND public: diff --git a/src/mc/world/filters/ActorIsClimbingTest.h b/src/mc/world/filters/ActorIsClimbingTest.h index 8087720371..770fb72c57 100644 --- a/src/mc/world/filters/ActorIsClimbingTest.h +++ b/src/mc/world/filters/ActorIsClimbingTest.h @@ -27,7 +27,7 @@ class ActorIsClimbingTest : public ::SimpleBoolFilterTest { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND public: diff --git a/src/mc/world/filters/ActorIsColorTest.h b/src/mc/world/filters/ActorIsColorTest.h index 1c00fa1372..4b7d212f83 100644 --- a/src/mc/world/filters/ActorIsColorTest.h +++ b/src/mc/world/filters/ActorIsColorTest.h @@ -27,7 +27,7 @@ class ActorIsColorTest : public ::SimpleIntFilterTest { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND public: diff --git a/src/mc/world/filters/ActorIsFamilyTest.h b/src/mc/world/filters/ActorIsFamilyTest.h index 6ea34d2ed0..1b421ee99e 100644 --- a/src/mc/world/filters/ActorIsFamilyTest.h +++ b/src/mc/world/filters/ActorIsFamilyTest.h @@ -27,7 +27,7 @@ class ActorIsFamilyTest : public ::SimpleHashStringFilterTest { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND public: diff --git a/src/mc/world/filters/ActorIsImmobileTest.h b/src/mc/world/filters/ActorIsImmobileTest.h index 7120f29723..5a7a195e50 100644 --- a/src/mc/world/filters/ActorIsImmobileTest.h +++ b/src/mc/world/filters/ActorIsImmobileTest.h @@ -27,7 +27,7 @@ class ActorIsImmobileTest : public ::SimpleBoolFilterTest { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND public: diff --git a/src/mc/world/filters/ActorIsLeashedTest.h b/src/mc/world/filters/ActorIsLeashedTest.h index 63f4495788..e9f2b7d985 100644 --- a/src/mc/world/filters/ActorIsLeashedTest.h +++ b/src/mc/world/filters/ActorIsLeashedTest.h @@ -27,7 +27,7 @@ class ActorIsLeashedTest : public ::SimpleBoolFilterTest { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND public: diff --git a/src/mc/world/filters/ActorIsLeashedToTest.h b/src/mc/world/filters/ActorIsLeashedToTest.h index d49f171189..7b932616b0 100644 --- a/src/mc/world/filters/ActorIsLeashedToTest.h +++ b/src/mc/world/filters/ActorIsLeashedToTest.h @@ -27,7 +27,7 @@ class ActorIsLeashedToTest : public ::SimpleBoolFilterTest { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND public: diff --git a/src/mc/world/filters/ActorIsMarkVariantTest.h b/src/mc/world/filters/ActorIsMarkVariantTest.h index 065b5567ee..bb1f00cb62 100644 --- a/src/mc/world/filters/ActorIsMarkVariantTest.h +++ b/src/mc/world/filters/ActorIsMarkVariantTest.h @@ -27,7 +27,7 @@ class ActorIsMarkVariantTest : public ::SimpleIntFilterTest { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND public: diff --git a/src/mc/world/filters/ActorIsMovingTest.h b/src/mc/world/filters/ActorIsMovingTest.h index d65c623a82..cc12a47d8d 100644 --- a/src/mc/world/filters/ActorIsMovingTest.h +++ b/src/mc/world/filters/ActorIsMovingTest.h @@ -27,7 +27,7 @@ class ActorIsMovingTest : public ::SimpleBoolFilterTest { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND public: diff --git a/src/mc/world/filters/ActorIsOwnerTest.h b/src/mc/world/filters/ActorIsOwnerTest.h index 13037c8083..4fda0a9e44 100644 --- a/src/mc/world/filters/ActorIsOwnerTest.h +++ b/src/mc/world/filters/ActorIsOwnerTest.h @@ -27,7 +27,7 @@ class ActorIsOwnerTest : public ::SimpleBoolFilterTest { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND public: diff --git a/src/mc/world/filters/ActorIsRidingTest.h b/src/mc/world/filters/ActorIsRidingTest.h index f398313ec8..2f949bebd8 100644 --- a/src/mc/world/filters/ActorIsRidingTest.h +++ b/src/mc/world/filters/ActorIsRidingTest.h @@ -27,7 +27,7 @@ class ActorIsRidingTest : public ::SimpleBoolFilterTest { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND public: diff --git a/src/mc/world/filters/ActorIsSkinIDTest.h b/src/mc/world/filters/ActorIsSkinIDTest.h index 403a359c84..dd2d80a129 100644 --- a/src/mc/world/filters/ActorIsSkinIDTest.h +++ b/src/mc/world/filters/ActorIsSkinIDTest.h @@ -27,7 +27,7 @@ class ActorIsSkinIDTest : public ::SimpleIntFilterTest { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND public: diff --git a/src/mc/world/filters/ActorIsSleepingTest.h b/src/mc/world/filters/ActorIsSleepingTest.h index ebfb66e480..afdbb3f6a6 100644 --- a/src/mc/world/filters/ActorIsSleepingTest.h +++ b/src/mc/world/filters/ActorIsSleepingTest.h @@ -27,7 +27,7 @@ class ActorIsSleepingTest : public ::SimpleBoolFilterTest { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND public: diff --git a/src/mc/world/filters/ActorIsSneakingTest.h b/src/mc/world/filters/ActorIsSneakingTest.h index 694cab5b3c..f6e5de33b2 100644 --- a/src/mc/world/filters/ActorIsSneakingTest.h +++ b/src/mc/world/filters/ActorIsSneakingTest.h @@ -27,7 +27,7 @@ class ActorIsSneakingTest : public ::SimpleBoolFilterTest { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND public: diff --git a/src/mc/world/filters/ActorIsTargetTest.h b/src/mc/world/filters/ActorIsTargetTest.h index b4a428cb18..1a04d000bc 100644 --- a/src/mc/world/filters/ActorIsTargetTest.h +++ b/src/mc/world/filters/ActorIsTargetTest.h @@ -27,7 +27,7 @@ class ActorIsTargetTest : public ::SimpleBoolFilterTest { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND public: diff --git a/src/mc/world/filters/ActorIsVariantTest.h b/src/mc/world/filters/ActorIsVariantTest.h index 6b3eeb99d9..bd3c850617 100644 --- a/src/mc/world/filters/ActorIsVariantTest.h +++ b/src/mc/world/filters/ActorIsVariantTest.h @@ -27,7 +27,7 @@ class ActorIsVariantTest : public ::SimpleIntFilterTest { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND public: diff --git a/src/mc/world/filters/ActorIsVisibleTest.h b/src/mc/world/filters/ActorIsVisibleTest.h index dda1419a52..97dcff985e 100644 --- a/src/mc/world/filters/ActorIsVisibleTest.h +++ b/src/mc/world/filters/ActorIsVisibleTest.h @@ -27,7 +27,7 @@ class ActorIsVisibleTest : public ::SimpleBoolFilterTest { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND public: diff --git a/src/mc/world/filters/ActorOnGroundTest.h b/src/mc/world/filters/ActorOnGroundTest.h index 037ff7f934..178d140441 100644 --- a/src/mc/world/filters/ActorOnGroundTest.h +++ b/src/mc/world/filters/ActorOnGroundTest.h @@ -27,7 +27,7 @@ class ActorOnGroundTest : public ::SimpleBoolFilterTest { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND public: diff --git a/src/mc/world/filters/ActorOnLadderTest.h b/src/mc/world/filters/ActorOnLadderTest.h index 6c2861c414..8adfec3427 100644 --- a/src/mc/world/filters/ActorOnLadderTest.h +++ b/src/mc/world/filters/ActorOnLadderTest.h @@ -27,7 +27,7 @@ class ActorOnLadderTest : public ::SimpleBoolFilterTest { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND public: diff --git a/src/mc/world/filters/ActorPassengerCountTest.h b/src/mc/world/filters/ActorPassengerCountTest.h index c9abd5fb48..7e06275772 100644 --- a/src/mc/world/filters/ActorPassengerCountTest.h +++ b/src/mc/world/filters/ActorPassengerCountTest.h @@ -27,7 +27,7 @@ class ActorPassengerCountTest : public ::SimpleIntFilterTest { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND public: diff --git a/src/mc/world/filters/ActorTrustsSubjectTest.h b/src/mc/world/filters/ActorTrustsSubjectTest.h index e534cde05f..d7460f0d50 100644 --- a/src/mc/world/filters/ActorTrustsSubjectTest.h +++ b/src/mc/world/filters/ActorTrustsSubjectTest.h @@ -27,7 +27,7 @@ class ActorTrustsSubjectTest : public ::SimpleBoolFilterTest { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND public: diff --git a/src/mc/world/filters/ActorUndergroundTest.h b/src/mc/world/filters/ActorUndergroundTest.h index 6af65da679..bb3895b8a8 100644 --- a/src/mc/world/filters/ActorUndergroundTest.h +++ b/src/mc/world/filters/ActorUndergroundTest.h @@ -27,7 +27,7 @@ class ActorUndergroundTest : public ::SimpleBoolFilterTest { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND public: diff --git a/src/mc/world/filters/ActorUnderwaterTest.h b/src/mc/world/filters/ActorUnderwaterTest.h index 6a6413ed5d..2845517f14 100644 --- a/src/mc/world/filters/ActorUnderwaterTest.h +++ b/src/mc/world/filters/ActorUnderwaterTest.h @@ -27,7 +27,7 @@ class ActorUnderwaterTest : public ::SimpleBoolFilterTest { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND public: diff --git a/src/mc/world/filters/FilterGroup.h b/src/mc/world/filters/FilterGroup.h index 2e8cbb33e2..b1ba08547c 100644 --- a/src/mc/world/filters/FilterGroup.h +++ b/src/mc/world/filters/FilterGroup.h @@ -97,9 +97,9 @@ class FilterGroup { MCAPI void fillFromData(::SharedTypes::v1_21_20::FilterGroupData const& filterGroupData); - MCAPI ::std::vector<::std::shared_ptr<::FilterGroup>> const& getChildren() const; + MCFOLD ::std::vector<::std::shared_ptr<::FilterGroup>> const& getChildren() const; - MCAPI ::std::vector<::std::shared_ptr<::FilterTest>> const& getMembers() const; + MCFOLD ::std::vector<::std::shared_ptr<::FilterTest>> const& getMembers() const; MCAPI void serialize(::Json::Value& jsonVal) const; // NOLINTEND diff --git a/src/mc/world/filters/FilterInput.h b/src/mc/world/filters/FilterInput.h index 7c5d9ef7eb..11138ccfc9 100644 --- a/src/mc/world/filters/FilterInput.h +++ b/src/mc/world/filters/FilterInput.h @@ -38,6 +38,6 @@ class FilterInput { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/world/filters/FilterInputDefinition.h b/src/mc/world/filters/FilterInputDefinition.h index 88e503ee96..3e1344374d 100644 --- a/src/mc/world/filters/FilterInputDefinition.h +++ b/src/mc/world/filters/FilterInputDefinition.h @@ -38,6 +38,6 @@ struct FilterInputDefinition { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/world/filters/FilterInputs.h b/src/mc/world/filters/FilterInputs.h index 3f9b5fd98e..323b9258e2 100644 --- a/src/mc/world/filters/FilterInputs.h +++ b/src/mc/world/filters/FilterInputs.h @@ -50,6 +50,6 @@ struct FilterInputs { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/world/filters/FilterStringMap.h b/src/mc/world/filters/FilterStringMap.h index 55ead860e1..a17cf43ff7 100644 --- a/src/mc/world/filters/FilterStringMap.h +++ b/src/mc/world/filters/FilterStringMap.h @@ -28,6 +28,6 @@ struct FilterStringMap : public ::std::unordered_map<::std::string, ::FilterInpu public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/world/filters/FilterTest.h b/src/mc/world/filters/FilterTest.h index 7c579df8bc..18da3cc1e1 100644 --- a/src/mc/world/filters/FilterTest.h +++ b/src/mc/world/filters/FilterTest.h @@ -99,7 +99,7 @@ class FilterTest { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND public: @@ -107,9 +107,9 @@ class FilterTest { // NOLINTBEGIN MCAPI bool $setup(::FilterTest::Definition const& definition, ::FilterInputs const& inputs); - MCAPI void $finalizeParsedValue(::IWorldRegistriesProvider& registries); + MCFOLD void $finalizeParsedValue(::IWorldRegistriesProvider& registries); - MCAPI ::Json::Value $_serializeDomain() const; + MCFOLD ::Json::Value $_serializeDomain() const; // NOLINTEND public: diff --git a/src/mc/world/filters/FilterTestAltitude.h b/src/mc/world/filters/FilterTestAltitude.h index 2ce0252dfc..760dffa2d7 100644 --- a/src/mc/world/filters/FilterTestAltitude.h +++ b/src/mc/world/filters/FilterTestAltitude.h @@ -27,7 +27,7 @@ class FilterTestAltitude : public ::SimpleIntFilterTest { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND public: diff --git a/src/mc/world/filters/FilterTestBiome.h b/src/mc/world/filters/FilterTestBiome.h index fb4b44b849..70beae74d7 100644 --- a/src/mc/world/filters/FilterTestBiome.h +++ b/src/mc/world/filters/FilterTestBiome.h @@ -27,7 +27,7 @@ class FilterTestBiome : public ::SimpleIntFilterTest { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND public: diff --git a/src/mc/world/filters/FilterTestBiomeHumid.h b/src/mc/world/filters/FilterTestBiomeHumid.h index 94df0fce67..7d2f2d1ea1 100644 --- a/src/mc/world/filters/FilterTestBiomeHumid.h +++ b/src/mc/world/filters/FilterTestBiomeHumid.h @@ -27,7 +27,7 @@ class FilterTestBiomeHumid : public ::SimpleBoolFilterTest { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND public: diff --git a/src/mc/world/filters/FilterTestBiomeSnowCovered.h b/src/mc/world/filters/FilterTestBiomeSnowCovered.h index 36edd5b839..db8651ab91 100644 --- a/src/mc/world/filters/FilterTestBiomeSnowCovered.h +++ b/src/mc/world/filters/FilterTestBiomeSnowCovered.h @@ -27,7 +27,7 @@ class FilterTestBiomeSnowCovered : public ::SimpleBoolFilterTest { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND public: diff --git a/src/mc/world/filters/FilterTestBrightness.h b/src/mc/world/filters/FilterTestBrightness.h index d806c45c58..b5f0aa4762 100644 --- a/src/mc/world/filters/FilterTestBrightness.h +++ b/src/mc/world/filters/FilterTestBrightness.h @@ -27,7 +27,7 @@ class FilterTestBrightness : public ::SimpleFloatFilterTest { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND public: diff --git a/src/mc/world/filters/FilterTestClock.h b/src/mc/world/filters/FilterTestClock.h index 44ea947b71..45b56851d9 100644 --- a/src/mc/world/filters/FilterTestClock.h +++ b/src/mc/world/filters/FilterTestClock.h @@ -27,7 +27,7 @@ class FilterTestClock : public ::SimpleFloatFilterTest { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND public: diff --git a/src/mc/world/filters/FilterTestDaytime.h b/src/mc/world/filters/FilterTestDaytime.h index d1a9c52c59..bd6104eb01 100644 --- a/src/mc/world/filters/FilterTestDaytime.h +++ b/src/mc/world/filters/FilterTestDaytime.h @@ -27,7 +27,7 @@ class FilterTestDaytime : public ::SimpleBoolFilterTest { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND public: diff --git a/src/mc/world/filters/FilterTestDifficulty.h b/src/mc/world/filters/FilterTestDifficulty.h index 91273c00a0..f5603a4087 100644 --- a/src/mc/world/filters/FilterTestDifficulty.h +++ b/src/mc/world/filters/FilterTestDifficulty.h @@ -27,7 +27,7 @@ class FilterTestDifficulty : public ::SimpleIntFilterTest { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND public: diff --git a/src/mc/world/filters/FilterTestDimensionWeather.h b/src/mc/world/filters/FilterTestDimensionWeather.h index 9256253fe5..7eda96192c 100644 --- a/src/mc/world/filters/FilterTestDimensionWeather.h +++ b/src/mc/world/filters/FilterTestDimensionWeather.h @@ -68,7 +68,7 @@ class FilterTestDimensionWeather : public ::FilterTest { MCAPI ::std::string_view $getName() const; - MCAPI ::Json::Value $_serializeValue() const; + MCFOLD ::Json::Value $_serializeValue() const; // NOLINTEND public: diff --git a/src/mc/world/filters/FilterTestDistanceToNearestPlayer.h b/src/mc/world/filters/FilterTestDistanceToNearestPlayer.h index 9cc239e1b3..5ebebcee52 100644 --- a/src/mc/world/filters/FilterTestDistanceToNearestPlayer.h +++ b/src/mc/world/filters/FilterTestDistanceToNearestPlayer.h @@ -27,7 +27,7 @@ class FilterTestDistanceToNearestPlayer : public ::SimpleFloatFilterTest { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND public: diff --git a/src/mc/world/filters/FilterTestHasTradeSupply.h b/src/mc/world/filters/FilterTestHasTradeSupply.h index c2d58b2e8f..af245d7bd9 100644 --- a/src/mc/world/filters/FilterTestHasTradeSupply.h +++ b/src/mc/world/filters/FilterTestHasTradeSupply.h @@ -27,7 +27,7 @@ class FilterTestHasTradeSupply : public ::SimpleBoolFilterTest { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND public: diff --git a/src/mc/world/filters/FilterTestHourlyClock.h b/src/mc/world/filters/FilterTestHourlyClock.h index b2f34b76dd..51c34d5e88 100644 --- a/src/mc/world/filters/FilterTestHourlyClock.h +++ b/src/mc/world/filters/FilterTestHourlyClock.h @@ -44,7 +44,7 @@ class FilterTestHourlyClock : public ::SimpleIntFilterTest { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND public: diff --git a/src/mc/world/filters/FilterTestMoonIntensity.h b/src/mc/world/filters/FilterTestMoonIntensity.h index 604a420dbc..518dbd13d6 100644 --- a/src/mc/world/filters/FilterTestMoonIntensity.h +++ b/src/mc/world/filters/FilterTestMoonIntensity.h @@ -27,7 +27,7 @@ class FilterTestMoonIntensity : public ::SimpleFloatFilterTest { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND public: diff --git a/src/mc/world/filters/FilterTestMoonPhase.h b/src/mc/world/filters/FilterTestMoonPhase.h index 9917d8a721..ab7eb6f411 100644 --- a/src/mc/world/filters/FilterTestMoonPhase.h +++ b/src/mc/world/filters/FilterTestMoonPhase.h @@ -27,7 +27,7 @@ class FilterTestMoonPhase : public ::SimpleFloatFilterTest { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND public: diff --git a/src/mc/world/filters/FilterTestTemperatureType.h b/src/mc/world/filters/FilterTestTemperatureType.h index d14489f1c8..ecde2c7c51 100644 --- a/src/mc/world/filters/FilterTestTemperatureType.h +++ b/src/mc/world/filters/FilterTestTemperatureType.h @@ -27,7 +27,7 @@ class FilterTestTemperatureType : public ::SimpleIntFilterTest { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND public: diff --git a/src/mc/world/filters/FilterTestTemperatureValue.h b/src/mc/world/filters/FilterTestTemperatureValue.h index 2e54eda5b4..07c90ce429 100644 --- a/src/mc/world/filters/FilterTestTemperatureValue.h +++ b/src/mc/world/filters/FilterTestTemperatureValue.h @@ -27,7 +27,7 @@ class FilterTestTemperatureValue : public ::SimpleFloatFilterTest { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND public: diff --git a/src/mc/world/filters/SimpleBoolFilterTest.h b/src/mc/world/filters/SimpleBoolFilterTest.h index 3c2a75cc9b..ec3bb0e83c 100644 --- a/src/mc/world/filters/SimpleBoolFilterTest.h +++ b/src/mc/world/filters/SimpleBoolFilterTest.h @@ -48,6 +48,6 @@ class SimpleBoolFilterTest : public ::FilterTest { // NOLINTBEGIN MCAPI bool $setup(::FilterTest::Definition const& definition, ::FilterInputs const& inputs); - MCAPI ::Json::Value $_serializeValue() const; + MCFOLD ::Json::Value $_serializeValue() const; // NOLINTEND }; diff --git a/src/mc/world/filters/SimpleFloatFilterTest.h b/src/mc/world/filters/SimpleFloatFilterTest.h index c1353dc2e6..c83e8745d3 100644 --- a/src/mc/world/filters/SimpleFloatFilterTest.h +++ b/src/mc/world/filters/SimpleFloatFilterTest.h @@ -48,6 +48,6 @@ class SimpleFloatFilterTest : public ::FilterTest { // NOLINTBEGIN MCAPI bool $setup(::FilterTest::Definition const& definition, ::FilterInputs const& inputs); - MCAPI ::Json::Value $_serializeValue() const; + MCFOLD ::Json::Value $_serializeValue() const; // NOLINTEND }; diff --git a/src/mc/world/filters/SimpleHashStringFilterTest.h b/src/mc/world/filters/SimpleHashStringFilterTest.h index 29a7f9f97d..b2aedc40b3 100644 --- a/src/mc/world/filters/SimpleHashStringFilterTest.h +++ b/src/mc/world/filters/SimpleHashStringFilterTest.h @@ -46,8 +46,8 @@ class SimpleHashStringFilterTest : public ::FilterTest { public: // virtual function thunks // NOLINTBEGIN - MCAPI bool $setup(::FilterTest::Definition const& definition, ::FilterInputs const& inputs); + MCFOLD bool $setup(::FilterTest::Definition const& definition, ::FilterInputs const& inputs); - MCAPI ::Json::Value $_serializeValue() const; + MCFOLD ::Json::Value $_serializeValue() const; // NOLINTEND }; diff --git a/src/mc/world/filters/SimpleIntFilterTest.h b/src/mc/world/filters/SimpleIntFilterTest.h index c1e2d2e91e..5b1243ea27 100644 --- a/src/mc/world/filters/SimpleIntFilterTest.h +++ b/src/mc/world/filters/SimpleIntFilterTest.h @@ -46,8 +46,8 @@ class SimpleIntFilterTest : public ::FilterTest { public: // virtual function thunks // NOLINTBEGIN - MCAPI bool $setup(::FilterTest::Definition const& definition, ::FilterInputs const& inputs); + MCFOLD bool $setup(::FilterTest::Definition const& definition, ::FilterInputs const& inputs); - MCAPI ::Json::Value $_serializeValue() const; + MCFOLD ::Json::Value $_serializeValue() const; // NOLINTEND }; diff --git a/src/mc/world/gamemode/GameMode.h b/src/mc/world/gamemode/GameMode.h index 5ac24a92f5..898315692f 100644 --- a/src/mc/world/gamemode/GameMode.h +++ b/src/mc/world/gamemode/GameMode.h @@ -242,9 +242,9 @@ class GameMode { ::std::function callback ); - MCAPI uchar getDestroyBlockFace() const; + MCFOLD uchar getDestroyBlockFace() const; - MCAPI ::BlockPos const& getDestroyBlockPos() const; + MCFOLD ::BlockPos const& getDestroyBlockPos() const; MCAPI float getDestroyRate(::Block const& block); @@ -252,7 +252,7 @@ class GameMode { MCAPI float getMaxPickRangeSqr(); - MCAPI bool isLastBuildBlockInteractive() const; + MCFOLD bool isLastBuildBlockInteractive() const; // NOLINTEND public: @@ -338,11 +338,11 @@ class GameMode { MCAPI void $releaseUsingItem(); - MCAPI void $setTrialMode(bool isEnabled); + MCFOLD void $setTrialMode(bool isEnabled); - MCAPI bool $isInTrialMode(); + MCFOLD bool $isInTrialMode(); - MCAPI void $registerUpsellScreenCallback(::std::function callback); + MCFOLD void $registerUpsellScreenCallback(::std::function callback); // NOLINTEND public: diff --git a/src/mc/world/gamemode/SurvivalMode.h b/src/mc/world/gamemode/SurvivalMode.h index b580bbe4ee..5328e2b29e 100644 --- a/src/mc/world/gamemode/SurvivalMode.h +++ b/src/mc/world/gamemode/SurvivalMode.h @@ -140,7 +140,7 @@ class SurvivalMode : public ::GameMode { MCAPI void $setTrialMode(bool isEnabled); - MCAPI bool $isInTrialMode(); + MCFOLD bool $isInTrialMode(); MCAPI void $registerUpsellScreenCallback(::std::function callback); // NOLINTEND diff --git a/src/mc/world/inventory/BaseContainerMenu.h b/src/mc/world/inventory/BaseContainerMenu.h index fe7bf09a8b..c6cf4047ee 100644 --- a/src/mc/world/inventory/BaseContainerMenu.h +++ b/src/mc/world/inventory/BaseContainerMenu.h @@ -113,19 +113,19 @@ class BaseContainerMenu : public ::ContainerContentChangeListener, public ::ICon public: // virtual function thunks // NOLINTBEGIN - MCAPI bool $isSlotDirty(int slot); + MCFOLD bool $isSlotDirty(int slot); - MCAPI bool $isResultSlot(int slot); + MCFOLD bool $isResultSlot(int slot); - MCAPI void $containerContentChanged(int slot); + MCFOLD void $containerContentChanged(int slot); - MCAPI void $setData(int id, int value); + MCFOLD void $setData(int id, int value); - MCAPI ::ContainerID $getContainerId() const; + MCFOLD ::ContainerID $getContainerId() const; - MCAPI void $setContainerId(::ContainerID id); + MCFOLD void $setContainerId(::ContainerID id); - MCAPI ::ContainerType $getContainerType() const; + MCFOLD ::ContainerType $getContainerType() const; MCAPI void $setContainerType(::ContainerType type); diff --git a/src/mc/world/inventory/CraftingContainer.h b/src/mc/world/inventory/CraftingContainer.h index a74fd7f9e5..e402dad9d8 100644 --- a/src/mc/world/inventory/CraftingContainer.h +++ b/src/mc/world/inventory/CraftingContainer.h @@ -81,17 +81,17 @@ class CraftingContainer : public ::Container { MCAPI void $setItem(int slot, ::ItemStack const& item); - MCAPI int $getContainerSize() const; + MCFOLD int $getContainerSize() const; - MCAPI int $getMaxStackSize() const; + MCFOLD int $getMaxStackSize() const; - MCAPI void $setContainerChanged(int slot); + MCFOLD void $setContainerChanged(int slot); - MCAPI void $startOpen(::Player&); + MCFOLD void $startOpen(::Player&); - MCAPI void $stopOpen(::Player& player); + MCFOLD void $stopOpen(::Player& player); - MCAPI void $serverInitItemStackIds( + MCFOLD void $serverInitItemStackIds( int containerSlot, int count, ::std::function onNetIdChanged diff --git a/src/mc/world/inventory/FillingContainer.h b/src/mc/world/inventory/FillingContainer.h index af74a26573..f3888674a9 100644 --- a/src/mc/world/inventory/FillingContainer.h +++ b/src/mc/world/inventory/FillingContainer.h @@ -108,7 +108,7 @@ class FillingContainer : public ::Container { MCAPI void _release(int slot); - MCAPI int getHotbarSize() const; + MCFOLD int getHotbarSize() const; MCAPI int getSlotWithItem(::ItemStack const& item, bool checkAux, bool checkData) const; @@ -152,19 +152,19 @@ class FillingContainer : public ::Container { MCAPI void $loadFromTag(::ListTag const& inventoryList); - MCAPI void $setItem(int slot, ::ItemStack const& item); + MCFOLD void $setItem(int slot, ::ItemStack const& item); MCAPI void $setItemWithForceBalance(int slot, ::ItemStack const& item, bool forceBalanced); MCAPI ::ItemStack const& $getItem(int slot) const; - MCAPI int $getMaxStackSize() const; + MCFOLD int $getMaxStackSize() const; - MCAPI int $getContainerSize() const; + MCFOLD int $getContainerSize() const; - MCAPI void $startOpen(::Player&); + MCFOLD void $startOpen(::Player&); - MCAPI void $serverInitItemStackIds( + MCFOLD void $serverInitItemStackIds( int containerSlot, int count, ::std::function onNetIdChanged diff --git a/src/mc/world/inventory/InventoryMenu.h b/src/mc/world/inventory/InventoryMenu.h index 2d1cce0f15..06fe5b079b 100644 --- a/src/mc/world/inventory/InventoryMenu.h +++ b/src/mc/world/inventory/InventoryMenu.h @@ -94,7 +94,7 @@ class InventoryMenu : public ::BaseContainerMenu { MCAPI ::std::vector<::ItemStack> $getItemCopies() const; - MCAPI ::Container* $_getContainer() const; + MCFOLD ::Container* $_getContainer() const; // NOLINTEND public: diff --git a/src/mc/world/inventory/LockingFillingContainer.h b/src/mc/world/inventory/LockingFillingContainer.h index 6b9ea8bc28..2c06766309 100644 --- a/src/mc/world/inventory/LockingFillingContainer.h +++ b/src/mc/world/inventory/LockingFillingContainer.h @@ -91,9 +91,9 @@ class LockingFillingContainer : public ::FillingContainer { public: // virtual function thunks // NOLINTBEGIN - MCAPI int $clearInventory(int resizeTo); + MCFOLD int $clearInventory(int resizeTo); - MCAPI void $swapSlots(int from, int to); + MCFOLD void $swapSlots(int from, int to); MCAPI void $setItemWithForceBalance(int slot, ::ItemStack const& item, bool forceBalanced); diff --git a/src/mc/world/inventory/network/ContainerScreenContext.h b/src/mc/world/inventory/network/ContainerScreenContext.h index 182b220ee1..a8f44038a8 100644 --- a/src/mc/world/inventory/network/ContainerScreenContext.h +++ b/src/mc/world/inventory/network/ContainerScreenContext.h @@ -41,9 +41,9 @@ class ContainerScreenContext { MCAPI ::gsl::not_null<::StackRefResult<::IContainerRegistryAccess>> getContainerRegistryAccess() const; - MCAPI ::Player& getPlayer() const; + MCFOLD ::Player& getPlayer() const; - MCAPI ::ContainerType getScreenContainerType() const; + MCFOLD ::ContainerType getScreenContainerType() const; MCAPI ::Actor* tryGetActor() const; diff --git a/src/mc/world/inventory/network/ItemStackNetIdVariant.h b/src/mc/world/inventory/network/ItemStackNetIdVariant.h index c0a22a7909..a1e71f0185 100644 --- a/src/mc/world/inventory/network/ItemStackNetIdVariant.h +++ b/src/mc/world/inventory/network/ItemStackNetIdVariant.h @@ -39,7 +39,7 @@ struct ItemStackNetIdVariant { MCAPI bool isValid() const; - MCAPI ::ItemStackNetIdVariant& operator=(::ItemStackNetIdVariant const&); + MCFOLD ::ItemStackNetIdVariant& operator=(::ItemStackNetIdVariant const&); MCAPI ::ItemStackNetIdVariant& operator=(::ItemStackNetId const& serverNetId); @@ -61,9 +61,9 @@ struct ItemStackNetIdVariant { public: // constructor thunks // NOLINTBEGIN - MCAPI void* $ctor(); + MCFOLD void* $ctor(); - MCAPI void* $ctor(::ItemStackNetIdVariant const&); + MCFOLD void* $ctor(::ItemStackNetIdVariant const&); MCAPI void* $ctor(::ItemStackNetIdVariant&&); // NOLINTEND diff --git a/src/mc/world/inventory/network/ItemStackNetManagerBase.h b/src/mc/world/inventory/network/ItemStackNetManagerBase.h index 9643e6a451..bbb7f1c784 100644 --- a/src/mc/world/inventory/network/ItemStackNetManagerBase.h +++ b/src/mc/world/inventory/network/ItemStackNetManagerBase.h @@ -89,7 +89,7 @@ class ItemStackNetManagerBase { MCAPI ::ContainerScreenContext const& getScreenContext() const; - MCAPI bool isClientSide() const; + MCFOLD bool isClientSide() const; MCAPI bool isScreenOpen() const; // NOLINTEND @@ -124,22 +124,22 @@ class ItemStackNetManagerBase { public: // virtual function thunks // NOLINTBEGIN - MCAPI bool $isEnabled() const; + MCFOLD bool $isEnabled() const; - MCAPI bool $retainSetItemStackNetIdVariant() const; + MCFOLD bool $retainSetItemStackNetIdVariant() const; MCAPI ::gsl::final_action<::std::function> $_tryBeginClientLegacyTransactionRequest(); - MCAPI void $onContainerScreenOpen(::ContainerScreenContext const& screenContext); + MCFOLD void $onContainerScreenOpen(::ContainerScreenContext const& screenContext); MCAPI void $onContainerScreenClose(); - MCAPI ::SparseContainer* $initOpenContainer(::BlockSource&, ::FullContainerName const&, ::ContainerWeakRef const&); + MCFOLD ::SparseContainer* $initOpenContainer(::BlockSource&, ::FullContainerName const&, ::ContainerWeakRef const&); - MCAPI void + MCFOLD void $_addLegacyTransactionRequestSetItemSlot(::ItemStackNetManagerScreen&, ::ContainerType containerType, int slot); - MCAPI void $_initScreen(::ItemStackNetManagerScreen&); + MCFOLD void $_initScreen(::ItemStackNetManagerScreen&); // NOLINTEND public: diff --git a/src/mc/world/inventory/network/ItemStackNetManagerServer.h b/src/mc/world/inventory/network/ItemStackNetManagerServer.h index 1cc7745792..864193f5a0 100644 --- a/src/mc/world/inventory/network/ItemStackNetManagerServer.h +++ b/src/mc/world/inventory/network/ItemStackNetManagerServer.h @@ -146,7 +146,7 @@ class ItemStackNetManagerServer : public ::ItemStackNetManagerBase { MCAPI bool $allowInventoryTransactionManager() const; - MCAPI void $onContainerScreenOpen(::ContainerScreenContext const& screenContext); + MCFOLD void $onContainerScreenOpen(::ContainerScreenContext const& screenContext); MCAPI void $_initScreen(::ItemStackNetManagerScreen& screen); // NOLINTEND diff --git a/src/mc/world/inventory/network/ItemStackRequestAction.h b/src/mc/world/inventory/network/ItemStackRequestAction.h index 194e7e02e8..11352f1834 100644 --- a/src/mc/world/inventory/network/ItemStackRequestAction.h +++ b/src/mc/world/inventory/network/ItemStackRequestAction.h @@ -49,7 +49,7 @@ class ItemStackRequestAction { // NOLINTBEGIN MCAPI explicit ItemStackRequestAction(::ItemStackRequestActionType actionType); - MCAPI ::ItemStackRequestActionType getActionType() const; + MCFOLD ::ItemStackRequestActionType getActionType() const; // NOLINTEND public: @@ -79,11 +79,11 @@ class ItemStackRequestAction { public: // virtual function thunks // NOLINTBEGIN - MCAPI ::ItemStackRequestActionCraftBase const* $getCraftAction() const; + MCFOLD ::ItemStackRequestActionCraftBase const* $getCraftAction() const; - MCAPI int $getFilteredStringIndex() const; + MCFOLD int $getFilteredStringIndex() const; - MCAPI void $postLoadItems_DEPRECATEDASKTYLAING(::BlockPalette& blockPalette, bool isClientSide); + MCFOLD void $postLoadItems_DEPRECATEDASKTYLAING(::BlockPalette& blockPalette, bool isClientSide); // NOLINTEND public: diff --git a/src/mc/world/inventory/network/ItemStackRequestActionBeaconPayment.h b/src/mc/world/inventory/network/ItemStackRequestActionBeaconPayment.h index d807c556b4..2f728df9b7 100644 --- a/src/mc/world/inventory/network/ItemStackRequestActionBeaconPayment.h +++ b/src/mc/world/inventory/network/ItemStackRequestActionBeaconPayment.h @@ -42,9 +42,9 @@ class ItemStackRequestActionBeaconPayment : public ::ItemStackRequestAction { public: // member functions // NOLINTBEGIN - MCAPI int getPrimaryEffectId() const; + MCFOLD int getPrimaryEffectId() const; - MCAPI int getSecondaryEffectId() const; + MCFOLD int getSecondaryEffectId() const; // NOLINTEND public: diff --git a/src/mc/world/inventory/network/ItemStackRequestActionCreate.h b/src/mc/world/inventory/network/ItemStackRequestActionCreate.h index a9f7460700..851a09302a 100644 --- a/src/mc/world/inventory/network/ItemStackRequestActionCreate.h +++ b/src/mc/world/inventory/network/ItemStackRequestActionCreate.h @@ -41,7 +41,7 @@ class ItemStackRequestActionCreate : public ::ItemStackRequestAction { public: // member functions // NOLINTBEGIN - MCAPI uchar getResultsIndex() const; + MCFOLD uchar getResultsIndex() const; // NOLINTEND public: diff --git a/src/mc/world/inventory/network/ItemStackRequestActionHandler.h b/src/mc/world/inventory/network/ItemStackRequestActionHandler.h index fd73ea350f..bcc4c02229 100644 --- a/src/mc/world/inventory/network/ItemStackRequestActionHandler.h +++ b/src/mc/world/inventory/network/ItemStackRequestActionHandler.h @@ -224,7 +224,7 @@ class ItemStackRequestActionHandler { MCAPI ::std::vector<::std::string> const& getFilteredStrings(::ItemStackRequestId requestId) const; - MCAPI ::ItemStackRequestId const& getRequestId() const; + MCFOLD ::ItemStackRequestId const& getRequestId() const; MCAPI ::ContainerScreenContext const& getScreenContext() const; diff --git a/src/mc/world/inventory/network/ItemStackRequestActionMineBlock.h b/src/mc/world/inventory/network/ItemStackRequestActionMineBlock.h index 5a99f0fcac..a287b25598 100644 --- a/src/mc/world/inventory/network/ItemStackRequestActionMineBlock.h +++ b/src/mc/world/inventory/network/ItemStackRequestActionMineBlock.h @@ -47,13 +47,13 @@ class ItemStackRequestActionMineBlock : public ::ItemStackRequestAction { public: // member functions // NOLINTBEGIN - MCAPI ::ItemStackRequestActionMineBlock::PreValidationStatus getPreValidationStatus() const; + MCFOLD ::ItemStackRequestActionMineBlock::PreValidationStatus getPreValidationStatus() const; - MCAPI int getPredictedDurability() const; + MCFOLD int getPredictedDurability() const; MCAPI ::ItemStackRequestSlotInfo getSrc() const; - MCAPI void setPreValidationStatus(::ItemStackRequestActionMineBlock::PreValidationStatus status) const; + MCFOLD void setPreValidationStatus(::ItemStackRequestActionMineBlock::PreValidationStatus status) const; // NOLINTEND public: diff --git a/src/mc/world/inventory/network/ItemStackRequestActionTransferBase.h b/src/mc/world/inventory/network/ItemStackRequestActionTransferBase.h index b01f7eae2e..de87c92ee9 100644 --- a/src/mc/world/inventory/network/ItemStackRequestActionTransferBase.h +++ b/src/mc/world/inventory/network/ItemStackRequestActionTransferBase.h @@ -40,7 +40,7 @@ class ItemStackRequestActionTransferBase : public ::ItemStackRequestAction { public: // member functions // NOLINTBEGIN - MCAPI ::ItemStackRequestSlotInfo const& getSrc() const; + MCFOLD ::ItemStackRequestSlotInfo const& getSrc() const; // NOLINTEND public: diff --git a/src/mc/world/inventory/network/ItemStackRequestBatch.h b/src/mc/world/inventory/network/ItemStackRequestBatch.h index cac78c2363..7fc796077c 100644 --- a/src/mc/world/inventory/network/ItemStackRequestBatch.h +++ b/src/mc/world/inventory/network/ItemStackRequestBatch.h @@ -41,6 +41,6 @@ class ItemStackRequestBatch { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/world/inventory/network/ItemStackRequestData.h b/src/mc/world/inventory/network/ItemStackRequestData.h index ce3b2a96e9..4c17f36ba8 100644 --- a/src/mc/world/inventory/network/ItemStackRequestData.h +++ b/src/mc/world/inventory/network/ItemStackRequestData.h @@ -3,32 +3,29 @@ #include "mc/_HeaderOutputPredefine.h" // auto generated inclusion list +#include "mc/events/TextProcessingEventOrigin.h" #include "mc/platform/Result.h" #include "mc/world/inventory/network/ItemStackRequestActionType.h" +#include "mc/world/inventory/network/TypedClientNetId.h" // auto generated forward declare list // clang-format off class BinaryStream; class ItemStackRequestAction; class ReadOnlyBinaryStream; +struct ItemStackRequestIdTag; // clang-format on class ItemStackRequestData { public: // member variables // NOLINTBEGIN - ::ll::UntypedStorage<4, 16> mUnk7b7070; - ::ll::UntypedStorage<8, 24> mUnk55835a; - ::ll::UntypedStorage<4, 4> mUnkac5613; - ::ll::UntypedStorage<8, 24> mUnk586044; + ::ll::TypedStorage<4, 16, ::ItemStackRequestId> mClientRequestId; + ::ll::TypedStorage<8, 24, ::std::vector<::std::string>> mStringsToFilter; + ::ll::TypedStorage<4, 4, ::TextProcessingEventOrigin> mStringsToFilterOrigin; + ::ll::TypedStorage<8, 24, ::std::vector<::std::unique_ptr<::ItemStackRequestAction>>> mActions; // NOLINTEND -public: - // prevent constructor by default - ItemStackRequestData& operator=(ItemStackRequestData const&); - ItemStackRequestData(ItemStackRequestData const&); - ItemStackRequestData(); - public: // member functions // NOLINTBEGIN diff --git a/src/mc/world/inventory/network/ItemStackRequestHandlerSlotInfo.h b/src/mc/world/inventory/network/ItemStackRequestHandlerSlotInfo.h index b2d6de122b..c8977034b2 100644 --- a/src/mc/world/inventory/network/ItemStackRequestHandlerSlotInfo.h +++ b/src/mc/world/inventory/network/ItemStackRequestHandlerSlotInfo.h @@ -23,7 +23,7 @@ struct ItemStackRequestHandlerSlotInfo { public: // member functions // NOLINTBEGIN - MCAPI explicit operator bool() const; + MCFOLD explicit operator bool() const; MCAPI ~ItemStackRequestHandlerSlotInfo(); // NOLINTEND diff --git a/src/mc/world/inventory/network/ItemTransactionLogger.h b/src/mc/world/inventory/network/ItemTransactionLogger.h index 5986f0b7ab..7250c1ee8d 100644 --- a/src/mc/world/inventory/network/ItemTransactionLogger.h +++ b/src/mc/world/inventory/network/ItemTransactionLogger.h @@ -15,7 +15,7 @@ namespace ItemTransactionLogger { // NOLINTBEGIN MCAPI void initializeLogger(bool enable); -MCAPI void log(::std::string const& message); +MCFOLD void log(::std::string const& message); MCAPI void log(::InventoryAction const& action, ::std::string const& message); diff --git a/src/mc/world/inventory/network/ScreenHandlerBase.h b/src/mc/world/inventory/network/ScreenHandlerBase.h index f078ccc794..7ef9144567 100644 --- a/src/mc/world/inventory/network/ScreenHandlerBase.h +++ b/src/mc/world/inventory/network/ScreenHandlerBase.h @@ -64,13 +64,13 @@ class ScreenHandlerBase { public: // virtual function thunks // NOLINTBEGIN - MCAPI ::ItemStackNetResult $handleAction(::ItemStackRequestAction const& requestAction); + MCFOLD ::ItemStackNetResult $handleAction(::ItemStackRequestAction const& requestAction); - MCAPI ::ItemStackNetResult $endRequest(); + MCFOLD ::ItemStackNetResult $endRequest(); - MCAPI void $endRequestBatch(); + MCFOLD void $endRequestBatch(); - MCAPI void $postRequest(bool const wasSuccess); + MCFOLD void $postRequest(bool const wasSuccess); // NOLINTEND public: diff --git a/src/mc/world/inventory/network/crafting/CraftHandlerBase.h b/src/mc/world/inventory/network/crafting/CraftHandlerBase.h index 8d9183e771..7597e10e96 100644 --- a/src/mc/world/inventory/network/crafting/CraftHandlerBase.h +++ b/src/mc/world/inventory/network/crafting/CraftHandlerBase.h @@ -70,7 +70,7 @@ class CraftHandlerBase { MCAPI ::std::tuple<::ItemStackNetResult, ::Recipe const*> _getRecipeFromNetId(::RecipeNetId const& recipeNetId); - MCAPI bool _isNonImplementedTrustClientResults() const; + MCFOLD bool _isNonImplementedTrustClientResults() const; MCAPI ::std::shared_ptr<::SimpleSparseContainer> _tryGetSparseContainer(::FullContainerName const& openContainerId); @@ -79,7 +79,7 @@ class CraftHandlerBase { MCAPI ::ItemStackNetResult handleCraftAction(::ItemStackRequestActionCraftBase const& requestAction, ::ItemStackNetResult currentResult); - MCAPI bool isCraftRequest(); + MCFOLD bool isCraftRequest(); MCAPI void postRequest(bool wasSuccess); // NOLINTEND @@ -99,11 +99,11 @@ class CraftHandlerBase { public: // virtual function thunks // NOLINTBEGIN - MCAPI void $endRequestBatch(); + MCFOLD void $endRequestBatch(); - MCAPI void $_postCraftRequest(bool const wasSuccess); + MCFOLD void $_postCraftRequest(bool const wasSuccess); - MCAPI ::Recipes const* $_getLevelRecipes() const; + MCFOLD ::Recipes const* $_getLevelRecipes() const; // NOLINTEND public: diff --git a/src/mc/world/inventory/network/crafting/CraftHandlerTrade.h b/src/mc/world/inventory/network/crafting/CraftHandlerTrade.h index 8445955b96..dbc585d62b 100644 --- a/src/mc/world/inventory/network/crafting/CraftHandlerTrade.h +++ b/src/mc/world/inventory/network/crafting/CraftHandlerTrade.h @@ -10,6 +10,7 @@ // auto generated forward declare list // clang-format off +class ContainerScreenContext; class ItemStack; class ItemStackBase; class ItemStackRequestActionCraftBase; @@ -21,18 +22,12 @@ class CraftHandlerTrade : public ::CraftHandlerBase { public: // member variables // NOLINTBEGIN - ::ll::UntypedStorage<8, 8> mUnk9f8568; - ::ll::UntypedStorage<1, 1> mUnkc029ec; - ::ll::UntypedStorage<8, 16> mUnk17eb85; - ::ll::UntypedStorage<4, 4> mUnk903205; + ::ll::TypedStorage<8, 8, ::ContainerScreenContext const&> mScreenContext; + ::ll::TypedStorage<1, 1, bool> mIsTrade2; + ::ll::TypedStorage<8, 16, ::std::optional> mTradeIndex; + ::ll::TypedStorage<4, 4, int> mNumCrafts; // NOLINTEND -public: - // prevent constructor by default - CraftHandlerTrade& operator=(CraftHandlerTrade const&); - CraftHandlerTrade(CraftHandlerTrade const&); - CraftHandlerTrade(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/inventory/network/crafting/ItemStackRequestActionCraftBase.h b/src/mc/world/inventory/network/crafting/ItemStackRequestActionCraftBase.h index 49ca4560f0..ab18f28b1f 100644 --- a/src/mc/world/inventory/network/crafting/ItemStackRequestActionCraftBase.h +++ b/src/mc/world/inventory/network/crafting/ItemStackRequestActionCraftBase.h @@ -48,7 +48,7 @@ class ItemStackRequestActionCraftBase : public ::ItemStackRequestAction { public: // member functions // NOLINTBEGIN - MCAPI uchar getNumCrafts() const; + MCFOLD uchar getNumCrafts() const; // NOLINTEND public: @@ -60,8 +60,8 @@ class ItemStackRequestActionCraftBase : public ::ItemStackRequestAction { public: // virtual function thunks // NOLINTBEGIN - MCAPI ::ItemStackRequestActionCraftBase const* $getCraftAction() const; + MCFOLD ::ItemStackRequestActionCraftBase const* $getCraftAction() const; - MCAPI void $postLoadItems_DEPRECATEDASKTYLAING(::BlockPalette& blockPalette, bool isClientSide); + MCFOLD void $postLoadItems_DEPRECATEDASKTYLAING(::BlockPalette& blockPalette, bool isClientSide); // NOLINTEND }; diff --git a/src/mc/world/inventory/network/crafting/ItemStackRequestActionCraftGrindstone.h b/src/mc/world/inventory/network/crafting/ItemStackRequestActionCraftGrindstone.h index 8cc580494d..61067dca2c 100644 --- a/src/mc/world/inventory/network/crafting/ItemStackRequestActionCraftGrindstone.h +++ b/src/mc/world/inventory/network/crafting/ItemStackRequestActionCraftGrindstone.h @@ -46,7 +46,7 @@ class ItemStackRequestActionCraftGrindstone : public ::ItemStackRequestActionCra // NOLINTBEGIN MCAPI ItemStackRequestActionCraftGrindstone(); - MCAPI int getRepairCost() const; + MCFOLD int getRepairCost() const; // NOLINTEND public: @@ -68,7 +68,7 @@ class ItemStackRequestActionCraftGrindstone : public ::ItemStackRequestActionCra MCAPI ::Bedrock::Result $_read(::ReadOnlyBinaryStream& stream); - MCAPI ::ItemStackNetIdVariant const& $getRecipeNetId() const; + MCFOLD ::ItemStackNetIdVariant const& $getRecipeNetId() const; // NOLINTEND public: diff --git a/src/mc/world/inventory/network/crafting/ItemStackRequestActionCraftNonImplemented_DEPRECATEDASKTYLAING.h b/src/mc/world/inventory/network/crafting/ItemStackRequestActionCraftNonImplemented_DEPRECATEDASKTYLAING.h index ad4ab74fcb..e182e1922a 100644 --- a/src/mc/world/inventory/network/crafting/ItemStackRequestActionCraftNonImplemented_DEPRECATEDASKTYLAING.h +++ b/src/mc/world/inventory/network/crafting/ItemStackRequestActionCraftNonImplemented_DEPRECATEDASKTYLAING.h @@ -47,9 +47,9 @@ class ItemStackRequestActionCraftNonImplemented_DEPRECATEDASKTYLAING : public :: public: // virtual function thunks // NOLINTBEGIN - MCAPI void $_write(::BinaryStream& stream) const; + MCFOLD void $_write(::BinaryStream& stream) const; - MCAPI ::Bedrock::Result $_read(::ReadOnlyBinaryStream&); + MCFOLD ::Bedrock::Result $_read(::ReadOnlyBinaryStream&); // NOLINTEND public: diff --git a/src/mc/world/inventory/network/crafting/ItemStackRequestActionCraftRecipeAuto.h b/src/mc/world/inventory/network/crafting/ItemStackRequestActionCraftRecipeAuto.h index 2c64dc708b..648ba0f28b 100644 --- a/src/mc/world/inventory/network/crafting/ItemStackRequestActionCraftRecipeAuto.h +++ b/src/mc/world/inventory/network/crafting/ItemStackRequestActionCraftRecipeAuto.h @@ -46,7 +46,7 @@ class ItemStackRequestActionCraftRecipeAuto : public ::ItemStackRequestActionCra // NOLINTBEGIN MCAPI ItemStackRequestActionCraftRecipeAuto(); - MCAPI ::std::vector<::RecipeIngredient> const* getIngredients() const; + MCFOLD ::std::vector<::RecipeIngredient> const* getIngredients() const; // NOLINTEND public: diff --git a/src/mc/world/inventory/network/crafting/ItemStackRequestActionCraftRecipeOptional.h b/src/mc/world/inventory/network/crafting/ItemStackRequestActionCraftRecipeOptional.h index 7f8eb77ad4..5082f96d53 100644 --- a/src/mc/world/inventory/network/crafting/ItemStackRequestActionCraftRecipeOptional.h +++ b/src/mc/world/inventory/network/crafting/ItemStackRequestActionCraftRecipeOptional.h @@ -66,7 +66,7 @@ class ItemStackRequestActionCraftRecipeOptional : public ::ItemStackRequestActio MCAPI ::Bedrock::Result $_read(::ReadOnlyBinaryStream& stream); - MCAPI int $getFilteredStringIndex() const; + MCFOLD int $getFilteredStringIndex() const; // NOLINTEND public: diff --git a/src/mc/world/inventory/simulation/ContainerScreenValidation.h b/src/mc/world/inventory/simulation/ContainerScreenValidation.h index 9f9345f77a..bec8fe82dd 100644 --- a/src/mc/world/inventory/simulation/ContainerScreenValidation.h +++ b/src/mc/world/inventory/simulation/ContainerScreenValidation.h @@ -104,7 +104,7 @@ class ContainerScreenValidation { MCAPI ::std::shared_ptr<::SimpleSparseContainer> getOrCreateSparseContainer(::FullContainerName const& containerEnumName); - MCAPI bool isCraftingImplemented(); + MCFOLD bool isCraftingImplemented(); MCAPI bool tryCommitActionResults(); @@ -161,7 +161,7 @@ class ContainerScreenValidation { MCAPI ::ContainerValidationCraftResult $getCraftResults(::std::unique_ptr<::ContainerValidationCraftInputs> craftInputs, uchar const); - MCAPI ::ContainerValidationResult $tryActivate(); + MCFOLD ::ContainerValidationResult $tryActivate(); // NOLINTEND public: diff --git a/src/mc/world/inventory/simulation/ContainerScreenValidationActivate.h b/src/mc/world/inventory/simulation/ContainerScreenValidationActivate.h index 4dbfd0b789..4929df8ce6 100644 --- a/src/mc/world/inventory/simulation/ContainerScreenValidationActivate.h +++ b/src/mc/world/inventory/simulation/ContainerScreenValidationActivate.h @@ -30,7 +30,7 @@ class ContainerScreenValidationActivate : public ::ContainerScreenValidation { public: // virtual function thunks // NOLINTBEGIN - MCAPI ::ContainerValidationResult $tryActivate(); + MCFOLD ::ContainerValidationResult $tryActivate(); // NOLINTEND public: diff --git a/src/mc/world/inventory/simulation/ContainerValidationCraftResult.h b/src/mc/world/inventory/simulation/ContainerValidationCraftResult.h index b74fd56ec0..a41002995e 100644 --- a/src/mc/world/inventory/simulation/ContainerValidationCraftResult.h +++ b/src/mc/world/inventory/simulation/ContainerValidationCraftResult.h @@ -31,7 +31,7 @@ struct ContainerValidationCraftResult { public: // constructor thunks // NOLINTBEGIN - MCAPI void* $ctor(); + MCFOLD void* $ctor(); MCAPI void* $ctor(::ContainerValidationCraftResult&&); // NOLINTEND diff --git a/src/mc/world/inventory/simulation/ContainerValidationResult.h b/src/mc/world/inventory/simulation/ContainerValidationResult.h index 3dca8032d0..6387ca984d 100644 --- a/src/mc/world/inventory/simulation/ContainerValidationResult.h +++ b/src/mc/world/inventory/simulation/ContainerValidationResult.h @@ -31,7 +31,7 @@ struct ContainerValidationResult { // NOLINTBEGIN MCAPI explicit ContainerValidationResult(::ContainerValidationOutcome outcome); - MCAPI bool isSuccess() const; + MCFOLD bool isSuccess() const; MCAPI ::ContainerValidationOperation const* tryGetOperation(::ContainerValidationOperationType type) const; @@ -47,6 +47,6 @@ struct ContainerValidationResult { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/world/inventory/simulation/ExperienceCostCommitObject.h b/src/mc/world/inventory/simulation/ExperienceCostCommitObject.h index fd17f0d73b..895ce787d7 100644 --- a/src/mc/world/inventory/simulation/ExperienceCostCommitObject.h +++ b/src/mc/world/inventory/simulation/ExperienceCostCommitObject.h @@ -48,7 +48,7 @@ class ExperienceCostCommitObject : public ::ContainerValidationCommitObject { public: // virtual function thunks // NOLINTBEGIN - MCAPI bool $append(::ContainerValidationCommitObject* other); + MCFOLD bool $append(::ContainerValidationCommitObject* other); MCAPI bool $canCommit(::ContainerScreenContext const& screenContext) const; diff --git a/src/mc/world/inventory/simulation/ExperienceRewardCommitObject.h b/src/mc/world/inventory/simulation/ExperienceRewardCommitObject.h index 6aedad08f6..f1fd283f94 100644 --- a/src/mc/world/inventory/simulation/ExperienceRewardCommitObject.h +++ b/src/mc/world/inventory/simulation/ExperienceRewardCommitObject.h @@ -48,9 +48,9 @@ class ExperienceRewardCommitObject : public ::ContainerValidationCommitObject { public: // virtual function thunks // NOLINTBEGIN - MCAPI bool $append(::ContainerValidationCommitObject* other); + MCFOLD bool $append(::ContainerValidationCommitObject* other); - MCAPI bool $canCommit(::ContainerScreenContext const&) const; + MCFOLD bool $canCommit(::ContainerScreenContext const&) const; MCAPI void $commit(::ContainerScreenContext const& screenContext); // NOLINTEND diff --git a/src/mc/world/inventory/simulation/RecipeCraftInputs.h b/src/mc/world/inventory/simulation/RecipeCraftInputs.h index 4f04f5a98b..a3001936b0 100644 --- a/src/mc/world/inventory/simulation/RecipeCraftInputs.h +++ b/src/mc/world/inventory/simulation/RecipeCraftInputs.h @@ -27,6 +27,6 @@ struct RecipeCraftInputs : public ::ContainerValidationCraftInputs { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/world/inventory/simulation/validation/AnvilContainerScreenValidator.h b/src/mc/world/inventory/simulation/validation/AnvilContainerScreenValidator.h index 9197fdc696..12ecca3609 100644 --- a/src/mc/world/inventory/simulation/validation/AnvilContainerScreenValidator.h +++ b/src/mc/world/inventory/simulation/validation/AnvilContainerScreenValidator.h @@ -41,7 +41,7 @@ class AnvilContainerScreenValidator : public ::ContainerScreenValidatorBase { public: // virtual function thunks // NOLINTBEGIN - MCAPI bool $isCraftingImplemented(); + MCFOLD bool $isCraftingImplemented(); MCAPI ::ContainerValidationCraftResult $getCraftResult( ::ContainerScreenContext const& screenContext, diff --git a/src/mc/world/inventory/simulation/validation/AnvilInputContainerValidation.h b/src/mc/world/inventory/simulation/validation/AnvilInputContainerValidation.h index c152360f92..025fd91598 100644 --- a/src/mc/world/inventory/simulation/validation/AnvilInputContainerValidation.h +++ b/src/mc/world/inventory/simulation/validation/AnvilInputContainerValidation.h @@ -30,7 +30,7 @@ class AnvilInputContainerValidation : public ::ContainerValidationBase { public: // virtual function thunks // NOLINTBEGIN - MCAPI int $getContainerOffset(::ContainerScreenContext const& screenContext) const; + MCFOLD int $getContainerOffset(::ContainerScreenContext const& screenContext) const; // NOLINTEND public: diff --git a/src/mc/world/inventory/simulation/validation/AnvilMaterialContainerValidation.h b/src/mc/world/inventory/simulation/validation/AnvilMaterialContainerValidation.h index e994288f22..3f5c948474 100644 --- a/src/mc/world/inventory/simulation/validation/AnvilMaterialContainerValidation.h +++ b/src/mc/world/inventory/simulation/validation/AnvilMaterialContainerValidation.h @@ -30,7 +30,7 @@ class AnvilMaterialContainerValidation : public ::ContainerValidationBase { public: // virtual function thunks // NOLINTBEGIN - MCAPI int $getContainerOffset(::ContainerScreenContext const& screenContext) const; + MCFOLD int $getContainerOffset(::ContainerScreenContext const& screenContext) const; // NOLINTEND public: diff --git a/src/mc/world/inventory/simulation/validation/ArmorContainerValidation.h b/src/mc/world/inventory/simulation/validation/ArmorContainerValidation.h index afe570e29c..7a5e1c4e53 100644 --- a/src/mc/world/inventory/simulation/validation/ArmorContainerValidation.h +++ b/src/mc/world/inventory/simulation/validation/ArmorContainerValidation.h @@ -63,15 +63,15 @@ class ArmorContainerValidation : public ::ContainerValidationBase { bool ) const; - MCAPI int $getAvailableSetCount(int const slot, ::ItemStackBase const& item) const; + MCFOLD int $getAvailableSetCount(int const slot, ::ItemStackBase const& item) const; MCAPI bool $isItemAllowedToRemove(::ContainerScreenContext const& screenContext, ::ItemStackBase const& item) const; - MCAPI int $getAllowedAddCount(::ContainerScreenContext const&, ::ItemStackBase const&) const; + MCFOLD int $getAllowedAddCount(::ContainerScreenContext const&, ::ItemStackBase const&) const; - MCAPI bool $canItemMoveToContainer(::ItemStackBase const& item) const; + MCFOLD bool $canItemMoveToContainer(::ItemStackBase const& item) const; - MCAPI int $getContainerSize(::ContainerScreenContext const& screenContext, ::Container const& container) const; + MCFOLD int $getContainerSize(::ContainerScreenContext const& screenContext, ::Container const& container) const; // NOLINTEND public: diff --git a/src/mc/world/inventory/simulation/validation/BarrelContainerValidation.h b/src/mc/world/inventory/simulation/validation/BarrelContainerValidation.h index eee6a16081..70701ba33e 100644 --- a/src/mc/world/inventory/simulation/validation/BarrelContainerValidation.h +++ b/src/mc/world/inventory/simulation/validation/BarrelContainerValidation.h @@ -32,7 +32,7 @@ class BarrelContainerValidation : public ::ContainerValidationBase { public: // virtual function thunks // NOLINTBEGIN - MCAPI int $getContainerSize(::ContainerScreenContext const& screenContext, ::Container const& container) const; + MCFOLD int $getContainerSize(::ContainerScreenContext const& screenContext, ::Container const& container) const; // NOLINTEND public: diff --git a/src/mc/world/inventory/simulation/validation/BeaconPaymentContainerValidation.h b/src/mc/world/inventory/simulation/validation/BeaconPaymentContainerValidation.h index ce4b311203..98bff59cf0 100644 --- a/src/mc/world/inventory/simulation/validation/BeaconPaymentContainerValidation.h +++ b/src/mc/world/inventory/simulation/validation/BeaconPaymentContainerValidation.h @@ -57,13 +57,13 @@ class BeaconPaymentContainerValidation : public ::ContainerValidationBase { bool ) const; - MCAPI int $getAvailableSetCount(int slot, ::ItemStackBase const& item) const; + MCFOLD int $getAvailableSetCount(int slot, ::ItemStackBase const& item) const; - MCAPI int $getAllowedAddCount(::ContainerScreenContext const&, ::ItemStackBase const&) const; + MCFOLD int $getAllowedAddCount(::ContainerScreenContext const&, ::ItemStackBase const&) const; - MCAPI int $getContainerOffset(::ContainerScreenContext const& screenContext) const; + MCFOLD int $getContainerOffset(::ContainerScreenContext const& screenContext) const; - MCAPI bool $canDestroy(::ContainerScreenContext const& screenContext) const; + MCFOLD bool $canDestroy(::ContainerScreenContext const& screenContext) const; // NOLINTEND public: diff --git a/src/mc/world/inventory/simulation/validation/BrewingStandFuelContainerValidation.h b/src/mc/world/inventory/simulation/validation/BrewingStandFuelContainerValidation.h index a0ef1a101f..63978a571e 100644 --- a/src/mc/world/inventory/simulation/validation/BrewingStandFuelContainerValidation.h +++ b/src/mc/world/inventory/simulation/validation/BrewingStandFuelContainerValidation.h @@ -40,7 +40,7 @@ class BrewingStandFuelContainerValidation : public ::ContainerValidationBase { $isItemAllowedInSlot(::ContainerScreenContext const&, int const, ::ItemStackBase const& item, int const, bool) const; - MCAPI int $getContainerOffset(::ContainerScreenContext const& screenContext) const; + MCFOLD int $getContainerOffset(::ContainerScreenContext const& screenContext) const; // NOLINTEND public: diff --git a/src/mc/world/inventory/simulation/validation/BrewingStandInputContainerValidation.h b/src/mc/world/inventory/simulation/validation/BrewingStandInputContainerValidation.h index ea8d835385..92dba5f2d3 100644 --- a/src/mc/world/inventory/simulation/validation/BrewingStandInputContainerValidation.h +++ b/src/mc/world/inventory/simulation/validation/BrewingStandInputContainerValidation.h @@ -40,7 +40,7 @@ class BrewingStandInputContainerValidation : public ::ContainerValidationBase { $isItemAllowedInSlot(::ContainerScreenContext const&, int const, ::ItemStackBase const& item, int const, bool) const; - MCAPI int $getContainerOffset(::ContainerScreenContext const& screenContext) const; + MCFOLD int $getContainerOffset(::ContainerScreenContext const& screenContext) const; // NOLINTEND public: diff --git a/src/mc/world/inventory/simulation/validation/BrewingStandResultContainerValidation.h b/src/mc/world/inventory/simulation/validation/BrewingStandResultContainerValidation.h index 3b483f2aa8..fb3152e891 100644 --- a/src/mc/world/inventory/simulation/validation/BrewingStandResultContainerValidation.h +++ b/src/mc/world/inventory/simulation/validation/BrewingStandResultContainerValidation.h @@ -53,11 +53,11 @@ class BrewingStandResultContainerValidation : public ::ContainerValidationBase { MCAPI int $getAvailableSetCount(int const slot, ::ItemStackBase const& item) const; - MCAPI int $getAllowedAddCount(::ContainerScreenContext const&, ::ItemStackBase const&) const; + MCFOLD int $getAllowedAddCount(::ContainerScreenContext const&, ::ItemStackBase const&) const; - MCAPI int $getContainerOffset(::ContainerScreenContext const& screenContext) const; + MCFOLD int $getContainerOffset(::ContainerScreenContext const& screenContext) const; - MCAPI int $getContainerSize(::ContainerScreenContext const& screenContext, ::Container const& container) const; + MCFOLD int $getContainerSize(::ContainerScreenContext const& screenContext, ::Container const& container) const; // NOLINTEND public: diff --git a/src/mc/world/inventory/simulation/validation/CartographyAdditionalContainerValidation.h b/src/mc/world/inventory/simulation/validation/CartographyAdditionalContainerValidation.h index d60b0153ed..30c8773da1 100644 --- a/src/mc/world/inventory/simulation/validation/CartographyAdditionalContainerValidation.h +++ b/src/mc/world/inventory/simulation/validation/CartographyAdditionalContainerValidation.h @@ -40,7 +40,7 @@ class CartographyAdditionalContainerValidation : public ::ContainerValidationBas public: // virtual function thunks // NOLINTBEGIN - MCAPI bool $isItemAllowedInSlot( + MCFOLD bool $isItemAllowedInSlot( ::ContainerScreenContext const& screenContext, int const slot, ::ItemStackBase const& item, @@ -48,7 +48,7 @@ class CartographyAdditionalContainerValidation : public ::ContainerValidationBas bool ) const; - MCAPI int $getContainerOffset(::ContainerScreenContext const& screenContext) const; + MCFOLD int $getContainerOffset(::ContainerScreenContext const& screenContext) const; // NOLINTEND public: diff --git a/src/mc/world/inventory/simulation/validation/CartographyContainerScreenValidator.h b/src/mc/world/inventory/simulation/validation/CartographyContainerScreenValidator.h index ceed1690ac..7b09cb14b7 100644 --- a/src/mc/world/inventory/simulation/validation/CartographyContainerScreenValidator.h +++ b/src/mc/world/inventory/simulation/validation/CartographyContainerScreenValidator.h @@ -41,7 +41,7 @@ class CartographyContainerScreenValidator : public ::ContainerScreenValidatorBas public: // virtual function thunks // NOLINTBEGIN - MCAPI bool $isCraftingImplemented(); + MCFOLD bool $isCraftingImplemented(); MCAPI ::ContainerValidationCraftResult $getCraftResult( ::ContainerScreenContext const& screenContext, diff --git a/src/mc/world/inventory/simulation/validation/CartographyInputContainerValidation.h b/src/mc/world/inventory/simulation/validation/CartographyInputContainerValidation.h index c49e8e1dfa..629c592af4 100644 --- a/src/mc/world/inventory/simulation/validation/CartographyInputContainerValidation.h +++ b/src/mc/world/inventory/simulation/validation/CartographyInputContainerValidation.h @@ -40,7 +40,7 @@ class CartographyInputContainerValidation : public ::ContainerValidationBase { public: // virtual function thunks // NOLINTBEGIN - MCAPI bool $isItemAllowedInSlot( + MCFOLD bool $isItemAllowedInSlot( ::ContainerScreenContext const& screenContext, int const slot, ::ItemStackBase const& item, @@ -48,7 +48,7 @@ class CartographyInputContainerValidation : public ::ContainerValidationBase { bool ) const; - MCAPI int $getContainerOffset(::ContainerScreenContext const& screenContext) const; + MCFOLD int $getContainerOffset(::ContainerScreenContext const& screenContext) const; // NOLINTEND public: diff --git a/src/mc/world/inventory/simulation/validation/CombinedHotbarAndInventoryContainerValidation.h b/src/mc/world/inventory/simulation/validation/CombinedHotbarAndInventoryContainerValidation.h index 823e09e885..b4f43756c7 100644 --- a/src/mc/world/inventory/simulation/validation/CombinedHotbarAndInventoryContainerValidation.h +++ b/src/mc/world/inventory/simulation/validation/CombinedHotbarAndInventoryContainerValidation.h @@ -40,11 +40,12 @@ class CombinedHotbarAndInventoryContainerValidation : public ::ContainerValidati public: // virtual function thunks // NOLINTBEGIN - MCAPI bool $isItemAllowedToRemove(::ContainerScreenContext const& screenContext, ::ItemStackBase const& item) const; + MCFOLD bool + $isItemAllowedToRemove(::ContainerScreenContext const& screenContext, ::ItemStackBase const& item) const; - MCAPI int $getContainerSize(::ContainerScreenContext const& screenContext, ::Container const& container) const; + MCFOLD int $getContainerSize(::ContainerScreenContext const& screenContext, ::Container const& container) const; - MCAPI bool $canItemMoveToContainer(::ItemStackBase const& item) const; + MCFOLD bool $canItemMoveToContainer(::ItemStackBase const& item) const; // NOLINTEND public: diff --git a/src/mc/world/inventory/simulation/validation/CompoundCreatorInputValidation.h b/src/mc/world/inventory/simulation/validation/CompoundCreatorInputValidation.h index 424f6c50f4..c10d81931a 100644 --- a/src/mc/world/inventory/simulation/validation/CompoundCreatorInputValidation.h +++ b/src/mc/world/inventory/simulation/validation/CompoundCreatorInputValidation.h @@ -53,9 +53,9 @@ class CompoundCreatorInputValidation : public ::ContainerValidationBase { bool ) const; - MCAPI int $getContainerOffset(::ContainerScreenContext const& screenContext) const; + MCFOLD int $getContainerOffset(::ContainerScreenContext const& screenContext) const; - MCAPI int $getContainerSize(::ContainerScreenContext const& screenContext, ::Container const& container) const; + MCFOLD int $getContainerSize(::ContainerScreenContext const& screenContext, ::Container const& container) const; // NOLINTEND public: diff --git a/src/mc/world/inventory/simulation/validation/ContainerScreenValidatorBase.h b/src/mc/world/inventory/simulation/validation/ContainerScreenValidatorBase.h index 88e92355e9..da9c5c5ebe 100644 --- a/src/mc/world/inventory/simulation/validation/ContainerScreenValidatorBase.h +++ b/src/mc/world/inventory/simulation/validation/ContainerScreenValidatorBase.h @@ -70,10 +70,10 @@ class ContainerScreenValidatorBase { public: // virtual function thunks // NOLINTBEGIN - MCAPI ::std::shared_ptr<::ContainerValidationCommitObject> + MCFOLD ::std::shared_ptr<::ContainerValidationCommitObject> $postCommitItemRemoved(::ContainerEnumName const, int const, ::ItemStack const&); - MCAPI bool $isCraftingImplemented(); + MCFOLD bool $isCraftingImplemented(); MCAPI ::ContainerValidationCraftResult $getCraftResult( ::ContainerScreenContext const&, diff --git a/src/mc/world/inventory/simulation/validation/ContainerValidationBase.h b/src/mc/world/inventory/simulation/validation/ContainerValidationBase.h index e4219a166d..c398bf487f 100644 --- a/src/mc/world/inventory/simulation/validation/ContainerValidationBase.h +++ b/src/mc/world/inventory/simulation/validation/ContainerValidationBase.h @@ -68,7 +68,7 @@ class ContainerValidationBase { int const slot ) const; - MCAPI bool $isItemAllowedInSlot( + MCFOLD bool $isItemAllowedInSlot( ::ContainerScreenContext const& screenContext, int const slot, ::ItemStackBase const& item, @@ -80,14 +80,15 @@ class ContainerValidationBase { MCAPI int $getAllowedAddCount(::ContainerScreenContext const&, ::ItemStackBase const& item) const; - MCAPI bool $isItemAllowedToRemove(::ContainerScreenContext const& screenContext, ::ItemStackBase const& item) const; + MCFOLD bool + $isItemAllowedToRemove(::ContainerScreenContext const& screenContext, ::ItemStackBase const& item) const; MCAPI bool $canItemMoveToContainer(::ItemStackBase const& item) const; MCAPI bool $canDestroy(::ContainerScreenContext const& screenContext) const; - MCAPI int $getContainerOffset(::ContainerScreenContext const& screenContext) const; + MCFOLD int $getContainerOffset(::ContainerScreenContext const& screenContext) const; - MCAPI int $getContainerSize(::ContainerScreenContext const& screenContext, ::Container const& container) const; + MCFOLD int $getContainerSize(::ContainerScreenContext const& screenContext, ::Container const& container) const; // NOLINTEND }; diff --git a/src/mc/world/inventory/simulation/validation/CrafterContainerValidation.h b/src/mc/world/inventory/simulation/validation/CrafterContainerValidation.h index 9bc8164457..62c8cdf2c9 100644 --- a/src/mc/world/inventory/simulation/validation/CrafterContainerValidation.h +++ b/src/mc/world/inventory/simulation/validation/CrafterContainerValidation.h @@ -50,7 +50,7 @@ class CrafterContainerValidation : public ::ContainerValidationBase { bool ) const; - MCAPI int $getContainerSize(::ContainerScreenContext const& screenContext, ::Container const& container) const; + MCFOLD int $getContainerSize(::ContainerScreenContext const& screenContext, ::Container const& container) const; // NOLINTEND public: diff --git a/src/mc/world/inventory/simulation/validation/CreatedOutputContainerValidation.h b/src/mc/world/inventory/simulation/validation/CreatedOutputContainerValidation.h index f5a356a14b..9a65fb4965 100644 --- a/src/mc/world/inventory/simulation/validation/CreatedOutputContainerValidation.h +++ b/src/mc/world/inventory/simulation/validation/CreatedOutputContainerValidation.h @@ -46,7 +46,7 @@ class CreatedOutputContainerValidation : public ::ContainerValidationBase { public: // virtual function thunks // NOLINTBEGIN - MCAPI bool $isItemAllowedInSlot( + MCFOLD bool $isItemAllowedInSlot( ::ContainerScreenContext const& screenContext, int const slot, ::ItemStackBase const& item, @@ -54,11 +54,11 @@ class CreatedOutputContainerValidation : public ::ContainerValidationBase { bool ) const; - MCAPI int $getAllowedAddCount(::ContainerScreenContext const&, ::ItemStackBase const&) const; + MCFOLD int $getAllowedAddCount(::ContainerScreenContext const&, ::ItemStackBase const&) const; - MCAPI int $getContainerOffset(::ContainerScreenContext const& screenContext) const; + MCFOLD int $getContainerOffset(::ContainerScreenContext const& screenContext) const; - MCAPI bool $canItemMoveToContainer(::ItemStackBase const& item) const; + MCFOLD bool $canItemMoveToContainer(::ItemStackBase const& item) const; // NOLINTEND public: diff --git a/src/mc/world/inventory/simulation/validation/CursorContainerValidation.h b/src/mc/world/inventory/simulation/validation/CursorContainerValidation.h index 266cc4e699..c77fecd6df 100644 --- a/src/mc/world/inventory/simulation/validation/CursorContainerValidation.h +++ b/src/mc/world/inventory/simulation/validation/CursorContainerValidation.h @@ -34,9 +34,9 @@ class CursorContainerValidation : public ::ContainerValidationBase { public: // virtual function thunks // NOLINTBEGIN - MCAPI bool $canItemMoveToContainer(::ItemStackBase const& item) const; + MCFOLD bool $canItemMoveToContainer(::ItemStackBase const& item) const; - MCAPI int $getContainerOffset(::ContainerScreenContext const& screenContext) const; + MCFOLD int $getContainerOffset(::ContainerScreenContext const& screenContext) const; // NOLINTEND public: diff --git a/src/mc/world/inventory/simulation/validation/DynamicContainerValidation.h b/src/mc/world/inventory/simulation/validation/DynamicContainerValidation.h index a722fcd56e..615c47bbdc 100644 --- a/src/mc/world/inventory/simulation/validation/DynamicContainerValidation.h +++ b/src/mc/world/inventory/simulation/validation/DynamicContainerValidation.h @@ -65,11 +65,11 @@ class DynamicContainerValidation : public ::ContainerValidationBase { public: // virtual function thunks // NOLINTBEGIN - MCAPI bool $canItemMoveToContainer(::ItemStackBase const& item) const; + MCFOLD bool $canItemMoveToContainer(::ItemStackBase const& item) const; - MCAPI int $getContainerOffset(::ContainerScreenContext const& screenContext) const; + MCFOLD int $getContainerOffset(::ContainerScreenContext const& screenContext) const; - MCAPI int $getContainerSize(::ContainerScreenContext const& screenContext, ::Container const& container) const; + MCFOLD int $getContainerSize(::ContainerScreenContext const& screenContext, ::Container const& container) const; MCAPI bool $isItemAllowedInSlot( ::ContainerScreenContext const& screenContext, diff --git a/src/mc/world/inventory/simulation/validation/EnchantingInputContainerValidation.h b/src/mc/world/inventory/simulation/validation/EnchantingInputContainerValidation.h index 06abdcb7d4..43bf62f081 100644 --- a/src/mc/world/inventory/simulation/validation/EnchantingInputContainerValidation.h +++ b/src/mc/world/inventory/simulation/validation/EnchantingInputContainerValidation.h @@ -54,11 +54,11 @@ class EnchantingInputContainerValidation : public ::ContainerValidationBase { bool ) const; - MCAPI int $getAvailableSetCount(int slot, ::ItemStackBase const& item) const; + MCFOLD int $getAvailableSetCount(int slot, ::ItemStackBase const& item) const; - MCAPI int $getAllowedAddCount(::ContainerScreenContext const&, ::ItemStackBase const&) const; + MCFOLD int $getAllowedAddCount(::ContainerScreenContext const&, ::ItemStackBase const&) const; - MCAPI int $getContainerOffset(::ContainerScreenContext const& screenContext) const; + MCFOLD int $getContainerOffset(::ContainerScreenContext const& screenContext) const; // NOLINTEND public: diff --git a/src/mc/world/inventory/simulation/validation/EnchantingMaterialContainerValidation.h b/src/mc/world/inventory/simulation/validation/EnchantingMaterialContainerValidation.h index a9c19a06a7..e7bf1ea970 100644 --- a/src/mc/world/inventory/simulation/validation/EnchantingMaterialContainerValidation.h +++ b/src/mc/world/inventory/simulation/validation/EnchantingMaterialContainerValidation.h @@ -48,7 +48,7 @@ class EnchantingMaterialContainerValidation : public ::ContainerValidationBase { bool ) const; - MCAPI int $getContainerOffset(::ContainerScreenContext const& screenContext) const; + MCFOLD int $getContainerOffset(::ContainerScreenContext const& screenContext) const; // NOLINTEND public: diff --git a/src/mc/world/inventory/simulation/validation/FurnaceFuelContainerValidation.h b/src/mc/world/inventory/simulation/validation/FurnaceFuelContainerValidation.h index aa019bba63..af7972330c 100644 --- a/src/mc/world/inventory/simulation/validation/FurnaceFuelContainerValidation.h +++ b/src/mc/world/inventory/simulation/validation/FurnaceFuelContainerValidation.h @@ -59,7 +59,7 @@ class FurnaceFuelContainerValidation : public ::ContainerValidationBase { MCAPI int $getAvailableSetCount(int slot, ::ItemStackBase const& item) const; - MCAPI int $getContainerOffset(::ContainerScreenContext const& screenContext) const; + MCFOLD int $getContainerOffset(::ContainerScreenContext const& screenContext) const; // NOLINTEND public: diff --git a/src/mc/world/inventory/simulation/validation/FurnaceIngredientContainerValidation.h b/src/mc/world/inventory/simulation/validation/FurnaceIngredientContainerValidation.h index 2dbdca7cfa..2bb257e31c 100644 --- a/src/mc/world/inventory/simulation/validation/FurnaceIngredientContainerValidation.h +++ b/src/mc/world/inventory/simulation/validation/FurnaceIngredientContainerValidation.h @@ -30,7 +30,7 @@ class FurnaceIngredientContainerValidation : public ::ContainerValidationBase { public: // virtual function thunks // NOLINTBEGIN - MCAPI int $getContainerOffset(::ContainerScreenContext const& screenContext) const; + MCFOLD int $getContainerOffset(::ContainerScreenContext const& screenContext) const; // NOLINTEND public: diff --git a/src/mc/world/inventory/simulation/validation/FurnaceResultContainerValidation.h b/src/mc/world/inventory/simulation/validation/FurnaceResultContainerValidation.h index 072ae32e43..ebd2a64f98 100644 --- a/src/mc/world/inventory/simulation/validation/FurnaceResultContainerValidation.h +++ b/src/mc/world/inventory/simulation/validation/FurnaceResultContainerValidation.h @@ -30,7 +30,7 @@ class FurnaceResultContainerValidation : public ::ContainerValidationBase { public: // virtual function thunks // NOLINTBEGIN - MCAPI int $getContainerOffset(::ContainerScreenContext const& screenContext) const; + MCFOLD int $getContainerOffset(::ContainerScreenContext const& screenContext) const; // NOLINTEND public: diff --git a/src/mc/world/inventory/simulation/validation/GrindstoneAdditionalContainerValidation.h b/src/mc/world/inventory/simulation/validation/GrindstoneAdditionalContainerValidation.h index fba4257490..c094ed9cee 100644 --- a/src/mc/world/inventory/simulation/validation/GrindstoneAdditionalContainerValidation.h +++ b/src/mc/world/inventory/simulation/validation/GrindstoneAdditionalContainerValidation.h @@ -36,11 +36,11 @@ class GrindstoneAdditionalContainerValidation : public ::ContainerValidationBase public: // virtual function thunks // NOLINTBEGIN - MCAPI bool + MCFOLD bool $isItemAllowedInSlot(::ContainerScreenContext const&, int const, ::ItemStackBase const& item, int const, bool) const; - MCAPI int $getContainerOffset(::ContainerScreenContext const& screenContext) const; + MCFOLD int $getContainerOffset(::ContainerScreenContext const& screenContext) const; // NOLINTEND public: diff --git a/src/mc/world/inventory/simulation/validation/GrindstoneInputContainerValidation.h b/src/mc/world/inventory/simulation/validation/GrindstoneInputContainerValidation.h index 836cb2ffc2..82d1c28c38 100644 --- a/src/mc/world/inventory/simulation/validation/GrindstoneInputContainerValidation.h +++ b/src/mc/world/inventory/simulation/validation/GrindstoneInputContainerValidation.h @@ -36,11 +36,11 @@ class GrindstoneInputContainerValidation : public ::ContainerValidationBase { public: // virtual function thunks // NOLINTBEGIN - MCAPI bool + MCFOLD bool $isItemAllowedInSlot(::ContainerScreenContext const&, int const, ::ItemStackBase const& item, int const, bool) const; - MCAPI int $getContainerOffset(::ContainerScreenContext const& screenContext) const; + MCFOLD int $getContainerOffset(::ContainerScreenContext const& screenContext) const; // NOLINTEND public: diff --git a/src/mc/world/inventory/simulation/validation/HorseEquipContainerValidation.h b/src/mc/world/inventory/simulation/validation/HorseEquipContainerValidation.h index f893870d94..2590ca2e5c 100644 --- a/src/mc/world/inventory/simulation/validation/HorseEquipContainerValidation.h +++ b/src/mc/world/inventory/simulation/validation/HorseEquipContainerValidation.h @@ -73,9 +73,9 @@ class HorseEquipContainerValidation : public ::ContainerValidationBase { public: // virtual function thunks // NOLINTBEGIN - MCAPI int $getAvailableSetCount(int slot, ::ItemStackBase const& item) const; + MCFOLD int $getAvailableSetCount(int slot, ::ItemStackBase const& item) const; - MCAPI int $getAllowedAddCount(::ContainerScreenContext const&, ::ItemStackBase const&) const; + MCFOLD int $getAllowedAddCount(::ContainerScreenContext const&, ::ItemStackBase const&) const; MCAPI bool $isItemAllowedInSlot( ::ContainerScreenContext const&, diff --git a/src/mc/world/inventory/simulation/validation/HotbarContainerValidation.h b/src/mc/world/inventory/simulation/validation/HotbarContainerValidation.h index 4d0a7f521e..0816a81d0e 100644 --- a/src/mc/world/inventory/simulation/validation/HotbarContainerValidation.h +++ b/src/mc/world/inventory/simulation/validation/HotbarContainerValidation.h @@ -40,11 +40,12 @@ class HotbarContainerValidation : public ::ContainerValidationBase { public: // virtual function thunks // NOLINTBEGIN - MCAPI bool $isItemAllowedToRemove(::ContainerScreenContext const& screenContext, ::ItemStackBase const& item) const; + MCFOLD bool + $isItemAllowedToRemove(::ContainerScreenContext const& screenContext, ::ItemStackBase const& item) const; - MCAPI int $getContainerSize(::ContainerScreenContext const& screenContext, ::Container const& container) const; + MCFOLD int $getContainerSize(::ContainerScreenContext const& screenContext, ::Container const& container) const; - MCAPI bool $canItemMoveToContainer(::ItemStackBase const& item) const; + MCFOLD bool $canItemMoveToContainer(::ItemStackBase const& item) const; // NOLINTEND public: diff --git a/src/mc/world/inventory/simulation/validation/InventoryContainerValidation.h b/src/mc/world/inventory/simulation/validation/InventoryContainerValidation.h index 04fce2e809..182b94394a 100644 --- a/src/mc/world/inventory/simulation/validation/InventoryContainerValidation.h +++ b/src/mc/world/inventory/simulation/validation/InventoryContainerValidation.h @@ -43,13 +43,14 @@ class InventoryContainerValidation : public ::ContainerValidationBase { public: // virtual function thunks // NOLINTBEGIN - MCAPI bool $isItemAllowedToRemove(::ContainerScreenContext const& screenContext, ::ItemStackBase const& item) const; + MCFOLD bool + $isItemAllowedToRemove(::ContainerScreenContext const& screenContext, ::ItemStackBase const& item) const; - MCAPI int $getContainerOffset(::ContainerScreenContext const& screenContext) const; + MCFOLD int $getContainerOffset(::ContainerScreenContext const& screenContext) const; MCAPI int $getContainerSize(::ContainerScreenContext const& screenContext, ::Container const& container) const; - MCAPI bool $canItemMoveToContainer(::ItemStackBase const& item) const; + MCFOLD bool $canItemMoveToContainer(::ItemStackBase const& item) const; // NOLINTEND public: diff --git a/src/mc/world/inventory/simulation/validation/LabTableInputValidation.h b/src/mc/world/inventory/simulation/validation/LabTableInputValidation.h index 8d262157f8..36ea1699ef 100644 --- a/src/mc/world/inventory/simulation/validation/LabTableInputValidation.h +++ b/src/mc/world/inventory/simulation/validation/LabTableInputValidation.h @@ -53,9 +53,9 @@ class LabTableInputValidation : public ::ContainerValidationBase { bool ) const; - MCAPI int $getContainerSize(::ContainerScreenContext const& screenContext, ::Container const& container) const; + MCFOLD int $getContainerSize(::ContainerScreenContext const& screenContext, ::Container const& container) const; - MCAPI bool $canDestroy(::ContainerScreenContext const& screenContext) const; + MCFOLD bool $canDestroy(::ContainerScreenContext const& screenContext) const; // NOLINTEND public: diff --git a/src/mc/world/inventory/simulation/validation/LoomDyeContainerValidation.h b/src/mc/world/inventory/simulation/validation/LoomDyeContainerValidation.h index deb04873e9..96e2d0df0a 100644 --- a/src/mc/world/inventory/simulation/validation/LoomDyeContainerValidation.h +++ b/src/mc/world/inventory/simulation/validation/LoomDyeContainerValidation.h @@ -48,7 +48,7 @@ class LoomDyeContainerValidation : public ::ContainerValidationBase { bool ) const; - MCAPI int $getContainerOffset(::ContainerScreenContext const& screenContext) const; + MCFOLD int $getContainerOffset(::ContainerScreenContext const& screenContext) const; // NOLINTEND public: diff --git a/src/mc/world/inventory/simulation/validation/LoomInputContainerValidation.h b/src/mc/world/inventory/simulation/validation/LoomInputContainerValidation.h index c0671c7e19..1a5f894cc0 100644 --- a/src/mc/world/inventory/simulation/validation/LoomInputContainerValidation.h +++ b/src/mc/world/inventory/simulation/validation/LoomInputContainerValidation.h @@ -48,7 +48,7 @@ class LoomInputContainerValidation : public ::ContainerValidationBase { bool ) const; - MCAPI int $getContainerOffset(::ContainerScreenContext const& screenContext) const; + MCFOLD int $getContainerOffset(::ContainerScreenContext const& screenContext) const; // NOLINTEND public: diff --git a/src/mc/world/inventory/simulation/validation/LoomMaterialContainerValidation.h b/src/mc/world/inventory/simulation/validation/LoomMaterialContainerValidation.h index 75375dea9d..a469e18b9a 100644 --- a/src/mc/world/inventory/simulation/validation/LoomMaterialContainerValidation.h +++ b/src/mc/world/inventory/simulation/validation/LoomMaterialContainerValidation.h @@ -48,7 +48,7 @@ class LoomMaterialContainerValidation : public ::ContainerValidationBase { bool ) const; - MCAPI int $getContainerOffset(::ContainerScreenContext const& screenContext) const; + MCFOLD int $getContainerOffset(::ContainerScreenContext const& screenContext) const; // NOLINTEND public: diff --git a/src/mc/world/inventory/simulation/validation/MaterialReducerInputValidation.h b/src/mc/world/inventory/simulation/validation/MaterialReducerInputValidation.h index bda3f917d2..ba2fe1fff6 100644 --- a/src/mc/world/inventory/simulation/validation/MaterialReducerInputValidation.h +++ b/src/mc/world/inventory/simulation/validation/MaterialReducerInputValidation.h @@ -70,13 +70,13 @@ class MaterialReducerInputValidation : public ::ContainerValidationBase { bool ) const; - MCAPI int $getAvailableSetCount(int slot, ::ItemStackBase const& item) const; + MCFOLD int $getAvailableSetCount(int slot, ::ItemStackBase const& item) const; - MCAPI int $getAllowedAddCount(::ContainerScreenContext const&, ::ItemStackBase const&) const; + MCFOLD int $getAllowedAddCount(::ContainerScreenContext const&, ::ItemStackBase const&) const; - MCAPI int $getContainerOffset(::ContainerScreenContext const& screenContext) const; + MCFOLD int $getContainerOffset(::ContainerScreenContext const& screenContext) const; - MCAPI bool $canDestroy(::ContainerScreenContext const& screenContext) const; + MCFOLD bool $canDestroy(::ContainerScreenContext const& screenContext) const; // NOLINTEND public: diff --git a/src/mc/world/inventory/simulation/validation/MaterialReducerOutputValidation.h b/src/mc/world/inventory/simulation/validation/MaterialReducerOutputValidation.h index 9488cb39cb..cbf8a3416c 100644 --- a/src/mc/world/inventory/simulation/validation/MaterialReducerOutputValidation.h +++ b/src/mc/world/inventory/simulation/validation/MaterialReducerOutputValidation.h @@ -38,11 +38,11 @@ class MaterialReducerOutputValidation : public ::ContainerValidationBase { public: // virtual function thunks // NOLINTBEGIN - MCAPI int $getContainerOffset(::ContainerScreenContext const& screenContext) const; + MCFOLD int $getContainerOffset(::ContainerScreenContext const& screenContext) const; - MCAPI int $getContainerSize(::ContainerScreenContext const& screenContext, ::Container const& container) const; + MCFOLD int $getContainerSize(::ContainerScreenContext const& screenContext, ::Container const& container) const; - MCAPI bool $canDestroy(::ContainerScreenContext const& screenContext) const; + MCFOLD bool $canDestroy(::ContainerScreenContext const& screenContext) const; // NOLINTEND public: diff --git a/src/mc/world/inventory/simulation/validation/OffhandContainerValidation.h b/src/mc/world/inventory/simulation/validation/OffhandContainerValidation.h index 91d3374004..32b3ff2fe6 100644 --- a/src/mc/world/inventory/simulation/validation/OffhandContainerValidation.h +++ b/src/mc/world/inventory/simulation/validation/OffhandContainerValidation.h @@ -55,11 +55,12 @@ class OffhandContainerValidation : public ::ContainerValidationBase { bool ) const; - MCAPI bool $isItemAllowedToRemove(::ContainerScreenContext const& screenContext, ::ItemStackBase const& item) const; + MCFOLD bool + $isItemAllowedToRemove(::ContainerScreenContext const& screenContext, ::ItemStackBase const& item) const; - MCAPI bool $canItemMoveToContainer(::ItemStackBase const& item) const; + MCFOLD bool $canItemMoveToContainer(::ItemStackBase const& item) const; - MCAPI int $getContainerOffset(::ContainerScreenContext const& screenContext) const; + MCFOLD int $getContainerOffset(::ContainerScreenContext const& screenContext) const; // NOLINTEND public: diff --git a/src/mc/world/inventory/simulation/validation/PreviewContainerValidation.h b/src/mc/world/inventory/simulation/validation/PreviewContainerValidation.h index 73d8a80fb2..64182e8d41 100644 --- a/src/mc/world/inventory/simulation/validation/PreviewContainerValidation.h +++ b/src/mc/world/inventory/simulation/validation/PreviewContainerValidation.h @@ -46,7 +46,7 @@ class PreviewContainerValidation : public ::ContainerValidationBase { public: // virtual function thunks // NOLINTBEGIN - MCAPI bool $isItemAllowedInSlot( + MCFOLD bool $isItemAllowedInSlot( ::ContainerScreenContext const& screenContext, int const slot, ::ItemStackBase const& item, @@ -54,9 +54,9 @@ class PreviewContainerValidation : public ::ContainerValidationBase { bool ) const; - MCAPI int $getAllowedAddCount(::ContainerScreenContext const&, ::ItemStackBase const&) const; + MCFOLD int $getAllowedAddCount(::ContainerScreenContext const&, ::ItemStackBase const&) const; - MCAPI bool $isValidSlotForContainer( + MCFOLD bool $isValidSlotForContainer( ::ContainerScreenContext const& screenContext, ::Container const& container, int const slot diff --git a/src/mc/world/inventory/simulation/validation/ShulkerBoxContainerValidation.h b/src/mc/world/inventory/simulation/validation/ShulkerBoxContainerValidation.h index e2abfb1602..b57eda6898 100644 --- a/src/mc/world/inventory/simulation/validation/ShulkerBoxContainerValidation.h +++ b/src/mc/world/inventory/simulation/validation/ShulkerBoxContainerValidation.h @@ -50,7 +50,7 @@ class ShulkerBoxContainerValidation : public ::ContainerValidationBase { bool ) const; - MCAPI int $getContainerSize(::ContainerScreenContext const& screenContext, ::Container const& container) const; + MCFOLD int $getContainerSize(::ContainerScreenContext const& screenContext, ::Container const& container) const; // NOLINTEND public: diff --git a/src/mc/world/inventory/simulation/validation/SmithingTableInputContainerValidation.h b/src/mc/world/inventory/simulation/validation/SmithingTableInputContainerValidation.h index b398a3bffe..b335ef54a7 100644 --- a/src/mc/world/inventory/simulation/validation/SmithingTableInputContainerValidation.h +++ b/src/mc/world/inventory/simulation/validation/SmithingTableInputContainerValidation.h @@ -48,7 +48,7 @@ class SmithingTableInputContainerValidation : public ::ContainerValidationBase { bool ) const; - MCAPI int $getContainerOffset(::ContainerScreenContext const& screenContext) const; + MCFOLD int $getContainerOffset(::ContainerScreenContext const& screenContext) const; // NOLINTEND public: diff --git a/src/mc/world/inventory/simulation/validation/SmithingTableMaterialContainerValidation.h b/src/mc/world/inventory/simulation/validation/SmithingTableMaterialContainerValidation.h index bbfdb0d6b8..07bbde200b 100644 --- a/src/mc/world/inventory/simulation/validation/SmithingTableMaterialContainerValidation.h +++ b/src/mc/world/inventory/simulation/validation/SmithingTableMaterialContainerValidation.h @@ -48,7 +48,7 @@ class SmithingTableMaterialContainerValidation : public ::ContainerValidationBas bool ) const; - MCAPI int $getContainerOffset(::ContainerScreenContext const& screenContext) const; + MCFOLD int $getContainerOffset(::ContainerScreenContext const& screenContext) const; // NOLINTEND public: diff --git a/src/mc/world/inventory/simulation/validation/StoneCutterContainerScreenValidator.h b/src/mc/world/inventory/simulation/validation/StoneCutterContainerScreenValidator.h index 3d900219f3..e97f8cc788 100644 --- a/src/mc/world/inventory/simulation/validation/StoneCutterContainerScreenValidator.h +++ b/src/mc/world/inventory/simulation/validation/StoneCutterContainerScreenValidator.h @@ -54,7 +54,7 @@ class StoneCutterContainerScreenValidator : public ::ContainerScreenValidatorBas public: // virtual function thunks // NOLINTBEGIN - MCAPI bool $isCraftingImplemented(); + MCFOLD bool $isCraftingImplemented(); MCAPI ::ContainerValidationCraftResult $getCraftResult( ::ContainerScreenContext const& screenContext, diff --git a/src/mc/world/inventory/simulation/validation/StoneCutterInputContainerValidation.h b/src/mc/world/inventory/simulation/validation/StoneCutterInputContainerValidation.h index f2edd1f0ce..868fa64db3 100644 --- a/src/mc/world/inventory/simulation/validation/StoneCutterInputContainerValidation.h +++ b/src/mc/world/inventory/simulation/validation/StoneCutterInputContainerValidation.h @@ -30,7 +30,7 @@ class StoneCutterInputContainerValidation : public ::ContainerValidationBase { public: // virtual function thunks // NOLINTBEGIN - MCAPI int $getContainerOffset(::ContainerScreenContext const& screenContext) const; + MCFOLD int $getContainerOffset(::ContainerScreenContext const& screenContext) const; // NOLINTEND public: diff --git a/src/mc/world/inventory/simulation/validation/Trade1Ingredient1ContainerValidation.h b/src/mc/world/inventory/simulation/validation/Trade1Ingredient1ContainerValidation.h index 0d22e45291..f7190d40ed 100644 --- a/src/mc/world/inventory/simulation/validation/Trade1Ingredient1ContainerValidation.h +++ b/src/mc/world/inventory/simulation/validation/Trade1Ingredient1ContainerValidation.h @@ -60,7 +60,7 @@ class Trade1Ingredient1ContainerValidation : public ::ContainerValidationBase { bool ) const; - MCAPI int $getContainerOffset(::ContainerScreenContext const& screenContext) const; + MCFOLD int $getContainerOffset(::ContainerScreenContext const& screenContext) const; // NOLINTEND public: diff --git a/src/mc/world/inventory/simulation/validation/Trade1Ingredient2ContainerValidation.h b/src/mc/world/inventory/simulation/validation/Trade1Ingredient2ContainerValidation.h index 3ceab03ecc..d3a07d88cc 100644 --- a/src/mc/world/inventory/simulation/validation/Trade1Ingredient2ContainerValidation.h +++ b/src/mc/world/inventory/simulation/validation/Trade1Ingredient2ContainerValidation.h @@ -60,7 +60,7 @@ class Trade1Ingredient2ContainerValidation : public ::ContainerValidationBase { bool ) const; - MCAPI int $getContainerOffset(::ContainerScreenContext const& screenContext) const; + MCFOLD int $getContainerOffset(::ContainerScreenContext const& screenContext) const; // NOLINTEND public: diff --git a/src/mc/world/inventory/simulation/validation/Trade2Ingredient1ContainerValidation.h b/src/mc/world/inventory/simulation/validation/Trade2Ingredient1ContainerValidation.h index 0ae3be3005..803219c897 100644 --- a/src/mc/world/inventory/simulation/validation/Trade2Ingredient1ContainerValidation.h +++ b/src/mc/world/inventory/simulation/validation/Trade2Ingredient1ContainerValidation.h @@ -30,7 +30,7 @@ class Trade2Ingredient1ContainerValidation : public ::ContainerValidationBase { public: // virtual function thunks // NOLINTBEGIN - MCAPI int $getContainerOffset(::ContainerScreenContext const& screenContext) const; + MCFOLD int $getContainerOffset(::ContainerScreenContext const& screenContext) const; // NOLINTEND public: diff --git a/src/mc/world/inventory/simulation/validation/Trade2Ingredient2ContainerValidation.h b/src/mc/world/inventory/simulation/validation/Trade2Ingredient2ContainerValidation.h index 01ee5c74ed..75451b43c2 100644 --- a/src/mc/world/inventory/simulation/validation/Trade2Ingredient2ContainerValidation.h +++ b/src/mc/world/inventory/simulation/validation/Trade2Ingredient2ContainerValidation.h @@ -30,7 +30,7 @@ class Trade2Ingredient2ContainerValidation : public ::ContainerValidationBase { public: // virtual function thunks // NOLINTBEGIN - MCAPI int $getContainerOffset(::ContainerScreenContext const& screenContext) const; + MCFOLD int $getContainerOffset(::ContainerScreenContext const& screenContext) const; // NOLINTEND public: diff --git a/src/mc/world/inventory/transaction/ComplexInventoryTransaction.h b/src/mc/world/inventory/transaction/ComplexInventoryTransaction.h index 100afb9e5d..b166ea69bf 100644 --- a/src/mc/world/inventory/transaction/ComplexInventoryTransaction.h +++ b/src/mc/world/inventory/transaction/ComplexInventoryTransaction.h @@ -89,15 +89,15 @@ class ComplexInventoryTransaction { public: // virtual function thunks // NOLINTBEGIN - MCAPI ::Bedrock::Result $read(::ReadOnlyBinaryStream&); + MCFOLD ::Bedrock::Result $read(::ReadOnlyBinaryStream&); - MCAPI void $write(::BinaryStream& stream) const; + MCFOLD void $write(::BinaryStream& stream) const; - MCAPI void $postLoadItems(::BlockPalette& blockPalette, bool isClientSide); + MCFOLD void $postLoadItems(::BlockPalette& blockPalette, bool isClientSide); MCAPI ::InventoryTransactionError $handle(::Player& player, bool isSenderAuthority) const; - MCAPI void $onTransactionError(::Player& player, ::InventoryTransactionError error) const; + MCFOLD void $onTransactionError(::Player& player, ::InventoryTransactionError error) const; // NOLINTEND public: diff --git a/src/mc/world/inventory/transaction/InventoryTransaction.h b/src/mc/world/inventory/transaction/InventoryTransaction.h index e1e779626e..1955c10f67 100644 --- a/src/mc/world/inventory/transaction/InventoryTransaction.h +++ b/src/mc/world/inventory/transaction/InventoryTransaction.h @@ -32,7 +32,7 @@ class InventoryTransaction { // NOLINTBEGIN MCAPI InventoryTransaction(::InventoryTransaction const&); - MCAPI void _logTransaction(bool isClientSide) const; + MCFOLD void _logTransaction(bool isClientSide) const; MCAPI void addAction(::InventoryAction const& action); diff --git a/src/mc/world/inventory/transaction/InventoryTransactionItemGroup.h b/src/mc/world/inventory/transaction/InventoryTransactionItemGroup.h index be61b56efb..edef3f75d5 100644 --- a/src/mc/world/inventory/transaction/InventoryTransactionItemGroup.h +++ b/src/mc/world/inventory/transaction/InventoryTransactionItemGroup.h @@ -32,6 +32,6 @@ class InventoryTransactionItemGroup { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/world/inventory/transaction/InventoryTransactionManager.h b/src/mc/world/inventory/transaction/InventoryTransactionManager.h index d0b37fa682..63e1c08f46 100644 --- a/src/mc/world/inventory/transaction/InventoryTransactionManager.h +++ b/src/mc/world/inventory/transaction/InventoryTransactionManager.h @@ -33,7 +33,7 @@ class InventoryTransactionManager { MCAPI void _createServerSideAction(::ItemStack const& oldItem, ::ItemStack const& newItem); - MCAPI void _logExpectedActions() const; + MCFOLD void _logExpectedActions() const; MCAPI void addAction(::InventoryAction const& action, bool forceBalanced); @@ -41,7 +41,7 @@ class InventoryTransactionManager { MCAPI void forceBalanceTransaction(); - MCAPI ::std::unique_ptr<::InventoryTransaction> const& getCurrentTransaction() const; + MCFOLD ::std::unique_ptr<::InventoryTransaction> const& getCurrentTransaction() const; MCAPI void reset(); diff --git a/src/mc/world/inventory/transaction/ItemReleaseInventoryTransaction.h b/src/mc/world/inventory/transaction/ItemReleaseInventoryTransaction.h index 0781f5cb7c..fe4254260b 100644 --- a/src/mc/world/inventory/transaction/ItemReleaseInventoryTransaction.h +++ b/src/mc/world/inventory/transaction/ItemReleaseInventoryTransaction.h @@ -76,9 +76,9 @@ class ItemReleaseInventoryTransaction : public ::ComplexInventoryTransaction { MCAPI void $write(::BinaryStream& stream) const; - MCAPI void $postLoadItems(::BlockPalette& blockPalette, bool isClientSide); + MCFOLD void $postLoadItems(::BlockPalette& blockPalette, bool isClientSide); - MCAPI void $onTransactionError(::Player& player, ::InventoryTransactionError error) const; + MCFOLD void $onTransactionError(::Player& player, ::InventoryTransactionError error) const; MCAPI ::InventoryTransactionError $handle(::Player& player, bool isSenderAuthority) const; // NOLINTEND diff --git a/src/mc/world/inventory/transaction/ItemUseInventoryTransaction.h b/src/mc/world/inventory/transaction/ItemUseInventoryTransaction.h index 87133232fe..c4ce66e8e2 100644 --- a/src/mc/world/inventory/transaction/ItemUseInventoryTransaction.h +++ b/src/mc/world/inventory/transaction/ItemUseInventoryTransaction.h @@ -131,7 +131,7 @@ class ItemUseInventoryTransaction : public ::ComplexInventoryTransaction { MCAPI void $write(::BinaryStream& stream) const; - MCAPI void $postLoadItems(::BlockPalette& blockPalette, bool isClientSide); + MCFOLD void $postLoadItems(::BlockPalette& blockPalette, bool isClientSide); MCAPI void $onTransactionError(::Player& player, ::InventoryTransactionError error) const; diff --git a/src/mc/world/inventory/transaction/ItemUseOnActorInventoryTransaction.h b/src/mc/world/inventory/transaction/ItemUseOnActorInventoryTransaction.h index d72e4a87c9..f4d7e20f89 100644 --- a/src/mc/world/inventory/transaction/ItemUseOnActorInventoryTransaction.h +++ b/src/mc/world/inventory/transaction/ItemUseOnActorInventoryTransaction.h @@ -80,9 +80,9 @@ class ItemUseOnActorInventoryTransaction : public ::ComplexInventoryTransaction MCAPI void $write(::BinaryStream& stream) const; - MCAPI void $postLoadItems(::BlockPalette& blockPalette, bool isClientSide); + MCFOLD void $postLoadItems(::BlockPalette& blockPalette, bool isClientSide); - MCAPI void $onTransactionError(::Player& player, ::InventoryTransactionError error) const; + MCFOLD void $onTransactionError(::Player& player, ::InventoryTransactionError error) const; MCAPI ::InventoryTransactionError $handle(::Player& player, bool isSenderAuthority) const; // NOLINTEND diff --git a/src/mc/world/item/ActorPlacerItem.h b/src/mc/world/item/ActorPlacerItem.h index a72db6fd0b..a34013af28 100644 --- a/src/mc/world/item/ActorPlacerItem.h +++ b/src/mc/world/item/ActorPlacerItem.h @@ -150,21 +150,21 @@ class ActorPlacerItem : public ::Item { MCAPI ::std::string $buildDescriptionId(::ItemDescriptor const&, ::CompoundTag const*) const; - MCAPI bool $isLiquidClipItem() const; + MCFOLD bool $isLiquidClipItem() const; MCAPI bool $shouldInteractionWithBlockBypassLiquid(::Block const& block) const; MCAPI bool $dispense(::BlockSource& region, ::Container& container, int slot, ::Vec3 const& pos, uchar face) const; - MCAPI bool $isValidAuxValue(int auxValue) const; + MCFOLD bool $isValidAuxValue(int auxValue) const; - MCAPI bool $isMultiColorTinted(::ItemStack const&) const; + MCFOLD bool $isMultiColorTinted(::ItemStack const&) const; - MCAPI ::mce::Color $getBaseColor(::ItemStack const&) const; + MCFOLD ::mce::Color $getBaseColor(::ItemStack const&) const; - MCAPI ::mce::Color $getSecondaryColor(::ItemStack const&) const; + MCFOLD ::mce::Color $getSecondaryColor(::ItemStack const&) const; - MCAPI bool $isActorPlacerItem() const; + MCFOLD bool $isActorPlacerItem() const; MCAPI ::InteractionResult $_useOn(::ItemStack& instance, ::Actor& entity, ::BlockPos pos, uchar face, ::Vec3 const& clickPos) const; diff --git a/src/mc/world/item/ArmorStandItem.h b/src/mc/world/item/ArmorStandItem.h index 1a2cf6dd77..4ba25a2450 100644 --- a/src/mc/world/item/ArmorStandItem.h +++ b/src/mc/world/item/ArmorStandItem.h @@ -21,7 +21,7 @@ class ArmorStandItem : public ::Item { // NOLINTBEGIN // vIndex: 120 virtual ::InteractionResult - _useOn(::ItemStack& instance, ::Actor& spawningActor, ::BlockPos pos, uchar face, ::Vec3 const& clickPos) const + _useOn(::ItemStack& instance, ::Actor& entity, ::BlockPos pos, uchar face, ::Vec3 const& clickPos) const /*override*/; // vIndex: 0 @@ -52,7 +52,7 @@ class ArmorStandItem : public ::Item { // virtual function thunks // NOLINTBEGIN MCAPI ::InteractionResult - $_useOn(::ItemStack& instance, ::Actor& spawningActor, ::BlockPos pos, uchar face, ::Vec3 const& clickPos) const; + $_useOn(::ItemStack& instance, ::Actor& entity, ::BlockPos pos, uchar face, ::Vec3 const& clickPos) const; // NOLINTEND public: diff --git a/src/mc/world/item/AuxDataBlockItem.h b/src/mc/world/item/AuxDataBlockItem.h index 629a3a4822..dd1ffe068c 100644 --- a/src/mc/world/item/AuxDataBlockItem.h +++ b/src/mc/world/item/AuxDataBlockItem.h @@ -54,7 +54,7 @@ class AuxDataBlockItem : public ::BlockItem { public: // virtual function thunks // NOLINTBEGIN - MCAPI int $getLevelDataForAuxValue(int auxValue) const; + MCFOLD int $getLevelDataForAuxValue(int auxValue) const; MCAPI ::std::string $buildDescriptionId(::ItemDescriptor const& itemDescriptor, ::CompoundTag const* userData) const; diff --git a/src/mc/world/item/BalloonItem.h b/src/mc/world/item/BalloonItem.h index e76c629143..3bed56d1d8 100644 --- a/src/mc/world/item/BalloonItem.h +++ b/src/mc/world/item/BalloonItem.h @@ -36,7 +36,7 @@ class BalloonItem : public ::ChemistryItem { // vIndex: 120 virtual ::InteractionResult - _useOn(::ItemStack& instance, ::Actor& entity, ::BlockPos pos, uchar face, ::Vec3 const& clickPos) const + _useOn(::ItemStack& instance, ::Actor& spawningActor, ::BlockPos pos, uchar face, ::Vec3 const& clickPos) const /*override*/; // vIndex: 0 @@ -71,10 +71,10 @@ class BalloonItem : public ::ChemistryItem { MCAPI ::mce::Color $getColor(::CompoundTag const* userData, ::ItemDescriptor const& instance) const; - MCAPI bool $isDyeable() const; + MCFOLD bool $isDyeable() const; MCAPI ::InteractionResult - $_useOn(::ItemStack& instance, ::Actor& entity, ::BlockPos pos, uchar face, ::Vec3 const& clickPos) const; + $_useOn(::ItemStack& instance, ::Actor& spawningActor, ::BlockPos pos, uchar face, ::Vec3 const& clickPos) const; // NOLINTEND public: diff --git a/src/mc/world/item/BambooItem.h b/src/mc/world/item/BambooItem.h index 075adcf8c5..512391a6cc 100644 --- a/src/mc/world/item/BambooItem.h +++ b/src/mc/world/item/BambooItem.h @@ -51,7 +51,7 @@ class BambooItem : public ::BlockItem { public: // virtual function thunks // NOLINTBEGIN - MCAPI int $getLevelDataForAuxValue(int auxValue) const; + MCFOLD int $getLevelDataForAuxValue(int auxValue) const; MCAPI ::InteractionResult $_useOn(::ItemStack& instance, ::Actor& entity, ::BlockPos pos, uchar face, ::Vec3 const& clickPos) const; diff --git a/src/mc/world/item/BannerItem.h b/src/mc/world/item/BannerItem.h index c67f5a6a2c..a12fe4c58d 100644 --- a/src/mc/world/item/BannerItem.h +++ b/src/mc/world/item/BannerItem.h @@ -36,7 +36,7 @@ class BannerItem : public ::Item { // NOLINTBEGIN // vIndex: 120 virtual ::InteractionResult - _useOn(::ItemStack& instance, ::Actor& actor, ::BlockPos pos, uchar face, ::Vec3 const& clickPos) const + _useOn(::ItemStack& instance, ::Actor& entity, ::BlockPos pos, uchar face, ::Vec3 const& clickPos) const /*override*/; // vIndex: 87 @@ -61,7 +61,7 @@ class BannerItem : public ::Item { virtual bool isWearableThroughLootTable(::CompoundTag const* userData) const /*override*/; // vIndex: 97 - virtual void fixupCommon(::ItemStackBase& stack) const /*override*/; + virtual void fixupCommon(::ItemStackBase& item) const /*override*/; // vIndex: 0 virtual ~BannerItem() /*override*/ = default; @@ -96,7 +96,7 @@ class BannerItem : public ::Item { // virtual function thunks // NOLINTBEGIN MCAPI ::InteractionResult - $_useOn(::ItemStack& instance, ::Actor& actor, ::BlockPos pos, uchar face, ::Vec3 const& clickPos) const; + $_useOn(::ItemStack& instance, ::Actor& entity, ::BlockPos pos, uchar face, ::Vec3 const& clickPos) const; MCAPI ::std::string $buildDescriptionId(::ItemDescriptor const& itemDescriptor, ::CompoundTag const* userData) const; @@ -108,11 +108,11 @@ class BannerItem : public ::Item { bool const showCategory ) const; - MCAPI bool $isValidAuxValue(int auxValue) const; + MCFOLD bool $isValidAuxValue(int auxValue) const; MCAPI bool $isWearableThroughLootTable(::CompoundTag const* userData) const; - MCAPI void $fixupCommon(::ItemStackBase& stack) const; + MCAPI void $fixupCommon(::ItemStackBase& item) const; // NOLINTEND public: diff --git a/src/mc/world/item/BannerPatternItem.h b/src/mc/world/item/BannerPatternItem.h index d49f9d0c0e..a800d13f5e 100644 --- a/src/mc/world/item/BannerPatternItem.h +++ b/src/mc/world/item/BannerPatternItem.h @@ -62,9 +62,9 @@ class BannerPatternItem : public ::Item { public: // virtual function thunks // NOLINTBEGIN - MCAPI bool $isPattern() const; + MCFOLD bool $isPattern() const; - MCAPI int $getPatternIndex() const; + MCFOLD int $getPatternIndex() const; // NOLINTEND public: diff --git a/src/mc/world/item/BedItem.h b/src/mc/world/item/BedItem.h index 2da24b632f..e667b4897a 100644 --- a/src/mc/world/item/BedItem.h +++ b/src/mc/world/item/BedItem.h @@ -65,9 +65,9 @@ class BedItem : public ::Item { MCAPI ::std::string $buildDescriptionId(::ItemDescriptor const& itemDescriptor, ::CompoundTag const* userData) const; - MCAPI bool $isValidAuxValue(int value) const; + MCFOLD bool $isValidAuxValue(int value) const; - MCAPI ::ResolvedItemIconInfo $getIconInfo(::ItemStackBase const& item, int, bool) const; + MCFOLD ::ResolvedItemIconInfo $getIconInfo(::ItemStackBase const& item, int, bool) const; MCAPI ::InteractionResult $_useOn(::ItemStack& instance, ::Actor& entity, ::BlockPos pos, uchar face, ::Vec3 const& clickPos) const; diff --git a/src/mc/world/item/BlockItem.h b/src/mc/world/item/BlockItem.h index 7ab5fce8d8..06ce04dd89 100644 --- a/src/mc/world/item/BlockItem.h +++ b/src/mc/world/item/BlockItem.h @@ -70,7 +70,7 @@ class BlockItem : public ::Item { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND public: diff --git a/src/mc/world/item/BlockPlanterItem.h b/src/mc/world/item/BlockPlanterItem.h index 6e48641405..8e3845953f 100644 --- a/src/mc/world/item/BlockPlanterItem.h +++ b/src/mc/world/item/BlockPlanterItem.h @@ -71,15 +71,15 @@ class BlockPlanterItem : public ::ComponentItem { public: // virtual function thunks // NOLINTBEGIN - MCAPI ::Item& $setIconInfo(::std::string const& name, int index); + MCFOLD ::Item& $setIconInfo(::std::string const& name, int index); - MCAPI ::ResolvedItemIconInfo + MCFOLD ::ResolvedItemIconInfo $getIconInfo(::ItemStackBase const& item, int newAnimationFrame, bool inInventoryPane) const; - MCAPI ::std::string + MCFOLD ::std::string $buildDescriptionId(::ItemDescriptor const& itemDescriptor, ::CompoundTag const* userData) const; - MCAPI ::BlockPlanterItem& $setDescriptionId(::std::string const& description); + MCFOLD ::BlockPlanterItem& $setDescriptionId(::std::string const& description); // NOLINTEND public: diff --git a/src/mc/world/item/BoatItem.h b/src/mc/world/item/BoatItem.h index b1763d922e..0588bbc1db 100644 --- a/src/mc/world/item/BoatItem.h +++ b/src/mc/world/item/BoatItem.h @@ -83,22 +83,22 @@ class BoatItem : public ::Item { public: // virtual function thunks // NOLINTBEGIN - MCAPI bool $isLiquidClipItem() const; + MCFOLD bool $isLiquidClipItem() const; - MCAPI bool $isValidAuxValue(int auxValue) const; + MCFOLD bool $isValidAuxValue(int auxValue) const; MCAPI ::ResolvedItemIconInfo $getIconInfo(::ItemStackBase const&, int, bool) const; MCAPI ::std::string $buildDescriptionId(::ItemDescriptor const&, ::CompoundTag const*) const; - MCAPI bool $isStackedByData() const; + MCFOLD bool $isStackedByData() const; MCAPI bool $dispense(::BlockSource& region, ::Container& container, int slot, ::Vec3 const& pos, uchar face) const; MCAPI ::InteractionResult $_useOn(::ItemStack& instance, ::Actor& entity, ::BlockPos pos, uchar face, ::Vec3 const& clickPos) const; - MCAPI ::ActorType $_getActorType() const; + MCFOLD ::ActorType $_getActorType() const; // NOLINTEND public: diff --git a/src/mc/world/item/BoneMealItem.h b/src/mc/world/item/BoneMealItem.h index a1dedd60b9..ae33fac918 100644 --- a/src/mc/world/item/BoneMealItem.h +++ b/src/mc/world/item/BoneMealItem.h @@ -63,15 +63,15 @@ class BoneMealItem : public ::FertilizerItem { public: // virtual function thunks // NOLINTBEGIN - MCAPI ::Item& $setIconInfo(::std::string const& name, int index); + MCFOLD ::Item& $setIconInfo(::std::string const& name, int index); MCAPI ::std::string $buildDescriptionId(::ItemDescriptor const&, ::CompoundTag const*) const; - MCAPI bool $isDye() const; + MCFOLD bool $isDye() const; - MCAPI ::ItemColor $getItemColor() const; + MCFOLD ::ItemColor $getItemColor() const; - MCAPI bool $isValidAuxValue(int auxValue) const; + MCFOLD bool $isValidAuxValue(int auxValue) const; // NOLINTEND public: diff --git a/src/mc/world/item/BottleItem.h b/src/mc/world/item/BottleItem.h index c9b9132f04..54fc6cfa0e 100644 --- a/src/mc/world/item/BottleItem.h +++ b/src/mc/world/item/BottleItem.h @@ -70,7 +70,7 @@ class BottleItem : public ::Item { // NOLINTBEGIN MCAPI bool $dispense(::BlockSource& region, ::Container& container, int slot, ::Vec3 const& pos, uchar face) const; - MCAPI bool $isLiquidClipItem() const; + MCFOLD bool $isLiquidClipItem() const; MCAPI ::InteractionResult $_useOn(::ItemStack& instance, ::Actor& entity, ::BlockPos pos, uchar face, ::Vec3 const& clickPos) const; diff --git a/src/mc/world/item/BowItem.h b/src/mc/world/item/BowItem.h index 0d90f2d19f..54b829ed78 100644 --- a/src/mc/world/item/BowItem.h +++ b/src/mc/world/item/BowItem.h @@ -63,10 +63,10 @@ class BowItem : public ::RangedWeaponItem { // NOLINTBEGIN MCAPI ::Item& $setIconInfo(::std::string const& name, int index); - MCAPI ::ResolvedItemIconInfo + MCFOLD ::ResolvedItemIconInfo $getIconInfo(::ItemStackBase const& item, int newAnimationFrame, bool inInventoryPane) const; - MCAPI int $getEnchantSlot() const; + MCFOLD int $getEnchantSlot() const; MCAPI void $enchantProjectile(::ItemStackBase const& weapon, ::Actor& projectile) const; // NOLINTEND diff --git a/src/mc/world/item/BrushItem.h b/src/mc/world/item/BrushItem.h index 4ab4d7954e..00a53d47e2 100644 --- a/src/mc/world/item/BrushItem.h +++ b/src/mc/world/item/BrushItem.h @@ -64,11 +64,11 @@ class BrushItem : public ::Item { public: // virtual function thunks // NOLINTBEGIN - MCAPI int $getEnchantSlot() const; + MCFOLD int $getEnchantSlot() const; - MCAPI void $hurtActor(::ItemStack& item, ::Actor& actor, ::Mob& attacker) const; + MCFOLD void $hurtActor(::ItemStack& item, ::Actor& actor, ::Mob& attacker) const; - MCAPI bool $useInterruptedByAttacking() const; + MCFOLD bool $useInterruptedByAttacking() const; MCAPI bool $dispense(::BlockSource& region, ::Container& container, int slot, ::Vec3 const& pos, uchar) const; diff --git a/src/mc/world/item/BucketItem.h b/src/mc/world/item/BucketItem.h index 09a60b01f9..e4dc7e76e4 100644 --- a/src/mc/world/item/BucketItem.h +++ b/src/mc/world/item/BucketItem.h @@ -50,7 +50,7 @@ class BucketItem : public ::Item { virtual ::ItemStack& use(::ItemStack& item, ::Player& player) const /*override*/; // vIndex: 80 - virtual void releaseUsing(::ItemStack& inoutInstance, ::Player* player, int durationLeft) const /*override*/; + virtual void releaseUsing(::ItemStack& item, ::Player* player, int durationLeft) const /*override*/; // vIndex: 79 virtual ::ItemUseMethod useTimeDepleted(::ItemStack& inoutInstance, ::Level* level, ::Player* player) const @@ -158,11 +158,11 @@ class BucketItem : public ::Item { MCAPI ::ItemStack& $use(::ItemStack& item, ::Player& player) const; - MCAPI void $releaseUsing(::ItemStack& inoutInstance, ::Player* player, int durationLeft) const; + MCAPI void $releaseUsing(::ItemStack& item, ::Player* player, int durationLeft) const; - MCAPI bool $uniqueAuxValues() const; + MCFOLD bool $uniqueAuxValues() const; - MCAPI bool $isBucket() const; + MCFOLD bool $isBucket() const; MCAPI bool $dispense(::BlockSource& region, ::Container& container, int slot, ::Vec3 const& pos, uchar face) const; @@ -174,7 +174,7 @@ class BucketItem : public ::Item { MCAPI ::Brightness $getLightEmission(int) const; - MCAPI bool $isValidAuxValue(int auxValue) const; + MCFOLD bool $isValidAuxValue(int auxValue) const; MCAPI bool $isDestructive(int auxValue) const; diff --git a/src/mc/world/item/CameraItemComponentLegacy.h b/src/mc/world/item/CameraItemComponentLegacy.h index aee3121bf3..7b0db27353 100644 --- a/src/mc/world/item/CameraItemComponentLegacy.h +++ b/src/mc/world/item/CameraItemComponentLegacy.h @@ -130,17 +130,17 @@ class CameraItemComponentLegacy : public ::ICameraItemComponent { MCAPI bool $canPlace(::ItemStack const& instance, ::Actor& actor, ::BlockPos const& blockPos, uchar face) const; - MCAPI float $blackBarsDuration() const; + MCFOLD float $blackBarsDuration() const; - MCAPI float $blackBarsScreenRatio() const; + MCFOLD float $blackBarsScreenRatio() const; MCAPI float $shutterScreenRatio() const; - MCAPI float $shutterDuration() const; + MCFOLD float $shutterDuration() const; - MCAPI float $pictureDuration() const; + MCFOLD float $pictureDuration() const; - MCAPI float $slideAwayDuration() const; + MCFOLD float $slideAwayDuration() const; MCAPI void $registerCallbacks(::CameraCallbacks* callbacks); // NOLINTEND diff --git a/src/mc/world/item/CandleBlockItem.h b/src/mc/world/item/CandleBlockItem.h index 9ccae0168c..5c8175273a 100644 --- a/src/mc/world/item/CandleBlockItem.h +++ b/src/mc/world/item/CandleBlockItem.h @@ -54,12 +54,12 @@ class CandleBlockItem : public ::BlockItem { public: // virtual function thunks // NOLINTBEGIN - MCAPI int $getLevelDataForAuxValue(int auxValue) const; + MCFOLD int $getLevelDataForAuxValue(int auxValue) const; MCAPI ::InteractionResult $_useOn(::ItemStack& instance, ::Actor& entity, ::BlockPos pos, uchar face, ::Vec3 const& clickPos) const; - MCAPI bool $isCandle() const; + MCFOLD bool $isCandle() const; // NOLINTEND public: diff --git a/src/mc/world/item/CarrotOnAStickItem.h b/src/mc/world/item/CarrotOnAStickItem.h index 214f765fea..4ff73e0409 100644 --- a/src/mc/world/item/CarrotOnAStickItem.h +++ b/src/mc/world/item/CarrotOnAStickItem.h @@ -56,15 +56,15 @@ class CarrotOnAStickItem : public ::Item { public: // virtual function thunks // NOLINTBEGIN - MCAPI bool $isHandEquipped() const; + MCFOLD bool $isHandEquipped() const; - MCAPI bool $requiresInteract() const; + MCFOLD bool $requiresInteract() const; MCAPI int $getEnchantSlot() const; - MCAPI int $getEnchantValue() const; + MCFOLD int $getEnchantValue() const; - MCAPI void $hurtActor(::ItemStack& item, ::Actor& actor, ::Mob& attacker) const; + MCFOLD void $hurtActor(::ItemStack& item, ::Actor& actor, ::Mob& attacker) const; // NOLINTEND public: diff --git a/src/mc/world/item/ChalkboardItem.h b/src/mc/world/item/ChalkboardItem.h index 42baf4f2a3..bc4ff46447 100644 --- a/src/mc/world/item/ChalkboardItem.h +++ b/src/mc/world/item/ChalkboardItem.h @@ -64,7 +64,7 @@ class ChalkboardItem : public ::Item { // NOLINTBEGIN MCAPI ::std::string $buildDescriptionId(::ItemDescriptor const& itemDescriptor, ::CompoundTag const*) const; - MCAPI ::ResolvedItemIconInfo $getIconInfo(::ItemStackBase const& item, int, bool) const; + MCFOLD ::ResolvedItemIconInfo $getIconInfo(::ItemStackBase const& item, int, bool) const; MCAPI bool $_calculatePlacePos(::ItemStackBase&, ::Actor& entity, uchar& face, ::BlockPos& pos) const; diff --git a/src/mc/world/item/ChemistryBlockItem.h b/src/mc/world/item/ChemistryBlockItem.h index c284e50ec9..9a6604664c 100644 --- a/src/mc/world/item/ChemistryBlockItem.h +++ b/src/mc/world/item/ChemistryBlockItem.h @@ -30,7 +30,7 @@ class ChemistryBlockItem : public ::BlockItem { public: // virtual function thunks // NOLINTBEGIN - MCAPI void $fixupCommon(::ItemStackBase& stack) const; + MCFOLD void $fixupCommon(::ItemStackBase& stack) const; // NOLINTEND public: diff --git a/src/mc/world/item/ChemistryItem.h b/src/mc/world/item/ChemistryItem.h index de13ebee4c..91ad602c2a 100644 --- a/src/mc/world/item/ChemistryItem.h +++ b/src/mc/world/item/ChemistryItem.h @@ -30,13 +30,13 @@ class ChemistryItem : public ::Item { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND public: // virtual function thunks // NOLINTBEGIN - MCAPI void $fixupCommon(::ItemStackBase& stack) const; + MCFOLD void $fixupCommon(::ItemStackBase& stack) const; // NOLINTEND public: diff --git a/src/mc/world/item/ChemistryStickItem.h b/src/mc/world/item/ChemistryStickItem.h index a267a36f39..40966bc6b1 100644 --- a/src/mc/world/item/ChemistryStickItem.h +++ b/src/mc/world/item/ChemistryStickItem.h @@ -113,7 +113,7 @@ class ChemistryStickItem : public ::ChemistryItem { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND public: @@ -123,21 +123,21 @@ class ChemistryStickItem : public ::ChemistryItem { MCAPI ::ItemUseMethod $useTimeDepleted(::ItemStack& inoutInstance, ::Level* level, ::Player* player) const; - MCAPI bool $uniqueAuxValues() const; + MCFOLD bool $uniqueAuxValues() const; MCAPI bool $inventoryTick(::ItemStack& item, ::Level& level, ::Actor& owner, int slot, bool selected) const; MCAPI ::Item& $setMaxDamage(int maxDamage); - MCAPI void $hurtActor(::ItemStack& item, ::Actor& actor, ::Mob& attacker) const; + MCFOLD void $hurtActor(::ItemStack& item, ::Actor& actor, ::Mob& attacker) const; - MCAPI bool $isValidRepairItem( + MCFOLD bool $isValidRepairItem( ::ItemStackBase const& source, ::ItemStackBase const& repairItem, ::BaseGameVersion const& baseGameVersion ) const; - MCAPI bool $showsDurabilityInCreative() const; + MCFOLD bool $showsDurabilityInCreative() const; MCAPI void $fixupCommon(::ItemStackBase& stack) const; // NOLINTEND diff --git a/src/mc/world/item/ClockSpriteCalculator.h b/src/mc/world/item/ClockSpriteCalculator.h index 39ca51ce04..e004c641bf 100644 --- a/src/mc/world/item/ClockSpriteCalculator.h +++ b/src/mc/world/item/ClockSpriteCalculator.h @@ -36,6 +36,6 @@ class ClockSpriteCalculator { public: // constructor thunks // NOLINTBEGIN - MCAPI void* $ctor(); + MCFOLD void* $ctor(); // NOLINTEND }; diff --git a/src/mc/world/item/CoalItem.h b/src/mc/world/item/CoalItem.h index 5614abf5d7..bb4b9760cc 100644 --- a/src/mc/world/item/CoalItem.h +++ b/src/mc/world/item/CoalItem.h @@ -71,9 +71,9 @@ class CoalItem : public ::ComponentItem { public: // virtual function thunks // NOLINTBEGIN - MCAPI ::Item& $setIconInfo(::std::string const& name, int index); + MCFOLD ::Item& $setIconInfo(::std::string const& name, int index); - MCAPI ::ResolvedItemIconInfo + MCFOLD ::ResolvedItemIconInfo $getIconInfo(::ItemStackBase const& item, int newAnimationFrame, bool inInventoryPane) const; MCAPI ::std::string diff --git a/src/mc/world/item/CocoaBeanItem.h b/src/mc/world/item/CocoaBeanItem.h index ac4ed4183b..3f91468164 100644 --- a/src/mc/world/item/CocoaBeanItem.h +++ b/src/mc/world/item/CocoaBeanItem.h @@ -72,15 +72,15 @@ class CocoaBeanItem : public ::Item { public: // virtual function thunks // NOLINTBEGIN - MCAPI ::Item& $setIconInfo(::std::string const& name, int index); + MCFOLD ::Item& $setIconInfo(::std::string const& name, int index); MCAPI ::std::string $buildDescriptionId(::ItemDescriptor const&, ::CompoundTag const*) const; - MCAPI bool $isDye() const; + MCFOLD bool $isDye() const; - MCAPI ::ItemColor $getItemColor() const; + MCFOLD ::ItemColor $getItemColor() const; - MCAPI bool $isValidAuxValue(int auxValue) const; + MCFOLD bool $isValidAuxValue(int auxValue) const; MCAPI ::InteractionResult $_useOn(::ItemStack& instance, ::Actor& actor, ::BlockPos pos, uchar face, ::Vec3 const& clickPos) const; diff --git a/src/mc/world/item/CompassSpriteCalculator.h b/src/mc/world/item/CompassSpriteCalculator.h index 0218cb7f08..d9cd8b2c96 100644 --- a/src/mc/world/item/CompassSpriteCalculator.h +++ b/src/mc/world/item/CompassSpriteCalculator.h @@ -36,7 +36,7 @@ class CompassSpriteCalculator { float rotA ); - MCAPI int getFrame() const; + MCFOLD int getFrame() const; MCAPI int update(::Actor& actor, bool instant); diff --git a/src/mc/world/item/ComplexAliasDescriptor.h b/src/mc/world/item/ComplexAliasDescriptor.h index 8dfddb0ade..9b565a5eae 100644 --- a/src/mc/world/item/ComplexAliasDescriptor.h +++ b/src/mc/world/item/ComplexAliasDescriptor.h @@ -114,7 +114,7 @@ struct ComplexAliasDescriptor : public ::ItemDescriptor::BaseDescriptor { MCAPI void $serialize(::BinaryStream& stream) const; - MCAPI ::ItemDescriptor::InternalType $getType() const; + MCFOLD ::ItemDescriptor::InternalType $getType() const; MCAPI uint64 $getHash() const; // NOLINTEND diff --git a/src/mc/world/item/ComplexItem.h b/src/mc/world/item/ComplexItem.h index 0b73f1bf88..99520f7955 100644 --- a/src/mc/world/item/ComplexItem.h +++ b/src/mc/world/item/ComplexItem.h @@ -48,9 +48,9 @@ class ComplexItem : public ::Item { public: // virtual function thunks // NOLINTBEGIN - MCAPI bool $isComplex() const; + MCFOLD bool $isComplex() const; - MCAPI ::std::unique_ptr<::Packet> $getUpdatePacket(::ItemStack const& item, ::Level& level, ::Actor& player) const; + MCFOLD ::std::unique_ptr<::Packet> $getUpdatePacket(::ItemStack const& item, ::Level& level, ::Actor& player) const; // NOLINTEND public: diff --git a/src/mc/world/item/CompoundItem.h b/src/mc/world/item/CompoundItem.h index 6b0080bd1a..d121ffbbbb 100644 --- a/src/mc/world/item/CompoundItem.h +++ b/src/mc/world/item/CompoundItem.h @@ -30,7 +30,7 @@ class CompoundItem : public ::ChemistryItem { buildDescriptionId(::ItemDescriptor const& itemDescriptor, ::CompoundTag const* userData) const /*override*/; // vIndex: 107 - virtual ::Item& setIconInfo(::std::string const& name, int index) /*override*/; + virtual ::Item& setIconInfo(::std::string const& name, int id) /*override*/; // vIndex: 108 virtual ::ResolvedItemIconInfo @@ -92,7 +92,7 @@ class CompoundItem : public ::ChemistryItem { MCAPI ::std::string $buildDescriptionId(::ItemDescriptor const& itemDescriptor, ::CompoundTag const* userData) const; - MCAPI ::Item& $setIconInfo(::std::string const& name, int index); + MCFOLD ::Item& $setIconInfo(::std::string const& name, int id); MCAPI ::ResolvedItemIconInfo $getIconInfo(::ItemStackBase const& item, int newAnimationFrame, bool inInventoryPane) const; diff --git a/src/mc/world/item/CoralFanBlockItem.h b/src/mc/world/item/CoralFanBlockItem.h index a95493591f..f73ccb8578 100644 --- a/src/mc/world/item/CoralFanBlockItem.h +++ b/src/mc/world/item/CoralFanBlockItem.h @@ -26,7 +26,7 @@ class CoralFanBlockItem : public ::BlockItem { // vIndex: 120 virtual ::InteractionResult - _useOn(::ItemStack& instance, ::Actor& actor, ::BlockPos pos, uchar face, ::Vec3 const& clickPos) const + _useOn(::ItemStack& instance, ::Actor& entity, ::BlockPos pos, uchar face, ::Vec3 const& clickPos) const /*override*/; // vIndex: 0 @@ -56,10 +56,10 @@ class CoralFanBlockItem : public ::BlockItem { // NOLINTBEGIN MCAPI bool $isValidAuxValue(int auxValue) const; - MCAPI int $getLevelDataForAuxValue(int auxValue) const; + MCFOLD int $getLevelDataForAuxValue(int auxValue) const; MCAPI ::InteractionResult - $_useOn(::ItemStack& instance, ::Actor& actor, ::BlockPos pos, uchar face, ::Vec3 const& clickPos) const; + $_useOn(::ItemStack& instance, ::Actor& entity, ::BlockPos pos, uchar face, ::Vec3 const& clickPos) const; // NOLINTEND public: diff --git a/src/mc/world/item/CrossbowItem.h b/src/mc/world/item/CrossbowItem.h index f769de2207..e62b1d0997 100644 --- a/src/mc/world/item/CrossbowItem.h +++ b/src/mc/world/item/CrossbowItem.h @@ -108,7 +108,7 @@ class CrossbowItem : public ::RangedWeaponItem { // NOLINTBEGIN MCAPI ::Item& $setIconInfo(::std::string const& name, int index); - MCAPI ::ResolvedItemIconInfo + MCFOLD ::ResolvedItemIconInfo $getIconInfo(::ItemStackBase const& item, int newAnimationFrame, bool inInventoryPane) const; MCAPI int @@ -124,7 +124,7 @@ class CrossbowItem : public ::RangedWeaponItem { MCAPI int $getEnchantSlot() const; - MCAPI bool $canBeCharged() const; + MCFOLD bool $canBeCharged() const; MCAPI int $getMaxUseDuration(::ItemStack const* instance) const; diff --git a/src/mc/world/item/DeferredDescriptor.h b/src/mc/world/item/DeferredDescriptor.h index 7635e227dc..6d34d9617a 100644 --- a/src/mc/world/item/DeferredDescriptor.h +++ b/src/mc/world/item/DeferredDescriptor.h @@ -93,9 +93,9 @@ struct DeferredDescriptor : public ::ItemDescriptor::BaseDescriptor { // NOLINTBEGIN MCAPI ::std::unique_ptr<::ItemDescriptor::BaseDescriptor> $clone() const; - MCAPI bool $sameItem(::ItemDescriptor::ItemEntry const&, bool) const; + MCFOLD bool $sameItem(::ItemDescriptor::ItemEntry const&, bool) const; - MCAPI ::std::string const& $getFullName() const; + MCFOLD ::std::string const& $getFullName() const; MCAPI ::std::map<::std::string, ::std::string> $toMap() const; @@ -103,11 +103,11 @@ struct DeferredDescriptor : public ::ItemDescriptor::BaseDescriptor { MCAPI void $serialize(::BinaryStream& stream) const; - MCAPI ::ItemDescriptor::InternalType $getType() const; + MCFOLD ::ItemDescriptor::InternalType $getType() const; - MCAPI uint64 $getHash() const; + MCFOLD uint64 $getHash() const; - MCAPI bool $shouldResolve() const; + MCFOLD bool $shouldResolve() const; MCAPI ::std::unique_ptr<::ItemDescriptor::BaseDescriptor> $resolve() const; // NOLINTEND diff --git a/src/mc/world/item/DiggerItem.h b/src/mc/world/item/DiggerItem.h index a0b3e36425..5a31c6e5eb 100644 --- a/src/mc/world/item/DiggerItem.h +++ b/src/mc/world/item/DiggerItem.h @@ -93,15 +93,15 @@ class DiggerItem : public ::Item { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND public: // virtual function thunks // NOLINTBEGIN - MCAPI int $getAttackDamage() const; + MCFOLD int $getAttackDamage() const; - MCAPI bool $isHandEquipped() const; + MCFOLD bool $isHandEquipped() const; MCAPI int $getEnchantValue() const; diff --git a/src/mc/world/item/DyePowderItem.h b/src/mc/world/item/DyePowderItem.h index 25b590f5e7..3ee7e73b1c 100644 --- a/src/mc/world/item/DyePowderItem.h +++ b/src/mc/world/item/DyePowderItem.h @@ -63,15 +63,15 @@ class DyePowderItem : public ::Item { public: // virtual function thunks // NOLINTBEGIN - MCAPI ::Item& $setIconInfo(::std::string const& name, int index); + MCFOLD ::Item& $setIconInfo(::std::string const& name, int index); MCAPI ::std::string $buildDescriptionId(::ItemDescriptor const& itemDescriptor, ::CompoundTag const*) const; - MCAPI bool $isDye() const; + MCFOLD bool $isDye() const; - MCAPI ::ItemColor $getItemColor() const; + MCFOLD ::ItemColor $getItemColor() const; - MCAPI bool $isValidAuxValue(int auxValue) const; + MCFOLD bool $isValidAuxValue(int auxValue) const; // NOLINTEND public: diff --git a/src/mc/world/item/EggItem.h b/src/mc/world/item/EggItem.h index 89b7ea4e3b..2ba24307e5 100644 --- a/src/mc/world/item/EggItem.h +++ b/src/mc/world/item/EggItem.h @@ -49,7 +49,7 @@ class EggItem : public ::Item { // NOLINTBEGIN MCAPI ::ItemStack& $use(::ItemStack& item, ::Player& player) const; - MCAPI bool $isThrowable() const; + MCFOLD bool $isThrowable() const; MCAPI ::Actor* $createProjectileActor(::BlockSource& region, ::ItemStack const&, ::Vec3 const& pos, ::Vec3 const& direction) const; diff --git a/src/mc/world/item/EmptyMapItem.h b/src/mc/world/item/EmptyMapItem.h index 2208593bd8..fd194bc019 100644 --- a/src/mc/world/item/EmptyMapItem.h +++ b/src/mc/world/item/EmptyMapItem.h @@ -66,7 +66,7 @@ class EmptyMapItem : public ::ComplexItem { // NOLINTBEGIN MCAPI ::ItemStack& $use(::ItemStack& item, ::Player& player) const; - MCAPI bool $requiresInteract() const; + MCFOLD bool $requiresInteract() const; MCAPI ::std::string $getInteractText(::Player const& player) const; diff --git a/src/mc/world/item/EnchantedBookItem.h b/src/mc/world/item/EnchantedBookItem.h index 16fda23860..3f70e55785 100644 --- a/src/mc/world/item/EnchantedBookItem.h +++ b/src/mc/world/item/EnchantedBookItem.h @@ -54,11 +54,11 @@ class EnchantedBookItem : public ::Item { public: // virtual function thunks // NOLINTBEGIN - MCAPI int $getEnchantSlot() const; + MCFOLD int $getEnchantSlot() const; - MCAPI int $getEnchantValue() const; + MCFOLD int $getEnchantValue() const; - MCAPI bool $isGlint(::ItemStackBase const& stack) const; + MCFOLD bool $isGlint(::ItemStackBase const& stack) const; // NOLINTEND public: diff --git a/src/mc/world/item/EndCrystalItem.h b/src/mc/world/item/EndCrystalItem.h index 6c293d6103..cac59a67d1 100644 --- a/src/mc/world/item/EndCrystalItem.h +++ b/src/mc/world/item/EndCrystalItem.h @@ -55,9 +55,9 @@ class EndCrystalItem : public ::Item { public: // virtual function thunks // NOLINTBEGIN - MCAPI bool $isGlint(::ItemStackBase const& stack) const; + MCFOLD bool $isGlint(::ItemStackBase const& stack) const; - MCAPI bool $isDestructive(int auxValue) const; + MCFOLD bool $isDestructive(int auxValue) const; MCAPI ::InteractionResult $_useOn(::ItemStack& instance, ::Actor& entity, ::BlockPos pos, uchar face, ::Vec3 const& clickPos) const; diff --git a/src/mc/world/item/EnderEyeItem.h b/src/mc/world/item/EnderEyeItem.h index 603b1206ff..6a0159fdda 100644 --- a/src/mc/world/item/EnderEyeItem.h +++ b/src/mc/world/item/EnderEyeItem.h @@ -55,7 +55,7 @@ class EnderEyeItem : public ::Item { // NOLINTBEGIN MCAPI ::ItemStack& $use(::ItemStack& item, ::Player& player) const; - MCAPI bool $isThrowable() const; + MCFOLD bool $isThrowable() const; // NOLINTEND public: diff --git a/src/mc/world/item/EnderpearlItem.h b/src/mc/world/item/EnderpearlItem.h index 5b1b200f81..4254b73973 100644 --- a/src/mc/world/item/EnderpearlItem.h +++ b/src/mc/world/item/EnderpearlItem.h @@ -61,11 +61,11 @@ class EnderpearlItem : public ::Item { // NOLINTBEGIN MCAPI ::ItemStack& $use(::ItemStack& item, ::Player& player) const; - MCAPI bool $isThrowable() const; + MCFOLD bool $isThrowable() const; MCAPI ::HashedString const& $getCooldownType() const; - MCAPI int $getCooldownTime() const; + MCFOLD int $getCooldownTime() const; // NOLINTEND public: diff --git a/src/mc/world/item/ExperiencePotionItem.h b/src/mc/world/item/ExperiencePotionItem.h index 33feb24df9..baa5e31be7 100644 --- a/src/mc/world/item/ExperiencePotionItem.h +++ b/src/mc/world/item/ExperiencePotionItem.h @@ -63,17 +63,17 @@ class ExperiencePotionItem : public ::Item { public: // virtual function thunks // NOLINTBEGIN - MCAPI bool $isGlint(::ItemStackBase const& stack) const; + MCFOLD bool $isGlint(::ItemStackBase const& stack) const; MCAPI ::ItemStack& $use(::ItemStack& instance, ::Player& player) const; - MCAPI bool $isThrowable() const; + MCFOLD bool $isThrowable() const; MCAPI ::Actor* $createProjectileActor(::BlockSource& region, ::ItemStack const& stack, ::Vec3 const& pos, ::Vec3 const& direction) const; - MCAPI bool $dispense(::BlockSource& region, ::Container& container, int slot, ::Vec3 const& pos, uchar face) const; + MCFOLD bool $dispense(::BlockSource& region, ::Container& container, int slot, ::Vec3 const& pos, uchar face) const; // NOLINTEND public: diff --git a/src/mc/world/item/FertilizerItem.h b/src/mc/world/item/FertilizerItem.h index 8959823735..3e9f79e347 100644 --- a/src/mc/world/item/FertilizerItem.h +++ b/src/mc/world/item/FertilizerItem.h @@ -54,7 +54,7 @@ class FertilizerItem : public ::Item { // NOLINTBEGIN MCAPI FertilizerItem(::std::string const& name, int id, ::FertilizerType type); - MCAPI ::FertilizerType getFertilizerType() const; + MCFOLD ::FertilizerType getFertilizerType() const; // NOLINTEND public: @@ -66,7 +66,7 @@ class FertilizerItem : public ::Item { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND public: @@ -74,7 +74,7 @@ class FertilizerItem : public ::Item { // NOLINTBEGIN MCAPI bool $dispense(::BlockSource& region, ::Container& container, int slot, ::Vec3 const& pos, uchar) const; - MCAPI bool $isFertilizer() const; + MCFOLD bool $isFertilizer() const; MCAPI void $executeEvent(::ItemStackBase& item, ::std::string const& name, ::RenderParams& params) const; diff --git a/src/mc/world/item/FireChargeItem.h b/src/mc/world/item/FireChargeItem.h index ba4342a951..9532538928 100644 --- a/src/mc/world/item/FireChargeItem.h +++ b/src/mc/world/item/FireChargeItem.h @@ -77,7 +77,7 @@ class FireChargeItem : public ::Item { MCAPI bool $dispense(::BlockSource& region, ::Container& container, int slot, ::Vec3 const& pos, uchar face) const; - MCAPI bool $isDestructive(int) const; + MCFOLD bool $isDestructive(int) const; MCAPI ::InteractionResult $_useOn(::ItemStack& instance, ::Actor& entity, ::BlockPos pos, uchar face, ::Vec3 const& clickPos) const; diff --git a/src/mc/world/item/FireworkChargeItem.h b/src/mc/world/item/FireworkChargeItem.h index c3596e2096..b0cda1be61 100644 --- a/src/mc/world/item/FireworkChargeItem.h +++ b/src/mc/world/item/FireworkChargeItem.h @@ -83,7 +83,7 @@ class FireworkChargeItem : public ::Item { ::std::string const& indent ); - MCAPI static ::ItemInstance const& initFireworkChargeItem( + MCFOLD static ::ItemInstance const& initFireworkChargeItem( ::ItemInstance& item, ::FireworkChargeItem::Shape shape, ::std::vector colors, @@ -144,11 +144,11 @@ class FireworkChargeItem : public ::Item { MCAPI bool $hasSameRelevantUserData(::ItemStackBase const& stack, ::ItemStackBase const& other) const; - MCAPI bool $isDyeable() const; + MCFOLD bool $isDyeable() const; MCAPI ::mce::Color $getColor(::CompoundTag const* userData, ::ItemDescriptor const&) const; - MCAPI bool $isValidAuxValue(int auxValue) const; + MCFOLD bool $isValidAuxValue(int auxValue) const; // NOLINTEND public: diff --git a/src/mc/world/item/FireworksItem.h b/src/mc/world/item/FireworksItem.h index b411b4d3c6..c0267f165c 100644 --- a/src/mc/world/item/FireworksItem.h +++ b/src/mc/world/item/FireworksItem.h @@ -110,7 +110,7 @@ class FireworksItem : public ::Item { bool const showCategory ) const; - MCAPI bool $isDestructive(int) const; + MCFOLD bool $isDestructive(int) const; // NOLINTEND public: diff --git a/src/mc/world/item/FishingRodItem.h b/src/mc/world/item/FishingRodItem.h index ccd8d6cf06..0afe5f5e87 100644 --- a/src/mc/world/item/FishingRodItem.h +++ b/src/mc/world/item/FishingRodItem.h @@ -91,25 +91,25 @@ class FishingRodItem : public ::ComponentItem { MCAPI ::ItemStack& $use(::ItemStack& item, ::Player& player) const; - MCAPI bool $isHandEquipped() const; + MCFOLD bool $isHandEquipped() const; - MCAPI bool $requiresInteract() const; + MCFOLD bool $requiresInteract() const; MCAPI ::std::string $getInteractText(::Player const& player) const; MCAPI int $getAnimationFrameFor(::Mob* holder, bool, ::ItemStack const*, bool) const; - MCAPI int $getEnchantSlot() const; + MCFOLD int $getEnchantSlot() const; - MCAPI int $getEnchantValue() const; + MCFOLD int $getEnchantValue() const; - MCAPI void $hurtActor(::ItemStack& item, ::Actor& actor, ::Mob& attacker) const; + MCFOLD void $hurtActor(::ItemStack& item, ::Actor& actor, ::Mob& attacker) const; - MCAPI bool $shouldSendInteractionGameEvents() const; + MCFOLD bool $shouldSendInteractionGameEvents() const; - MCAPI bool $shouldUseJsonForRenderMatrix() const; + MCFOLD bool $shouldUseJsonForRenderMatrix() const; - MCAPI ::Item& $setIconInfo(::std::string const& name, int index); + MCFOLD ::Item& $setIconInfo(::std::string const& name, int index); MCAPI ::std::string $buildDescriptionId(::ItemDescriptor const&, ::CompoundTag const*) const; // NOLINTEND diff --git a/src/mc/world/item/FlintAndSteelItem.h b/src/mc/world/item/FlintAndSteelItem.h index 5ba83d8c7a..b03c60f5bf 100644 --- a/src/mc/world/item/FlintAndSteelItem.h +++ b/src/mc/world/item/FlintAndSteelItem.h @@ -69,13 +69,13 @@ class FlintAndSteelItem : public ::Item { public: // virtual function thunks // NOLINTBEGIN - MCAPI void $hurtActor(::ItemStack& item, ::Actor& actor, ::Mob& attacker) const; + MCFOLD void $hurtActor(::ItemStack& item, ::Actor& actor, ::Mob& attacker) const; - MCAPI int $getEnchantSlot() const; + MCFOLD int $getEnchantSlot() const; MCAPI bool $dispense(::BlockSource& region, ::Container& container, int slot, ::Vec3 const& pos, uchar face) const; - MCAPI bool $isDestructive(int auxValue) const; + MCFOLD bool $isDestructive(int auxValue) const; MCAPI ::InteractionResult $_useOn(::ItemStack& instance, ::Actor& entity, ::BlockPos pos, uchar face, ::Vec3 const& clickPos) const; diff --git a/src/mc/world/item/FoodItemComponentLegacy.h b/src/mc/world/item/FoodItemComponentLegacy.h index 432c619768..ae96d3e106 100644 --- a/src/mc/world/item/FoodItemComponentLegacy.h +++ b/src/mc/world/item/FoodItemComponentLegacy.h @@ -59,7 +59,7 @@ class FoodItemComponentLegacy : public ::IFoodItemComponent { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; @@ -101,7 +101,7 @@ class FoodItemComponentLegacy : public ::IFoodItemComponent { virtual ::Item const* eatItem(::ItemStack& instance, ::Actor& actor, ::Level& level) /*override*/; // vIndex: 5 - virtual void use(bool& result, ::ItemStack& instance, ::Player& player) /*override*/; + virtual void use(bool& result, ::ItemStack& item, ::Player& player) /*override*/; // vIndex: 6 virtual ::Item const* useTimeDepleted( @@ -145,15 +145,15 @@ class FoodItemComponentLegacy : public ::IFoodItemComponent { public: // virtual function thunks // NOLINTBEGIN - MCAPI int $getNutrition() const; + MCFOLD int $getNutrition() const; - MCAPI float $getSaturationModifier() const; + MCFOLD float $getSaturationModifier() const; - MCAPI bool $canAlwaysEat() const; + MCFOLD bool $canAlwaysEat() const; MCAPI ::Item const* $eatItem(::ItemStack& instance, ::Actor& actor, ::Level& level); - MCAPI void $use(bool& result, ::ItemStack& instance, ::Player& player); + MCAPI void $use(bool& result, ::ItemStack& item, ::Player& player); MCAPI ::Item const* $useTimeDepleted( ::ItemUseMethod& itemUseMethod, diff --git a/src/mc/world/item/FrogSpawnBlockItem.h b/src/mc/world/item/FrogSpawnBlockItem.h index 580b4a87f9..929b834ca8 100644 --- a/src/mc/world/item/FrogSpawnBlockItem.h +++ b/src/mc/world/item/FrogSpawnBlockItem.h @@ -58,9 +58,9 @@ class FrogSpawnBlockItem : public ::BlockItem { MCAPI ::InteractionResult $_useOn(::ItemStack& instance, ::Actor& entity, ::BlockPos pos, uchar face, ::Vec3 const& clickPos) const; - MCAPI bool $_calculatePlacePos(::ItemStackBase&, ::Actor&, uchar& face, ::BlockPos& pos) const; + MCFOLD bool $_calculatePlacePos(::ItemStackBase&, ::Actor&, uchar& face, ::BlockPos& pos) const; - MCAPI bool $isLiquidClipItem() const; + MCFOLD bool $isLiquidClipItem() const; // NOLINTEND public: diff --git a/src/mc/world/item/GlowStickItem.h b/src/mc/world/item/GlowStickItem.h index 36b2b47350..29e50a2613 100644 --- a/src/mc/world/item/GlowStickItem.h +++ b/src/mc/world/item/GlowStickItem.h @@ -60,7 +60,7 @@ class GlowStickItem : public ::ChemistryStickItem { public: // virtual function thunks // NOLINTBEGIN - MCAPI ::Brightness $getLightEmission(int auxValue) const; + MCFOLD ::Brightness $getLightEmission(int auxValue) const; MCAPI ::std::string $buildDescriptionId(::ItemDescriptor const& itemDescriptor, ::CompoundTag const* userData) const; diff --git a/src/mc/world/item/GoatHornItem.h b/src/mc/world/item/GoatHornItem.h index a1418af895..3e0e9e472b 100644 --- a/src/mc/world/item/GoatHornItem.h +++ b/src/mc/world/item/GoatHornItem.h @@ -73,11 +73,11 @@ class GoatHornItem : public ::Item { // NOLINTBEGIN MCAPI ::ItemStack& $use(::ItemStack& item, ::Player& player) const; - MCAPI bool $canBeCharged() const; + MCFOLD bool $canBeCharged() const; MCAPI ::HashedString const& $getCooldownType() const; - MCAPI int $getCooldownTime() const; + MCFOLD int $getCooldownTime() const; MCAPI void $appendFormattedHovertext( ::ItemStackBase const& stack, diff --git a/src/mc/world/item/HardcodedCreativeItemsHelper.h b/src/mc/world/item/HardcodedCreativeItemsHelper.h index e4f9fa2c13..f034e54a57 100644 --- a/src/mc/world/item/HardcodedCreativeItemsHelper.h +++ b/src/mc/world/item/HardcodedCreativeItemsHelper.h @@ -106,6 +106,6 @@ class HardcodedCreativeItemsHelper { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/world/item/HatchetItem.h b/src/mc/world/item/HatchetItem.h index 3d47392fc1..43f64fba7c 100644 --- a/src/mc/world/item/HatchetItem.h +++ b/src/mc/world/item/HatchetItem.h @@ -38,7 +38,7 @@ class HatchetItem : public ::DiggerItem { public: // virtual function thunks // NOLINTBEGIN - MCAPI int $getEnchantSlot() const; + MCFOLD int $getEnchantSlot() const; // NOLINTEND public: diff --git a/src/mc/world/item/HoeItem.h b/src/mc/world/item/HoeItem.h index 0a48f7b244..267bcb587f 100644 --- a/src/mc/world/item/HoeItem.h +++ b/src/mc/world/item/HoeItem.h @@ -38,7 +38,7 @@ class HoeItem : public ::DiggerItem { public: // virtual function thunks // NOLINTBEGIN - MCAPI int $getEnchantSlot() const; + MCFOLD int $getEnchantSlot() const; // NOLINTEND public: diff --git a/src/mc/world/item/HorseArmorItem.h b/src/mc/world/item/HorseArmorItem.h index ca2e1fa4d8..8288b8ff68 100644 --- a/src/mc/world/item/HorseArmorItem.h +++ b/src/mc/world/item/HorseArmorItem.h @@ -80,7 +80,7 @@ class HorseArmorItem : public ::Item { // NOLINTBEGIN MCAPI HorseArmorItem(::std::string const& name, int id, int icon, ::HorseArmorItem::Tier tier); - MCAPI ::HorseArmorItem::Tier getTier() const; + MCFOLD ::HorseArmorItem::Tier getTier() const; // NOLINTEND public: @@ -118,9 +118,9 @@ class HorseArmorItem : public ::Item { MCAPI ::mce::Color $getColor(::CompoundTag const* userData, ::ItemDescriptor const&) const; - MCAPI void $clearColor(::ItemStackBase& item) const; + MCFOLD void $clearColor(::ItemStackBase& item) const; - MCAPI void $setColor(::ItemStackBase& item, ::mce::Color const& color) const; + MCFOLD void $setColor(::ItemStackBase& item, ::mce::Color const& color) const; MCAPI bool $isDyeable() const; diff --git a/src/mc/world/item/HumanoidArmorItem.h b/src/mc/world/item/HumanoidArmorItem.h index ad026c0ccc..63f06d2589 100644 --- a/src/mc/world/item/HumanoidArmorItem.h +++ b/src/mc/world/item/HumanoidArmorItem.h @@ -228,7 +228,7 @@ class HumanoidArmorItem : public ::Item { public: // virtual function thunks // NOLINTBEGIN - MCAPI bool $isHumanoidArmor() const; + MCFOLD bool $isHumanoidArmor() const; MCAPI bool $isValidRepairItem( ::ItemStackBase const& source, @@ -250,9 +250,9 @@ class HumanoidArmorItem : public ::Item { MCAPI ::mce::Color $getColor(::CompoundTag const* userData, ::ItemDescriptor const&) const; - MCAPI void $clearColor(::ItemStackBase& instance) const; + MCFOLD void $clearColor(::ItemStackBase& instance) const; - MCAPI void $setColor(::ItemStackBase& item, ::mce::Color const& color) const; + MCFOLD void $setColor(::ItemStackBase& item, ::mce::Color const& color) const; MCAPI bool $isDyeable() const; @@ -273,7 +273,7 @@ class HumanoidArmorItem : public ::Item { bool const showCategory ) const; - MCAPI void $hurtActor(::ItemStack& item, ::Actor& actor, ::Mob& attacker) const; + MCFOLD void $hurtActor(::ItemStack& item, ::Actor& actor, ::Mob& attacker) const; MCAPI ::ResolvedItemIconInfo $getIconInfo(::ItemStackBase const& item, int newAnimationFrame, bool inInventoryPane) const; diff --git a/src/mc/world/item/IceBombItem.h b/src/mc/world/item/IceBombItem.h index 6e7445f436..28a025f467 100644 --- a/src/mc/world/item/IceBombItem.h +++ b/src/mc/world/item/IceBombItem.h @@ -74,7 +74,7 @@ class IceBombItem : public ::ChemistryItem { // NOLINTBEGIN MCAPI ::ItemStack& $use(::ItemStack& item, ::Player& player) const; - MCAPI bool $isThrowable() const; + MCFOLD bool $isThrowable() const; MCAPI ::Actor* $createProjectileActor(::BlockSource& region, ::ItemStack const&, ::Vec3 const& pos, ::Vec3 const& direction) const; @@ -83,7 +83,7 @@ class IceBombItem : public ::ChemistryItem { MCAPI ::HashedString const& $getCooldownType() const; - MCAPI int $getCooldownTime() const; + MCFOLD int $getCooldownTime() const; // NOLINTEND public: diff --git a/src/mc/world/item/InternalItemDescriptor.h b/src/mc/world/item/InternalItemDescriptor.h index f5f20a5d27..fa38eed4b4 100644 --- a/src/mc/world/item/InternalItemDescriptor.h +++ b/src/mc/world/item/InternalItemDescriptor.h @@ -90,7 +90,7 @@ struct InternalItemDescriptor : public ::ItemDescriptor::BaseDescriptor { MCAPI void $serialize(::BinaryStream& stream) const; - MCAPI ::ItemDescriptor::InternalType $getType() const; + MCFOLD ::ItemDescriptor::InternalType $getType() const; MCAPI uint64 $getHash() const; // NOLINTEND diff --git a/src/mc/world/item/Item.h b/src/mc/world/item/Item.h index dc32597444..02e51050be 100644 --- a/src/mc/world/item/Item.h +++ b/src/mc/world/item/Item.h @@ -93,15 +93,15 @@ class Item { // NOLINTBEGIN MCAPI Tier(int level, int uses, float speed, int damage, int enchant); - MCAPI int getAttackDamageBonus() const; + MCFOLD int getAttackDamageBonus() const; - MCAPI int getEnchantmentValue() const; + MCFOLD int getEnchantmentValue() const; - MCAPI int getLevel() const; + MCFOLD int getLevel() const; - MCAPI float getSpeed() const; + MCFOLD float getSpeed() const; - MCAPI int getUses() const; + MCFOLD int getUses() const; // NOLINTEND public: @@ -597,27 +597,27 @@ class Item { MCAPI short getDamageValue(::CompoundTag const* userData) const; - MCAPI int getFrameCount() const; + MCFOLD int getFrameCount() const; MCAPI ::std::string const& getFullItemName() const; - MCAPI ::HashedString const& getFullNameHash() const; + MCFOLD ::HashedString const& getFullNameHash() const; MCAPI float getFurnaceBurnIntervalMultipler() const; MCAPI short getId() const; - MCAPI ::WeakPtr<::BlockLegacy const> const& getLegacyBlock() const; + MCFOLD ::WeakPtr<::BlockLegacy const> const& getLegacyBlock() const; - MCAPI ::Interactions::Mining::MineBlockItemEffectType getMineBlockType() const; + MCFOLD ::Interactions::Mining::MineBlockItemEffectType getMineBlockType() const; - MCAPI ::std::string const& getNamespace() const; + MCFOLD ::std::string const& getNamespace() const; - MCAPI ::HashedString const& getRawNameHash() const; + MCFOLD ::HashedString const& getRawNameHash() const; MCAPI ::std::string const& getRawNameId() const; - MCAPI ::BaseGameVersion const& getRequiredBaseGameVersion() const; + MCFOLD ::BaseGameVersion const& getRequiredBaseGameVersion() const; MCAPI ::std::string getSerializedName() const; @@ -741,47 +741,47 @@ class Item { public: // virtual function thunks // NOLINTBEGIN - MCAPI void $tearDown(); + MCFOLD void $tearDown(); MCAPI ::Item& $setDescriptionId(::std::string const& description); - MCAPI ::std::string const& $getDescriptionId() const; + MCFOLD ::std::string const& $getDescriptionId() const; - MCAPI int $getMaxUseDuration(::ItemStack const*) const; + MCFOLD int $getMaxUseDuration(::ItemStack const*) const; - MCAPI ::WeakPtr<::BlockLegacy const> const& $getLegacyBlockForRendering() const; + MCFOLD ::WeakPtr<::BlockLegacy const> const& $getLegacyBlockForRendering() const; - MCAPI bool $isMusicDisk() const; + MCFOLD bool $isMusicDisk() const; - MCAPI void $executeEvent(::ItemStackBase&, ::std::string const&, ::RenderParams&) const; + MCFOLD void $executeEvent(::ItemStackBase&, ::std::string const&, ::RenderParams&) const; - MCAPI bool $isComponentBased() const; + MCFOLD bool $isComponentBased() const; - MCAPI bool $isHumanoidArmor() const; + MCFOLD bool $isHumanoidArmor() const; - MCAPI bool $isBlockPlanterItem() const; + MCFOLD bool $isBlockPlanterItem() const; - MCAPI bool $isBucket() const; + MCFOLD bool $isBucket() const; - MCAPI bool $isCandle() const; + MCFOLD bool $isCandle() const; MCAPI bool $isDamageable() const; - MCAPI bool $isDyeable() const; + MCFOLD bool $isDyeable() const; - MCAPI bool $isDye() const; + MCFOLD bool $isDye() const; - MCAPI bool $isFertilizer() const; + MCFOLD bool $isFertilizer() const; - MCAPI bool $isFood() const; + MCFOLD bool $isFood() const; - MCAPI bool $isThrowable() const; + MCFOLD bool $isThrowable() const; - MCAPI bool $isUseable() const; + MCFOLD bool $isUseable() const; - MCAPI bool $isTrimAllowed() const; + MCFOLD bool $isTrimAllowed() const; - MCAPI ::ItemComponent* $getComponent(::HashedString const&) const; + MCFOLD ::ItemComponent* $getComponent(::HashedString const&) const; MCAPI ::IFoodItemComponent* $getFood() const; @@ -793,49 +793,49 @@ class Item { MCAPI void $initializeFromNetwork(::CompoundTag const& tag); - MCAPI ::std::vector<::std::string> $validateFromNetwork(::CompoundTag const&); + MCFOLD ::std::vector<::std::string> $validateFromNetwork(::CompoundTag const&); - MCAPI ::BlockShape $getBlockShape() const; + MCFOLD ::BlockShape $getBlockShape() const; MCAPI bool $canBeDepleted() const; - MCAPI bool $canDestroySpecial(::Block const&) const; + MCFOLD bool $canDestroySpecial(::Block const&) const; - MCAPI int $getLevelDataForAuxValue(int) const; + MCFOLD int $getLevelDataForAuxValue(int) const; MCAPI bool $isStackedByData() const; - MCAPI short $getMaxDamage() const; + MCFOLD short $getMaxDamage() const; - MCAPI int $getAttackDamage() const; + MCFOLD int $getAttackDamage() const; - MCAPI float $getAttackDamageBonus(::Actor const&, float) const; + MCFOLD float $getAttackDamageBonus(::Actor const&, float) const; MCAPI bool $isHandEquipped() const; - MCAPI bool $isGlint(::ItemStackBase const& stack) const; + MCFOLD bool $isGlint(::ItemStackBase const& stack) const; - MCAPI bool $isPattern() const; + MCFOLD bool $isPattern() const; - MCAPI int $getPatternIndex() const; + MCFOLD int $getPatternIndex() const; MCAPI ::Rarity $getBaseRarity() const; MCAPI ::Rarity $getRarity(::ItemStackBase const& stack) const; - MCAPI bool $showsDurabilityInCreative() const; + MCFOLD bool $showsDurabilityInCreative() const; - MCAPI bool $isWearableThroughLootTable(::CompoundTag const*) const; + MCFOLD bool $isWearableThroughLootTable(::CompoundTag const*) const; - MCAPI bool $canDestroyInCreative() const; + MCFOLD bool $canDestroyInCreative() const; - MCAPI bool $isDestructive(int) const; + MCFOLD bool $isDestructive(int) const; - MCAPI bool $isLiquidClipItem() const; + MCFOLD bool $isLiquidClipItem() const; - MCAPI bool $shouldInteractionWithBlockBypassLiquid(::Block const&) const; + MCFOLD bool $shouldInteractionWithBlockBypassLiquid(::Block const&) const; - MCAPI bool $requiresInteract() const; + MCFOLD bool $requiresInteract() const; MCAPI ::std::string $getHoverTextColor(::ItemStackBase const& stack) const; @@ -846,53 +846,53 @@ class Item { bool showCategory ) const; - MCAPI bool $isValidRepairItem(::ItemStackBase const&, ::ItemStackBase const&, ::BaseGameVersion const&) const; + MCFOLD bool $isValidRepairItem(::ItemStackBase const&, ::ItemStackBase const&, ::BaseGameVersion const&) const; - MCAPI int $getEnchantSlot() const; + MCFOLD int $getEnchantSlot() const; - MCAPI int $getEnchantValue() const; + MCFOLD int $getEnchantValue() const; - MCAPI int $getArmorValue() const; + MCFOLD int $getArmorValue() const; - MCAPI int $getToughnessValue() const; + MCFOLD int $getToughnessValue() const; - MCAPI bool $isComplex() const; + MCFOLD bool $isComplex() const; - MCAPI bool $isValidAuxValue(int) const; + MCFOLD bool $isValidAuxValue(int) const; MCAPI int $getDamageChance(int unbreaking) const; - MCAPI float $getViewDamping() const; + MCFOLD float $getViewDamping() const; - MCAPI bool $uniqueAuxValues() const; + MCFOLD bool $uniqueAuxValues() const; - MCAPI bool $isActorPlacerItem() const; + MCFOLD bool $isActorPlacerItem() const; - MCAPI bool $isMultiColorTinted(::ItemStack const&) const; + MCFOLD bool $isMultiColorTinted(::ItemStack const&) const; - MCAPI ::mce::Color $getColor(::CompoundTag const*, ::ItemDescriptor const&) const; + MCFOLD ::mce::Color $getColor(::CompoundTag const*, ::ItemDescriptor const&) const; - MCAPI bool $hasCustomColor(::ItemStackBase const&) const; + MCFOLD bool $hasCustomColor(::ItemStackBase const&) const; - MCAPI bool $hasCustomColor(::CompoundTag const*) const; + MCFOLD bool $hasCustomColor(::CompoundTag const*) const; - MCAPI void $clearColor(::ItemStackBase&) const; + MCFOLD void $clearColor(::ItemStackBase&) const; - MCAPI void $setColor(::ItemStackBase&, ::mce::Color const&) const; + MCFOLD void $setColor(::ItemStackBase&, ::mce::Color const&) const; - MCAPI ::mce::Color $getBaseColor(::ItemStack const&) const; + MCFOLD ::mce::Color $getBaseColor(::ItemStack const&) const; - MCAPI ::mce::Color $getSecondaryColor(::ItemStack const&) const; + MCFOLD ::mce::Color $getSecondaryColor(::ItemStack const&) const; MCAPI ::ActorDefinitionIdentifier $getActorIdentifier(::ItemStack const&) const; MCAPI int $buildIdAux(short auxValue, ::CompoundTag const*) const; - MCAPI bool $canUseOnSimTick() const; + MCFOLD bool $canUseOnSimTick() const; MCAPI ::ItemStack& $use(::ItemStack& item, ::Player& player) const; - MCAPI ::Actor* $createProjectileActor(::BlockSource&, ::ItemStack const&, ::Vec3 const&, ::Vec3 const&) const; + MCFOLD ::Actor* $createProjectileActor(::BlockSource&, ::ItemStack const&, ::Vec3 const&, ::Vec3 const&) const; MCAPI bool $dispense(::BlockSource& region, ::Container& container, int slot, ::Vec3 const& pos, uchar) const; @@ -900,13 +900,13 @@ class Item { MCAPI void $releaseUsing(::ItemStack& item, ::Player* player, int durationLeft) const; - MCAPI float $getDestroySpeed(::ItemStackBase const&, ::Block const&) const; + MCFOLD float $getDestroySpeed(::ItemStackBase const&, ::Block const&) const; MCAPI void $hurtActor(::ItemStack& item, ::Actor& actor, ::Mob& attacker) const; - MCAPI void $hitActor(::ItemStack&, ::Actor&, ::Mob&) const; + MCFOLD void $hitActor(::ItemStack&, ::Actor&, ::Mob&) const; - MCAPI void $hitBlock(::ItemStack&, ::Block const&, ::BlockPos const&, ::Mob&) const; + MCFOLD void $hitBlock(::ItemStack&, ::Block const&, ::BlockPos const&, ::Mob&) const; MCAPI ::std::string $buildDescriptionName(::ItemStackBase const& stack) const; @@ -921,11 +921,11 @@ class Item { MCAPI void $writeUserData(::ItemStackBase const& stack, ::IDataOutput& output) const; - MCAPI uchar $getMaxStackSize(::ItemDescriptor const&) const; + MCFOLD uchar $getMaxStackSize(::ItemDescriptor const&) const; - MCAPI bool $inventoryTick(::ItemStack&, ::Level&, ::Actor&, int, bool) const; + MCFOLD bool $inventoryTick(::ItemStack&, ::Level&, ::Actor&, int, bool) const; - MCAPI void $refreshedInContainer(::ItemStackBase const&, ::Level&) const; + MCFOLD void $refreshedInContainer(::ItemStackBase const&, ::Level&) const; MCAPI ::HashedString const& $getCooldownType() const; @@ -933,7 +933,7 @@ class Item { MCAPI void $fixupCommon(::ItemStackBase& stack) const; - MCAPI void $fixupCommon(::ItemStackBase& stack, ::Level&) const; + MCFOLD void $fixupCommon(::ItemStackBase& stack, ::Level&) const; MCAPI ::InHandUpdateType $getInHandUpdateType( ::Player const&, @@ -943,33 +943,33 @@ class Item { bool const slotChanged ) const; - MCAPI bool $validFishInteraction(int) const; + MCFOLD bool $validFishInteraction(int) const; - MCAPI void $enchantProjectile(::ItemStackBase const&, ::Actor&) const; + MCFOLD void $enchantProjectile(::ItemStackBase const&, ::Actor&) const; - MCAPI ::ActorLocation $getEquipLocation() const; + MCFOLD ::ActorLocation $getEquipLocation() const; - MCAPI bool $shouldSendInteractionGameEvents() const; + MCFOLD bool $shouldSendInteractionGameEvents() const; - MCAPI bool $useInterruptedByAttacking() const; + MCFOLD bool $useInterruptedByAttacking() const; - MCAPI bool $hasSameRelevantUserData(::ItemStackBase const&, ::ItemStackBase const&) const; + MCFOLD bool $hasSameRelevantUserData(::ItemStackBase const&, ::ItemStackBase const&) const; - MCAPI ::Item& $setIconInfo(::std::string const& name, int index); + MCFOLD ::Item& $setIconInfo(::std::string const& name, int index); MCAPI ::ResolvedItemIconInfo $getIconInfo(::ItemStackBase const& item, int, bool) const; MCAPI ::std::string $getInteractText(::Player const& player) const; - MCAPI int $getAnimationFrameFor(::Mob*, bool, ::ItemStack const*, bool) const; + MCFOLD int $getAnimationFrameFor(::Mob*, bool, ::ItemStack const*, bool) const; MCAPI bool $isEmissive(int auxValue) const; - MCAPI ::Brightness $getLightEmission(int) const; + MCFOLD ::Brightness $getLightEmission(int) const; - MCAPI bool $canBeCharged() const; + MCFOLD bool $canBeCharged() const; - MCAPI void $playSoundIncrementally(::ItemStack const&, ::Mob&) const; + MCFOLD void $playSoundIncrementally(::ItemStack const&, ::Mob&) const; MCAPI float $getFurnaceXPmultiplier(::ItemStackBase const&) const; @@ -978,9 +978,9 @@ class Item { MCAPI bool $_checkUseOnPermissions(::Actor& entity, ::ItemStackBase& item, uchar const& face, ::BlockPos const& pos) const; - MCAPI bool $_calculatePlacePos(::ItemStackBase&, ::Actor&, uchar&, ::BlockPos&) const; + MCFOLD bool $_calculatePlacePos(::ItemStackBase&, ::Actor&, uchar&, ::BlockPos&) const; - MCAPI bool $_shouldAutoCalculatePlacePos() const; + MCFOLD bool $_shouldAutoCalculatePlacePos() const; MCAPI ::InteractionResult $_useOn(::ItemStack& instance, ::Actor& entity, ::BlockPos pos, uchar face, ::Vec3 const& clickPos) const; diff --git a/src/mc/world/item/ItemContext.h b/src/mc/world/item/ItemContext.h index 9cebf4aee2..e7eb28bae6 100644 --- a/src/mc/world/item/ItemContext.h +++ b/src/mc/world/item/ItemContext.h @@ -137,6 +137,6 @@ class ItemContext { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/world/item/ItemDescriptor.h b/src/mc/world/item/ItemDescriptor.h index 54a2862fda..3e5a118717 100644 --- a/src/mc/world/item/ItemDescriptor.h +++ b/src/mc/world/item/ItemDescriptor.h @@ -115,21 +115,21 @@ class ItemDescriptor { // NOLINTBEGIN MCAPI bool $sameItems(::ItemDescriptor::BaseDescriptor const& otherDescriptor, bool compareAux) const; - MCAPI ::std::string const& $getFullName() const; + MCFOLD ::std::string const& $getFullName() const; MCAPI ::std::string $toString() const; - MCAPI ::ItemDescriptor::ItemEntry $getItem() const; + MCFOLD ::ItemDescriptor::ItemEntry $getItem() const; MCAPI bool $forEachItemUntil(::std::function func) const; MCAPI void $serialize(::Json::Value& val) const; - MCAPI bool $isValid() const; + MCFOLD bool $isValid() const; - MCAPI bool $shouldResolve() const; + MCFOLD bool $shouldResolve() const; - MCAPI ::std::unique_ptr<::ItemDescriptor::BaseDescriptor> $resolve() const; + MCFOLD ::std::unique_ptr<::ItemDescriptor::BaseDescriptor> $resolve() const; // NOLINTEND public: @@ -265,7 +265,7 @@ class ItemDescriptor { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND public: diff --git a/src/mc/world/item/ItemDescriptorCount.h b/src/mc/world/item/ItemDescriptorCount.h index e4811aa86b..e383db78cb 100644 --- a/src/mc/world/item/ItemDescriptorCount.h +++ b/src/mc/world/item/ItemDescriptorCount.h @@ -53,7 +53,7 @@ class ItemDescriptorCount : public ::ItemDescriptor { MCAPI short getStackSize() const; - MCAPI void setStackSize(short size); + MCFOLD void setStackSize(short size); // NOLINTEND public: @@ -79,7 +79,7 @@ class ItemDescriptorCount : public ::ItemDescriptor { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND public: diff --git a/src/mc/world/item/ItemGroup.h b/src/mc/world/item/ItemGroup.h index c7bf73c17a..5845641028 100644 --- a/src/mc/world/item/ItemGroup.h +++ b/src/mc/world/item/ItemGroup.h @@ -40,6 +40,6 @@ class ItemGroup { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/world/item/ItemInstance.h b/src/mc/world/item/ItemInstance.h index 11904b44a9..1b9fdc6c02 100644 --- a/src/mc/world/item/ItemInstance.h +++ b/src/mc/world/item/ItemInstance.h @@ -69,7 +69,7 @@ class ItemInstance : public ::ItemStackBase { // NOLINTBEGIN MCAPI void* $ctor(); - MCAPI void* $ctor(::ItemStackBase const& rhs); + MCFOLD void* $ctor(::ItemStackBase const& rhs); MCAPI void* $ctor(::ItemInstance const& rhs); @@ -85,7 +85,7 @@ class ItemInstance : public ::ItemStackBase { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND public: diff --git a/src/mc/world/item/ItemStack.h b/src/mc/world/item/ItemStack.h index f286c701de..d88e2b7cf6 100644 --- a/src/mc/world/item/ItemStack.h +++ b/src/mc/world/item/ItemStack.h @@ -89,7 +89,7 @@ class ItemStack : public ::ItemStackBase { MCAPI float getDestroySpeed(::Block const& block) const; - MCAPI ::ItemStackNetIdVariant const& getItemStackNetIdVariant() const; + MCFOLD ::ItemStackNetIdVariant const& getItemStackNetIdVariant() const; MCAPI int getMaxUseDuration() const; @@ -172,7 +172,7 @@ class ItemStack : public ::ItemStackBase { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND public: diff --git a/src/mc/world/item/ItemStackBase.h b/src/mc/world/item/ItemStackBase.h index a991b985ec..d04cfd2eae 100644 --- a/src/mc/world/item/ItemStackBase.h +++ b/src/mc/world/item/ItemStackBase.h @@ -172,13 +172,13 @@ class ItemStackBase { MCAPI int getBaseRepairCost() const; - MCAPI ::Block const* getBlock() const; + MCFOLD ::Block const* getBlock() const; - MCAPI ::Tick const& getBlockingTick() const; + MCFOLD ::Tick const& getBlockingTick() const; - MCAPI ::std::vector<::BlockLegacy const*> const& getCanDestroy() const; + MCFOLD ::std::vector<::BlockLegacy const*> const& getCanDestroy() const; - MCAPI ::std::vector<::BlockLegacy const*> const& getCanPlaceOn() const; + MCFOLD ::std::vector<::BlockLegacy const*> const& getCanPlaceOn() const; MCAPI ::std::string getCategoryName() const; @@ -247,9 +247,9 @@ class ItemStackBase { MCAPI ::CompoundTag const* getUserData() const; - MCAPI ::CompoundTag* getUserData(); + MCFOLD ::CompoundTag* getUserData(); - MCAPI bool getWasPickedUp() const; + MCFOLD bool getWasPickedUp() const; MCAPI bool hasChargedItem() const; @@ -267,7 +267,7 @@ class ItemStackBase { MCAPI bool hasTag(::ItemTag const& string) const; - MCAPI bool hasUserData() const; + MCFOLD bool hasUserData() const; MCAPI bool hurtAndBreak(int deltaDamage, ::Actor* owner); @@ -390,7 +390,7 @@ class ItemStackBase { MCAPI void setAuxValue(short value); - MCAPI void setBlock(::Block const* block); + MCFOLD void setBlock(::Block const* block); MCAPI bool setCanDestroy(::std::vector<::std::string> const& blockIds); @@ -416,11 +416,11 @@ class ItemStackBase { MCAPI void setRepairCost(int cost); - MCAPI void setShowPickUp(bool show); + MCFOLD void setShowPickUp(bool show); MCAPI void setUserData(::std::unique_ptr<::CompoundTag> tag); - MCAPI void setWasPickedUp(bool wasPickedUp); + MCFOLD void setWasPickedUp(bool wasPickedUp); MCAPI bool shouldInteractionWithBlockBypassLiquid(::Block const& block) const; @@ -495,11 +495,11 @@ class ItemStackBase { public: // virtual function thunks // NOLINTBEGIN - MCAPI void $reinit(::Item const& item, int count, int auxValue); + MCFOLD void $reinit(::Item const& item, int count, int auxValue); - MCAPI void $reinit(::BlockLegacy const& block, int count); + MCFOLD void $reinit(::BlockLegacy const& block, int count); - MCAPI void $reinit(::std::string_view const name, int count, int auxValue); + MCFOLD void $reinit(::std::string_view const name, int count, int auxValue); MCAPI void $setNull(::std::optional<::std::string> reason); diff --git a/src/mc/world/item/ItemTag.h b/src/mc/world/item/ItemTag.h index 1acec473ee..bd8873fba4 100644 --- a/src/mc/world/item/ItemTag.h +++ b/src/mc/world/item/ItemTag.h @@ -15,6 +15,6 @@ struct ItemTag : public ::HashedString { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/world/item/ItemTagDescriptor.h b/src/mc/world/item/ItemTagDescriptor.h index 5d0c1b02d0..47c925252f 100644 --- a/src/mc/world/item/ItemTagDescriptor.h +++ b/src/mc/world/item/ItemTagDescriptor.h @@ -96,7 +96,7 @@ struct ItemTagDescriptor : public ::ItemDescriptor::BaseDescriptor { MCAPI ::std::string $toString() const; - MCAPI ::ItemDescriptor::ItemEntry $getItem() const; + MCFOLD ::ItemDescriptor::ItemEntry $getItem() const; MCAPI ::std::map<::std::string, ::std::string> $toMap() const; @@ -106,7 +106,7 @@ struct ItemTagDescriptor : public ::ItemDescriptor::BaseDescriptor { MCAPI void $serialize(::BinaryStream& stream) const; - MCAPI ::ItemDescriptor::InternalType $getType() const; + MCFOLD ::ItemDescriptor::InternalType $getType() const; MCAPI uint64 $getHash() const; // NOLINTEND diff --git a/src/mc/world/item/LeavesBlockItem.h b/src/mc/world/item/LeavesBlockItem.h index 0f6974bd87..0cb067dbf0 100644 --- a/src/mc/world/item/LeavesBlockItem.h +++ b/src/mc/world/item/LeavesBlockItem.h @@ -50,14 +50,14 @@ class LeavesBlockItem : public ::BlockItem { public: // virtual function thunks // NOLINTBEGIN - MCAPI int $getLevelDataForAuxValue(int auxValue) const; + MCFOLD int $getLevelDataForAuxValue(int auxValue) const; MCAPI ::std::string $buildDescriptionId(::ItemDescriptor const& itemDescriptor, ::CompoundTag const* userData) const; MCAPI void $fixupCommon(::ItemStackBase& stack) const; - MCAPI void $fixupCommon(::ItemStackBase& stack, ::Level& level) const; + MCFOLD void $fixupCommon(::ItemStackBase& stack, ::Level& level) const; // NOLINTEND public: diff --git a/src/mc/world/item/LegacyDyeItem.h b/src/mc/world/item/LegacyDyeItem.h index 291aba4cde..1071da0096 100644 --- a/src/mc/world/item/LegacyDyeItem.h +++ b/src/mc/world/item/LegacyDyeItem.h @@ -44,7 +44,7 @@ class LegacyDyeItem : public ::DyePowderItem { public: // virtual function thunks // NOLINTBEGIN - MCAPI bool $isDye() const; + MCFOLD bool $isDye() const; // NOLINTEND public: diff --git a/src/mc/world/item/LingeringPotionItem.h b/src/mc/world/item/LingeringPotionItem.h index ea70aa50c4..06196a4fef 100644 --- a/src/mc/world/item/LingeringPotionItem.h +++ b/src/mc/world/item/LingeringPotionItem.h @@ -38,7 +38,7 @@ class LingeringPotionItem : public ::PotionItem { virtual ::Potion::PotionType getPotionType() const /*override*/; // vIndex: 107 - virtual ::Item& setIconInfo(::std::string const& name, int index) /*override*/; + virtual ::Item& setIconInfo(::std::string const& name, int id) /*override*/; // vIndex: 87 virtual ::std::string @@ -57,7 +57,7 @@ class LingeringPotionItem : public ::PotionItem { getIconInfo(::ItemStackBase const& item, int newAnimationFrame, bool inInventoryPane) const /*override*/; // vIndex: 76 - virtual ::ItemStack& use(::ItemStack& item, ::Player& player) const /*override*/; + virtual ::ItemStack& use(::ItemStack& instance, ::Player& player) const /*override*/; // vIndex: 20 virtual bool isThrowable() const /*override*/; @@ -96,9 +96,9 @@ class LingeringPotionItem : public ::PotionItem { public: // virtual function thunks // NOLINTBEGIN - MCAPI ::Potion::PotionType $getPotionType() const; + MCFOLD ::Potion::PotionType $getPotionType() const; - MCAPI ::Item& $setIconInfo(::std::string const& name, int index); + MCAPI ::Item& $setIconInfo(::std::string const& name, int id); MCAPI ::std::string $buildDescriptionId(::ItemDescriptor const& itemDescriptor, ::CompoundTag const* userData) const; @@ -113,15 +113,15 @@ class LingeringPotionItem : public ::PotionItem { MCAPI ::ResolvedItemIconInfo $getIconInfo(::ItemStackBase const& item, int newAnimationFrame, bool inInventoryPane) const; - MCAPI ::ItemStack& $use(::ItemStack& item, ::Player& player) const; + MCAPI ::ItemStack& $use(::ItemStack& instance, ::Player& player) const; - MCAPI bool $isThrowable() const; + MCFOLD bool $isThrowable() const; MCAPI ::Actor* $createProjectileActor(::BlockSource& region, ::ItemStack const& stack, ::Vec3 const& pos, ::Vec3 const& direction) const; - MCAPI bool $dispense(::BlockSource& region, ::Container& container, int slot, ::Vec3 const& pos, uchar face) const; + MCFOLD bool $dispense(::BlockSource& region, ::Container& container, int slot, ::Vec3 const& pos, uchar face) const; // NOLINTEND public: diff --git a/src/mc/world/item/MapItem.h b/src/mc/world/item/MapItem.h index dee0c08a82..6c088fb533 100644 --- a/src/mc/world/item/MapItem.h +++ b/src/mc/world/item/MapItem.h @@ -168,9 +168,9 @@ class MapItem : public ::ComplexItem { MCAPI bool $hasSameRelevantUserData(::ItemStackBase const& stack, ::ItemStackBase const& other) const; - MCAPI ::ResolvedItemIconInfo $getIconInfo(::ItemStackBase const& item, int, bool) const; + MCFOLD ::ResolvedItemIconInfo $getIconInfo(::ItemStackBase const& item, int, bool) const; - MCAPI ::Item& $setIconInfo(::std::string const& name, int index); + MCFOLD ::Item& $setIconInfo(::std::string const& name, int index); MCAPI void $fixupCommon(::ItemStackBase& stack, ::Level& level) const; // NOLINTEND diff --git a/src/mc/world/item/MedicineItem.h b/src/mc/world/item/MedicineItem.h index d3c69912a7..8c2e943145 100644 --- a/src/mc/world/item/MedicineItem.h +++ b/src/mc/world/item/MedicineItem.h @@ -76,9 +76,9 @@ class MedicineItem : public ::ChemistryItem { MCAPI bool $isValidAuxValue(int auxValue) const; - MCAPI ::Item& $setIconInfo(::std::string const& name, int index); + MCFOLD ::Item& $setIconInfo(::std::string const& name, int index); - MCAPI ::ResolvedItemIconInfo $getIconInfo(::ItemStackBase const& item, int, bool) const; + MCFOLD ::ResolvedItemIconInfo $getIconInfo(::ItemStackBase const& item, int, bool) const; // NOLINTEND public: diff --git a/src/mc/world/item/MolangDescriptor.h b/src/mc/world/item/MolangDescriptor.h index d8fe1b5889..c8eef0a1b3 100644 --- a/src/mc/world/item/MolangDescriptor.h +++ b/src/mc/world/item/MolangDescriptor.h @@ -99,7 +99,7 @@ struct MolangDescriptor : public ::ItemDescriptor::BaseDescriptor { MCAPI void $serialize(::BinaryStream& stream) const; - MCAPI ::ItemDescriptor::InternalType $getType() const; + MCFOLD ::ItemDescriptor::InternalType $getType() const; MCAPI uint64 $getHash() const; // NOLINTEND diff --git a/src/mc/world/item/NetworkItemStackDescriptor.h b/src/mc/world/item/NetworkItemStackDescriptor.h index 92891c61dd..455532c8a7 100644 --- a/src/mc/world/item/NetworkItemStackDescriptor.h +++ b/src/mc/world/item/NetworkItemStackDescriptor.h @@ -52,7 +52,7 @@ class NetworkItemStackDescriptor : public ::ItemDescriptorCount { MCAPI ::Bedrock::Result read(::ReadOnlyBinaryStream& stream); - MCAPI void setIncludeNetIds(bool includeNetIds) const; + MCFOLD void setIncludeNetIds(bool includeNetIds) const; MCAPI ::ItemStackNetId const* tryGetServerNetId() const; diff --git a/src/mc/world/item/OminousBottleItem.h b/src/mc/world/item/OminousBottleItem.h index 87f332199a..80fcbb1cf7 100644 --- a/src/mc/world/item/OminousBottleItem.h +++ b/src/mc/world/item/OminousBottleItem.h @@ -58,7 +58,8 @@ class OminousBottleItem : public ::Item { virtual ::ItemStack& use(::ItemStack& item, ::Player& player) const /*override*/; // vIndex: 79 - virtual ::ItemUseMethod useTimeDepleted(::ItemStack& item, ::Level* level, ::Player* player) const /*override*/; + virtual ::ItemUseMethod useTimeDepleted(::ItemStack& inoutInstance, ::Level* level, ::Player* player) const + /*override*/; // vIndex: 60 virtual bool isValidAuxValue(int auxValue) const /*override*/; @@ -97,7 +98,7 @@ class OminousBottleItem : public ::Item { public: // virtual function thunks // NOLINTBEGIN - MCAPI ::Potion::PotionType $getPotionType() const; + MCFOLD ::Potion::PotionType $getPotionType() const; MCAPI ::std::string $buildDescriptionId(::ItemDescriptor const&, ::CompoundTag const*) const; @@ -110,17 +111,17 @@ class OminousBottleItem : public ::Item { MCAPI ::std::string $buildEffectDescriptionName(::ItemStackBase const& stack) const; - MCAPI bool $uniqueAuxValues() const; + MCFOLD bool $uniqueAuxValues() const; MCAPI ::ResolvedItemIconInfo $getIconInfo(::ItemStackBase const&, int, bool) const; MCAPI ::ItemStack& $use(::ItemStack& item, ::Player& player) const; - MCAPI ::ItemUseMethod $useTimeDepleted(::ItemStack& item, ::Level* level, ::Player* player) const; + MCAPI ::ItemUseMethod $useTimeDepleted(::ItemStack& inoutInstance, ::Level* level, ::Player* player) const; MCAPI bool $isValidAuxValue(int auxValue) const; - MCAPI bool $isDestructive(int) const; + MCFOLD bool $isDestructive(int) const; // NOLINTEND public: diff --git a/src/mc/world/item/PickaxeItem.h b/src/mc/world/item/PickaxeItem.h index f00055b453..19a5f68f64 100644 --- a/src/mc/world/item/PickaxeItem.h +++ b/src/mc/world/item/PickaxeItem.h @@ -49,7 +49,7 @@ class PickaxeItem : public ::DiggerItem { // NOLINTBEGIN MCAPI int $getEnchantSlot() const; - MCAPI void $executeEvent(::ItemStackBase&, ::std::string const&, ::RenderParams&) const; + MCFOLD void $executeEvent(::ItemStackBase&, ::std::string const&, ::RenderParams&) const; // NOLINTEND public: diff --git a/src/mc/world/item/PotionItem.h b/src/mc/world/item/PotionItem.h index 67680bee2d..84356c8cc3 100644 --- a/src/mc/world/item/PotionItem.h +++ b/src/mc/world/item/PotionItem.h @@ -119,7 +119,7 @@ class PotionItem : public ::Item { public: // virtual function thunks // NOLINTBEGIN - MCAPI ::Potion::PotionType $getPotionType() const; + MCFOLD ::Potion::PotionType $getPotionType() const; MCAPI ::Item& $setIconInfo(::std::string const& name, int index); @@ -134,7 +134,7 @@ class PotionItem : public ::Item { MCAPI ::std::string $buildEffectDescriptionName(::ItemStackBase const& stack) const; - MCAPI bool $uniqueAuxValues() const; + MCFOLD bool $uniqueAuxValues() const; MCAPI ::ResolvedItemIconInfo $getIconInfo(::ItemStackBase const& item, int, bool) const; diff --git a/src/mc/world/item/PumpkinBlockItem.h b/src/mc/world/item/PumpkinBlockItem.h index b69b334901..7b1f239d35 100644 --- a/src/mc/world/item/PumpkinBlockItem.h +++ b/src/mc/world/item/PumpkinBlockItem.h @@ -47,9 +47,9 @@ class PumpkinBlockItem : public ::BlockItem { // NOLINTBEGIN MCAPI int $getEnchantSlot() const; - MCAPI ::ActorLocation $getEquipLocation() const; + MCFOLD ::ActorLocation $getEquipLocation() const; - MCAPI ::SharedTypes::Legacy::LevelSoundEvent $getEquipSound() const; + MCFOLD ::SharedTypes::Legacy::LevelSoundEvent $getEquipSound() const; // NOLINTEND public: diff --git a/src/mc/world/item/RangedWeaponItem.h b/src/mc/world/item/RangedWeaponItem.h index c53384200c..27ab650410 100644 --- a/src/mc/world/item/RangedWeaponItem.h +++ b/src/mc/world/item/RangedWeaponItem.h @@ -55,7 +55,7 @@ class RangedWeaponItem : public ::Item { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND public: @@ -68,9 +68,9 @@ class RangedWeaponItem : public ::Item { MCAPI int $getAnimationFrameFor(::Mob* holder, bool asItemEntity, ::ItemStack const* item, bool shouldAnimate) const; - MCAPI int $getEnchantValue() const; + MCFOLD int $getEnchantValue() const; - MCAPI void $hurtActor(::ItemStack& item, ::Actor& actor, ::Mob& attacker) const; + MCFOLD void $hurtActor(::ItemStack& item, ::Actor& actor, ::Mob& attacker) const; // NOLINTEND public: diff --git a/src/mc/world/item/RapidFertilizerItem.h b/src/mc/world/item/RapidFertilizerItem.h index ef7c3d02e3..1044816ebf 100644 --- a/src/mc/world/item/RapidFertilizerItem.h +++ b/src/mc/world/item/RapidFertilizerItem.h @@ -30,7 +30,7 @@ class RapidFertilizerItem : public ::FertilizerItem { public: // virtual function thunks // NOLINTBEGIN - MCAPI void $fixupCommon(::ItemStackBase& stack) const; + MCFOLD void $fixupCommon(::ItemStackBase& stack) const; // NOLINTEND public: diff --git a/src/mc/world/item/RecordItem.h b/src/mc/world/item/RecordItem.h index 39e7676366..ce9b6f0ae8 100644 --- a/src/mc/world/item/RecordItem.h +++ b/src/mc/world/item/RecordItem.h @@ -72,12 +72,12 @@ class RecordItem : public ::ComponentItem { MCAPI ::std::string $buildDescriptionId(::ItemDescriptor const& itemDescriptor, ::CompoundTag const* userData) const; - MCAPI ::Item& $setIconInfo(::std::string const& name, int index); + MCFOLD ::Item& $setIconInfo(::std::string const& name, int index); - MCAPI ::ResolvedItemIconInfo + MCFOLD ::ResolvedItemIconInfo $getIconInfo(::ItemStackBase const& item, int newAnimationFrame, bool inInventoryPane) const; - MCAPI ::RecordItem& $setDescriptionId(::std::string const& description); + MCFOLD ::RecordItem& $setDescriptionId(::std::string const& description); // NOLINTEND public: diff --git a/src/mc/world/item/ResolvedItemIconInfo.h b/src/mc/world/item/ResolvedItemIconInfo.h index 6f57475d2a..8fa3cb6cb3 100644 --- a/src/mc/world/item/ResolvedItemIconInfo.h +++ b/src/mc/world/item/ResolvedItemIconInfo.h @@ -64,6 +64,6 @@ struct ResolvedItemIconInfo { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/world/item/SeaPickleBlockItem.h b/src/mc/world/item/SeaPickleBlockItem.h index 201e8fb64d..ff83616729 100644 --- a/src/mc/world/item/SeaPickleBlockItem.h +++ b/src/mc/world/item/SeaPickleBlockItem.h @@ -23,7 +23,7 @@ class SeaPickleBlockItem : public ::BlockItem { // vIndex: 120 virtual ::InteractionResult - _useOn(::ItemStack& instance, ::Actor& entity, ::BlockPos pos, uchar face, ::Vec3 const& clickPos) const + _useOn(::ItemStack& instance, ::Actor& actor, ::BlockPos pos, uchar face, ::Vec3 const& clickPos) const /*override*/; // vIndex: 0 @@ -51,10 +51,10 @@ class SeaPickleBlockItem : public ::BlockItem { public: // virtual function thunks // NOLINTBEGIN - MCAPI int $getLevelDataForAuxValue(int auxValue) const; + MCFOLD int $getLevelDataForAuxValue(int auxValue) const; MCAPI ::InteractionResult - $_useOn(::ItemStack& instance, ::Actor& entity, ::BlockPos pos, uchar face, ::Vec3 const& clickPos) const; + $_useOn(::ItemStack& instance, ::Actor& actor, ::BlockPos pos, uchar face, ::Vec3 const& clickPos) const; // NOLINTEND public: diff --git a/src/mc/world/item/SeedItemComponentLegacy.h b/src/mc/world/item/SeedItemComponentLegacy.h index d9a6ed6852..308a1d6b42 100644 --- a/src/mc/world/item/SeedItemComponentLegacy.h +++ b/src/mc/world/item/SeedItemComponentLegacy.h @@ -40,7 +40,7 @@ class SeedItemComponentLegacy { MCAPI bool init(::Json::Value const& data, ::MolangVersion molangVersion); - MCAPI bool isPlanting() const; + MCFOLD bool isPlanting() const; MCAPI void setPlanting(bool planting); diff --git a/src/mc/world/item/ShearsItem.h b/src/mc/world/item/ShearsItem.h index b06c479cb6..ef2a58e6fd 100644 --- a/src/mc/world/item/ShearsItem.h +++ b/src/mc/world/item/ShearsItem.h @@ -75,13 +75,13 @@ class ShearsItem : public ::Item { public: // virtual function thunks // NOLINTBEGIN - MCAPI void $hurtActor(::ItemStack& item, ::Actor& actor, ::Mob& attacker) const; + MCFOLD void $hurtActor(::ItemStack& item, ::Actor& actor, ::Mob& attacker) const; MCAPI bool $canDestroySpecial(::Block const& block) const; MCAPI float $getDestroySpeed(::ItemStackBase const& item, ::Block const& block) const; - MCAPI int $getEnchantSlot() const; + MCFOLD int $getEnchantSlot() const; MCAPI bool $dispense(::BlockSource& region, ::Container& container, int slot, ::Vec3 const& pos, uchar) const; diff --git a/src/mc/world/item/ShieldItem.h b/src/mc/world/item/ShieldItem.h index e11d855822..7e77121696 100644 --- a/src/mc/world/item/ShieldItem.h +++ b/src/mc/world/item/ShieldItem.h @@ -147,11 +147,11 @@ class ShieldItem : public ::Item { ::BaseGameVersion const& baseGameVersion ) const; - MCAPI bool $isHandEquipped() const; + MCFOLD bool $isHandEquipped() const; - MCAPI ::SharedTypes::Legacy::LevelSoundEvent $getEquipSound() const; + MCFOLD ::SharedTypes::Legacy::LevelSoundEvent $getEquipSound() const; - MCAPI void $hurtActor(::ItemStack& item, ::Actor& actor, ::Mob& attacker) const; + MCFOLD void $hurtActor(::ItemStack& item, ::Actor& actor, ::Mob& attacker) const; MCAPI ::InHandUpdateType $getInHandUpdateType( ::Player const& player, @@ -161,7 +161,7 @@ class ShieldItem : public ::Item { bool const slotChanged ) const; - MCAPI ::ItemStack& $use(::ItemStack& item, ::Player& player) const; + MCFOLD ::ItemStack& $use(::ItemStack& item, ::Player& player) const; MCAPI bool $dispense(::BlockSource& region, ::Container& container, int slot, ::Vec3 const& pos, uchar) const; @@ -172,7 +172,7 @@ class ShieldItem : public ::Item { MCAPI ::HashedString const& $getCooldownType() const; - MCAPI int $getCooldownTime() const; + MCFOLD int $getCooldownTime() const; MCAPI ::std::string $buildDescriptionId(::ItemDescriptor const&, ::CompoundTag const* userData) const; diff --git a/src/mc/world/item/SkullItem.h b/src/mc/world/item/SkullItem.h index de46fe8489..5d2e44281d 100644 --- a/src/mc/world/item/SkullItem.h +++ b/src/mc/world/item/SkullItem.h @@ -89,17 +89,17 @@ class SkullItem : public ::BlockItem { MCAPI ::Rarity $getRarity(::ItemStackBase const& stack) const; - MCAPI int $getLevelDataForAuxValue(int auxValue) const; + MCFOLD int $getLevelDataForAuxValue(int auxValue) const; MCAPI bool $dispense(::BlockSource& region, ::Container& container, int slot, ::Vec3 const& pos, uchar face) const; - MCAPI ::BlockShape $getBlockShape() const; + MCFOLD ::BlockShape $getBlockShape() const; MCAPI int $getEnchantSlot() const; - MCAPI ::ActorLocation $getEquipLocation() const; + MCFOLD ::ActorLocation $getEquipLocation() const; - MCAPI ::SharedTypes::Legacy::LevelSoundEvent $getEquipSound() const; + MCFOLD ::SharedTypes::Legacy::LevelSoundEvent $getEquipSound() const; MCAPI ::InteractionResult $_useOn(::ItemStack& instance, ::Actor& entity, ::BlockPos pos, uchar face, ::Vec3 const& clickPos) const; diff --git a/src/mc/world/item/SnowballItem.h b/src/mc/world/item/SnowballItem.h index 662e46d4a2..444a3f0254 100644 --- a/src/mc/world/item/SnowballItem.h +++ b/src/mc/world/item/SnowballItem.h @@ -25,7 +25,7 @@ class SnowballItem : public ::ComponentItem { // virtual functions // NOLINTBEGIN // vIndex: 107 - virtual ::Item& setIconInfo(::std::string const& name, int id) /*override*/; + virtual ::Item& setIconInfo(::std::string const& name, int index) /*override*/; // vIndex: 108 virtual ::ResolvedItemIconInfo @@ -72,15 +72,15 @@ class SnowballItem : public ::ComponentItem { public: // virtual function thunks // NOLINTBEGIN - MCAPI ::Item& $setIconInfo(::std::string const& name, int id); + MCFOLD ::Item& $setIconInfo(::std::string const& name, int index); - MCAPI ::ResolvedItemIconInfo + MCFOLD ::ResolvedItemIconInfo $getIconInfo(::ItemStackBase const& item, int newAnimationFrame, bool inInventoryPane) const; - MCAPI ::std::string + MCFOLD ::std::string $buildDescriptionId(::ItemDescriptor const& itemDescriptor, ::CompoundTag const* userData) const; - MCAPI ::SnowballItem& $setDescriptionId(::std::string const& descriptionId); + MCFOLD ::SnowballItem& $setDescriptionId(::std::string const& descriptionId); MCAPI ::Actor* $createProjectileActor(::BlockSource& region, ::ItemStack const&, ::Vec3 const& pos, ::Vec3 const& direction) const; diff --git a/src/mc/world/item/SparklerItem.h b/src/mc/world/item/SparklerItem.h index a14c4fbc2d..b8b60c4efa 100644 --- a/src/mc/world/item/SparklerItem.h +++ b/src/mc/world/item/SparklerItem.h @@ -59,7 +59,7 @@ class SparklerItem : public ::ChemistryStickItem { /*override*/; // vIndex: 107 - virtual ::Item& setIconInfo(::std::string const& name, int id) /*override*/; + virtual ::Item& setIconInfo(::std::string const& name, int index) /*override*/; // vIndex: 38 virtual bool isHandEquipped() const /*override*/; @@ -108,11 +108,11 @@ class SparklerItem : public ::ChemistryStickItem { MCAPI bool $inventoryTick(::ItemStack& item, ::Level& level, ::Actor& owner, int slot, bool selected) const; - MCAPI ::Item& $setIconInfo(::std::string const& name, int id); + MCFOLD ::Item& $setIconInfo(::std::string const& name, int index); - MCAPI bool $isHandEquipped() const; + MCFOLD bool $isHandEquipped() const; - MCAPI ::Brightness $getLightEmission(int auxValue) const; + MCFOLD ::Brightness $getLightEmission(int auxValue) const; // NOLINTEND public: diff --git a/src/mc/world/item/SplashPotionItem.h b/src/mc/world/item/SplashPotionItem.h index a8f9671309..e812aa1be3 100644 --- a/src/mc/world/item/SplashPotionItem.h +++ b/src/mc/world/item/SplashPotionItem.h @@ -96,7 +96,7 @@ class SplashPotionItem : public ::PotionItem { public: // virtual function thunks // NOLINTBEGIN - MCAPI ::Potion::PotionType $getPotionType() const; + MCFOLD ::Potion::PotionType $getPotionType() const; MCAPI ::Item& $setIconInfo(::std::string const& name, int index); @@ -115,7 +115,7 @@ class SplashPotionItem : public ::PotionItem { MCAPI ::ItemStack& $use(::ItemStack& item, ::Player& player) const; - MCAPI bool $isThrowable() const; + MCFOLD bool $isThrowable() const; MCAPI ::Actor* $createProjectileActor(::BlockSource& region, ::ItemStack const& stack, ::Vec3 const& pos, ::Vec3 const& direction) diff --git a/src/mc/world/item/SpyglassItem.h b/src/mc/world/item/SpyglassItem.h index 0765aeffd2..e3b5d7af42 100644 --- a/src/mc/world/item/SpyglassItem.h +++ b/src/mc/world/item/SpyglassItem.h @@ -61,7 +61,7 @@ class SpyglassItem : public ::Item { MCAPI ::ItemStack& $use(::ItemStack& item, ::Player& player) const; - MCAPI float $getViewDamping() const; + MCFOLD float $getViewDamping() const; // NOLINTEND public: diff --git a/src/mc/world/item/SuspiciousStewItem.h b/src/mc/world/item/SuspiciousStewItem.h index e37aaaec1e..1afaf59ee2 100644 --- a/src/mc/world/item/SuspiciousStewItem.h +++ b/src/mc/world/item/SuspiciousStewItem.h @@ -82,7 +82,7 @@ class SuspiciousStewItem : public ::Item { // NOLINTBEGIN MCAPI ::ItemUseMethod $useTimeDepleted(::ItemStack& inoutInstance, ::Level* level, ::Player* player) const; - MCAPI bool $uniqueAuxValues() const; + MCFOLD bool $uniqueAuxValues() const; // NOLINTEND public: diff --git a/src/mc/world/item/TopSnowBlockItem.h b/src/mc/world/item/TopSnowBlockItem.h index 4188525706..c7ae6bdc89 100644 --- a/src/mc/world/item/TopSnowBlockItem.h +++ b/src/mc/world/item/TopSnowBlockItem.h @@ -51,7 +51,7 @@ class TopSnowBlockItem : public ::BlockItem { public: // virtual function thunks // NOLINTBEGIN - MCAPI int $getLevelDataForAuxValue(int auxValue) const; + MCFOLD int $getLevelDataForAuxValue(int auxValue) const; MCAPI ::InteractionResult $_useOn(::ItemStack& instance, ::Actor& entity, ::BlockPos pos, uchar face, ::Vec3 const& clickPos) const; diff --git a/src/mc/world/item/TridentItem.h b/src/mc/world/item/TridentItem.h index f2827c5d30..79c669857a 100644 --- a/src/mc/world/item/TridentItem.h +++ b/src/mc/world/item/TridentItem.h @@ -45,7 +45,7 @@ class TridentItem : public ::Item { virtual int getEnchantValue() const /*override*/; // vIndex: 76 - virtual ::ItemStack& use(::ItemStack& instance, ::Player& player) const /*override*/; + virtual ::ItemStack& use(::ItemStack& item, ::Player& player) const /*override*/; // vIndex: 20 virtual bool isThrowable() const /*override*/; @@ -110,19 +110,19 @@ class TridentItem : public ::Item { MCAPI int $getEnchantSlot() const; - MCAPI int $getEnchantValue() const; + MCFOLD int $getEnchantValue() const; - MCAPI ::ItemStack& $use(::ItemStack& instance, ::Player& player) const; + MCAPI ::ItemStack& $use(::ItemStack& item, ::Player& player) const; - MCAPI bool $isThrowable() const; + MCFOLD bool $isThrowable() const; - MCAPI void $hurtActor(::ItemStack& item, ::Actor& actor, ::Mob& attacker) const; + MCFOLD void $hurtActor(::ItemStack& item, ::Actor& actor, ::Mob& attacker) const; - MCAPI short $getMaxDamage() const; + MCFOLD short $getMaxDamage() const; - MCAPI int $getAttackDamage() const; + MCFOLD int $getAttackDamage() const; - MCAPI bool $canDestroyInCreative() const; + MCFOLD bool $canDestroyInCreative() const; // NOLINTEND public: diff --git a/src/mc/world/item/TropicalFishInfo.h b/src/mc/world/item/TropicalFishInfo.h index 7b9cde1c2b..3dc8e8ea05 100644 --- a/src/mc/world/item/TropicalFishInfo.h +++ b/src/mc/world/item/TropicalFishInfo.h @@ -28,6 +28,6 @@ struct TropicalFishInfo { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/world/item/WarpedFungusOnAStickItem.h b/src/mc/world/item/WarpedFungusOnAStickItem.h index cd186e6cae..9e25bc49c3 100644 --- a/src/mc/world/item/WarpedFungusOnAStickItem.h +++ b/src/mc/world/item/WarpedFungusOnAStickItem.h @@ -51,13 +51,13 @@ class WarpedFungusOnAStickItem : public ::ComponentItem { public: // virtual function thunks // NOLINTBEGIN - MCAPI bool $isHandEquipped() const; + MCFOLD bool $isHandEquipped() const; - MCAPI bool $requiresInteract() const; + MCFOLD bool $requiresInteract() const; MCAPI int $getEnchantSlot() const; - MCAPI int $getEnchantValue() const; + MCFOLD int $getEnchantValue() const; // NOLINTEND public: diff --git a/src/mc/world/item/WaterLilyBlockItem.h b/src/mc/world/item/WaterLilyBlockItem.h index c69faa73b0..24107e2d77 100644 --- a/src/mc/world/item/WaterLilyBlockItem.h +++ b/src/mc/world/item/WaterLilyBlockItem.h @@ -21,7 +21,7 @@ class WaterLilyBlockItem : public ::BlockItem { // NOLINTBEGIN // vIndex: 120 virtual ::InteractionResult - _useOn(::ItemStack& instance, ::Actor& entity, ::BlockPos pos, uchar face, ::Vec3 const& clickPos) const + _useOn(::ItemStack& instance, ::Actor& actor, ::BlockPos pos, uchar face, ::Vec3 const& clickPos) const /*override*/; // vIndex: 118 @@ -56,11 +56,11 @@ class WaterLilyBlockItem : public ::BlockItem { // virtual function thunks // NOLINTBEGIN MCAPI ::InteractionResult - $_useOn(::ItemStack& instance, ::Actor& entity, ::BlockPos pos, uchar face, ::Vec3 const& clickPos) const; + $_useOn(::ItemStack& instance, ::Actor& actor, ::BlockPos pos, uchar face, ::Vec3 const& clickPos) const; - MCAPI bool $_calculatePlacePos(::ItemStackBase&, ::Actor&, uchar& face, ::BlockPos& pos) const; + MCFOLD bool $_calculatePlacePos(::ItemStackBase&, ::Actor&, uchar& face, ::BlockPos& pos) const; - MCAPI bool $isLiquidClipItem() const; + MCFOLD bool $isLiquidClipItem() const; // NOLINTEND public: diff --git a/src/mc/world/item/WeaponItem.h b/src/mc/world/item/WeaponItem.h index 2edfbf3656..89711dd876 100644 --- a/src/mc/world/item/WeaponItem.h +++ b/src/mc/world/item/WeaponItem.h @@ -90,7 +90,7 @@ class WeaponItem : public ::Item { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND public: @@ -98,13 +98,13 @@ class WeaponItem : public ::Item { // NOLINTBEGIN MCAPI float $getDestroySpeed(::ItemStackBase const& item, ::Block const& block) const; - MCAPI void $hurtActor(::ItemStack& item, ::Actor& actor, ::Mob& attacker) const; + MCFOLD void $hurtActor(::ItemStack& item, ::Actor& actor, ::Mob& attacker) const; - MCAPI int $getAttackDamage() const; + MCFOLD int $getAttackDamage() const; - MCAPI bool $isHandEquipped() const; + MCFOLD bool $isHandEquipped() const; - MCAPI ::ItemStack& $use(::ItemStack& item, ::Player& player) const; + MCFOLD ::ItemStack& $use(::ItemStack& item, ::Player& player) const; MCAPI bool $canDestroySpecial(::Block const& block) const; @@ -114,7 +114,7 @@ class WeaponItem : public ::Item { ::BaseGameVersion const& baseGameVersion ) const; - MCAPI int $getEnchantSlot() const; + MCFOLD int $getEnchantSlot() const; MCAPI int $getEnchantValue() const; @@ -125,7 +125,7 @@ class WeaponItem : public ::Item { bool const showCategory ) const; - MCAPI bool $canDestroyInCreative() const; + MCFOLD bool $canDestroyInCreative() const; // NOLINTEND public: diff --git a/src/mc/world/item/WolfArmorItem.h b/src/mc/world/item/WolfArmorItem.h index d3613f06f8..a881c1a2c3 100644 --- a/src/mc/world/item/WolfArmorItem.h +++ b/src/mc/world/item/WolfArmorItem.h @@ -103,9 +103,9 @@ class WolfArmorItem : public ::ComponentItem { MCAPI ::std::string $buildDescriptionId(::ItemDescriptor const&, ::CompoundTag const*) const; - MCAPI int $getArmorValue() const; + MCFOLD int $getArmorValue() const; - MCAPI ::SharedTypes::Legacy::LevelSoundEvent $getBreakSound() const; + MCFOLD ::SharedTypes::Legacy::LevelSoundEvent $getBreakSound() const; // NOLINTEND public: diff --git a/src/mc/world/item/WritableBookItem.h b/src/mc/world/item/WritableBookItem.h index 6e591bed6a..f36d10e90e 100644 --- a/src/mc/world/item/WritableBookItem.h +++ b/src/mc/world/item/WritableBookItem.h @@ -61,7 +61,7 @@ class WritableBookItem : public ::Item { // NOLINTBEGIN MCAPI ::ItemStack& $use(::ItemStack& item, ::Player& player) const; - MCAPI bool $requiresInteract() const; + MCFOLD bool $requiresInteract() const; MCAPI ::std::string $getInteractText(::Player const& player) const; // NOLINTEND diff --git a/src/mc/world/item/WrittenBookItem.h b/src/mc/world/item/WrittenBookItem.h index e199d03b08..e967fdd907 100644 --- a/src/mc/world/item/WrittenBookItem.h +++ b/src/mc/world/item/WrittenBookItem.h @@ -120,7 +120,7 @@ class WrittenBookItem : public ::Item { // NOLINTBEGIN MCAPI ::ItemStack& $use(::ItemStack& instance, ::Player& player) const; - MCAPI bool $requiresInteract() const; + MCFOLD bool $requiresInteract() const; MCAPI ::std::string $getInteractText(::Player const& player) const; @@ -135,7 +135,7 @@ class WrittenBookItem : public ::Item { MCAPI bool $inventoryTick(::ItemStack&, ::Level& level, ::Actor& owner, int, bool) const; - MCAPI bool $isGlint(::ItemStackBase const& stack) const; + MCFOLD bool $isGlint(::ItemStackBase const& stack) const; // NOLINTEND public: diff --git a/src/mc/world/item/alchemy/Potion.h b/src/mc/world/item/alchemy/Potion.h index 1fac197943..6b39c6cbd0 100644 --- a/src/mc/world/item/alchemy/Potion.h +++ b/src/mc/world/item/alchemy/Potion.h @@ -58,19 +58,14 @@ class Potion { public: // member variables // NOLINTBEGIN - ::ll::UntypedStorage<4, 4> mUnk4d6fcb; - ::ll::UntypedStorage<8, 32> mUnkc5c2aa; - ::ll::UntypedStorage<8, 32> mUnk9c617a; - ::ll::UntypedStorage<8, 24> mUnk132265; - ::ll::UntypedStorage<8, 24> mUnkc08526; - ::ll::UntypedStorage<4, 4> mUnka14b8d; + ::ll::TypedStorage<4, 4, int> mId; + ::ll::TypedStorage<8, 32, ::std::string> mNameId; + ::ll::TypedStorage<8, 32, ::std::string> mPrefix; + ::ll::TypedStorage<8, 24, ::std::vector<::MobEffectInstance>> mEffects; + ::ll::TypedStorage<8, 24, ::std::vector<::std::string>> mDescriptionIds; + ::ll::TypedStorage<4, 4, ::Potion::PotionVariant> mVar; // NOLINTEND -public: - // prevent constructor by default - Potion& operator=(Potion const&); - Potion(); - public: // member functions // NOLINTBEGIN @@ -106,19 +101,19 @@ class Potion { MCAPI ::std::string getDescriptionId(::Potion::PotionType potionType) const; - MCAPI ::MobEffectInstance const& getMobEffect() const; + MCFOLD ::MobEffectInstance const& getMobEffect() const; MCAPI int getMobEffectId() const; - MCAPI ::std::vector<::MobEffectInstance> const& getMobEffects() const; + MCFOLD ::std::vector<::MobEffectInstance> const& getMobEffects() const; MCAPI ::std::string getPotencyDescription(::Potion::PotionType potionType, float timeMod) const; - MCAPI int getPotionId() const; + MCFOLD int getPotionId() const; - MCAPI ::Potion::PotionVariant getPotionVariant() const; + MCFOLD ::Potion::PotionVariant getPotionVariant() const; - MCAPI ::std::string getPrefix() const; + MCFOLD ::std::string getPrefix() const; MCAPI ~Potion(); // NOLINTEND diff --git a/src/mc/world/item/alchemy/PotionBrewing.h b/src/mc/world/item/alchemy/PotionBrewing.h index 5ece68013a..c3a8895670 100644 --- a/src/mc/world/item/alchemy/PotionBrewing.h +++ b/src/mc/world/item/alchemy/PotionBrewing.h @@ -22,24 +22,18 @@ class PotionBrewing { public: // member variables // NOLINTBEGIN - ::ll::UntypedStorage<4, 4> mUnka70936; - ::ll::UntypedStorage<4, 4> mUnk808e4c; + ::ll::TypedStorage<4, 4, int> mItemId; + ::ll::TypedStorage<4, 4, int> mData; // NOLINTEND - public: - // prevent constructor by default - Ingredient& operator=(Ingredient const&); - Ingredient(Ingredient const&); - Ingredient(); - public: // member functions // NOLINTBEGIN MCAPI explicit Ingredient(::ItemInstance const& item); - MCAPI int getData() const; + MCFOLD int getData() const; - MCAPI int getItemId() const; + MCFOLD int getItemId() const; // NOLINTEND public: diff --git a/src/mc/world/item/components/AllowOffHandItemComponent.h b/src/mc/world/item/components/AllowOffHandItemComponent.h index 99cea870b1..9cb1cfb21f 100644 --- a/src/mc/world/item/components/AllowOffHandItemComponent.h +++ b/src/mc/world/item/components/AllowOffHandItemComponent.h @@ -42,7 +42,7 @@ class AllowOffHandItemComponent : public ::NetworkedItemComponent<::AllowOffHand // NOLINTBEGIN MCAPI explicit AllowOffHandItemComponent(::SharedTypes::v1_20_50::AllowOffHandItemComponent component); - MCAPI bool getAllowOffHand() const; + MCFOLD bool getAllowOffHand() const; // NOLINTEND public: diff --git a/src/mc/world/item/components/ChargeableItemComponentLegacyFactoryData.h b/src/mc/world/item/components/ChargeableItemComponentLegacyFactoryData.h index 7565974426..d596ade5ad 100644 --- a/src/mc/world/item/components/ChargeableItemComponentLegacyFactoryData.h +++ b/src/mc/world/item/components/ChargeableItemComponentLegacyFactoryData.h @@ -49,7 +49,7 @@ struct ChargeableItemComponentLegacyFactoryData : public ::IItemComponentLegacyF public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND public: diff --git a/src/mc/world/item/components/ComponentItem.h b/src/mc/world/item/components/ComponentItem.h index 141d30bac1..7b8cec0145 100644 --- a/src/mc/world/item/components/ComponentItem.h +++ b/src/mc/world/item/components/ComponentItem.h @@ -286,7 +286,7 @@ class ComponentItem : public ::Item { virtual bool canBeCharged() const /*override*/; // vIndex: 3 - virtual ::ComponentItem& setDescriptionId(::std::string const& description) /*override*/; + virtual ::ComponentItem& setDescriptionId(::std::string const& descriptionId) /*override*/; // vIndex: 123 virtual bool shouldUseJsonForRenderMatrix() const; @@ -421,9 +421,9 @@ class ComponentItem : public ::Item { public: // virtual function thunks // NOLINTBEGIN - MCAPI void $tearDown(); + MCFOLD void $tearDown(); - MCAPI bool $isComponentBased() const; + MCFOLD bool $isComponentBased() const; MCAPI bool $isHumanoidArmor() const; @@ -433,7 +433,7 @@ class ComponentItem : public ::Item { MCAPI bool $isDyeable() const; - MCAPI bool $isFood() const; + MCFOLD bool $isFood() const; MCAPI bool $isThrowable() const; @@ -453,23 +453,23 @@ class ComponentItem : public ::Item { MCAPI ::std::string const& $getDescriptionId() const; - MCAPI ::BlockShape $getBlockShape() const; + MCFOLD ::BlockShape $getBlockShape() const; MCAPI bool $canBeDepleted() const; MCAPI bool $canDestroySpecial(::Block const& block) const; - MCAPI int $getLevelDataForAuxValue(int) const; + MCFOLD int $getLevelDataForAuxValue(int) const; MCAPI short $getMaxDamage() const; - MCAPI int $getAttackDamage() const; + MCFOLD int $getAttackDamage() const; - MCAPI bool $isGlint(::ItemStackBase const& stack) const; + MCFOLD bool $isGlint(::ItemStackBase const& stack) const; MCAPI bool $canDestroyInCreative() const; - MCAPI bool $isDestructive(int) const; + MCFOLD bool $isDestructive(int) const; MCAPI bool $isLiquidClipItem() const; @@ -490,7 +490,7 @@ class ComponentItem : public ::Item { MCAPI int $getEnchantSlot() const; - MCAPI int $getEnchantValue() const; + MCFOLD int $getEnchantValue() const; MCAPI int $getArmorValue() const; @@ -528,7 +528,7 @@ class ComponentItem : public ::Item { MCAPI ::std::string $buildEffectDescriptionName(::ItemStackBase const& stack) const; - MCAPI uchar $getMaxStackSize(::ItemDescriptor const&) const; + MCFOLD uchar $getMaxStackSize(::ItemDescriptor const&) const; MCAPI ::HashedString const& $getCooldownType() const; @@ -536,15 +536,15 @@ class ComponentItem : public ::Item { MCAPI ::SharedTypes::Legacy::LevelSoundEvent $getEquipSound() const; - MCAPI bool $useVariant(int, int, bool) const; + MCFOLD bool $useVariant(int, int, bool) const; - MCAPI int $getVariant(int, int, bool) const; + MCFOLD int $getVariant(int, int, bool) const; MCAPI ::std::string $getInteractText(::Player const& player) const; - MCAPI int $getAnimationFrameFor(::Mob*, bool, ::ItemStack const*, bool) const; + MCFOLD int $getAnimationFrameFor(::Mob*, bool, ::ItemStack const*, bool) const; - MCAPI bool $isEmissive(int auxValue) const; + MCFOLD bool $isEmissive(int auxValue) const; MCAPI ::ResolvedItemIconInfo $getIconInfo(::ItemStackBase const& item, int newAnimationFrame, bool inInventoryPane) const; @@ -553,7 +553,7 @@ class ComponentItem : public ::Item { MCAPI bool $canBeCharged() const; - MCAPI ::ComponentItem& $setDescriptionId(::std::string const& description); + MCFOLD ::ComponentItem& $setDescriptionId(::std::string const& descriptionId); MCAPI bool $shouldUseJsonForRenderMatrix() const; diff --git a/src/mc/world/item/components/ComponentItemDeprecatedComponentData_v1_20_30.h b/src/mc/world/item/components/ComponentItemDeprecatedComponentData_v1_20_30.h index ff69005f85..f625016303 100644 --- a/src/mc/world/item/components/ComponentItemDeprecatedComponentData_v1_20_30.h +++ b/src/mc/world/item/components/ComponentItemDeprecatedComponentData_v1_20_30.h @@ -34,6 +34,6 @@ struct ComponentItemDeprecatedComponentData_v1_20_30 { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/world/item/components/ComponentItemDescriptionData_v1_20.h b/src/mc/world/item/components/ComponentItemDescriptionData_v1_20.h index f8e160ae88..21e270a348 100644 --- a/src/mc/world/item/components/ComponentItemDescriptionData_v1_20.h +++ b/src/mc/world/item/components/ComponentItemDescriptionData_v1_20.h @@ -39,6 +39,6 @@ struct ComponentItemDescriptionData_v1_20 { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/world/item/components/ComponentItemMenuCategoryData_v1_20_20.h b/src/mc/world/item/components/ComponentItemMenuCategoryData_v1_20_20.h index 6170c397c7..2fdb240902 100644 --- a/src/mc/world/item/components/ComponentItemMenuCategoryData_v1_20_20.h +++ b/src/mc/world/item/components/ComponentItemMenuCategoryData_v1_20_20.h @@ -54,6 +54,6 @@ struct ComponentItemMenuCategoryData_v1_20_20 { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/world/item/components/CooldownItemComponent.h b/src/mc/world/item/components/CooldownItemComponent.h index 3b9e7b0c18..3fcdd93375 100644 --- a/src/mc/world/item/components/CooldownItemComponent.h +++ b/src/mc/world/item/components/CooldownItemComponent.h @@ -62,7 +62,7 @@ class CooldownItemComponent : public ::NetworkedItemComponent<::CooldownItemComp public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND public: diff --git a/src/mc/world/item/components/CustomComponentsItemComponent.h b/src/mc/world/item/components/CustomComponentsItemComponent.h index 2224eab5de..36ceff34fa 100644 --- a/src/mc/world/item/components/CustomComponentsItemComponent.h +++ b/src/mc/world/item/components/CustomComponentsItemComponent.h @@ -36,7 +36,7 @@ class CustomComponentsItemComponent : public ::ItemComponent { // NOLINTBEGIN MCAPI explicit CustomComponentsItemComponent(::SharedTypes::v1_20_80::CustomComponentsItemComponent component); - MCAPI ::std::vector<::std::string> const& getComponentNames() const; + MCFOLD ::std::vector<::std::string> const& getComponentNames() const; // NOLINTEND public: diff --git a/src/mc/world/item/components/DiggerItemComponent.h b/src/mc/world/item/components/DiggerItemComponent.h index 466b477344..c2f8bf950a 100644 --- a/src/mc/world/item/components/DiggerItemComponent.h +++ b/src/mc/world/item/components/DiggerItemComponent.h @@ -45,7 +45,7 @@ class DiggerItemComponent : public ::NetworkedItemComponent<::DiggerItemComponen public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/world/item/components/DurabilityItemComponent.h b/src/mc/world/item/components/DurabilityItemComponent.h index 001b260d6b..685fc3870b 100644 --- a/src/mc/world/item/components/DurabilityItemComponent.h +++ b/src/mc/world/item/components/DurabilityItemComponent.h @@ -42,9 +42,9 @@ class DurabilityItemComponent : public ::NetworkedItemComponent<::DurabilityItem MCAPI ::IntRange getDamageChanceRange() const; - MCAPI int getMaxDamage() const; + MCFOLD int getMaxDamage() const; - MCAPI void setMaxDamage(int maxDamage); + MCFOLD void setMaxDamage(int maxDamage); // NOLINTEND public: diff --git a/src/mc/world/item/components/DyeableItemComponent.h b/src/mc/world/item/components/DyeableItemComponent.h index 340799696a..2521a6e699 100644 --- a/src/mc/world/item/components/DyeableItemComponent.h +++ b/src/mc/world/item/components/DyeableItemComponent.h @@ -46,15 +46,15 @@ class DyeableItemComponent : public ::NetworkedItemComponent<::DyeableItemCompon MCAPI void appendFormattedHovertext(::ItemStackBase const& item, ::Bedrock::Safety::RedactableString& hovertext, bool) const; - MCAPI void clearColor(::ItemStackBase& instance) const; + MCFOLD void clearColor(::ItemStackBase& instance) const; MCAPI ::mce::Color getColor(::CompoundTag const* userData, ::ItemDescriptor const&) const; - MCAPI ::mce::Color const& getDefaultColor() const; + MCFOLD ::mce::Color const& getDefaultColor() const; MCAPI bool hasCustomColor(::ItemStackBase const& instance) const; - MCAPI void setColor(::ItemStackBase& instance, ::mce::Color const& color) const; + MCFOLD void setColor(::ItemStackBase& instance, ::mce::Color const& color) const; // NOLINTEND public: diff --git a/src/mc/world/item/components/EnchantableItemComponent.h b/src/mc/world/item/components/EnchantableItemComponent.h index c66a9f3118..fb192d9c20 100644 --- a/src/mc/world/item/components/EnchantableItemComponent.h +++ b/src/mc/world/item/components/EnchantableItemComponent.h @@ -42,9 +42,9 @@ class EnchantableItemComponent : public ::NetworkedItemComponent<::EnchantableIt // NOLINTBEGIN MCAPI explicit EnchantableItemComponent(::SharedTypes::v1_20_50::EnchantableItemComponent component); - MCAPI ::EnchantableItemComponent& operator=(::EnchantableItemComponent&&); + MCFOLD ::EnchantableItemComponent& operator=(::EnchantableItemComponent&&); - MCAPI ::EnchantableItemComponent& operator=(::EnchantableItemComponent const&); + MCFOLD ::EnchantableItemComponent& operator=(::EnchantableItemComponent const&); // NOLINTEND public: diff --git a/src/mc/world/item/components/FoodItemComponent.h b/src/mc/world/item/components/FoodItemComponent.h index 5941715c1e..eb3f71a6c2 100644 --- a/src/mc/world/item/components/FoodItemComponent.h +++ b/src/mc/world/item/components/FoodItemComponent.h @@ -101,11 +101,11 @@ class FoodItemComponent : public ::NetworkedItemComponent<::FoodItemComponent>, // NOLINTBEGIN MCAPI void $_initializeComponent(); - MCAPI int $getNutrition() const; + MCFOLD int $getNutrition() const; - MCAPI float $getSaturationModifier() const; + MCFOLD float $getSaturationModifier() const; - MCAPI bool $canAlwaysEat() const; + MCFOLD bool $canAlwaysEat() const; MCAPI ::Item const* $eatItem(::ItemStack& instance, ::Actor& actor, ::Level& level); diff --git a/src/mc/world/item/components/HoverTextColorItemComponent.h b/src/mc/world/item/components/HoverTextColorItemComponent.h index 9085d5f24d..6a7fabf234 100644 --- a/src/mc/world/item/components/HoverTextColorItemComponent.h +++ b/src/mc/world/item/components/HoverTextColorItemComponent.h @@ -51,7 +51,7 @@ class HoverTextColorItemComponent : public ::NetworkedItemComponent<::HoverTextC public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND public: diff --git a/src/mc/world/item/components/IItemComponentLegacyFactoryData.h b/src/mc/world/item/components/IItemComponentLegacyFactoryData.h index 220d771ed2..3f8e25d3e2 100644 --- a/src/mc/world/item/components/IItemComponentLegacyFactoryData.h +++ b/src/mc/world/item/components/IItemComponentLegacyFactoryData.h @@ -25,7 +25,7 @@ struct IItemComponentLegacyFactoryData { public: // member functions // NOLINTBEGIN - MCAPI ::IItemComponentLegacyFactoryData::Components& + MCFOLD ::IItemComponentLegacyFactoryData::Components& operator=(::IItemComponentLegacyFactoryData::Components const&); // NOLINTEND }; diff --git a/src/mc/world/item/components/IconItemComponentLegacyFactoryData.h b/src/mc/world/item/components/IconItemComponentLegacyFactoryData.h index 8856e1273e..257cc972e2 100644 --- a/src/mc/world/item/components/IconItemComponentLegacyFactoryData.h +++ b/src/mc/world/item/components/IconItemComponentLegacyFactoryData.h @@ -34,7 +34,7 @@ struct IconItemComponentLegacyFactoryData : public ::IItemComponentLegacyFactory public: // member functions // NOLINTBEGIN - MCAPI ::IconItemComponentLegacyFactoryData& operator=(::IconItemComponentLegacyFactoryData const&); + MCFOLD ::IconItemComponentLegacyFactoryData& operator=(::IconItemComponentLegacyFactoryData const&); MCAPI ::IconItemComponentLegacyFactoryData& operator=(::IconItemComponentLegacyFactoryData&&); // NOLINTEND diff --git a/src/mc/world/item/components/InteractButtonItemComponent.h b/src/mc/world/item/components/InteractButtonItemComponent.h index 235ae3ff1e..ac16c3a42b 100644 --- a/src/mc/world/item/components/InteractButtonItemComponent.h +++ b/src/mc/world/item/components/InteractButtonItemComponent.h @@ -52,9 +52,9 @@ class InteractButtonItemComponent : public ::ItemComponent { // NOLINTBEGIN MCAPI explicit InteractButtonItemComponent(::SharedTypes::v1_20_50::InteractButtonItemComponent component); - MCAPI ::InteractButtonItemComponent& operator=(::InteractButtonItemComponent&&); + MCFOLD ::InteractButtonItemComponent& operator=(::InteractButtonItemComponent&&); - MCAPI ::InteractButtonItemComponent& operator=(::InteractButtonItemComponent const&); + MCFOLD ::InteractButtonItemComponent& operator=(::InteractButtonItemComponent const&); // NOLINTEND public: @@ -84,7 +84,7 @@ class InteractButtonItemComponent : public ::ItemComponent { public: // virtual function thunks // NOLINTBEGIN - MCAPI bool $isNetworkComponent() const; + MCFOLD bool $isNetworkComponent() const; MCAPI ::std::unique_ptr<::CompoundTag> $buildNetworkTag(::cereal::ReflectionCtx const& ctx) const; diff --git a/src/mc/world/item/components/ItemComponent.h b/src/mc/world/item/components/ItemComponent.h index abe4b34378..6a223a2ce6 100644 --- a/src/mc/world/item/components/ItemComponent.h +++ b/src/mc/world/item/components/ItemComponent.h @@ -62,19 +62,19 @@ class ItemComponent : public ::IItemComponentLegacyFactoryData { public: // virtual function thunks // NOLINTBEGIN - MCAPI bool $checkComponentDataForContentErrors() const; + MCFOLD bool $checkComponentDataForContentErrors() const; - MCAPI void $writeSettings(); + MCFOLD void $writeSettings(); - MCAPI bool $isNetworkComponent() const; + MCFOLD bool $isNetworkComponent() const; - MCAPI ::std::unique_ptr<::CompoundTag> $buildNetworkTag(::cereal::ReflectionCtx const& ctx) const; + MCFOLD ::std::unique_ptr<::CompoundTag> $buildNetworkTag(::cereal::ReflectionCtx const& ctx) const; - MCAPI bool $initializeFromNetwork(::CompoundTag const& tag, ::cereal::ReflectionCtx const& ctx); + MCFOLD bool $initializeFromNetwork(::CompoundTag const& tag, ::cereal::ReflectionCtx const& ctx); - MCAPI void $handleVersionBasedInitialization(::SemVersion const& originalJsonVersion); + MCFOLD void $handleVersionBasedInitialization(::SemVersion const& originalJsonVersion); - MCAPI void $_initializeComponent(); + MCFOLD void $_initializeComponent(); // NOLINTEND public: diff --git a/src/mc/world/item/components/LegacyOnCompleteTriggerItemComponentData.h b/src/mc/world/item/components/LegacyOnCompleteTriggerItemComponentData.h index 54606691b8..bd61069ffe 100644 --- a/src/mc/world/item/components/LegacyOnCompleteTriggerItemComponentData.h +++ b/src/mc/world/item/components/LegacyOnCompleteTriggerItemComponentData.h @@ -24,6 +24,6 @@ struct LegacyOnCompleteTriggerItemComponentData { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/world/item/components/LegacyOnConsumeTriggerItemComponentData.h b/src/mc/world/item/components/LegacyOnConsumeTriggerItemComponentData.h index 6f4b9e9790..fc0df4e6b7 100644 --- a/src/mc/world/item/components/LegacyOnConsumeTriggerItemComponentData.h +++ b/src/mc/world/item/components/LegacyOnConsumeTriggerItemComponentData.h @@ -24,6 +24,6 @@ struct LegacyOnConsumeTriggerItemComponentData { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/world/item/components/LegacyOnHitActorTriggerItemComponentData.h b/src/mc/world/item/components/LegacyOnHitActorTriggerItemComponentData.h index e81fd2075f..cad6bb0455 100644 --- a/src/mc/world/item/components/LegacyOnHitActorTriggerItemComponentData.h +++ b/src/mc/world/item/components/LegacyOnHitActorTriggerItemComponentData.h @@ -24,6 +24,6 @@ struct LegacyOnHitActorTriggerItemComponentData { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/world/item/components/LegacyOnHitBlockTriggerItemComponentData.h b/src/mc/world/item/components/LegacyOnHitBlockTriggerItemComponentData.h index 67528086ae..633cd1fa33 100644 --- a/src/mc/world/item/components/LegacyOnHitBlockTriggerItemComponentData.h +++ b/src/mc/world/item/components/LegacyOnHitBlockTriggerItemComponentData.h @@ -24,6 +24,6 @@ struct LegacyOnHitBlockTriggerItemComponentData { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/world/item/components/LegacyOnHurtActorTriggerItemComponentData.h b/src/mc/world/item/components/LegacyOnHurtActorTriggerItemComponentData.h index 9470bd3d2e..1b0a90e19d 100644 --- a/src/mc/world/item/components/LegacyOnHurtActorTriggerItemComponentData.h +++ b/src/mc/world/item/components/LegacyOnHurtActorTriggerItemComponentData.h @@ -24,6 +24,6 @@ struct LegacyOnHurtActorTriggerItemComponentData { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/world/item/components/LegacyOnUseTriggerItemComponentData.h b/src/mc/world/item/components/LegacyOnUseTriggerItemComponentData.h index 122f9f2788..ee8285ef37 100644 --- a/src/mc/world/item/components/LegacyOnUseTriggerItemComponentData.h +++ b/src/mc/world/item/components/LegacyOnUseTriggerItemComponentData.h @@ -24,6 +24,6 @@ struct LegacyOnUseTriggerItemComponentData { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/world/item/components/MobEffectPtr.h b/src/mc/world/item/components/MobEffectPtr.h index e88f66d651..22bd098cab 100644 --- a/src/mc/world/item/components/MobEffectPtr.h +++ b/src/mc/world/item/components/MobEffectPtr.h @@ -2,16 +2,15 @@ #include "mc/_HeaderOutputPredefine.h" +// auto generated forward declare list +// clang-format off +class MobEffect; +// clang-format on + class MobEffectPtr { public: // member variables // NOLINTBEGIN - ::ll::UntypedStorage<8, 8> mUnka5eec1; + ::ll::TypedStorage<8, 8, ::MobEffect const*> mMobEffect; // NOLINTEND - -public: - // prevent constructor by default - MobEffectPtr& operator=(MobEffectPtr const&); - MobEffectPtr(MobEffectPtr const&); - MobEffectPtr(); }; diff --git a/src/mc/world/item/components/OnUseItemComponent.h b/src/mc/world/item/components/OnUseItemComponent.h index 3a6986ce80..b4cf537bd1 100644 --- a/src/mc/world/item/components/OnUseItemComponent.h +++ b/src/mc/world/item/components/OnUseItemComponent.h @@ -35,9 +35,9 @@ class OnUseItemComponent : public ::IItemComponentLegacyFactoryData { public: // member functions // NOLINTBEGIN - MCAPI ::OnUseItemComponent& operator=(::OnUseItemComponent&&); + MCFOLD ::OnUseItemComponent& operator=(::OnUseItemComponent&&); - MCAPI ::OnUseItemComponent& operator=(::OnUseItemComponent const&); + MCFOLD ::OnUseItemComponent& operator=(::OnUseItemComponent const&); // NOLINTEND public: @@ -55,7 +55,7 @@ class OnUseItemComponent : public ::IItemComponentLegacyFactoryData { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND public: diff --git a/src/mc/world/item/components/OnUseOnItemComponentLegacyFactoryData.h b/src/mc/world/item/components/OnUseOnItemComponentLegacyFactoryData.h index 8ae812d1fd..6dd1f260c9 100644 --- a/src/mc/world/item/components/OnUseOnItemComponentLegacyFactoryData.h +++ b/src/mc/world/item/components/OnUseOnItemComponentLegacyFactoryData.h @@ -38,9 +38,9 @@ class OnUseOnItemComponentLegacyFactoryData : public ::IItemComponentLegacyFacto // NOLINTBEGIN MCAPI explicit OnUseOnItemComponentLegacyFactoryData(::DefinitionTrigger trigger); - MCAPI ::OnUseOnItemComponentLegacyFactoryData& operator=(::OnUseOnItemComponentLegacyFactoryData const&); + MCFOLD ::OnUseOnItemComponentLegacyFactoryData& operator=(::OnUseOnItemComponentLegacyFactoryData const&); - MCAPI ::OnUseOnItemComponentLegacyFactoryData& operator=(::OnUseOnItemComponentLegacyFactoryData&&); + MCFOLD ::OnUseOnItemComponentLegacyFactoryData& operator=(::OnUseOnItemComponentLegacyFactoryData&&); // NOLINTEND public: @@ -64,7 +64,7 @@ class OnUseOnItemComponentLegacyFactoryData : public ::IItemComponentLegacyFacto public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND public: diff --git a/src/mc/world/item/components/PlanterItemComponent.h b/src/mc/world/item/components/PlanterItemComponent.h index 77d70c1f5d..43736795dd 100644 --- a/src/mc/world/item/components/PlanterItemComponent.h +++ b/src/mc/world/item/components/PlanterItemComponent.h @@ -82,7 +82,7 @@ class PlanterItemComponent : public ::NetworkedItemComponent<::PlanterItemCompon ::Vec3 const& clickPos ); - MCAPI bool isReplacingBlockItem() const; + MCFOLD bool isReplacingBlockItem() const; // NOLINTEND public: diff --git a/src/mc/world/item/components/RecordItemComponent.h b/src/mc/world/item/components/RecordItemComponent.h index 9c7414aefb..673001d354 100644 --- a/src/mc/world/item/components/RecordItemComponent.h +++ b/src/mc/world/item/components/RecordItemComponent.h @@ -45,13 +45,13 @@ class RecordItemComponent : public ::NetworkedItemComponent<::RecordItemComponen MCAPI void appendFormattedHovertext(::Bedrock::Safety::RedactableString& hovertext) const; - MCAPI int getComparatorSignal() const; + MCFOLD int getComparatorSignal() const; - MCAPI float getDuration() const; + MCFOLD float getDuration() const; MCAPI ::std::string getRecordDescription() const; - MCAPI ::SharedTypes::Legacy::LevelSoundEvent getSound() const; + MCFOLD ::SharedTypes::Legacy::LevelSoundEvent getSound() const; // NOLINTEND public: diff --git a/src/mc/world/item/components/RepairItemResult.h b/src/mc/world/item/components/RepairItemResult.h index d3ea4aebc7..3db1b1ac25 100644 --- a/src/mc/world/item/components/RepairItemResult.h +++ b/src/mc/world/item/components/RepairItemResult.h @@ -25,6 +25,6 @@ struct RepairItemResult { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/world/item/components/ShooterItemComponent.h b/src/mc/world/item/components/ShooterItemComponent.h index 3b762e21fc..e18e9946c9 100644 --- a/src/mc/world/item/components/ShooterItemComponent.h +++ b/src/mc/world/item/components/ShooterItemComponent.h @@ -50,7 +50,7 @@ class ShooterItemComponent : public ::NetworkedItemComponent<::ShooterItemCompon public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/world/item/components/StorageItemComponent.h b/src/mc/world/item/components/StorageItemComponent.h index 660ef70d07..203325fe28 100644 --- a/src/mc/world/item/components/StorageItemComponent.h +++ b/src/mc/world/item/components/StorageItemComponent.h @@ -54,17 +54,17 @@ class StorageItemComponent : public ::NetworkedItemComponent<::StorageItemCompon public: // member functions // NOLINTBEGIN - MCAPI bool getAllowNestedStorageItem() const; + MCFOLD bool getAllowNestedStorageItem() const; - MCAPI ::std::vector<::ItemDescriptor> const& getAllowedItems() const; + MCFOLD ::std::vector<::ItemDescriptor> const& getAllowedItems() const; - MCAPI ::std::vector<::ItemDescriptor> const& getBannedItems() const; + MCFOLD ::std::vector<::ItemDescriptor> const& getBannedItems() const; - MCAPI int getNumSlot() const; + MCFOLD int getNumSlot() const; - MCAPI int getWeightInStorageItem() const; + MCFOLD int getWeightInStorageItem() const; - MCAPI int getWeightLimit() const; + MCFOLD int getWeightLimit() const; MCAPI ::std::unique_ptr<::ListTag> serializeStorageItem(::FullContainerName const& name, ::SaveContext const& saveContext) const; diff --git a/src/mc/world/item/components/WearableItemComponent.h b/src/mc/world/item/components/WearableItemComponent.h index f42c92d197..18bf138f8c 100644 --- a/src/mc/world/item/components/WearableItemComponent.h +++ b/src/mc/world/item/components/WearableItemComponent.h @@ -46,7 +46,7 @@ class WearableItemComponent : public ::NetworkedItemComponent<::WearableItemComp // NOLINTBEGIN MCAPI WearableItemComponent(::SharedTypes::Legacy::EquipmentSlot slot, int protection); - MCAPI ::SharedTypes::Legacy::EquipmentSlot getSlot() const; + MCFOLD ::SharedTypes::Legacy::EquipmentSlot getSlot() const; MCAPI bool shouldForceAllowOffHand() const; diff --git a/src/mc/world/item/components/publisher_item_component/OnUseOn.h b/src/mc/world/item/components/publisher_item_component/OnUseOn.h index 0f326e537e..630622b9aa 100644 --- a/src/mc/world/item/components/publisher_item_component/OnUseOn.h +++ b/src/mc/world/item/components/publisher_item_component/OnUseOn.h @@ -60,7 +60,7 @@ class OnUseOn : public ::ItemComponent, public: // virtual function thunks // NOLINTBEGIN - MCAPI bool $isNetworkComponent() const; + MCFOLD bool $isNetworkComponent() const; MCAPI ::std::unique_ptr<::CompoundTag> $buildNetworkTag(::cereal::ReflectionCtx const& ctx) const; diff --git a/src/mc/world/item/crafting/BannerAddPatternRecipe.h b/src/mc/world/item/crafting/BannerAddPatternRecipe.h index 624e403e73..d6a56cacd8 100644 --- a/src/mc/world/item/crafting/BannerAddPatternRecipe.h +++ b/src/mc/world/item/crafting/BannerAddPatternRecipe.h @@ -91,15 +91,15 @@ class BannerAddPatternRecipe : public ::MultiRecipe { // NOLINTBEGIN MCAPI ::std::vector<::ItemInstance> const& $assemble(::CraftingContainer& craftSlots, ::CraftingContext&) const; - MCAPI int $getCraftingSize() const; + MCFOLD int $getCraftingSize() const; - MCAPI ::RecipeIngredient const& $getIngredient(int, int) const; + MCFOLD ::RecipeIngredient const& $getIngredient(int, int) const; - MCAPI ::std::vector<::ItemInstance> const& $getResultItems() const; + MCFOLD ::std::vector<::ItemInstance> const& $getResultItems() const; MCAPI bool $matches(::CraftingContainer const& craftSlots, ::CraftingContext const&) const; - MCAPI int $size() const; + MCFOLD int $size() const; // NOLINTEND public: diff --git a/src/mc/world/item/crafting/BannerDuplicateRecipe.h b/src/mc/world/item/crafting/BannerDuplicateRecipe.h index 3af790cdda..be714088e2 100644 --- a/src/mc/world/item/crafting/BannerDuplicateRecipe.h +++ b/src/mc/world/item/crafting/BannerDuplicateRecipe.h @@ -86,15 +86,15 @@ class BannerDuplicateRecipe : public ::MultiRecipe { // NOLINTBEGIN MCAPI ::std::vector<::ItemInstance> const& $assemble(::CraftingContainer& craftSlots, ::CraftingContext&) const; - MCAPI int $getCraftingSize() const; + MCFOLD int $getCraftingSize() const; - MCAPI ::RecipeIngredient const& $getIngredient(int, int) const; + MCFOLD ::RecipeIngredient const& $getIngredient(int, int) const; - MCAPI ::std::vector<::ItemInstance> const& $getResultItems() const; + MCFOLD ::std::vector<::ItemInstance> const& $getResultItems() const; MCAPI bool $matches(::CraftingContainer const& craftSlots, ::CraftingContext const&) const; - MCAPI int $size() const; + MCFOLD int $size() const; // NOLINTEND public: diff --git a/src/mc/world/item/crafting/BookCloningRecipe.h b/src/mc/world/item/crafting/BookCloningRecipe.h index fc52db9ff6..bdc45ebbd6 100644 --- a/src/mc/world/item/crafting/BookCloningRecipe.h +++ b/src/mc/world/item/crafting/BookCloningRecipe.h @@ -88,13 +88,13 @@ class BookCloningRecipe : public ::MultiRecipe { MCAPI ::std::vector<::ItemInstance> const& $assemble(::CraftingContainer& craftSlots, ::CraftingContext&) const; - MCAPI ::std::vector<::ItemInstance> const& $getResultItems() const; + MCFOLD ::std::vector<::ItemInstance> const& $getResultItems() const; - MCAPI int $getCraftingSize() const; + MCFOLD int $getCraftingSize() const; - MCAPI ::RecipeIngredient const& $getIngredient(int x, int y) const; + MCFOLD ::RecipeIngredient const& $getIngredient(int x, int y) const; - MCAPI int $size() const; + MCFOLD int $size() const; // NOLINTEND public: diff --git a/src/mc/world/item/crafting/DecoratedPotRecipe.h b/src/mc/world/item/crafting/DecoratedPotRecipe.h index b7715c0277..35f175bad3 100644 --- a/src/mc/world/item/crafting/DecoratedPotRecipe.h +++ b/src/mc/world/item/crafting/DecoratedPotRecipe.h @@ -84,13 +84,13 @@ class DecoratedPotRecipe : public ::MultiRecipe { MCAPI ::std::vector<::ItemInstance> const& $assemble(::CraftingContainer& craftSlots, ::CraftingContext&) const; - MCAPI ::std::vector<::ItemInstance> const& $getResultItems() const; + MCFOLD ::std::vector<::ItemInstance> const& $getResultItems() const; - MCAPI int $getCraftingSize() const; + MCFOLD int $getCraftingSize() const; - MCAPI ::RecipeIngredient const& $getIngredient(int, int) const; + MCFOLD ::RecipeIngredient const& $getIngredient(int, int) const; - MCAPI int $size() const; + MCFOLD int $size() const; // NOLINTEND public: diff --git a/src/mc/world/item/crafting/ExternalRecipeStore.h b/src/mc/world/item/crafting/ExternalRecipeStore.h index b2f6812939..e1f001bbf6 100644 --- a/src/mc/world/item/crafting/ExternalRecipeStore.h +++ b/src/mc/world/item/crafting/ExternalRecipeStore.h @@ -26,6 +26,6 @@ class ExternalRecipeStore { // NOLINTBEGIN MCAPI void registerBlockReduction(::ItemStack const& block, ::std::vector<::ItemStack> const& elements); - MCAPI void setBlockReducer(::BlockReducer* reducer); + MCFOLD void setBlockReducer(::BlockReducer* reducer); // NOLINTEND }; diff --git a/src/mc/world/item/crafting/FireworksRecipe.h b/src/mc/world/item/crafting/FireworksRecipe.h index f9ed1e94d0..7c2fd3f15e 100644 --- a/src/mc/world/item/crafting/FireworksRecipe.h +++ b/src/mc/world/item/crafting/FireworksRecipe.h @@ -82,19 +82,19 @@ class FireworksRecipe : public ::MultiRecipe { public: // virtual function thunks // NOLINTBEGIN - MCAPI ::std::vector<::ItemInstance> const& $assemble(::CraftingContainer&, ::CraftingContext&) const; + MCFOLD ::std::vector<::ItemInstance> const& $assemble(::CraftingContainer&, ::CraftingContext&) const; - MCAPI int $getCraftingSize() const; + MCFOLD int $getCraftingSize() const; - MCAPI ::RecipeIngredient const& $getIngredient(int, int) const; + MCFOLD ::RecipeIngredient const& $getIngredient(int, int) const; - MCAPI ::std::vector<::ItemInstance> const& $getResultItems() const; + MCFOLD ::std::vector<::ItemInstance> const& $getResultItems() const; - MCAPI bool $isShapeless() const; + MCFOLD bool $isShapeless() const; MCAPI bool $matches(::CraftingContainer const& craftSlots, ::CraftingContext const&) const; - MCAPI int $size() const; + MCFOLD int $size() const; // NOLINTEND public: diff --git a/src/mc/world/item/crafting/MapCloningRecipe.h b/src/mc/world/item/crafting/MapCloningRecipe.h index 3bb94691ef..4f0fd973e5 100644 --- a/src/mc/world/item/crafting/MapCloningRecipe.h +++ b/src/mc/world/item/crafting/MapCloningRecipe.h @@ -86,13 +86,13 @@ class MapCloningRecipe : public ::MultiRecipe { MCAPI ::std::vector<::ItemInstance> const& $assemble(::CraftingContainer& craftSlots, ::CraftingContext&) const; - MCAPI ::std::vector<::ItemInstance> const& $getResultItems() const; + MCFOLD ::std::vector<::ItemInstance> const& $getResultItems() const; - MCAPI int $getCraftingSize() const; + MCFOLD int $getCraftingSize() const; - MCAPI int $size() const; + MCFOLD int $size() const; - MCAPI ::RecipeIngredient const& $getIngredient(int x, int y) const; + MCFOLD ::RecipeIngredient const& $getIngredient(int x, int y) const; // NOLINTEND public: diff --git a/src/mc/world/item/crafting/MapExtendingRecipe.h b/src/mc/world/item/crafting/MapExtendingRecipe.h index 7dc3f85a60..f60bb89081 100644 --- a/src/mc/world/item/crafting/MapExtendingRecipe.h +++ b/src/mc/world/item/crafting/MapExtendingRecipe.h @@ -88,13 +88,13 @@ class MapExtendingRecipe : public ::MultiRecipe { MCAPI ::std::vector<::ItemInstance> const& $assemble(::CraftingContainer& craftSlots, ::CraftingContext& craftingContext) const; - MCAPI ::std::vector<::ItemInstance> const& $getResultItems() const; + MCFOLD ::std::vector<::ItemInstance> const& $getResultItems() const; - MCAPI int $getCraftingSize() const; + MCFOLD int $getCraftingSize() const; - MCAPI ::RecipeIngredient const& $getIngredient(int x, int y) const; + MCFOLD ::RecipeIngredient const& $getIngredient(int x, int y) const; - MCAPI int $size() const; + MCFOLD int $size() const; // NOLINTEND public: diff --git a/src/mc/world/item/crafting/MapLockingRecipe.h b/src/mc/world/item/crafting/MapLockingRecipe.h index a93d56dadb..783fd31d31 100644 --- a/src/mc/world/item/crafting/MapLockingRecipe.h +++ b/src/mc/world/item/crafting/MapLockingRecipe.h @@ -87,13 +87,13 @@ class MapLockingRecipe : public ::MultiRecipe { MCAPI ::std::vector<::ItemInstance> const& $assemble(::CraftingContainer& craftSlots, ::CraftingContext& craftingContext) const; - MCAPI ::std::vector<::ItemInstance> const& $getResultItems() const; + MCFOLD ::std::vector<::ItemInstance> const& $getResultItems() const; - MCAPI int $getCraftingSize() const; + MCFOLD int $getCraftingSize() const; - MCAPI ::RecipeIngredient const& $getIngredient(int x, int y) const; + MCFOLD ::RecipeIngredient const& $getIngredient(int x, int y) const; - MCAPI int $size() const; + MCFOLD int $size() const; // NOLINTEND public: diff --git a/src/mc/world/item/crafting/MapUpgradingRecipe.h b/src/mc/world/item/crafting/MapUpgradingRecipe.h index b9464b0569..c109835b76 100644 --- a/src/mc/world/item/crafting/MapUpgradingRecipe.h +++ b/src/mc/world/item/crafting/MapUpgradingRecipe.h @@ -87,13 +87,13 @@ class MapUpgradingRecipe : public ::MultiRecipe { MCAPI ::std::vector<::ItemInstance> const& $assemble(::CraftingContainer& craftSlots, ::CraftingContext&) const; - MCAPI ::std::vector<::ItemInstance> const& $getResultItems() const; + MCFOLD ::std::vector<::ItemInstance> const& $getResultItems() const; - MCAPI int $getCraftingSize() const; + MCFOLD int $getCraftingSize() const; - MCAPI ::RecipeIngredient const& $getIngredient(int x, int y) const; + MCFOLD ::RecipeIngredient const& $getIngredient(int x, int y) const; - MCAPI int $size() const; + MCFOLD int $size() const; // NOLINTEND public: diff --git a/src/mc/world/item/crafting/MultiRecipe.h b/src/mc/world/item/crafting/MultiRecipe.h index b863fe1307..92c6051b91 100644 --- a/src/mc/world/item/crafting/MultiRecipe.h +++ b/src/mc/world/item/crafting/MultiRecipe.h @@ -48,11 +48,11 @@ class MultiRecipe : public ::Recipe { public: // virtual function thunks // NOLINTBEGIN - MCAPI bool $isMultiRecipe() const; + MCFOLD bool $isMultiRecipe() const; - MCAPI bool $isShapeless() const; + MCFOLD bool $isShapeless() const; - MCAPI bool $hasDataDrivenResult() const; + MCFOLD bool $hasDataDrivenResult() const; // NOLINTEND public: diff --git a/src/mc/world/item/crafting/Recipe.h b/src/mc/world/item/crafting/Recipe.h index 6daad4b2dd..06405c2fb2 100644 --- a/src/mc/world/item/crafting/Recipe.h +++ b/src/mc/world/item/crafting/Recipe.h @@ -169,17 +169,17 @@ class Recipe { MCAPI ::Recipe::ConstructionContext getConstructionContext() const; - MCAPI int getHeight() const; + MCFOLD int getHeight() const; MCAPI ::RecipeNetId const& getNetId() const; - MCAPI ::std::string const& getRecipeId() const; + MCFOLD ::std::string const& getRecipeId() const; - MCAPI ::HashedString const& getTag() const; + MCFOLD ::HashedString const& getTag() const; - MCAPI ::RecipeUnlockingRequirement const& getUnlockingRequirement() const; + MCFOLD ::RecipeUnlockingRequirement const& getUnlockingRequirement() const; - MCAPI int getWidth() const; + MCFOLD int getWidth() const; MCAPI void setNetId(::RecipeNetId const& recipeNetId); // NOLINTEND @@ -205,13 +205,13 @@ class Recipe { public: // virtual function thunks // NOLINTBEGIN - MCAPI ::mce::UUID const& $getId() const; + MCFOLD ::mce::UUID const& $getId() const; - MCAPI ::std::vector<::ItemInstance> const& $getResultItems() const; + MCFOLD ::std::vector<::ItemInstance> const& $getResultItems() const; - MCAPI bool $isMultiRecipe() const; + MCFOLD bool $isMultiRecipe() const; - MCAPI bool $hasDataDrivenResult() const; + MCFOLD bool $hasDataDrivenResult() const; MCAPI bool $itemValidForRecipe(::ItemDescriptor const& recipeItem, ::ItemStack const& item) const; diff --git a/src/mc/world/item/crafting/RecipeIngredient.h b/src/mc/world/item/crafting/RecipeIngredient.h index fb6a86d315..056a10b060 100644 --- a/src/mc/world/item/crafting/RecipeIngredient.h +++ b/src/mc/world/item/crafting/RecipeIngredient.h @@ -72,7 +72,7 @@ class RecipeIngredient : public ::ItemDescriptorCount { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND public: diff --git a/src/mc/world/item/crafting/Recipes.h b/src/mc/world/item/crafting/Recipes.h index 18ccabbf10..6927219d79 100644 --- a/src/mc/world/item/crafting/Recipes.h +++ b/src/mc/world/item/crafting/Recipes.h @@ -59,7 +59,7 @@ class Recipes { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; @@ -107,7 +107,7 @@ class Recipes { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; @@ -317,7 +317,7 @@ class Recipes { MCAPI ::Recipe* getRecipeFor(::ItemInstance const& result, ::HashedString const& tag) const; - MCAPI ::std::map<::HashedString, ::std::map<::std::string, ::std::shared_ptr<::Recipe>>> const& + MCFOLD ::std::map<::HashedString, ::std::map<::std::string, ::std::shared_ptr<::Recipe>>> const& getRecipesAllTags() const; MCAPI void init( diff --git a/src/mc/world/item/crafting/RepairItemRecipe.h b/src/mc/world/item/crafting/RepairItemRecipe.h index 52bedd6a71..0132d454f5 100644 --- a/src/mc/world/item/crafting/RepairItemRecipe.h +++ b/src/mc/world/item/crafting/RepairItemRecipe.h @@ -82,15 +82,15 @@ class RepairItemRecipe : public ::MultiRecipe { // NOLINTBEGIN MCAPI ::std::vector<::ItemInstance> const& $assemble(::CraftingContainer& craftSlots, ::CraftingContext&) const; - MCAPI int $getCraftingSize() const; + MCFOLD int $getCraftingSize() const; - MCAPI ::RecipeIngredient const& $getIngredient(int x, int y) const; + MCFOLD ::RecipeIngredient const& $getIngredient(int x, int y) const; - MCAPI ::std::vector<::ItemInstance> const& $getResultItems() const; + MCFOLD ::std::vector<::ItemInstance> const& $getResultItems() const; MCAPI bool $matches(::CraftingContainer const& craftSlots, ::CraftingContext const&) const; - MCAPI int $size() const; + MCFOLD int $size() const; // NOLINTEND public: diff --git a/src/mc/world/item/crafting/ShapedRecipe.h b/src/mc/world/item/crafting/ShapedRecipe.h index c60c1ee946..14b07a82b1 100644 --- a/src/mc/world/item/crafting/ShapedRecipe.h +++ b/src/mc/world/item/crafting/ShapedRecipe.h @@ -56,7 +56,7 @@ class ShapedRecipe : public ::Recipe { // NOLINTBEGIN MCAPI ShapedRecipe(::Recipe::ConstructionContext&& context, int width, int height, bool assumeSymmetry); - MCAPI bool assumeSymmetry() const; + MCFOLD bool assumeSymmetry() const; MCAPI uint64 getIngredientsHashOffset(int simulatedWidth, int simulatedHeight, int offsetX, int offsetY) const; @@ -78,13 +78,13 @@ class ShapedRecipe : public ::Recipe { public: // virtual function thunks // NOLINTBEGIN - MCAPI ::std::vector<::ItemInstance> const& $assemble(::CraftingContainer&, ::CraftingContext&) const; + MCFOLD ::std::vector<::ItemInstance> const& $assemble(::CraftingContainer&, ::CraftingContext&) const; MCAPI int $getCraftingSize() const; - MCAPI ::RecipeIngredient const& $getIngredient(int x, int y) const; + MCFOLD ::RecipeIngredient const& $getIngredient(int x, int y) const; - MCAPI bool $isShapeless() const; + MCFOLD bool $isShapeless() const; MCAPI bool $matches(::CraftingContainer const& craftSlots, ::CraftingContext const&) const; diff --git a/src/mc/world/item/crafting/ShapelessRecipe.h b/src/mc/world/item/crafting/ShapelessRecipe.h index 839ce80167..9921201661 100644 --- a/src/mc/world/item/crafting/ShapelessRecipe.h +++ b/src/mc/world/item/crafting/ShapelessRecipe.h @@ -60,13 +60,13 @@ class ShapelessRecipe : public ::Recipe { public: // virtual function thunks // NOLINTBEGIN - MCAPI ::std::vector<::ItemInstance> const& $assemble(::CraftingContainer&, ::CraftingContext&) const; + MCFOLD ::std::vector<::ItemInstance> const& $assemble(::CraftingContainer&, ::CraftingContext&) const; MCAPI int $getCraftingSize() const; - MCAPI ::RecipeIngredient const& $getIngredient(int x, int y) const; + MCFOLD ::RecipeIngredient const& $getIngredient(int x, int y) const; - MCAPI bool $isShapeless() const; + MCFOLD bool $isShapeless() const; MCAPI bool $matches(::CraftingContainer const& craftSlots, ::CraftingContext const&) const; diff --git a/src/mc/world/item/crafting/ShieldRecipe.h b/src/mc/world/item/crafting/ShieldRecipe.h index 063b9026fe..b6abd5f3be 100644 --- a/src/mc/world/item/crafting/ShieldRecipe.h +++ b/src/mc/world/item/crafting/ShieldRecipe.h @@ -86,17 +86,17 @@ class ShieldRecipe : public ::MultiRecipe { // NOLINTBEGIN MCAPI ::std::vector<::ItemInstance> const& $assemble(::CraftingContainer& craftSlots, ::CraftingContext&) const; - MCAPI int $getCraftingSize() const; + MCFOLD int $getCraftingSize() const; - MCAPI ::RecipeIngredient const& $getIngredient(int, int) const; + MCFOLD ::RecipeIngredient const& $getIngredient(int, int) const; - MCAPI ::std::vector<::ItemInstance> const& $getResultItems() const; + MCFOLD ::std::vector<::ItemInstance> const& $getResultItems() const; - MCAPI bool $isShapeless() const; + MCFOLD bool $isShapeless() const; MCAPI bool $matches(::CraftingContainer const& craftSlots, ::CraftingContext const& craftingContext) const; - MCAPI int $size() const; + MCFOLD int $size() const; // NOLINTEND public: diff --git a/src/mc/world/item/crafting/SmithingTransformRecipe.h b/src/mc/world/item/crafting/SmithingTransformRecipe.h index 3495aa3c09..2a5035dcd6 100644 --- a/src/mc/world/item/crafting/SmithingTransformRecipe.h +++ b/src/mc/world/item/crafting/SmithingTransformRecipe.h @@ -55,13 +55,13 @@ class SmithingTransformRecipe : public ::ShapelessRecipe { ::HashedString const& tag ); - MCAPI ::RecipeIngredient const& getAdditionIngredient() const; + MCFOLD ::RecipeIngredient const& getAdditionIngredient() const; - MCAPI ::RecipeIngredient const& getBaseIngredient() const; + MCFOLD ::RecipeIngredient const& getBaseIngredient() const; MCAPI ::ItemInstance const& getResult() const; - MCAPI ::RecipeIngredient const& getTemplateIngredient() const; + MCFOLD ::RecipeIngredient const& getTemplateIngredient() const; // NOLINTEND public: diff --git a/src/mc/world/item/crafting/SmithingTrimRecipe.h b/src/mc/world/item/crafting/SmithingTrimRecipe.h index 10214cc668..c430ab7a8d 100644 --- a/src/mc/world/item/crafting/SmithingTrimRecipe.h +++ b/src/mc/world/item/crafting/SmithingTrimRecipe.h @@ -57,11 +57,11 @@ class SmithingTrimRecipe : public ::ShapelessRecipe { ::HashedString const& tag ); - MCAPI ::RecipeIngredient const& getAdditionIngredient() const; + MCFOLD ::RecipeIngredient const& getAdditionIngredient() const; - MCAPI ::RecipeIngredient const& getBaseIngredient() const; + MCFOLD ::RecipeIngredient const& getBaseIngredient() const; - MCAPI ::RecipeIngredient const& getTemplateIngredient() const; + MCFOLD ::RecipeIngredient const& getTemplateIngredient() const; // NOLINTEND public: @@ -96,7 +96,7 @@ class SmithingTrimRecipe : public ::ShapelessRecipe { MCAPI ::std::vector<::ItemInstance> const& $assemble(::CraftingContainer& craftingContainer, ::CraftingContext& craftingContext) const; - MCAPI bool $hasDataDrivenResult() const; + MCFOLD bool $hasDataDrivenResult() const; // NOLINTEND public: diff --git a/src/mc/world/item/enchanting/BreachEnchant.h b/src/mc/world/item/enchanting/BreachEnchant.h index a4685d7cba..624603a390 100644 --- a/src/mc/world/item/enchanting/BreachEnchant.h +++ b/src/mc/world/item/enchanting/BreachEnchant.h @@ -42,13 +42,13 @@ class BreachEnchant : public ::Enchant { public: // virtual function thunks // NOLINTBEGIN - MCAPI int $getMinCost(int level) const; + MCFOLD int $getMinCost(int level) const; - MCAPI int $getMaxCost(int level) const; + MCFOLD int $getMaxCost(int level) const; - MCAPI int $getMaxLevel() const; + MCFOLD int $getMaxLevel() const; - MCAPI float $getDamageBonus(int, ::Actor const&, ::Actor const&) const; + MCFOLD float $getDamageBonus(int, ::Actor const&, ::Actor const&) const; MCAPI float $getAfterBreachArmorFraction(int level, float const armorFraction) const; // NOLINTEND diff --git a/src/mc/world/item/enchanting/CurseBindingEnchant.h b/src/mc/world/item/enchanting/CurseBindingEnchant.h index 4b40c249dd..168ea85b6d 100644 --- a/src/mc/world/item/enchanting/CurseBindingEnchant.h +++ b/src/mc/world/item/enchanting/CurseBindingEnchant.h @@ -31,11 +31,11 @@ class CurseBindingEnchant : public ::Enchant { public: // virtual function thunks // NOLINTBEGIN - MCAPI int $getMinCost(int level) const; + MCFOLD int $getMinCost(int level) const; - MCAPI int $getMaxCost(int level) const; + MCFOLD int $getMaxCost(int level) const; - MCAPI bool $isTreasureOnly() const; + MCFOLD bool $isTreasureOnly() const; // NOLINTEND public: diff --git a/src/mc/world/item/enchanting/CurseVanishingEnchant.h b/src/mc/world/item/enchanting/CurseVanishingEnchant.h index 4dd7d6a662..5b7290a8ee 100644 --- a/src/mc/world/item/enchanting/CurseVanishingEnchant.h +++ b/src/mc/world/item/enchanting/CurseVanishingEnchant.h @@ -31,11 +31,11 @@ class CurseVanishingEnchant : public ::Enchant { public: // virtual function thunks // NOLINTBEGIN - MCAPI int $getMinCost(int level) const; + MCFOLD int $getMinCost(int level) const; - MCAPI int $getMaxCost(int level) const; + MCFOLD int $getMaxCost(int level) const; - MCAPI bool $isTreasureOnly() const; + MCFOLD bool $isTreasureOnly() const; // NOLINTEND public: diff --git a/src/mc/world/item/enchanting/DensityEnchant.h b/src/mc/world/item/enchanting/DensityEnchant.h index 6071bed24c..e8fe1b4ec1 100644 --- a/src/mc/world/item/enchanting/DensityEnchant.h +++ b/src/mc/world/item/enchanting/DensityEnchant.h @@ -43,7 +43,7 @@ class DensityEnchant : public ::Enchant { MCAPI int $getMaxCost(int level) const; - MCAPI int $getMaxLevel() const; + MCFOLD int $getMaxLevel() const; MCAPI float $getDamageBonus(int level, ::Actor const&, ::Actor const& attacker) const; // NOLINTEND diff --git a/src/mc/world/item/enchanting/DiggingEnchant.h b/src/mc/world/item/enchanting/DiggingEnchant.h index 0afd90ad28..4e5a59daf5 100644 --- a/src/mc/world/item/enchanting/DiggingEnchant.h +++ b/src/mc/world/item/enchanting/DiggingEnchant.h @@ -42,7 +42,7 @@ class DiggingEnchant : public ::Enchant { // NOLINTBEGIN MCAPI int $getMinCost(int level) const; - MCAPI int $getMaxCost(int level) const; + MCFOLD int $getMaxCost(int level) const; MCAPI int $getMaxLevel() const; diff --git a/src/mc/world/item/enchanting/Enchant.h b/src/mc/world/item/enchanting/Enchant.h index f505444e0f..58e38d3d70 100644 --- a/src/mc/world/item/enchanting/Enchant.h +++ b/src/mc/world/item/enchanting/Enchant.h @@ -210,17 +210,17 @@ class Enchant { MCAPI ::std::string getDescriptionId() const; - MCAPI ::Enchant::Type getEnchantType() const; + MCFOLD ::Enchant::Type getEnchantType() const; - MCAPI ::Enchant::Frequency getFrequency() const; + MCFOLD ::Enchant::Frequency getFrequency() const; - MCAPI ::HashedString const& getScriptStringId() const; + MCFOLD ::HashedString const& getScriptStringId() const; - MCAPI ::HashedString const& getStringId() const; + MCFOLD ::HashedString const& getStringId() const; - MCAPI bool isAvailable() const; + MCFOLD bool isAvailable() const; - MCAPI bool isDisabled() const; + MCFOLD bool isDisabled() const; // NOLINTEND public: @@ -285,31 +285,31 @@ class Enchant { MCAPI int $getMaxCost(int level) const; - MCAPI int $getMinLevel() const; + MCFOLD int $getMinLevel() const; - MCAPI int $getMaxLevel() const; + MCFOLD int $getMaxLevel() const; - MCAPI int $getDamageProtection(int level, ::ActorDamageSource const& source) const; + MCFOLD int $getDamageProtection(int level, ::ActorDamageSource const& source) const; - MCAPI float $getAfterBreachArmorFraction(int, float) const; + MCFOLD float $getAfterBreachArmorFraction(int, float) const; - MCAPI float $getDamageBonus(int, ::Actor const&, ::Actor const&) const; + MCFOLD float $getDamageBonus(int, ::Actor const&, ::Actor const&) const; - MCAPI void $doPostAttack(::Actor& attacker, ::Actor& victim, int level) const; + MCFOLD void $doPostAttack(::Actor& attacker, ::Actor& victim, int level) const; - MCAPI void $doPostItemHurtActor(::Actor&, ::Actor&, int) const; + MCFOLD void $doPostItemHurtActor(::Actor&, ::Actor&, int) const; - MCAPI void $doPostHurt(::ItemInstance& item, ::Actor& victim, ::Actor& attacker, int level) const; + MCFOLD void $doPostHurt(::ItemInstance& item, ::Actor& victim, ::Actor& attacker, int level) const; - MCAPI bool $isMeleeDamageEnchant() const; + MCFOLD bool $isMeleeDamageEnchant() const; - MCAPI bool $isProtectionEnchant() const; + MCFOLD bool $isProtectionEnchant() const; - MCAPI bool $isTreasureOnly() const; + MCFOLD bool $isTreasureOnly() const; - MCAPI bool $isDiscoverable() const; + MCFOLD bool $isDiscoverable() const; - MCAPI bool $_isValidEnchantmentTypeForCategory(::Enchant::Type type) const; + MCFOLD bool $_isValidEnchantmentTypeForCategory(::Enchant::Type type) const; // NOLINTEND public: diff --git a/src/mc/world/item/enchanting/EnchantUtils.h b/src/mc/world/item/enchanting/EnchantUtils.h index 67da953039..7a29d00726 100644 --- a/src/mc/world/item/enchanting/EnchantUtils.h +++ b/src/mc/world/item/enchanting/EnchantUtils.h @@ -105,7 +105,7 @@ class EnchantUtils { MCAPI static bool isCurse(::Enchant::Type enchantType); - MCAPI static void randomlyEnchant(::ItemStack& out, int cost, int valueBuff, bool treasure); + MCFOLD static void randomlyEnchant(::ItemStack& out, int cost, int valueBuff, bool treasure); MCAPI static void randomlyEnchant(::ItemInstance&, int, int, bool); diff --git a/src/mc/world/item/enchanting/EnchantmentInstance.h b/src/mc/world/item/enchanting/EnchantmentInstance.h index 726b6b24b6..b4d535e95f 100644 --- a/src/mc/world/item/enchanting/EnchantmentInstance.h +++ b/src/mc/world/item/enchanting/EnchantmentInstance.h @@ -9,15 +9,10 @@ class EnchantmentInstance { public: // member variables // NOLINTBEGIN - ::ll::UntypedStorage<1, 1> mUnk6af375; - ::ll::UntypedStorage<4, 4> mUnk254140; + ::ll::TypedStorage<1, 1, ::Enchant::Type> mEnchantType; + ::ll::TypedStorage<4, 4, int> mLevel; // NOLINTEND -public: - // prevent constructor by default - EnchantmentInstance& operator=(EnchantmentInstance const&); - EnchantmentInstance(EnchantmentInstance const&); - public: // member functions // NOLINTBEGIN @@ -25,13 +20,13 @@ class EnchantmentInstance { MCAPI EnchantmentInstance(::Enchant::Type enchantType, int level); - MCAPI int getEnchantLevel() const; + MCFOLD int getEnchantLevel() const; - MCAPI ::Enchant::Type getEnchantType() const; + MCFOLD ::Enchant::Type getEnchantType() const; - MCAPI void setEnchantLevel(int level); + MCFOLD void setEnchantLevel(int level); - MCAPI void setEnchantType(::Enchant::Type enchantType); + MCFOLD void setEnchantType(::Enchant::Type enchantType); // NOLINTEND public: diff --git a/src/mc/world/item/enchanting/FishingEnchant.h b/src/mc/world/item/enchanting/FishingEnchant.h index 7d3e586b48..fec8e78d38 100644 --- a/src/mc/world/item/enchanting/FishingEnchant.h +++ b/src/mc/world/item/enchanting/FishingEnchant.h @@ -31,11 +31,11 @@ class FishingEnchant : public ::Enchant { public: // virtual function thunks // NOLINTBEGIN - MCAPI int $getMinCost(int level) const; + MCFOLD int $getMinCost(int level) const; - MCAPI int $getMaxCost(int level) const; + MCFOLD int $getMaxCost(int level) const; - MCAPI int $getMaxLevel() const; + MCFOLD int $getMaxLevel() const; // NOLINTEND public: diff --git a/src/mc/world/item/enchanting/FrostWalkerEnchant.h b/src/mc/world/item/enchanting/FrostWalkerEnchant.h index 621affda61..74469dea4c 100644 --- a/src/mc/world/item/enchanting/FrostWalkerEnchant.h +++ b/src/mc/world/item/enchanting/FrostWalkerEnchant.h @@ -34,13 +34,13 @@ class FrostWalkerEnchant : public ::Enchant { public: // virtual function thunks // NOLINTBEGIN - MCAPI int $getMinCost(int level) const; + MCFOLD int $getMinCost(int level) const; - MCAPI int $getMaxCost(int level) const; + MCFOLD int $getMaxCost(int level) const; - MCAPI int $getMaxLevel() const; + MCFOLD int $getMaxLevel() const; - MCAPI bool $isTreasureOnly() const; + MCFOLD bool $isTreasureOnly() const; // NOLINTEND public: diff --git a/src/mc/world/item/enchanting/ItemEnchants.h b/src/mc/world/item/enchanting/ItemEnchants.h index 0f28dee18a..21cfe28bdb 100644 --- a/src/mc/world/item/enchanting/ItemEnchants.h +++ b/src/mc/world/item/enchanting/ItemEnchants.h @@ -18,16 +18,10 @@ class ItemEnchants { public: // member variables // NOLINTBEGIN - ::ll::UntypedStorage<4, 4> mUnka53d8f; - ::ll::UntypedStorage<8, 72> mUnk5ecf08; + ::ll::TypedStorage<4, 4, int> mSlot; + ::ll::TypedStorage<8, 72, ::std::vector<::EnchantmentInstance>[3]> mItemEnchants; // NOLINTEND -public: - // prevent constructor by default - ItemEnchants& operator=(ItemEnchants const&); - ItemEnchants(ItemEnchants const&); - ItemEnchants(); - public: // member functions // NOLINTBEGIN @@ -53,7 +47,7 @@ class ItemEnchants { MCAPI ::std::vector<::EnchantmentInstance> const& getEnchants(int activationType) const; - MCAPI int getSlot() const; + MCFOLD int getSlot() const; MCAPI int getTotalValue(bool bookModifier) const; diff --git a/src/mc/world/item/enchanting/LootEnchant.h b/src/mc/world/item/enchanting/LootEnchant.h index d5e832ab5c..726beef338 100644 --- a/src/mc/world/item/enchanting/LootEnchant.h +++ b/src/mc/world/item/enchanting/LootEnchant.h @@ -31,11 +31,11 @@ class LootEnchant : public ::Enchant { public: // virtual function thunks // NOLINTBEGIN - MCAPI int $getMinCost(int level) const; + MCFOLD int $getMinCost(int level) const; - MCAPI int $getMaxCost(int level) const; + MCFOLD int $getMaxCost(int level) const; - MCAPI int $getMaxLevel() const; + MCFOLD int $getMaxLevel() const; // NOLINTEND public: diff --git a/src/mc/world/item/enchanting/MeleeWeaponEnchant.h b/src/mc/world/item/enchanting/MeleeWeaponEnchant.h index 41e1896005..6334bf1aed 100644 --- a/src/mc/world/item/enchanting/MeleeWeaponEnchant.h +++ b/src/mc/world/item/enchanting/MeleeWeaponEnchant.h @@ -64,7 +64,7 @@ class MeleeWeaponEnchant : public ::Enchant { MCAPI void $doPostAttack(::Actor& attacker, ::Actor& victim, int level) const; - MCAPI bool $isMeleeDamageEnchant() const; + MCFOLD bool $isMeleeDamageEnchant() const; MCAPI bool $_isValidEnchantmentTypeForCategory(::Enchant::Type type) const; // NOLINTEND diff --git a/src/mc/world/item/enchanting/MendingEnchant.h b/src/mc/world/item/enchanting/MendingEnchant.h index 23da6ecaa7..f5491301ce 100644 --- a/src/mc/world/item/enchanting/MendingEnchant.h +++ b/src/mc/world/item/enchanting/MendingEnchant.h @@ -38,9 +38,9 @@ class MendingEnchant : public ::Enchant { MCAPI int $getMaxCost(int level) const; - MCAPI int $getMaxLevel() const; + MCFOLD int $getMaxLevel() const; - MCAPI bool $isTreasureOnly() const; + MCFOLD bool $isTreasureOnly() const; // NOLINTEND public: diff --git a/src/mc/world/item/enchanting/ProtectionEnchant.h b/src/mc/world/item/enchanting/ProtectionEnchant.h index 5d344c613c..4a65bcd004 100644 --- a/src/mc/world/item/enchanting/ProtectionEnchant.h +++ b/src/mc/world/item/enchanting/ProtectionEnchant.h @@ -68,7 +68,7 @@ class ProtectionEnchant : public ::Enchant { MCAPI void $doPostHurt(::ItemInstance& item, ::Actor& victim, ::Actor& attacker, int level) const; - MCAPI bool $isProtectionEnchant() const; + MCFOLD bool $isProtectionEnchant() const; MCAPI bool $_isValidEnchantmentTypeForCategory(::Enchant::Type type) const; // NOLINTEND diff --git a/src/mc/world/item/enchanting/SoulSpeedEnchant.h b/src/mc/world/item/enchanting/SoulSpeedEnchant.h index 36eabdc72a..601e1cf135 100644 --- a/src/mc/world/item/enchanting/SoulSpeedEnchant.h +++ b/src/mc/world/item/enchanting/SoulSpeedEnchant.h @@ -59,15 +59,15 @@ class SoulSpeedEnchant : public ::Enchant { public: // virtual function thunks // NOLINTBEGIN - MCAPI int $getMinCost(int level) const; + MCFOLD int $getMinCost(int level) const; - MCAPI int $getMaxCost(int level) const; + MCFOLD int $getMaxCost(int level) const; - MCAPI int $getMaxLevel() const; + MCFOLD int $getMaxLevel() const; - MCAPI bool $isTreasureOnly() const; + MCFOLD bool $isTreasureOnly() const; - MCAPI bool $isDiscoverable() const; + MCFOLD bool $isDiscoverable() const; // NOLINTEND public: diff --git a/src/mc/world/item/enchanting/SwiftSneakEnchant.h b/src/mc/world/item/enchanting/SwiftSneakEnchant.h index 7d1a956e40..e1b1e1bc09 100644 --- a/src/mc/world/item/enchanting/SwiftSneakEnchant.h +++ b/src/mc/world/item/enchanting/SwiftSneakEnchant.h @@ -48,15 +48,15 @@ class SwiftSneakEnchant : public ::Enchant { public: // virtual function thunks // NOLINTBEGIN - MCAPI int $getMinCost(int level) const; + MCFOLD int $getMinCost(int level) const; - MCAPI int $getMaxCost(int level) const; + MCFOLD int $getMaxCost(int level) const; - MCAPI int $getMaxLevel() const; + MCFOLD int $getMaxLevel() const; - MCAPI bool $isTreasureOnly() const; + MCFOLD bool $isTreasureOnly() const; - MCAPI bool $isDiscoverable() const; + MCFOLD bool $isDiscoverable() const; // NOLINTEND public: diff --git a/src/mc/world/item/enchanting/TridentChannelingEnchant.h b/src/mc/world/item/enchanting/TridentChannelingEnchant.h index 79152a44e0..0881928031 100644 --- a/src/mc/world/item/enchanting/TridentChannelingEnchant.h +++ b/src/mc/world/item/enchanting/TridentChannelingEnchant.h @@ -34,11 +34,11 @@ class TridentChannelingEnchant : public ::Enchant { public: // virtual function thunks // NOLINTBEGIN - MCAPI int $getMinCost(int level) const; + MCFOLD int $getMinCost(int level) const; - MCAPI int $getMaxCost(int level) const; + MCFOLD int $getMaxCost(int level) const; - MCAPI int $getMaxLevel() const; + MCFOLD int $getMaxLevel() const; MCAPI bool $isCompatibleWith(::Enchant::Type type) const; // NOLINTEND diff --git a/src/mc/world/item/enchanting/TridentImpalerEnchant.h b/src/mc/world/item/enchanting/TridentImpalerEnchant.h index 58ebc91430..25308b9fcc 100644 --- a/src/mc/world/item/enchanting/TridentImpalerEnchant.h +++ b/src/mc/world/item/enchanting/TridentImpalerEnchant.h @@ -43,7 +43,7 @@ class TridentImpalerEnchant : public ::Enchant { MCAPI int $getMaxCost(int level) const; - MCAPI int $getMaxLevel() const; + MCFOLD int $getMaxLevel() const; MCAPI float $getDamageBonus(int level, ::Actor const& target, ::Actor const&) const; // NOLINTEND diff --git a/src/mc/world/item/enchanting/TridentLoyaltyEnchant.h b/src/mc/world/item/enchanting/TridentLoyaltyEnchant.h index 011d6ae58e..9d019dce48 100644 --- a/src/mc/world/item/enchanting/TridentLoyaltyEnchant.h +++ b/src/mc/world/item/enchanting/TridentLoyaltyEnchant.h @@ -33,9 +33,9 @@ class TridentLoyaltyEnchant : public ::Enchant { // NOLINTBEGIN MCAPI int $getMinCost(int level) const; - MCAPI int $getMaxCost(int level) const; + MCFOLD int $getMaxCost(int level) const; - MCAPI int $getMaxLevel() const; + MCFOLD int $getMaxLevel() const; // NOLINTEND public: diff --git a/src/mc/world/item/enchanting/TridentRiptideEnchant.h b/src/mc/world/item/enchanting/TridentRiptideEnchant.h index 1fd53f51fe..0f31cbb656 100644 --- a/src/mc/world/item/enchanting/TridentRiptideEnchant.h +++ b/src/mc/world/item/enchanting/TridentRiptideEnchant.h @@ -36,9 +36,9 @@ class TridentRiptideEnchant : public ::Enchant { // NOLINTBEGIN MCAPI int $getMinCost(int level) const; - MCAPI int $getMaxCost(int level) const; + MCFOLD int $getMaxCost(int level) const; - MCAPI int $getMaxLevel() const; + MCFOLD int $getMaxLevel() const; MCAPI bool $isCompatibleWith(::Enchant::Type type) const; // NOLINTEND diff --git a/src/mc/world/item/enchanting/WindBurstEnchant.h b/src/mc/world/item/enchanting/WindBurstEnchant.h index 4a74c49727..447cc60d7e 100644 --- a/src/mc/world/item/enchanting/WindBurstEnchant.h +++ b/src/mc/world/item/enchanting/WindBurstEnchant.h @@ -48,19 +48,19 @@ class WindBurstEnchant : public ::Enchant { public: // virtual function thunks // NOLINTBEGIN - MCAPI int $getMinCost(int level) const; + MCFOLD int $getMinCost(int level) const; - MCAPI int $getMaxCost(int level) const; + MCFOLD int $getMaxCost(int level) const; - MCAPI int $getMaxLevel() const; + MCFOLD int $getMaxLevel() const; - MCAPI float $getDamageBonus(int, ::Actor const&, ::Actor const&) const; + MCFOLD float $getDamageBonus(int, ::Actor const&, ::Actor const&) const; MCAPI void $doPostItemHurtActor(::Actor& attacker, ::Actor&, int enchantLevel) const; - MCAPI bool $isTreasureOnly() const; + MCFOLD bool $isTreasureOnly() const; - MCAPI bool $isDiscoverable() const; + MCFOLD bool $isDiscoverable() const; // NOLINTEND public: diff --git a/src/mc/world/item/registry/ArmorTrim.h b/src/mc/world/item/registry/ArmorTrim.h index 84105c1b99..2339d62dad 100644 --- a/src/mc/world/item/registry/ArmorTrim.h +++ b/src/mc/world/item/registry/ArmorTrim.h @@ -32,9 +32,9 @@ class ArmorTrim { MCAPI ArmorTrim(::HashedString patternId, ::HashedString materialId); - MCAPI ::HashedString const& getMaterialId() const; + MCFOLD ::HashedString const& getMaterialId() const; - MCAPI ::HashedString const& getPatternId() const; + MCFOLD ::HashedString const& getPatternId() const; MCAPI ~ArmorTrim(); // NOLINTEND @@ -80,6 +80,6 @@ class ArmorTrim { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/world/item/registry/CreativeGroupInfo.h b/src/mc/world/item/registry/CreativeGroupInfo.h index 3d7fa31da7..a887a5549e 100644 --- a/src/mc/world/item/registry/CreativeGroupInfo.h +++ b/src/mc/world/item/registry/CreativeGroupInfo.h @@ -4,29 +4,28 @@ // auto generated inclusion list #include "mc/deps/core/utility/EnableNonOwnerReferences.h" +#include "mc/world/item/CreativeItemCategory.h" // auto generated forward declare list // clang-format off class CreativeItemEntry; +class CreativeItemRegistry; +class HashedString; +class ItemInstance; // clang-format on class CreativeGroupInfo : public ::Bedrock::EnableNonOwnerReferences { public: // member variables // NOLINTBEGIN - ::ll::UntypedStorage<4, 4> mUnkc18152; - ::ll::UntypedStorage<8, 8> mUnk4aef2e; - ::ll::UntypedStorage<8, 48> mUnke9d11f; - ::ll::UntypedStorage<8, 128> mUnk3ab2ad; - ::ll::UntypedStorage<4, 4> mUnkff6fda; - ::ll::UntypedStorage<8, 24> mUnk75bb33; + ::ll::TypedStorage<4, 4, ::CreativeItemCategory> mCategory; + ::ll::TypedStorage<8, 8, ::CreativeItemRegistry*> mRegistry; + ::ll::TypedStorage<8, 48, ::HashedString> mName; + ::ll::TypedStorage<8, 128, ::ItemInstance> mIcon; + ::ll::TypedStorage<4, 4, uint> mIndex; + ::ll::TypedStorage<8, 24, ::std::vector> mItemIndexes; // NOLINTEND -public: - // prevent constructor by default - CreativeGroupInfo& operator=(CreativeGroupInfo const&); - CreativeGroupInfo(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/item/registry/CreativeItemEntry.h b/src/mc/world/item/registry/CreativeItemEntry.h index 3b601471d0..bcc714bd6f 100644 --- a/src/mc/world/item/registry/CreativeItemEntry.h +++ b/src/mc/world/item/registry/CreativeItemEntry.h @@ -9,6 +9,7 @@ // auto generated forward declare list // clang-format off class CreativeGroupInfo; +class CreativeItemRegistry; class ItemInstance; struct CreativeItemNetIdTag; // clang-format on @@ -17,19 +18,13 @@ class CreativeItemEntry : public ::Bedrock::EnableNonOwnerReferences { public: // member variables // NOLINTBEGIN - ::ll::UntypedStorage<8, 8> mUnka74dfe; - ::ll::UntypedStorage<4, 4> mUnkb16da3; - ::ll::UntypedStorage<4, 4> mUnk812d45; - ::ll::UntypedStorage<8, 128> mUnka8ccac; - ::ll::UntypedStorage<4, 4> mUnkde9665; + ::ll::TypedStorage<8, 8, ::CreativeItemRegistry*> mRegistry; + ::ll::TypedStorage<4, 4, uint> mGroupIndex; + ::ll::TypedStorage<4, 4, ::CreativeItemNetId> mCreativeNetId; + ::ll::TypedStorage<8, 128, ::ItemInstance> mItemInstance; + ::ll::TypedStorage<4, 4, uint> mIndex; // NOLINTEND -public: - // prevent constructor by default - CreativeItemEntry& operator=(CreativeItemEntry const&); - CreativeItemEntry(CreativeItemEntry const&); - CreativeItemEntry(); - public: // virtual functions // NOLINTBEGIN @@ -40,13 +35,13 @@ class CreativeItemEntry : public ::Bedrock::EnableNonOwnerReferences { public: // member functions // NOLINTBEGIN - MCAPI ::CreativeItemNetId const& getCreativeNetId() const; + MCFOLD ::CreativeItemNetId const& getCreativeNetId() const; MCAPI ::CreativeGroupInfo* getGroup() const; - MCAPI uint getIndex() const; + MCFOLD uint getIndex() const; - MCAPI ::ItemInstance const& getItemInstance() const; + MCFOLD ::ItemInstance const& getItemInstance() const; // NOLINTEND public: diff --git a/src/mc/world/item/registry/CreativeItemGroupCategory.h b/src/mc/world/item/registry/CreativeItemGroupCategory.h index 63cb79bcfb..36f35feed4 100644 --- a/src/mc/world/item/registry/CreativeItemGroupCategory.h +++ b/src/mc/world/item/registry/CreativeItemGroupCategory.h @@ -9,6 +9,7 @@ // auto generated forward declare list // clang-format off class CreativeGroupInfo; +class CreativeItemRegistry; class HashedString; class ItemInstance; // clang-format on @@ -17,19 +18,13 @@ class CreativeItemGroupCategory : public ::Bedrock::EnableNonOwnerReferences { public: // member variables // NOLINTBEGIN - ::ll::UntypedStorage<8, 32> mUnkde0cd1; - ::ll::UntypedStorage<4, 4> mUnkb1fac7; - ::ll::UntypedStorage<8, 8> mUnk90b560; - ::ll::UntypedStorage<8, 64> mUnk249d7d; - ::ll::UntypedStorage<8, 24> mUnk1e1068; + ::ll::TypedStorage<8, 32, ::std::string> mName; + ::ll::TypedStorage<4, 4, ::CreativeItemCategory> mCategory; + ::ll::TypedStorage<8, 8, ::CreativeItemRegistry*> mRegistry; + ::ll::TypedStorage<8, 64, ::std::unordered_map<::HashedString, uint>> mNamedGroupIndex; + ::ll::TypedStorage<8, 24, ::std::vector> mGroupIndexes; // NOLINTEND -public: - // prevent constructor by default - CreativeItemGroupCategory& operator=(CreativeItemGroupCategory const&); - CreativeItemGroupCategory(CreativeItemGroupCategory const&); - CreativeItemGroupCategory(); - public: // virtual functions // NOLINTBEGIN @@ -46,7 +41,7 @@ class CreativeItemGroupCategory : public ::Bedrock::EnableNonOwnerReferences { MCAPI ::CreativeGroupInfo* getChildGroup(::HashedString const& name); - MCAPI ::CreativeItemCategory getCreativeCategory(); + MCFOLD ::CreativeItemCategory getCreativeCategory(); MCAPI ::CreativeGroupInfo* getOrAddTailAnonymousGroup(); // NOLINTEND diff --git a/src/mc/world/item/registry/CreativeItemRegistry.h b/src/mc/world/item/registry/CreativeItemRegistry.h index 835f553588..7256d159e3 100644 --- a/src/mc/world/item/registry/CreativeItemRegistry.h +++ b/src/mc/world/item/registry/CreativeItemRegistry.h @@ -21,17 +21,13 @@ class CreativeItemRegistry : public ::Bedrock::EnableNonOwnerReferences { public: // member variables // NOLINTBEGIN - ::ll::UntypedStorage<8, 24> mUnk8a11ed; - ::ll::UntypedStorage<8, 24> mUnk8f46aa; - ::ll::UntypedStorage<8, 64> mUnk675840; - ::ll::UntypedStorage<8, 64> mUnk465b32; + ::ll::TypedStorage<8, 24, ::std::vector<::CreativeItemEntry>> mCreativeItems; + ::ll::TypedStorage<8, 24, ::std::vector<::CreativeGroupInfo>> mCreativeGroups; + ::ll::TypedStorage<8, 64, ::std::unordered_map<::CreativeItemCategory, ::CreativeItemGroupCategory>> + mCreativeGroupCategories; + ::ll::TypedStorage<8, 64, ::std::unordered_map<::CreativeItemNetId, uint64>> mCreativeNetIdIndex; // NOLINTEND -public: - // prevent constructor by default - CreativeItemRegistry& operator=(CreativeItemRegistry const&); - CreativeItemRegistry(CreativeItemRegistry const&); - public: // virtual functions // NOLINTBEGIN @@ -52,7 +48,7 @@ class CreativeItemRegistry : public ::Bedrock::EnableNonOwnerReferences { MCAPI ::CreativeItemGroupCategory* getCreativeCategory(::CreativeItemCategory category); - MCAPI ::std::vector<::CreativeItemEntry> const& getCreativeItemEntries(); + MCFOLD ::std::vector<::CreativeItemEntry> const& getCreativeItemEntries(); MCAPI ::CreativeItemEntry* getItemEntry(uint index); diff --git a/src/mc/world/item/registry/ItemRegistry.h b/src/mc/world/item/registry/ItemRegistry.h index d66f54e739..4aaaf3bd61 100644 --- a/src/mc/world/item/registry/ItemRegistry.h +++ b/src/mc/world/item/registry/ItemRegistry.h @@ -5,6 +5,7 @@ // auto generated inclusion list #include "mc/common/SharedPtr.h" #include "mc/common/WeakPtr.h" +#include "mc/deps/core/utility/pub_sub/Publisher.h" // auto generated forward declare list // clang-format off @@ -23,6 +24,9 @@ class ItemRegistryRef; class ResourcePackManager; struct ItemParseContext; struct ItemRegistryComplexAlias; +struct ItemTag; +namespace Bedrock::PubSub::ThreadModel { struct MultiThreaded; } +namespace Bedrock::Threading { class Mutex; } namespace Core { class Path; } namespace cereal { struct ReflectionCtx; } // clang-format on @@ -38,6 +42,8 @@ class ItemRegistry : public ::std::enable_shared_from_this<::ItemRegistry> { // clang-format on // ItemRegistry inner types define + using ItemRegistryMap = ::std::vector<::SharedPtr<::Item>>; + struct LoadedItemAsset { public: // member variables @@ -66,6 +72,9 @@ class ItemRegistry : public ::std::enable_shared_from_this<::ItemRegistry> { // NOLINTEND }; + using CreativeItemsServerInitCallbackSignature = + void(::ItemRegistryRef, ::ActorInfoRegistry*, ::BlockDefinitionGroup*, ::CreativeItemRegistry*, bool, ::BaseGameVersion const&, ::Experiments const&); + struct ItemAlias { public: // member variables @@ -116,7 +125,7 @@ class ItemRegistry : public ::std::enable_shared_from_this<::ItemRegistry> { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; @@ -150,38 +159,38 @@ class ItemRegistry : public ::std::enable_shared_from_this<::ItemRegistry> { public: // member variables // NOLINTBEGIN - ::ll::UntypedStorage<8, 8> mUnk5b7196; - ::ll::UntypedStorage<8, 24> mUnk12efcf; - ::ll::UntypedStorage<8, 64> mUnk8c8c84; - ::ll::UntypedStorage<8, 64> mUnkdcbe8c; - ::ll::UntypedStorage<8, 64> mUnk2d62da; - ::ll::UntypedStorage<8, 64> mUnkf8b308; - ::ll::UntypedStorage<8, 64> mUnkc47a3b; - ::ll::UntypedStorage<8, 64> mUnk40fcc7; - ::ll::UntypedStorage<8, 64> mUnkbbed37; - ::ll::UntypedStorage<8, 64> mUnkdcc53e; - ::ll::UntypedStorage<8, 64> mUnk267d32; - ::ll::UntypedStorage<2, 2> mUnk55b84d; - ::ll::UntypedStorage<8, 24> mUnk18da5d; - ::ll::UntypedStorage<8, 64> mUnk2474ae; - ::ll::UntypedStorage<8, 64> mUnk658173; - ::ll::UntypedStorage<1, 1> mUnkfead93; - ::ll::UntypedStorage<1, 1> mUnkf3fce1; - ::ll::UntypedStorage<8, 64> mUnkb9764d; - ::ll::UntypedStorage<8, 8> mUnk672d95; - ::ll::UntypedStorage<8, 16> mUnke1379d; - ::ll::UntypedStorage<8, 24> mUnk1383da; - ::ll::UntypedStorage<8, 120> mUnke36140; - ::ll::UntypedStorage<1, 1> mUnke4ff6a; - ::ll::UntypedStorage<8, 16> mUnkbd3231; - ::ll::UntypedStorage<8, 8> mUnk677d0c; + ::ll::TypedStorage<8, 8, ::std::unique_ptr<::cereal::ReflectionCtx>> mCerealContext; + ::ll::TypedStorage<8, 24, ::std::vector<::SharedPtr<::Item>>> mItemRegistry; + ::ll::TypedStorage<8, 64, ::std::unordered_map>> mIdToItemMap; + ::ll::TypedStorage<8, 64, ::std::unordered_map<::HashedString, ::WeakPtr<::Item>>> mNameToItemMap; + ::ll::TypedStorage<8, 64, ::std::unordered_map<::HashedString, ::WeakPtr<::Item>>> mTileNamespaceToItemMap; + ::ll::TypedStorage<8, 64, ::std::unordered_map<::HashedString, ::WeakPtr<::Item>>> mTileItemNameToItemMap; + ::ll::TypedStorage<8, 64, ::std::unordered_map<::HashedString, ::ItemRegistry::ItemAlias>> mItemAliasLookupMap; + ::ll::TypedStorage<8, 64, ::std::unordered_map> mReverseAliasLookupMap; + ::ll::TypedStorage<8, 64, ::std::unordered_map> + mReverseFullNameAliasLookupMap; + ::ll::TypedStorage<8, 64, ::std::unordered_map<::HashedString, ::ItemRegistryComplexAlias>> mComplexAliasLookupMap; + ::ll::TypedStorage<8, 64, ::std::unordered_map> mLegacyIDToNameMap; + ::ll::TypedStorage<2, 2, short> mMaxItemID; + ::ll::TypedStorage<8, 24, ::std::vector<::HashedString>> mAttachableDefinitions; + ::ll::TypedStorage<8, 64, ::std::unordered_map<::ItemTag, ::std::unordered_set<::Item const*>>> mTagToItemsMap; + ::ll::TypedStorage<8, 64, ::std::unordered_set<::Item const*> const> mEmptyItemSet; + ::ll::TypedStorage<1, 1, bool> mServerInitializingCreativeItems; + ::ll::TypedStorage<1, 1, bool> mIsInitialized; + ::ll::TypedStorage<8, 64, ::std::function> mExtraItemInitCallback; + ::ll::TypedStorage< + 8, + 8, + ::std::unique_ptr<::Bedrock::PubSub::Publisher>> + mFinishedInitPublisher; + ::ll::TypedStorage<8, 16, ::std::shared_ptr<::std::atomic>> mCanUpdateTags; + ::ll::TypedStorage<8, 24, ::std::vector<::SharedPtr<::Item>>> mDeadItemRegistry; + ::ll::TypedStorage<8, 120, ::BaseGameVersion> mWorldBaseGameVersion; + ::ll::TypedStorage<1, 1, bool> mCheckForItemWorldCompatibility; + ::ll::TypedStorage<8, 16, ::std::shared_ptr<::Bedrock::Threading::Mutex>> mCompatibilityCheckMutex; + ::ll::TypedStorage<8, 8, ::std::unique_ptr<::CreativeItemRegistry>> mCreativeItemRegistry; // NOLINTEND -public: - // prevent constructor by default - ItemRegistry& operator=(ItemRegistry const&); - ItemRegistry(ItemRegistry const&); - public: // member functions // NOLINTBEGIN diff --git a/src/mc/world/item/registry/ItemRegistryRef.h b/src/mc/world/item/registry/ItemRegistryRef.h index 66a46a7ccc..21bb48a2a8 100644 --- a/src/mc/world/item/registry/ItemRegistryRef.h +++ b/src/mc/world/item/registry/ItemRegistryRef.h @@ -39,6 +39,9 @@ class ItemRegistryRef { // clang-format on // ItemRegistryRef inner types define + using CreativeItemsServerInitCallbackSignature = + void(::ItemRegistryRef, ::ActorInfoRegistry*, ::BlockDefinitionGroup*, ::CreativeItemRegistry*, bool, ::BaseGameVersion const&, ::Experiments const&); + class LockGuard { public: // member variables @@ -76,13 +79,9 @@ class ItemRegistryRef { public: // member variables // NOLINTBEGIN - ::ll::UntypedStorage<8, 16> mUnk9bd30e; + ::ll::TypedStorage<8, 16, ::std::weak_ptr<::ItemRegistry>> mWeakRegistry; // NOLINTEND -public: - // prevent constructor by default - ItemRegistryRef& operator=(ItemRegistryRef const&); - public: // member functions // NOLINTBEGIN @@ -212,16 +211,16 @@ class ItemRegistryRef { public: // constructor thunks // NOLINTBEGIN - MCAPI void* $ctor(); + MCFOLD void* $ctor(); - MCAPI void* $ctor(::ItemRegistryRef const&); + MCFOLD void* $ctor(::ItemRegistryRef const&); - MCAPI void* $ctor(::std::weak_ptr<::ItemRegistry> registry); + MCFOLD void* $ctor(::std::weak_ptr<::ItemRegistry> registry); // NOLINTEND public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/world/item/registry/TrimMaterialRegistry.h b/src/mc/world/item/registry/TrimMaterialRegistry.h index 7fe910f2b5..87a1cee5da 100644 --- a/src/mc/world/item/registry/TrimMaterialRegistry.h +++ b/src/mc/world/item/registry/TrimMaterialRegistry.h @@ -24,7 +24,7 @@ class TrimMaterialRegistry { public: // member functions // NOLINTBEGIN - MCAPI ::std::vector<::TrimMaterial> const& getAllEntries() const; + MCFOLD ::std::vector<::TrimMaterial> const& getAllEntries() const; MCAPI ::std::optional<::TrimMaterial> getTrimMaterialByItemName(::HashedString const& itemName) const; diff --git a/src/mc/world/item/registry/TrimPattern.h b/src/mc/world/item/registry/TrimPattern.h index a3f290f16f..f078ea3d25 100644 --- a/src/mc/world/item/registry/TrimPattern.h +++ b/src/mc/world/item/registry/TrimPattern.h @@ -25,6 +25,6 @@ struct TrimPattern { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/world/item/trading/MerchantRecipe.h b/src/mc/world/item/trading/MerchantRecipe.h index bf9e3a8e68..5c5ed6a8ec 100644 --- a/src/mc/world/item/trading/MerchantRecipe.h +++ b/src/mc/world/item/trading/MerchantRecipe.h @@ -60,21 +60,21 @@ class MerchantRecipe { MCAPI int getBaseCountB() const; - MCAPI ::ItemInstance const& getBuyAItem() const; + MCFOLD ::ItemInstance const& getBuyAItem() const; - MCAPI ::ItemInstance const& getBuyBItem() const; + MCFOLD ::ItemInstance const& getBuyBItem() const; MCAPI int getDemand() const; MCAPI int getMaxUses() const; - MCAPI ::ItemInstance const& getSellItem() const; + MCFOLD ::ItemInstance const& getSellItem() const; - MCAPI int getTier() const; + MCFOLD int getTier() const; - MCAPI uint getTraderExp() const; + MCFOLD uint getTraderExp() const; - MCAPI int getUses() const; + MCFOLD int getUses() const; MCAPI bool hasSecondaryBuyItem() const; @@ -108,9 +108,9 @@ class MerchantRecipe { MCAPI void setTraderExp(uint traderExp); - MCAPI void setUses(int uses); + MCFOLD void setUses(int uses); - MCAPI bool shouldRewardExp() const; + MCFOLD bool shouldRewardExp() const; MCAPI ~MerchantRecipe(); // NOLINTEND diff --git a/src/mc/world/item/trading/TradeTableData.h b/src/mc/world/item/trading/TradeTableData.h index 293094b8d8..8ee9d3510b 100644 --- a/src/mc/world/item/trading/TradeTableData.h +++ b/src/mc/world/item/trading/TradeTableData.h @@ -45,6 +45,6 @@ struct TradeTableData { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/world/item/trading/TradeTableDataLoader.h b/src/mc/world/item/trading/TradeTableDataLoader.h index f1cc5d46de..3611c1e02c 100644 --- a/src/mc/world/item/trading/TradeTableDataLoader.h +++ b/src/mc/world/item/trading/TradeTableDataLoader.h @@ -45,6 +45,6 @@ class TradeTableDataLoader { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/world/level/ActorDimensionTransferProxy.h b/src/mc/world/level/ActorDimensionTransferProxy.h index 17884f173d..394774a494 100644 --- a/src/mc/world/level/ActorDimensionTransferProxy.h +++ b/src/mc/world/level/ActorDimensionTransferProxy.h @@ -57,7 +57,7 @@ class ActorDimensionTransferProxy : public ::IActorDimensionTransferProxy { public: // virtual function thunks // NOLINTBEGIN - MCAPI void $transferTickingArea(::Actor& actor, ::Dimension& dimension) const; + MCFOLD void $transferTickingArea(::Actor& actor, ::Dimension& dimension) const; MCAPI void $removeActorFromLevelChunk(::Actor& actor) const; diff --git a/src/mc/world/level/ActorManager.h b/src/mc/world/level/ActorManager.h index 58dafacac9..49c6edcb30 100644 --- a/src/mc/world/level/ActorManager.h +++ b/src/mc/world/level/ActorManager.h @@ -86,7 +86,7 @@ class ActorManager : public ::IActorManagerConnector { MCAPI void forceRemoveActorFromWorld(::Actor& actor); - MCAPI ::std::vector<::OwnerPtr<::EntityContext>> const& getEntities() const; + MCFOLD ::std::vector<::OwnerPtr<::EntityContext>> const& getEntities() const; MCAPI void onChunkDiscarded(::WeakEntityRef entityRef); @@ -96,7 +96,7 @@ class ActorManager : public ::IActorManagerConnector { MCAPI ::OwnerPtr<::EntityContext> removeEntity(::WeakEntityRef entityRef); - MCAPI void setLevelIsTearingDown(); + MCFOLD void setLevelIsTearingDown(); MCAPI ::OwnerPtr<::EntityContext> takeEntity(::WeakEntityRef entityRef, ::LevelChunk& levelChunk); // NOLINTEND @@ -119,12 +119,12 @@ class ActorManager : public ::IActorManagerConnector { public: // virtual function thunks // NOLINTBEGIN - MCAPI ::Bedrock::PubSub::Connector& $getRegisterEntityAddedConnector(); + MCFOLD ::Bedrock::PubSub::Connector& $getRegisterEntityAddedConnector(); - MCAPI ::Bedrock::PubSub::Connector& + MCFOLD ::Bedrock::PubSub::Connector& $getRegisterPostReloadActorConnector(); - MCAPI ::Bedrock::PubSub::Connector& $getRegisterOnRemoveActorEntityReferenceConnector(); + MCFOLD ::Bedrock::PubSub::Connector& $getRegisterOnRemoveActorEntityReferenceConnector(); // NOLINTEND public: diff --git a/src/mc/world/level/ActorRuntimeIDManager.h b/src/mc/world/level/ActorRuntimeIDManager.h index 5ac33713d4..aa93ead810 100644 --- a/src/mc/world/level/ActorRuntimeIDManager.h +++ b/src/mc/world/level/ActorRuntimeIDManager.h @@ -48,7 +48,7 @@ class ActorRuntimeIDManager { MCAPI void _removeEntity(::EntityContext const& entity); - MCAPI ::ActorRuntimeID getNextRuntimeID(); + MCFOLD ::ActorRuntimeID getNextRuntimeID(); MCAPI ::Actor* getRuntimeActorEntity(::ActorRuntimeID actorId, bool getRemoved) const; diff --git a/src/mc/world/level/BedrockSpawner.h b/src/mc/world/level/BedrockSpawner.h index 511d706cad..d2a11ad5c8 100644 --- a/src/mc/world/level/BedrockSpawner.h +++ b/src/mc/world/level/BedrockSpawner.h @@ -202,17 +202,17 @@ class BedrockSpawner : public ::Spawner { // NOLINTBEGIN MCAPI void $initializeServerSide(::ResourcePackManager& rpm, ::IWorldRegistriesProvider& registries); - MCAPI ::SpawnSettings const& $getSpawnSettings() const; + MCFOLD ::SpawnSettings const& $getSpawnSettings() const; MCAPI void $setSpawnSettings(::SpawnSettings const& spawnSettings); - MCAPI ::ActorSpawnRuleGroup const* $getSpawnRules() const; + MCFOLD ::ActorSpawnRuleGroup const* $getSpawnRules() const; - MCAPI ::ActorSpawnRuleGroup* $getSpawnRulesMutable() const; + MCFOLD ::ActorSpawnRuleGroup* $getSpawnRulesMutable() const; - MCAPI ::SpawnGroupRegistry const* $getSpawnGroupRegistry() const; + MCFOLD ::SpawnGroupRegistry const* $getSpawnGroupRegistry() const; - MCAPI ::br::spawn::EntityTypeCache* $getEntityTypeCache() const; + MCFOLD ::br::spawn::EntityTypeCache* $getEntityTypeCache() const; MCAPI ::Mob* $spawnMob( ::BlockSource& region, diff --git a/src/mc/world/level/BiomeFilterGroup.h b/src/mc/world/level/BiomeFilterGroup.h index d8d11d0dfe..52fde1082b 100644 --- a/src/mc/world/level/BiomeFilterGroup.h +++ b/src/mc/world/level/BiomeFilterGroup.h @@ -30,7 +30,7 @@ class BiomeFilterGroup : public ::FilterGroup { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND public: diff --git a/src/mc/world/level/BlockActorLevelListener.h b/src/mc/world/level/BlockActorLevelListener.h index 711bd13c31..68b51a7620 100644 --- a/src/mc/world/level/BlockActorLevelListener.h +++ b/src/mc/world/level/BlockActorLevelListener.h @@ -48,7 +48,7 @@ class BlockActorLevelListener : public ::LevelListener { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND public: diff --git a/src/mc/world/level/BlockHashPalette.h b/src/mc/world/level/BlockHashPalette.h index 342a29e892..2536d2455e 100644 --- a/src/mc/world/level/BlockHashPalette.h +++ b/src/mc/world/level/BlockHashPalette.h @@ -64,7 +64,7 @@ class BlockHashPalette : public ::BlockPalette { public: // virtual function thunks // NOLINTBEGIN - MCAPI ::BlockPalette::PaletteType $getPaletteType(); + MCFOLD ::BlockPalette::PaletteType $getPaletteType(); MCAPI void $appendBlock(::Block const& blockState); diff --git a/src/mc/world/level/BlockPalette.h b/src/mc/world/level/BlockPalette.h index d84ad61681..2a25ea2052 100644 --- a/src/mc/world/level/BlockPalette.h +++ b/src/mc/world/level/BlockPalette.h @@ -111,7 +111,7 @@ class BlockPalette { public: // virtual function thunks // NOLINTBEGIN - MCAPI ::BlockPalette::PaletteType $getPaletteType(); + MCFOLD ::BlockPalette::PaletteType $getPaletteType(); MCAPI void $appendBlock(::Block const& blockState); diff --git a/src/mc/world/level/BlockPatternBuilder.h b/src/mc/world/level/BlockPatternBuilder.h index 109a041ffb..b38ea46f88 100644 --- a/src/mc/world/level/BlockPatternBuilder.h +++ b/src/mc/world/level/BlockPatternBuilder.h @@ -42,7 +42,7 @@ class BlockPatternBuilder { MCAPI ::BlockPatternBuilder& define(char pattern, ::std::function tester); - MCAPI bool isReadyForMatch(); + MCFOLD bool isReadyForMatch(); MCAPI ::BuildMatch match(::BlockPos const& pos); diff --git a/src/mc/world/level/BlockPosIterator.h b/src/mc/world/level/BlockPosIterator.h index eaf556346e..9bd42a31ec 100644 --- a/src/mc/world/level/BlockPosIterator.h +++ b/src/mc/world/level/BlockPosIterator.h @@ -46,9 +46,9 @@ class BlockPosIterator { MCAPI ::BlockPosIterator::FromCenter end() const; - MCAPI bool operator!=(::BlockPosIterator::FromCenter const& other) const; + MCFOLD bool operator!=(::BlockPosIterator::FromCenter const& other) const; - MCAPI ::BlockPos const& operator*(); + MCFOLD ::BlockPos const& operator*(); MCAPI ::BlockPosIterator::FromCenter& operator++(); // NOLINTEND @@ -82,9 +82,9 @@ class BlockPosIterator { MCAPI ::BlockPosIterator::ManhattanDistance end() const; - MCAPI bool operator!=(::BlockPosIterator::ManhattanDistance const& other) const; + MCFOLD bool operator!=(::BlockPosIterator::ManhattanDistance const& other) const; - MCAPI ::BlockPos const& operator*(); + MCFOLD ::BlockPos const& operator*(); MCAPI ::BlockPosIterator::ManhattanDistance& operator++(); // NOLINTEND @@ -122,7 +122,7 @@ class BlockPosIterator { MCAPI bool operator!=(::BlockPosIterator const& other) const; - MCAPI ::BlockPos const& operator*(); + MCFOLD ::BlockPos const& operator*(); MCAPI ::BlockPosIterator& operator++(); // NOLINTEND diff --git a/src/mc/world/level/BlockSource.h b/src/mc/world/level/BlockSource.h index b100f520b0..cc036a0ab0 100644 --- a/src/mc/world/level/BlockSource.h +++ b/src/mc/world/level/BlockSource.h @@ -527,7 +527,7 @@ class BlockSource : public ::IBlockSource, MCAPI void fireEntityChanged(::Actor& entity); - MCAPI ::std::vector<::AABB>& getAABBFetchResultCache(); + MCFOLD ::std::vector<::AABB>& getAABBFetchResultCache(); MCAPI short getAboveTopSolidBlock(::BlockPos const& pos, bool includeWater, bool includeLeaves, bool iteratePastInitialBlocking) @@ -551,13 +551,13 @@ class BlockSource : public ::IBlockSource, MCAPI ::BlockPos getHeightmapPos(::BlockPos const& xzPos) const; - MCAPI ::Level& getLevel() const; + MCFOLD ::Level& getLevel() const; - MCAPI ::Level const& getLevelConst() const; + MCFOLD ::Level const& getLevelConst() const; MCAPI bool getNextTickUpdateForPos(::BlockPos const& pos, ::TickingQueueType queueType, ::Tick& tick) const; - MCAPI bool getPublicSource() const; + MCFOLD bool getPublicSource() const; MCAPI ::Brightness getRawBrightness(::BlockPos const& pos, bool propagate, bool accountForNight) const; @@ -662,7 +662,7 @@ class BlockSource : public ::IBlockSource, MCAPI bool setExtraBlockSimple(::BlockPos const& pos, ::Block const& block); - MCAPI void setIsPersistentBlockSource(); + MCFOLD void setIsPersistentBlockSource(); MCAPI bool setLiquidBlock(::BlockPos const& pos, ::Block const& block, bool useExtraData, int updateFlags); @@ -692,9 +692,9 @@ class BlockSource : public ::IBlockSource, bool withUnloadedChunks ); - MCAPI static ::Block const& getEmptyBlock(); + MCFOLD static ::Block const& getEmptyBlock(); - MCAPI static bool isEmptyBlock(::Block const& block); + MCFOLD static bool isEmptyBlock(::Block const& block); MCAPI static bool isEmptyWaterBlock(::Block const& block); // NOLINTEND @@ -725,13 +725,13 @@ class BlockSource : public ::IBlockSource, // NOLINTBEGIN MCAPI ::WeakRef<::BlockSource> $getWeakRef(); - MCAPI ::Level& $getLevel(); + MCFOLD ::Level& $getLevel(); - MCAPI ::Dimension& $getDimension() const; + MCFOLD ::Dimension& $getDimension() const; - MCAPI ::Dimension& $getDimension(); + MCFOLD ::Dimension& $getDimension(); - MCAPI ::Dimension const& $getDimensionConst() const; + MCFOLD ::Dimension const& $getDimensionConst() const; MCAPI ::DimensionType $getDimensionId() const; @@ -796,7 +796,7 @@ class BlockSource : public ::IBlockSource, MCAPI bool $containsMaterial(::AABB const& box, ::MaterialType material) const; - MCAPI ::BlockActor const* $getBlockEntity(::BlockPos const& pos) const; + MCFOLD ::BlockActor const* $getBlockEntity(::BlockPos const& pos) const; MCAPI ::gsl::span<::gsl::not_null<::Actor*>> $fetchEntities(::Actor const* except, ::AABB const& bb, bool useHitbox, bool getDisplayEntities); @@ -877,11 +877,11 @@ class BlockSource : public ::IBlockSource, MCAPI bool $removeBlock(::BlockPos const& pos); - MCAPI ::ILevel& $getILevel() const; + MCFOLD ::ILevel& $getILevel() const; MCAPI ::LevelSeed64 $getLevelSeed64() const; - MCAPI ::ChunkSource& $getChunkSource(); + MCFOLD ::ChunkSource& $getChunkSource(); MCAPI bool $checkBlockPermissions( ::Actor& entity, diff --git a/src/mc/world/level/BlockSourceListener.h b/src/mc/world/level/BlockSourceListener.h index bc005f8ac7..73bfece180 100644 --- a/src/mc/world/level/BlockSourceListener.h +++ b/src/mc/world/level/BlockSourceListener.h @@ -51,25 +51,25 @@ class BlockSourceListener { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND public: // virtual function thunks // NOLINTBEGIN - MCAPI void $onSourceCreated(::BlockSource& source); + MCFOLD void $onSourceCreated(::BlockSource& source); - MCAPI void $onSourceDestroyed(::BlockSource& source); + MCFOLD void $onSourceDestroyed(::BlockSource& source); - MCAPI void $onAreaChanged(::BlockSource& source, ::BlockPos const& min, ::BlockPos const& max); + MCFOLD void $onAreaChanged(::BlockSource& source, ::BlockPos const& min, ::BlockPos const& max); MCAPI void $onBrightnessChanged(::BlockSource& source, ::BlockPos const& pos); - MCAPI void $onBlockEntityChanged(::BlockSource& source, ::BlockActor& te); + MCFOLD void $onBlockEntityChanged(::BlockSource& source, ::BlockActor& te); - MCAPI void $onEntityChanged(::BlockSource& source, ::Actor& entity); + MCFOLD void $onEntityChanged(::BlockSource& source, ::Actor& entity); - MCAPI void $onBlockEvent(::BlockSource& source, int x, int y, int z, int b0, int b1); + MCFOLD void $onBlockEvent(::BlockSource& source, int x, int y, int z, int b0, int b1); // NOLINTEND public: diff --git a/src/mc/world/level/BlockTickingQueue.h b/src/mc/world/level/BlockTickingQueue.h index 8ed470fc9d..5cd2ead322 100644 --- a/src/mc/world/level/BlockTickingQueue.h +++ b/src/mc/world/level/BlockTickingQueue.h @@ -56,7 +56,7 @@ class BlockTickingQueue { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; @@ -125,7 +125,7 @@ class BlockTickingQueue { MCAPI void save(::CompoundTag& tag) const; - MCAPI void setOwningChunk(::LevelChunk* owningChunk); + MCFOLD void setOwningChunk(::LevelChunk* owningChunk); MCAPI void tickAllPendingTicks(::BlockSource& region, uint64 maximumTicksAllowed); diff --git a/src/mc/world/level/BlockVolumeTarget.h b/src/mc/world/level/BlockVolumeTarget.h index b254507ebf..09a47521be 100644 --- a/src/mc/world/level/BlockVolumeTarget.h +++ b/src/mc/world/level/BlockVolumeTarget.h @@ -156,11 +156,11 @@ class BlockVolumeTarget : public ::IBlockWorldGenAPI { public: // virtual function thunks // NOLINTBEGIN - MCAPI ::Block const& $getBlock(::BlockPos const& pos) const; + MCFOLD ::Block const& $getBlock(::BlockPos const& pos) const; - MCAPI ::Block const& $getBlockNoBoundsCheck(::BlockPos const& pos) const; + MCFOLD ::Block const& $getBlockNoBoundsCheck(::BlockPos const& pos) const; - MCAPI ::Block const& $getExtraBlock(::BlockPos const&) const; + MCFOLD ::Block const& $getExtraBlock(::BlockPos const&) const; MCAPI ::Block const* $tryGetLiquidBlock(::BlockPos const& pos) const; @@ -171,23 +171,23 @@ class BlockVolumeTarget : public ::IBlockWorldGenAPI { MCAPI bool $setBlock(::BlockPos const& pos, ::Block const& newBlock, int); - MCAPI bool $setBlockSimple(::BlockPos const& pos, ::Block const& block); + MCFOLD bool $setBlockSimple(::BlockPos const& pos, ::Block const& block); - MCAPI bool $apply() const; + MCFOLD bool $apply() const; - MCAPI bool $placeStructure(::BlockPos const&, ::StructureTemplate&, ::StructureSettings&); + MCFOLD bool $placeStructure(::BlockPos const&, ::StructureTemplate&, ::StructureSettings&); - MCAPI bool $mayPlace(::BlockPos const&, ::Block const&) const; + MCFOLD bool $mayPlace(::BlockPos const&, ::Block const&) const; - MCAPI bool $canSurvive(::BlockPos const&, ::Block const&) const; + MCFOLD bool $canSurvive(::BlockPos const&, ::Block const&) const; - MCAPI bool $canBeBuiltOver(::BlockPos const&, ::Block const&) const; + MCFOLD bool $canBeBuiltOver(::BlockPos const&, ::Block const&) const; MCAPI short $getMaxHeight() const; - MCAPI short $getMinHeight() const; + MCFOLD short $getMinHeight() const; - MCAPI bool $shimPlaceForOldFeatures(::Feature const&, ::BlockPos const&, ::Random&) const; + MCFOLD bool $shimPlaceForOldFeatures(::Feature const&, ::BlockPos const&, ::Random&) const; MCAPI short $getHeightmap(int x, int z); @@ -201,9 +201,9 @@ class BlockVolumeTarget : public ::IBlockWorldGenAPI { MCAPI ::LevelData const& $getLevelData() const; - MCAPI ::WorldGenContext const& $getContext(); + MCFOLD ::WorldGenContext const& $getContext(); - MCAPI void $disableBlockSimple(); + MCFOLD void $disableBlockSimple(); // NOLINTEND public: diff --git a/src/mc/world/level/BossEventSubscriptionManager.h b/src/mc/world/level/BossEventSubscriptionManager.h index 5c1cfec71b..b910b9f144 100644 --- a/src/mc/world/level/BossEventSubscriptionManager.h +++ b/src/mc/world/level/BossEventSubscriptionManager.h @@ -42,7 +42,7 @@ class BossEventSubscriptionManager : public ::Bedrock::EnableNonOwnerReferences, public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND public: diff --git a/src/mc/world/level/CachedChunkBlockSource.h b/src/mc/world/level/CachedChunkBlockSource.h index c664801604..1be6b292a6 100644 --- a/src/mc/world/level/CachedChunkBlockSource.h +++ b/src/mc/world/level/CachedChunkBlockSource.h @@ -37,7 +37,7 @@ class CachedChunkBlockSource { MCAPI ::Block const& getBlock(::BlockPos const& position); - MCAPI ::BlockSource& getBlockSource(); + MCFOLD ::BlockSource& getBlockSource(); MCAPI ::Block const& getLiquidBlock(::BlockPos const& position); diff --git a/src/mc/world/level/ClassroomModeListener.h b/src/mc/world/level/ClassroomModeListener.h index 6101768652..9a3aa02b0e 100644 --- a/src/mc/world/level/ClassroomModeListener.h +++ b/src/mc/world/level/ClassroomModeListener.h @@ -75,11 +75,11 @@ class ClassroomModeListener : public ::LevelListener { public: // virtual function thunks // NOLINTBEGIN - MCAPI void $onEntityAdded(::Actor& entity); + MCFOLD void $onEntityAdded(::Actor& entity); - MCAPI void $onEntityRemoved(::Actor& entity); + MCFOLD void $onEntityRemoved(::Actor& entity); - MCAPI void $onBlockChanged( + MCFOLD void $onBlockChanged( ::BlockSource& source, ::BlockPos const& pos, uint layer, @@ -91,11 +91,11 @@ class ClassroomModeListener : public ::LevelListener { ::Actor* blockChangeSource ); - MCAPI void $onAreaChanged(::BlockSource& source, ::BlockPos const& min, ::BlockPos const& max); + MCFOLD void $onAreaChanged(::BlockSource& source, ::BlockPos const& min, ::BlockPos const& max); - MCAPI void $onChunkLoaded(::ChunkSource& source, ::LevelChunk& lc); + MCFOLD void $onChunkLoaded(::ChunkSource& source, ::LevelChunk& lc); - MCAPI void $onChunkUnloaded(::LevelChunk& lc); + MCFOLD void $onChunkUnloaded(::LevelChunk& lc); // NOLINTEND public: diff --git a/src/mc/world/level/ClientActorManagerProxy.h b/src/mc/world/level/ClientActorManagerProxy.h index c7beff1e92..15c75b94c5 100644 --- a/src/mc/world/level/ClientActorManagerProxy.h +++ b/src/mc/world/level/ClientActorManagerProxy.h @@ -73,9 +73,9 @@ class ClientActorManagerProxy : public ::ActorManagerProxy { MCAPI void $addActor(::Actor& actor); - MCAPI void $removeActorInLevelChunk(::Actor const&); + MCFOLD void $removeActorInLevelChunk(::Actor const&); - MCAPI void $deleteActorFromWorldInLevelChunk(::Actor const&); + MCFOLD void $deleteActorFromWorldInLevelChunk(::Actor const&); // NOLINTEND public: diff --git a/src/mc/world/level/ClientEventCoordinatorManager.h b/src/mc/world/level/ClientEventCoordinatorManager.h index 163a086aed..4052a681f2 100644 --- a/src/mc/world/level/ClientEventCoordinatorManager.h +++ b/src/mc/world/level/ClientEventCoordinatorManager.h @@ -64,11 +64,11 @@ class ClientEventCoordinatorManager : public ::EventCoordinatorManager { public: // virtual function thunks // NOLINTBEGIN - MCAPI ::Bedrock::NonOwnerPointer<::PlayerEventCoordinator> $getRemotePlayerEventCoordinator(); + MCFOLD ::Bedrock::NonOwnerPointer<::PlayerEventCoordinator> $getRemotePlayerEventCoordinator(); - MCAPI ::Bedrock::NonOwnerPointer<::ClientPlayerEventCoordinator> $getClientPlayerEventCoordinator(); + MCFOLD ::Bedrock::NonOwnerPointer<::ClientPlayerEventCoordinator> $getClientPlayerEventCoordinator(); - MCAPI ::Bedrock::NotNullNonOwnerPtr<::LevelEventCoordinator> $getLevelEventCoordinator(); + MCFOLD ::Bedrock::NotNullNonOwnerPtr<::LevelEventCoordinator> $getLevelEventCoordinator(); // NOLINTEND public: diff --git a/src/mc/world/level/ClipParameters.h b/src/mc/world/level/ClipParameters.h index 3a0faaf393..63244911ac 100644 --- a/src/mc/world/level/ClipParameters.h +++ b/src/mc/world/level/ClipParameters.h @@ -58,6 +58,6 @@ struct ClipParameters { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/world/level/CommandManager.h b/src/mc/world/level/CommandManager.h index 3d8c876925..28a9e2137f 100644 --- a/src/mc/world/level/CommandManager.h +++ b/src/mc/world/level/CommandManager.h @@ -35,11 +35,11 @@ class CommandManager { // NOLINTBEGIN MCAPI explicit CommandManager(::MinecraftCommands& commands); - MCAPI ::MinecraftCommands& getCommands(); + MCFOLD ::MinecraftCommands& getCommands(); - MCAPI ::FunctionManager& getFunctionManager(); + MCFOLD ::FunctionManager& getFunctionManager(); - MCAPI void initialize(::std::unique_ptr<::FunctionManager> functionManager); + MCFOLD void initialize(::std::unique_ptr<::FunctionManager> functionManager); MCAPI void loadFunctionManager(::ResourcePackManager& resourcePackManager); @@ -60,12 +60,12 @@ class CommandManager { public: // constructor thunks // NOLINTBEGIN - MCAPI void* $ctor(::MinecraftCommands& commands); + MCFOLD void* $ctor(::MinecraftCommands& commands); // NOLINTEND public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/world/level/DimensionConversionData.h b/src/mc/world/level/DimensionConversionData.h index 48ea5a5af7..62c8d50344 100644 --- a/src/mc/world/level/DimensionConversionData.h +++ b/src/mc/world/level/DimensionConversionData.h @@ -18,8 +18,8 @@ class DimensionConversionData { public: // member functions // NOLINTBEGIN - MCAPI int getNetherScale() const; + MCFOLD int getNetherScale() const; - MCAPI ::Vec3 const& getOverworldSpawnPoint() const; + MCFOLD ::Vec3 const& getOverworldSpawnPoint() const; // NOLINTEND }; diff --git a/src/mc/world/level/DimensionFactory.h b/src/mc/world/level/DimensionFactory.h index 67cd70bec8..90623db3bf 100644 --- a/src/mc/world/level/DimensionFactory.h +++ b/src/mc/world/level/DimensionFactory.h @@ -48,7 +48,7 @@ class DimensionFactory : public ::IDimensionFactory { ::br::worldgen::StructureSetRegistry const& structureSetRegistry ); - MCAPI ::OwnerPtrFactory<::Dimension, ::ILevel&, ::Scheduler&>& getDimensionOwnerPtrFactory(); + MCFOLD ::OwnerPtrFactory<::Dimension, ::ILevel&, ::Scheduler&>& getDimensionOwnerPtrFactory(); // NOLINTEND public: diff --git a/src/mc/world/level/DimensionManager.h b/src/mc/world/level/DimensionManager.h index d5e025d77b..63806c890d 100644 --- a/src/mc/world/level/DimensionManager.h +++ b/src/mc/world/level/DimensionManager.h @@ -53,7 +53,7 @@ class DimensionManager : public ::IDimensionManagerConnector { ::std::optional<::DimensionDefinitionGroup> dimensionDefinitions ); - MCAPI void forEachDimension(::std::function callback); + MCFOLD void forEachDimension(::std::function callback); MCAPI void forEachDimension(::std::function) const; @@ -62,13 +62,13 @@ class DimensionManager : public ::IDimensionManagerConnector { MCAPI ::std::optional<::DimensionDefinitionGroup::DimensionDefinition> getDimensionDefinition(::std::string const& dimensionName) const; - MCAPI ::std::optional<::DimensionDefinitionGroup> const& getDimensionDefinitionGroup() const; + MCFOLD ::std::optional<::DimensionDefinitionGroup> const& getDimensionDefinitionGroup() const; MCAPI ::WeakRef<::Dimension> getOrCreateDimension(::DimensionType dimensionType); MCAPI ::WeakRef<::Dimension> getRandomDimension(::Random& random); - MCAPI bool hasDimensions() const; + MCFOLD bool hasDimensions() const; MCAPI void setDimensionDefinitionGroup(::std::optional<::DimensionDefinitionGroup> dimensionDefinitions); @@ -93,7 +93,7 @@ class DimensionManager : public ::IDimensionManagerConnector { public: // virtual function thunks // NOLINTBEGIN - MCAPI ::Bedrock::PubSub::Connector& $getOnNewDimensionCreatedConnector(); + MCFOLD ::Bedrock::PubSub::Connector& $getOnNewDimensionCreatedConnector(); // NOLINTEND public: diff --git a/src/mc/world/level/EducationLocalLevelSettings.h b/src/mc/world/level/EducationLocalLevelSettings.h index 88cb78f011..e05ba11eab 100644 --- a/src/mc/world/level/EducationLocalLevelSettings.h +++ b/src/mc/world/level/EducationLocalLevelSettings.h @@ -12,7 +12,7 @@ struct EducationLocalLevelSettings { public: // member functions // NOLINTBEGIN - MCAPI ::EducationLocalLevelSettings& operator=(::EducationLocalLevelSettings const&); + MCFOLD ::EducationLocalLevelSettings& operator=(::EducationLocalLevelSettings const&); MCAPI ~EducationLocalLevelSettings(); // NOLINTEND @@ -20,6 +20,6 @@ struct EducationLocalLevelSettings { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/world/level/EducationSettingsManager.h b/src/mc/world/level/EducationSettingsManager.h index 2a5b55d8a8..bedc6c4523 100644 --- a/src/mc/world/level/EducationSettingsManager.h +++ b/src/mc/world/level/EducationSettingsManager.h @@ -23,7 +23,7 @@ class EducationSettingsManager { public: // member functions // NOLINTBEGIN - MCAPI ::std::optional<::EducationLevelSettings> const& getEducationLevelSettings() const; + MCFOLD ::std::optional<::EducationLevelSettings> const& getEducationLevelSettings() const; MCAPI void setEducationLevelSettings(::EducationLevelSettings settings); // NOLINTEND diff --git a/src/mc/world/level/EntitySystemsManager.h b/src/mc/world/level/EntitySystemsManager.h index 34ab095078..2e1567b065 100644 --- a/src/mc/world/level/EntitySystemsManager.h +++ b/src/mc/world/level/EntitySystemsManager.h @@ -40,7 +40,7 @@ class EntitySystemsManager { ::gsl::not_null<::StackRefResult<::PauseManager>> const& pauseManager ); - MCAPI ::EntitySystems& getEntitySystems(); + MCFOLD ::EntitySystems& getEntitySystems(); MCAPI void tickEntitySystems(); // NOLINTEND diff --git a/src/mc/world/level/EventCoordinatorManager.h b/src/mc/world/level/EventCoordinatorManager.h index 582b7cd3c5..5bbbeb5145 100644 --- a/src/mc/world/level/EventCoordinatorManager.h +++ b/src/mc/world/level/EventCoordinatorManager.h @@ -68,7 +68,7 @@ class EventCoordinatorManager { // NOLINTBEGIN MCAPI EventCoordinatorManager(); - MCAPI ::Bedrock::NotNullNonOwnerPtr<::ActorEventCoordinator> getActorEventCoordinator(); + MCFOLD ::Bedrock::NotNullNonOwnerPtr<::ActorEventCoordinator> getActorEventCoordinator(); MCAPI ::Bedrock::NotNullNonOwnerPtr<::BlockEventCoordinator> getBlockEventCoordinator(); @@ -101,15 +101,15 @@ class EventCoordinatorManager { public: // virtual function thunks // NOLINTBEGIN - MCAPI ::Bedrock::NonOwnerPointer<::PlayerEventCoordinator> $getRemotePlayerEventCoordinator(); + MCFOLD ::Bedrock::NonOwnerPointer<::PlayerEventCoordinator> $getRemotePlayerEventCoordinator(); - MCAPI ::Bedrock::NonOwnerPointer<::ClientPlayerEventCoordinator> $getClientPlayerEventCoordinator(); + MCFOLD ::Bedrock::NonOwnerPointer<::ClientPlayerEventCoordinator> $getClientPlayerEventCoordinator(); - MCAPI ::Bedrock::NonOwnerPointer<::ServerPlayerEventCoordinator> $getServerPlayerEventCoordinator(); + MCFOLD ::Bedrock::NonOwnerPointer<::ServerPlayerEventCoordinator> $getServerPlayerEventCoordinator(); - MCAPI ::Bedrock::NonOwnerPointer<::ServerLevelEventCoordinator> $getServerLevelEventCoordinator(); + MCFOLD ::Bedrock::NonOwnerPointer<::ServerLevelEventCoordinator> $getServerLevelEventCoordinator(); - MCAPI ::Bedrock::NonOwnerPointer<::ServerNetworkEventCoordinator> $getServerNetworkEventCoordinator(); + MCFOLD ::Bedrock::NonOwnerPointer<::ServerNetworkEventCoordinator> $getServerNetworkEventCoordinator(); // NOLINTEND public: diff --git a/src/mc/world/level/Explosion.h b/src/mc/world/level/Explosion.h index 6bcc1e821e..23b3f61224 100644 --- a/src/mc/world/level/Explosion.h +++ b/src/mc/world/level/Explosion.h @@ -62,9 +62,9 @@ class Explosion { MCAPI void setExplosionSound(::SharedTypes::Legacy::LevelSoundEvent soundExplosionType); - MCAPI void setFire(bool val); + MCFOLD void setFire(bool val); - MCAPI void setIgnoreBlockResistance(bool shouldIgnore); + MCFOLD void setIgnoreBlockResistance(bool shouldIgnore); MCAPI void setKnockbackScaling(float scaling); @@ -92,6 +92,6 @@ class Explosion { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/world/level/ExternalLinkSettings.h b/src/mc/world/level/ExternalLinkSettings.h index fb68a2d958..551e260d96 100644 --- a/src/mc/world/level/ExternalLinkSettings.h +++ b/src/mc/world/level/ExternalLinkSettings.h @@ -19,6 +19,6 @@ struct ExternalLinkSettings { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/world/level/FileArchiver.h b/src/mc/world/level/FileArchiver.h index 77e2f5397d..662dbe951c 100644 --- a/src/mc/world/level/FileArchiver.h +++ b/src/mc/world/level/FileArchiver.h @@ -82,7 +82,7 @@ class FileArchiver : public ::Bedrock::EnableNonOwnerReferences { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; @@ -278,7 +278,7 @@ class FileArchiver : public ::Bedrock::EnableNonOwnerReferences { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/world/level/GameDataSaveTimer.h b/src/mc/world/level/GameDataSaveTimer.h index 85c512648a..09239ebc67 100644 --- a/src/mc/world/level/GameDataSaveTimer.h +++ b/src/mc/world/level/GameDataSaveTimer.h @@ -35,21 +35,21 @@ class GameDataSaveTimer { MCAPI bool isTimeForStorageCheck(::std::chrono::steady_clock::time_point currentTime) const; - MCAPI void onAppSuspend(); + MCFOLD void onAppSuspend(); - MCAPI void onStartLeaveGame(); + MCFOLD void onStartLeaveGame(); MCAPI void onUpdateAfterStorageDeferred(::std::chrono::steady_clock::time_point currentTime); MCAPI ::std::shared_ptr requestTimedStorageDeferment(); - MCAPI void setNextGameDataSaveTime(::std::chrono::steady_clock::time_point nextGameDataSaveTime); + MCFOLD void setNextGameDataSaveTime(::std::chrono::steady_clock::time_point nextGameDataSaveTime); - MCAPI void setNextStorageCheckTime(::std::chrono::steady_clock::time_point nextStorageCheckTime); + MCFOLD void setNextStorageCheckTime(::std::chrono::steady_clock::time_point nextStorageCheckTime); MCAPI void setWasStorageSavePreviouslyDeferred(bool wasStorageSavePreviouslyDeferred); - MCAPI bool wasStorageSavePreviouslyDeferred() const; + MCFOLD bool wasStorageSavePreviouslyDeferred() const; MCAPI ~GameDataSaveTimer(); // NOLINTEND diff --git a/src/mc/world/level/GameplayUserManager.h b/src/mc/world/level/GameplayUserManager.h index 33f94cee9e..5f7565ba47 100644 --- a/src/mc/world/level/GameplayUserManager.h +++ b/src/mc/world/level/GameplayUserManager.h @@ -103,11 +103,11 @@ class GameplayUserManager : public ::IGameplayUserManagerConnector { MCAPI uint64 getActiveGameplayUserCount() const; - MCAPI ::std::vector<::WeakEntityRef> const& getActiveGameplayUsers() const; + MCFOLD ::std::vector<::WeakEntityRef> const& getActiveGameplayUsers() const; MCAPI uint64 getActivePlayerCount() const; - MCAPI ::std::vector<::OwnerPtr<::EntityContext>> const& getGameplayUserEntities() const; + MCFOLD ::std::vector<::OwnerPtr<::EntityContext>> const& getGameplayUserEntities() const; MCAPI uint64 getGameplayUserEntityCount() const; @@ -143,13 +143,13 @@ class GameplayUserManager : public ::IGameplayUserManagerConnector { public: // virtual function thunks // NOLINTBEGIN - MCAPI ::Bedrock::PubSub::Connector& $getGameplayUserAddedConnector(); + MCFOLD ::Bedrock::PubSub::Connector& $getGameplayUserAddedConnector(); MCAPI ::Bedrock::PubSub::Connector& $getGameplayUserResumedConnector(); - MCAPI ::Bedrock::PubSub::Connector& $getGameplayUserSuspendedConnector(); + MCFOLD ::Bedrock::PubSub::Connector& $getGameplayUserSuspendedConnector(); - MCAPI ::Bedrock::PubSub::Connector& $getPlayerRenamedConnector(); + MCFOLD ::Bedrock::PubSub::Connector& $getPlayerRenamedConnector(); MCAPI ::Bedrock::PubSub::Connector& $getGameplayUserRemovedConnector(); diff --git a/src/mc/world/level/GameplayUserManagerProxy.h b/src/mc/world/level/GameplayUserManagerProxy.h index d411c0e045..0b5565c83f 100644 --- a/src/mc/world/level/GameplayUserManagerProxy.h +++ b/src/mc/world/level/GameplayUserManagerProxy.h @@ -34,9 +34,9 @@ class GameplayUserManagerProxy { public: // virtual function thunks // NOLINTBEGIN - MCAPI ::std::optional<::std::string> $validatePlayerName(::std::string const&, ::GameplayUserManager const&) const; + MCFOLD ::std::optional<::std::string> $validatePlayerName(::std::string const&, ::GameplayUserManager const&) const; - MCAPI bool $shouldGeneratePlayerIndex() const; + MCFOLD bool $shouldGeneratePlayerIndex() const; MCAPI void $reloadActor(::Actor& actor) const; // NOLINTEND diff --git a/src/mc/world/level/IBlockWorldGenAPI.h b/src/mc/world/level/IBlockWorldGenAPI.h index 6b63037b40..daefe0a0d8 100644 --- a/src/mc/world/level/IBlockWorldGenAPI.h +++ b/src/mc/world/level/IBlockWorldGenAPI.h @@ -118,8 +118,8 @@ class IBlockWorldGenAPI { public: // virtual function thunks // NOLINTBEGIN - MCAPI bool $canGetChunk() const; + MCFOLD bool $canGetChunk() const; - MCAPI ::LevelChunk* $getChunk(::ChunkPos const& pos); + MCFOLD ::LevelChunk* $getChunk(::ChunkPos const& pos); // NOLINTEND }; diff --git a/src/mc/world/level/ILevel.h b/src/mc/world/level/ILevel.h index dd52515936..82d73f08c4 100644 --- a/src/mc/world/level/ILevel.h +++ b/src/mc/world/level/ILevel.h @@ -1410,11 +1410,11 @@ class ILevel : public ::Bedrock::EnableNonOwnerReferences { public: // virtual function thunks // NOLINTBEGIN - MCAPI ::TradeTables* $getTradeTables(); + MCFOLD ::TradeTables* $getTradeTables(); - MCAPI ::Level* $asLevel(); + MCFOLD ::Level* $asLevel(); - MCAPI ::MultiPlayerLevel* $asMultiPlayerLevel(); + MCFOLD ::MultiPlayerLevel* $asMultiPlayerLevel(); // NOLINTEND public: diff --git a/src/mc/world/level/ILevelSoundManagerConnector.h b/src/mc/world/level/ILevelSoundManagerConnector.h index ff84bfc85d..14c30e28e2 100644 --- a/src/mc/world/level/ILevelSoundManagerConnector.h +++ b/src/mc/world/level/ILevelSoundManagerConnector.h @@ -48,7 +48,7 @@ class ILevelSoundManagerConnector : public ::Bedrock::EnableNonOwnerReferences { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND public: diff --git a/src/mc/world/level/Level.h b/src/mc/world/level/Level.h index 3f4c39df09..c200a6f466 100644 --- a/src/mc/world/level/Level.h +++ b/src/mc/world/level/Level.h @@ -1727,7 +1727,7 @@ class Level : public ::ILevel, public ::BlockSourceListener, public ::IWorldRegi MCAPI ::GameplayUserManager const& _getGameplayUserManager() const; - MCAPI ::GameplayUserManager& _getGameplayUserManager(); + MCFOLD ::GameplayUserManager& _getGameplayUserManager(); MCAPI ::ILevelChunkEventManagerConnector& _getLevelChunkEventManagerConnector(); @@ -1820,7 +1820,7 @@ class Level : public ::ILevel, public ::BlockSourceListener, public ::IWorldRegi MCAPI ::LevelSeed64 getLevelSeed64() const; - MCAPI ::NpcDialogueStorage* getNpcDialogueStorage(); + MCFOLD ::NpcDialogueStorage* getNpcDialogueStorage(); MCAPI ::ServerLevelEventCoordinator& getServerLevelEventCoordinator(); @@ -1913,9 +1913,9 @@ class Level : public ::ILevel, public ::BlockSourceListener, public ::IWorldRegi MCAPI ::DimensionType $getLastOrDefaultSpawnDimensionId(::DimensionType lastDimensionId) const; - MCAPI void $forEachDimension(::std::function callback); + MCFOLD void $forEachDimension(::std::function callback); - MCAPI void $forEachDimension(::std::function callback) const; + MCFOLD void $forEachDimension(::std::function callback) const; MCAPI uint $getChunkTickRange() const; @@ -1931,33 +1931,33 @@ class Level : public ::ILevel, public ::BlockSourceListener, public ::IWorldRegi MCAPI ::Bedrock::NotNullNonOwnerPtr<::ActorDimensionTransferManager> $getActorDimensionTransferManager(); - MCAPI ::Spawner& $getSpawner() const; + MCFOLD ::Spawner& $getSpawner() const; MCAPI ::Bedrock::NotNullNonOwnerPtr<::BossEventSubscriptionManager> $getBossEventSubscriptionManager(); MCAPI ::ProjectileFactory& $getProjectileFactory() const; - MCAPI ::ActorDefinitionGroup* $getEntityDefinitions() const; + MCFOLD ::ActorDefinitionGroup* $getEntityDefinitions() const; MCAPI ::Bedrock::NotNullNonOwnerPtr<::ActorAnimationGroup> $getActorAnimationGroup() const; MCAPI ::Bedrock::NonOwnerPointer<::ActorAnimationControllerGroup> $getActorAnimationControllerGroup() const; - MCAPI ::BlockDefinitionGroup* $getBlockDefinitions() const; + MCFOLD ::BlockDefinitionGroup* $getBlockDefinitions() const; - MCAPI ::PropertyGroupManager& $getActorPropertyGroup() const; + MCFOLD ::PropertyGroupManager& $getActorPropertyGroup() const; - MCAPI ::CameraPresets const& $getCameraPresets() const; + MCFOLD ::CameraPresets const& $getCameraPresets() const; - MCAPI ::CameraPresets& $getCameraPresets(); + MCFOLD ::CameraPresets& $getCameraPresets(); MCAPI bool $getDisablePlayerInteractions() const; MCAPI void $setDisablePlayerInteractions(bool const disable); - MCAPI ::AutomationBehaviorTreeGroup& $getAutomationBehaviorTreeGroup() const; + MCFOLD ::AutomationBehaviorTreeGroup& $getAutomationBehaviorTreeGroup() const; - MCAPI ::BehaviorFactory& $getBehaviorFactory() const; + MCFOLD ::BehaviorFactory& $getBehaviorFactory() const; MCAPI ::Difficulty $getDifficulty() const; @@ -1983,7 +1983,7 @@ class Level : public ::ILevel, public ::BlockSourceListener, public ::IWorldRegi MCAPI void $removeDisplayEntity(::WeakEntityRef); - MCAPI ::Bedrock::NonOwnerPointer<::DisplayActorManager> $getDisplayActorManager(); + MCFOLD ::Bedrock::NonOwnerPointer<::DisplayActorManager> $getDisplayActorManager(); MCAPI void $suspendPlayer(::Player& player); @@ -1991,9 +1991,9 @@ class Level : public ::ILevel, public ::BlockSourceListener, public ::IWorldRegi MCAPI bool $isPlayerSuspended(::Player& player) const; - MCAPI ::Bedrock::NotNullNonOwnerPtr<::GameplayUserManager> $getGameplayUserManager(); + MCFOLD ::Bedrock::NotNullNonOwnerPtr<::GameplayUserManager> $getGameplayUserManager(); - MCAPI ::Bedrock::NotNullNonOwnerPtr<::GameplayUserManager const> $getGameplayUserManager() const; + MCFOLD ::Bedrock::NotNullNonOwnerPtr<::GameplayUserManager const> $getGameplayUserManager() const; MCAPI ::OwnerPtr<::EntityContext> $removeActorAndTakeEntity(::WeakEntityRef entityRef); @@ -2009,9 +2009,9 @@ class Level : public ::ILevel, public ::BlockSourceListener, public ::IWorldRegi MCAPI ::Actor* $getRuntimeEntity(::ActorRuntimeID actorId, bool getRemoved) const; - MCAPI ::Bedrock::NotNullNonOwnerPtr<::ActorRuntimeIDManager> $getActorRuntimeIDManager(); + MCFOLD ::Bedrock::NotNullNonOwnerPtr<::ActorRuntimeIDManager> $getActorRuntimeIDManager(); - MCAPI ::Bedrock::NotNullNonOwnerPtr<::ActorRuntimeIDManager const> $getActorRuntimeIDManager() const; + MCFOLD ::Bedrock::NotNullNonOwnerPtr<::ActorRuntimeIDManager const> $getActorRuntimeIDManager() const; MCAPI ::Mob* $getMob(::ActorUniqueID mobId) const; @@ -2043,62 +2043,62 @@ class Level : public ::ILevel, public ::BlockSourceListener, public ::IWorldRegi MCAPI ::Bedrock::NotNullNonOwnerPtr<::TickDeltaTimeManager const> $getTickDeltaTimeManager() const; - MCAPI ::ArmorTrimUnloader* $getArmorTrimUnloader(); + MCFOLD ::ArmorTrimUnloader* $getArmorTrimUnloader(); - MCAPI ::BiomeRegistry const& $getBiomeRegistry() const; + MCFOLD ::BiomeRegistry const& $getBiomeRegistry() const; - MCAPI ::BiomeRegistry& $getBiomeRegistry(); + MCFOLD ::BiomeRegistry& $getBiomeRegistry(); - MCAPI ::BlockPalette const& $getBlockPalette() const; + MCFOLD ::BlockPalette const& $getBlockPalette() const; - MCAPI ::BlockPalette& $getBlockPalette(); + MCFOLD ::BlockPalette& $getBlockPalette(); - MCAPI ::FeatureRegistry const& $getFeatureRegistry() const; + MCFOLD ::FeatureRegistry const& $getFeatureRegistry() const; - MCAPI ::FeatureRegistry& $getFeatureRegistry(); + MCFOLD ::FeatureRegistry& $getFeatureRegistry(); - MCAPI ::FeatureTypeFactory const& $getFeatureTypeFactory() const; + MCFOLD ::FeatureTypeFactory const& $getFeatureTypeFactory() const; - MCAPI ::FeatureTypeFactory& $getFeatureTypeFactory(); + MCFOLD ::FeatureTypeFactory& $getFeatureTypeFactory(); - MCAPI ::JigsawStructureRegistry const& $getJigsawStructureRegistry() const; + MCFOLD ::JigsawStructureRegistry const& $getJigsawStructureRegistry() const; - MCAPI ::JigsawStructureRegistry& $getJigsawStructureRegistry(); + MCFOLD ::JigsawStructureRegistry& $getJigsawStructureRegistry(); - MCAPI ::StructureSpawnRegistry const& $getStructureSpawnRegistry() const; + MCFOLD ::StructureSpawnRegistry const& $getStructureSpawnRegistry() const; - MCAPI ::StructureSpawnRegistry& $getStructureSpawnRegistry(); + MCFOLD ::StructureSpawnRegistry& $getStructureSpawnRegistry(); MCAPI ::Bedrock::NotNullNonOwnerPtr<::StructureManager> const $getStructureManager() const; MCAPI ::Bedrock::NotNullNonOwnerPtr<::StructureManager> $getStructureManager(); - MCAPI ::BiomeComponentFactory const& $getBiomeComponentFactory() const; + MCFOLD ::BiomeComponentFactory const& $getBiomeComponentFactory() const; - MCAPI ::BiomeComponentFactory& $getBiomeComponentFactory(); + MCFOLD ::BiomeComponentFactory& $getBiomeComponentFactory(); - MCAPI ::SurfaceBuilderRegistry const& $getSurfaceBuilderRegistry() const; + MCFOLD ::SurfaceBuilderRegistry const& $getSurfaceBuilderRegistry() const; - MCAPI ::SurfaceBuilderRegistry& $getSurfaceBuilderRegistry(); + MCFOLD ::SurfaceBuilderRegistry& $getSurfaceBuilderRegistry(); MCAPI ::BiomeManager const& $getBiomeManager() const; MCAPI ::BiomeManager& $getBiomeManager(); - MCAPI ::OwnerPtrFactory<::Dimension, ::ILevel&, ::Scheduler&> const& $getDimensionFactory() const; + MCFOLD ::OwnerPtrFactory<::Dimension, ::ILevel&, ::Scheduler&> const& $getDimensionFactory() const; - MCAPI ::OwnerPtrFactory<::Dimension, ::ILevel&, ::Scheduler&>& $getDimensionFactory(); + MCFOLD ::OwnerPtrFactory<::Dimension, ::ILevel&, ::Scheduler&>& $getDimensionFactory(); - MCAPI ::Factory<::BaseLightTextureImageBuilder, ::Level&, ::Scheduler&> const& + MCFOLD ::Factory<::BaseLightTextureImageBuilder, ::Level&, ::Scheduler&> const& $getLightTextureImageBuilderFactory() const; - MCAPI ::Factory<::BaseLightTextureImageBuilder, ::Level&, ::Scheduler&>& $getLightTextureImageBuilderFactory(); + MCFOLD ::Factory<::BaseLightTextureImageBuilder, ::Level&, ::Scheduler&>& $getLightTextureImageBuilderFactory(); - MCAPI ::InternalComponentRegistry& $getInternalComponentRegistry() const; + MCFOLD ::InternalComponentRegistry& $getInternalComponentRegistry() const; - MCAPI ::IWorldRegistriesProvider const& $getWorldRegistriesProvider() const; + MCFOLD ::IWorldRegistriesProvider const& $getWorldRegistriesProvider() const; - MCAPI ::IWorldRegistriesProvider& $getWorldRegistriesProvider(); + MCFOLD ::IWorldRegistriesProvider& $getWorldRegistriesProvider(); MCAPI void $addListener(::LevelListener& listener); @@ -2142,9 +2142,9 @@ class Level : public ::ILevel, public ::BlockSourceListener, public ::IWorldRegi MCAPI void $updateSleepingPlayerList(); - MCAPI ::Bedrock::NonOwnerPointer<::ServerPlayerSleepManager> $getServerPlayerSleepManager(); + MCFOLD ::Bedrock::NonOwnerPointer<::ServerPlayerSleepManager> $getServerPlayerSleepManager(); - MCAPI ::Bedrock::NonOwnerPointer<::ServerPlayerSleepManager const> $getServerPlayerSleepManager() const; + MCFOLD ::Bedrock::NonOwnerPointer<::ServerPlayerSleepManager const> $getServerPlayerSleepManager() const; MCAPI int $getTime() const; @@ -2152,11 +2152,11 @@ class Level : public ::ILevel, public ::BlockSourceListener, public ::IWorldRegi MCAPI uint $getSeed(); - MCAPI ::BlockPos const& $getSharedSpawnPos() const; + MCFOLD ::BlockPos const& $getSharedSpawnPos() const; MCAPI void $setDefaultSpawn(::BlockPos const& spawnPos); - MCAPI ::BlockPos const& $getDefaultSpawn() const; + MCFOLD ::BlockPos const& $getDefaultSpawn() const; MCAPI void $setDifficulty(::Difficulty difficulty); @@ -2194,29 +2194,29 @@ class Level : public ::ILevel, public ::BlockSourceListener, public ::IWorldRegi MCAPI bool $hasLevelStorage() const; - MCAPI ::LevelStorage& $getLevelStorage(); + MCFOLD ::LevelStorage& $getLevelStorage(); - MCAPI ::LevelStorage const& $getLevelStorage() const; + MCFOLD ::LevelStorage const& $getLevelStorage() const; - MCAPI ::LevelData& $getLevelData(); + MCFOLD ::LevelData& $getLevelData(); - MCAPI ::LevelData const& $getLevelData() const; + MCFOLD ::LevelData const& $getLevelData() const; MCAPI ::PhotoStorage& $getPhotoStorage() const; MCAPI void $createPhotoStorage(); - MCAPI ::Bedrock::NotNullNonOwnerPtr<::PhotoManager> $getPhotoManager(); + MCFOLD ::Bedrock::NotNullNonOwnerPtr<::PhotoManager> $getPhotoManager(); - MCAPI ::Bedrock::NotNullNonOwnerPtr<::PhotoManager const> $getPhotoManager() const; + MCFOLD ::Bedrock::NotNullNonOwnerPtr<::PhotoManager const> $getPhotoManager() const; MCAPI void $setEducationLevelSettings(::EducationLevelSettings settings); MCAPI ::std::optional<::EducationLevelSettings> const& $getEducationLevelSettings() const; - MCAPI ::Bedrock::NotNullNonOwnerPtr<::EducationSettingsManager> $getEducationSettingsManager(); + MCFOLD ::Bedrock::NotNullNonOwnerPtr<::EducationSettingsManager> $getEducationSettingsManager(); - MCAPI ::Bedrock::NotNullNonOwnerPtr<::EducationSettingsManager const> $getEducationSettingsManager() const; + MCFOLD ::Bedrock::NotNullNonOwnerPtr<::EducationSettingsManager const> $getEducationSettingsManager() const; MCAPI void $save(); @@ -2380,20 +2380,20 @@ class Level : public ::ILevel, public ::BlockSourceListener, public ::IWorldRegi MCAPI void $onSourceDestroyed(::BlockSource& source); - MCAPI void $onSubChunkLoaded( + MCFOLD void $onSubChunkLoaded( ::ChunkSource& source, ::LevelChunk& lc, short absoluteSubChunkIndex, bool subChunkVisibilityChanged ); - MCAPI ::Bedrock::NonOwnerPointer<::SubChunkManager> $getSubChunkManager(); + MCFOLD ::Bedrock::NonOwnerPointer<::SubChunkManager> $getSubChunkManager(); MCAPI void $onChunkLoaded(::ChunkSource& source, ::LevelChunk& lc); MCAPI void $onChunkReloaded(::ChunkSource& source, ::LevelChunk& lc); - MCAPI ::LevelChunkMetaDataManager* $getLevelChunkMetaDataManager(); + MCFOLD ::LevelChunkMetaDataManager* $getLevelChunkMetaDataManager(); MCAPI void $onChunkDiscarded(::LevelChunk& lc); @@ -2411,7 +2411,7 @@ class Level : public ::ILevel, public ::BlockSourceListener, public ::IWorldRegi MCAPI void $forceFlushRemovedPlayers(); - MCAPI void $loadFunctionManager(); + MCFOLD void $loadFunctionManager(); MCAPI void $levelCleanupQueueEntityRemoval(::OwnerPtr<::EntityContext> entity); @@ -2496,9 +2496,9 @@ class Level : public ::ILevel, public ::BlockSourceListener, public ::IWorldRegi MCAPI ::MapItemSavedData* $getMapSavedData(::ActorUniqueID const uuid); - MCAPI ::MapItemSavedData* $getMapSavedData(::CompoundTag const& instance); + MCFOLD ::MapItemSavedData* $getMapSavedData(::CompoundTag const& instance); - MCAPI ::MapItemSavedData* $getMapSavedData(::CompoundTag const* instance); + MCFOLD ::MapItemSavedData* $getMapSavedData(::CompoundTag const* instance); MCAPI void $requestMapInfo(::ActorUniqueID const uuid, bool forceUpdate); @@ -2526,35 +2526,35 @@ class Level : public ::ILevel, public ::BlockSourceListener, public ::IWorldRegi MCAPI void $setLevelId(::std::string LevelId); - MCAPI ::TaskGroup& $getSyncTasksGroup(); + MCFOLD ::TaskGroup& $getSyncTasksGroup(); MCAPI ::TaskGroup& $getIOTasksGroup(); - MCAPI ::ResourcePackManager* $getClientResourcePackManager() const; + MCFOLD ::ResourcePackManager* $getClientResourcePackManager() const; - MCAPI ::ResourcePackManager* $getServerResourcePackManager() const; + MCFOLD ::ResourcePackManager* $getServerResourcePackManager() const; - MCAPI ::TradeTables* $getTradeTables(); + MCFOLD ::TradeTables* $getTradeTables(); - MCAPI void $decrementTagCache( + MCFOLD void $decrementTagCache( ::std::string const& tag, ::TagRegistry<::IDType<::LevelTagIDType>, ::IDType<::LevelTagSetIDType>>& tagRegistry ); - MCAPI void $incrementTagCache( + MCFOLD void $incrementTagCache( ::std::string const& tag, ::TagRegistry<::IDType<::LevelTagIDType>, ::IDType<::LevelTagSetIDType>>& tagRegistry ); - MCAPI ::Bedrock::NonOwnerPointer<::TagCacheManager> $getTagCacheManager(); + MCFOLD ::Bedrock::NonOwnerPointer<::TagCacheManager> $getTagCacheManager(); MCAPI bool $isEdu() const; - MCAPI ::ActorFactory& $getActorFactory(); + MCFOLD ::ActorFactory& $getActorFactory(); - MCAPI ::ActorFactory const& $getActorFactory() const; + MCFOLD ::ActorFactory const& $getActorFactory() const; - MCAPI ::ActorInfoRegistry* $getActorInfoRegistry(); + MCFOLD ::ActorInfoRegistry* $getActorInfoRegistry(); MCAPI ::StackRefResult<::EntityRegistry> $getEntityRegistry(); @@ -2564,45 +2564,45 @@ class Level : public ::ILevel, public ::BlockSourceListener, public ::IWorldRegi MCAPI ::WeakRef<::EntityContext> $getLevelEntity(); - MCAPI void $runCommand( + MCFOLD void $runCommand( ::HashedString const& commandStr, ::CommandOrigin& origin, ::CommandOriginSystem originSystem, ::CurrentCmdVersion const commandVersion ); - MCAPI void $runCommand(::Command& command, ::CommandOrigin& origin, ::CommandOriginSystem originSystem); + MCFOLD void $runCommand(::Command& command, ::CommandOrigin& origin, ::CommandOriginSystem originSystem); MCAPI ::PlayerCapabilities::ISharedController const& $getCapabilities() const; - MCAPI ::TagRegistry<::IDType<::LevelTagIDType>, ::IDType<::LevelTagSetIDType>>& $getTagRegistry(); + MCFOLD ::TagRegistry<::IDType<::LevelTagIDType>, ::IDType<::LevelTagSetIDType>>& $getTagRegistry(); MCAPI ::PlayerMovementSettings const& $getPlayerMovementSettings() const; MCAPI void $setPlayerMovementSettings(::PlayerMovementSettings const& settings); - MCAPI ::Bedrock::NotNullNonOwnerPtr<::PlayerMovementSettingsManager> $getPlayerMovementSettingsManager(); + MCFOLD ::Bedrock::NotNullNonOwnerPtr<::PlayerMovementSettingsManager> $getPlayerMovementSettingsManager(); - MCAPI ::Bedrock::NotNullNonOwnerPtr<::PlayerMovementSettingsManager const> + MCFOLD ::Bedrock::NotNullNonOwnerPtr<::PlayerMovementSettingsManager const> $getPlayerMovementSettingsManager() const; - MCAPI bool $canUseSkin( + MCFOLD bool $canUseSkin( ::SerializedSkin const& skin, ::NetworkIdentifier const& networkIdentifier, ::ActorUniqueID const& playerId ) const; - MCAPI ::Bedrock::NonOwnerPointer<::TrustedSkinHelper const> $getTrustedSkinHelper() const; + MCFOLD ::Bedrock::NonOwnerPointer<::TrustedSkinHelper const> $getTrustedSkinHelper() const; - MCAPI ::Bedrock::NonOwnerPointer<::CameraRegistry const> $getCameraRegistry() const; + MCFOLD ::Bedrock::NonOwnerPointer<::CameraRegistry const> $getCameraRegistry() const; - MCAPI ::Bedrock::NonOwnerPointer<::CameraRegistry> $getCameraRegistry(); + MCFOLD ::Bedrock::NonOwnerPointer<::CameraRegistry> $getCameraRegistry(); - MCAPI ::Bedrock::NonOwnerPointer<::EntitySystems> $getCameraSystems(); + MCFOLD ::Bedrock::NonOwnerPointer<::EntitySystems> $getCameraSystems(); MCAPI ::PositionTrackingDB::PositionTrackingDBClient* $getPositionTrackerDBClient() const; - MCAPI ::PositionTrackingDB::PositionTrackingDBServer* $getPositionTrackerDBServer() const; + MCFOLD ::PositionTrackingDB::PositionTrackingDBServer* $getPositionTrackerDBServer() const; MCAPI void $flushRunTimeLighting(); @@ -2620,7 +2620,7 @@ class Level : public ::ILevel, public ::BlockSourceListener, public ::IWorldRegi MCAPI ::std::weak_ptr<::BlockTypeRegistry> $getBlockRegistry() const; - MCAPI ::Level* $asLevel(); + MCFOLD ::Level* $asLevel(); MCAPI bool $use3DBiomeMaps() const; @@ -2632,17 +2632,17 @@ class Level : public ::ILevel, public ::BlockSourceListener, public ::IWorldRegi MCAPI void $pauseAndFlushTaskGroups(); - MCAPI ::DimensionManager& $getDimensionManager(); + MCFOLD ::DimensionManager& $getDimensionManager(); - MCAPI ::DimensionManager const& $getDimensionManager() const; + MCFOLD ::DimensionManager const& $getDimensionManager() const; MCAPI void $_subTick(); - MCAPI ::StackRefResult<::PauseManager> $getPauseManager(); + MCFOLD ::StackRefResult<::PauseManager> $getPauseManager(); - MCAPI ::StackRefResult<::PauseManager const> $getPauseManager() const; + MCFOLD ::StackRefResult<::PauseManager const> $getPauseManager() const; - MCAPI bool $isClientSide() const; + MCFOLD bool $isClientSide() const; MCAPI ::std::unordered_map<::mce::UUID, ::PlayerListEntry> const& $getPlayerList() const; @@ -2650,15 +2650,15 @@ class Level : public ::ILevel, public ::BlockSourceListener, public ::IWorldRegi MCAPI ::std::string const& $getPlayerPlatformOnlineId(::mce::UUID const& uuid) const; - MCAPI ::Bedrock::NotNullNonOwnerPtr<::PlayerListManager> $getPlayerListManager(); + MCFOLD ::Bedrock::NotNullNonOwnerPtr<::PlayerListManager> $getPlayerListManager(); - MCAPI ::Bedrock::NotNullNonOwnerPtr<::PlayerListManager const> $getPlayerListManager() const; + MCFOLD ::Bedrock::NotNullNonOwnerPtr<::PlayerListManager const> $getPlayerListManager() const; MCAPI ::std::vector<::WeakEntityRef> const& $getActiveUsers() const; - MCAPI void $notifySubChunkRequestManager(::SubChunkPacket const& packet); + MCFOLD void $notifySubChunkRequestManager(::SubChunkPacket const& packet); - MCAPI ::SubChunkRequestManager* $getSubChunkRequestManager(); + MCFOLD ::SubChunkRequestManager* $getSubChunkRequestManager(); MCAPI ::std::vector<::Actor*> $getRuntimeActorList() const; @@ -2674,7 +2674,7 @@ class Level : public ::ILevel, public ::BlockSourceListener, public ::IWorldRegi MCAPI ::Random& $getRandom() const; - MCAPI ::Random& $getThreadRandom() const; + MCFOLD ::Random& $getThreadRandom() const; MCAPI ::HitResult& $getHitResult(); @@ -2682,7 +2682,7 @@ class Level : public ::ILevel, public ::BlockSourceListener, public ::IWorldRegi MCAPI ::Bedrock::NotNullNonOwnerPtr<::HitResultWrapper> $getHitResultWrapper(); - MCAPI ::std::string const& $getImmersiveReaderString() const; + MCFOLD ::std::string const& $getImmersiveReaderString() const; MCAPI void $setImmersiveReaderString(::std::string newString); @@ -2706,7 +2706,7 @@ class Level : public ::ILevel, public ::BlockSourceListener, public ::IWorldRegi MCAPI ::PermissionsHandler const& $getDefaultPermissions() const; - MCAPI bool $getTearingDown() const; + MCFOLD bool $getTearingDown() const; MCAPI void $takePicture(::cg::ImageBuffer& outImage, ::Actor* camera, ::Actor* target, ::ScreenshotOptions& screenshotOptions); @@ -2721,17 +2721,17 @@ class Level : public ::ILevel, public ::BlockSourceListener, public ::IWorldRegi MCAPI void $setFinishedInitializing(); - MCAPI ::LootTables& $getLootTables(); + MCFOLD ::LootTables& $getLootTables(); MCAPI void $updateWeather(float rainLevel, int rainTime, float lightningLevel, int lightningTime); MCAPI int $getNetherScale() const; - MCAPI ::Scoreboard& $getScoreboard(); + MCFOLD ::Scoreboard& $getScoreboard(); - MCAPI ::Scoreboard const& $getScoreboard() const; + MCFOLD ::Scoreboard const& $getScoreboard() const; - MCAPI ::Scoreboard* $tryGetScoreboard(); + MCFOLD ::Scoreboard* $tryGetScoreboard(); MCAPI ::LayeredAbilities* $getPlayerAbilities(::ActorUniqueID const& playerId); @@ -2741,17 +2741,17 @@ class Level : public ::ILevel, public ::BlockSourceListener, public ::IWorldRegi MCAPI ::Bedrock::NotNullNonOwnerPtr<::PlayerAbilitiesManager> $getPlayerAbilitiesManager(); - MCAPI ::Recipes& $getRecipes() const; + MCFOLD ::Recipes& $getRecipes() const; - MCAPI ::BlockReducer* $getBlockReducer() const; + MCFOLD ::BlockReducer* $getBlockReducer() const; - MCAPI ::std::weak_ptr<::TrimPatternRegistry const> $getTrimPatternRegistry() const; + MCFOLD ::std::weak_ptr<::TrimPatternRegistry const> $getTrimPatternRegistry() const; - MCAPI ::std::weak_ptr<::TrimPatternRegistry> $getTrimPatternRegistry(); + MCFOLD ::std::weak_ptr<::TrimPatternRegistry> $getTrimPatternRegistry(); - MCAPI ::std::weak_ptr<::TrimMaterialRegistry const> $getTrimMaterialRegistry() const; + MCFOLD ::std::weak_ptr<::TrimMaterialRegistry const> $getTrimMaterialRegistry() const; - MCAPI ::std::weak_ptr<::TrimMaterialRegistry> $getTrimMaterialRegistry(); + MCFOLD ::std::weak_ptr<::TrimMaterialRegistry> $getTrimMaterialRegistry(); MCAPI void $digestServerItemComponents(::ItemComponentPacket const& packet); @@ -2759,17 +2759,17 @@ class Level : public ::ILevel, public ::BlockSourceListener, public ::IWorldRegi MCAPI ::Bedrock::NotNullNonOwnerPtr<::LevelChunkPerformanceTelemetry> $getLevelChunkPerformanceTelemetry(); - MCAPI ::cereal::ReflectionCtx const& $cerealContext() const; + MCFOLD ::cereal::ReflectionCtx const& $cerealContext() const; - MCAPI ::Bedrock::NonOwnerPointer<::ChunkGenerationManager> $getChunkGenerationManager(); + MCFOLD ::Bedrock::NonOwnerPointer<::ChunkGenerationManager> $getChunkGenerationManager(); - MCAPI ::Bedrock::NonOwnerPointer<::ChunkGenerationManager const> $getChunkGenerationManager() const; + MCFOLD ::Bedrock::NonOwnerPointer<::ChunkGenerationManager const> $getChunkGenerationManager() const; - MCAPI ::PlayerDeathManager* $_getPlayerDeathManager(); + MCFOLD ::PlayerDeathManager* $_getPlayerDeathManager(); MCAPI void $_initializeMapDataManager(); - MCAPI ::cereal::ReflectionCtx& $_cerealContext(); + MCFOLD ::cereal::ReflectionCtx& $_cerealContext(); // NOLINTEND public: diff --git a/src/mc/world/level/LevelChunkMetaDataManager.h b/src/mc/world/level/LevelChunkMetaDataManager.h index e665979eca..6a6eae73c4 100644 --- a/src/mc/world/level/LevelChunkMetaDataManager.h +++ b/src/mc/world/level/LevelChunkMetaDataManager.h @@ -34,7 +34,7 @@ class LevelChunkMetaDataManager { // NOLINTBEGIN MCAPI void _onNewDimensionCreated(::Dimension& dimension); - MCAPI ::std::shared_ptr<::LevelChunkMetaDataDictionary> getLevelChunkMetaDataDictionary() const; + MCFOLD ::std::shared_ptr<::LevelChunkMetaDataDictionary> getLevelChunkMetaDataDictionary() const; MCAPI void registerForLevelChunkEvents(::ILevelChunkEventManagerConnector& levelChunkEventManagerConnector); diff --git a/src/mc/world/level/LevelEventManager.h b/src/mc/world/level/LevelEventManager.h index 1558fa4028..8817aa6091 100644 --- a/src/mc/world/level/LevelEventManager.h +++ b/src/mc/world/level/LevelEventManager.h @@ -86,9 +86,9 @@ class LevelEventManager : public ::ILevelEventManagerCoordinator { public: // virtual function thunks // NOLINTBEGIN - MCAPI ::Bedrock::PubSub::Connector& $getLevelEventDataConnector(); + MCFOLD ::Bedrock::PubSub::Connector& $getLevelEventDataConnector(); - MCAPI ::Bedrock::PubSub::Connector& $getLevelEventCompoundTagConnector(); + MCFOLD ::Bedrock::PubSub::Connector& $getLevelEventCompoundTagConnector(); // NOLINTEND public: diff --git a/src/mc/world/level/LevelListener.h b/src/mc/world/level/LevelListener.h index b4e7e4267b..ddbf439cdf 100644 --- a/src/mc/world/level/LevelListener.h +++ b/src/mc/world/level/LevelListener.h @@ -94,45 +94,45 @@ class LevelListener : public ::BlockSourceListener { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND public: // virtual function thunks // NOLINTBEGIN - MCAPI void $allChanged(); + MCFOLD void $allChanged(); - MCAPI void + MCFOLD void $addParticleEffect(::HashedString const&, ::Actor const&, ::HashedString const&, ::Vec3 const&, ::MolangVariableMap const&); - MCAPI void $addTerrainParticleEffect(::BlockPos const&, ::Block const&, ::Vec3 const&, float, float, float); + MCFOLD void $addTerrainParticleEffect(::BlockPos const&, ::Block const&, ::Vec3 const&, float, float, float); - MCAPI void $addTerrainSlideEffect(::BlockPos const&, ::Block const&, ::Vec3 const&, float, float, float); + MCFOLD void $addTerrainSlideEffect(::BlockPos const&, ::Block const&, ::Vec3 const&, float, float, float); - MCAPI void + MCFOLD void $addBreakingItemParticleEffect(::Vec3 const&, ::BreakingItemParticleData const&, ::ResolvedItemIconInfo const&); - MCAPI void $playMusic(::std::string const&, ::Vec3 const&, float, float); + MCFOLD void $playMusic(::std::string const&, ::Vec3 const&, float, float); - MCAPI void $playStreamingMusic(::std::string const&, int, int, int); + MCFOLD void $playStreamingMusic(::std::string const&, int, int, int); - MCAPI void $onEntityAdded(::Actor&); + MCFOLD void $onEntityAdded(::Actor&); - MCAPI void $onEntityRemoved(::Actor&); + MCFOLD void $onEntityRemoved(::Actor&); - MCAPI void $onChunkLoaded(::ChunkSource&, ::LevelChunk&); + MCFOLD void $onChunkLoaded(::ChunkSource&, ::LevelChunk&); - MCAPI void $onChunkReloaded(::ChunkSource&, ::LevelChunk&); + MCFOLD void $onChunkReloaded(::ChunkSource&, ::LevelChunk&); - MCAPI void $onSubChunkLoaded(::ChunkSource&, ::LevelChunk&, short, bool); + MCFOLD void $onSubChunkLoaded(::ChunkSource&, ::LevelChunk&, short, bool); - MCAPI void $onChunkUnloaded(::LevelChunk&); + MCFOLD void $onChunkUnloaded(::LevelChunk&); - MCAPI void $onLevelDestruction(::std::string const&); + MCFOLD void $onLevelDestruction(::std::string const&); - MCAPI void $takePicture(::cg::ImageBuffer&, ::Actor*, ::Actor*, ::ScreenshotOptions&); + MCFOLD void $takePicture(::cg::ImageBuffer&, ::Actor*, ::Actor*, ::ScreenshotOptions&); - MCAPI void $playerListChanged(); + MCFOLD void $playerListChanged(); // NOLINTEND public: diff --git a/src/mc/world/level/LevelRandom.h b/src/mc/world/level/LevelRandom.h index e297d8f288..99330382e3 100644 --- a/src/mc/world/level/LevelRandom.h +++ b/src/mc/world/level/LevelRandom.h @@ -60,11 +60,11 @@ class LevelRandom : public ::ILevelRandom { public: // virtual function thunks // NOLINTBEGIN - MCAPI ::IRandom& $getIRandom(); + MCFOLD ::IRandom& $getIRandom(); - MCAPI ::Random& $getRandom(); + MCFOLD ::Random& $getRandom(); - MCAPI ::Random& $getThreadRandom(); + MCFOLD ::Random& $getThreadRandom(); // NOLINTEND public: diff --git a/src/mc/world/level/LevelSeed64.h b/src/mc/world/level/LevelSeed64.h index a83687a4ec..067edb88b5 100644 --- a/src/mc/world/level/LevelSeed64.h +++ b/src/mc/world/level/LevelSeed64.h @@ -16,7 +16,7 @@ class LevelSeed64 { public: // member functions // NOLINTBEGIN - MCAPI uint to32BitRandomSeed() const; + MCFOLD uint to32BitRandomSeed() const; // NOLINTEND public: diff --git a/src/mc/world/level/LevelSettings.h b/src/mc/world/level/LevelSettings.h index 6716060ed2..65938ecff5 100644 --- a/src/mc/world/level/LevelSettings.h +++ b/src/mc/world/level/LevelSettings.h @@ -113,7 +113,7 @@ class LevelSettings { MCAPI ::std::string const& GetServerId() const; - MCAPI ::std::string const& GetWorldId() const; + MCFOLD ::std::string const& GetWorldId() const; MCAPI LevelSettings(); @@ -129,15 +129,15 @@ class LevelSettings { MCAPI bool cloudSaveForWorldIsEnabled() const; - MCAPI bool educationFeaturesEnabled() const; + MCFOLD bool educationFeaturesEnabled() const; - MCAPI ::std::string const& educationProductID() const; + MCFOLD ::std::string const& educationProductID() const; - MCAPI bool forceGameType() const; + MCFOLD bool forceGameType() const; MCAPI bool getAdventureModeOverridesEnabled() const; - MCAPI ::BaseGameVersion const& getBaseGameVersion() const; + MCFOLD ::BaseGameVersion const& getBaseGameVersion() const; MCAPI ::std::string const& getBiomeOverride() const; @@ -145,11 +145,11 @@ class LevelSettings { MCAPI ::CloudSaveLevelInfo const& getCloudSaveInfo() const; - MCAPI bool getCustomSkinsDisabled() const; + MCFOLD bool getCustomSkinsDisabled() const; - MCAPI ::DaylightCycle getDaylightCycle() const; + MCFOLD ::DaylightCycle getDaylightCycle() const; - MCAPI ::PermissionsHandler const& getDefaultPermissions() const; + MCFOLD ::PermissionsHandler const& getDefaultPermissions() const; MCAPI ::BlockPos const& getDefaultSpawn() const; @@ -157,25 +157,25 @@ class LevelSettings { MCAPI ::Editor::WorldType getEditorWorldType() const; - MCAPI ::EduSharedUriResource const& getEduSharedUriResource() const; + MCFOLD ::EduSharedUriResource const& getEduSharedUriResource() const; - MCAPI ::EducationEditionOffer getEducationEditionOffer() const; + MCFOLD ::EducationEditionOffer getEducationEditionOffer() const; MCAPI ::std::optional<::EducationLevelSettings> const& getEducationLevelSettings() const; - MCAPI bool getEmoteChatMuted() const; + MCFOLD bool getEmoteChatMuted() const; MCAPI ::std::vector<::std::string> const& getExcludedScriptModules() const; - MCAPI ::Experiments const& getExperiments() const; + MCFOLD ::Experiments const& getExperiments() const; - MCAPI ::Difficulty getGameDifficulty() const; + MCFOLD ::Difficulty getGameDifficulty() const; - MCAPI ::GameRules const& getGameRules() const; + MCFOLD ::GameRules const& getGameRules() const; - MCAPI ::GameType getGameType() const; + MCFOLD ::GameType getGameType() const; - MCAPI ::GeneratorType getGenerator() const; + MCFOLD ::GeneratorType getGenerator() const; MCAPI bool getImmutableWorld() const; @@ -185,71 +185,71 @@ class LevelSettings { MCAPI int getLimitedWorldDepth() const; - MCAPI int getLimitedWorldWidth() const; + MCFOLD int getLimitedWorldWidth() const; MCAPI bool getMultiplayerGameIntent() const; - MCAPI ::NetherWorldType getNetherType() const; + MCFOLD ::NetherWorldType getNetherType() const; MCAPI bool getOnlySpawnV1Villagers() const; MCAPI bool getPersonaDisabled() const; - MCAPI ::Social::GamePublishSetting getPlatformBroadcastIntent() const; + MCFOLD ::Social::GamePublishSetting getPlatformBroadcastIntent() const; MCAPI float getRainLevel() const; - MCAPI ::LevelSeed64 getSeed() const; + MCFOLD ::LevelSeed64 getSeed() const; - MCAPI uint getServerChunkTickRange() const; + MCFOLD uint getServerChunkTickRange() const; MCAPI ::SpawnSettings getSpawnSettings() const; MCAPI int getTime() const; - MCAPI ::WorldVersion getWorldVersion() const; + MCFOLD ::WorldVersion getWorldVersion() const; - MCAPI ::Social::GamePublishSetting getXBLBroadcastIntent() const; + MCFOLD ::Social::GamePublishSetting getXBLBroadcastIntent() const; - MCAPI bool hasAchievementsDisabled() const; + MCFOLD bool hasAchievementsDisabled() const; - MCAPI bool hasBonusChestEnabled() const; + MCFOLD bool hasBonusChestEnabled() const; - MCAPI bool hasCheatsEnabled() const; + MCFOLD bool hasCheatsEnabled() const; - MCAPI bool hasCommandsEnabled() const; + MCFOLD bool hasCommandsEnabled() const; - MCAPI bool hasConfirmedPlatformLockedContent() const; + MCFOLD bool hasConfirmedPlatformLockedContent() const; - MCAPI bool hasLockedBehaviorPack() const; + MCFOLD bool hasLockedBehaviorPack() const; MCAPI bool hasLockedResourcePack() const; - MCAPI bool hasStartWithMapEnabled() const; + MCFOLD bool hasStartWithMapEnabled() const; - MCAPI bool isCreatedInEditor() const; + MCFOLD bool isCreatedInEditor() const; MCAPI bool isEditorWorld() const; - MCAPI bool isExportedFromEditor() const; + MCFOLD bool isExportedFromEditor() const; MCAPI bool isFromLockedTemplate() const; - MCAPI bool isFromWorldTemplate() const; + MCFOLD bool isFromWorldTemplate() const; - MCAPI bool isHardcore() const; + MCFOLD bool isHardcore() const; MCAPI bool isRandomSeedAllowed() const; - MCAPI bool isTexturepacksRequired() const; + MCFOLD bool isTexturepacksRequired() const; - MCAPI bool isWorldTemplateOptionLocked() const; + MCFOLD bool isWorldTemplateOptionLocked() const; MCAPI ::LevelSettings& operator=(::LevelSettings&&); - MCAPI ::LevelSettings& setAdventureModeOverridesEnabled(bool adventureModeOverridesEnabled); + MCFOLD ::LevelSettings& setAdventureModeOverridesEnabled(bool adventureModeOverridesEnabled); - MCAPI ::LevelSettings& setBaseGameVersion(::BaseGameVersion const& baseGameVersion); + MCFOLD ::LevelSettings& setBaseGameVersion(::BaseGameVersion const& baseGameVersion); MCAPI ::LevelSettings& setChatRestrictionLevel(::ChatRestrictionLevel chatRestrictionLevel); @@ -291,9 +291,9 @@ class LevelSettings { MCAPI ::LevelSettings& setOverrideSavedSettings(bool overrideSaved); - MCAPI ::LevelSettings& setPlatformBroadcastIntent(::Social::GamePublishSetting platformBroadcastIntent); + MCFOLD ::LevelSettings& setPlatformBroadcastIntent(::Social::GamePublishSetting platformBroadcastIntent); - MCAPI ::LevelSettings& setRandomSeed(::LevelSeed64 seed); + MCFOLD ::LevelSettings& setRandomSeed(::LevelSeed64 seed); MCAPI ::LevelSettings& setScenarioId(::std::string scenarioId); diff --git a/src/mc/world/level/LevelSoundManager.h b/src/mc/world/level/LevelSoundManager.h index e505438040..434b9543fe 100644 --- a/src/mc/world/level/LevelSoundManager.h +++ b/src/mc/world/level/LevelSoundManager.h @@ -144,7 +144,7 @@ class LevelSoundManager : public ::ILevelSoundManagerConnector { public: // virtual function thunks // NOLINTBEGIN - MCAPI ::Bedrock::PubSub::Connector& $getOnLevelSoundEventConnector(); - MCAPI ::Bedrock::PubSub::Connector& + MCFOLD ::Bedrock::PubSub::Connector& $getOnLevelSoundEventWithVolumeAndPitchConnector(); - MCAPI ::Bedrock::PubSub::Connector& $getOnStopLevelSoundEventConnector(); + MCFOLD ::Bedrock::PubSub::Connector& $getOnStopLevelSoundEventConnector(); - MCAPI ::Bedrock::PubSub::Connector& $getOnStopAllLevelSoundsEventConnector(); + MCFOLD ::Bedrock::PubSub::Connector& $getOnStopAllLevelSoundsEventConnector(); - MCAPI ::Bedrock::PubSub::Connector& $getOnStopMusicEventConnector(); + MCFOLD ::Bedrock::PubSub::Connector& $getOnStopMusicEventConnector(); // NOLINTEND public: diff --git a/src/mc/world/level/MapDataManager.h b/src/mc/world/level/MapDataManager.h index 2ee5d0de37..26b0ea852b 100644 --- a/src/mc/world/level/MapDataManager.h +++ b/src/mc/world/level/MapDataManager.h @@ -116,7 +116,7 @@ class MapDataManager { public: // virtual function thunks // NOLINTBEGIN - MCAPI void $registerOnGameplayUserAddedSubscription(::IGameplayUserManagerConnector&); + MCFOLD void $registerOnGameplayUserAddedSubscription(::IGameplayUserManagerConnector&); MCAPI ::MapItemSavedData& $createMapSavedData(::ActorUniqueID const& uuid); diff --git a/src/mc/world/level/MobEvent.h b/src/mc/world/level/MobEvent.h index 709039543c..512623743b 100644 --- a/src/mc/world/level/MobEvent.h +++ b/src/mc/world/level/MobEvent.h @@ -24,11 +24,11 @@ class MobEvent { MCAPI MobEvent(::std::string name, ::std::string localizableName, bool val); - MCAPI ::std::string const& getLocalizableName() const; + MCFOLD ::std::string const& getLocalizableName() const; - MCAPI ::std::string const& getName() const; + MCFOLD ::std::string const& getName() const; - MCAPI bool isEnabled() const; + MCFOLD bool isEnabled() const; MCAPI ~MobEvent(); // NOLINTEND @@ -44,6 +44,6 @@ class MobEvent { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/world/level/PhotoManager.h b/src/mc/world/level/PhotoManager.h index c7edcaf2d9..40ae628076 100644 --- a/src/mc/world/level/PhotoManager.h +++ b/src/mc/world/level/PhotoManager.h @@ -57,7 +57,7 @@ class PhotoManager : public ::IPhotoManagerConnector { MCAPI ::PhotoStorage& getPhotoStorage(); - MCAPI ::Core::PathBuffer<::std::string> const& getScreenshotsFolder() const; + MCFOLD ::Core::PathBuffer<::std::string> const& getScreenshotsFolder() const; MCAPI void takePicture(::cg::ImageBuffer& outImage, ::Actor* camera, ::Actor* target, ::ScreenshotOptions& screenshotOptions); @@ -78,7 +78,7 @@ class PhotoManager : public ::IPhotoManagerConnector { public: // virtual function thunks // NOLINTBEGIN - MCAPI ::Bedrock::PubSub::Connector& + MCFOLD ::Bedrock::PubSub::Connector& $getPictureTakenConnector(); // NOLINTEND diff --git a/src/mc/world/level/PlayerDimensionTransferProxy.h b/src/mc/world/level/PlayerDimensionTransferProxy.h index 689d4cbd6e..130350a389 100644 --- a/src/mc/world/level/PlayerDimensionTransferProxy.h +++ b/src/mc/world/level/PlayerDimensionTransferProxy.h @@ -133,7 +133,7 @@ class PlayerDimensionTransferProxy : public ::IPlayerDimensionTransferProxy { MCAPI ::std::pair> $hasSubChunksAt(::Player const& player, ::BlockPos const& min, ::BlockPos const& max) const; - MCAPI void $transferTickingArea(::Actor& actor, ::Dimension& dimension); + MCFOLD void $transferTickingArea(::Actor& actor, ::Dimension& dimension); // NOLINTEND public: diff --git a/src/mc/world/level/PlayerDimensionTransferer.h b/src/mc/world/level/PlayerDimensionTransferer.h index c05bc8d8fe..05ff53f2e5 100644 --- a/src/mc/world/level/PlayerDimensionTransferer.h +++ b/src/mc/world/level/PlayerDimensionTransferer.h @@ -198,7 +198,7 @@ class PlayerDimensionTransferer : public ::IPlayerDimensionTransferer { ::Dimension const& toDimension ); - MCAPI ::Bedrock::PubSub::Connector& + MCFOLD ::Bedrock::PubSub::Connector& $getOnAnyPlayerChangeDimensionPreSuspendRegionConnector(); MCAPI ::Bedrock::PubSub::Connector& $getOnAnyPlayerChangeDimensionPrepareRegionCompleteConnector(); diff --git a/src/mc/world/level/PlayerListManager.h b/src/mc/world/level/PlayerListManager.h index 1823891311..454f82cf47 100644 --- a/src/mc/world/level/PlayerListManager.h +++ b/src/mc/world/level/PlayerListManager.h @@ -39,7 +39,7 @@ class PlayerListManager { MCAPI void _onGameplayUserRemoved(::EntityContext& entity); - MCAPI ::std::unordered_map<::mce::UUID, ::PlayerListEntry> const& getPlayerList() const; + MCFOLD ::std::unordered_map<::mce::UUID, ::PlayerListEntry> const& getPlayerList() const; MCAPI ::std::string const& getPlayerPlatformOnlineId(::mce::UUID const& uuid) const; diff --git a/src/mc/world/level/PlayerSleepManager.h b/src/mc/world/level/PlayerSleepManager.h index 535e56c60e..6fd4ccba88 100644 --- a/src/mc/world/level/PlayerSleepManager.h +++ b/src/mc/world/level/PlayerSleepManager.h @@ -35,7 +35,7 @@ class PlayerSleepManager { // NOLINTBEGIN MCAPI PlayerSleepManager(); - MCAPI ::PlayerSleepStatus const& getPlayerSleepStatus() const; + MCFOLD ::PlayerSleepStatus const& getPlayerSleepStatus() const; MCAPI void setSleepStatus(::PlayerSleepStatus const& sleepStatus); // NOLINTEND @@ -55,7 +55,7 @@ class PlayerSleepManager { public: // virtual function thunks // NOLINTBEGIN - MCAPI void $updateSleepingPlayerList(); + MCFOLD void $updateSleepingPlayerList(); // NOLINTEND public: diff --git a/src/mc/world/level/PortalShape.h b/src/mc/world/level/PortalShape.h index 63d874f0bd..fe4d66ae8a 100644 --- a/src/mc/world/level/PortalShape.h +++ b/src/mc/world/level/PortalShape.h @@ -50,7 +50,7 @@ class PortalShape { MCAPI void evaluate(::BlockPos const& originalPosition, ::BlockSource const& source); - MCAPI int getNumberOfPortalBlocks() const; + MCFOLD int getNumberOfPortalBlocks() const; MCAPI bool isFilled() const; @@ -58,7 +58,7 @@ class PortalShape { MCAPI void removePortalBlocks(::WorldChangeTransaction& transaction, ::BlockPos const& firstPortalPosition) const; - MCAPI void setAxis(::PortalAxis axis); + MCFOLD void setAxis(::PortalAxis axis); MCAPI void updateNeighboringBlocks(::BlockSource& source, ::Vec3 const& perpendicularAxis) const; // NOLINTEND diff --git a/src/mc/world/level/PositionTrackingId.h b/src/mc/world/level/PositionTrackingId.h index 92efabc56a..33f6c4a421 100644 --- a/src/mc/world/level/PositionTrackingId.h +++ b/src/mc/world/level/PositionTrackingId.h @@ -29,7 +29,7 @@ class PositionTrackingId { MCAPI ::std::unique_ptr<::Tag> getTag() const; - MCAPI ::PositionTrackingId& operator=(::PositionTrackingId const&); + MCFOLD ::PositionTrackingId& operator=(::PositionTrackingId const&); MCAPI ::PositionTrackingId& operator=(::PositionTrackingId&&); @@ -47,7 +47,7 @@ class PositionTrackingId { public: // constructor thunks // NOLINTBEGIN - MCAPI void* $ctor(::PositionTrackingId const&); + MCFOLD void* $ctor(::PositionTrackingId const&); MCAPI void* $ctor(::PositionTrackingId&&); // NOLINTEND diff --git a/src/mc/world/level/ScatterParams.h b/src/mc/world/level/ScatterParams.h index 0ec4ea8230..6329fb5649 100644 --- a/src/mc/world/level/ScatterParams.h +++ b/src/mc/world/level/ScatterParams.h @@ -143,7 +143,7 @@ class ScatterParams { MCAPI ::BlockPos _getPos(uint stepIndex, ::BlockPos const& origin, ::Random& random, ::RenderParams& molangParams) const; - MCAPI void _parseExpressionNodeFloat( + MCFOLD void _parseExpressionNodeFloat( ::CompoundTag const& tag, ::std::string const& tagName, ::std::string const& tagNameType, diff --git a/src/mc/world/level/ServerEventCoordinatorManager.h b/src/mc/world/level/ServerEventCoordinatorManager.h index 07feef0f60..efa798d76d 100644 --- a/src/mc/world/level/ServerEventCoordinatorManager.h +++ b/src/mc/world/level/ServerEventCoordinatorManager.h @@ -68,13 +68,13 @@ class ServerEventCoordinatorManager : public ::EventCoordinatorManager { public: // virtual function thunks // NOLINTBEGIN - MCAPI ::Bedrock::NonOwnerPointer<::ServerPlayerEventCoordinator> $getServerPlayerEventCoordinator(); + MCFOLD ::Bedrock::NonOwnerPointer<::ServerPlayerEventCoordinator> $getServerPlayerEventCoordinator(); - MCAPI ::Bedrock::NotNullNonOwnerPtr<::LevelEventCoordinator> $getLevelEventCoordinator(); + MCFOLD ::Bedrock::NotNullNonOwnerPtr<::LevelEventCoordinator> $getLevelEventCoordinator(); MCAPI ::Bedrock::NonOwnerPointer<::ServerLevelEventCoordinator> $getServerLevelEventCoordinator(); - MCAPI ::Bedrock::NonOwnerPointer<::ServerNetworkEventCoordinator> $getServerNetworkEventCoordinator(); + MCFOLD ::Bedrock::NonOwnerPointer<::ServerNetworkEventCoordinator> $getServerNetworkEventCoordinator(); // NOLINTEND public: diff --git a/src/mc/world/level/SpawnSettings.h b/src/mc/world/level/SpawnSettings.h index 131d4e5a2d..e19d9b3914 100644 --- a/src/mc/world/level/SpawnSettings.h +++ b/src/mc/world/level/SpawnSettings.h @@ -37,6 +37,6 @@ struct SpawnSettings { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/world/level/TempEPtrManager.h b/src/mc/world/level/TempEPtrManager.h index d1ae75c8a6..bc869c4892 100644 --- a/src/mc/world/level/TempEPtrManager.h +++ b/src/mc/world/level/TempEPtrManager.h @@ -34,6 +34,6 @@ class TempEPtrManager { public: // constructor thunks // NOLINTBEGIN - MCAPI void* $ctor(); + MCFOLD void* $ctor(); // NOLINTEND }; diff --git a/src/mc/world/level/TickDeltaTimeManager.h b/src/mc/world/level/TickDeltaTimeManager.h index e13da0c316..928ad0e7ce 100644 --- a/src/mc/world/level/TickDeltaTimeManager.h +++ b/src/mc/world/level/TickDeltaTimeManager.h @@ -28,7 +28,7 @@ class TickDeltaTimeManager { MCAPI void captureDeltaTime(); - MCAPI double getTickDeltaTime() const; + MCFOLD double getTickDeltaTime() const; MCAPI ~TickDeltaTimeManager(); // NOLINTEND @@ -42,6 +42,6 @@ class TickDeltaTimeManager { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/world/level/TransactionalWorldBlockTarget.h b/src/mc/world/level/TransactionalWorldBlockTarget.h index 559029d75d..d734b72729 100644 --- a/src/mc/world/level/TransactionalWorldBlockTarget.h +++ b/src/mc/world/level/TransactionalWorldBlockTarget.h @@ -138,20 +138,20 @@ class TransactionalWorldBlockTarget : public ::IBlockWorldGenAPI { // NOLINTBEGIN MCAPI ::Block const& $getBlock(::BlockPos const& pos) const; - MCAPI ::Block const& $getBlockNoBoundsCheck(::BlockPos const& pos) const; + MCFOLD ::Block const& $getBlockNoBoundsCheck(::BlockPos const& pos) const; - MCAPI ::Block const& $getExtraBlock(::BlockPos const& pos) const; + MCFOLD ::Block const& $getExtraBlock(::BlockPos const& pos) const; - MCAPI ::Block const* $tryGetLiquidBlock(::BlockPos const& pos) const; + MCFOLD ::Block const* $tryGetLiquidBlock(::BlockPos const& pos) const; MCAPI ::gsl::span<::BlockDataFetchResult<::Block> const> $fetchBlocksInBox(::BoundingBox const& box, ::std::function predicate); - MCAPI bool $hasBiomeTag(uint64 tagNameHash, ::BlockPos const& pos) const; + MCFOLD bool $hasBiomeTag(uint64 tagNameHash, ::BlockPos const& pos) const; MCAPI bool $setBlock(::BlockPos const& pos, ::Block const& newBlock, int updateFlags); - MCAPI bool $setBlockSimple(::BlockPos const& pos, ::Block const& block); + MCFOLD bool $setBlockSimple(::BlockPos const& pos, ::Block const& block); MCAPI bool $apply() const; @@ -159,17 +159,17 @@ class TransactionalWorldBlockTarget : public ::IBlockWorldGenAPI { MCAPI bool $mayPlace(::BlockPos const& pos, ::Block const& block) const; - MCAPI bool $canSurvive(::BlockPos const& pos, ::Block const& block) const; + MCFOLD bool $canSurvive(::BlockPos const& pos, ::Block const& block) const; - MCAPI bool $canBeBuiltOver(::BlockPos const& pos, ::Block const& block) const; + MCFOLD bool $canBeBuiltOver(::BlockPos const& pos, ::Block const& block) const; MCAPI short $getMaxHeight() const; MCAPI short $getMinHeight() const; - MCAPI bool $shimPlaceForOldFeatures(::Feature const&, ::BlockPos const&, ::Random&) const; + MCFOLD bool $shimPlaceForOldFeatures(::Feature const&, ::BlockPos const&, ::Random&) const; - MCAPI short $getHeightmap(int x, int z); + MCFOLD short $getHeightmap(int x, int z); MCAPI bool $isLegacyLevel(); @@ -181,9 +181,9 @@ class TransactionalWorldBlockTarget : public ::IBlockWorldGenAPI { MCAPI ::LevelData const& $getLevelData() const; - MCAPI ::WorldGenContext const& $getContext(); + MCFOLD ::WorldGenContext const& $getContext(); - MCAPI void $disableBlockSimple(); + MCFOLD void $disableBlockSimple(); // NOLINTEND public: diff --git a/src/mc/world/level/TrialSpawner.h b/src/mc/world/level/TrialSpawner.h index accb817a19..f7c9c148b9 100644 --- a/src/mc/world/level/TrialSpawner.h +++ b/src/mc/world/level/TrialSpawner.h @@ -65,7 +65,7 @@ class TrialSpawner { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; @@ -134,7 +134,7 @@ class TrialSpawner { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/world/level/UniqueIDManager.h b/src/mc/world/level/UniqueIDManager.h index 61f7928ceb..73bd0f5be4 100644 --- a/src/mc/world/level/UniqueIDManager.h +++ b/src/mc/world/level/UniqueIDManager.h @@ -28,7 +28,7 @@ class UniqueIDManager { public: // member functions // NOLINTBEGIN - MCAPI ::ActorUniqueID getNewUniqueID(); + MCFOLD ::ActorUniqueID getNewUniqueID(); // NOLINTEND public: diff --git a/src/mc/world/level/VanillaActorEventListenerManager.h b/src/mc/world/level/VanillaActorEventListenerManager.h index 1bc5502150..e7d2e98144 100644 --- a/src/mc/world/level/VanillaActorEventListenerManager.h +++ b/src/mc/world/level/VanillaActorEventListenerManager.h @@ -39,6 +39,6 @@ class VanillaActorEventListenerManager { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/world/level/Weather.h b/src/mc/world/level/Weather.h index a2d368aa36..696f219b06 100644 --- a/src/mc/world/level/Weather.h +++ b/src/mc/world/level/Weather.h @@ -64,7 +64,7 @@ class Weather : public ::LevelListener { int* newHeightAfterPlacement ) const; - MCAPI float getFogLevel() const; + MCFOLD float getFogLevel() const; MCAPI float getLightningLevel(float a) const; @@ -82,9 +82,9 @@ class Weather : public ::LevelListener { MCAPI void serverTick(); - MCAPI void setSkyFlashTime(int flash); + MCFOLD void setSkyFlashTime(int flash); - MCAPI void setTargetLightningLevel(float lightningLevel); + MCFOLD void setTargetLightningLevel(float lightningLevel); MCAPI void setTargetRainLevel(float rainLevel); @@ -99,9 +99,9 @@ class Weather : public ::LevelListener { public: // static functions // NOLINTBEGIN - MCAPI static int calcLightningCycleTime(::IRandom& random); + MCFOLD static int calcLightningCycleTime(::IRandom& random); - MCAPI static int calcRainCycleTime(::IRandom& random); + MCFOLD static int calcRainCycleTime(::IRandom& random); MCAPI static int calcRainDuration(::IRandom& random); diff --git a/src/mc/world/level/WorldBlockTarget.h b/src/mc/world/level/WorldBlockTarget.h index ac0fb06171..de53b434db 100644 --- a/src/mc/world/level/WorldBlockTarget.h +++ b/src/mc/world/level/WorldBlockTarget.h @@ -136,21 +136,21 @@ class WorldBlockTarget : public ::IBlockWorldGenAPI { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND public: // virtual function thunks // NOLINTBEGIN - MCAPI bool $canGetChunk() const; + MCFOLD bool $canGetChunk() const; MCAPI ::LevelChunk* $getChunk(::ChunkPos const& pos); - MCAPI ::Block const& $getBlock(::BlockPos const& pos) const; + MCFOLD ::Block const& $getBlock(::BlockPos const& pos) const; - MCAPI ::Block const& $getBlockNoBoundsCheck(::BlockPos const& pos) const; + MCFOLD ::Block const& $getBlockNoBoundsCheck(::BlockPos const& pos) const; - MCAPI ::Block const& $getExtraBlock(::BlockPos const& pos) const; + MCFOLD ::Block const& $getExtraBlock(::BlockPos const& pos) const; MCAPI ::Block const* $tryGetLiquidBlock(::BlockPos const& pos) const; @@ -163,7 +163,7 @@ class WorldBlockTarget : public ::IBlockWorldGenAPI { MCAPI bool $setBlockSimple(::BlockPos const& pos, ::Block const& block); - MCAPI bool $apply() const; + MCFOLD bool $apply() const; MCAPI bool $placeStructure(::BlockPos const& pos, ::StructureTemplate& structure, ::StructureSettings& settings); @@ -191,9 +191,9 @@ class WorldBlockTarget : public ::IBlockWorldGenAPI { MCAPI ::LevelData const& $getLevelData() const; - MCAPI ::WorldGenContext const& $getContext(); + MCFOLD ::WorldGenContext const& $getContext(); - MCAPI void $disableBlockSimple(); + MCFOLD void $disableBlockSimple(); // NOLINTEND public: diff --git a/src/mc/world/level/WorldGenContext.h b/src/mc/world/level/WorldGenContext.h index e51a6fbcfe..303af92efc 100644 --- a/src/mc/world/level/WorldGenContext.h +++ b/src/mc/world/level/WorldGenContext.h @@ -28,6 +28,6 @@ struct WorldGenContext { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/world/level/biome/Biome.h b/src/mc/world/level/biome/Biome.h index ea623f32a5..826f9abd41 100644 --- a/src/mc/world/level/biome/Biome.h +++ b/src/mc/world/level/biome/Biome.h @@ -107,7 +107,7 @@ class Biome { MCAPI float getDefaultBiomeTemperature() const; - MCAPI float getDownfall() const; + MCFOLD float getDownfall() const; MCAPI int getMapBirchFoliageColor() const; @@ -117,11 +117,11 @@ class Biome { MCAPI int getMapGrassColor(::BlockPos const& pos) const; - MCAPI ::std::array<::std::vector<::std::shared_ptr<::MobSpawnerData>>, 8>& getMobMapMutable(); + MCFOLD ::std::array<::std::vector<::std::shared_ptr<::MobSpawnerData>>, 8>& getMobMapMutable(); - MCAPI ::std::vector<::std::shared_ptr<::MobSpawnerData>> const& getMobs() const; + MCFOLD ::std::vector<::std::shared_ptr<::MobSpawnerData>> const& getMobs() const; - MCAPI ::std::vector<::std::shared_ptr<::MobSpawnerData>>& getMobsMutable(); + MCFOLD ::std::vector<::std::shared_ptr<::MobSpawnerData>>& getMobsMutable(); MCAPI int getSnowAccumulationLayers() const; diff --git a/src/mc/world/level/biome/BiomeManager.h b/src/mc/world/level/biome/BiomeManager.h index 03c3f5f7a9..5bc0f6c783 100644 --- a/src/mc/world/level/biome/BiomeManager.h +++ b/src/mc/world/level/biome/BiomeManager.h @@ -50,7 +50,7 @@ class BiomeManager { MCAPI ::BiomeComponentFactory& getBiomeComponentFactory(); - MCAPI ::BiomeRegistry& getBiomeRegistry(); + MCFOLD ::BiomeRegistry& getBiomeRegistry(); MCAPI ::SurfaceBuilderRegistry& getSurfaceBuilderRegistry(); diff --git a/src/mc/world/level/biome/BiomeSource3d.h b/src/mc/world/level/biome/BiomeSource3d.h index 82b704d4ed..ee80a73c31 100644 --- a/src/mc/world/level/biome/BiomeSource3d.h +++ b/src/mc/world/level/biome/BiomeSource3d.h @@ -106,7 +106,7 @@ class BiomeSource3d : public ::BiomeSource { MCAPI bool $containsOnly(int xo, int yo, int zo, int r, ::gsl::span allowed) const; - MCAPI ::Biome const* $getBiome(::BlockPos const& blockPos) const; + MCFOLD ::Biome const* $getBiome(::BlockPos const& blockPos) const; MCAPI ::Biome const* $getBiome(::GetBiomeOptions const& getBiomeOptions) const; diff --git a/src/mc/world/level/biome/MobSpawnHerdInfo.h b/src/mc/world/level/biome/MobSpawnHerdInfo.h index 92d2917f08..d055869f96 100644 --- a/src/mc/world/level/biome/MobSpawnHerdInfo.h +++ b/src/mc/world/level/biome/MobSpawnHerdInfo.h @@ -52,6 +52,6 @@ struct MobSpawnHerdInfo { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/world/level/biome/MobSpawnRules.h b/src/mc/world/level/biome/MobSpawnRules.h index 1b0a59beee..4d21a3169a 100644 --- a/src/mc/world/level/biome/MobSpawnRules.h +++ b/src/mc/world/level/biome/MobSpawnRules.h @@ -79,23 +79,23 @@ class MobSpawnRules { MCAPI ::std::pair const getDelayRange() const; - MCAPI int getDelaySpawnChance() const; + MCFOLD int getDelaySpawnChance() const; - MCAPI ::std::vector<::MobSpawnerPermutation> const& getGuaranteedPermutations() const; + MCFOLD ::std::vector<::MobSpawnerPermutation> const& getGuaranteedPermutations() const; - MCAPI ::std::vector<::MobSpawnHerdInfo>& getHerdListMutable(); + MCFOLD ::std::vector<::MobSpawnHerdInfo>& getHerdListMutable(); MCAPI ::std::string const getMobToDelayId() const; - MCAPI ::std::vector<::MobSpawnerPermutation> const& getPermutations() const; + MCFOLD ::std::vector<::MobSpawnerPermutation> const& getPermutations() const; MCAPI bool getPersistence() const; MCAPI int getPopulationCap(::SpawnConditions const& conditions) const; - MCAPI ::std::vector<::BlockDescriptor> const& getSpawnAboveBlockList() const; + MCFOLD ::std::vector<::BlockDescriptor> const& getSpawnAboveBlockList() const; - MCAPI ::std::vector<::BlockDescriptor>& getSpawnAboveBlockListMutable(); + MCFOLD ::std::vector<::BlockDescriptor>& getSpawnAboveBlockListMutable(); MCAPI int getSpawnCount( ::SpawnConditions const& conditions, @@ -104,17 +104,17 @@ class MobSpawnRules { ::MobSpawnHerdInfo const& herdInfo ) const; - MCAPI ::std::vector<::BlockDescriptor> const& getSpawnOnBlockList() const; + MCFOLD ::std::vector<::BlockDescriptor> const& getSpawnOnBlockList() const; - MCAPI ::std::vector<::BlockDescriptor>& getSpawnOnBlockListMutable(); + MCFOLD ::std::vector<::BlockDescriptor>& getSpawnOnBlockListMutable(); - MCAPI ::std::vector<::BlockDescriptor> const& getSpawnOnBlockPreventedList() const; + MCFOLD ::std::vector<::BlockDescriptor> const& getSpawnOnBlockPreventedList() const; - MCAPI ::std::vector<::BlockDescriptor>& getSpawnOnBlockPreventedListMutable(); + MCFOLD ::std::vector<::BlockDescriptor>& getSpawnOnBlockPreventedListMutable(); - MCAPI bool isLavaSpawner() const; + MCFOLD bool isLavaSpawner() const; - MCAPI bool isUnderwaterSpawner() const; + MCFOLD bool isUnderwaterSpawner() const; MCAPI ::MobSpawnRules& operator=(::MobSpawnRules&&); @@ -126,7 +126,7 @@ class MobSpawnRules { MCAPI ::MobSpawnRules& setBrightnessRange(int minBrightness, int maxBrightness, bool adjustForWeather); - MCAPI ::MobSpawnRules& setBubbleSpawner(bool isBubbleSpawner); + MCFOLD ::MobSpawnRules& setBubbleSpawner(bool isBubbleSpawner); MCAPI ::MobSpawnRules& setDelayRange(int min, int max, ::std::string const& id); @@ -155,7 +155,7 @@ class MobSpawnRules { MCAPI ::MobSpawnRules& setRarity(int rarity); - MCAPI ::MobSpawnRules& setSpawnDistanceCap(int max); + MCFOLD ::MobSpawnRules& setSpawnDistanceCap(int max); MCAPI ::MobSpawnRules& setSpawnDistances(int min, int max); diff --git a/src/mc/world/level/biome/MobSpawnerPermutation.h b/src/mc/world/level/biome/MobSpawnerPermutation.h index 39e4c62db8..2f8654b58e 100644 --- a/src/mc/world/level/biome/MobSpawnerPermutation.h +++ b/src/mc/world/level/biome/MobSpawnerPermutation.h @@ -27,6 +27,6 @@ class MobSpawnerPermutation : public ::WeightedRandom::WeighedRandomItem { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/world/level/biome/RTree.h b/src/mc/world/level/biome/RTree.h index db0f116f8c..975fe063cc 100644 --- a/src/mc/world/level/biome/RTree.h +++ b/src/mc/world/level/biome/RTree.h @@ -55,7 +55,7 @@ class RTree { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; @@ -102,6 +102,6 @@ class RTree { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/world/level/biome/TerrainShaper.h b/src/mc/world/level/biome/TerrainShaper.h index 0264a11401..6df392ddc4 100644 --- a/src/mc/world/level/biome/TerrainShaper.h +++ b/src/mc/world/level/biome/TerrainShaper.h @@ -26,13 +26,13 @@ class TerrainShaper { public: // static functions // NOLINTBEGIN - MCAPI static float getContinents(::TerrainShaper::Point const& point); + MCFOLD static float getContinents(::TerrainShaper::Point const& point); - MCAPI static float getErosion(::TerrainShaper::Point const& point); + MCFOLD static float getErosion(::TerrainShaper::Point const& point); - MCAPI static float getRidges(::TerrainShaper::Point const& point); + MCFOLD static float getRidges(::TerrainShaper::Point const& point); - MCAPI static float getWeirdness(::TerrainShaper::Point const& point); + MCFOLD static float getWeirdness(::TerrainShaper::Point const& point); // NOLINTEND public: diff --git a/src/mc/world/level/biome/component_glue/MultinoiseGenerationRulesBiomeComponentGlue.h b/src/mc/world/level/biome/component_glue/MultinoiseGenerationRulesBiomeComponentGlue.h index 2a016bcb5f..2ef1bbbe3f 100644 --- a/src/mc/world/level/biome/component_glue/MultinoiseGenerationRulesBiomeComponentGlue.h +++ b/src/mc/world/level/biome/component_glue/MultinoiseGenerationRulesBiomeComponentGlue.h @@ -38,7 +38,7 @@ struct MultinoiseGenerationRulesBiomeComponentGlue : public ::IBiomeComponentGlu public: // virtual function thunks // NOLINTBEGIN - MCAPI bool $resolveAndValidate(::SharedTypes::v1_20_60::IBiomeJsonComponent const&, ::BiomeRegistry const&); + MCFOLD bool $resolveAndValidate(::SharedTypes::v1_20_60::IBiomeJsonComponent const&, ::BiomeRegistry const&); MCAPI void $applyToBiome(::Biome& biome, ::SharedTypes::v1_20_60::IBiomeJsonComponent const& biomeJsonComponent) const; diff --git a/src/mc/world/level/biome/component_glue/TagsBiomeComponentGlue.h b/src/mc/world/level/biome/component_glue/TagsBiomeComponentGlue.h index c4a5164fc8..8d01c49318 100644 --- a/src/mc/world/level/biome/component_glue/TagsBiomeComponentGlue.h +++ b/src/mc/world/level/biome/component_glue/TagsBiomeComponentGlue.h @@ -38,7 +38,7 @@ struct TagsBiomeComponentGlue : public ::IBiomeComponentGlue { public: // virtual function thunks // NOLINTBEGIN - MCAPI bool $resolveAndValidate(::SharedTypes::v1_20_60::IBiomeJsonComponent const&, ::BiomeRegistry const&); + MCFOLD bool $resolveAndValidate(::SharedTypes::v1_20_60::IBiomeJsonComponent const&, ::BiomeRegistry const&); MCAPI void $applyToBiome(::Biome& biome, ::SharedTypes::v1_20_60::IBiomeJsonComponent const& biomeJsonComponent) const; diff --git a/src/mc/world/level/biome/component_glue/TheEndSurfaceBiomeComponentGlue.h b/src/mc/world/level/biome/component_glue/TheEndSurfaceBiomeComponentGlue.h index 9593b6bbae..b47aa37594 100644 --- a/src/mc/world/level/biome/component_glue/TheEndSurfaceBiomeComponentGlue.h +++ b/src/mc/world/level/biome/component_glue/TheEndSurfaceBiomeComponentGlue.h @@ -36,7 +36,7 @@ struct TheEndSurfaceBiomeComponentGlue : public ::IBiomeComponentGlue { public: // virtual function thunks // NOLINTBEGIN - MCAPI bool $resolveAndValidate(::SharedTypes::v1_20_60::IBiomeJsonComponent const&, ::BiomeRegistry const&); + MCFOLD bool $resolveAndValidate(::SharedTypes::v1_20_60::IBiomeJsonComponent const&, ::BiomeRegistry const&); MCAPI void $applyToBiome(::Biome& biome, ::SharedTypes::v1_20_60::IBiomeJsonComponent const&) const; // NOLINTEND diff --git a/src/mc/world/level/biome/components/BiomeComponentStorage.h b/src/mc/world/level/biome/components/BiomeComponentStorage.h index 8e33f44b85..262ad87897 100644 --- a/src/mc/world/level/biome/components/BiomeComponentStorage.h +++ b/src/mc/world/level/biome/components/BiomeComponentStorage.h @@ -22,7 +22,7 @@ class BiomeComponentStorage { public: // member functions // NOLINTBEGIN - MCAPI bool _addingComponentsIsAllowed() const; + MCFOLD bool _addingComponentsIsAllowed() const; MCAPI bool _hasComponent(::Bedrock::typeid_t typeId) const; @@ -36,6 +36,6 @@ class BiomeComponentStorage { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/world/level/biome/components/SurfaceMaterialAdjustmentAttributes.h b/src/mc/world/level/biome/components/SurfaceMaterialAdjustmentAttributes.h index d1675dc28e..47adf3b8fb 100644 --- a/src/mc/world/level/biome/components/SurfaceMaterialAdjustmentAttributes.h +++ b/src/mc/world/level/biome/components/SurfaceMaterialAdjustmentAttributes.h @@ -84,7 +84,7 @@ struct SurfaceMaterialAdjustmentAttributes : public ::BiomeComponentBase { int heightMax ) const; - MCAPI void parseExpressionNodeFloat( + MCFOLD void parseExpressionNodeFloat( ::CompoundTag const& tag, ::std::string const& tagName, ::std::string const& tagNameType, diff --git a/src/mc/world/level/biome/components/SurfaceMaterialAdjustmentEvaluated.h b/src/mc/world/level/biome/components/SurfaceMaterialAdjustmentEvaluated.h index e5768900d4..06f5b789a7 100644 --- a/src/mc/world/level/biome/components/SurfaceMaterialAdjustmentEvaluated.h +++ b/src/mc/world/level/biome/components/SurfaceMaterialAdjustmentEvaluated.h @@ -47,6 +47,6 @@ struct SurfaceMaterialAdjustmentEvaluated { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/world/level/biome/glue/BiomeJsonDocumentGlue.h b/src/mc/world/level/biome/glue/BiomeJsonDocumentGlue.h index 5ed68cb553..9b4997cd4b 100644 --- a/src/mc/world/level/biome/glue/BiomeJsonDocumentGlue.h +++ b/src/mc/world/level/biome/glue/BiomeJsonDocumentGlue.h @@ -47,7 +47,7 @@ struct BiomeJsonDocumentGlue { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/world/level/biome/registry/BiomeComponentFactory.h b/src/mc/world/level/biome/registry/BiomeComponentFactory.h index 5c163a2d01..f2bc44b02e 100644 --- a/src/mc/world/level/biome/registry/BiomeComponentFactory.h +++ b/src/mc/world/level/biome/registry/BiomeComponentFactory.h @@ -44,7 +44,7 @@ class BiomeComponentFactory { public: // member functions // NOLINTBEGIN - MCAPI ::BiomeJsonDocumentGlue& getBiomeJsonDocumentGlue(); + MCFOLD ::BiomeJsonDocumentGlue& getBiomeJsonDocumentGlue(); MCAPI void registrationFinished(); diff --git a/src/mc/world/level/biome/registry/BiomeRegistry.h b/src/mc/world/level/biome/registry/BiomeRegistry.h index e8a1d3be2e..019a1c6787 100644 --- a/src/mc/world/level/biome/registry/BiomeRegistry.h +++ b/src/mc/world/level/biome/registry/BiomeRegistry.h @@ -57,7 +57,7 @@ class BiomeRegistry : public ::Bedrock::EnableNonOwnerReferences { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; @@ -107,15 +107,15 @@ class BiomeRegistry : public ::Bedrock::EnableNonOwnerReferences { MCAPI void _save(::LevelStorage& levelStorage) const; - MCAPI void forEachBiome(::std::function callback) const; + MCFOLD void forEachBiome(::std::function callback) const; - MCAPI void forEachNonConstBiome(::std::function callback); + MCFOLD void forEachNonConstBiome(::std::function callback); MCAPI ::std::vector<::Biome const*> getBiomesInDimension(::DimensionType type) const; MCAPI ::TagRegistry<::IDType<::BiomeTagIDType>, ::IDType<::BiomeTagSetIDType>> const& getTagRegistry() const; - MCAPI ::TagRegistry<::IDType<::BiomeTagIDType>, ::IDType<::BiomeTagSetIDType>>& getTagRegistry(); + MCFOLD ::TagRegistry<::IDType<::BiomeTagIDType>, ::IDType<::BiomeTagSetIDType>>& getTagRegistry(); MCAPI void initServerFromPacks(::ResourcePackManager& loader, ::IWorldRegistriesProvider& worldRegistries); diff --git a/src/mc/world/level/biome/registry/biome_json_document_upgraders/UpgraderFrom_v1_13_To_v1_20_60.h b/src/mc/world/level/biome/registry/biome_json_document_upgraders/UpgraderFrom_v1_13_To_v1_20_60.h index 950d48cd5c..980748334c 100644 --- a/src/mc/world/level/biome/registry/biome_json_document_upgraders/UpgraderFrom_v1_13_To_v1_20_60.h +++ b/src/mc/world/level/biome/registry/biome_json_document_upgraders/UpgraderFrom_v1_13_To_v1_20_60.h @@ -56,9 +56,9 @@ class UpgraderFrom_v1_13_To_v1_20_60 : public ::CerealSchemaUpgrade { public: // virtual function thunks // NOLINTBEGIN - MCAPI bool $previousSchema(::rapidjson::GenericValue< - ::rapidjson::UTF8, - ::rapidjson::MemoryPoolAllocator<::rapidjson::CrtAllocator>> const& document) const; + MCFOLD bool $previousSchema(::rapidjson::GenericValue< + ::rapidjson::UTF8, + ::rapidjson::MemoryPoolAllocator<::rapidjson::CrtAllocator>> const& document) const; MCAPI void $upgradeToNext( ::rapidjson::GenericDocument< diff --git a/src/mc/world/level/biome/source/BiomeArea.h b/src/mc/world/level/biome/source/BiomeArea.h index daa277c94b..245c6949f4 100644 --- a/src/mc/world/level/biome/source/BiomeArea.h +++ b/src/mc/world/level/biome/source/BiomeArea.h @@ -36,6 +36,6 @@ class BiomeArea { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/world/level/biome/source/FixedBiomeSource.h b/src/mc/world/level/biome/source/FixedBiomeSource.h index b06e4745eb..e3a4bc6960 100644 --- a/src/mc/world/level/biome/source/FixedBiomeSource.h +++ b/src/mc/world/level/biome/source/FixedBiomeSource.h @@ -84,11 +84,11 @@ class FixedBiomeSource : public ::BiomeSource { MCAPI bool $containsOnly(int, int, int, int, ::gsl::span allowed) const; - MCAPI ::Biome const* $getBiome(::BlockPos const& blockPos) const; + MCFOLD ::Biome const* $getBiome(::BlockPos const& blockPos) const; - MCAPI ::Biome const* $getBiome(::GetBiomeOptions const& getBiomeOptions) const; + MCFOLD ::Biome const* $getBiome(::GetBiomeOptions const& getBiomeOptions) const; - MCAPI ::Biome const* $getBiome(int blockX, int blockY, int blockZ) const; + MCFOLD ::Biome const* $getBiome(int blockX, int blockY, int blockZ) const; MCAPI ::BiomeArea $getBiomeArea(::BoundingBox const& area, uint scale) const; diff --git a/src/mc/world/level/biome/surface/vanilla_surface_builders/TheEndSurfaceBuilder.h b/src/mc/world/level/biome/surface/vanilla_surface_builders/TheEndSurfaceBuilder.h index 8d084ae994..6be65709b1 100644 --- a/src/mc/world/level/biome/surface/vanilla_surface_builders/TheEndSurfaceBuilder.h +++ b/src/mc/world/level/biome/surface/vanilla_surface_builders/TheEndSurfaceBuilder.h @@ -35,7 +35,7 @@ class TheEndSurfaceBuilder : public ::ISurfaceBuilder { public: // virtual function thunks // NOLINTBEGIN - MCAPI void $init(::Biome&, uint); + MCFOLD void $init(::Biome&, uint); MCAPI void $buildSurfaceAt(::ISurfaceBuilder::BuildParameters const& parameters) const; // NOLINTEND diff --git a/src/mc/world/level/block/AbstractCandleBlock.h b/src/mc/world/level/block/AbstractCandleBlock.h index f7c6db9a29..3e3ee82a7a 100644 --- a/src/mc/world/level/block/AbstractCandleBlock.h +++ b/src/mc/world/level/block/AbstractCandleBlock.h @@ -69,7 +69,7 @@ class AbstractCandleBlock : public ::BlockLegacy { // NOLINTBEGIN MCAPI AbstractCandleBlock(::std::string const& nameId, int id, ::Material const& material); - MCAPI void _checkForWaterlogging(::BlockSource& region, ::BlockPos const& pos) const; + MCFOLD void _checkForWaterlogging(::BlockSource& region, ::BlockPos const& pos) const; MCAPI void _extinguish(::Actor* extinguisher, ::Block const& block, ::BlockSource& region, ::BlockPos const& pos) const; @@ -94,19 +94,19 @@ class AbstractCandleBlock : public ::BlockLegacy { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND public: // virtual function thunks // NOLINTBEGIN - MCAPI bool $hasVariableLighting() const; + MCFOLD bool $hasVariableLighting() const; - MCAPI bool $isInteractiveBlock() const; + MCFOLD bool $isInteractiveBlock() const; - MCAPI bool $isLavaBlocking() const; + MCFOLD bool $isLavaBlocking() const; - MCAPI void $neighborChanged(::BlockSource& region, ::BlockPos const& pos, ::BlockPos const& neighborPos) const; + MCFOLD void $neighborChanged(::BlockSource& region, ::BlockPos const& pos, ::BlockPos const& neighborPos) const; MCAPI void $tick(::BlockSource& region, ::BlockPos const& pos, ::Random& random) const; @@ -118,12 +118,12 @@ class AbstractCandleBlock : public ::BlockLegacy { MCAPI void $_onHitByActivatingAttack(::BlockSource& region, ::BlockPos const& pos, ::Actor*) const; - MCAPI int $_getNumCandles(::Block const&) const; + MCFOLD int $_getNumCandles(::Block const&) const; - MCAPI void + MCFOLD void $_iterateCandles(::Block const&, ::BlockPos const&, ::std::function callback) const; - MCAPI void $_tryLightOnFire(::BlockSource&, ::BlockPos const&, ::Actor*) const; + MCFOLD void $_tryLightOnFire(::BlockSource&, ::BlockPos const&, ::Actor*) const; // NOLINTEND public: diff --git a/src/mc/world/level/block/ActivatorRailBlock.h b/src/mc/world/level/block/ActivatorRailBlock.h index 4c46805171..d1aaa1dec2 100644 --- a/src/mc/world/level/block/ActivatorRailBlock.h +++ b/src/mc/world/level/block/ActivatorRailBlock.h @@ -48,7 +48,7 @@ class ActivatorRailBlock : public ::BaseRailBlock { public: // virtual function thunks // NOLINTBEGIN - MCAPI int $getVariant(::Block const& block) const; + MCFOLD int $getVariant(::Block const& block) const; MCAPI void $onRedstoneUpdate(::BlockSource& region, ::BlockPos const& pos, int strength, bool isFirstTime) const; // NOLINTEND diff --git a/src/mc/world/level/block/AirBlock.h b/src/mc/world/level/block/AirBlock.h index 649905f77a..a776c7e1f7 100644 --- a/src/mc/world/level/block/AirBlock.h +++ b/src/mc/world/level/block/AirBlock.h @@ -128,17 +128,17 @@ class AirBlock : public ::BlockLegacy { public: // virtual function thunks // NOLINTBEGIN - MCAPI ::AABB const& + MCFOLD ::AABB const& $getVisualShapeInWorld(::Block const&, ::IConstBlockSource const&, ::BlockPos const&, ::AABB&) const; - MCAPI ::AABB const& $getVisualShape(::Block const&, ::AABB&) const; + MCFOLD ::AABB const& $getVisualShape(::Block const&, ::AABB&) const; MCAPI ::AABB const& $getOutline(::Block const&, ::IConstBlockSource const&, ::BlockPos const&, ::AABB& bufferValue) const; - MCAPI bool $isObstructingChests(::BlockSource& region, ::BlockPos const& pos, ::Block const& thisBlock) const; + MCFOLD bool $isObstructingChests(::BlockSource& region, ::BlockPos const& pos, ::Block const& thisBlock) const; - MCAPI void $addAABBs( + MCFOLD void $addAABBs( ::Block const& block, ::IConstBlockSource const& region, ::BlockPos const& pos, @@ -146,7 +146,7 @@ class AirBlock : public ::BlockLegacy { ::std::vector<::AABB>& inoutBoxes ) const; - MCAPI bool $addCollisionShapes( + MCFOLD bool $addCollisionShapes( ::Block const& block, ::IConstBlockSource const& region, ::BlockPos const& pos, @@ -155,35 +155,35 @@ class AirBlock : public ::BlockLegacy { ::optional_ref<::GetCollisionShapeInterface const> entity ) const; - MCAPI ::AABB + MCFOLD ::AABB $getCollisionShape(::Block const&, ::IConstBlockSource const&, ::BlockPos const&, ::optional_ref<::GetCollisionShapeInterface const>) const; - MCAPI bool $checkIsPathable(::Actor& entity, ::BlockPos const& lastPathPos, ::BlockPos const& pathPos) const; + MCFOLD bool $checkIsPathable(::Actor& entity, ::BlockPos const& lastPathPos, ::BlockPos const& pathPos) const; - MCAPI bool $mayPick() const; + MCFOLD bool $mayPick() const; - MCAPI bool $mayPick(::BlockSource const& region, ::Block const& block, bool liquid) const; + MCFOLD bool $mayPick(::BlockSource const& region, ::Block const& block, bool liquid) const; - MCAPI bool $mayPlace(::BlockSource& region, ::BlockPos const& pos, uchar face) const; + MCFOLD bool $mayPlace(::BlockSource& region, ::BlockPos const& pos, uchar face) const; - MCAPI bool $mayPlace(::BlockSource& region, ::BlockPos const& pos) const; + MCFOLD bool $mayPlace(::BlockSource& region, ::BlockPos const& pos) const; - MCAPI bool $tryToPlace( + MCFOLD bool $tryToPlace( ::BlockSource& region, ::BlockPos const& pos, ::Block const& block, ::ActorBlockSyncMessage const* syncMsg ) const; - MCAPI void $tick(::BlockSource& region, ::BlockPos const& pos, ::Random& random) const; + MCFOLD void $tick(::BlockSource& region, ::BlockPos const& pos, ::Random& random) const; - MCAPI void $animateTick(::BlockSource& region, ::BlockPos const& pos, ::Random& random) const; + MCFOLD void $animateTick(::BlockSource& region, ::BlockPos const& pos, ::Random& random) const; - MCAPI void + MCFOLD void $destroy(::BlockSource& region, ::BlockPos const& pos, ::Block const& block, ::Actor* entitySource) const; - MCAPI ::Block const* $playerWillDestroy(::Player& player, ::BlockPos const& pos, ::Block const& block) const; + MCFOLD ::Block const* $playerWillDestroy(::Player& player, ::BlockPos const& pos, ::Block const& block) const; // NOLINTEND public: diff --git a/src/mc/world/level/block/AmethystBlock.h b/src/mc/world/level/block/AmethystBlock.h index f4920d26d2..f907b9b4ba 100644 --- a/src/mc/world/level/block/AmethystBlock.h +++ b/src/mc/world/level/block/AmethystBlock.h @@ -42,7 +42,7 @@ class AmethystBlock : public ::BlockLegacy { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND public: @@ -50,7 +50,7 @@ class AmethystBlock : public ::BlockLegacy { // NOLINTBEGIN MCAPI void $onProjectileHit(::BlockSource& region, ::BlockPos const& pos, ::Actor const&) const; - MCAPI bool $isSilentWhenJumpingOff() const; + MCFOLD bool $isSilentWhenJumpingOff() const; // NOLINTEND public: diff --git a/src/mc/world/level/block/AmethystClusterBlock.h b/src/mc/world/level/block/AmethystClusterBlock.h index 51616fd895..d8c0dcd666 100644 --- a/src/mc/world/level/block/AmethystClusterBlock.h +++ b/src/mc/world/level/block/AmethystClusterBlock.h @@ -86,21 +86,21 @@ class AmethystClusterBlock : public ::AmethystBlock { // NOLINTBEGIN MCAPI ::BlockLegacy& $init(); - MCAPI void $tick(::BlockSource& region, ::BlockPos const& pos, ::Random& random) const; + MCFOLD void $tick(::BlockSource& region, ::BlockPos const& pos, ::Random& random) const; MCAPI bool $canSurvive(::BlockSource& region, ::BlockPos const& pos) const; MCAPI bool $mayPlace(::BlockSource& region, ::BlockPos const& pos, uchar facing) const; - MCAPI bool $mayPlace(::BlockSource& region, ::BlockPos const& pos) const; + MCFOLD bool $mayPlace(::BlockSource& region, ::BlockPos const& pos) const; MCAPI void $neighborChanged(::BlockSource& region, ::BlockPos const& pos, ::BlockPos const& neighborPos) const; - MCAPI bool $canProvideSupport(::Block const& block, uchar face, ::BlockSupportType type) const; + MCFOLD bool $canProvideSupport(::Block const& block, uchar face, ::BlockSupportType type) const; MCAPI ::AABB const& $getVisualShape(::Block const& block, ::AABB& bufferAABB) const; - MCAPI bool $checkIsPathable(::Actor& entity, ::BlockPos const& lastPathPos, ::BlockPos const& pathPos) const; + MCFOLD bool $checkIsPathable(::Actor& entity, ::BlockPos const& lastPathPos, ::BlockPos const& pathPos) const; // NOLINTEND public: diff --git a/src/mc/world/level/block/AnvilBlock.h b/src/mc/world/level/block/AnvilBlock.h index 9b318a0eeb..c00c9db4f9 100644 --- a/src/mc/world/level/block/AnvilBlock.h +++ b/src/mc/world/level/block/AnvilBlock.h @@ -113,28 +113,28 @@ class AnvilBlock : public ::FallingBlock { MCAPI ::AABB const& $getOutline(::Block const& block, ::IConstBlockSource const&, ::BlockPos const& pos, ::AABB& bufferValue) const; - MCAPI bool $use(::Player&, ::BlockPos const&, uchar) const; + MCFOLD bool $use(::Player&, ::BlockPos const&, uchar) const; - MCAPI ::mce::Color $getDustColor(::Block const&) const; + MCFOLD ::mce::Color $getDustColor(::Block const&) const; - MCAPI ::std::string $getDustParticleName(::Block const&) const; + MCFOLD ::std::string $getDustParticleName(::Block const&) const; - MCAPI void $animateTick(::BlockSource& region, ::BlockPos const& pos, ::Random& random) const; + MCFOLD void $animateTick(::BlockSource& region, ::BlockPos const& pos, ::Random& random) const; - MCAPI bool $falling() const; + MCFOLD bool $falling() const; MCAPI void $onLand(::BlockSource& region, ::BlockPos const& pos) const; - MCAPI bool $isCraftingBlock() const; + MCFOLD bool $isCraftingBlock() const; - MCAPI bool $breaksFallingBlocks(::Block const& block, ::BaseGameVersion const version) const; + MCFOLD bool $breaksFallingBlocks(::Block const& block, ::BaseGameVersion const version) const; - MCAPI bool + MCFOLD bool $getLiquidClipVolume(::Block const& block, ::BlockSource& region, ::BlockPos const& pos, ::AABB& includeBox) const; - MCAPI bool $isInteractiveBlock() const; + MCFOLD bool $isInteractiveBlock() const; - MCAPI bool $canProvideSupport(::Block const&, uchar face, ::BlockSupportType type) const; + MCFOLD bool $canProvideSupport(::Block const&, uchar face, ::BlockSupportType type) const; // NOLINTEND public: diff --git a/src/mc/world/level/block/AzaleaBlock.h b/src/mc/world/level/block/AzaleaBlock.h index a6d0335a5e..d23b0d2c18 100644 --- a/src/mc/world/level/block/AzaleaBlock.h +++ b/src/mc/world/level/block/AzaleaBlock.h @@ -76,7 +76,7 @@ class AzaleaBlock : public ::BushBlock { public: // virtual function thunks // NOLINTBEGIN - MCAPI ::AABB $getCollisionShape( + MCFOLD ::AABB $getCollisionShape( ::Block const& block, ::IConstBlockSource const& region, ::BlockPos const& pos, @@ -86,11 +86,11 @@ class AzaleaBlock : public ::BushBlock { MCAPI bool $onFertilized(::BlockSource& region, ::BlockPos const& pos, ::Actor* actor, ::FertilizerType fType) const; - MCAPI bool $canBeFertilized(::BlockSource& region, ::BlockPos const& pos, ::Block const& aboveBlock) const; + MCFOLD bool $canBeFertilized(::BlockSource& region, ::BlockPos const& pos, ::Block const& aboveBlock) const; - MCAPI bool $canProvideMultifaceSupport(::Block const& block, uchar face) const; + MCFOLD bool $canProvideMultifaceSupport(::Block const& block, uchar face) const; - MCAPI bool $isLavaBlocking() const; + MCFOLD bool $isLavaBlocking() const; MCAPI bool $mayPlaceOn(::BlockSource& region, ::BlockPos const& pos) const; // NOLINTEND diff --git a/src/mc/world/level/block/BambooSaplingBlock.h b/src/mc/world/level/block/BambooSaplingBlock.h index 6b3347c752..d14e75aa7d 100644 --- a/src/mc/world/level/block/BambooSaplingBlock.h +++ b/src/mc/world/level/block/BambooSaplingBlock.h @@ -57,7 +57,7 @@ class BambooSaplingBlock : public ::SaplingBlock { virtual ::ItemInstance asItemInstance(::Block const&, ::BlockActor const*) const /*override*/; // vIndex: 48 - virtual bool isValidAuxValue(int auxValue) const /*override*/; + virtual bool isValidAuxValue(int value) const /*override*/; // vIndex: 0 virtual ~BambooSaplingBlock() /*override*/ = default; @@ -88,26 +88,26 @@ class BambooSaplingBlock : public ::SaplingBlock { // NOLINTBEGIN MCAPI void $randomTick(::BlockSource& region, ::BlockPos const& pos, ::Random& random) const; - MCAPI int $getVariant(::Block const& block) const; + MCFOLD int $getVariant(::Block const& block) const; MCAPI bool $onFertilized(::BlockSource& region, ::BlockPos const& pos, ::Actor* actor, ::FertilizerType fType) const; - MCAPI bool $canBeFertilized(::BlockSource& region, ::BlockPos const& pos, ::Block const& aboveBlock) const; + MCFOLD bool $canBeFertilized(::BlockSource& region, ::BlockPos const& pos, ::Block const& aboveBlock) const; - MCAPI void $neighborChanged(::BlockSource& region, ::BlockPos const& pos, ::BlockPos const& neighborPos) const; + MCFOLD void $neighborChanged(::BlockSource& region, ::BlockPos const& pos, ::BlockPos const& neighborPos) const; - MCAPI bool $isAuxValueRelevantForPicking() const; + MCFOLD bool $isAuxValueRelevantForPicking() const; MCAPI bool $mayPlace(::BlockSource& region, ::BlockPos const& pos) const; - MCAPI bool $canSurvive(::BlockSource& region, ::BlockPos const& pos) const; + MCFOLD bool $canSurvive(::BlockSource& region, ::BlockPos const& pos) const; MCAPI ::Vec3 $randomlyModifyPosition(::BlockPos const& pos) const; MCAPI ::ItemInstance $asItemInstance(::Block const&, ::BlockActor const*) const; - MCAPI bool $isValidAuxValue(int auxValue) const; + MCAPI bool $isValidAuxValue(int value) const; // NOLINTEND public: diff --git a/src/mc/world/level/block/BambooStalkBlock.h b/src/mc/world/level/block/BambooStalkBlock.h index ab6f51960c..ef49b185df 100644 --- a/src/mc/world/level/block/BambooStalkBlock.h +++ b/src/mc/world/level/block/BambooStalkBlock.h @@ -136,28 +136,28 @@ class BambooStalkBlock : public ::BlockLegacy { MCAPI void $randomTick(::BlockSource& region, ::BlockPos const& pos, ::Random& random) const; - MCAPI void $tick(::BlockSource& region, ::BlockPos const& pos, ::Random& random) const; + MCFOLD void $tick(::BlockSource& region, ::BlockPos const& pos, ::Random& random) const; MCAPI ::Block const& $getPlacementBlock(::Actor const& by, ::BlockPos const& pos, uchar face, ::Vec3 const& clickPos, int itemValue) const; - MCAPI bool $canSurvive(::BlockSource& region, ::BlockPos const& pos) const; + MCFOLD bool $canSurvive(::BlockSource& region, ::BlockPos const& pos) const; - MCAPI void $neighborChanged(::BlockSource& region, ::BlockPos const& pos, ::BlockPos const& neighborPos) const; + MCFOLD void $neighborChanged(::BlockSource& region, ::BlockPos const& pos, ::BlockPos const& neighborPos) const; MCAPI bool $onFertilized(::BlockSource& region, ::BlockPos const& pos, ::Actor* actor, ::FertilizerType fType) const; - MCAPI bool $mayConsumeFertilizer(::BlockSource& region) const; + MCFOLD bool $mayConsumeFertilizer(::BlockSource& region) const; - MCAPI bool $canBeFertilized(::BlockSource& region, ::BlockPos const& pos, ::Block const& aboveBlock) const; + MCFOLD bool $canBeFertilized(::BlockSource& region, ::BlockPos const& pos, ::Block const& aboveBlock) const; MCAPI bool $isValidAuxValue(int auxValue) const; MCAPI ::AABB const& $getVisualShape(::Block const& block, ::AABB&) const; - MCAPI bool $isLavaBlocking() const; + MCFOLD bool $isLavaBlocking() const; MCAPI bool $mayPlace(::BlockSource& region, ::BlockPos const& pos) const; diff --git a/src/mc/world/level/block/BannerBlock.h b/src/mc/world/level/block/BannerBlock.h index a5bee8f3ff..587bbd4473 100644 --- a/src/mc/world/level/block/BannerBlock.h +++ b/src/mc/world/level/block/BannerBlock.h @@ -112,23 +112,23 @@ class BannerBlock : public ::ActorBlock { public: // virtual function thunks // NOLINTBEGIN - MCAPI void $tick(::BlockSource& region, ::BlockPos const& pos, ::Random& random) const; + MCFOLD void $tick(::BlockSource& region, ::BlockPos const& pos, ::Random& random) const; MCAPI ::AABB const& $getVisualShape(::Block const& block, ::AABB&) const; - MCAPI ::AABB + MCFOLD ::AABB $getCollisionShape(::Block const&, ::IConstBlockSource const&, ::BlockPos const&, ::optional_ref<::GetCollisionShapeInterface const>) const; MCAPI void $neighborChanged(::BlockSource& region, ::BlockPos const& pos, ::BlockPos const& neighborPos) const; - MCAPI bool $checkIsPathable(::Actor& entity, ::BlockPos const& lastPathPos, ::BlockPos const& pathPos) const; + MCFOLD bool $checkIsPathable(::Actor& entity, ::BlockPos const& lastPathPos, ::BlockPos const& pathPos) const; MCAPI ::ItemInstance $asItemInstance(::Block const&, ::BlockActor const* blockActor) const; MCAPI bool $canSurvive(::BlockSource& region, ::BlockPos const& pos) const; - MCAPI int $getVariant(::Block const& block) const; + MCFOLD int $getVariant(::Block const& block) const; MCAPI void $_addHardCodedBlockComponents(::Experiments const&); // NOLINTEND diff --git a/src/mc/world/level/block/BarrelBlock.h b/src/mc/world/level/block/BarrelBlock.h index 41254a85bf..44bb64c022 100644 --- a/src/mc/world/level/block/BarrelBlock.h +++ b/src/mc/world/level/block/BarrelBlock.h @@ -86,15 +86,16 @@ class BarrelBlock : public ::FaceDirectionalBlock { MCAPI void $onRemove(::BlockSource& region, ::BlockPos const& pos) const; - MCAPI bool $isInteractiveBlock() const; + MCFOLD bool $isInteractiveBlock() const; - MCAPI bool $isContainerBlock() const; + MCFOLD bool $isContainerBlock() const; - MCAPI bool $isSignalSource() const; + MCFOLD bool $isSignalSource() const; - MCAPI bool $hasComparatorSignal() const; + MCFOLD bool $hasComparatorSignal() const; - MCAPI int $getComparatorSignal(::BlockSource& region, ::BlockPos const& pos, ::Block const& block, uchar dir) const; + MCFOLD int + $getComparatorSignal(::BlockSource& region, ::BlockPos const& pos, ::Block const& block, uchar dir) const; // NOLINTEND public: diff --git a/src/mc/world/level/block/BarrierBlock.h b/src/mc/world/level/block/BarrierBlock.h index dbdd9763c5..7c25ecd035 100644 --- a/src/mc/world/level/block/BarrierBlock.h +++ b/src/mc/world/level/block/BarrierBlock.h @@ -47,7 +47,7 @@ class BarrierBlock : public ::BlockLegacy { // NOLINTBEGIN MCAPI bool $canConnect(::Block const& otherBlock, uchar toOther, ::Block const& thisBlock) const; - MCAPI float $getShadeBrightness(::Block const& block) const; + MCFOLD float $getShadeBrightness(::Block const& block) const; // NOLINTEND public: diff --git a/src/mc/world/level/block/BaseBlockLocationIterator.h b/src/mc/world/level/block/BaseBlockLocationIterator.h index 873b0c9747..215a7b4977 100644 --- a/src/mc/world/level/block/BaseBlockLocationIterator.h +++ b/src/mc/world/level/block/BaseBlockLocationIterator.h @@ -47,15 +47,15 @@ class BaseBlockLocationIterator { MCAPI BaseBlockLocationIterator(::BlockPos const& min, ::BlockPos const& max, bool begin); - MCAPI bool done() const; + MCFOLD bool done() const; MCAPI bool operator!=(::BaseBlockLocationIterator const& rhs); - MCAPI ::BlockPos operator*() const; + MCFOLD ::BlockPos operator*() const; MCAPI ::BaseBlockLocationIterator& operator=(::BaseBlockLocationIterator const& other); - MCAPI void reset(); + MCFOLD void reset(); // NOLINTEND public: diff --git a/src/mc/world/level/block/BasePressurePlateBlock.h b/src/mc/world/level/block/BasePressurePlateBlock.h index ac68d2f571..165c07588d 100644 --- a/src/mc/world/level/block/BasePressurePlateBlock.h +++ b/src/mc/world/level/block/BasePressurePlateBlock.h @@ -116,7 +116,7 @@ class BasePressurePlateBlock : public ::BlockLegacy { checkPressed(::BlockSource& region, ::BlockPos const& pos, ::Actor* sourceEntity, int oldSignal, int newSignal) const; - MCAPI void onPlace(::BlockEvents::BlockPlaceEvent& eventData) const; + MCFOLD void onPlace(::BlockEvents::BlockPlaceEvent& eventData) const; // NOLINTEND public: @@ -136,19 +136,19 @@ class BasePressurePlateBlock : public ::BlockLegacy { // NOLINTBEGIN MCAPI ::AABB const& $getVisualShape(::Block const& block, ::AABB& bufferAABB) const; - MCAPI ::AABB + MCFOLD ::AABB $getCollisionShape(::Block const&, ::IConstBlockSource const&, ::BlockPos const&, ::optional_ref<::GetCollisionShapeInterface const>) const; - MCAPI int $getTickDelay() const; + MCFOLD int $getTickDelay() const; - MCAPI bool $checkIsPathable(::Actor& entity, ::BlockPos const& lastPathPos, ::BlockPos const& pathPos) const; + MCFOLD bool $checkIsPathable(::Actor& entity, ::BlockPos const& lastPathPos, ::BlockPos const& pathPos) const; MCAPI bool $mayPlace(::BlockSource& region, ::BlockPos const& pos) const; MCAPI bool $isAttachedTo(::BlockSource& region, ::BlockPos const& pos, ::BlockPos& outAttachedTo) const; - MCAPI bool $isSignalSource() const; + MCFOLD bool $isSignalSource() const; MCAPI void $tick(::BlockSource& region, ::BlockPos const& pos, ::Random& random) const; @@ -158,16 +158,16 @@ class BasePressurePlateBlock : public ::BlockLegacy { MCAPI void $setupRedstoneComponent(::BlockSource& region, ::BlockPos const& pos) const; - MCAPI void $neighborChanged(::BlockSource& region, ::BlockPos const& pos, ::BlockPos const& neighborPos) const; + MCFOLD void $neighborChanged(::BlockSource& region, ::BlockPos const& pos, ::BlockPos const& neighborPos) const; - MCAPI bool + MCFOLD bool $shouldConnectToRedstone(::BlockSource& region, ::BlockPos const& pos, ::Direction::Type direction) const; - MCAPI int $getVariant(::Block const& block) const; + MCFOLD int $getVariant(::Block const& block) const; - MCAPI bool $canSpawnOn(::Actor*) const; + MCFOLD bool $canSpawnOn(::Actor*) const; - MCAPI bool $canSurvive(::BlockSource& region, ::BlockPos const& pos) const; + MCFOLD bool $canSurvive(::BlockSource& region, ::BlockPos const& pos) const; MCAPI ::AABB const $getSensitiveAABB(::BlockPos const& pos) const; diff --git a/src/mc/world/level/block/BaseRailBlock.h b/src/mc/world/level/block/BaseRailBlock.h index 4942395984..62c8bc1e2c 100644 --- a/src/mc/world/level/block/BaseRailBlock.h +++ b/src/mc/world/level/block/BaseRailBlock.h @@ -75,7 +75,7 @@ class BaseRailBlock : public ::BlockLegacy { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; @@ -182,7 +182,7 @@ class BaseRailBlock : public ::BlockLegacy { // NOLINTBEGIN MCAPI ::AABB const& $getVisualShape(::Block const& block, ::AABB& bufferAABB) const; - MCAPI ::AABB + MCFOLD ::AABB $getCollisionShape(::Block const&, ::IConstBlockSource const&, ::BlockPos const&, ::optional_ref<::GetCollisionShapeInterface const>) const; @@ -194,13 +194,13 @@ class BaseRailBlock : public ::BlockLegacy { MCAPI void $onRedstoneUpdate(::BlockSource& region, ::BlockPos const& pos, int strength, bool isFirstTime) const; - MCAPI void $neighborChanged(::BlockSource& region, ::BlockPos const& pos, ::BlockPos const& neighborPos) const; + MCFOLD void $neighborChanged(::BlockSource& region, ::BlockPos const& pos, ::BlockPos const& neighborPos) const; - MCAPI bool $isRailBlock() const; + MCFOLD bool $isRailBlock() const; - MCAPI bool $canSpawnOn(::Actor*) const; + MCFOLD bool $canSpawnOn(::Actor*) const; - MCAPI bool $isLavaBlocking() const; + MCFOLD bool $isLavaBlocking() const; MCAPI void $onGraphicsModeChanged(::BlockGraphicsModeChangeContext const& context); diff --git a/src/mc/world/level/block/BeaconBlock.h b/src/mc/world/level/block/BeaconBlock.h index ff856a58fd..b56c79b0d3 100644 --- a/src/mc/world/level/block/BeaconBlock.h +++ b/src/mc/world/level/block/BeaconBlock.h @@ -47,9 +47,9 @@ class BeaconBlock : public ::ActorBlock { public: // virtual function thunks // NOLINTBEGIN - MCAPI bool $isInteractiveBlock() const; + MCFOLD bool $isInteractiveBlock() const; - MCAPI bool $use(::Player& player, ::BlockPos const& pos, uchar face) const; + MCFOLD bool $use(::Player& player, ::BlockPos const& pos, uchar face) const; // NOLINTEND public: diff --git a/src/mc/world/level/block/BedBlock.h b/src/mc/world/level/block/BedBlock.h index 74bd6d958c..c9a6246a06 100644 --- a/src/mc/world/level/block/BedBlock.h +++ b/src/mc/world/level/block/BedBlock.h @@ -142,13 +142,13 @@ class BedBlock : public ::BlockLegacy { // NOLINTBEGIN MCAPI bool $use(::Player& player, ::BlockPos const& pos, uchar face) const; - MCAPI bool $isInteractiveBlock() const; + MCFOLD bool $isInteractiveBlock() const; MCAPI int $getVariant(::Block const& block) const; MCAPI uchar $getMappedFace(uchar face, ::Block const& block) const; - MCAPI ::Block const* $getNextBlockPermutation(::Block const& currentBlock) const; + MCFOLD ::Block const* $getNextBlockPermutation(::Block const& currentBlock) const; MCAPI ::Block const* $playerWillDestroy(::Player& player, ::BlockPos const& pos, ::Block const& block) const; @@ -160,7 +160,7 @@ class BedBlock : public ::BlockLegacy { MCAPI void $updateEntityAfterFallOn(::BlockPos const& pos, ::UpdateEntityAfterFallOnInterface& entity) const; - MCAPI bool $isBounceBlock() const; + MCFOLD bool $isBounceBlock() const; MCAPI bool $canFillAtPos(::BlockSource& region, ::BlockPos const& pos, ::Block const& block) const; @@ -172,7 +172,7 @@ class BedBlock : public ::BlockLegacy { MCAPI bool $checkIsPathable(::Actor& entity, ::BlockPos const& lastPathPos, ::BlockPos const& pathPos) const; - MCAPI bool $canSpawnAt(::BlockSource const& region, ::BlockPos const& pos) const; + MCFOLD bool $canSpawnAt(::BlockSource const& region, ::BlockPos const& pos) const; MCAPI ::mce::Color $getMapColor(::BlockSource& source, ::BlockPos const& pos, ::Block const& block) const; diff --git a/src/mc/world/level/block/BedrockBlock.h b/src/mc/world/level/block/BedrockBlock.h index bef0c55ca2..f0bea01607 100644 --- a/src/mc/world/level/block/BedrockBlock.h +++ b/src/mc/world/level/block/BedrockBlock.h @@ -25,7 +25,7 @@ class BedrockBlock : public ::BlockLegacy { public: // constructor thunks // NOLINTBEGIN - MCAPI void* $ctor(::std::string const& nameId, int id); + MCFOLD void* $ctor(::std::string const& nameId, int id); // NOLINTEND public: @@ -37,7 +37,7 @@ class BedrockBlock : public ::BlockLegacy { public: // virtual function thunks // NOLINTBEGIN - MCAPI bool $canBeOriginalSurface() const; + MCFOLD bool $canBeOriginalSurface() const; // NOLINTEND public: diff --git a/src/mc/world/level/block/BeehiveBlock.h b/src/mc/world/level/block/BeehiveBlock.h index 978bcdde9b..111ce9cd71 100644 --- a/src/mc/world/level/block/BeehiveBlock.h +++ b/src/mc/world/level/block/BeehiveBlock.h @@ -123,7 +123,7 @@ class BeehiveBlock : public ::FaceDirectionalActorBlock { MCAPI void $animateTickBedrockLegacy(::BlockSource& region, ::BlockPos const& pos, ::Random& random) const; - MCAPI bool $hasComparatorSignal() const; + MCFOLD bool $hasComparatorSignal() const; MCAPI int $getComparatorSignal(::BlockSource& region, ::BlockPos const& pos, ::Block const& block, uchar dir) const; diff --git a/src/mc/world/level/block/BeetrootBlock.h b/src/mc/world/level/block/BeetrootBlock.h index b567a4eca9..a5318c696b 100644 --- a/src/mc/world/level/block/BeetrootBlock.h +++ b/src/mc/world/level/block/BeetrootBlock.h @@ -63,13 +63,13 @@ class BeetrootBlock : public ::CropBlock { // NOLINTBEGIN MCAPI ::ItemInstance const $getBaseSeed() const; - MCAPI int $getVariant(::Block const& block) const; + MCFOLD int $getVariant(::Block const& block) const; - MCAPI ::AABB + MCFOLD ::AABB $getCollisionShape(::Block const&, ::IConstBlockSource const&, ::BlockPos const&, ::optional_ref<::GetCollisionShapeInterface const>) const; - MCAPI ::AABB const& + MCFOLD ::AABB const& $getOutline(::Block const& block, ::IConstBlockSource const&, ::BlockPos const& pos, ::AABB& bufferValue) const; // NOLINTEND diff --git a/src/mc/world/level/block/BellBlock.h b/src/mc/world/level/block/BellBlock.h index f91fbeb745..7bc73e5efa 100644 --- a/src/mc/world/level/block/BellBlock.h +++ b/src/mc/world/level/block/BellBlock.h @@ -99,7 +99,7 @@ class BellBlock : public ::ActorBlock { MCAPI bool hasValidAttachment(::Block const& block, ::BlockSource& region, ::BlockPos const& pos) const; - MCAPI void onPlace(::BlockEvents::BlockPlaceEvent& eventData) const; + MCFOLD void onPlace(::BlockEvents::BlockPlaceEvent& eventData) const; // NOLINTEND public: @@ -123,7 +123,7 @@ class BellBlock : public ::ActorBlock { $getPlacementBlock(::Actor const& by, ::BlockPos const& pos, uchar face, ::Vec3 const& clickPos, int itemValue) const; - MCAPI void $tick(::BlockSource& region, ::BlockPos const& pos, ::Random& random) const; + MCFOLD void $tick(::BlockSource& region, ::BlockPos const& pos, ::Random& random) const; MCAPI bool $use(::Player& player, ::BlockPos const& pos, uchar) const; @@ -135,16 +135,16 @@ class BellBlock : public ::ActorBlock { MCAPI void $movedByPiston(::BlockSource& region, ::BlockPos const& pos) const; - MCAPI void $setupRedstoneComponent(::BlockSource& region, ::BlockPos const& pos) const; + MCFOLD void $setupRedstoneComponent(::BlockSource& region, ::BlockPos const& pos) const; - MCAPI bool + MCFOLD bool $shouldConnectToRedstone(::BlockSource& region, ::BlockPos const& pos, ::Direction::Type direction) const; MCAPI void $onProjectileHit(::BlockSource& region, ::BlockPos const& pos, ::Actor const& projectile) const; - MCAPI bool $isInteractiveBlock() const; + MCFOLD bool $isInteractiveBlock() const; - MCAPI bool $canConnect(::Block const&, uchar, ::Block const&) const; + MCFOLD bool $canConnect(::Block const&, uchar, ::Block const&) const; MCAPI void $_addHardCodedBlockComponents(::Experiments const&); diff --git a/src/mc/world/level/block/BigDripleafBlock.h b/src/mc/world/level/block/BigDripleafBlock.h index 1e4c4e831c..6ab75ede4c 100644 --- a/src/mc/world/level/block/BigDripleafBlock.h +++ b/src/mc/world/level/block/BigDripleafBlock.h @@ -155,7 +155,7 @@ class BigDripleafBlock : public ::BlockLegacy { MCAPI void $neighborChanged(::BlockSource& region, ::BlockPos const& pos, ::BlockPos const& neighborPos) const; - MCAPI void $setupRedstoneComponent(::BlockSource& region, ::BlockPos const& pos) const; + MCFOLD void $setupRedstoneComponent(::BlockSource& region, ::BlockPos const& pos) const; MCAPI void $onRedstoneUpdate(::BlockSource& region, ::BlockPos const& pos, int strength, bool isFirstTime) const; @@ -163,7 +163,7 @@ class BigDripleafBlock : public ::BlockLegacy { MCAPI void $onProjectileHit(::BlockSource& region, ::BlockPos const& pos, ::Actor const&) const; - MCAPI bool $isLavaBlocking() const; + MCFOLD bool $isLavaBlocking() const; MCAPI void $_addHardCodedBlockComponents(::Experiments const&); // NOLINTEND diff --git a/src/mc/world/level/block/Block.h b/src/mc/world/level/block/Block.h index a8cae15d3e..e325af85a5 100644 --- a/src/mc/world/level/block/Block.h +++ b/src/mc/world/level/block/Block.h @@ -252,7 +252,7 @@ class Block { MCAPI ::BlockEvents::BlockEventManager const& getEventManager() const; - MCAPI ::BlockEvents::BlockEventManager& getEventManager(); + MCFOLD ::BlockEvents::BlockEventManager& getEventManager(); MCAPI int getExperienceDrop(::Random& random) const; @@ -286,7 +286,7 @@ class Block { MCAPI bool getSecondPart(::BlockSource const& region, ::BlockPos const& pos, ::BlockPos& out) const; - MCAPI ::CompoundTag const& getSerializationId() const; + MCFOLD ::CompoundTag const& getSerializationId() const; MCAPI float getThickness() const; @@ -313,7 +313,7 @@ class Block { MCAPI bool ignoreEntitiesOnPistonMove() const; - MCAPI bool isAir() const; + MCFOLD bool isAir() const; MCAPI bool isAttachedTo(::BlockSource& region, ::BlockPos const& pos, ::BlockPos& outAttachedTo) const; @@ -361,7 +361,7 @@ class Block { MCAPI bool isSlabBlock() const; - MCAPI bool isSolid() const; + MCFOLD bool isSolid() const; MCAPI bool isSolidBlockingBlock() const; diff --git a/src/mc/world/level/block/BlockDescriptor.h b/src/mc/world/level/block/BlockDescriptor.h index 30a1e415d1..d6509333d6 100644 --- a/src/mc/world/level/block/BlockDescriptor.h +++ b/src/mc/world/level/block/BlockDescriptor.h @@ -62,7 +62,7 @@ class BlockDescriptor { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; @@ -140,7 +140,7 @@ class BlockDescriptor { MCAPI ::std::string const& getFullName() const; - MCAPI ::std::vector<::BlockDescriptor::State> const& getStates() const; + MCFOLD ::std::vector<::BlockDescriptor::State> const& getStates() const; MCAPI ::std::string const& getTagExpression() const; diff --git a/src/mc/world/level/block/BlockLegacy.h b/src/mc/world/level/block/BlockLegacy.h index 0504e44abb..45d69dc35f 100644 --- a/src/mc/world/level/block/BlockLegacy.h +++ b/src/mc/world/level/block/BlockLegacy.h @@ -927,7 +927,7 @@ class BlockLegacy { ::RenderParams& params ) const; - MCAPI ::BlockShape _getBlockShape() const; + MCFOLD ::BlockShape _getBlockShape() const; MCAPI ::std::optional _tryLookupAlteredStateCollection(uint64 stateId, ushort blockData) const; @@ -971,7 +971,7 @@ class BlockLegacy { MCAPI void forEachBlockStateInstance(::std::function callback) const; - MCAPI ::BlockActorType getBlockEntityType() const; + MCFOLD ::BlockActorType getBlockEntityType() const; MCAPI short getBlockItemId() const; @@ -979,7 +979,7 @@ class BlockLegacy { MCAPI ::BlockStateGroup* getBlockStateGroup(); - MCAPI int getBurnOdds() const; + MCFOLD int getBurnOdds() const; MCAPI ::std::vector<::CommandName> getCommandNames() const; @@ -987,31 +987,31 @@ class BlockLegacy { MCAPI void getDebugText(::std::vector<::std::string>& outputInfo, ::BlockPos const& debugPos) const; - MCAPI ::Block const& getDefaultState() const; + MCFOLD ::Block const& getDefaultState() const; - MCAPI ::std::string const& getDescriptionId() const; + MCFOLD ::std::string const& getDescriptionId() const; MCAPI float getDestroySpeed() const; - MCAPI ::BlockEvents::BlockEventManager& getEventManager(); + MCFOLD ::BlockEvents::BlockEventManager& getEventManager(); MCAPI float getExplosionResistance() const; - MCAPI int getFlameOdds() const; + MCFOLD int getFlameOdds() const; MCAPI float getFriction() const; MCAPI ::NoteBlockInstrument getInstrument() const; - MCAPI ::Material const& getMaterial() const; + MCFOLD ::Material const& getMaterial() const; - MCAPI ::std::string const& getNamespace() const; + MCFOLD ::std::string const& getNamespace() const; - MCAPI ::HashedString const& getRawNameHash() const; + MCFOLD ::HashedString const& getRawNameHash() const; MCAPI ::std::string const& getRawNameId() const; - MCAPI ::BaseGameVersion const& getRequiredBaseGameVersion() const; + MCFOLD ::BaseGameVersion const& getRequiredBaseGameVersion() const; MCAPI ::ResourceDrops getResourceDrops(::Block const& block, ::Randomize& randomize, ::ResourceDropsContext const& resourceDropsContext) @@ -1039,13 +1039,13 @@ class BlockLegacy { MCAPI bool isDataDrivingVanillaBlocksAndItems() const; - MCAPI bool isFullAndOpaque() const; + MCFOLD bool isFullAndOpaque() const; MCAPI bool isOpaqueFullBlock() const; MCAPI bool isSolid() const; - MCAPI bool isVanilla() const; + MCFOLD bool isVanilla() const; MCAPI bool matchesStates(::BlockLegacy const& blockType) const; @@ -1071,7 +1071,7 @@ class BlockLegacy { MCAPI ::BlockLegacy& setCreativeGroup(::std::string const& value); - MCAPI void setDefaultState(::Block const& block); + MCFOLD void setDefaultState(::Block const& block); MCAPI void setEnableDataDrivenVanillaBlocksAndItems(bool enabled); @@ -1101,7 +1101,7 @@ class BlockLegacy { MCAPI ::BlockLegacy& setMapColor(::mce::Color const& color); - MCAPI ::BlockLegacy& setMinRequiredBaseGameVersion(::BaseGameVersion const& baseGameVersion); + MCFOLD ::BlockLegacy& setMinRequiredBaseGameVersion(::BaseGameVersion const& baseGameVersion); MCAPI ::BlockLegacy& setNameId(::std::string const& id); @@ -1201,7 +1201,7 @@ class BlockLegacy { MCAPI ::Block const* $getNextBlockPermutation(::Block const& currentBlock) const; - MCAPI bool + MCFOLD bool $hasTag(::BlockSource& region, ::BlockPos const& pos, ::Block const& block, ::std::string const& tagName) const; MCAPI ::AABB @@ -1235,7 +1235,7 @@ class BlockLegacy { MCAPI ::AABB const& $getOutline(::Block const& block, ::IConstBlockSource const&, ::BlockPos const& pos, ::AABB& bufferValue) const; - MCAPI ::AABB const& + MCFOLD ::AABB const& $getVisualShapeInWorld(::Block const& block, ::IConstBlockSource const&, ::BlockPos const&, ::AABB& bufferAABB) const; @@ -1250,143 +1250,143 @@ class BlockLegacy { MCAPI ::Vec3 $randomlyModifyPosition(::BlockPos const& pos, int& seed) const; - MCAPI ::Vec3 $randomlyModifyPosition(::BlockPos const& pos) const; + MCFOLD ::Vec3 $randomlyModifyPosition(::BlockPos const& pos) const; - MCAPI void $onProjectileHit(::BlockSource&, ::BlockPos const&, ::Actor const&) const; + MCFOLD void $onProjectileHit(::BlockSource&, ::BlockPos const&, ::Actor const&) const; - MCAPI void $onLightningHit(::BlockSource& region, ::BlockPos const& pos) const; + MCFOLD void $onLightningHit(::BlockSource& region, ::BlockPos const& pos) const; - MCAPI bool $liquidCanFlowIntoFromDirection( + MCFOLD bool $liquidCanFlowIntoFromDirection( uchar flowIntoFacing, ::std::function<::Block const&(::BlockPos const&)> const& getBlock, ::BlockPos const& pos ) const; - MCAPI bool $hasVariableLighting() const; + MCFOLD bool $hasVariableLighting() const; - MCAPI bool $isStrippable(::Block const& srcBlock) const; + MCFOLD bool $isStrippable(::Block const& srcBlock) const; - MCAPI ::Block const& $getStrippedBlock(::Block const& srcBlock) const; + MCFOLD ::Block const& $getStrippedBlock(::Block const& srcBlock) const; MCAPI bool $canProvideMultifaceSupport(::Block const& block, uchar face) const; MCAPI bool $canConnect(::Block const&, uchar toOther, ::Block const& thisBlock) const; - MCAPI bool $isMovingBlock() const; + MCFOLD bool $isMovingBlock() const; - MCAPI ::CopperBehavior const* $tryGetCopperBehavior() const; + MCFOLD ::CopperBehavior const* $tryGetCopperBehavior() const; - MCAPI bool $isStemBlock() const; + MCFOLD bool $isStemBlock() const; - MCAPI bool $isContainerBlock() const; + MCFOLD bool $isContainerBlock() const; - MCAPI bool $isCraftingBlock() const; + MCFOLD bool $isCraftingBlock() const; MCAPI bool $isLavaBlocking() const; - MCAPI bool $isFenceBlock() const; + MCFOLD bool $isFenceBlock() const; - MCAPI bool $isFenceGateBlock() const; + MCFOLD bool $isFenceGateBlock() const; - MCAPI bool $isThinFenceBlock() const; + MCFOLD bool $isThinFenceBlock() const; - MCAPI bool $isWallBlock() const; + MCFOLD bool $isWallBlock() const; - MCAPI bool $isStairBlock() const; + MCFOLD bool $isStairBlock() const; - MCAPI bool $isSlabBlock() const; + MCFOLD bool $isSlabBlock() const; - MCAPI bool $isDoorBlock() const; + MCFOLD bool $isDoorBlock() const; - MCAPI bool $isRailBlock() const; + MCFOLD bool $isRailBlock() const; - MCAPI bool $isButtonBlock() const; + MCFOLD bool $isButtonBlock() const; - MCAPI bool $isLeverBlock() const; + MCFOLD bool $isLeverBlock() const; - MCAPI bool $isCandleCakeBlock() const; + MCFOLD bool $isCandleCakeBlock() const; - MCAPI bool $isMultifaceBlock() const; + MCFOLD bool $isMultifaceBlock() const; - MCAPI bool $isSignalSource() const; + MCFOLD bool $isSignalSource() const; - MCAPI bool $isConsumerComponent() const; + MCFOLD bool $isConsumerComponent() const; - MCAPI bool $canBeOriginalSurface() const; + MCFOLD bool $canBeOriginalSurface() const; - MCAPI bool $isSilentWhenJumpingOff() const; + MCFOLD bool $isSilentWhenJumpingOff() const; - MCAPI bool $isValidAuxValue(int value) const; + MCFOLD bool $isValidAuxValue(int value) const; - MCAPI bool $canFillAtPos(::BlockSource& region, ::BlockPos const& pos, ::Block const& block) const; + MCFOLD bool $canFillAtPos(::BlockSource& region, ::BlockPos const& pos, ::Block const& block) const; - MCAPI ::Block const& $sanitizeFillBlock(::Block const& block) const; + MCFOLD ::Block const& $sanitizeFillBlock(::Block const& block) const; - MCAPI void $onFillBlock(::BlockSource& region, ::BlockPos const& pos, ::Block const& block) const; + MCFOLD void $onFillBlock(::BlockSource& region, ::BlockPos const& pos, ::Block const& block) const; - MCAPI int $getDirectSignal(::BlockSource& region, ::BlockPos const& pos, int dir) const; + MCFOLD int $getDirectSignal(::BlockSource& region, ::BlockPos const& pos, int dir) const; MCAPI ::std::optional<::HashedString> $getRequiredMedium() const; - MCAPI bool + MCFOLD bool $shouldConnectToRedstone(::BlockSource& region, ::BlockPos const& pos, ::Direction::Type direction) const; - MCAPI void + MCFOLD void $handlePrecipitation(::BlockSource& region, ::BlockPos const& pos, float downfallAmount, float temperature) const; MCAPI bool $canBeUsedInCommands(::BaseGameVersion const& baseGameVersion) const; MCAPI bool $checkIsPathable(::Actor& entity, ::BlockPos const& lastPathPos, ::BlockPos const& pathPos) const; - MCAPI bool $shouldDispense(::BlockSource& region, ::Container& container) const; + MCFOLD bool $shouldDispense(::BlockSource& region, ::Container& container) const; - MCAPI bool $dispense(::BlockSource& region, ::Container& container, int slot, ::Vec3 const& pos, uchar face) const; + MCFOLD bool $dispense(::BlockSource& region, ::Container& container, int slot, ::Vec3 const& pos, uchar face) const; - MCAPI void + MCFOLD void $transformOnFall(::BlockSource& region, ::BlockPos const& pos, ::Actor* entity, float fallDistance) const; - MCAPI void $onRedstoneUpdate(::BlockSource& region, ::BlockPos const& pos, int strength, bool isFirstTime) const; + MCFOLD void $onRedstoneUpdate(::BlockSource& region, ::BlockPos const& pos, int strength, bool isFirstTime) const; - MCAPI void $onMove(::BlockSource& region, ::BlockPos const& from, ::BlockPos const& to) const; + MCFOLD void $onMove(::BlockSource& region, ::BlockPos const& from, ::BlockPos const& to) const; - MCAPI bool $detachesOnPistonMove(::BlockSource& region, ::BlockPos const& pos) const; + MCFOLD bool $detachesOnPistonMove(::BlockSource& region, ::BlockPos const& pos) const; - MCAPI void $movedByPiston(::BlockSource& region, ::BlockPos const& pos) const; + MCFOLD void $movedByPiston(::BlockSource& region, ::BlockPos const& pos) const; - MCAPI void $onStructureBlockPlace(::BlockSource& region, ::BlockPos const& pos) const; + MCFOLD void $onStructureBlockPlace(::BlockSource& region, ::BlockPos const& pos) const; - MCAPI void $onStructureNeighborBlockPlace(::BlockSource& region, ::BlockPos const& pos) const; + MCFOLD void $onStructureNeighborBlockPlace(::BlockSource& region, ::BlockPos const& pos) const; - MCAPI void $setupRedstoneComponent(::BlockSource& region, ::BlockPos const& pos) const; + MCFOLD void $setupRedstoneComponent(::BlockSource& region, ::BlockPos const& pos) const; MCAPI void $updateEntityAfterFallOn(::BlockPos const& pos, ::UpdateEntityAfterFallOnInterface& entity) const; - MCAPI bool $isBounceBlock() const; + MCFOLD bool $isBounceBlock() const; - MCAPI bool $isPreservingMediumWhenPlaced(::BlockLegacy const* medium) const; + MCFOLD bool $isPreservingMediumWhenPlaced(::BlockLegacy const* medium) const; - MCAPI bool $isFilteredOut(::BlockRenderLayer) const; + MCFOLD bool $isFilteredOut(::BlockRenderLayer) const; - MCAPI bool $canRenderSelectionOverlay(::BlockRenderLayer) const; + MCFOLD bool $canRenderSelectionOverlay(::BlockRenderLayer) const; - MCAPI bool $ignoreEntitiesOnPistonMove(::Block const& block) const; + MCFOLD bool $ignoreEntitiesOnPistonMove(::Block const& block) const; - MCAPI bool + MCFOLD bool $onFertilized(::BlockSource& region, ::BlockPos const& pos, ::Actor* actor, ::FertilizerType fType) const; - MCAPI bool $mayConsumeFertilizer(::BlockSource& region) const; + MCFOLD bool $mayConsumeFertilizer(::BlockSource& region) const; - MCAPI bool $canBeFertilized(::BlockSource& region, ::BlockPos const& pos, ::Block const& aboveBlock) const; + MCFOLD bool $canBeFertilized(::BlockSource& region, ::BlockPos const& pos, ::Block const& aboveBlock) const; - MCAPI bool $mayPick() const; + MCFOLD bool $mayPick() const; MCAPI bool $mayPick(::BlockSource const& region, ::Block const& block, bool liquid) const; - MCAPI bool $mayPlace(::BlockSource& region, ::BlockPos const& pos, uchar face) const; + MCFOLD bool $mayPlace(::BlockSource& region, ::BlockPos const& pos, uchar face) const; MCAPI bool $mayPlace(::BlockSource& region, ::BlockPos const& pos) const; - MCAPI bool $mayPlaceOn(::BlockSource& region, ::BlockPos const& pos) const; + MCFOLD bool $mayPlaceOn(::BlockSource& region, ::BlockPos const& pos) const; MCAPI bool $tryToPlace( ::BlockSource& region, @@ -1395,24 +1395,25 @@ class BlockLegacy { ::ActorBlockSyncMessage const* syncMsg ) const; - MCAPI bool $tryToTill(::BlockSource& region, ::BlockPos const& pos, ::Actor& entity, ::ItemStack& item) const; + MCFOLD bool $tryToTill(::BlockSource& region, ::BlockPos const& pos, ::Actor& entity, ::ItemStack& item) const; - MCAPI bool $breaksFallingBlocks(::Block const& block, ::BaseGameVersion const version) const; + MCFOLD bool $breaksFallingBlocks(::Block const& block, ::BaseGameVersion const version) const; - MCAPI void + MCFOLD void $destroy(::BlockSource& region, ::BlockPos const& pos, ::Block const& block, ::Actor* entitySource) const; - MCAPI bool $getIgnoresDestroyPermissions(::Actor& entity, ::BlockPos const& pos) const; + MCFOLD bool $getIgnoresDestroyPermissions(::Actor& entity, ::BlockPos const& pos) const; - MCAPI void $neighborChanged(::BlockSource& region, ::BlockPos const& pos, ::BlockPos const& neighborPos) const; + MCFOLD void $neighborChanged(::BlockSource& region, ::BlockPos const& pos, ::BlockPos const& neighborPos) const; - MCAPI bool $getSecondPart(::IConstBlockSource const& region, ::BlockPos const& pos, ::BlockPos& out) const; + MCFOLD bool $getSecondPart(::IConstBlockSource const& region, ::BlockPos const& pos, ::BlockPos& out) const; MCAPI ::Block const* $playerWillDestroy(::Player& player, ::BlockPos const& pos, ::Block const& block) const; MCAPI ::ItemInstance $asItemInstance(::Block const&, ::BlockActor const*) const; - MCAPI void $spawnAfterBreak(::BlockSource&, ::Block const&, ::BlockPos const&, ::ResourceDropsContext const&) const; + MCFOLD void + $spawnAfterBreak(::BlockSource&, ::Block const&, ::BlockPos const&, ::ResourceDropsContext const&) const; MCAPI ::Block const& $getPlacementBlock(::Actor const& by, ::BlockPos const& pos, uchar face, ::Vec3 const& clickPos, int itemValue) @@ -1420,17 +1421,17 @@ class BlockLegacy { MCAPI int $calcVariant(::BlockSource& region, ::BlockPos const& pos, ::mce::Color const& baseColor) const; - MCAPI bool $isAttachedTo(::BlockSource& region, ::BlockPos const& pos, ::BlockPos& outAttachedTo) const; + MCFOLD bool $isAttachedTo(::BlockSource& region, ::BlockPos const& pos, ::BlockPos& outAttachedTo) const; - MCAPI bool $attack(::Player* player, ::BlockPos const& pos) const; + MCFOLD bool $attack(::Player* player, ::BlockPos const& pos) const; MCAPI bool $shouldTriggerEntityInside(::BlockSource& region, ::BlockPos const& pos, ::Actor& entity) const; - MCAPI bool $canBeBuiltOver(::BlockSource& region, ::BlockPos const& pos, ::BlockItem const& newItem) const; + MCFOLD bool $canBeBuiltOver(::BlockSource& region, ::BlockPos const& pos, ::BlockItem const& newItem) const; MCAPI bool $canBeBuiltOver(::BlockSource& region, ::BlockPos const& pos) const; - MCAPI void $triggerEvent(::BlockSource& region, ::BlockPos const& pos, int b0, int b1) const; + MCFOLD void $triggerEvent(::BlockSource& region, ::BlockPos const& pos, int b0, int b1) const; MCAPI void $executeEvent( ::BlockSource& region, @@ -1444,29 +1445,30 @@ class BlockLegacy { MCAPI bool $shouldStopFalling(::Actor& entity) const; - MCAPI bool $pushesUpFallingBlocks() const; + MCFOLD bool $pushesUpFallingBlocks() const; - MCAPI bool $canHaveExtraData() const; + MCFOLD bool $canHaveExtraData() const; - MCAPI bool $hasComparatorSignal() const; + MCFOLD bool $hasComparatorSignal() const; - MCAPI int $getComparatorSignal(::BlockSource& region, ::BlockPos const& pos, ::Block const& block, uchar dir) const; + MCFOLD int + $getComparatorSignal(::BlockSource& region, ::BlockPos const& pos, ::Block const& block, uchar dir) const; - MCAPI bool $canSlide(::BlockSource& region, ::BlockPos const& pos) const; + MCFOLD bool $canSlide(::BlockSource& region, ::BlockPos const& pos) const; - MCAPI bool $canInstatick() const; + MCFOLD bool $canInstatick() const; - MCAPI bool $canSpawnAt(::BlockSource const& region, ::BlockPos const& pos) const; + MCFOLD bool $canSpawnAt(::BlockSource const& region, ::BlockPos const& pos) const; - MCAPI void $notifySpawnedAt(::BlockSource& region, ::BlockPos const& pos) const; + MCFOLD void $notifySpawnedAt(::BlockSource& region, ::BlockPos const& pos) const; - MCAPI bool $causesFreezeEffect() const; + MCFOLD bool $causesFreezeEffect() const; - MCAPI ::std::string $buildDescriptionId(::Block const&) const; + MCFOLD ::std::string $buildDescriptionId(::Block const&) const; - MCAPI bool $isAuxValueRelevantForPicking() const; + MCFOLD bool $isAuxValueRelevantForPicking() const; - MCAPI bool $isSeasonTinted(::Block const& block, ::BlockSource& region, ::BlockPos const& p) const; + MCFOLD bool $isSeasonTinted(::Block const& block, ::BlockSource& region, ::BlockPos const& p) const; MCAPI void $onGraphicsModeChanged(::BlockGraphicsModeChangeContext const& context); @@ -1476,69 +1478,69 @@ class BlockLegacy { MCAPI int $getVariant(::Block const& block) const; - MCAPI bool $canSpawnOn(::Actor*) const; + MCFOLD bool $canSpawnOn(::Actor*) const; - MCAPI ::Block const& $getRenderBlock() const; + MCFOLD ::Block const& $getRenderBlock() const; - MCAPI uchar $getMappedFace(uchar face, ::Block const& block) const; + MCFOLD uchar $getMappedFace(uchar face, ::Block const& block) const; - MCAPI ::Flip $getFaceFlip(uchar face, ::Block const& block) const; + MCFOLD ::Flip $getFaceFlip(uchar face, ::Block const& block) const; - MCAPI void $animateTickBedrockLegacy(::BlockSource& region, ::BlockPos const& pos, ::Random& random) const; + MCFOLD void $animateTickBedrockLegacy(::BlockSource& region, ::BlockPos const& pos, ::Random& random) const; - MCAPI void $animateTick(::BlockSource& region, ::BlockPos const& pos, ::Random& random) const; + MCFOLD void $animateTick(::BlockSource& region, ::BlockPos const& pos, ::Random& random) const; - MCAPI ::BlockLegacy& $init(); + MCFOLD ::BlockLegacy& $init(); MCAPI ::Brightness $getLightEmission(::Block const&) const; - MCAPI ::Block const* $tryLegacyUpgrade(ushort) const; + MCFOLD ::Block const* $tryLegacyUpgrade(ushort) const; - MCAPI bool $dealsContactDamage(::Actor const& actor, ::Block const& block, bool isPathFinding) const; + MCFOLD bool $dealsContactDamage(::Actor const& actor, ::Block const& block, bool isPathFinding) const; - MCAPI ::Block const* $tryGetInfested(::Block const&) const; + MCFOLD ::Block const* $tryGetInfested(::Block const&) const; - MCAPI ::Block const* $tryGetUninfested(::Block const&) const; + MCFOLD ::Block const* $tryGetUninfested(::Block const&) const; - MCAPI void $_addHardCodedBlockComponents(::Experiments const&); + MCFOLD void $_addHardCodedBlockComponents(::Experiments const&); - MCAPI void $onRemove(::BlockSource& region, ::BlockPos const& pos) const; + MCFOLD void $onRemove(::BlockSource& region, ::BlockPos const& pos) const; - MCAPI void $onExploded(::BlockSource& region, ::BlockPos const& pos, ::Actor* entitySource) const; + MCFOLD void $onExploded(::BlockSource& region, ::BlockPos const& pos, ::Actor* entitySource) const; - MCAPI void $onStandOn(::EntityContext& entity, ::BlockPos const& pos) const; + MCFOLD void $onStandOn(::EntityContext& entity, ::BlockPos const& pos) const; - MCAPI bool $shouldTickOnSetBlock() const; + MCFOLD bool $shouldTickOnSetBlock() const; - MCAPI void $tick(::BlockSource& region, ::BlockPos const& pos, ::Random& random) const; + MCFOLD void $tick(::BlockSource& region, ::BlockPos const& pos, ::Random& random) const; MCAPI void $randomTick(::BlockSource& region, ::BlockPos const& pos, ::Random& random) const; - MCAPI bool $isInteractiveBlock() const; + MCFOLD bool $isInteractiveBlock() const; MCAPI bool $use(::Player& player, ::BlockPos const& pos, uchar face, ::std::optional<::Vec3>) const; - MCAPI bool $use(::Player&, ::BlockPos const&, uchar) const; + MCFOLD bool $use(::Player&, ::BlockPos const&, uchar) const; - MCAPI bool $allowStateMismatchOnPlacement(::Block const& clientTarget, ::Block const& serverTarget) const; + MCFOLD bool $allowStateMismatchOnPlacement(::Block const& clientTarget, ::Block const& serverTarget) const; - MCAPI bool $canSurvive(::BlockSource& region, ::BlockPos const& pos) const; + MCFOLD bool $canSurvive(::BlockSource& region, ::BlockPos const& pos) const; - MCAPI ::BlockRenderLayer $getRenderLayer() const; + MCFOLD ::BlockRenderLayer $getRenderLayer() const; MCAPI ::BlockRenderLayer $getRenderLayer(::Block const& block, ::BlockSource&, ::BlockPos const& pos) const; - MCAPI int $getExtraRenderLayers() const; + MCFOLD int $getExtraRenderLayers() const; MCAPI ::Brightness $getLight(::Block const&) const; - MCAPI ::Brightness $getEmissiveBrightness(::Block const&) const; + MCFOLD ::Brightness $getEmissiveBrightness(::Block const&) const; MCAPI ::mce::Color $getMapColor(::BlockSource&, ::BlockPos const&, ::Block const&) const; - MCAPI void $_onHitByActivatingAttack(::BlockSource&, ::BlockPos const&, ::Actor*) const; + MCFOLD void $_onHitByActivatingAttack(::BlockSource&, ::BlockPos const&, ::Actor*) const; - MCAPI void $entityInside(::BlockSource&, ::BlockPos const&, ::Actor&) const; + MCFOLD void $entityInside(::BlockSource&, ::BlockPos const&, ::Actor&) const; // NOLINTEND public: diff --git a/src/mc/world/level/block/BlockVolume.h b/src/mc/world/level/block/BlockVolume.h index 66aeebca31..3631af5f10 100644 --- a/src/mc/world/level/block/BlockVolume.h +++ b/src/mc/world/level/block/BlockVolume.h @@ -87,15 +87,15 @@ class BlockVolume { MCAPI uint getIndexBounds() const; - MCAPI uint index(::BlockPos const& pos) const; + MCFOLD uint index(::BlockPos const& pos) const; MCAPI uint index(::Pos const&) const; - MCAPI uint indexNoBoundsCheck(::Pos const& pos) const; + MCFOLD uint indexNoBoundsCheck(::Pos const& pos) const; MCAPI uint indexNoBoundsCheck(::BlockPos const&) const; - MCAPI bool isInBounds(::BlockPos const& pos) const; + MCFOLD bool isInBounds(::BlockPos const& pos) const; MCAPI bool isInBounds(::Pos const&) const; // NOLINTEND diff --git a/src/mc/world/level/block/BorderBlock.h b/src/mc/world/level/block/BorderBlock.h index 9b5981ef3b..90d4190dce 100644 --- a/src/mc/world/level/block/BorderBlock.h +++ b/src/mc/world/level/block/BorderBlock.h @@ -57,7 +57,7 @@ class BorderBlock : public ::WallBlock { // NOLINTBEGIN MCAPI BorderBlock(::std::string const& nameId, int id); - MCAPI void onPlace(::BlockEvents::BlockPlaceEvent& eventData) const; + MCFOLD void onPlace(::BlockEvents::BlockPlaceEvent& eventData) const; // NOLINTEND public: @@ -79,11 +79,11 @@ class BorderBlock : public ::WallBlock { MCAPI ::AABB const& $getVisualShape(::Block const&, ::AABB& bufferAABB) const; - MCAPI ::AABB const& + MCFOLD ::AABB const& $getVisualShapeInWorld(::Block const& block, ::IConstBlockSource const&, ::BlockPos const&, ::AABB& bufferAABB) const; - MCAPI int $getVariant(::Block const& block) const; + MCFOLD int $getVariant(::Block const& block) const; MCAPI void $animateTickBedrockLegacy(::BlockSource& region, ::BlockPos const& pos, ::Random& random) const; diff --git a/src/mc/world/level/block/BrewingStandBlock.h b/src/mc/world/level/block/BrewingStandBlock.h index 0a1384ee8e..34d09dd612 100644 --- a/src/mc/world/level/block/BrewingStandBlock.h +++ b/src/mc/world/level/block/BrewingStandBlock.h @@ -122,11 +122,11 @@ class BrewingStandBlock : public ::ActorBlock { // NOLINTBEGIN MCAPI void $animateTickBedrockLegacy(::BlockSource& region, ::BlockPos const& pos, ::Random& random) const; - MCAPI bool $use(::Player&, ::BlockPos const&, uchar) const; + MCFOLD bool $use(::Player&, ::BlockPos const&, uchar) const; MCAPI ::ItemInstance $asItemInstance(::Block const&, ::BlockActor const*) const; - MCAPI ::std::string $buildDescriptionId(::Block const&) const; + MCFOLD ::std::string $buildDescriptionId(::Block const&) const; MCAPI void $addAABBs( ::Block const& block, @@ -136,7 +136,7 @@ class BrewingStandBlock : public ::ActorBlock { ::std::vector<::AABB>& inoutBoxes ) const; - MCAPI bool $addCollisionShapes( + MCFOLD bool $addCollisionShapes( ::Block const& block, ::IConstBlockSource const& region, ::BlockPos const& pos, @@ -154,19 +154,19 @@ class BrewingStandBlock : public ::ActorBlock { MCAPI void $onRemove(::BlockSource& region, ::BlockPos const& pos) const; - MCAPI bool $isInteractiveBlock() const; + MCFOLD bool $isInteractiveBlock() const; - MCAPI bool $isContainerBlock() const; + MCFOLD bool $isContainerBlock() const; - MCAPI bool $isCraftingBlock() const; + MCFOLD bool $isCraftingBlock() const; - MCAPI bool $hasComparatorSignal() const; + MCFOLD bool $hasComparatorSignal() const; MCAPI int $getComparatorSignal(::BlockSource& region, ::BlockPos const& pos, ::Block const& block, uchar dir) const; - MCAPI bool $checkIsPathable(::Actor& entity, ::BlockPos const& lastPathPos, ::BlockPos const& pathPos) const; + MCFOLD bool $checkIsPathable(::Actor& entity, ::BlockPos const& lastPathPos, ::BlockPos const& pathPos) const; - MCAPI bool $canProvideSupport(::Block const&, uchar face, ::BlockSupportType type) const; + MCFOLD bool $canProvideSupport(::Block const&, uchar face, ::BlockSupportType type) const; // NOLINTEND public: diff --git a/src/mc/world/level/block/BrushableBlock.h b/src/mc/world/level/block/BrushableBlock.h index 93789fd5d2..25fcbfa6d0 100644 --- a/src/mc/world/level/block/BrushableBlock.h +++ b/src/mc/world/level/block/BrushableBlock.h @@ -115,10 +115,10 @@ class BrushableBlock : public ::FallingBlock { MCAPI int $getVariant(::Block const& block) const; - MCAPI bool + MCFOLD bool $onFertilized(::BlockSource& region, ::BlockPos const& pos, ::Actor* actor, ::FertilizerType fType) const; - MCAPI bool $mayConsumeFertilizer(::BlockSource& region) const; + MCFOLD bool $mayConsumeFertilizer(::BlockSource& region) const; MCAPI bool $canBeFertilized(::BlockSource& region, ::BlockPos const& pos, ::Block const& aboveBlock) const; // NOLINTEND diff --git a/src/mc/world/level/block/BubbleColumnBlock.h b/src/mc/world/level/block/BubbleColumnBlock.h index 6dcd6f2316..64dd8ef233 100644 --- a/src/mc/world/level/block/BubbleColumnBlock.h +++ b/src/mc/world/level/block/BubbleColumnBlock.h @@ -143,11 +143,11 @@ class BubbleColumnBlock : public ::BlockLegacy { MCAPI bool $canSurvive(::BlockSource& region, ::BlockPos const& pos) const; - MCAPI bool $checkIsPathable(::Actor& entity, ::BlockPos const& lastPathPos, ::BlockPos const& pathPos) const; + MCFOLD bool $checkIsPathable(::Actor& entity, ::BlockPos const& lastPathPos, ::BlockPos const& pathPos) const; MCAPI bool $mayPick(::BlockSource const& region, ::Block const& block, bool liquid) const; - MCAPI void $addAABBs( + MCFOLD void $addAABBs( ::Block const& block, ::IConstBlockSource const& region, ::BlockPos const& pos, @@ -155,7 +155,7 @@ class BubbleColumnBlock : public ::BlockLegacy { ::std::vector<::AABB>& inoutBoxes ) const; - MCAPI bool $addCollisionShapes( + MCFOLD bool $addCollisionShapes( ::Block const& block, ::IConstBlockSource const& region, ::BlockPos const& pos, @@ -164,11 +164,11 @@ class BubbleColumnBlock : public ::BlockLegacy { ::optional_ref<::GetCollisionShapeInterface const> entity ) const; - MCAPI ::AABB + MCFOLD ::AABB $getCollisionShape(::Block const&, ::IConstBlockSource const&, ::BlockPos const&, ::optional_ref<::GetCollisionShapeInterface const>) const; - MCAPI bool $shouldTickOnSetBlock() const; + MCFOLD bool $shouldTickOnSetBlock() const; MCAPI ::std::optional<::HashedString> $getRequiredMedium() const; diff --git a/src/mc/world/level/block/BuddingAmethystBlock.h b/src/mc/world/level/block/BuddingAmethystBlock.h index b6834d5909..dd1fb8af66 100644 --- a/src/mc/world/level/block/BuddingAmethystBlock.h +++ b/src/mc/world/level/block/BuddingAmethystBlock.h @@ -64,7 +64,7 @@ class BuddingAmethystBlock : public ::AmethystBlock { MCAPI ::ItemInstance $asItemInstance(::Block const&, ::BlockActor const*) const; - MCAPI bool $isSilentWhenJumpingOff() const; + MCFOLD bool $isSilentWhenJumpingOff() const; // NOLINTEND public: diff --git a/src/mc/world/level/block/BushBlock.h b/src/mc/world/level/block/BushBlock.h index 3f4e9ce07e..8dd85f3a4b 100644 --- a/src/mc/world/level/block/BushBlock.h +++ b/src/mc/world/level/block/BushBlock.h @@ -79,7 +79,7 @@ class BushBlock : public ::BlockLegacy { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND public: @@ -87,17 +87,17 @@ class BushBlock : public ::BlockLegacy { // NOLINTBEGIN MCAPI void $neighborChanged(::BlockSource& region, ::BlockPos const& pos, ::BlockPos const& neighborPos) const; - MCAPI void $tick(::BlockSource& region, ::BlockPos const& pos, ::Random& random) const; + MCFOLD void $tick(::BlockSource& region, ::BlockPos const& pos, ::Random& random) const; - MCAPI bool $canSurvive(::BlockSource& region, ::BlockPos const& pos) const; + MCFOLD bool $canSurvive(::BlockSource& region, ::BlockPos const& pos) const; - MCAPI ::AABB + MCFOLD ::AABB $getCollisionShape(::Block const&, ::IConstBlockSource const&, ::BlockPos const&, ::optional_ref<::GetCollisionShapeInterface const>) const; MCAPI bool $mayPlaceOn(::BlockSource& region, ::BlockPos const& pos) const; - MCAPI void $checkAlive(::BlockSource& region, ::BlockPos const& pos) const; + MCFOLD void $checkAlive(::BlockSource& region, ::BlockPos const& pos) const; MCAPI ::Block const& $setGrowth( ::BlockSource& region, diff --git a/src/mc/world/level/block/ButtonBlock.h b/src/mc/world/level/block/ButtonBlock.h index 91d0812d5a..cba2062475 100644 --- a/src/mc/world/level/block/ButtonBlock.h +++ b/src/mc/world/level/block/ButtonBlock.h @@ -66,7 +66,7 @@ class ButtonBlock : public ::BlockLegacy { virtual void setupRedstoneComponent(::BlockSource& region, ::BlockPos const& pos) const /*override*/; // vIndex: 80 - virtual bool mayPlace(::BlockSource& region, ::BlockPos const& pos, uchar facing) const /*override*/; + virtual bool mayPlace(::BlockSource& region, ::BlockPos const& pos, uchar face) const /*override*/; // vIndex: 79 virtual bool mayPlace(::BlockSource& region, ::BlockPos const& pos) const /*override*/; @@ -145,7 +145,7 @@ class ButtonBlock : public ::BlockLegacy { MCAPI void buttonPressed(::BlockSource& region, ::Block const& buttonBlock, ::Vec3 const& pos, ::Actor* sourceActor) const; - MCAPI void onPlace(::BlockEvents::BlockPlaceEvent& eventData) const; + MCFOLD void onPlace(::BlockEvents::BlockPlaceEvent& eventData) const; // NOLINTEND public: @@ -193,13 +193,13 @@ class ButtonBlock : public ::BlockLegacy { MCAPI void $setupRedstoneComponent(::BlockSource& region, ::BlockPos const& pos) const; - MCAPI bool $mayPlace(::BlockSource& region, ::BlockPos const& pos, uchar facing) const; + MCAPI bool $mayPlace(::BlockSource& region, ::BlockPos const& pos, uchar face) const; MCAPI bool $mayPlace(::BlockSource& region, ::BlockPos const& pos) const; MCAPI void $neighborChanged(::BlockSource& region, ::BlockPos const& pos, ::BlockPos const& neighborPos) const; - MCAPI ::Block const& + MCFOLD ::Block const& $getPlacementBlock(::Actor const& by, ::BlockPos const& pos, uchar face, ::Vec3 const& clickPos, int itemValue) const; @@ -211,22 +211,22 @@ class ButtonBlock : public ::BlockLegacy { MCAPI bool $isAttachedTo(::BlockSource& region, ::BlockPos const& pos, ::BlockPos& outAttachedTo) const; - MCAPI bool + MCFOLD bool $shouldConnectToRedstone(::BlockSource& region, ::BlockPos const& pos, ::Direction::Type direction) const; - MCAPI bool $isInteractiveBlock() const; + MCFOLD bool $isInteractiveBlock() const; - MCAPI bool $isSignalSource() const; + MCFOLD bool $isSignalSource() const; - MCAPI int $getVariant(::Block const& block) const; + MCFOLD int $getVariant(::Block const& block) const; - MCAPI bool $canSpawnOn(::Actor*) const; + MCFOLD bool $canSpawnOn(::Actor*) const; - MCAPI bool $isButtonBlock() const; + MCFOLD bool $isButtonBlock() const; - MCAPI bool $checkIsPathable(::Actor& entity, ::BlockPos const& lastPathPos, ::BlockPos const& pathPos) const; + MCFOLD bool $checkIsPathable(::Actor& entity, ::BlockPos const& lastPathPos, ::BlockPos const& pathPos) const; - MCAPI bool $canSurvive(::BlockSource& region, ::BlockPos const& pos) const; + MCFOLD bool $canSurvive(::BlockSource& region, ::BlockPos const& pos) const; MCAPI void $_addHardCodedBlockComponents(::Experiments const&); diff --git a/src/mc/world/level/block/CactusBlock.h b/src/mc/world/level/block/CactusBlock.h index c569b84d45..160d1eff88 100644 --- a/src/mc/world/level/block/CactusBlock.h +++ b/src/mc/world/level/block/CactusBlock.h @@ -85,26 +85,26 @@ class CactusBlock : public ::BlockLegacy { // NOLINTBEGIN MCAPI void $randomTick(::BlockSource& region, ::BlockPos const& pos, ::Random& random) const; - MCAPI void $tick(::BlockSource& region, ::BlockPos const& pos, ::Random& random) const; + MCFOLD void $tick(::BlockSource& region, ::BlockPos const& pos, ::Random& random) const; MCAPI ::AABB $getCollisionShape(::Block const&, ::IConstBlockSource const&, ::BlockPos const& pos, ::optional_ref<::GetCollisionShapeInterface const>) const; - MCAPI ::AABB const& + MCFOLD ::AABB const& $getOutline(::Block const&, ::IConstBlockSource const&, ::BlockPos const& pos, ::AABB& bufferValue) const; MCAPI void $onGraphicsModeChanged(::BlockGraphicsModeChangeContext const& context); MCAPI bool $mayPlace(::BlockSource& region, ::BlockPos const& pos) const; - MCAPI void $neighborChanged(::BlockSource& region, ::BlockPos const& pos, ::BlockPos const& neighborPos) const; + MCFOLD void $neighborChanged(::BlockSource& region, ::BlockPos const& pos, ::BlockPos const& neighborPos) const; MCAPI bool $canSurvive(::BlockSource& region, ::BlockPos const& pos) const; - MCAPI bool $isValidAuxValue(int value) const; + MCFOLD bool $isValidAuxValue(int value) const; - MCAPI bool $dealsContactDamage(::Actor const& actor, ::Block const& block, bool isPathFinding) const; + MCFOLD bool $dealsContactDamage(::Actor const& actor, ::Block const& block, bool isPathFinding) const; // NOLINTEND public: diff --git a/src/mc/world/level/block/CakeBlock.h b/src/mc/world/level/block/CakeBlock.h index 61e2359318..183df74820 100644 --- a/src/mc/world/level/block/CakeBlock.h +++ b/src/mc/world/level/block/CakeBlock.h @@ -92,25 +92,25 @@ class CakeBlock : public ::BlockLegacy { // NOLINTBEGIN MCAPI bool $use(::Player& player, ::BlockPos const& pos, uchar) const; - MCAPI bool $mayPlace(::BlockSource& region, ::BlockPos const& pos, uchar face) const; + MCFOLD bool $mayPlace(::BlockSource& region, ::BlockPos const& pos, uchar face) const; MCAPI ::AABB const& $getVisualShape(::Block const& block, ::AABB& bufferAABB) const; - MCAPI bool $canSurvive(::BlockSource& region, ::BlockPos const& pos) const; + MCFOLD bool $canSurvive(::BlockSource& region, ::BlockPos const& pos) const; - MCAPI void $neighborChanged(::BlockSource& region, ::BlockPos const& pos, ::BlockPos const& neighborPos) const; + MCFOLD void $neighborChanged(::BlockSource& region, ::BlockPos const& pos, ::BlockPos const& neighborPos) const; - MCAPI void $tick(::BlockSource& region, ::BlockPos const& pos, ::Random& random) const; + MCFOLD void $tick(::BlockSource& region, ::BlockPos const& pos, ::Random& random) const; MCAPI int $getVariant(::Block const& block) const; - MCAPI ::ItemInstance $asItemInstance(::Block const&, ::BlockActor const*) const; + MCFOLD ::ItemInstance $asItemInstance(::Block const&, ::BlockActor const*) const; - MCAPI bool $hasComparatorSignal() const; + MCFOLD bool $hasComparatorSignal() const; MCAPI int $getComparatorSignal(::BlockSource& region, ::BlockPos const& pos, ::Block const& block, uchar dir) const; - MCAPI bool $checkIsPathable(::Actor& entity, ::BlockPos const& lastPathPos, ::BlockPos const& pathPos) const; + MCFOLD bool $checkIsPathable(::Actor& entity, ::BlockPos const& lastPathPos, ::BlockPos const& pathPos) const; // NOLINTEND public: diff --git a/src/mc/world/level/block/CameraBlock.h b/src/mc/world/level/block/CameraBlock.h index e6cee7d42a..18ad47de1f 100644 --- a/src/mc/world/level/block/CameraBlock.h +++ b/src/mc/world/level/block/CameraBlock.h @@ -42,7 +42,7 @@ class CameraBlock : public ::BlockLegacy { public: // virtual function thunks // NOLINTBEGIN - MCAPI bool $canBeUsedInCommands(::BaseGameVersion const& baseGameVersion) const; + MCFOLD bool $canBeUsedInCommands(::BaseGameVersion const& baseGameVersion) const; // NOLINTEND public: diff --git a/src/mc/world/level/block/CampfireBlock.h b/src/mc/world/level/block/CampfireBlock.h index 2cc835f48d..e50f97bd3d 100644 --- a/src/mc/world/level/block/CampfireBlock.h +++ b/src/mc/world/level/block/CampfireBlock.h @@ -117,7 +117,7 @@ class CampfireBlock : public ::ActorBlock { // NOLINTBEGIN MCAPI ::Brightness $getLightEmission(::Block const& block) const; - MCAPI bool $hasVariableLighting() const; + MCFOLD bool $hasVariableLighting() const; MCAPI bool $use(::Player& player, ::BlockPos const& pos, uchar face) const; @@ -131,9 +131,9 @@ class CampfireBlock : public ::ActorBlock { MCAPI void $onRemove(::BlockSource& region, ::BlockPos const& pos) const; - MCAPI bool $canSpawnOn(::Actor*) const; + MCFOLD bool $canSpawnOn(::Actor*) const; - MCAPI bool $isLavaBlocking() const; + MCFOLD bool $isLavaBlocking() const; MCAPI void $neighborChanged(::BlockSource& region, ::BlockPos const& pos, ::BlockPos const& neighborPos) const; diff --git a/src/mc/world/level/block/CandleBlock.h b/src/mc/world/level/block/CandleBlock.h index 7b191e8ec2..979daf68b9 100644 --- a/src/mc/world/level/block/CandleBlock.h +++ b/src/mc/world/level/block/CandleBlock.h @@ -87,11 +87,11 @@ class CandleBlock : public ::AbstractCandleBlock { MCAPI ::ItemInstance $asItemInstance(::Block const& block, ::BlockActor const*) const; - MCAPI bool $isInteractiveBlock() const; + MCFOLD bool $isInteractiveBlock() const; MCAPI bool $use(::Player& player, ::BlockPos const& pos, uchar) const; - MCAPI bool $canProvideSupport(::Block const&, uchar face, ::BlockSupportType type) const; + MCFOLD bool $canProvideSupport(::Block const&, uchar face, ::BlockSupportType type) const; MCAPI int $_getNumCandles(::Block const& block) const; diff --git a/src/mc/world/level/block/CandleCakeBlock.h b/src/mc/world/level/block/CandleCakeBlock.h index dd1bc14a6a..8a4780d036 100644 --- a/src/mc/world/level/block/CandleCakeBlock.h +++ b/src/mc/world/level/block/CandleCakeBlock.h @@ -106,25 +106,26 @@ class CandleCakeBlock : public ::AbstractCandleBlock { // NOLINTBEGIN MCAPI bool $use(::Player& player, ::BlockPos const& pos, uchar face) const; - MCAPI bool $mayPlace(::BlockSource& region, ::BlockPos const& pos, uchar face) const; + MCFOLD bool $mayPlace(::BlockSource& region, ::BlockPos const& pos, uchar face) const; MCAPI ::AABB const& $getVisualShape(::Block const&, ::AABB& bufferAABB) const; - MCAPI bool $canSurvive(::BlockSource& region, ::BlockPos const& pos) const; + MCFOLD bool $canSurvive(::BlockSource& region, ::BlockPos const& pos) const; MCAPI void $neighborChanged(::BlockSource& region, ::BlockPos const& pos, ::BlockPos const& neighborPos) const; - MCAPI ::ItemInstance $asItemInstance(::Block const&, ::BlockActor const*) const; + MCFOLD ::ItemInstance $asItemInstance(::Block const&, ::BlockActor const*) const; - MCAPI bool $hasComparatorSignal() const; + MCFOLD bool $hasComparatorSignal() const; - MCAPI int $getComparatorSignal(::BlockSource& region, ::BlockPos const& pos, ::Block const& block, uchar dir) const; + MCFOLD int + $getComparatorSignal(::BlockSource& region, ::BlockPos const& pos, ::Block const& block, uchar dir) const; - MCAPI bool $checkIsPathable(::Actor& entity, ::BlockPos const& lastPathPos, ::BlockPos const& pathPos) const; + MCFOLD bool $checkIsPathable(::Actor& entity, ::BlockPos const& lastPathPos, ::BlockPos const& pathPos) const; - MCAPI bool $isCandleCakeBlock() const; + MCFOLD bool $isCandleCakeBlock() const; - MCAPI int $_getNumCandles(::Block const&) const; + MCFOLD int $_getNumCandles(::Block const&) const; MCAPI void $_iterateCandles(::Block const& block, ::BlockPos const& pos, ::std::function callback) diff --git a/src/mc/world/level/block/CarpetBlock.h b/src/mc/world/level/block/CarpetBlock.h index 7a262536fd..ac4e8dd52a 100644 --- a/src/mc/world/level/block/CarpetBlock.h +++ b/src/mc/world/level/block/CarpetBlock.h @@ -81,7 +81,7 @@ class CarpetBlock : public ::BlockLegacy { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND public: @@ -98,15 +98,15 @@ class CarpetBlock : public ::BlockLegacy { ::optional_ref<::GetCollisionShapeInterface const> entity ) const; - MCAPI bool $mayPlace(::BlockSource& region, ::BlockPos const& pos) const; + MCFOLD bool $mayPlace(::BlockSource& region, ::BlockPos const& pos) const; - MCAPI void $neighborChanged(::BlockSource& region, ::BlockPos const& pos, ::BlockPos const& neighborPos) const; + MCFOLD void $neighborChanged(::BlockSource& region, ::BlockPos const& pos, ::BlockPos const& neighborPos) const; MCAPI bool $canSurvive(::BlockSource& region, ::BlockPos const& pos) const; - MCAPI bool $checkIsPathable(::Actor& entity, ::BlockPos const& lastPathPos, ::BlockPos const& pathPos) const; + MCFOLD bool $checkIsPathable(::Actor& entity, ::BlockPos const& lastPathPos, ::BlockPos const& pathPos) const; - MCAPI ::ItemInstance $asItemInstance(::Block const& block, ::BlockActor const*) const; + MCFOLD ::ItemInstance $asItemInstance(::Block const& block, ::BlockActor const*) const; MCAPI bool $dispense(::BlockSource& region, ::Container& container, int slot, ::Vec3 const& pos, uchar face) const; // NOLINTEND diff --git a/src/mc/world/level/block/CarrotBlock.h b/src/mc/world/level/block/CarrotBlock.h index bdc98e9802..10a41e08b6 100644 --- a/src/mc/world/level/block/CarrotBlock.h +++ b/src/mc/world/level/block/CarrotBlock.h @@ -69,9 +69,9 @@ class CarrotBlock : public ::CropBlock { MCAPI ::AABB const& $getOutline(::Block const& block, ::IConstBlockSource const&, ::BlockPos const& pos, ::AABB& bufferValue) const; - MCAPI ::BlockRenderLayer $getRenderLayer() const; + MCFOLD ::BlockRenderLayer $getRenderLayer() const; - MCAPI ::BlockRenderLayer $getRenderLayer(::Block const&, ::BlockSource&, ::BlockPos const&) const; + MCFOLD ::BlockRenderLayer $getRenderLayer(::Block const&, ::BlockSource&, ::BlockPos const&) const; // NOLINTEND public: diff --git a/src/mc/world/level/block/CartographyTableBlock.h b/src/mc/world/level/block/CartographyTableBlock.h index 13d7f3dd34..ac85b4fb9c 100644 --- a/src/mc/world/level/block/CartographyTableBlock.h +++ b/src/mc/world/level/block/CartographyTableBlock.h @@ -49,11 +49,11 @@ class CartographyTableBlock : public ::BlockLegacy { public: // virtual function thunks // NOLINTBEGIN - MCAPI bool $use(::Player& player, ::BlockPos const& pos, uchar face) const; + MCFOLD bool $use(::Player& player, ::BlockPos const& pos, uchar face) const; - MCAPI bool $isCraftingBlock() const; + MCFOLD bool $isCraftingBlock() const; - MCAPI bool $isInteractiveBlock() const; + MCFOLD bool $isInteractiveBlock() const; // NOLINTEND public: diff --git a/src/mc/world/level/block/CauldronBlock.h b/src/mc/world/level/block/CauldronBlock.h index 047f2f214d..3b344c4b53 100644 --- a/src/mc/world/level/block/CauldronBlock.h +++ b/src/mc/world/level/block/CauldronBlock.h @@ -196,7 +196,7 @@ class CauldronBlock : public ::ActorBlock { public: // virtual function thunks // NOLINTBEGIN - MCAPI bool $addCollisionShapes( + MCFOLD bool $addCollisionShapes( ::Block const& block, ::IConstBlockSource const& region, ::BlockPos const& pos, @@ -222,15 +222,15 @@ class CauldronBlock : public ::ActorBlock { MCAPI ::ItemInstance $asItemInstance(::Block const&, ::BlockActor const*) const; - MCAPI bool $hasComparatorSignal() const; + MCFOLD bool $hasComparatorSignal() const; MCAPI int $getComparatorSignal(::BlockSource& region, ::BlockPos const& pos, ::Block const& block, uchar dir) const; MCAPI void $animateTickBedrockLegacy(::BlockSource& region, ::BlockPos const& pos, ::Random& random) const; - MCAPI bool $isInteractiveBlock() const; + MCFOLD bool $isInteractiveBlock() const; - MCAPI int $getExtraRenderLayers() const; + MCFOLD int $getExtraRenderLayers() const; MCAPI void $neighborChanged(::BlockSource& region, ::BlockPos const& pos, ::BlockPos const& neighborPos) const; diff --git a/src/mc/world/level/block/CaveVinesBlock.h b/src/mc/world/level/block/CaveVinesBlock.h index 1171bbc3a2..07864285c9 100644 --- a/src/mc/world/level/block/CaveVinesBlock.h +++ b/src/mc/world/level/block/CaveVinesBlock.h @@ -141,27 +141,27 @@ class CaveVinesBlock : public ::BlockLegacy { public: // virtual function thunks // NOLINTBEGIN - MCAPI int $getVariant(::Block const& block) const; + MCFOLD int $getVariant(::Block const& block) const; MCAPI void $randomTick(::BlockSource& region, ::BlockPos const& pos, ::Random& random) const; - MCAPI void $tick(::BlockSource& region, ::BlockPos const& pos, ::Random& random) const; + MCFOLD void $tick(::BlockSource& region, ::BlockPos const& pos, ::Random& random) const; MCAPI bool $use(::Player& player, ::BlockPos const& pos, uchar) const; MCAPI void $onRemove(::BlockSource& region, ::BlockPos const& pos) const; - MCAPI bool $mayPlace(::BlockSource& region, ::BlockPos const& pos) const; + MCFOLD bool $mayPlace(::BlockSource& region, ::BlockPos const& pos) const; MCAPI bool $canSurvive(::BlockSource& region, ::BlockPos const& pos) const; MCAPI void $neighborChanged(::BlockSource& region, ::BlockPos const& pos, ::BlockPos const& neighborPos) const; - MCAPI ::AABB + MCFOLD ::AABB $getCollisionShape(::Block const&, ::IConstBlockSource const&, ::BlockPos const&, ::optional_ref<::GetCollisionShapeInterface const>) const; - MCAPI ::AABB const& + MCFOLD ::AABB const& $getOutline(::Block const&, ::IConstBlockSource const&, ::BlockPos const& pos, ::AABB& bufferValue) const; MCAPI bool diff --git a/src/mc/world/level/block/ChainBlock.h b/src/mc/world/level/block/ChainBlock.h index 44fe78e84a..7dc873b5d7 100644 --- a/src/mc/world/level/block/ChainBlock.h +++ b/src/mc/world/level/block/ChainBlock.h @@ -56,7 +56,7 @@ class ChainBlock : public ::RotatedPillarBlock { public: // virtual function thunks // NOLINTBEGIN - MCAPI bool $canConnect(::Block const&, uchar, ::Block const&) const; + MCFOLD bool $canConnect(::Block const&, uchar, ::Block const&) const; MCAPI ::ItemInstance $asItemInstance(::Block const&, ::BlockActor const*) const; diff --git a/src/mc/world/level/block/ChalkboardBlock.h b/src/mc/world/level/block/ChalkboardBlock.h index 3196b0fc98..1e09713fcf 100644 --- a/src/mc/world/level/block/ChalkboardBlock.h +++ b/src/mc/world/level/block/ChalkboardBlock.h @@ -109,11 +109,11 @@ class ChalkboardBlock : public ::ActorBlock { $getOutline(::Block const& block, ::IConstBlockSource const& region, ::BlockPos const& pos, ::AABB& bufferValue) const; - MCAPI ::AABB + MCFOLD ::AABB $getCollisionShape(::Block const&, ::IConstBlockSource const&, ::BlockPos const&, ::optional_ref<::GetCollisionShapeInterface const>) const; - MCAPI bool $checkIsPathable(::Actor& entity, ::BlockPos const& lastPathPos, ::BlockPos const& pathPos) const; + MCFOLD bool $checkIsPathable(::Actor& entity, ::BlockPos const& lastPathPos, ::BlockPos const& pathPos) const; MCAPI ::ItemInstance $asItemInstance(::Block const&, ::BlockActor const* blockActor) const; @@ -121,9 +121,9 @@ class ChalkboardBlock : public ::ActorBlock { MCAPI bool $use(::Player& player, ::BlockPos const& pos, uchar) const; - MCAPI bool $isInteractiveBlock() const; + MCFOLD bool $isInteractiveBlock() const; - MCAPI int $getVariant(::Block const& block) const; + MCFOLD int $getVariant(::Block const& block) const; MCAPI bool $getIgnoresDestroyPermissions(::Actor& entity, ::BlockPos const& pos) const; // NOLINTEND diff --git a/src/mc/world/level/block/ChemicalHeatBlock.h b/src/mc/world/level/block/ChemicalHeatBlock.h index 5917592b99..8884c0d198 100644 --- a/src/mc/world/level/block/ChemicalHeatBlock.h +++ b/src/mc/world/level/block/ChemicalHeatBlock.h @@ -26,7 +26,7 @@ class ChemicalHeatBlock : public ::BlockLegacy { virtual int getExtraRenderLayers() const /*override*/; // vIndex: 56 - virtual bool canBeUsedInCommands(::BaseGameVersion const& baseGameVersion) const /*override*/; + virtual bool canBeUsedInCommands(::BaseGameVersion const& requiredBaseGameVersion) const /*override*/; // vIndex: 131 virtual void _addHardCodedBlockComponents(::Experiments const&) /*override*/; @@ -66,9 +66,9 @@ class ChemicalHeatBlock : public ::BlockLegacy { // NOLINTBEGIN MCAPI void $tick(::BlockSource& region, ::BlockPos const& pos, ::Random& random) const; - MCAPI int $getExtraRenderLayers() const; + MCFOLD int $getExtraRenderLayers() const; - MCAPI bool $canBeUsedInCommands(::BaseGameVersion const& baseGameVersion) const; + MCFOLD bool $canBeUsedInCommands(::BaseGameVersion const& requiredBaseGameVersion) const; MCAPI void $_addHardCodedBlockComponents(::Experiments const&); // NOLINTEND diff --git a/src/mc/world/level/block/ChemistryTableBlock.h b/src/mc/world/level/block/ChemistryTableBlock.h index 2f25adb00c..13d7cd51cc 100644 --- a/src/mc/world/level/block/ChemistryTableBlock.h +++ b/src/mc/world/level/block/ChemistryTableBlock.h @@ -83,11 +83,11 @@ class ChemistryTableBlock : public ::ActorBlock { public: // virtual function thunks // NOLINTBEGIN - MCAPI bool $use(::Player&, ::BlockPos const&, uchar) const; + MCFOLD bool $use(::Player&, ::BlockPos const&, uchar) const; - MCAPI bool $isCraftingBlock() const; + MCFOLD bool $isCraftingBlock() const; - MCAPI bool $isLavaBlocking() const; + MCFOLD bool $isLavaBlocking() const; MCAPI ::Block const& $getPlacementBlock(::Actor const& by, ::BlockPos const& pos, uchar face, ::Vec3 const& clickPos, int itemValue) @@ -99,9 +99,9 @@ class ChemistryTableBlock : public ::ActorBlock { MCAPI void $onFillBlock(::BlockSource& region, ::BlockPos const& pos, ::Block const& block) const; - MCAPI bool $canBeUsedInCommands(::BaseGameVersion const& baseGameVersion) const; + MCFOLD bool $canBeUsedInCommands(::BaseGameVersion const& baseGameVersion) const; - MCAPI bool $isInteractiveBlock() const; + MCFOLD bool $isInteractiveBlock() const; // NOLINTEND public: diff --git a/src/mc/world/level/block/CherrySaplingBlock.h b/src/mc/world/level/block/CherrySaplingBlock.h index b073ec87fa..4acb6a9007 100644 --- a/src/mc/world/level/block/CherrySaplingBlock.h +++ b/src/mc/world/level/block/CherrySaplingBlock.h @@ -75,13 +75,13 @@ class CherrySaplingBlock : public ::BushBlock { MCAPI bool $onFertilized(::BlockSource& region, ::BlockPos const& pos, ::Actor* actor, ::FertilizerType fType) const; - MCAPI bool $canBeFertilized(::BlockSource& region, ::BlockPos const& pos, ::Block const& aboveBlock) const; + MCFOLD bool $canBeFertilized(::BlockSource& region, ::BlockPos const& pos, ::Block const& aboveBlock) const; - MCAPI bool $mayPlace(::BlockSource& region, ::BlockPos const& pos) const; + MCFOLD bool $mayPlace(::BlockSource& region, ::BlockPos const& pos) const; - MCAPI ::BlockRenderLayer $getRenderLayer() const; + MCFOLD ::BlockRenderLayer $getRenderLayer() const; - MCAPI ::BlockRenderLayer $getRenderLayer(::Block const&, ::BlockSource&, ::BlockPos const&) const; + MCFOLD ::BlockRenderLayer $getRenderLayer(::Block const&, ::BlockSource&, ::BlockPos const&) const; // NOLINTEND public: diff --git a/src/mc/world/level/block/ChestBlock.h b/src/mc/world/level/block/ChestBlock.h index a950abbd60..cbeeb6872a 100644 --- a/src/mc/world/level/block/ChestBlock.h +++ b/src/mc/world/level/block/ChestBlock.h @@ -109,7 +109,7 @@ class ChestBlock : public ::ActorBlock { // NOLINTBEGIN MCAPI ChestBlock(::std::string const& nameId, int id, ::ChestBlock::ChestType type, ::MaterialType materialType); - MCAPI void onPlace(::BlockEvents::BlockPlaceEvent& eventData) const; + MCFOLD void onPlace(::BlockEvents::BlockPlaceEvent& eventData) const; MCAPI void updateSignalStrength(::BlockSource& region, ::BlockPos const& pos, int strength) const; // NOLINTEND @@ -123,7 +123,7 @@ class ChestBlock : public ::ActorBlock { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND public: @@ -135,15 +135,16 @@ class ChestBlock : public ::ActorBlock { MCAPI void $onRemove(::BlockSource& region, ::BlockPos const& pos) const; - MCAPI bool $breaksFallingBlocks(::Block const& block, ::BaseGameVersion const version) const; + MCFOLD bool $breaksFallingBlocks(::Block const& block, ::BaseGameVersion const version) const; MCAPI void $onMove(::BlockSource& region, ::BlockPos const& from, ::BlockPos const& to) const; - MCAPI bool $detachesOnPistonMove(::BlockSource& region, ::BlockPos const& pos) const; + MCFOLD bool $detachesOnPistonMove(::BlockSource& region, ::BlockPos const& pos) const; - MCAPI bool $hasComparatorSignal() const; + MCFOLD bool $hasComparatorSignal() const; - MCAPI int $getComparatorSignal(::BlockSource& region, ::BlockPos const& pos, ::Block const& block, uchar dir) const; + MCFOLD int + $getComparatorSignal(::BlockSource& region, ::BlockPos const& pos, ::Block const& block, uchar dir) const; MCAPI uchar $getMappedFace(uchar face, ::Block const& block) const; @@ -151,16 +152,16 @@ class ChestBlock : public ::ActorBlock { MCAPI bool $getSecondPart(::IConstBlockSource const& region, ::BlockPos const& pos, ::BlockPos& out) const; - MCAPI bool $isInteractiveBlock() const; + MCFOLD bool $isInteractiveBlock() const; - MCAPI bool $isContainerBlock() const; + MCFOLD bool $isContainerBlock() const; - MCAPI bool $isSignalSource() const; + MCFOLD bool $isSignalSource() const; - MCAPI bool + MCFOLD bool $shouldConnectToRedstone(::BlockSource& region, ::BlockPos const& pos, ::Direction::Type direction) const; - MCAPI bool $canProvideSupport(::Block const&, uchar face, ::BlockSupportType type) const; + MCFOLD bool $canProvideSupport(::Block const&, uchar face, ::BlockSupportType type) const; MCAPI bool $dispense(::BlockSource& region, ::Container& container, int slot, ::Vec3 const& pos, uchar face) const; diff --git a/src/mc/world/level/block/ChiseledBookshelfBlock.h b/src/mc/world/level/block/ChiseledBookshelfBlock.h index 2b3ffda944..4d6c756e4d 100644 --- a/src/mc/world/level/block/ChiseledBookshelfBlock.h +++ b/src/mc/world/level/block/ChiseledBookshelfBlock.h @@ -73,17 +73,17 @@ class ChiseledBookshelfBlock : public ::FaceDirectionalActorBlock { public: // virtual function thunks // NOLINTBEGIN - MCAPI bool $isInteractiveBlock() const; + MCFOLD bool $isInteractiveBlock() const; MCAPI bool $use(::Player& player, ::BlockPos const& pos, uchar face, ::std::optional<::Vec3> worldHit) const; - MCAPI bool $hasComparatorSignal() const; + MCFOLD bool $hasComparatorSignal() const; MCAPI int $getComparatorSignal(::BlockSource& region, ::BlockPos const& pos, ::Block const& block, uchar dir) const; MCAPI void $onRemove(::BlockSource& region, ::BlockPos const& pos) const; - MCAPI ::ItemInstance $asItemInstance(::Block const& block, ::BlockActor const*) const; + MCFOLD ::ItemInstance $asItemInstance(::Block const& block, ::BlockActor const*) const; // NOLINTEND public: diff --git a/src/mc/world/level/block/ChorusFlowerBlock.h b/src/mc/world/level/block/ChorusFlowerBlock.h index a08a331f3d..987b9afa6c 100644 --- a/src/mc/world/level/block/ChorusFlowerBlock.h +++ b/src/mc/world/level/block/ChorusFlowerBlock.h @@ -106,19 +106,19 @@ class ChorusFlowerBlock : public ::BlockLegacy { MCAPI void $randomTick(::BlockSource& region, ::BlockPos const& pos, ::Random& random) const; - MCAPI void $tick(::BlockSource& region, ::BlockPos const& pos, ::Random& random) const; + MCFOLD void $tick(::BlockSource& region, ::BlockPos const& pos, ::Random& random) const; - MCAPI bool $mayPlace(::BlockSource& region, ::BlockPos const& pos) const; + MCFOLD bool $mayPlace(::BlockSource& region, ::BlockPos const& pos) const; - MCAPI void $neighborChanged(::BlockSource& region, ::BlockPos const& pos, ::BlockPos const& neighborPos) const; + MCFOLD void $neighborChanged(::BlockSource& region, ::BlockPos const& pos, ::BlockPos const& neighborPos) const; MCAPI bool $canSurvive(::BlockSource& region, ::BlockPos const& pos) const; - MCAPI bool $canProvideSupport(::Block const&, uchar face, ::BlockSupportType type) const; + MCFOLD bool $canProvideSupport(::Block const&, uchar face, ::BlockSupportType type) const; MCAPI void $onProjectileHit(::BlockSource& region, ::BlockPos const& pos, ::Actor const&) const; - MCAPI bool $isLavaBlocking() const; + MCFOLD bool $isLavaBlocking() const; // NOLINTEND public: diff --git a/src/mc/world/level/block/ChorusPlantBlock.h b/src/mc/world/level/block/ChorusPlantBlock.h index 98eae54bfc..e6c9fec6ce 100644 --- a/src/mc/world/level/block/ChorusPlantBlock.h +++ b/src/mc/world/level/block/ChorusPlantBlock.h @@ -95,15 +95,15 @@ class ChorusPlantBlock : public ::BlockLegacy { public: // virtual function thunks // NOLINTBEGIN - MCAPI void $tick(::BlockSource& region, ::BlockPos const& pos, ::Random& random) const; + MCFOLD void $tick(::BlockSource& region, ::BlockPos const& pos, ::Random& random) const; - MCAPI bool $mayPlace(::BlockSource& region, ::BlockPos const& pos) const; + MCFOLD bool $mayPlace(::BlockSource& region, ::BlockPos const& pos) const; - MCAPI void $neighborChanged(::BlockSource& region, ::BlockPos const& pos, ::BlockPos const& neighborPos) const; + MCFOLD void $neighborChanged(::BlockSource& region, ::BlockPos const& pos, ::BlockPos const& neighborPos) const; MCAPI bool $canSurvive(::BlockSource& region, ::BlockPos const& pos) const; - MCAPI bool $checkIsPathable(::Actor& entity, ::BlockPos const& lastPathPos, ::BlockPos const& pathPos) const; + MCFOLD bool $checkIsPathable(::Actor& entity, ::BlockPos const& lastPathPos, ::BlockPos const& pathPos) const; MCAPI ::AABB $getCollisionShape(::Block const&, ::IConstBlockSource const& region, ::BlockPos const& pos, ::optional_ref<::GetCollisionShapeInterface const>) @@ -112,9 +112,9 @@ class ChorusPlantBlock : public ::BlockLegacy { MCAPI ::AABB const& $getOutline(::Block const&, ::IConstBlockSource const& region, ::BlockPos const& pos, ::AABB& bufferValue) const; - MCAPI bool $isLavaBlocking() const; + MCFOLD bool $isLavaBlocking() const; - MCAPI bool $canProvideSupport(::Block const&, uchar, ::BlockSupportType) const; + MCFOLD bool $canProvideSupport(::Block const&, uchar, ::BlockSupportType) const; // NOLINTEND public: diff --git a/src/mc/world/level/block/ClayBlock.h b/src/mc/world/level/block/ClayBlock.h index 757af87c3b..6a4d1c96ce 100644 --- a/src/mc/world/level/block/ClayBlock.h +++ b/src/mc/world/level/block/ClayBlock.h @@ -20,7 +20,7 @@ class ClayBlock : public ::BlockLegacy { // NOLINTBEGIN // vIndex: 74 virtual bool - onFertilized(::BlockSource& region, ::BlockPos const& pos, ::Actor* entity, ::FertilizerType fType) const + onFertilized(::BlockSource& region, ::BlockPos const& pos, ::Actor* actor, ::FertilizerType fType) const /*override*/; // vIndex: 75 @@ -58,14 +58,14 @@ class ClayBlock : public ::BlockLegacy { public: // virtual function thunks // NOLINTBEGIN - MCAPI bool - $onFertilized(::BlockSource& region, ::BlockPos const& pos, ::Actor* entity, ::FertilizerType fType) const; + MCFOLD bool + $onFertilized(::BlockSource& region, ::BlockPos const& pos, ::Actor* actor, ::FertilizerType fType) const; - MCAPI bool $mayConsumeFertilizer(::BlockSource& region) const; + MCFOLD bool $mayConsumeFertilizer(::BlockSource& region) const; - MCAPI bool $canBeFertilized(::BlockSource& region, ::BlockPos const& pos, ::Block const& aboveBlock) const; + MCFOLD bool $canBeFertilized(::BlockSource& region, ::BlockPos const& pos, ::Block const& aboveBlock) const; - MCAPI bool $canBeOriginalSurface() const; + MCFOLD bool $canBeOriginalSurface() const; // NOLINTEND public: diff --git a/src/mc/world/level/block/ClientRequestPlaceholderBlock.h b/src/mc/world/level/block/ClientRequestPlaceholderBlock.h index b6b1dc57f7..26ee8bd2b1 100644 --- a/src/mc/world/level/block/ClientRequestPlaceholderBlock.h +++ b/src/mc/world/level/block/ClientRequestPlaceholderBlock.h @@ -52,7 +52,7 @@ class ClientRequestPlaceholderBlock : public ::BlockLegacy { public: // virtual function thunks // NOLINTBEGIN - MCAPI ::HitResult + MCFOLD ::HitResult $clip(::Block const&, ::BlockSource const&, ::BlockPos const&, ::Vec3 const& A, ::Vec3 const& B, ::ShapeType, ::optional_ref<::GetCollisionShapeInterface const>) const; // NOLINTEND diff --git a/src/mc/world/level/block/CocoaBlock.h b/src/mc/world/level/block/CocoaBlock.h index 348cb89d7b..ffade33823 100644 --- a/src/mc/world/level/block/CocoaBlock.h +++ b/src/mc/world/level/block/CocoaBlock.h @@ -51,7 +51,7 @@ class CocoaBlock : public ::BlockLegacy { // vIndex: 74 virtual bool - onFertilized(::BlockSource& region, ::BlockPos const& pos, ::Actor* actor, ::FertilizerType fType) const + onFertilized(::BlockSource& region, ::BlockPos const& pos, ::Actor* entity, ::FertilizerType fType) const /*override*/; // vIndex: 76 @@ -96,7 +96,7 @@ class CocoaBlock : public ::BlockLegacy { // NOLINTBEGIN MCAPI void $randomTick(::BlockSource& region, ::BlockPos const& pos, ::Random& random) const; - MCAPI void $tick(::BlockSource& region, ::BlockPos const& pos, ::Random& random) const; + MCFOLD void $tick(::BlockSource& region, ::BlockPos const& pos, ::Random& random) const; MCAPI bool $canSurvive(::BlockSource& region, ::BlockPos const& pos) const; @@ -106,14 +106,14 @@ class CocoaBlock : public ::BlockLegacy { $getPlacementBlock(::Actor const& by, ::BlockPos const& pos, uchar face, ::Vec3 const& clickPos, int itemValue) const; - MCAPI void $neighborChanged(::BlockSource& region, ::BlockPos const& pos, ::BlockPos const& neighborPos) const; + MCFOLD void $neighborChanged(::BlockSource& region, ::BlockPos const& pos, ::BlockPos const& neighborPos) const; MCAPI ::ItemInstance $asItemInstance(::Block const&, ::BlockActor const*) const; MCAPI bool - $onFertilized(::BlockSource& region, ::BlockPos const& pos, ::Actor* actor, ::FertilizerType fType) const; + $onFertilized(::BlockSource& region, ::BlockPos const& pos, ::Actor* entity, ::FertilizerType fType) const; - MCAPI bool $canBeFertilized(::BlockSource& region, ::BlockPos const& pos, ::Block const& aboveBlock) const; + MCFOLD bool $canBeFertilized(::BlockSource& region, ::BlockPos const& pos, ::Block const& aboveBlock) const; MCAPI bool $breaksFallingBlocks(::Block const& block, ::BaseGameVersion const version) const; // NOLINTEND diff --git a/src/mc/world/level/block/ColoredTorchBlock.h b/src/mc/world/level/block/ColoredTorchBlock.h index 2f5e9221cd..ead3c886dc 100644 --- a/src/mc/world/level/block/ColoredTorchBlock.h +++ b/src/mc/world/level/block/ColoredTorchBlock.h @@ -70,7 +70,7 @@ class ColoredTorchBlock : public ::TorchBlock { $getPlacementBlock(::Actor const& by, ::BlockPos const& pos, uchar face, ::Vec3 const& clickPos, int itemValue) const; - MCAPI bool $canBeUsedInCommands(::BaseGameVersion const& baseGameVersion) const; + MCFOLD bool $canBeUsedInCommands(::BaseGameVersion const& baseGameVersion) const; // NOLINTEND public: diff --git a/src/mc/world/level/block/CommandBlock.h b/src/mc/world/level/block/CommandBlock.h index 3bcdbb5935..52f79738ae 100644 --- a/src/mc/world/level/block/CommandBlock.h +++ b/src/mc/world/level/block/CommandBlock.h @@ -134,9 +134,9 @@ class CommandBlock : public ::ActorBlock { public: // virtual function thunks // NOLINTBEGIN - MCAPI bool $use(::Player& player, ::BlockPos const& pos, uchar face) const; + MCFOLD bool $use(::Player& player, ::BlockPos const& pos, uchar face) const; - MCAPI bool $isInteractiveBlock() const; + MCFOLD bool $isInteractiveBlock() const; MCAPI ::Block const& $getPlacementBlock(::Actor const& by, ::BlockPos const& pos, uchar face, ::Vec3 const& clickPos, int itemValue) @@ -144,11 +144,11 @@ class CommandBlock : public ::ActorBlock { MCAPI uchar $getMappedFace(uchar face, ::Block const& block) const; - MCAPI void $neighborChanged(::BlockSource& region, ::BlockPos const& pos, ::BlockPos const& neighborPos) const; + MCFOLD void $neighborChanged(::BlockSource& region, ::BlockPos const& pos, ::BlockPos const& neighborPos) const; MCAPI void $tick(::BlockSource& region, ::BlockPos const& pos, ::Random& random) const; - MCAPI bool $canInstatick() const; + MCFOLD bool $canInstatick() const; MCAPI ::ItemInstance $asItemInstance(::Block const&, ::BlockActor const*) const; @@ -158,7 +158,7 @@ class CommandBlock : public ::ActorBlock { MCAPI void $onRedstoneUpdate(::BlockSource& region, ::BlockPos const& pos, int strength, bool isFirstTime) const; - MCAPI bool $hasComparatorSignal() const; + MCFOLD bool $hasComparatorSignal() const; MCAPI int $getComparatorSignal(::BlockSource& region, ::BlockPos const& pos, ::Block const& block, uchar dir) const; diff --git a/src/mc/world/level/block/CommandName.h b/src/mc/world/level/block/CommandName.h index 7913732867..5cc1111abc 100644 --- a/src/mc/world/level/block/CommandName.h +++ b/src/mc/world/level/block/CommandName.h @@ -25,6 +25,6 @@ struct CommandName { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/world/level/block/ComparatorBlock.h b/src/mc/world/level/block/ComparatorBlock.h index 1f7f0e41ba..c5bc3c2b43 100644 --- a/src/mc/world/level/block/ComparatorBlock.h +++ b/src/mc/world/level/block/ComparatorBlock.h @@ -117,13 +117,13 @@ class ComparatorBlock : public ::ActorBlock { public: // virtual function thunks // NOLINTBEGIN - MCAPI int $getVariant(::Block const& block) const; + MCFOLD int $getVariant(::Block const& block) const; - MCAPI bool $canSpawnOn(::Actor*) const; + MCFOLD bool $canSpawnOn(::Actor*) const; MCAPI bool $use(::Player& player, ::BlockPos const& pos, uchar face) const; - MCAPI bool $isInteractiveBlock() const; + MCFOLD bool $isInteractiveBlock() const; MCAPI void $tick(::BlockSource& region, ::BlockPos const& pos, ::Random& random) const; @@ -131,24 +131,24 @@ class ComparatorBlock : public ::ActorBlock { MCAPI void $onRedstoneUpdate(::BlockSource& region, ::BlockPos const& pos, int strength, bool isFirstTime) const; - MCAPI bool $mayPlace(::BlockSource& region, ::BlockPos const& pos) const; + MCFOLD bool $mayPlace(::BlockSource& region, ::BlockPos const& pos) const; - MCAPI bool $canSurvive(::BlockSource& region, ::BlockPos const& pos) const; + MCFOLD bool $canSurvive(::BlockSource& region, ::BlockPos const& pos) const; MCAPI void $triggerEvent(::BlockSource& region, ::BlockPos const& pos, int b0, int b1) const; - MCAPI bool $isSignalSource() const; + MCFOLD bool $isSignalSource() const; - MCAPI void $neighborChanged(::BlockSource& region, ::BlockPos const& pos, ::BlockPos const& neighborPos) const; + MCFOLD void $neighborChanged(::BlockSource& region, ::BlockPos const& pos, ::BlockPos const& neighborPos) const; MCAPI ::ItemInstance $asItemInstance(::Block const&, ::BlockActor const*) const; MCAPI int $getDirectSignal(::BlockSource& region, ::BlockPos const& pos, int dir) const; - MCAPI bool + MCFOLD bool $shouldConnectToRedstone(::BlockSource& region, ::BlockPos const& pos, ::Direction::Type direction) const; - MCAPI bool $isPreservingMediumWhenPlaced(::BlockLegacy const* medium) const; + MCFOLD bool $isPreservingMediumWhenPlaced(::BlockLegacy const* medium) const; MCAPI void $_addHardCodedBlockComponents(::Experiments const&); // NOLINTEND diff --git a/src/mc/world/level/block/ComposterBlock.h b/src/mc/world/level/block/ComposterBlock.h index 60f75398a1..5d4a0157f2 100644 --- a/src/mc/world/level/block/ComposterBlock.h +++ b/src/mc/world/level/block/ComposterBlock.h @@ -185,11 +185,11 @@ class ComposterBlock : public ::BlockLegacy { MCAPI void $onMove(::BlockSource& region, ::BlockPos const& from, ::BlockPos const& to) const; - MCAPI bool $hasComparatorSignal() const; + MCFOLD bool $hasComparatorSignal() const; MCAPI int $getComparatorSignal(::BlockSource& region, ::BlockPos const& pos, ::Block const& block, uchar dir) const; - MCAPI bool $addCollisionShapes( + MCFOLD bool $addCollisionShapes( ::Block const& block, ::IConstBlockSource const& region, ::BlockPos const& pos, @@ -206,7 +206,7 @@ class ComposterBlock : public ::BlockLegacy { ::std::vector<::AABB>& inoutBoxes ) const; - MCAPI int $getVariant(::Block const& block) const; + MCFOLD int $getVariant(::Block const& block) const; MCAPI bool $breaksFallingBlocks(::Block const& block, ::BaseGameVersion const version) const; diff --git a/src/mc/world/level/block/CompoundBlockVolume.h b/src/mc/world/level/block/CompoundBlockVolume.h index 5eab8df8dd..404906ccfc 100644 --- a/src/mc/world/level/block/CompoundBlockVolume.h +++ b/src/mc/world/level/block/CompoundBlockVolume.h @@ -65,7 +65,7 @@ class CompoundBlockVolume : public ::Bedrock::EnableNonOwnerReferences { MCAPI ::BlockPos getMin() const; - MCAPI ::BlockPos const& getOrigin() const; + MCFOLD ::BlockPos const& getOrigin() const; MCAPI ::std::vector<::CompoundBlockVolumeItem> getVolumeList() const; @@ -82,7 +82,7 @@ class CompoundBlockVolume : public ::Bedrock::EnableNonOwnerReferences { MCAPI bool popVolume(); - MCAPI void pushVolume(::CompoundBlockVolumeItem&& item); + MCFOLD void pushVolume(::CompoundBlockVolumeItem&& item); MCAPI void pushVolume(::CompoundBlockVolumeItem const&); diff --git a/src/mc/world/level/block/CompoundBlockVolumeIterator.h b/src/mc/world/level/block/CompoundBlockVolumeIterator.h index d88066f1d4..0609236291 100644 --- a/src/mc/world/level/block/CompoundBlockVolumeIterator.h +++ b/src/mc/world/level/block/CompoundBlockVolumeIterator.h @@ -66,7 +66,7 @@ class CompoundBlockVolumeIterator : public ::BaseBlockLocationIterator { public: // virtual function thunks // NOLINTBEGIN - MCAPI bool $isValid() const; + MCFOLD bool $isValid() const; MCAPI void $_begin(); diff --git a/src/mc/world/level/block/ConcretePowderBlock.h b/src/mc/world/level/block/ConcretePowderBlock.h index cc336fdd70..99d95e7b5f 100644 --- a/src/mc/world/level/block/ConcretePowderBlock.h +++ b/src/mc/world/level/block/ConcretePowderBlock.h @@ -71,7 +71,7 @@ class ConcretePowderBlock : public ::FallingBlock { public: // virtual function thunks // NOLINTBEGIN - MCAPI ::mce::Color $getDustColor(::Block const& block) const; + MCFOLD ::mce::Color $getDustColor(::Block const& block) const; MCAPI ::std::string $getDustParticleName(::Block const& block) const; @@ -79,7 +79,7 @@ class ConcretePowderBlock : public ::FallingBlock { MCAPI bool $shouldStopFalling(::Actor& entity) const; - MCAPI ::ItemInstance $asItemInstance(::Block const& block, ::BlockActor const*) const; + MCFOLD ::ItemInstance $asItemInstance(::Block const& block, ::BlockActor const*) const; MCAPI void $_addHardCodedBlockComponents(::Experiments const&); // NOLINTEND diff --git a/src/mc/world/level/block/CopperBehavior.h b/src/mc/world/level/block/CopperBehavior.h index d12cfc6246..0e4db25855 100644 --- a/src/mc/world/level/block/CopperBehavior.h +++ b/src/mc/world/level/block/CopperBehavior.h @@ -54,7 +54,7 @@ class CopperBehavior { MCAPI bool isWaxable() const; - MCAPI bool isWaxed() const; + MCFOLD bool isWaxed() const; MCAPI bool tryDecrementAge(::BlockSource& region, ::BlockPos const& pos) const; @@ -91,6 +91,6 @@ class CopperBehavior { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/world/level/block/CopperBlock.h b/src/mc/world/level/block/CopperBlock.h index 164d6caea8..095d705897 100644 --- a/src/mc/world/level/block/CopperBlock.h +++ b/src/mc/world/level/block/CopperBlock.h @@ -100,13 +100,13 @@ class CopperBlock : public ::BlockLegacy { public: // virtual function thunks // NOLINTBEGIN - MCAPI ::CopperBehavior const* $tryGetCopperBehavior() const; + MCFOLD ::CopperBehavior const* $tryGetCopperBehavior() const; - MCAPI bool $use(::Player& player, ::BlockPos const& pos, uchar face) const; + MCFOLD bool $use(::Player& player, ::BlockPos const& pos, uchar face) const; - MCAPI void $randomTick(::BlockSource& region, ::BlockPos const& pos, ::Random& random) const; + MCFOLD void $randomTick(::BlockSource& region, ::BlockPos const& pos, ::Random& random) const; - MCAPI void $onLightningHit(::BlockSource& region, ::BlockPos const& pos) const; + MCFOLD void $onLightningHit(::BlockSource& region, ::BlockPos const& pos) const; // NOLINTEND public: diff --git a/src/mc/world/level/block/CopperBulbBlock.h b/src/mc/world/level/block/CopperBulbBlock.h index 3846e3aa01..baea8cb4d3 100644 --- a/src/mc/world/level/block/CopperBulbBlock.h +++ b/src/mc/world/level/block/CopperBulbBlock.h @@ -97,7 +97,7 @@ class CopperBulbBlock : public ::BlockLegacy { ::HashedString const& waxedVariant ); - MCAPI void onPlace(::BlockEvents::BlockPlaceEvent& eventData) const; + MCFOLD void onPlace(::BlockEvents::BlockPlaceEvent& eventData) const; // NOLINTEND public: @@ -131,25 +131,25 @@ class CopperBulbBlock : public ::BlockLegacy { public: // virtual function thunks // NOLINTBEGIN - MCAPI ::CopperBehavior const* $tryGetCopperBehavior() const; + MCFOLD ::CopperBehavior const* $tryGetCopperBehavior() const; - MCAPI bool $use(::Player& player, ::BlockPos const& pos, uchar face) const; + MCFOLD bool $use(::Player& player, ::BlockPos const& pos, uchar face) const; - MCAPI void $randomTick(::BlockSource& region, ::BlockPos const& pos, ::Random& random) const; + MCFOLD void $randomTick(::BlockSource& region, ::BlockPos const& pos, ::Random& random) const; - MCAPI void $onLightningHit(::BlockSource& region, ::BlockPos const& pos) const; + MCFOLD void $onLightningHit(::BlockSource& region, ::BlockPos const& pos) const; MCAPI void $setupRedstoneComponent(::BlockSource& region, ::BlockPos const& pos) const; MCAPI void $onRedstoneUpdate(::BlockSource& region, ::BlockPos const& pos, int strength, bool isFirstTime) const; - MCAPI bool $hasComparatorSignal() const; + MCFOLD bool $hasComparatorSignal() const; MCAPI int $getComparatorSignal(::BlockSource& region, ::BlockPos const& pos, ::Block const& block, uchar dir) const; MCAPI void $tick(::BlockSource& region, ::BlockPos const& pos, ::Random& random) const; - MCAPI bool + MCFOLD bool $shouldConnectToRedstone(::BlockSource& region, ::BlockPos const& pos, ::Direction::Type direction) const; MCAPI ::Brightness $getLightEmission(::Block const& block) const; diff --git a/src/mc/world/level/block/CopperDoorBlock.h b/src/mc/world/level/block/CopperDoorBlock.h index 65c4838ae6..66e18d82ee 100644 --- a/src/mc/world/level/block/CopperDoorBlock.h +++ b/src/mc/world/level/block/CopperDoorBlock.h @@ -95,9 +95,9 @@ class CopperDoorBlock : public ::DoorBlock { public: // virtual function thunks // NOLINTBEGIN - MCAPI ::CopperBehavior const* $tryGetCopperBehavior() const; + MCFOLD ::CopperBehavior const* $tryGetCopperBehavior() const; - MCAPI void $randomTick(::BlockSource& region, ::BlockPos const& pos, ::Random& random) const; + MCFOLD void $randomTick(::BlockSource& region, ::BlockPos const& pos, ::Random& random) const; MCAPI void $onLightningHit(::BlockSource& region, ::BlockPos const& pos) const; diff --git a/src/mc/world/level/block/CopperTrapDoorBlock.h b/src/mc/world/level/block/CopperTrapDoorBlock.h index e23ad81640..eb3e50406d 100644 --- a/src/mc/world/level/block/CopperTrapDoorBlock.h +++ b/src/mc/world/level/block/CopperTrapDoorBlock.h @@ -87,11 +87,11 @@ class CopperTrapDoorBlock : public ::TrapDoorBlock { public: // virtual function thunks // NOLINTBEGIN - MCAPI ::CopperBehavior const* $tryGetCopperBehavior() const; + MCFOLD ::CopperBehavior const* $tryGetCopperBehavior() const; - MCAPI void $randomTick(::BlockSource& region, ::BlockPos const& pos, ::Random& random) const; + MCFOLD void $randomTick(::BlockSource& region, ::BlockPos const& pos, ::Random& random) const; - MCAPI void $onLightningHit(::BlockSource& region, ::BlockPos const& pos) const; + MCFOLD void $onLightningHit(::BlockSource& region, ::BlockPos const& pos) const; MCAPI bool $use(::Player& player, ::BlockPos const& pos, uchar face) const; // NOLINTEND diff --git a/src/mc/world/level/block/CoralBlock.h b/src/mc/world/level/block/CoralBlock.h index cf76f4cc76..11d70b9330 100644 --- a/src/mc/world/level/block/CoralBlock.h +++ b/src/mc/world/level/block/CoralBlock.h @@ -77,7 +77,7 @@ class CoralBlock : public ::BlockLegacy { MCAPI void $tick(::BlockSource& region, ::BlockPos const& pos, ::Random& random) const; - MCAPI bool $mayPlaceOn(::BlockSource& region, ::BlockPos const& pos) const; + MCFOLD bool $mayPlaceOn(::BlockSource& region, ::BlockPos const& pos) const; MCAPI void $_addHardCodedBlockComponents(::Experiments const&); // NOLINTEND diff --git a/src/mc/world/level/block/CoralFan.h b/src/mc/world/level/block/CoralFan.h index 2511a5895b..59d789a96a 100644 --- a/src/mc/world/level/block/CoralFan.h +++ b/src/mc/world/level/block/CoralFan.h @@ -43,7 +43,7 @@ class CoralFan : public ::BushBlock { /*override*/; // vIndex: 48 - virtual bool isValidAuxValue(int value) const /*override*/; + virtual bool isValidAuxValue(int auxValue) const /*override*/; // vIndex: 15 virtual ::Vec3 randomlyModifyPosition(::BlockPos const& pos) const /*override*/; @@ -90,7 +90,7 @@ class CoralFan : public ::BushBlock { // NOLINTBEGIN MCAPI CoralFan(::std::string const& nameId, int id, ::HashedString const& deadVersion); - MCAPI ::HashedString const& getDeadVersion() const; + MCFOLD ::HashedString const& getDeadVersion() const; MCAPI void onPlaceBase(::BlockEvents::BlockPlaceEvent& eventData) const; // NOLINTEND @@ -112,26 +112,26 @@ class CoralFan : public ::BushBlock { // NOLINTBEGIN MCAPI ::mce::Color $getMapColor(::BlockSource& region, ::BlockPos const& pos, ::Block const& block) const; - MCAPI bool $isValidAuxValue(int value) const; + MCAPI bool $isValidAuxValue(int auxValue) const; MCAPI ::Vec3 $randomlyModifyPosition(::BlockPos const& pos) const; - MCAPI ::AABB + MCFOLD ::AABB $getCollisionShape(::Block const&, ::IConstBlockSource const&, ::BlockPos const&, ::optional_ref<::GetCollisionShapeInterface const>) const; - MCAPI ::AABB const& + MCFOLD ::AABB const& $getOutline(::Block const& block, ::IConstBlockSource const&, ::BlockPos const& pos, ::AABB& bufferValue) const; - MCAPI bool $mayConsumeFertilizer(::BlockSource& region) const; + MCFOLD bool $mayConsumeFertilizer(::BlockSource& region) const; - MCAPI bool $isLavaBlocking() const; + MCFOLD bool $isLavaBlocking() const; MCAPI void $neighborChanged(::BlockSource& region, ::BlockPos const& pos, ::BlockPos const& neighborPos) const; - MCAPI bool $checkIsPathable(::Actor& entity, ::BlockPos const& lastPathPos, ::BlockPos const& pathPos) const; + MCFOLD bool $checkIsPathable(::Actor& entity, ::BlockPos const& lastPathPos, ::BlockPos const& pathPos) const; - MCAPI bool $mayPlaceOn(::BlockSource& region, ::BlockPos const& pos) const; + MCFOLD bool $mayPlaceOn(::BlockSource& region, ::BlockPos const& pos) const; MCAPI void $checkAlive(::BlockSource& region, ::BlockPos const& pos) const; diff --git a/src/mc/world/level/block/CoralFanHang.h b/src/mc/world/level/block/CoralFanHang.h index 1c0ad9f548..3c4be53aff 100644 --- a/src/mc/world/level/block/CoralFanHang.h +++ b/src/mc/world/level/block/CoralFanHang.h @@ -109,7 +109,7 @@ class CoralFanHang : public ::CoralFan { public: // virtual function thunks // NOLINTBEGIN - MCAPI ::Vec3 $randomlyModifyPosition(::BlockPos const& pos) const; + MCFOLD ::Vec3 $randomlyModifyPosition(::BlockPos const& pos) const; MCAPI ::ItemInstance $asItemInstance(::Block const&, ::BlockActor const*) const; @@ -118,7 +118,7 @@ class CoralFanHang : public ::CoralFan { MCAPI ::AABB const& $getOutline(::Block const& block, ::IConstBlockSource const&, ::BlockPos const& pos, ::AABB& bufferValue) const; - MCAPI ::std::string $buildDescriptionId(::Block const&) const; + MCFOLD ::std::string $buildDescriptionId(::Block const&) const; MCAPI bool $canSurvive(::BlockSource& region, ::BlockPos const& pos) const; @@ -126,7 +126,7 @@ class CoralFanHang : public ::CoralFan { MCAPI void $checkAlive(::BlockSource& region, ::BlockPos const& pos) const; - MCAPI bool $mayPlaceOn(::BlockSource& region, ::BlockPos const& pos) const; + MCFOLD bool $mayPlaceOn(::BlockSource& region, ::BlockPos const& pos) const; // NOLINTEND public: diff --git a/src/mc/world/level/block/CoralPlantBlock.h b/src/mc/world/level/block/CoralPlantBlock.h index 5f08c93a2f..4c6e7316f2 100644 --- a/src/mc/world/level/block/CoralPlantBlock.h +++ b/src/mc/world/level/block/CoralPlantBlock.h @@ -108,24 +108,24 @@ class CoralPlantBlock : public ::BlockLegacy { MCAPI void $tick(::BlockSource& region, ::BlockPos const& pos, ::Random& random) const; - MCAPI ::Vec3 $randomlyModifyPosition(::BlockPos const& pos) const; + MCFOLD ::Vec3 $randomlyModifyPosition(::BlockPos const& pos) const; - MCAPI ::AABB + MCFOLD ::AABB $getCollisionShape(::Block const&, ::IConstBlockSource const&, ::BlockPos const&, ::optional_ref<::GetCollisionShapeInterface const>) const; - MCAPI ::AABB const& + MCFOLD ::AABB const& $getOutline(::Block const& block, ::IConstBlockSource const&, ::BlockPos const& pos, ::AABB& bufferValue) const; - MCAPI bool $canSurvive(::BlockSource& region, ::BlockPos const& pos) const; + MCFOLD bool $canSurvive(::BlockSource& region, ::BlockPos const& pos) const; - MCAPI bool $mayConsumeFertilizer(::BlockSource& region) const; + MCFOLD bool $mayConsumeFertilizer(::BlockSource& region) const; MCAPI void $neighborChanged(::BlockSource& region, ::BlockPos const& pos, ::BlockPos const& neighborPos) const; - MCAPI bool $isLavaBlocking() const; + MCFOLD bool $isLavaBlocking() const; - MCAPI bool $checkIsPathable(::Actor& entity, ::BlockPos const& lastPathPos, ::BlockPos const& pathPos) const; + MCFOLD bool $checkIsPathable(::Actor& entity, ::BlockPos const& lastPathPos, ::BlockPos const& pathPos) const; MCAPI bool $mayPlaceOn(::BlockSource& region, ::BlockPos const& pos) const; diff --git a/src/mc/world/level/block/CrafterBlock.h b/src/mc/world/level/block/CrafterBlock.h index b01fb55f02..9c57b72138 100644 --- a/src/mc/world/level/block/CrafterBlock.h +++ b/src/mc/world/level/block/CrafterBlock.h @@ -96,7 +96,7 @@ class CrafterBlock : public ::ActorBlock { public: // static functions // NOLINTBEGIN - MCAPI static int getAttachedFace(int facing); + MCFOLD static int getAttachedFace(int facing); // NOLINTEND public: @@ -120,19 +120,19 @@ class CrafterBlock : public ::ActorBlock { $getPlacementBlock(::Actor const& by, ::BlockPos const& pos, uchar face, ::Vec3 const& clickPos, int itemValue) const; - MCAPI void $onRemove(::BlockSource& region, ::BlockPos const& pos) const; + MCFOLD void $onRemove(::BlockSource& region, ::BlockPos const& pos) const; - MCAPI bool $use(::Player& player, ::BlockPos const& pos, uchar) const; + MCFOLD bool $use(::Player& player, ::BlockPos const& pos, uchar) const; - MCAPI bool $isInteractiveBlock() const; + MCFOLD bool $isInteractiveBlock() const; - MCAPI bool $isContainerBlock() const; + MCFOLD bool $isContainerBlock() const; - MCAPI void $setupRedstoneComponent(::BlockSource& region, ::BlockPos const& pos) const; + MCFOLD void $setupRedstoneComponent(::BlockSource& region, ::BlockPos const& pos) const; MCAPI void $onRedstoneUpdate(::BlockSource& region, ::BlockPos const& pos, int strength, bool isFirstTime) const; - MCAPI bool $hasComparatorSignal() const; + MCFOLD bool $hasComparatorSignal() const; MCAPI int $getComparatorSignal(::BlockSource& region, ::BlockPos const& pos, ::Block const& block, uchar dir) const; @@ -144,7 +144,7 @@ class CrafterBlock : public ::ActorBlock { MCAPI ::Flip $getFaceFlip(uchar face, ::Block const& block) const; - MCAPI bool $allowStateMismatchOnPlacement(::Block const& clientTarget, ::Block const& serverTarget) const; + MCFOLD bool $allowStateMismatchOnPlacement(::Block const& clientTarget, ::Block const& serverTarget) const; MCAPI void $_addHardCodedBlockComponents(::Experiments const&); // NOLINTEND diff --git a/src/mc/world/level/block/CraftingTableBlock.h b/src/mc/world/level/block/CraftingTableBlock.h index e3ed10c539..ae486deba3 100644 --- a/src/mc/world/level/block/CraftingTableBlock.h +++ b/src/mc/world/level/block/CraftingTableBlock.h @@ -52,7 +52,7 @@ class CraftingTableBlock : public ::BlockLegacy { // NOLINTBEGIN MCAPI bool $use(::Player& player, ::BlockPos const& pos, uchar face) const; - MCAPI bool $isCraftingBlock() const; + MCFOLD bool $isCraftingBlock() const; MCAPI void $_addHardCodedBlockComponents(::Experiments const& experiments); // NOLINTEND diff --git a/src/mc/world/level/block/CreakingHeartBlock.h b/src/mc/world/level/block/CreakingHeartBlock.h index fafdc1ffd3..82142a4e51 100644 --- a/src/mc/world/level/block/CreakingHeartBlock.h +++ b/src/mc/world/level/block/CreakingHeartBlock.h @@ -92,7 +92,7 @@ class CreakingHeartBlock : public ::ActorBlockBase<::RotatedPillarBlock> { MCAPI int $getVariant(::Block const& block) const; - MCAPI bool $hasComparatorSignal() const; + MCFOLD bool $hasComparatorSignal() const; MCAPI int $getComparatorSignal(::BlockSource& region, ::BlockPos const& pos, ::Block const& block, uchar dir) const; @@ -104,9 +104,9 @@ class CreakingHeartBlock : public ::ActorBlockBase<::RotatedPillarBlock> { ::Actor& sourceEntity ) const; - MCAPI void $animateTick(::BlockSource& region, ::BlockPos const& pos, ::Random& random) const; + MCFOLD void $animateTick(::BlockSource& region, ::BlockPos const& pos, ::Random& random) const; - MCAPI void $animateTickBedrockLegacy(::BlockSource& region, ::BlockPos const& pos, ::Random& random) const; + MCFOLD void $animateTickBedrockLegacy(::BlockSource& region, ::BlockPos const& pos, ::Random& random) const; MCAPI void $_addHardCodedBlockComponents(::Experiments const&); // NOLINTEND diff --git a/src/mc/world/level/block/CropBlock.h b/src/mc/world/level/block/CropBlock.h index 529cae6f0c..811717e955 100644 --- a/src/mc/world/level/block/CropBlock.h +++ b/src/mc/world/level/block/CropBlock.h @@ -99,13 +99,13 @@ class CropBlock : public ::BushBlock { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND public: // virtual function thunks // NOLINTBEGIN - MCAPI bool $mayPlaceOn(::BlockSource& region, ::BlockPos const& pos) const; + MCFOLD bool $mayPlaceOn(::BlockSource& region, ::BlockPos const& pos) const; MCAPI void $randomTick(::BlockSource& region, ::BlockPos const& pos, ::Random& random) const; @@ -115,9 +115,9 @@ class CropBlock : public ::BushBlock { MCAPI int $getVariant(::Block const& block) const; - MCAPI ::ItemInstance $asItemInstance(::Block const&, ::BlockActor const*) const; + MCFOLD ::ItemInstance $asItemInstance(::Block const&, ::BlockActor const*) const; - MCAPI ::AABB + MCFOLD ::AABB $getCollisionShape(::Block const&, ::IConstBlockSource const&, ::BlockPos const&, ::optional_ref<::GetCollisionShapeInterface const>) const; @@ -140,7 +140,7 @@ class CropBlock : public ::BushBlock { MCAPI bool $onFertilized(::BlockSource& region, ::BlockPos const& pos, ::Actor* actor, ::FertilizerType fType) const; - MCAPI bool $canBeFertilized(::BlockSource& region, ::BlockPos const& pos, ::Block const& aboveBlock) const; + MCFOLD bool $canBeFertilized(::BlockSource& region, ::BlockPos const& pos, ::Block const& aboveBlock) const; // NOLINTEND public: diff --git a/src/mc/world/level/block/CutCopperSlab.h b/src/mc/world/level/block/CutCopperSlab.h index 16b93deb51..11c7c7af96 100644 --- a/src/mc/world/level/block/CutCopperSlab.h +++ b/src/mc/world/level/block/CutCopperSlab.h @@ -105,7 +105,7 @@ class CutCopperSlab : public ::SlabBlock { public: // virtual function thunks // NOLINTBEGIN - MCAPI ::CopperBehavior const* $tryGetCopperBehavior() const; + MCFOLD ::CopperBehavior const* $tryGetCopperBehavior() const; MCAPI bool $use(::Player& player, ::BlockPos const& pos, uchar face) const; diff --git a/src/mc/world/level/block/CutCopperStairs.h b/src/mc/world/level/block/CutCopperStairs.h index 1b8e4a7ea5..b647ca2e3d 100644 --- a/src/mc/world/level/block/CutCopperStairs.h +++ b/src/mc/world/level/block/CutCopperStairs.h @@ -102,11 +102,11 @@ class CutCopperStairs : public ::StairBlock { public: // virtual function thunks // NOLINTBEGIN - MCAPI ::CopperBehavior const* $tryGetCopperBehavior() const; + MCFOLD ::CopperBehavior const* $tryGetCopperBehavior() const; MCAPI bool $use(::Player& player, ::BlockPos const& pos, uchar face) const; - MCAPI void $randomTick(::BlockSource& region, ::BlockPos const& pos, ::Random& random) const; + MCFOLD void $randomTick(::BlockSource& region, ::BlockPos const& pos, ::Random& random) const; MCAPI void $onLightningHit(::BlockSource& region, ::BlockPos const& pos) const; // NOLINTEND diff --git a/src/mc/world/level/block/DaylightDetectorBlock.h b/src/mc/world/level/block/DaylightDetectorBlock.h index 3187336e75..6ca7e4ed57 100644 --- a/src/mc/world/level/block/DaylightDetectorBlock.h +++ b/src/mc/world/level/block/DaylightDetectorBlock.h @@ -74,7 +74,7 @@ class DaylightDetectorBlock : public ::ActorBlock { // NOLINTBEGIN MCAPI DaylightDetectorBlock(::std::string const& nameId, int id, bool isInverted); - MCAPI void onPlace(::BlockEvents::BlockPlaceEvent& eventData) const; + MCFOLD void onPlace(::BlockEvents::BlockPlaceEvent& eventData) const; // NOLINTEND public: @@ -94,24 +94,24 @@ class DaylightDetectorBlock : public ::ActorBlock { // NOLINTBEGIN MCAPI void $setupRedstoneComponent(::BlockSource& region, ::BlockPos const& pos) const; - MCAPI void $onRemove(::BlockSource& region, ::BlockPos const& pos) const; + MCFOLD void $onRemove(::BlockSource& region, ::BlockPos const& pos) const; MCAPI void $updateSignalStrength(::BlockSource& region, ::BlockPos const& pos) const; MCAPI bool $use(::Player& player, ::BlockPos const& pos, uchar) const; - MCAPI bool + MCFOLD bool $shouldConnectToRedstone(::BlockSource& region, ::BlockPos const& pos, ::Direction::Type direction) const; - MCAPI bool $isInteractiveBlock() const; + MCFOLD bool $isInteractiveBlock() const; - MCAPI bool $isSignalSource() const; + MCFOLD bool $isSignalSource() const; - MCAPI int $getVariant(::Block const& block) const; + MCFOLD int $getVariant(::Block const& block) const; - MCAPI bool $checkIsPathable(::Actor& entity, ::BlockPos const& lastPathPos, ::BlockPos const& pathPos) const; + MCFOLD bool $checkIsPathable(::Actor& entity, ::BlockPos const& lastPathPos, ::BlockPos const& pathPos) const; - MCAPI bool $canProvideSupport(::Block const&, uchar face, ::BlockSupportType) const; + MCFOLD bool $canProvideSupport(::Block const&, uchar face, ::BlockSupportType) const; MCAPI void $_addHardCodedBlockComponents(::Experiments const&); // NOLINTEND diff --git a/src/mc/world/level/block/DecoratedPotBlock.h b/src/mc/world/level/block/DecoratedPotBlock.h index 0ac096523b..5d25d69cb7 100644 --- a/src/mc/world/level/block/DecoratedPotBlock.h +++ b/src/mc/world/level/block/DecoratedPotBlock.h @@ -99,7 +99,7 @@ class DecoratedPotBlock : public ::FaceDirectionalActorBlock { MCAPI void $onRemove(::BlockSource& region, ::BlockPos const& pos) const; - MCAPI bool $isInteractiveBlock() const; + MCFOLD bool $isInteractiveBlock() const; MCAPI bool $use(::Player& player, ::BlockPos const& pos, uchar) const; @@ -107,9 +107,9 @@ class DecoratedPotBlock : public ::FaceDirectionalActorBlock { MCAPI bool $canProvideSupport(::Block const&, uchar face, ::BlockSupportType type) const; - MCAPI bool $checkIsPathable(::Actor& entity, ::BlockPos const& lastPathPos, ::BlockPos const& pathPos) const; + MCFOLD bool $checkIsPathable(::Actor& entity, ::BlockPos const& lastPathPos, ::BlockPos const& pathPos) const; - MCAPI bool $hasComparatorSignal() const; + MCFOLD bool $hasComparatorSignal() const; MCAPI int $getComparatorSignal(::BlockSource& region, ::BlockPos const& pos, ::Block const& block, uchar dir) const; // NOLINTEND diff --git a/src/mc/world/level/block/DeepslateBlock.h b/src/mc/world/level/block/DeepslateBlock.h index 6a16b1d17b..abeb9fbb60 100644 --- a/src/mc/world/level/block/DeepslateBlock.h +++ b/src/mc/world/level/block/DeepslateBlock.h @@ -45,7 +45,7 @@ class DeepslateBlock : public ::RotatedPillarBlock { public: // virtual function thunks // NOLINTBEGIN - MCAPI bool $canBeOriginalSurface() const; + MCFOLD bool $canBeOriginalSurface() const; MCAPI ::Block const* $tryGetInfested(::Block const& block) const; // NOLINTEND diff --git a/src/mc/world/level/block/DefaultSculkBehavior.h b/src/mc/world/level/block/DefaultSculkBehavior.h index 00d7b7ce8a..525c0071ae 100644 --- a/src/mc/world/level/block/DefaultSculkBehavior.h +++ b/src/mc/world/level/block/DefaultSculkBehavior.h @@ -55,9 +55,9 @@ class DefaultSculkBehavior : public ::SculkBehavior { // NOLINTBEGIN MCAPI int $updateDecayDelay(int const currentValue) const; - MCAPI int $updateFacingData(int const currentValue, ::Block const&) const; + MCFOLD int $updateFacingData(int const currentValue, ::Block const&) const; - MCAPI bool $canChangeBlockOnSpread() const; + MCFOLD bool $canChangeBlockOnSpread() const; MCAPI bool $attemptSpreadVeins(::IBlockWorldGenAPI& target, ::BlockPos const& pos, ::Block const& block, int facingData, ::SculkSpreader&) @@ -75,7 +75,7 @@ class DefaultSculkBehavior : public ::SculkBehavior { bool const ) const; - MCAPI void $onDischarged(::IBlockWorldGenAPI&, ::BlockSource*, ::BlockPos const&) const; + MCFOLD void $onDischarged(::IBlockWorldGenAPI&, ::BlockSource*, ::BlockPos const&) const; // NOLINTEND public: diff --git a/src/mc/world/level/block/DetectorRailBlock.h b/src/mc/world/level/block/DetectorRailBlock.h index 9df91d0de6..69cdfa9513 100644 --- a/src/mc/world/level/block/DetectorRailBlock.h +++ b/src/mc/world/level/block/DetectorRailBlock.h @@ -79,24 +79,24 @@ class DetectorRailBlock : public ::BaseRailBlock { public: // virtual function thunks // NOLINTBEGIN - MCAPI int $getVariant(::Block const& block) const; + MCFOLD int $getVariant(::Block const& block) const; MCAPI void $setupRedstoneComponent(::BlockSource& region, ::BlockPos const& pos) const; - MCAPI void $onRedstoneUpdate(::BlockSource& region, ::BlockPos const& pos, int strength, bool isFirstTime) const; + MCFOLD void $onRedstoneUpdate(::BlockSource& region, ::BlockPos const& pos, int strength, bool isFirstTime) const; MCAPI void $tick(::BlockSource& region, ::BlockPos const& pos, ::Random& random) const; MCAPI void $entityInside(::BlockSource& region, ::BlockPos const& pos, ::Actor& entity) const; - MCAPI bool + MCFOLD bool $shouldConnectToRedstone(::BlockSource& region, ::BlockPos const& pos, ::Direction::Type direction) const; - MCAPI bool $hasComparatorSignal() const; + MCFOLD bool $hasComparatorSignal() const; MCAPI int $getComparatorSignal(::BlockSource& region, ::BlockPos const& pos, ::Block const& block, uchar dir) const; - MCAPI bool $isSignalSource() const; + MCFOLD bool $isSignalSource() const; // NOLINTEND public: diff --git a/src/mc/world/level/block/DiodeBlock.h b/src/mc/world/level/block/DiodeBlock.h index 9bc85ead25..fbb4a7f574 100644 --- a/src/mc/world/level/block/DiodeBlock.h +++ b/src/mc/world/level/block/DiodeBlock.h @@ -112,15 +112,15 @@ class DiodeBlock : public ::BlockLegacy { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND public: // virtual function thunks // NOLINTBEGIN - MCAPI bool $mayPlace(::BlockSource& region, ::BlockPos const& pos) const; + MCFOLD bool $mayPlace(::BlockSource& region, ::BlockPos const& pos) const; - MCAPI bool $canSurvive(::BlockSource& region, ::BlockPos const& pos) const; + MCFOLD bool $canSurvive(::BlockSource& region, ::BlockPos const& pos) const; MCAPI void $onRedstoneUpdate(::BlockSource& region, ::BlockPos const& pos, int strength, bool isFirstTime) const; @@ -130,15 +130,15 @@ class DiodeBlock : public ::BlockLegacy { MCAPI int $getSignal(::BlockSource& region, ::BlockPos const& pos, int dir) const; - MCAPI bool $isSignalSource() const; + MCFOLD bool $isSignalSource() const; - MCAPI bool $isLocked(::BlockSource& region, ::BlockPos const& pos) const; + MCFOLD bool $isLocked(::BlockSource& region, ::BlockPos const& pos) const; MCAPI bool $isSameDiode(::Block const& block) const; MCAPI bool $shouldPrioritize(::BlockSource& region, ::BlockPos const& pos) const; - MCAPI bool $canSpawnOn(::Actor*) const; + MCFOLD bool $canSpawnOn(::Actor*) const; MCAPI bool $isOn() const; @@ -150,7 +150,7 @@ class DiodeBlock : public ::BlockLegacy { MCAPI int $getAlternateSignal(::BlockSource& region, ::BlockPos const& pos) const; - MCAPI int $getOutputSignal(::Block const& block) const; + MCFOLD int $getOutputSignal(::Block const& block) const; MCAPI int $getTurnOffDelay(::Block const& block) const; // NOLINTEND diff --git a/src/mc/world/level/block/DirtBlock.h b/src/mc/world/level/block/DirtBlock.h index 8ce1782144..11353eff3f 100644 --- a/src/mc/world/level/block/DirtBlock.h +++ b/src/mc/world/level/block/DirtBlock.h @@ -81,22 +81,22 @@ class DirtBlock : public ::BlockLegacy { public: // virtual function thunks // NOLINTBEGIN - MCAPI ::ItemInstance $asItemInstance(::Block const& block, ::BlockActor const*) const; + MCFOLD ::ItemInstance $asItemInstance(::Block const& block, ::BlockActor const*) const; - MCAPI bool + MCFOLD bool $onFertilized(::BlockSource& region, ::BlockPos const& pos, ::Actor* actor, ::FertilizerType fType) const; - MCAPI bool $mayConsumeFertilizer(::BlockSource& region) const; + MCFOLD bool $mayConsumeFertilizer(::BlockSource& region) const; - MCAPI bool $canBeFertilized(::BlockSource& region, ::BlockPos const& pos, ::Block const& aboveBlock) const; + MCFOLD bool $canBeFertilized(::BlockSource& region, ::BlockPos const& pos, ::Block const& aboveBlock) const; - MCAPI bool $canBeOriginalSurface() const; + MCFOLD bool $canBeOriginalSurface() const; - MCAPI bool $use(::Player& player, ::BlockPos const& pos, uchar face) const; + MCFOLD bool $use(::Player& player, ::BlockPos const& pos, uchar face) const; MCAPI bool $tryToTill(::BlockSource& region, ::BlockPos const& pos, ::Actor& entity, ::ItemStack& item) const; - MCAPI ::mce::Color $getMapColor(::BlockSource& region, ::BlockPos const& pos, ::Block const& block) const; + MCFOLD ::mce::Color $getMapColor(::BlockSource& region, ::BlockPos const& pos, ::Block const& block) const; MCAPI void $_addHardCodedBlockComponents(::Experiments const& experiments); // NOLINTEND diff --git a/src/mc/world/level/block/DirtPathBlock.h b/src/mc/world/level/block/DirtPathBlock.h index 81176c14d1..f0d750defa 100644 --- a/src/mc/world/level/block/DirtPathBlock.h +++ b/src/mc/world/level/block/DirtPathBlock.h @@ -96,19 +96,19 @@ class DirtPathBlock : public ::BlockLegacy { MCAPI ::AABB const& $getOutline(::Block const&, ::IConstBlockSource const&, ::BlockPos const& pos, ::AABB& bufferValue) const; - MCAPI void $neighborChanged(::BlockSource& region, ::BlockPos const& pos, ::BlockPos const& neighborPos) const; + MCFOLD void $neighborChanged(::BlockSource& region, ::BlockPos const& pos, ::BlockPos const& neighborPos) const; - MCAPI bool $canBeOriginalSurface() const; + MCFOLD bool $canBeOriginalSurface() const; MCAPI void $tick(::BlockSource& region, ::BlockPos const& pos, ::Random& random) const; MCAPI bool $canSurvive(::BlockSource& region, ::BlockPos const& pos) const; - MCAPI bool $use(::Player& player, ::BlockPos const& pos, uchar face) const; + MCFOLD bool $use(::Player& player, ::BlockPos const& pos, uchar face) const; MCAPI bool $tryToTill(::BlockSource& region, ::BlockPos const& pos, ::Actor& entity, ::ItemStack& item) const; - MCAPI bool $canProvideSupport(::Block const&, uchar face, ::BlockSupportType) const; + MCFOLD bool $canProvideSupport(::Block const&, uchar face, ::BlockSupportType) const; // NOLINTEND public: diff --git a/src/mc/world/level/block/DispenserBlock.h b/src/mc/world/level/block/DispenserBlock.h index 305aded895..5caaf52aaa 100644 --- a/src/mc/world/level/block/DispenserBlock.h +++ b/src/mc/world/level/block/DispenserBlock.h @@ -101,7 +101,7 @@ class DispenserBlock : public ::ActorBlock { MCAPI uchar getFacing(::Block const& block) const; - MCAPI void onPlace(::BlockEvents::BlockPlaceEvent& eventData) const; + MCFOLD void onPlace(::BlockEvents::BlockPlaceEvent& eventData) const; // NOLINTEND public: @@ -138,27 +138,28 @@ class DispenserBlock : public ::ActorBlock { $getPlacementBlock(::Actor const& by, ::BlockPos const& pos, uchar face, ::Vec3 const& clickPos, int itemValue) const; - MCAPI void $onRemove(::BlockSource& region, ::BlockPos const& pos) const; + MCFOLD void $onRemove(::BlockSource& region, ::BlockPos const& pos) const; - MCAPI bool $use(::Player& player, ::BlockPos const& pos, uchar) const; + MCFOLD bool $use(::Player& player, ::BlockPos const& pos, uchar) const; - MCAPI bool $isInteractiveBlock() const; + MCFOLD bool $isInteractiveBlock() const; - MCAPI bool $isContainerBlock() const; + MCFOLD bool $isContainerBlock() const; - MCAPI void $setupRedstoneComponent(::BlockSource& region, ::BlockPos const& pos) const; + MCFOLD void $setupRedstoneComponent(::BlockSource& region, ::BlockPos const& pos) const; MCAPI void $onRedstoneUpdate(::BlockSource& region, ::BlockPos const& pos, int strength, bool isFirstTime) const; - MCAPI bool $hasComparatorSignal() const; + MCFOLD bool $hasComparatorSignal() const; - MCAPI int $getComparatorSignal(::BlockSource& region, ::BlockPos const& pos, ::Block const& block, uchar dir) const; + MCFOLD int + $getComparatorSignal(::BlockSource& region, ::BlockPos const& pos, ::Block const& block, uchar dir) const; MCAPI void $tick(::BlockSource& region, ::BlockPos const& pos, ::Random& random) const; - MCAPI int $getTickDelay() const; + MCFOLD int $getTickDelay() const; - MCAPI bool $allowStateMismatchOnPlacement(::Block const& clientTarget, ::Block const& serverTarget) const; + MCFOLD bool $allowStateMismatchOnPlacement(::Block const& clientTarget, ::Block const& serverTarget) const; MCAPI void $dispenseFrom(::BlockSource& region, ::BlockPos const& pos) const; diff --git a/src/mc/world/level/block/DoorBlock.h b/src/mc/world/level/block/DoorBlock.h index 2d0936ac72..333d3ee5c6 100644 --- a/src/mc/world/level/block/DoorBlock.h +++ b/src/mc/world/level/block/DoorBlock.h @@ -166,7 +166,7 @@ class DoorBlock : public ::BlockLegacy { MCAPI bool isToggled(::IConstBlockSource const& region, ::BlockPos const& pos) const; - MCAPI void onPlace(::BlockEvents::BlockPlaceEvent& eventData) const; + MCFOLD void onPlace(::BlockEvents::BlockPlaceEvent& eventData) const; MCAPI void setToggled(::BlockSource& region, ::BlockPos const& pos, ::Actor* sourceActor, bool toggled) const; // NOLINTEND @@ -196,7 +196,7 @@ class DoorBlock : public ::BlockLegacy { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND public: @@ -204,7 +204,7 @@ class DoorBlock : public ::BlockLegacy { // NOLINTBEGIN MCAPI int $getVariant(::Block const& block) const; - MCAPI ::Block const* $getNextBlockPermutation(::Block const& currentBlock) const; + MCFOLD ::Block const* $getNextBlockPermutation(::Block const& currentBlock) const; MCAPI ::AABB const& $getVisualShapeInWorld(::Block const&, ::IConstBlockSource const& region, ::BlockPos const& pos, ::AABB& bufferAABB) @@ -214,7 +214,7 @@ class DoorBlock : public ::BlockLegacy { $getCollisionShape(::Block const& block, ::IConstBlockSource const& region, ::BlockPos const& pos, ::optional_ref<::GetCollisionShapeInterface const>) const; - MCAPI ::AABB const& + MCFOLD ::AABB const& $getOutline(::Block const& block, ::IConstBlockSource const& region, ::BlockPos const& pos, ::AABB& bufferValue) const; @@ -223,15 +223,15 @@ class DoorBlock : public ::BlockLegacy { MCAPI bool $use(::Player& player, ::BlockPos const& pos, uchar face) const; - MCAPI void $neighborChanged(::BlockSource& region, ::BlockPos const& pos, ::BlockPos const& neighborPos) const; + MCFOLD void $neighborChanged(::BlockSource& region, ::BlockPos const& pos, ::BlockPos const& neighborPos) const; MCAPI ::ItemInstance $asItemInstance(::Block const& block, ::BlockActor const*) const; - MCAPI bool $getSecondPart(::IConstBlockSource const& region, ::BlockPos const& pos, ::BlockPos& out) const; + MCFOLD bool $getSecondPart(::IConstBlockSource const& region, ::BlockPos const& pos, ::BlockPos& out) const; MCAPI bool $canSurvive(::BlockSource& region, ::BlockPos const& pos) const; - MCAPI void $tick(::BlockSource& region, ::BlockPos const& pos, ::Random& random) const; + MCFOLD void $tick(::BlockSource& region, ::BlockPos const& pos, ::Random& random) const; MCAPI ::Block const* $playerWillDestroy(::Player& player, ::BlockPos const& pos, ::Block const& block) const; @@ -241,7 +241,7 @@ class DoorBlock : public ::BlockLegacy { MCAPI void $onRedstoneUpdate(::BlockSource& region, ::BlockPos const& pos, int strength, bool isFirstTime) const; - MCAPI bool $isInteractiveBlock() const; + MCFOLD bool $isInteractiveBlock() const; MCAPI bool $checkIsPathable(::Actor& entity, ::BlockPos const& lastPathPos, ::BlockPos const& pathPos) const; @@ -249,7 +249,7 @@ class DoorBlock : public ::BlockLegacy { MCAPI bool $canFillAtPos(::BlockSource& region, ::BlockPos const& pos, ::Block const& block) const; - MCAPI bool $isDoorBlock() const; + MCFOLD bool $isDoorBlock() const; MCAPI void $_addHardCodedBlockComponents(::Experiments const&); diff --git a/src/mc/world/level/block/DoublePlantBaseBlock.h b/src/mc/world/level/block/DoublePlantBaseBlock.h index 712e0c3c73..8f13af0152 100644 --- a/src/mc/world/level/block/DoublePlantBaseBlock.h +++ b/src/mc/world/level/block/DoublePlantBaseBlock.h @@ -120,23 +120,23 @@ class DoublePlantBaseBlock : public ::BushBlock { public: // virtual function thunks // NOLINTBEGIN - MCAPI ::Block const* $getNextBlockPermutation(::Block const& currentBlock) const; + MCFOLD ::Block const* $getNextBlockPermutation(::Block const& currentBlock) const; - MCAPI bool $mayPlace(::BlockSource& region, ::BlockPos const& pos) const; + MCFOLD bool $mayPlace(::BlockSource& region, ::BlockPos const& pos) const; - MCAPI bool $mayPlace(::BlockSource& region, ::BlockPos const& pos, uchar face) const; + MCFOLD bool $mayPlace(::BlockSource& region, ::BlockPos const& pos, uchar face) const; - MCAPI void $checkAlive(::BlockSource& region, ::BlockPos const& pos) const; + MCFOLD void $checkAlive(::BlockSource& region, ::BlockPos const& pos) const; MCAPI bool $canSurvive(::BlockSource& region, ::BlockPos const& pos) const; - MCAPI void $tick(::BlockSource& region, ::BlockPos const& pos, ::Random& random) const; + MCFOLD void $tick(::BlockSource& region, ::BlockPos const& pos, ::Random& random) const; MCAPI ::Vec3 $randomlyModifyPosition(::BlockPos const& pos, int& seed) const; MCAPI ::Vec3 $randomlyModifyPosition(::BlockPos const& pos) const; - MCAPI ::AABB + MCFOLD ::AABB $getCollisionShape(::Block const&, ::IConstBlockSource const&, ::BlockPos const&, ::optional_ref<::GetCollisionShapeInterface const>) const; @@ -147,12 +147,12 @@ class DoublePlantBaseBlock : public ::BushBlock { MCAPI ::Block const* $playerWillDestroy(::Player& player, ::BlockPos const& pos, ::Block const& block) const; - MCAPI bool $getSecondPart(::IConstBlockSource const& region, ::BlockPos const& pos, ::BlockPos& out) const; + MCFOLD bool $getSecondPart(::IConstBlockSource const& region, ::BlockPos const& pos, ::BlockPos& out) const; MCAPI bool $onFertilized(::BlockSource& region, ::BlockPos const& pos, ::Actor* actor, ::FertilizerType fType) const; - MCAPI bool $canBeFertilized(::BlockSource& region, ::BlockPos const& pos, ::Block const& aboveBlock) const; + MCFOLD bool $canBeFertilized(::BlockSource& region, ::BlockPos const& pos, ::Block const& aboveBlock) const; MCAPI ::Block const& $_keepRelevantStateForDropping(::Block const& block) const; diff --git a/src/mc/world/level/block/DoubleVegetationBlock.h b/src/mc/world/level/block/DoubleVegetationBlock.h index e5219da472..4483e94a21 100644 --- a/src/mc/world/level/block/DoubleVegetationBlock.h +++ b/src/mc/world/level/block/DoubleVegetationBlock.h @@ -52,10 +52,10 @@ class DoubleVegetationBlock : public ::DoublePlantBlock { public: // virtual function thunks // NOLINTBEGIN - MCAPI bool + MCFOLD bool $onFertilized(::BlockSource& region, ::BlockPos const& pos, ::Actor* actor, ::FertilizerType fType) const; - MCAPI bool $canBeFertilized(::BlockSource& region, ::BlockPos const& pos, ::Block const& aboveBlock) const; + MCFOLD bool $canBeFertilized(::BlockSource& region, ::BlockPos const& pos, ::Block const& aboveBlock) const; // NOLINTEND public: diff --git a/src/mc/world/level/block/DragonEggBlock.h b/src/mc/world/level/block/DragonEggBlock.h index e0d40f7491..d197510594 100644 --- a/src/mc/world/level/block/DragonEggBlock.h +++ b/src/mc/world/level/block/DragonEggBlock.h @@ -66,7 +66,7 @@ class DragonEggBlock : public ::FallingBlock { public: // virtual function thunks // NOLINTBEGIN - MCAPI ::mce::Color $getDustColor(::Block const&) const; + MCFOLD ::mce::Color $getDustColor(::Block const&) const; MCAPI ::std::string $getDustParticleName(::Block const&) const; @@ -74,7 +74,7 @@ class DragonEggBlock : public ::FallingBlock { MCAPI bool $use(::Player& player, ::BlockPos const& pos, uchar) const; - MCAPI bool $breaksFallingBlocks(::Block const& block, ::BaseGameVersion const version) const; + MCFOLD bool $breaksFallingBlocks(::Block const& block, ::BaseGameVersion const version) const; // NOLINTEND public: diff --git a/src/mc/world/level/block/DropperBlock.h b/src/mc/world/level/block/DropperBlock.h index d8a4e764af..e17b641218 100644 --- a/src/mc/world/level/block/DropperBlock.h +++ b/src/mc/world/level/block/DropperBlock.h @@ -31,7 +31,7 @@ class DropperBlock : public ::DispenserBlock { public: // static functions // NOLINTBEGIN - MCAPI static int getAttachedFace(int facing); + MCFOLD static int getAttachedFace(int facing); // NOLINTEND public: diff --git a/src/mc/world/level/block/ElementBlock.h b/src/mc/world/level/block/ElementBlock.h index 565052499e..c75dc4e889 100644 --- a/src/mc/world/level/block/ElementBlock.h +++ b/src/mc/world/level/block/ElementBlock.h @@ -96,7 +96,7 @@ class ElementBlock : public ::BlockLegacy { MCAPI ::std::string $buildDescriptionId(::Block const& block) const; - MCAPI bool $canBeUsedInCommands(::BaseGameVersion const& baseGameVersion) const; + MCFOLD bool $canBeUsedInCommands(::BaseGameVersion const& baseGameVersion) const; MCAPI ::Block const* $tryLegacyUpgrade(ushort extraData) const; // NOLINTEND diff --git a/src/mc/world/level/block/EnchantingTableBlock.h b/src/mc/world/level/block/EnchantingTableBlock.h index 09a44e3088..a671a298d3 100644 --- a/src/mc/world/level/block/EnchantingTableBlock.h +++ b/src/mc/world/level/block/EnchantingTableBlock.h @@ -60,15 +60,15 @@ class EnchantingTableBlock : public ::ActorBlock { public: // virtual function thunks // NOLINTBEGIN - MCAPI bool $use(::Player& player, ::BlockPos const& pos, uchar face) const; + MCFOLD bool $use(::Player& player, ::BlockPos const& pos, uchar face) const; - MCAPI bool $isInteractiveBlock() const; + MCFOLD bool $isInteractiveBlock() const; - MCAPI bool $isCraftingBlock() const; + MCFOLD bool $isCraftingBlock() const; - MCAPI bool $checkIsPathable(::Actor& entity, ::BlockPos const& lastPathPos, ::BlockPos const& pathPos) const; + MCFOLD bool $checkIsPathable(::Actor& entity, ::BlockPos const& lastPathPos, ::BlockPos const& pathPos) const; - MCAPI bool $canProvideSupport(::Block const&, uchar face, ::BlockSupportType) const; + MCFOLD bool $canProvideSupport(::Block const&, uchar face, ::BlockSupportType) const; // NOLINTEND public: diff --git a/src/mc/world/level/block/EndGatewayBlock.h b/src/mc/world/level/block/EndGatewayBlock.h index dd8f94f94c..09bfd91a05 100644 --- a/src/mc/world/level/block/EndGatewayBlock.h +++ b/src/mc/world/level/block/EndGatewayBlock.h @@ -85,11 +85,11 @@ class EndGatewayBlock : public ::ActorBlock { MCAPI void $animateTickBedrockLegacy(::BlockSource& region, ::BlockPos const& pos, ::Random& random) const; - MCAPI bool $canRenderSelectionOverlay(::BlockRenderLayer) const; + MCFOLD bool $canRenderSelectionOverlay(::BlockRenderLayer) const; MCAPI ::ItemInstance $asItemInstance(::Block const&, ::BlockActor const*) const; - MCAPI ::std::shared_ptr<::BlockActor> $newBlockEntity(::BlockPos const& pos, ::Block const& block) const; + MCFOLD ::std::shared_ptr<::BlockActor> $newBlockEntity(::BlockPos const& pos, ::Block const& block) const; // NOLINTEND public: diff --git a/src/mc/world/level/block/EndPortalBlock.h b/src/mc/world/level/block/EndPortalBlock.h index a44acaded0..908009a7a7 100644 --- a/src/mc/world/level/block/EndPortalBlock.h +++ b/src/mc/world/level/block/EndPortalBlock.h @@ -99,11 +99,11 @@ class EndPortalBlock : public ::ActorBlock { MCAPI void $animateTickBedrockLegacy(::BlockSource& region, ::BlockPos const& pos, ::Random& random) const; - MCAPI ::ItemInstance $asItemInstance(::Block const&, ::BlockActor const*) const; + MCFOLD ::ItemInstance $asItemInstance(::Block const&, ::BlockActor const*) const; - MCAPI bool $canRenderSelectionOverlay(::BlockRenderLayer) const; + MCFOLD bool $canRenderSelectionOverlay(::BlockRenderLayer) const; - MCAPI bool $isLavaBlocking() const; + MCFOLD bool $isLavaBlocking() const; // NOLINTEND public: diff --git a/src/mc/world/level/block/EndPortalFrameBlock.h b/src/mc/world/level/block/EndPortalFrameBlock.h index 217ff8b18b..e68c242a2a 100644 --- a/src/mc/world/level/block/EndPortalFrameBlock.h +++ b/src/mc/world/level/block/EndPortalFrameBlock.h @@ -101,7 +101,7 @@ class EndPortalFrameBlock : public ::BlockLegacy { ::std::vector<::AABB>& inoutBoxes ) const; - MCAPI bool $addCollisionShapes( + MCFOLD bool $addCollisionShapes( ::Block const& block, ::IConstBlockSource const& region, ::BlockPos const& pos, @@ -112,15 +112,15 @@ class EndPortalFrameBlock : public ::BlockLegacy { MCAPI bool $use(::Player& player, ::BlockPos const& pos, uchar) const; - MCAPI bool $isInteractiveBlock() const; + MCFOLD bool $isInteractiveBlock() const; - MCAPI bool $hasComparatorSignal() const; + MCFOLD bool $hasComparatorSignal() const; MCAPI int $getComparatorSignal(::BlockSource& region, ::BlockPos const& pos, ::Block const& block, uchar dir) const; MCAPI void $onRemove(::BlockSource& region, ::BlockPos const& pos) const; - MCAPI bool $canProvideSupport(::Block const&, uchar face, ::BlockSupportType) const; + MCFOLD bool $canProvideSupport(::Block const&, uchar face, ::BlockSupportType) const; // NOLINTEND public: diff --git a/src/mc/world/level/block/EndRodBlock.h b/src/mc/world/level/block/EndRodBlock.h index 3f92339c7a..e050b6a9de 100644 --- a/src/mc/world/level/block/EndRodBlock.h +++ b/src/mc/world/level/block/EndRodBlock.h @@ -83,9 +83,9 @@ class EndRodBlock : public ::BlockLegacy { public: // virtual function thunks // NOLINTBEGIN - MCAPI bool $mayPlace(::BlockSource& region, ::BlockPos const& pos) const; + MCFOLD bool $mayPlace(::BlockSource& region, ::BlockPos const& pos) const; - MCAPI bool $mayPlace(::BlockSource& region, ::BlockPos const& pos, uchar face) const; + MCFOLD bool $mayPlace(::BlockSource& region, ::BlockPos const& pos, uchar face) const; MCAPI ::Block const& $getPlacementBlock(::Actor const& by, ::BlockPos const& pos, uchar face, ::Vec3 const& clickPos, int itemValue) @@ -97,13 +97,13 @@ class EndRodBlock : public ::BlockLegacy { MCAPI bool $canProvideSupport(::Block const& block, uchar face, ::BlockSupportType type) const; - MCAPI bool $canSurvive(::BlockSource& region, ::BlockPos const& pos) const; + MCFOLD bool $canSurvive(::BlockSource& region, ::BlockPos const& pos) const; MCAPI ::AABB const& $getVisualShape(::Block const& block, ::AABB& bufferAABB) const; - MCAPI bool $checkIsPathable(::Actor& entity, ::BlockPos const& lastPathPos, ::BlockPos const& pathPos) const; + MCFOLD bool $checkIsPathable(::Actor& entity, ::BlockPos const& lastPathPos, ::BlockPos const& pathPos) const; - MCAPI ::mce::Color $getMapColor(::BlockSource& region, ::BlockPos const& pos, ::Block const& block) const; + MCFOLD ::mce::Color $getMapColor(::BlockSource& region, ::BlockPos const& pos, ::Block const& block) const; // NOLINTEND public: diff --git a/src/mc/world/level/block/EyeblossomBlock.h b/src/mc/world/level/block/EyeblossomBlock.h index 2be0b70e8a..0948db0096 100644 --- a/src/mc/world/level/block/EyeblossomBlock.h +++ b/src/mc/world/level/block/EyeblossomBlock.h @@ -62,9 +62,9 @@ class EyeblossomBlock : public ::FlowerBlock { // NOLINTBEGIN MCAPI void $tick(::BlockSource& region, ::BlockPos const& pos, ::Random& random) const; - MCAPI void $animateTickBedrockLegacy(::BlockSource& region, ::BlockPos const& pos, ::Random& random) const; + MCFOLD void $animateTickBedrockLegacy(::BlockSource& region, ::BlockPos const& pos, ::Random& random) const; - MCAPI void $animateTick(::BlockSource& region, ::BlockPos const& pos, ::Random& random) const; + MCFOLD void $animateTick(::BlockSource& region, ::BlockPos const& pos, ::Random& random) const; MCAPI void $entityInside(::BlockSource& region, ::BlockPos const&, ::Actor& entity) const; // NOLINTEND diff --git a/src/mc/world/level/block/FaceDirectionalActorBlock.h b/src/mc/world/level/block/FaceDirectionalActorBlock.h index dac4667295..459c690492 100644 --- a/src/mc/world/level/block/FaceDirectionalActorBlock.h +++ b/src/mc/world/level/block/FaceDirectionalActorBlock.h @@ -67,17 +67,17 @@ class FaceDirectionalActorBlock : public ::ActorBlock { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND public: // virtual function thunks // NOLINTBEGIN - MCAPI ::Block const& $getRenderBlock() const; + MCFOLD ::Block const& $getRenderBlock() const; - MCAPI uchar $getMappedFace(uchar face, ::Block const& block) const; + MCFOLD uchar $getMappedFace(uchar face, ::Block const& block) const; - MCAPI ::Block const& + MCFOLD ::Block const& $getPlacementBlock(::Actor const& by, ::BlockPos const& pos, uchar face, ::Vec3 const& clickPos, int itemValue) const; // NOLINTEND diff --git a/src/mc/world/level/block/FaceDirectionalBlock.h b/src/mc/world/level/block/FaceDirectionalBlock.h index 1330ad4dbb..c225eafe94 100644 --- a/src/mc/world/level/block/FaceDirectionalBlock.h +++ b/src/mc/world/level/block/FaceDirectionalBlock.h @@ -77,17 +77,17 @@ class FaceDirectionalBlock : public ::BlockLegacy { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND public: // virtual function thunks // NOLINTBEGIN - MCAPI ::Block const& $getRenderBlock() const; + MCFOLD ::Block const& $getRenderBlock() const; - MCAPI uchar $getMappedFace(uchar face, ::Block const& block) const; + MCFOLD uchar $getMappedFace(uchar face, ::Block const& block) const; - MCAPI ::Block const& + MCFOLD ::Block const& $getPlacementBlock(::Actor const& by, ::BlockPos const& pos, uchar face, ::Vec3 const& clickPos, int itemValue) const; diff --git a/src/mc/world/level/block/FallingBlock.h b/src/mc/world/level/block/FallingBlock.h index 5add2f4080..14b1db9b7f 100644 --- a/src/mc/world/level/block/FallingBlock.h +++ b/src/mc/world/level/block/FallingBlock.h @@ -81,7 +81,7 @@ class FallingBlock : public ::BlockLegacy { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND public: @@ -93,9 +93,9 @@ class FallingBlock : public ::BlockLegacy { MCAPI void $animateTickBedrockLegacy(::BlockSource& region, ::BlockPos const& pos, ::Random& random) const; - MCAPI bool $falling() const; + MCFOLD bool $falling() const; - MCAPI void $onLand(::BlockSource& region, ::BlockPos const& pos) const; + MCFOLD void $onLand(::BlockSource& region, ::BlockPos const& pos) const; MCAPI bool $isFreeToFall(::BlockSource& region, ::BlockPos const& pos) const; diff --git a/src/mc/world/level/block/FarmBlock.h b/src/mc/world/level/block/FarmBlock.h index 24abb6b5a2..66c3f9ea68 100644 --- a/src/mc/world/level/block/FarmBlock.h +++ b/src/mc/world/level/block/FarmBlock.h @@ -112,7 +112,7 @@ class FarmBlock : public ::BlockLegacy { MCAPI bool $canSurvive(::BlockSource& region, ::BlockPos const& pos) const; - MCAPI void $onRemove(::BlockSource& region, ::BlockPos const& pos) const; + MCFOLD void $onRemove(::BlockSource& region, ::BlockPos const& pos) const; MCAPI void $transformOnFall(::BlockSource& region, ::BlockPos const& pos, ::Actor* entity, float fallDistance) const; diff --git a/src/mc/world/level/block/FenceBlock.h b/src/mc/world/level/block/FenceBlock.h index c27b352d8d..519b903f1f 100644 --- a/src/mc/world/level/block/FenceBlock.h +++ b/src/mc/world/level/block/FenceBlock.h @@ -155,24 +155,24 @@ class FenceBlock : public ::BlockLegacy { ::optional_ref<::GetCollisionShapeInterface const> entity ) const; - MCAPI bool $canProvideSupport(::Block const&, uchar face, ::BlockSupportType type) const; + MCFOLD bool $canProvideSupport(::Block const&, uchar face, ::BlockSupportType type) const; - MCAPI ::ItemInstance $asItemInstance(::Block const& block, ::BlockActor const*) const; + MCFOLD ::ItemInstance $asItemInstance(::Block const& block, ::BlockActor const*) const; MCAPI bool $use(::Player& player, ::BlockPos const& pos, uchar) const; MCAPI ::std::string $buildDescriptionId(::Block const& block) const; - MCAPI bool $isFenceBlock() const; + MCFOLD bool $isFenceBlock() const; - MCAPI bool + MCFOLD bool $getLiquidClipVolume(::Block const& block, ::BlockSource& region, ::BlockPos const& pos, ::AABB& includeBox) const; MCAPI bool $mayPlace(::BlockSource& region, ::BlockPos const& pos) const; MCAPI bool $breaksFallingBlocks(::Block const& block, ::BaseGameVersion const version) const; - MCAPI ::HitResult + MCFOLD ::HitResult $clip(::Block const& block, ::BlockSource const& region, ::BlockPos const& pos, ::Vec3 const& origin, ::Vec3 const& end, ::ShapeType, ::optional_ref<::GetCollisionShapeInterface const>) const; // NOLINTEND diff --git a/src/mc/world/level/block/FenceGateBlock.h b/src/mc/world/level/block/FenceGateBlock.h index a79d6f1c80..2db8f942c5 100644 --- a/src/mc/world/level/block/FenceGateBlock.h +++ b/src/mc/world/level/block/FenceGateBlock.h @@ -147,16 +147,16 @@ class FenceGateBlock : public ::BlockLegacy { MCAPI bool $use(::Player& player, ::BlockPos const& pos, uchar) const; - MCAPI bool $isInteractiveBlock() const; + MCFOLD bool $isInteractiveBlock() const; MCAPI bool $ignoreEntitiesOnPistonMove(::Block const& block) const; MCAPI bool $canConnect(::Block const& otherBlock, uchar toOther, ::Block const& thisBlock) const; - MCAPI bool + MCFOLD bool $getLiquidClipVolume(::Block const& block, ::BlockSource& region, ::BlockPos const& pos, ::AABB& includeBox) const; - MCAPI bool $isFenceGateBlock() const; + MCFOLD bool $isFenceGateBlock() const; MCAPI void $_addHardCodedBlockComponents(::Experiments const&); diff --git a/src/mc/world/level/block/FireBlock.h b/src/mc/world/level/block/FireBlock.h index 825811108f..083a9994c6 100644 --- a/src/mc/world/level/block/FireBlock.h +++ b/src/mc/world/level/block/FireBlock.h @@ -105,18 +105,18 @@ class FireBlock : public ::BlockLegacy { public: // virtual function thunks // NOLINTBEGIN - MCAPI ::AABB + MCFOLD ::AABB $getCollisionShape(::Block const&, ::IConstBlockSource const&, ::BlockPos const&, ::optional_ref<::GetCollisionShapeInterface const>) const; - MCAPI ::AABB const& + MCFOLD ::AABB const& $getOutline(::Block const&, ::IConstBlockSource const&, ::BlockPos const&, ::AABB& bufferValue) const; MCAPI void $tick(::BlockSource& region, ::BlockPos const& pos, ::Random& random) const; MCAPI void $animateTickBedrockLegacy(::BlockSource& region, ::BlockPos const& pos, ::Random& random) const; - MCAPI bool $mayPick() const; + MCFOLD bool $mayPick() const; MCAPI void $entityInside(::BlockSource&, ::BlockPos const&, ::Actor& entity) const; diff --git a/src/mc/world/level/block/FlowerBlock.h b/src/mc/world/level/block/FlowerBlock.h index 473e65dc9b..68a9044c6e 100644 --- a/src/mc/world/level/block/FlowerBlock.h +++ b/src/mc/world/level/block/FlowerBlock.h @@ -97,7 +97,7 @@ class FlowerBlock : public ::BushBlock { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND public: @@ -105,15 +105,15 @@ class FlowerBlock : public ::BushBlock { // NOLINTBEGIN MCAPI ::Vec3 $randomlyModifyPosition(::BlockPos const& pos) const; - MCAPI ::BlockRenderLayer $getRenderLayer() const; + MCFOLD ::BlockRenderLayer $getRenderLayer() const; - MCAPI ::BlockRenderLayer $getRenderLayer(::Block const&, ::BlockSource&, ::BlockPos const&) const; + MCFOLD ::BlockRenderLayer $getRenderLayer(::Block const&, ::BlockSource&, ::BlockPos const&) const; - MCAPI ::AABB + MCFOLD ::AABB $getCollisionShape(::Block const&, ::IConstBlockSource const&, ::BlockPos const&, ::optional_ref<::GetCollisionShapeInterface const>) const; - MCAPI ::AABB const& + MCFOLD ::AABB const& $getOutline(::Block const& block, ::IConstBlockSource const&, ::BlockPos const& pos, ::AABB& bufferValue) const; MCAPI bool @@ -121,15 +121,15 @@ class FlowerBlock : public ::BushBlock { MCAPI bool $canBeFertilized(::BlockSource& region, ::BlockPos const& pos, ::Block const& aboveBlock) const; - MCAPI bool $mayPlace(::BlockSource& region, ::BlockPos const& pos) const; + MCFOLD bool $mayPlace(::BlockSource& region, ::BlockPos const& pos) const; MCAPI void $_addHardCodedBlockComponents(::Experiments const& experiments); - MCAPI ::mce::Color $getMapColor(::BlockSource& region, ::BlockPos const& pos, ::Block const& block) const; + MCFOLD ::mce::Color $getMapColor(::BlockSource& region, ::BlockPos const& pos, ::Block const& block) const; MCAPI bool $mayPlaceOn(::BlockSource& region, ::BlockPos const& pos) const; - MCAPI ::ItemInstance $asItemInstance(::Block const& block, ::BlockActor const*) const; + MCFOLD ::ItemInstance $asItemInstance(::Block const& block, ::BlockActor const*) const; // NOLINTEND public: diff --git a/src/mc/world/level/block/FlowerPotBlock.h b/src/mc/world/level/block/FlowerPotBlock.h index c176c63dc6..ae38772cfd 100644 --- a/src/mc/world/level/block/FlowerPotBlock.h +++ b/src/mc/world/level/block/FlowerPotBlock.h @@ -104,23 +104,23 @@ class FlowerPotBlock : public ::ActorBlock { public: // virtual function thunks // NOLINTBEGIN - MCAPI bool $isInteractiveBlock() const; + MCFOLD bool $isInteractiveBlock() const; MCAPI bool $use(::Player& player, ::BlockPos const& pos, uchar) const; - MCAPI void $neighborChanged(::BlockSource& region, ::BlockPos const& pos, ::BlockPos const& neighborPos) const; + MCFOLD void $neighborChanged(::BlockSource& region, ::BlockPos const& pos, ::BlockPos const& neighborPos) const; MCAPI void $tick(::BlockSource& region, ::BlockPos const& pos, ::Random& random) const; MCAPI void $randomTick(::BlockSource& region, ::BlockPos const& pos, ::Random& random) const; - MCAPI bool $mayPlace(::BlockSource& region, ::BlockPos const& pos) const; + MCFOLD bool $mayPlace(::BlockSource& region, ::BlockPos const& pos) const; - MCAPI bool $mayPlace(::BlockSource& region, ::BlockPos const& pos, uchar face) const; + MCFOLD bool $mayPlace(::BlockSource& region, ::BlockPos const& pos, uchar face) const; MCAPI bool $canSurvive(::BlockSource& region, ::BlockPos const& pos) const; - MCAPI bool $isValidAuxValue(int value) const; + MCFOLD bool $isValidAuxValue(int value) const; MCAPI ::Block const* $playerWillDestroy(::Player& player, ::BlockPos const& pos, ::Block const& block) const; diff --git a/src/mc/world/level/block/FrogSpawnBlock.h b/src/mc/world/level/block/FrogSpawnBlock.h index 165f31e257..8e6a22173f 100644 --- a/src/mc/world/level/block/FrogSpawnBlock.h +++ b/src/mc/world/level/block/FrogSpawnBlock.h @@ -91,25 +91,25 @@ class FrogSpawnBlock : public ::BlockLegacy { public: // virtual function thunks // NOLINTBEGIN - MCAPI ::AABB + MCFOLD ::AABB $getCollisionShape(::Block const&, ::IConstBlockSource const&, ::BlockPos const&, ::optional_ref<::GetCollisionShapeInterface const>) const; - MCAPI bool $mayPlaceOn(::BlockSource& region, ::BlockPos const& pos) const; + MCFOLD bool $mayPlaceOn(::BlockSource& region, ::BlockPos const& pos) const; MCAPI bool $canSurvive(::BlockSource& region, ::BlockPos const& pos) const; - MCAPI void $neighborChanged(::BlockSource& region, ::BlockPos const& pos, ::BlockPos const& neighborPos) const; + MCFOLD void $neighborChanged(::BlockSource& region, ::BlockPos const& pos, ::BlockPos const& neighborPos) const; MCAPI void $tick(::BlockSource& region, ::BlockPos const& pos, ::Random& random) const; MCAPI ::Block const* $playerWillDestroy(::Player& player, ::BlockPos const& pos, ::Block const& block) const; - MCAPI bool $checkIsPathable(::Actor& entity, ::BlockPos const& lastPathPos, ::BlockPos const& pathPos) const; + MCFOLD bool $checkIsPathable(::Actor& entity, ::BlockPos const& lastPathPos, ::BlockPos const& pathPos) const; - MCAPI ::std::string $buildDescriptionId(::Block const&) const; + MCFOLD ::std::string $buildDescriptionId(::Block const&) const; - MCAPI bool $canProvideSupport(::Block const&, uchar, ::BlockSupportType) const; + MCFOLD bool $canProvideSupport(::Block const&, uchar, ::BlockSupportType) const; MCAPI void $entityInside(::BlockSource& region, ::BlockPos const& pos, ::Actor& entity) const; diff --git a/src/mc/world/level/block/FrostedIceBlock.h b/src/mc/world/level/block/FrostedIceBlock.h index 519a2b74bb..c8d414324d 100644 --- a/src/mc/world/level/block/FrostedIceBlock.h +++ b/src/mc/world/level/block/FrostedIceBlock.h @@ -80,9 +80,9 @@ class FrostedIceBlock : public ::BlockLegacy { MCAPI void $tick(::BlockSource& region, ::BlockPos const& pos, ::Random& random) const; - MCAPI bool $breaksFallingBlocks(::Block const& block, ::BaseGameVersion const version) const; + MCFOLD bool $breaksFallingBlocks(::Block const& block, ::BaseGameVersion const version) const; - MCAPI ::ItemInstance $asItemInstance(::Block const&, ::BlockActor const*) const; + MCFOLD ::ItemInstance $asItemInstance(::Block const&, ::BlockActor const*) const; MCAPI void $_addHardCodedBlockComponents(::Experiments const&); // NOLINTEND diff --git a/src/mc/world/level/block/FurnaceBlock.h b/src/mc/world/level/block/FurnaceBlock.h index 9d3d2c72a8..51b416f15d 100644 --- a/src/mc/world/level/block/FurnaceBlock.h +++ b/src/mc/world/level/block/FurnaceBlock.h @@ -108,15 +108,16 @@ class FurnaceBlock : public ::ActorBlock { MCAPI void $onRemove(::BlockSource& region, ::BlockPos const& pos) const; - MCAPI bool $isInteractiveBlock() const; + MCFOLD bool $isInteractiveBlock() const; - MCAPI bool $isContainerBlock() const; + MCFOLD bool $isContainerBlock() const; - MCAPI bool $isCraftingBlock() const; + MCFOLD bool $isCraftingBlock() const; - MCAPI bool $hasComparatorSignal() const; + MCFOLD bool $hasComparatorSignal() const; - MCAPI int $getComparatorSignal(::BlockSource& region, ::BlockPos const& pos, ::Block const& block, uchar dir) const; + MCFOLD int + $getComparatorSignal(::BlockSource& region, ::BlockPos const& pos, ::Block const& block, uchar dir) const; // NOLINTEND public: diff --git a/src/mc/world/level/block/GlassBlock.h b/src/mc/world/level/block/GlassBlock.h index 5d05e80526..23029a0a3b 100644 --- a/src/mc/world/level/block/GlassBlock.h +++ b/src/mc/world/level/block/GlassBlock.h @@ -83,11 +83,11 @@ class GlassBlock : public ::BlockLegacy { public: // virtual function thunks // NOLINTBEGIN - MCAPI bool $canConnect(::Block const& otherBlock, uchar toOther, ::Block const& thisBlock) const; + MCFOLD bool $canConnect(::Block const& otherBlock, uchar toOther, ::Block const& thisBlock) const; MCAPI bool $canBeUsedInCommands(::BaseGameVersion const& baseGameVersion) const; - MCAPI bool $breaksFallingBlocks(::Block const& block, ::BaseGameVersion const version) const; + MCFOLD bool $breaksFallingBlocks(::Block const& block, ::BaseGameVersion const version) const; MCAPI bool $getCollisionShapeForCamera( ::AABB& outAABB, diff --git a/src/mc/world/level/block/GlazedTerracottaBlock.h b/src/mc/world/level/block/GlazedTerracottaBlock.h index 336de43722..03f308807b 100644 --- a/src/mc/world/level/block/GlazedTerracottaBlock.h +++ b/src/mc/world/level/block/GlazedTerracottaBlock.h @@ -54,7 +54,7 @@ class GlazedTerracottaBlock : public ::FaceDirectionalBlock { $getPlacementBlock(::Actor const& by, ::BlockPos const& pos, uchar face, ::Vec3 const& clickPos, int itemValue) const; - MCAPI bool $isValidAuxValue(int value) const; + MCFOLD bool $isValidAuxValue(int value) const; // NOLINTEND public: diff --git a/src/mc/world/level/block/GlowLichenBlock.h b/src/mc/world/level/block/GlowLichenBlock.h index bc770e8fa6..5c9a941b6a 100644 --- a/src/mc/world/level/block/GlowLichenBlock.h +++ b/src/mc/world/level/block/GlowLichenBlock.h @@ -22,7 +22,7 @@ class GlowLichenBlock : public ::MultifaceBlock { // NOLINTBEGIN // vIndex: 74 virtual bool - onFertilized(::BlockSource& region, ::BlockPos const& pos, ::Actor* entity, ::FertilizerType fType) const + onFertilized(::BlockSource& region, ::BlockPos const& pos, ::Actor* actor, ::FertilizerType fType) const /*override*/; // vIndex: 76 @@ -58,7 +58,7 @@ class GlowLichenBlock : public ::MultifaceBlock { // virtual function thunks // NOLINTBEGIN MCAPI bool - $onFertilized(::BlockSource& region, ::BlockPos const& pos, ::Actor* entity, ::FertilizerType fType) const; + $onFertilized(::BlockSource& region, ::BlockPos const& pos, ::Actor* actor, ::FertilizerType fType) const; MCAPI bool $canBeFertilized(::BlockSource& region, ::BlockPos const& pos, ::Block const& aboveBlock) const; diff --git a/src/mc/world/level/block/GrassBlock.h b/src/mc/world/level/block/GrassBlock.h index ad85067895..ef4a141feb 100644 --- a/src/mc/world/level/block/GrassBlock.h +++ b/src/mc/world/level/block/GrassBlock.h @@ -37,7 +37,7 @@ class GrassBlock : public ::BlockLegacy { // vIndex: 74 virtual bool - onFertilized(::BlockSource& region, ::BlockPos const& pos, ::Actor* actor, ::FertilizerType fType) const + onFertilized(::BlockSource& region, ::BlockPos const& pos, ::Actor* entity, ::FertilizerType fType) const /*override*/; // vIndex: 76 @@ -99,17 +99,17 @@ class GrassBlock : public ::BlockLegacy { MCAPI void $randomTick(::BlockSource& region, ::BlockPos const& pos, ::Random& random) const; MCAPI bool - $onFertilized(::BlockSource& region, ::BlockPos const& pos, ::Actor* actor, ::FertilizerType fType) const; + $onFertilized(::BlockSource& region, ::BlockPos const& pos, ::Actor* entity, ::FertilizerType fType) const; - MCAPI bool $canBeFertilized(::BlockSource& region, ::BlockPos const& pos, ::Block const& aboveBlock) const; + MCFOLD bool $canBeFertilized(::BlockSource& region, ::BlockPos const& pos, ::Block const& aboveBlock) const; MCAPI int $calcVariant(::BlockSource& region, ::BlockPos const& pos, ::mce::Color const& baseColor) const; - MCAPI ::mce::Color $getMapColor(::BlockSource& region, ::BlockPos const& pos, ::Block const&) const; + MCFOLD ::mce::Color $getMapColor(::BlockSource& region, ::BlockPos const& pos, ::Block const&) const; - MCAPI bool $canBeOriginalSurface() const; + MCFOLD bool $canBeOriginalSurface() const; - MCAPI bool $use(::Player& player, ::BlockPos const& pos, uchar face) const; + MCFOLD bool $use(::Player& player, ::BlockPos const& pos, uchar face) const; MCAPI bool $tryToTill(::BlockSource& region, ::BlockPos const& pos, ::Actor& entity, ::ItemStack& item) const; // NOLINTEND diff --git a/src/mc/world/level/block/GravelBlock.h b/src/mc/world/level/block/GravelBlock.h index 7f9c8a8537..69546ea282 100644 --- a/src/mc/world/level/block/GravelBlock.h +++ b/src/mc/world/level/block/GravelBlock.h @@ -65,18 +65,18 @@ class GravelBlock : public ::FallingBlock { public: // virtual function thunks // NOLINTBEGIN - MCAPI ::mce::Color $getDustColor(::Block const& block) const; + MCFOLD ::mce::Color $getDustColor(::Block const& block) const; - MCAPI ::std::string $getDustParticleName(::Block const& block) const; + MCFOLD ::std::string $getDustParticleName(::Block const& block) const; - MCAPI bool + MCFOLD bool $onFertilized(::BlockSource& region, ::BlockPos const& pos, ::Actor* actor, ::FertilizerType fType) const; - MCAPI bool $mayConsumeFertilizer(::BlockSource& region) const; + MCFOLD bool $mayConsumeFertilizer(::BlockSource& region) const; - MCAPI bool $canBeFertilized(::BlockSource& region, ::BlockPos const& pos, ::Block const& aboveBlock) const; + MCFOLD bool $canBeFertilized(::BlockSource& region, ::BlockPos const& pos, ::Block const& aboveBlock) const; - MCAPI bool $canBeOriginalSurface() const; + MCFOLD bool $canBeOriginalSurface() const; // NOLINTEND public: diff --git a/src/mc/world/level/block/GrindstoneBlock.h b/src/mc/world/level/block/GrindstoneBlock.h index 53925ceae6..4be750d500 100644 --- a/src/mc/world/level/block/GrindstoneBlock.h +++ b/src/mc/world/level/block/GrindstoneBlock.h @@ -76,9 +76,9 @@ class GrindstoneBlock : public ::BlockLegacy { public: // virtual function thunks // NOLINTBEGIN - MCAPI void $tick(::BlockSource& region, ::BlockPos const& pos, ::Random& random) const; + MCFOLD void $tick(::BlockSource& region, ::BlockPos const& pos, ::Random& random) const; - MCAPI bool $use(::Player&, ::BlockPos const&, uchar) const; + MCFOLD bool $use(::Player&, ::BlockPos const&, uchar) const; MCAPI ::AABB const& $getVisualShape(::Block const& block, ::AABB& bufferAABB) const; @@ -88,9 +88,9 @@ class GrindstoneBlock : public ::BlockLegacy { MCAPI bool $canSurvive(::BlockSource& region, ::BlockPos const& pos) const; - MCAPI void $neighborChanged(::BlockSource& region, ::BlockPos const& pos, ::BlockPos const& neighborPos) const; + MCFOLD void $neighborChanged(::BlockSource& region, ::BlockPos const& pos, ::BlockPos const& neighborPos) const; - MCAPI bool $isInteractiveBlock() const; + MCFOLD bool $isInteractiveBlock() const; MCAPI bool $canProvideSupport(::Block const& block, uchar face, ::BlockSupportType type) const; // NOLINTEND diff --git a/src/mc/world/level/block/HangingRootsBlock.h b/src/mc/world/level/block/HangingRootsBlock.h index 55e691a25e..9507afa2b0 100644 --- a/src/mc/world/level/block/HangingRootsBlock.h +++ b/src/mc/world/level/block/HangingRootsBlock.h @@ -73,22 +73,22 @@ class HangingRootsBlock : public ::BlockLegacy { public: // virtual function thunks // NOLINTBEGIN - MCAPI ::Vec3 $randomlyModifyPosition(::BlockPos const& pos) const; + MCFOLD ::Vec3 $randomlyModifyPosition(::BlockPos const& pos) const; - MCAPI ::AABB + MCFOLD ::AABB $getCollisionShape(::Block const&, ::IConstBlockSource const&, ::BlockPos const&, ::optional_ref<::GetCollisionShapeInterface const>) const; - MCAPI ::AABB const& + MCFOLD ::AABB const& $getOutline(::Block const& block, ::IConstBlockSource const&, ::BlockPos const& pos, ::AABB& bufferValue) const; - MCAPI bool $mayPlace(::BlockSource& region, ::BlockPos const& pos) const; + MCFOLD bool $mayPlace(::BlockSource& region, ::BlockPos const& pos) const; - MCAPI void $neighborChanged(::BlockSource& region, ::BlockPos const& pos, ::BlockPos const& neighborPos) const; + MCFOLD void $neighborChanged(::BlockSource& region, ::BlockPos const& pos, ::BlockPos const& neighborPos) const; - MCAPI bool $canSurvive(::BlockSource& region, ::BlockPos const& pos) const; + MCFOLD bool $canSurvive(::BlockSource& region, ::BlockPos const& pos) const; - MCAPI void $tick(::BlockSource& region, ::BlockPos const& pos, ::Random& random) const; + MCFOLD void $tick(::BlockSource& region, ::BlockPos const& pos, ::Random& random) const; // NOLINTEND public: diff --git a/src/mc/world/level/block/HangingSignBlock.h b/src/mc/world/level/block/HangingSignBlock.h index 8dba293866..57a977c3a1 100644 --- a/src/mc/world/level/block/HangingSignBlock.h +++ b/src/mc/world/level/block/HangingSignBlock.h @@ -67,7 +67,7 @@ class HangingSignBlock : public ::SignBlock { // NOLINTBEGIN MCAPI static bool _isHangingSign(::Block const& block); - MCAPI static bool _isSideAttached(::Block const& block); + MCFOLD static bool _isSideAttached(::Block const& block); MCAPI static bool isDoubleChainHangingSign(::Block const& block); diff --git a/src/mc/world/level/block/HayBlock.h b/src/mc/world/level/block/HayBlock.h index 19d70df4d6..f6cdad9a23 100644 --- a/src/mc/world/level/block/HayBlock.h +++ b/src/mc/world/level/block/HayBlock.h @@ -56,9 +56,9 @@ class HayBlock : public ::RotatedPillarBlock { // NOLINTBEGIN MCAPI void $_addHardCodedBlockComponents(::Experiments const&); - MCAPI ::ItemInstance $asItemInstance(::Block const& block, ::BlockActor const*) const; + MCFOLD ::ItemInstance $asItemInstance(::Block const& block, ::BlockActor const*) const; - MCAPI int $getVariant(::Block const& block) const; + MCFOLD int $getVariant(::Block const& block) const; // NOLINTEND public: diff --git a/src/mc/world/level/block/HeavyCoreBlock.h b/src/mc/world/level/block/HeavyCoreBlock.h index 4341a16909..d458b8261a 100644 --- a/src/mc/world/level/block/HeavyCoreBlock.h +++ b/src/mc/world/level/block/HeavyCoreBlock.h @@ -53,7 +53,7 @@ class HeavyCoreBlock : public ::BlockLegacy { // NOLINTBEGIN MCAPI bool $canProvideSupport(::Block const&, uchar face, ::BlockSupportType type) const; - MCAPI bool $liquidCanFlowIntoFromDirection( + MCFOLD bool $liquidCanFlowIntoFromDirection( uchar flowIntoFacing, ::std::function<::Block const&(::BlockPos const&)> const& getBlock, ::BlockPos const& pos diff --git a/src/mc/world/level/block/HoneyBlock.h b/src/mc/world/level/block/HoneyBlock.h index f19f24fab5..2eac55a27e 100644 --- a/src/mc/world/level/block/HoneyBlock.h +++ b/src/mc/world/level/block/HoneyBlock.h @@ -80,9 +80,9 @@ class HoneyBlock : public ::BlockLegacy { $getCollisionShape(::Block const&, ::IConstBlockSource const&, ::BlockPos const& pos, ::optional_ref<::GetCollisionShapeInterface const>) const; - MCAPI void $onStandOn(::EntityContext& entity, ::BlockPos const& pos) const; + MCFOLD void $onStandOn(::EntityContext& entity, ::BlockPos const& pos) const; - MCAPI int $getExtraRenderLayers() const; + MCFOLD int $getExtraRenderLayers() const; MCAPI ::AABB const& $getVisualShape(::Block const&, ::AABB& bufferAABB) const; // NOLINTEND diff --git a/src/mc/world/level/block/HopperBlock.h b/src/mc/world/level/block/HopperBlock.h index d0ef437a13..5dd7ae40a3 100644 --- a/src/mc/world/level/block/HopperBlock.h +++ b/src/mc/world/level/block/HopperBlock.h @@ -152,13 +152,13 @@ class HopperBlock : public ::ActorBlock { MCAPI void $onRedstoneUpdate(::BlockSource& region, ::BlockPos const& pos, int strength, bool isFirstTime) const; - MCAPI bool $use(::Player&, ::BlockPos const&, uchar) const; + MCFOLD bool $use(::Player&, ::BlockPos const&, uchar) const; - MCAPI bool $isInteractiveBlock() const; + MCFOLD bool $isInteractiveBlock() const; - MCAPI bool $isContainerBlock() const; + MCFOLD bool $isContainerBlock() const; - MCAPI bool $addCollisionShapes( + MCFOLD bool $addCollisionShapes( ::Block const& block, ::IConstBlockSource const& region, ::BlockPos const& pos, @@ -179,21 +179,22 @@ class HopperBlock : public ::ActorBlock { $clip(::Block const& block, ::BlockSource const&, ::BlockPos const& pos, ::Vec3 const& origin, ::Vec3 const& end, ::ShapeType, ::optional_ref<::GetCollisionShapeInterface const>) const; - MCAPI bool $canProvideSupport(::Block const&, uchar face, ::BlockSupportType) const; + MCFOLD bool $canProvideSupport(::Block const&, uchar face, ::BlockSupportType) const; MCAPI ::Block const& $getPlacementBlock(::Actor const& by, ::BlockPos const& pos, uchar face, ::Vec3 const& clickPos, int itemValue) const; - MCAPI bool $hasComparatorSignal() const; + MCFOLD bool $hasComparatorSignal() const; - MCAPI int $getComparatorSignal(::BlockSource& region, ::BlockPos const& pos, ::Block const& block, uchar dir) const; + MCFOLD int + $getComparatorSignal(::BlockSource& region, ::BlockPos const& pos, ::Block const& block, uchar dir) const; MCAPI ::ItemInstance $asItemInstance(::Block const&, ::BlockActor const*) const; MCAPI bool $breaksFallingBlocks(::Block const& block, ::BaseGameVersion const version) const; - MCAPI bool $allowStateMismatchOnPlacement(::Block const& clientTarget, ::Block const& serverTarget) const; + MCFOLD bool $allowStateMismatchOnPlacement(::Block const& clientTarget, ::Block const& serverTarget) const; MCAPI void $_addHardCodedBlockComponents(::Experiments const&); // NOLINTEND diff --git a/src/mc/world/level/block/IceBlock.h b/src/mc/world/level/block/IceBlock.h index 5744bc78d5..d71a63a376 100644 --- a/src/mc/world/level/block/IceBlock.h +++ b/src/mc/world/level/block/IceBlock.h @@ -76,7 +76,7 @@ class IceBlock : public ::BlockLegacy { MCAPI void $randomTick(::BlockSource& region, ::BlockPos const& pos, ::Random& random) const; - MCAPI bool $breaksFallingBlocks(::Block const& block, ::BaseGameVersion const version) const; + MCFOLD bool $breaksFallingBlocks(::Block const& block, ::BaseGameVersion const version) const; MCAPI void $_addHardCodedBlockComponents(::Experiments const& experiments); // NOLINTEND diff --git a/src/mc/world/level/block/InfestedBlock.h b/src/mc/world/level/block/InfestedBlock.h index 776abe32cc..19ccf5e46b 100644 --- a/src/mc/world/level/block/InfestedBlock.h +++ b/src/mc/world/level/block/InfestedBlock.h @@ -66,7 +66,7 @@ class InfestedBlock : public ::BlockLegacy { public: // virtual function thunks // NOLINTBEGIN - MCAPI ::Block const* $tryGetUninfested(::Block const& block) const; + MCFOLD ::Block const* $tryGetUninfested(::Block const& block) const; MCAPI void $spawnAfterBreak( ::BlockSource& region, diff --git a/src/mc/world/level/block/InvisibleBlock.h b/src/mc/world/level/block/InvisibleBlock.h index 3618057df3..d627ba1323 100644 --- a/src/mc/world/level/block/InvisibleBlock.h +++ b/src/mc/world/level/block/InvisibleBlock.h @@ -52,7 +52,7 @@ class InvisibleBlock : public ::BlockLegacy { public: // virtual function thunks // NOLINTBEGIN - MCAPI ::HitResult + MCFOLD ::HitResult $clip(::Block const&, ::BlockSource const&, ::BlockPos const&, ::Vec3 const& A, ::Vec3 const& B, ::ShapeType, ::optional_ref<::GetCollisionShapeInterface const>) const; // NOLINTEND diff --git a/src/mc/world/level/block/ItemFrameBlock.h b/src/mc/world/level/block/ItemFrameBlock.h index aa48a834bc..8e0b3fc34d 100644 --- a/src/mc/world/level/block/ItemFrameBlock.h +++ b/src/mc/world/level/block/ItemFrameBlock.h @@ -136,9 +136,9 @@ class ItemFrameBlock : public ::ActorBlock { public: // virtual function thunks // NOLINTBEGIN - MCAPI void $tick(::BlockSource& region, ::BlockPos const& pos, ::Random& random) const; + MCFOLD void $tick(::BlockSource& region, ::BlockPos const& pos, ::Random& random) const; - MCAPI ::Block const& + MCFOLD ::Block const& $getPlacementBlock(::Actor const& by, ::BlockPos const& pos, uchar face, ::Vec3 const& clickPos, int itemValue) const; @@ -146,11 +146,11 @@ class ItemFrameBlock : public ::ActorBlock { MCAPI ::AABB const& $getVisualShape(::Block const& block, ::AABB& bufferAABB) const; - MCAPI ::AABB + MCFOLD ::AABB $getCollisionShape(::Block const&, ::IConstBlockSource const&, ::BlockPos const&, ::optional_ref<::GetCollisionShapeInterface const>) const; - MCAPI bool $isInteractiveBlock() const; + MCFOLD bool $isInteractiveBlock() const; MCAPI ::ItemInstance $asItemInstance(::Block const&, ::BlockActor const* blockActor) const; @@ -160,19 +160,19 @@ class ItemFrameBlock : public ::ActorBlock { MCAPI bool $getIgnoresDestroyPermissions(::Actor& entity, ::BlockPos const& pos) const; - MCAPI void $onRemove(::BlockSource& region, ::BlockPos const& pos) const; + MCFOLD void $onRemove(::BlockSource& region, ::BlockPos const& pos) const; MCAPI void $neighborChanged(::BlockSource& region, ::BlockPos const& pos, ::BlockPos const& neighborPos) const; - MCAPI bool $hasComparatorSignal() const; + MCFOLD bool $hasComparatorSignal() const; MCAPI int $getComparatorSignal(::BlockSource& region, ::BlockPos const& pos, ::Block const& block, uchar dir) const; MCAPI bool $use(::Player& player, ::BlockPos const& pos, uchar) const; - MCAPI bool $canSurvive(::BlockSource& region, ::BlockPos const& pos) const; + MCFOLD bool $canSurvive(::BlockSource& region, ::BlockPos const& pos) const; - MCAPI bool $isLavaBlocking() const; + MCFOLD bool $isLavaBlocking() const; MCAPI ::HashedString $getSpawnedItemName() const; diff --git a/src/mc/world/level/block/JigsawBlock.h b/src/mc/world/level/block/JigsawBlock.h index 11db3ebb42..ec09b52663 100644 --- a/src/mc/world/level/block/JigsawBlock.h +++ b/src/mc/world/level/block/JigsawBlock.h @@ -71,9 +71,9 @@ class JigsawBlock : public ::FaceDirectionalActorBlock { public: // virtual function thunks // NOLINTBEGIN - MCAPI bool $isInteractiveBlock() const; + MCFOLD bool $isInteractiveBlock() const; - MCAPI bool $use(::Player& player, ::BlockPos const& pos, uchar face) const; + MCFOLD bool $use(::Player& player, ::BlockPos const& pos, uchar face) const; MCAPI ::Block const& $getRenderBlock() const; diff --git a/src/mc/world/level/block/JukeboxBlock.h b/src/mc/world/level/block/JukeboxBlock.h index 7c73fa1b9c..5b82f9d3b8 100644 --- a/src/mc/world/level/block/JukeboxBlock.h +++ b/src/mc/world/level/block/JukeboxBlock.h @@ -85,13 +85,13 @@ class JukeboxBlock : public ::ActorBlock { MCAPI void $onRemove(::BlockSource& region, ::BlockPos const& pos) const; - MCAPI bool $hasComparatorSignal() const; + MCFOLD bool $hasComparatorSignal() const; MCAPI int $getComparatorSignal(::BlockSource& region, ::BlockPos const& pos, ::Block const& block, uchar dir) const; - MCAPI bool $isSignalSource() const; + MCFOLD bool $isSignalSource() const; - MCAPI bool + MCFOLD bool $shouldConnectToRedstone(::BlockSource& region, ::BlockPos const& pos, ::Direction::Type direction) const; MCAPI void $_addHardCodedBlockComponents(::Experiments const&); diff --git a/src/mc/world/level/block/KelpBlock.h b/src/mc/world/level/block/KelpBlock.h index 0268ba02a7..4d894a199a 100644 --- a/src/mc/world/level/block/KelpBlock.h +++ b/src/mc/world/level/block/KelpBlock.h @@ -112,22 +112,22 @@ class KelpBlock : public ::BlockLegacy { MCAPI bool $onFertilized(::BlockSource& region, ::BlockPos const& pos, ::Actor* actor, ::FertilizerType fType) const; - MCAPI bool $mayConsumeFertilizer(::BlockSource& region) const; + MCFOLD bool $mayConsumeFertilizer(::BlockSource& region) const; - MCAPI bool $canBeFertilized(::BlockSource& region, ::BlockPos const& pos, ::Block const& aboveBlock) const; + MCFOLD bool $canBeFertilized(::BlockSource& region, ::BlockPos const& pos, ::Block const& aboveBlock) const; - MCAPI bool $canSurvive(::BlockSource& region, ::BlockPos const& pos) const; + MCFOLD bool $canSurvive(::BlockSource& region, ::BlockPos const& pos) const; - MCAPI ::AABB + MCFOLD ::AABB $getCollisionShape(::Block const&, ::IConstBlockSource const&, ::BlockPos const&, ::optional_ref<::GetCollisionShapeInterface const>) const; - MCAPI ::AABB const& + MCFOLD ::AABB const& $getOutline(::Block const&, ::IConstBlockSource const&, ::BlockPos const& pos, ::AABB& bufferValue) const; MCAPI ::ItemInstance $asItemInstance(::Block const&, ::BlockActor const*) const; - MCAPI void $onGraphicsModeChanged(::BlockGraphicsModeChangeContext const& context); + MCFOLD void $onGraphicsModeChanged(::BlockGraphicsModeChangeContext const& context); MCAPI void $_addHardCodedBlockComponents(::Experiments const&); // NOLINTEND diff --git a/src/mc/world/level/block/LadderBlock.h b/src/mc/world/level/block/LadderBlock.h index 5af33fef15..5a0bfdeb18 100644 --- a/src/mc/world/level/block/LadderBlock.h +++ b/src/mc/world/level/block/LadderBlock.h @@ -77,11 +77,11 @@ class LadderBlock : public ::BlockLegacy { public: // virtual function thunks // NOLINTBEGIN - MCAPI void $tick(::BlockSource& region, ::BlockPos const& pos, ::Random& random) const; + MCFOLD void $tick(::BlockSource& region, ::BlockPos const& pos, ::Random& random) const; MCAPI ::AABB const& $getVisualShape(::Block const& block, ::AABB& bufferAABB) const; - MCAPI bool + MCFOLD bool $getLiquidClipVolume(::Block const& block, ::BlockSource& region, ::BlockPos const& pos, ::AABB& includeBox) const; MCAPI bool $mayPlace(::BlockSource& region, ::BlockPos const& pos, uchar face) const; @@ -96,7 +96,7 @@ class LadderBlock : public ::BlockLegacy { MCAPI void $neighborChanged(::BlockSource& region, ::BlockPos const& pos, ::BlockPos const& neighborPos) const; - MCAPI bool $isLavaBlocking() const; + MCFOLD bool $isLavaBlocking() const; // NOLINTEND public: diff --git a/src/mc/world/level/block/LanternBlock.h b/src/mc/world/level/block/LanternBlock.h index c84030be0e..7d92f588da 100644 --- a/src/mc/world/level/block/LanternBlock.h +++ b/src/mc/world/level/block/LanternBlock.h @@ -75,7 +75,7 @@ class LanternBlock : public ::BlockLegacy { public: // virtual function thunks // NOLINTBEGIN - MCAPI void $tick(::BlockSource& region, ::BlockPos const& pos, ::Random& random) const; + MCFOLD void $tick(::BlockSource& region, ::BlockPos const& pos, ::Random& random) const; MCAPI ::AABB const& $getVisualShape(::Block const& block, ::AABB& bufferAABB) const; @@ -83,11 +83,11 @@ class LanternBlock : public ::BlockLegacy { $getPlacementBlock(::Actor const& by, ::BlockPos const& pos, uchar face, ::Vec3 const& clickPos, int itemValue) const; - MCAPI void $neighborChanged(::BlockSource& region, ::BlockPos const& pos, ::BlockPos const& neighborPos) const; + MCFOLD void $neighborChanged(::BlockSource& region, ::BlockPos const& pos, ::BlockPos const& neighborPos) const; MCAPI bool $canSurvive(::BlockSource& region, ::BlockPos const& pos) const; - MCAPI void $movedByPiston(::BlockSource& region, ::BlockPos const& pos) const; + MCFOLD void $movedByPiston(::BlockSource& region, ::BlockPos const& pos) const; MCAPI bool $mayPlace(::BlockSource& region, ::BlockPos const& pos) const; diff --git a/src/mc/world/level/block/LeavesBlock.h b/src/mc/world/level/block/LeavesBlock.h index b64a95d695..f786435fe6 100644 --- a/src/mc/world/level/block/LeavesBlock.h +++ b/src/mc/world/level/block/LeavesBlock.h @@ -54,7 +54,7 @@ class LeavesBlock : public ::BlockLegacy { public: // constructor thunks // NOLINTBEGIN - MCAPI void* $ctor(::ParticleType particleType, int oneOutOfChance); + MCFOLD void* $ctor(::ParticleType particleType, int oneOutOfChance); // NOLINTEND }; @@ -170,7 +170,7 @@ class LeavesBlock : public ::BlockLegacy { MCAPI void $animateTick(::BlockSource& region, ::BlockPos const& pos, ::Random& random) const; - MCAPI bool $breaksFallingBlocks(::Block const& block, ::BaseGameVersion const version) const; + MCFOLD bool $breaksFallingBlocks(::Block const& block, ::BaseGameVersion const version) const; MCAPI ::Block const& $getPlacementBlock(::Actor const& by, ::BlockPos const& pos, uchar face, ::Vec3 const& clickPos, int itemValue) @@ -178,9 +178,9 @@ class LeavesBlock : public ::BlockLegacy { MCAPI void $onGraphicsModeChanged(::BlockGraphicsModeChangeContext const& context); - MCAPI bool $canProvideSupport(::Block const&, uchar, ::BlockSupportType) const; + MCFOLD bool $canProvideSupport(::Block const&, uchar, ::BlockSupportType) const; - MCAPI bool $canProvideMultifaceSupport(::Block const& block, uchar face) const; + MCFOLD bool $canProvideMultifaceSupport(::Block const& block, uchar face) const; // NOLINTEND public: diff --git a/src/mc/world/level/block/LecternBlock.h b/src/mc/world/level/block/LecternBlock.h index d5bd013af5..c256a01b27 100644 --- a/src/mc/world/level/block/LecternBlock.h +++ b/src/mc/world/level/block/LecternBlock.h @@ -87,7 +87,7 @@ class LecternBlock : public ::ActorBlock { MCAPI void emitRedstonePulse(::BlockSource& region, ::BlockPos const& pos) const; - MCAPI void onPlace(::BlockEvents::BlockPlaceEvent& eventData) const; + MCFOLD void onPlace(::BlockEvents::BlockPlaceEvent& eventData) const; // NOLINTEND public: @@ -111,27 +111,27 @@ class LecternBlock : public ::ActorBlock { MCAPI bool $use(::Player& player, ::BlockPos const& pos, uchar face) const; - MCAPI bool $isInteractiveBlock() const; + MCFOLD bool $isInteractiveBlock() const; - MCAPI bool $canProvideSupport(::Block const&, uchar face, ::BlockSupportType) const; + MCFOLD bool $canProvideSupport(::Block const&, uchar face, ::BlockSupportType) const; - MCAPI bool $checkIsPathable(::Actor& entity, ::BlockPos const& lastPathPos, ::BlockPos const& pathPos) const; + MCFOLD bool $checkIsPathable(::Actor& entity, ::BlockPos const& lastPathPos, ::BlockPos const& pathPos) const; MCAPI ::Block const* $playerWillDestroy(::Player& player, ::BlockPos const& pos, ::Block const& block) const; MCAPI bool $attack(::Player* player, ::BlockPos const& pos) const; - MCAPI bool $hasComparatorSignal() const; + MCFOLD bool $hasComparatorSignal() const; MCAPI int $getComparatorSignal(::BlockSource& region, ::BlockPos const& pos, ::Block const& block, uchar dir) const; MCAPI void $tick(::BlockSource& region, ::BlockPos const& pos, ::Random& random) const; - MCAPI bool $isSignalSource() const; + MCFOLD bool $isSignalSource() const; MCAPI void $setupRedstoneComponent(::BlockSource& region, ::BlockPos const& pos) const; - MCAPI bool + MCFOLD bool $shouldConnectToRedstone(::BlockSource& region, ::BlockPos const& pos, ::Direction::Type direction) const; MCAPI void $_addHardCodedBlockComponents(::Experiments const&); diff --git a/src/mc/world/level/block/LeverBlock.h b/src/mc/world/level/block/LeverBlock.h index 4ba316112d..5ab3f101e8 100644 --- a/src/mc/world/level/block/LeverBlock.h +++ b/src/mc/world/level/block/LeverBlock.h @@ -109,7 +109,7 @@ class LeverBlock : public ::BlockLegacy { MCAPI int getSignal(::BlockSource& region, ::BlockPos const& pos, int dir) const; - MCAPI void onPlace(::BlockEvents::BlockPlaceEvent& eventData) const; + MCFOLD void onPlace(::BlockEvents::BlockPlaceEvent& eventData) const; MCAPI void toggle(::BlockSource& region, ::BlockPos const& pos, ::Player* player) const; // NOLINTEND @@ -135,23 +135,23 @@ class LeverBlock : public ::BlockLegacy { public: // virtual function thunks // NOLINTBEGIN - MCAPI ::AABB + MCFOLD ::AABB $getCollisionShape(::Block const&, ::IConstBlockSource const&, ::BlockPos const&, ::optional_ref<::GetCollisionShapeInterface const>) const; MCAPI ::AABB const& $getVisualShape(::Block const& block, ::AABB& bufferAABB) const; - MCAPI bool $isInteractiveBlock() const; + MCFOLD bool $isInteractiveBlock() const; - MCAPI bool $isSignalSource() const; + MCFOLD bool $isSignalSource() const; - MCAPI bool $isLeverBlock() const; + MCFOLD bool $isLeverBlock() const; - MCAPI bool $canSpawnOn(::Actor*) const; + MCFOLD bool $canSpawnOn(::Actor*) const; MCAPI bool $mayPlace(::BlockSource& region, ::BlockPos const& pos, uchar face) const; - MCAPI bool $mayPlace(::BlockSource& region, ::BlockPos const& pos) const; + MCFOLD bool $mayPlace(::BlockSource& region, ::BlockPos const& pos) const; MCAPI ::Block const& $getPlacementBlock(::Actor const& by, ::BlockPos const& pos, uchar face, ::Vec3 const& clickPos, int itemValue) @@ -169,7 +169,7 @@ class LeverBlock : public ::BlockLegacy { MCAPI void $onRemove(::BlockSource& region, ::BlockPos const& pos) const; - MCAPI bool + MCFOLD bool $shouldConnectToRedstone(::BlockSource& region, ::BlockPos const& pos, ::Direction::Type direction) const; MCAPI bool $isAttachedTo(::BlockSource& region, ::BlockPos const& pos, ::BlockPos& outAttachedTo) const; diff --git a/src/mc/world/level/block/LightBlock.h b/src/mc/world/level/block/LightBlock.h index 317b1c0b62..6f6c6bfca5 100644 --- a/src/mc/world/level/block/LightBlock.h +++ b/src/mc/world/level/block/LightBlock.h @@ -102,7 +102,7 @@ class LightBlock : public ::BlockLegacy { public: // virtual function thunks // NOLINTBEGIN - MCAPI bool $addCollisionShapes( + MCFOLD bool $addCollisionShapes( ::Block const& block, ::IConstBlockSource const& region, ::BlockPos const& pos, @@ -111,7 +111,7 @@ class LightBlock : public ::BlockLegacy { ::optional_ref<::GetCollisionShapeInterface const> entity ) const; - MCAPI ::AABB + MCFOLD ::AABB $getCollisionShape(::Block const&, ::IConstBlockSource const&, ::BlockPos const&, ::optional_ref<::GetCollisionShapeInterface const>) const; @@ -119,7 +119,7 @@ class LightBlock : public ::BlockLegacy { MCAPI bool $mayPlace(::BlockSource& region, ::BlockPos const& pos, uchar face) const; - MCAPI bool $mayPlace(::BlockSource& region, ::BlockPos const& pos) const; + MCFOLD bool $mayPlace(::BlockSource& region, ::BlockPos const& pos) const; MCAPI bool $tryToPlace( ::BlockSource& region, @@ -128,7 +128,7 @@ class LightBlock : public ::BlockLegacy { ::ActorBlockSyncMessage const* syncMsg ) const; - MCAPI bool $canProvideSupport(::Block const&, uchar, ::BlockSupportType) const; + MCFOLD bool $canProvideSupport(::Block const&, uchar, ::BlockSupportType) const; MCAPI bool $canBeBuiltOver(::BlockSource& region, ::BlockPos const& pos, ::BlockItem const& newItem) const; diff --git a/src/mc/world/level/block/LightningRodBlock.h b/src/mc/world/level/block/LightningRodBlock.h index 7fa63a9a51..e655f7c242 100644 --- a/src/mc/world/level/block/LightningRodBlock.h +++ b/src/mc/world/level/block/LightningRodBlock.h @@ -80,7 +80,7 @@ class LightningRodBlock : public ::BlockLegacy { // NOLINTBEGIN MCAPI LightningRodBlock(::std::string const& nameId, int id, ::Material const& material); - MCAPI void onPlace(::BlockEvents::BlockPlaceEvent& eventData) const; + MCFOLD void onPlace(::BlockEvents::BlockPlaceEvent& eventData) const; // NOLINTEND public: @@ -98,16 +98,16 @@ class LightningRodBlock : public ::BlockLegacy { public: // virtual function thunks // NOLINTBEGIN - MCAPI bool $isSignalSource() const; + MCFOLD bool $isSignalSource() const; MCAPI void $setupRedstoneComponent(::BlockSource& region, ::BlockPos const& pos) const; - MCAPI bool + MCFOLD bool $shouldConnectToRedstone(::BlockSource& region, ::BlockPos const& pos, ::Direction::Type direction) const; MCAPI void $tick(::BlockSource& region, ::BlockPos const& pos, ::Random& random) const; - MCAPI ::Block const& + MCFOLD ::Block const& $getPlacementBlock(::Actor const& by, ::BlockPos const& pos, uchar face, ::Vec3 const& clickPos, int itemValue) const; @@ -117,11 +117,11 @@ class LightningRodBlock : public ::BlockLegacy { MCAPI ::AABB const& $getVisualShape(::Block const& block, ::AABB& bufferAABB) const; - MCAPI bool $canConnect(::Block const&, uchar, ::Block const&) const; + MCFOLD bool $canConnect(::Block const&, uchar, ::Block const&) const; MCAPI void $animateTickBedrockLegacy(::BlockSource& region, ::BlockPos const& pos, ::Random& random) const; - MCAPI bool $breaksFallingBlocks(::Block const& block, ::BaseGameVersion const version) const; + MCFOLD bool $breaksFallingBlocks(::Block const& block, ::BaseGameVersion const version) const; MCAPI bool $canProvideSupport(::Block const& block, uchar face, ::BlockSupportType type) const; diff --git a/src/mc/world/level/block/LiquidBlock.h b/src/mc/world/level/block/LiquidBlock.h index 0403e3cb25..648364eefe 100644 --- a/src/mc/world/level/block/LiquidBlock.h +++ b/src/mc/world/level/block/LiquidBlock.h @@ -96,7 +96,7 @@ class LiquidBlock : public ::BlockLegacy { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND public: @@ -104,7 +104,7 @@ class LiquidBlock : public ::BlockLegacy { // NOLINTBEGIN MCAPI bool $mayPick(::BlockSource const& region, ::Block const& block, bool liquid) const; - MCAPI ::AABB + MCFOLD ::AABB $getCollisionShape(::Block const&, ::IConstBlockSource const&, ::BlockPos const&, ::optional_ref<::GetCollisionShapeInterface const>) const; diff --git a/src/mc/world/level/block/LiquidBlockDynamic.h b/src/mc/world/level/block/LiquidBlockDynamic.h index c293cc7d06..f892facee7 100644 --- a/src/mc/world/level/block/LiquidBlockDynamic.h +++ b/src/mc/world/level/block/LiquidBlockDynamic.h @@ -85,7 +85,7 @@ class LiquidBlockDynamic : public ::LiquidBlock { // NOLINTBEGIN MCAPI void $tick(::BlockSource& region, ::BlockPos const& pos, ::Random& random) const; - MCAPI void $entityInside(::BlockSource&, ::BlockPos const&, ::Actor& entity) const; + MCFOLD void $entityInside(::BlockSource&, ::BlockPos const&, ::Actor& entity) const; MCAPI void $_addHardCodedBlockComponents(::Experiments const&); // NOLINTEND diff --git a/src/mc/world/level/block/LiquidBlockStatic.h b/src/mc/world/level/block/LiquidBlockStatic.h index 0406e67644..ce499b7c6a 100644 --- a/src/mc/world/level/block/LiquidBlockStatic.h +++ b/src/mc/world/level/block/LiquidBlockStatic.h @@ -59,7 +59,7 @@ class LiquidBlockStatic : public ::LiquidBlock { MCAPI void $randomTick(::BlockSource& region, ::BlockPos const& pos, ::Random& random) const; - MCAPI void $entityInside(::BlockSource&, ::BlockPos const&, ::Actor& entity) const; + MCFOLD void $entityInside(::BlockSource&, ::BlockPos const&, ::Actor& entity) const; // NOLINTEND public: diff --git a/src/mc/world/level/block/ListBlockVolume.h b/src/mc/world/level/block/ListBlockVolume.h index 78141826de..11aa5b383c 100644 --- a/src/mc/world/level/block/ListBlockVolume.h +++ b/src/mc/world/level/block/ListBlockVolume.h @@ -107,7 +107,7 @@ class ListBlockVolume : public ::BlockVolumeBase { MCAPI ::glm::ivec3 $getSpan() const; - MCAPI int $getCapacity() const; + MCFOLD int $getCapacity() const; MCAPI bool $isInside(::BlockPos const& pos) const; diff --git a/src/mc/world/level/block/ListBlockVolumeIterator.h b/src/mc/world/level/block/ListBlockVolumeIterator.h index 8983b0201e..37a3f01062 100644 --- a/src/mc/world/level/block/ListBlockVolumeIterator.h +++ b/src/mc/world/level/block/ListBlockVolumeIterator.h @@ -53,7 +53,7 @@ class ListBlockVolumeIterator : public ::BaseBlockLocationIterator { MCAPI void $_begin(); - MCAPI void $_end(); + MCFOLD void $_end(); // NOLINTEND public: diff --git a/src/mc/world/level/block/LoomBlock.h b/src/mc/world/level/block/LoomBlock.h index 1939135b64..085f027800 100644 --- a/src/mc/world/level/block/LoomBlock.h +++ b/src/mc/world/level/block/LoomBlock.h @@ -49,11 +49,11 @@ class LoomBlock : public ::FaceDirectionalBlock { public: // virtual function thunks // NOLINTBEGIN - MCAPI bool $use(::Player& player, ::BlockPos const& pos, uchar face) const; + MCFOLD bool $use(::Player& player, ::BlockPos const& pos, uchar face) const; - MCAPI bool $isCraftingBlock() const; + MCFOLD bool $isCraftingBlock() const; - MCAPI bool $isInteractiveBlock() const; + MCFOLD bool $isInteractiveBlock() const; // NOLINTEND public: diff --git a/src/mc/world/level/block/MagmaBlock.h b/src/mc/world/level/block/MagmaBlock.h index 35ca1038b6..04cad21579 100644 --- a/src/mc/world/level/block/MagmaBlock.h +++ b/src/mc/world/level/block/MagmaBlock.h @@ -68,11 +68,11 @@ class MagmaBlock : public ::BlockLegacy { public: // virtual function thunks // NOLINTBEGIN - MCAPI int $getVariant(::Block const& block) const; + MCFOLD int $getVariant(::Block const& block) const; MCAPI void $randomTick(::BlockSource& region, ::BlockPos const& pos, ::Random& random) const; - MCAPI void $tick(::BlockSource& region, ::BlockPos const& pos, ::Random& random) const; + MCFOLD void $tick(::BlockSource& region, ::BlockPos const& pos, ::Random& random) const; MCAPI void $animateTickBedrockLegacy(::BlockSource& region, ::BlockPos const& pos, ::Random& random) const; @@ -80,7 +80,7 @@ class MagmaBlock : public ::BlockLegacy { MCAPI ::Brightness $getEmissiveBrightness(::Block const&) const; - MCAPI bool $shouldTickOnSetBlock() const; + MCFOLD bool $shouldTickOnSetBlock() const; // NOLINTEND public: diff --git a/src/mc/world/level/block/MangrovePropaguleBlock.h b/src/mc/world/level/block/MangrovePropaguleBlock.h index 3044776dab..76e24d7a77 100644 --- a/src/mc/world/level/block/MangrovePropaguleBlock.h +++ b/src/mc/world/level/block/MangrovePropaguleBlock.h @@ -106,7 +106,7 @@ class MangrovePropaguleBlock : public ::BushBlock { MCAPI ::Vec3 $randomlyModifyPosition(::BlockPos const& pos) const; - MCAPI ::AABB const& + MCFOLD ::AABB const& $getOutline(::Block const& block, ::IConstBlockSource const&, ::BlockPos const& pos, ::AABB& bufferValue) const; // NOLINTEND diff --git a/src/mc/world/level/block/MangroveRootsBlock.h b/src/mc/world/level/block/MangroveRootsBlock.h index 421973f975..0bbb3932af 100644 --- a/src/mc/world/level/block/MangroveRootsBlock.h +++ b/src/mc/world/level/block/MangroveRootsBlock.h @@ -43,7 +43,7 @@ class MangroveRootsBlock : public ::BlockLegacy { public: // virtual function thunks // NOLINTBEGIN - MCAPI bool $canConnect(::Block const& otherBlock, uchar toOther, ::Block const& thisBlock) const; + MCFOLD bool $canConnect(::Block const& otherBlock, uchar toOther, ::Block const& thisBlock) const; // NOLINTEND public: diff --git a/src/mc/world/level/block/MelonBlock.h b/src/mc/world/level/block/MelonBlock.h index 3e0db479e0..0136e9bed5 100644 --- a/src/mc/world/level/block/MelonBlock.h +++ b/src/mc/world/level/block/MelonBlock.h @@ -42,7 +42,7 @@ class MelonBlock : public ::BlockLegacy { public: // virtual function thunks // NOLINTBEGIN - MCAPI bool $canConnect(::Block const&, uchar, ::Block const&) const; + MCFOLD bool $canConnect(::Block const&, uchar, ::Block const&) const; // NOLINTEND public: diff --git a/src/mc/world/level/block/MobSpawnerBlock.h b/src/mc/world/level/block/MobSpawnerBlock.h index ce55d10fe1..c8377003d3 100644 --- a/src/mc/world/level/block/MobSpawnerBlock.h +++ b/src/mc/world/level/block/MobSpawnerBlock.h @@ -58,14 +58,14 @@ class MobSpawnerBlock : public ::ActorBlock { public: // virtual function thunks // NOLINTBEGIN - MCAPI ::AABB + MCFOLD ::AABB $getCollisionShape(::Block const&, ::IConstBlockSource const&, ::BlockPos const& pos, ::optional_ref<::GetCollisionShapeInterface const>) const; - MCAPI ::AABB const& + MCFOLD ::AABB const& $getOutline(::Block const&, ::IConstBlockSource const&, ::BlockPos const& pos, ::AABB& bufferValue) const; - MCAPI bool $isInteractiveBlock() const; + MCFOLD bool $isInteractiveBlock() const; // NOLINTEND public: diff --git a/src/mc/world/level/block/MudBlock.h b/src/mc/world/level/block/MudBlock.h index fbe3d2986b..5feb8c86b9 100644 --- a/src/mc/world/level/block/MudBlock.h +++ b/src/mc/world/level/block/MudBlock.h @@ -78,19 +78,19 @@ class MudBlock : public ::BlockLegacy { public: // virtual function thunks // NOLINTBEGIN - MCAPI bool $breaksFallingBlocks(::Block const& block, ::BaseGameVersion const version) const; + MCFOLD bool $breaksFallingBlocks(::Block const& block, ::BaseGameVersion const version) const; MCAPI void $randomTick(::BlockSource& region, ::BlockPos const& pos, ::Random& random) const; - MCAPI bool $canBeOriginalSurface() const; + MCFOLD bool $canBeOriginalSurface() const; - MCAPI void $onRemove(::BlockSource& region, ::BlockPos const& pos) const; + MCFOLD void $onRemove(::BlockSource& region, ::BlockPos const& pos) const; MCAPI ::AABB $getCollisionShape(::Block const&, ::IConstBlockSource const&, ::BlockPos const& pos, ::optional_ref<::GetCollisionShapeInterface const>) const; - MCAPI bool $getCollisionShapeForCamera( + MCFOLD bool $getCollisionShapeForCamera( ::AABB& outAABB, ::Block const& block, ::IConstBlockSource const& region, diff --git a/src/mc/world/level/block/MultifaceBlock.h b/src/mc/world/level/block/MultifaceBlock.h index 5a8f58faae..2610c05689 100644 --- a/src/mc/world/level/block/MultifaceBlock.h +++ b/src/mc/world/level/block/MultifaceBlock.h @@ -188,11 +188,11 @@ class MultifaceBlock : public ::BlockLegacy { $getVisualShapeInWorld(::Block const& block, ::IConstBlockSource const&, ::BlockPos const&, ::AABB& bufferAABB) const; - MCAPI ::AABB + MCFOLD ::AABB $getCollisionShape(::Block const&, ::IConstBlockSource const&, ::BlockPos const&, ::optional_ref<::GetCollisionShapeInterface const>) const; - MCAPI ::AABB const& + MCFOLD ::AABB const& $getOutline(::Block const& block, ::IConstBlockSource const& region, ::BlockPos const& pos, ::AABB& bufferValue) const; @@ -200,7 +200,7 @@ class MultifaceBlock : public ::BlockLegacy { $getPlacementBlock(::Actor const& by, ::BlockPos const& pos, uchar face, ::Vec3 const& clickPos, int itemValue) const; - MCAPI void $neighborChanged(::BlockSource& region, ::BlockPos const& pos, ::BlockPos const& neighborPos) const; + MCFOLD void $neighborChanged(::BlockSource& region, ::BlockPos const& pos, ::BlockPos const& neighborPos) const; MCAPI void $tick(::BlockSource& region, ::BlockPos const& pos, ::Random& random) const; @@ -208,9 +208,9 @@ class MultifaceBlock : public ::BlockLegacy { MCAPI bool $mayPlace(::BlockSource& region, ::BlockPos const& pos, uchar face) const; - MCAPI bool $isMultifaceBlock() const; + MCFOLD bool $isMultifaceBlock() const; - MCAPI bool $isLavaBlocking() const; + MCFOLD bool $isLavaBlocking() const; MCAPI ::Block const& $sanitizeFillBlock(::Block const& block) const; // NOLINTEND diff --git a/src/mc/world/level/block/MultifaceSpreader.h b/src/mc/world/level/block/MultifaceSpreader.h index 4a84c2b094..30e229fa32 100644 --- a/src/mc/world/level/block/MultifaceSpreader.h +++ b/src/mc/world/level/block/MultifaceSpreader.h @@ -130,7 +130,7 @@ class MultifaceSpreader { uchar const placementDirection ) const; - MCAPI bool $_isOtherBlockValidAsSource(::Block const&) const; + MCFOLD bool $_isOtherBlockValidAsSource(::Block const&) const; // NOLINTEND public: diff --git a/src/mc/world/level/block/MushroomBlock.h b/src/mc/world/level/block/MushroomBlock.h index 0f3f248ce3..a57cbfd49e 100644 --- a/src/mc/world/level/block/MushroomBlock.h +++ b/src/mc/world/level/block/MushroomBlock.h @@ -84,11 +84,11 @@ class MushroomBlock : public ::BushBlock { MCAPI bool $onFertilized(::BlockSource& region, ::BlockPos const& pos, ::Actor* actor, ::FertilizerType fType) const; - MCAPI bool $canBeFertilized(::BlockSource& region, ::BlockPos const& pos, ::Block const& aboveBlock) const; + MCFOLD bool $canBeFertilized(::BlockSource& region, ::BlockPos const& pos, ::Block const& aboveBlock) const; - MCAPI ::BlockRenderLayer $getRenderLayer() const; + MCFOLD ::BlockRenderLayer $getRenderLayer() const; - MCAPI ::BlockRenderLayer $getRenderLayer(::Block const& block, ::BlockSource&, ::BlockPos const& pos) const; + MCFOLD ::BlockRenderLayer $getRenderLayer(::Block const& block, ::BlockSource&, ::BlockPos const& pos) const; // NOLINTEND public: diff --git a/src/mc/world/level/block/NetherFungusBlock.h b/src/mc/world/level/block/NetherFungusBlock.h index 616b8ca29f..f52a5d939f 100644 --- a/src/mc/world/level/block/NetherFungusBlock.h +++ b/src/mc/world/level/block/NetherFungusBlock.h @@ -83,27 +83,27 @@ class NetherFungusBlock : public ::BlockLegacy { public: // virtual function thunks // NOLINTBEGIN - MCAPI bool $mayPlace(::BlockSource& region, ::BlockPos const& pos, uchar face) const; + MCFOLD bool $mayPlace(::BlockSource& region, ::BlockPos const& pos, uchar face) const; - MCAPI bool $mayPlaceOn(::BlockSource& region, ::BlockPos const& pos) const; + MCFOLD bool $mayPlaceOn(::BlockSource& region, ::BlockPos const& pos) const; MCAPI bool $canSurvive(::BlockSource& region, ::BlockPos const& pos) const; MCAPI bool $onFertilized(::BlockSource& region, ::BlockPos const& pos, ::Actor* actor, ::FertilizerType fType) const; - MCAPI bool $canBeFertilized(::BlockSource& region, ::BlockPos const& pos, ::Block const& aboveBlock) const; + MCFOLD bool $canBeFertilized(::BlockSource& region, ::BlockPos const& pos, ::Block const& aboveBlock) const; - MCAPI void $neighborChanged(::BlockSource& region, ::BlockPos const& pos, ::BlockPos const& neighborPos) const; + MCFOLD void $neighborChanged(::BlockSource& region, ::BlockPos const& pos, ::BlockPos const& neighborPos) const; - MCAPI ::AABB + MCFOLD ::AABB $getCollisionShape(::Block const&, ::IConstBlockSource const&, ::BlockPos const&, ::optional_ref<::GetCollisionShapeInterface const>) const; - MCAPI ::AABB const& + MCFOLD ::AABB const& $getOutline(::Block const& block, ::IConstBlockSource const&, ::BlockPos const& pos, ::AABB& bufferValue) const; - MCAPI void $tick(::BlockSource& region, ::BlockPos const& pos, ::Random& random) const; + MCFOLD void $tick(::BlockSource& region, ::BlockPos const& pos, ::Random& random) const; // NOLINTEND public: diff --git a/src/mc/world/level/block/NetherSproutsBlock.h b/src/mc/world/level/block/NetherSproutsBlock.h index 9b1fc9f564..b700b89188 100644 --- a/src/mc/world/level/block/NetherSproutsBlock.h +++ b/src/mc/world/level/block/NetherSproutsBlock.h @@ -81,26 +81,26 @@ class NetherSproutsBlock : public ::BlockLegacy { public: // virtual function thunks // NOLINTBEGIN - MCAPI bool $mayPlaceOn(::BlockSource& region, ::BlockPos const& pos) const; + MCFOLD bool $mayPlaceOn(::BlockSource& region, ::BlockPos const& pos) const; - MCAPI ::Vec3 $randomlyModifyPosition(::BlockPos const& pos) const; + MCFOLD ::Vec3 $randomlyModifyPosition(::BlockPos const& pos) const; - MCAPI ::AABB + MCFOLD ::AABB $getCollisionShape(::Block const&, ::IConstBlockSource const&, ::BlockPos const&, ::optional_ref<::GetCollisionShapeInterface const>) const; - MCAPI ::AABB const& + MCFOLD ::AABB const& $getOutline(::Block const& block, ::IConstBlockSource const&, ::BlockPos const& pos, ::AABB& bufferValue) const; - MCAPI bool $mayPlace(::BlockSource& region, ::BlockPos const& pos) const; + MCFOLD bool $mayPlace(::BlockSource& region, ::BlockPos const& pos) const; - MCAPI void $neighborChanged(::BlockSource& region, ::BlockPos const& pos, ::BlockPos const& neighborPos) const; + MCFOLD void $neighborChanged(::BlockSource& region, ::BlockPos const& pos, ::BlockPos const& neighborPos) const; MCAPI bool $canSurvive(::BlockSource& region, ::BlockPos const& pos) const; MCAPI ::ItemInstance $asItemInstance(::Block const&, ::BlockActor const*) const; - MCAPI void $tick(::BlockSource& region, ::BlockPos const& pos, ::Random& random) const; + MCFOLD void $tick(::BlockSource& region, ::BlockPos const& pos, ::Random& random) const; // NOLINTEND public: diff --git a/src/mc/world/level/block/NetherWartBlock.h b/src/mc/world/level/block/NetherWartBlock.h index 65a35f6e25..9e3a53eaff 100644 --- a/src/mc/world/level/block/NetherWartBlock.h +++ b/src/mc/world/level/block/NetherWartBlock.h @@ -74,14 +74,14 @@ class NetherWartBlock : public ::BushBlock { MCAPI ::ItemInstance $asItemInstance(::Block const&, ::BlockActor const*) const; - MCAPI ::AABB + MCFOLD ::AABB $getCollisionShape(::Block const&, ::IConstBlockSource const&, ::BlockPos const&, ::optional_ref<::GetCollisionShapeInterface const>) const; MCAPI ::AABB const& $getOutline(::Block const& block, ::IConstBlockSource const&, ::BlockPos const& pos, ::AABB& bufferValue) const; - MCAPI bool $canSurvive(::BlockSource& region, ::BlockPos const& pos) const; + MCFOLD bool $canSurvive(::BlockSource& region, ::BlockPos const& pos) const; MCAPI bool $mayPlaceOn(::BlockSource& region, ::BlockPos const& pos) const; // NOLINTEND diff --git a/src/mc/world/level/block/NoteBlock.h b/src/mc/world/level/block/NoteBlock.h index 48ef1f1349..c1dd816731 100644 --- a/src/mc/world/level/block/NoteBlock.h +++ b/src/mc/world/level/block/NoteBlock.h @@ -62,7 +62,7 @@ class NoteBlock : public ::ActorBlock { MCAPI ::NoteBlock& enableSkullPlacement(bool enabled); - MCAPI void onPlace(::BlockEvents::BlockPlaceEvent& eventData) const; + MCFOLD void onPlace(::BlockEvents::BlockPlaceEvent& eventData) const; // NOLINTEND public: @@ -80,9 +80,9 @@ class NoteBlock : public ::ActorBlock { public: // virtual function thunks // NOLINTBEGIN - MCAPI bool $isInteractiveBlock() const; + MCFOLD bool $isInteractiveBlock() const; - MCAPI void $setupRedstoneComponent(::BlockSource& region, ::BlockPos const& pos) const; + MCFOLD void $setupRedstoneComponent(::BlockSource& region, ::BlockPos const& pos) const; MCAPI void $onRedstoneUpdate(::BlockSource& region, ::BlockPos const& pos, int strength, bool isFirstTime) const; diff --git a/src/mc/world/level/block/NyliumBlock.h b/src/mc/world/level/block/NyliumBlock.h index 881a1a9b04..d7cd5c0b4a 100644 --- a/src/mc/world/level/block/NyliumBlock.h +++ b/src/mc/world/level/block/NyliumBlock.h @@ -43,7 +43,7 @@ class NyliumBlock : public ::BlockLegacy { // vIndex: 74 virtual bool - onFertilized(::BlockSource& region, ::BlockPos const& pos, ::Actor* actor, ::FertilizerType fType) const + onFertilized(::BlockSource& region, ::BlockPos const& pos, ::Actor* entity, ::FertilizerType fType) const /*override*/; // vIndex: 0 @@ -92,10 +92,10 @@ class NyliumBlock : public ::BlockLegacy { // NOLINTBEGIN MCAPI void $randomTick(::BlockSource& region, ::BlockPos const& pos, ::Random& random) const; - MCAPI bool $canBeFertilized(::BlockSource& region, ::BlockPos const& pos, ::Block const& aboveBlock) const; + MCFOLD bool $canBeFertilized(::BlockSource& region, ::BlockPos const& pos, ::Block const& aboveBlock) const; MCAPI bool - $onFertilized(::BlockSource& region, ::BlockPos const& pos, ::Actor* actor, ::FertilizerType fType) const; + $onFertilized(::BlockSource& region, ::BlockPos const& pos, ::Actor* entity, ::FertilizerType fType) const; // NOLINTEND public: diff --git a/src/mc/world/level/block/ObserverBlock.h b/src/mc/world/level/block/ObserverBlock.h index ece98d422e..6c5e42e635 100644 --- a/src/mc/world/level/block/ObserverBlock.h +++ b/src/mc/world/level/block/ObserverBlock.h @@ -125,16 +125,16 @@ class ObserverBlock : public ::BlockLegacy { MCAPI void $setupRedstoneComponent(::BlockSource& region, ::BlockPos const& pos) const; - MCAPI void $onRedstoneUpdate(::BlockSource& region, ::BlockPos const& pos, int strength, bool isFirstTime) const; + MCFOLD void $onRedstoneUpdate(::BlockSource& region, ::BlockPos const& pos, int strength, bool isFirstTime) const; MCAPI bool $shouldConnectToRedstone(::BlockSource& region, ::BlockPos const& pos, ::Direction::Type direction) const; MCAPI bool $isValidAuxValue(int value) const; - MCAPI bool $isSignalSource() const; + MCFOLD bool $isSignalSource() const; - MCAPI bool $allowStateMismatchOnPlacement(::Block const& clientTarget, ::Block const& serverTarget) const; + MCFOLD bool $allowStateMismatchOnPlacement(::Block const& clientTarget, ::Block const& serverTarget) const; MCAPI ::Block const& $getRenderBlock() const; diff --git a/src/mc/world/level/block/PaleHangingMossBlock.h b/src/mc/world/level/block/PaleHangingMossBlock.h index e02cb2b593..40b0064ec4 100644 --- a/src/mc/world/level/block/PaleHangingMossBlock.h +++ b/src/mc/world/level/block/PaleHangingMossBlock.h @@ -107,15 +107,15 @@ class PaleHangingMossBlock : public ::BlockLegacy { $getPlacementBlock(::Actor const& by, ::BlockPos const& pos, uchar face, ::Vec3 const& clickPos, int itemValue) const; - MCAPI bool $mayPlace(::BlockSource& region, ::BlockPos const& pos) const; + MCFOLD bool $mayPlace(::BlockSource& region, ::BlockPos const& pos) const; - MCAPI bool $canSurvive(::BlockSource& region, ::BlockPos const& pos) const; + MCFOLD bool $canSurvive(::BlockSource& region, ::BlockPos const& pos) const; MCAPI void $tick(::BlockSource& region, ::BlockPos const& pos, ::Random& random) const; MCAPI void $neighborChanged(::BlockSource& region, ::BlockPos const& pos, ::BlockPos const& neighborPos) const; - MCAPI ::AABB + MCFOLD ::AABB $getCollisionShape(::Block const&, ::IConstBlockSource const&, ::BlockPos const&, ::optional_ref<::GetCollisionShapeInterface const>) const; @@ -124,14 +124,14 @@ class PaleHangingMossBlock : public ::BlockLegacy { MCAPI int $getVariant(::Block const& block) const; - MCAPI bool $canBeFertilized(::BlockSource& region, ::BlockPos const& pos, ::Block const& aboveBlock) const; + MCFOLD bool $canBeFertilized(::BlockSource& region, ::BlockPos const& pos, ::Block const& aboveBlock) const; MCAPI bool $onFertilized(::BlockSource& region, ::BlockPos const& pos, ::Actor* actor, ::FertilizerType fType) const; - MCAPI void $animateTick(::BlockSource& region, ::BlockPos const& pos, ::Random& random) const; + MCFOLD void $animateTick(::BlockSource& region, ::BlockPos const& pos, ::Random& random) const; - MCAPI void $animateTickBedrockLegacy(::BlockSource& region, ::BlockPos const& pos, ::Random& random) const; + MCFOLD void $animateTickBedrockLegacy(::BlockSource& region, ::BlockPos const& pos, ::Random& random) const; MCAPI void $_addHardCodedBlockComponents(::Experiments const&); // NOLINTEND diff --git a/src/mc/world/level/block/PaleMossCarpetBlock.h b/src/mc/world/level/block/PaleMossCarpetBlock.h index 70f4724b78..43d386dcb9 100644 --- a/src/mc/world/level/block/PaleMossCarpetBlock.h +++ b/src/mc/world/level/block/PaleMossCarpetBlock.h @@ -110,7 +110,7 @@ class PaleMossCarpetBlock : public ::CarpetBlock { MCAPI void $tick(::BlockSource& region, ::BlockPos const& pos, ::Random& random) const; - MCAPI bool $canBeFertilized(::BlockSource& region, ::BlockPos const& pos, ::Block const& aboveBlock) const; + MCFOLD bool $canBeFertilized(::BlockSource& region, ::BlockPos const& pos, ::Block const& aboveBlock) const; MCAPI bool $onFertilized(::BlockSource& region, ::BlockPos const& pos, ::Actor* actor, ::FertilizerType fType) const; diff --git a/src/mc/world/level/block/PinkPetalsBlock.h b/src/mc/world/level/block/PinkPetalsBlock.h index b18e72cb3a..dccb14adff 100644 --- a/src/mc/world/level/block/PinkPetalsBlock.h +++ b/src/mc/world/level/block/PinkPetalsBlock.h @@ -88,9 +88,9 @@ class PinkPetalsBlock : public ::BlockLegacy { public: // virtual function thunks // NOLINTBEGIN - MCAPI int $getVariant(::Block const& block) const; + MCFOLD int $getVariant(::Block const& block) const; - MCAPI bool $mayPlaceOn(::BlockSource& region, ::BlockPos const& pos) const; + MCFOLD bool $mayPlaceOn(::BlockSource& region, ::BlockPos const& pos) const; MCAPI bool $canSurvive(::BlockSource& region, ::BlockPos const& pos) const; @@ -100,14 +100,14 @@ class PinkPetalsBlock : public ::BlockLegacy { MCAPI bool $use(::Player& player, ::BlockPos const& pos, uchar face) const; - MCAPI ::AABB + MCFOLD ::AABB $getCollisionShape(::Block const&, ::IConstBlockSource const&, ::BlockPos const&, ::optional_ref<::GetCollisionShapeInterface const>) const; MCAPI bool $onFertilized(::BlockSource& region, ::BlockPos const& pos, ::Actor* actor, ::FertilizerType fType) const; - MCAPI bool $canBeFertilized(::BlockSource& region, ::BlockPos const& pos, ::Block const& aboveBlock) const; + MCFOLD bool $canBeFertilized(::BlockSource& region, ::BlockPos const& pos, ::Block const& aboveBlock) const; // NOLINTEND public: diff --git a/src/mc/world/level/block/PistonArmBlock.h b/src/mc/world/level/block/PistonArmBlock.h index d239781961..ce7a973023 100644 --- a/src/mc/world/level/block/PistonArmBlock.h +++ b/src/mc/world/level/block/PistonArmBlock.h @@ -137,9 +137,9 @@ class PistonArmBlock : public ::BlockLegacy { MCAPI bool $canProvideSupport(::Block const& block, uchar face, ::BlockSupportType) const; - MCAPI void $neighborChanged(::BlockSource& region, ::BlockPos const& pos, ::BlockPos const& neighborPos) const; + MCFOLD void $neighborChanged(::BlockSource& region, ::BlockPos const& pos, ::BlockPos const& neighborPos) const; - MCAPI bool $breaksFallingBlocks(::Block const& block, ::BaseGameVersion const version) const; + MCFOLD bool $breaksFallingBlocks(::Block const& block, ::BaseGameVersion const version) const; MCAPI ::Block const* $playerWillDestroy(::Player& player, ::BlockPos const& pos, ::Block const& block) const; diff --git a/src/mc/world/level/block/PistonBlock.h b/src/mc/world/level/block/PistonBlock.h index bbe9670b6e..626a2a22ca 100644 --- a/src/mc/world/level/block/PistonBlock.h +++ b/src/mc/world/level/block/PistonBlock.h @@ -100,7 +100,7 @@ class PistonBlock : public ::ActorBlock { // NOLINTBEGIN MCAPI PistonBlock(::std::string const& nameId, int id, ::PistonBlock::Type isSticky); - MCAPI void onPlace(::BlockEvents::BlockPlaceEvent& eventData) const; + MCFOLD void onPlace(::BlockEvents::BlockPlaceEvent& eventData) const; // NOLINTEND public: @@ -130,9 +130,9 @@ class PistonBlock : public ::ActorBlock { $getPlacementBlock(::Actor const& by, ::BlockPos const& pos, uchar face, ::Vec3 const& clickPos, int itemValue) const; - MCAPI void $onRedstoneUpdate(::BlockSource& region, ::BlockPos const& pos, int strength, bool isFirstTime) const; + MCFOLD void $onRedstoneUpdate(::BlockSource& region, ::BlockPos const& pos, int strength, bool isFirstTime) const; - MCAPI bool $canProvideSupport(::Block const&, uchar, ::BlockSupportType) const; + MCFOLD bool $canProvideSupport(::Block const&, uchar, ::BlockSupportType) const; MCAPI void $neighborChanged(::BlockSource& region, ::BlockPos const& pos, ::BlockPos const& neighborPos) const; @@ -141,19 +141,19 @@ class PistonBlock : public ::ActorBlock { MCAPI bool $shouldConnectToRedstone(::BlockSource& region, ::BlockPos const& pos, ::Direction::Type direction) const; - MCAPI bool $isValidAuxValue(int value) const; + MCFOLD bool $isValidAuxValue(int value) const; - MCAPI void $tick(::BlockSource& region, ::BlockPos const& pos, ::Random& random) const; + MCFOLD void $tick(::BlockSource& region, ::BlockPos const& pos, ::Random& random) const; MCAPI bool $canSurvive(::BlockSource& region, ::BlockPos const& pos) const; - MCAPI int $getVariant(::Block const& block) const; + MCFOLD int $getVariant(::Block const& block) const; MCAPI uchar $getMappedFace(uchar face, ::Block const& block) const; - MCAPI bool $breaksFallingBlocks(::Block const& block, ::BaseGameVersion const version) const; + MCFOLD bool $breaksFallingBlocks(::Block const& block, ::BaseGameVersion const version) const; - MCAPI bool $pushesUpFallingBlocks() const; + MCFOLD bool $pushesUpFallingBlocks() const; MCAPI void $_addHardCodedBlockComponents(::Experiments const&); // NOLINTEND diff --git a/src/mc/world/level/block/PitcherCropBlock.h b/src/mc/world/level/block/PitcherCropBlock.h index 69f2f0ab2e..6699ed2d0b 100644 --- a/src/mc/world/level/block/PitcherCropBlock.h +++ b/src/mc/world/level/block/PitcherCropBlock.h @@ -99,7 +99,7 @@ class PitcherCropBlock : public ::BushBlock { public: // static functions // NOLINTBEGIN - MCAPI static int getMaxGrowthStage(); + MCFOLD static int getMaxGrowthStage(); // NOLINTEND public: @@ -133,20 +133,20 @@ class PitcherCropBlock : public ::BushBlock { MCAPI bool $getSecondPart(::IConstBlockSource const& region, ::BlockPos const& pos, ::BlockPos& out) const; - MCAPI bool $mayPlace(::BlockSource& region, ::BlockPos const& pos) const; + MCFOLD bool $mayPlace(::BlockSource& region, ::BlockPos const& pos) const; - MCAPI bool $mayPlace(::BlockSource& region, ::BlockPos const& pos, uchar face) const; + MCFOLD bool $mayPlace(::BlockSource& region, ::BlockPos const& pos, uchar face) const; - MCAPI bool $mayPlaceOn(::BlockSource& region, ::BlockPos const& pos) const; + MCFOLD bool $mayPlaceOn(::BlockSource& region, ::BlockPos const& pos) const; - MCAPI void $neighborChanged(::BlockSource& region, ::BlockPos const& pos, ::BlockPos const& neighborPos) const; + MCFOLD void $neighborChanged(::BlockSource& region, ::BlockPos const& pos, ::BlockPos const& neighborPos) const; MCAPI bool $onFertilized(::BlockSource& region, ::BlockPos const& pos, ::Actor* actor, ::FertilizerType fType) const; MCAPI void $randomTick(::BlockSource& region, ::BlockPos const& pos, ::Random& random) const; - MCAPI void $tick(::BlockSource& region, ::BlockPos const& pos, ::Random& random) const; + MCFOLD void $tick(::BlockSource& region, ::BlockPos const& pos, ::Random& random) const; // NOLINTEND public: diff --git a/src/mc/world/level/block/PitcherPlantBlock.h b/src/mc/world/level/block/PitcherPlantBlock.h index cd283cf972..d6f7a146c1 100644 --- a/src/mc/world/level/block/PitcherPlantBlock.h +++ b/src/mc/world/level/block/PitcherPlantBlock.h @@ -52,10 +52,10 @@ class PitcherPlantBlock : public ::DoublePlantBaseBlock { public: // virtual function thunks // NOLINTBEGIN - MCAPI bool + MCFOLD bool $onFertilized(::BlockSource& region, ::BlockPos const& pos, ::Actor* actor, ::FertilizerType fType) const; - MCAPI bool $canBeFertilized(::BlockSource& region, ::BlockPos const& pos, ::Block const& aboveBlock) const; + MCFOLD bool $canBeFertilized(::BlockSource& region, ::BlockPos const& pos, ::Block const& aboveBlock) const; // NOLINTEND public: diff --git a/src/mc/world/level/block/PointedDripstoneBlock.h b/src/mc/world/level/block/PointedDripstoneBlock.h index 7cc2ee4d28..81959634f8 100644 --- a/src/mc/world/level/block/PointedDripstoneBlock.h +++ b/src/mc/world/level/block/PointedDripstoneBlock.h @@ -155,7 +155,7 @@ class PointedDripstoneBlock : public ::FallingBlock { MCAPI static uchar _getDripstoneDirection(::Block const& block); - MCAPI static uchar _getTipDirection(::Block const& pointedDripstoneBlock); + MCFOLD static uchar _getTipDirection(::Block const& pointedDripstoneBlock); MCAPI static void _grow(::BlockSource& region, ::BlockPos const& growFromPos, uchar growToDirection); @@ -228,13 +228,13 @@ class PointedDripstoneBlock : public ::FallingBlock { MCAPI void $onProjectileHit(::BlockSource& region, ::BlockPos const& pos, ::Actor const& projectile) const; - MCAPI bool $falling() const; + MCFOLD bool $falling() const; MCAPI void $onLand(::BlockSource& region, ::BlockPos const& pos) const; - MCAPI ::mce::Color $getDustColor(::Block const&) const; + MCFOLD ::mce::Color $getDustColor(::Block const&) const; - MCAPI ::std::string $getDustParticleName(::Block const&) const; + MCFOLD ::std::string $getDustParticleName(::Block const&) const; MCAPI ::AABB const& $getVisualShape(::Block const& block, ::AABB& bufferAABB) const; diff --git a/src/mc/world/level/block/PortalBlock.h b/src/mc/world/level/block/PortalBlock.h index 1965cb265e..70b9b48d4e 100644 --- a/src/mc/world/level/block/PortalBlock.h +++ b/src/mc/world/level/block/PortalBlock.h @@ -126,20 +126,20 @@ class PortalBlock : public ::BlockLegacy { ::AABB& bufferAABB ) const; - MCAPI ::AABB + MCFOLD ::AABB $getCollisionShape(::Block const&, ::IConstBlockSource const&, ::BlockPos const&, ::optional_ref<::GetCollisionShapeInterface const>) const; - MCAPI ::AABB const& + MCFOLD ::AABB const& $getOutline(::Block const&, ::IConstBlockSource const&, ::BlockPos const& pos, ::AABB& bufferValue) const; MCAPI void $entityInside(::BlockSource&, ::BlockPos const& pos, ::Actor& entity) const; MCAPI void $neighborChanged(::BlockSource& region, ::BlockPos const& pos, ::BlockPos const& neighborPos) const; - MCAPI ::ItemInstance $asItemInstance(::Block const&, ::BlockActor const*) const; + MCFOLD ::ItemInstance $asItemInstance(::Block const&, ::BlockActor const*) const; - MCAPI bool $isLavaBlocking() const; + MCFOLD bool $isLavaBlocking() const; MCAPI void $_addHardCodedBlockComponents(::Experiments const&); // NOLINTEND diff --git a/src/mc/world/level/block/PotatoBlock.h b/src/mc/world/level/block/PotatoBlock.h index 819cc271fd..95cb4ee6f3 100644 --- a/src/mc/world/level/block/PotatoBlock.h +++ b/src/mc/world/level/block/PotatoBlock.h @@ -63,13 +63,13 @@ class PotatoBlock : public ::CropBlock { // NOLINTBEGIN MCAPI ::ItemInstance const $getBaseSeed() const; - MCAPI int $getVariant(::Block const& block) const; + MCFOLD int $getVariant(::Block const& block) const; - MCAPI ::AABB + MCFOLD ::AABB $getCollisionShape(::Block const&, ::IConstBlockSource const&, ::BlockPos const&, ::optional_ref<::GetCollisionShapeInterface const>) const; - MCAPI ::AABB const& + MCFOLD ::AABB const& $getOutline(::Block const& block, ::IConstBlockSource const&, ::BlockPos const& pos, ::AABB& bufferValue) const; // NOLINTEND diff --git a/src/mc/world/level/block/PowderSnowBlock.h b/src/mc/world/level/block/PowderSnowBlock.h index 95e8771a04..5f9225093d 100644 --- a/src/mc/world/level/block/PowderSnowBlock.h +++ b/src/mc/world/level/block/PowderSnowBlock.h @@ -66,7 +66,7 @@ class PowderSnowBlock : public ::BlockLegacy { // NOLINTBEGIN MCAPI PowderSnowBlock(::std::string const& nameId, int id, ::Material const& material); - MCAPI void onFallOn(::BlockEvents::BlockEntityFallOnEvent& eventData) const; + MCFOLD void onFallOn(::BlockEvents::BlockEntityFallOnEvent& eventData) const; // NOLINTEND public: @@ -96,7 +96,7 @@ class PowderSnowBlock : public ::BlockLegacy { // NOLINTBEGIN MCAPI void $_addHardCodedBlockComponents(::Experiments const&); - MCAPI bool $breaksFallingBlocks(::Block const& block, ::BaseGameVersion const version) const; + MCFOLD bool $breaksFallingBlocks(::Block const& block, ::BaseGameVersion const version) const; MCAPI ::AABB $getCollisionShape( ::Block const& block, @@ -105,13 +105,13 @@ class PowderSnowBlock : public ::BlockLegacy { ::optional_ref<::GetCollisionShapeInterface const> entity ) const; - MCAPI bool $causesFreezeEffect() const; + MCFOLD bool $causesFreezeEffect() const; MCAPI ::ItemInstance $asItemInstance(::Block const&, ::BlockActor const*) const; - MCAPI bool $isLavaBlocking() const; + MCFOLD bool $isLavaBlocking() const; - MCAPI bool $canConnect(::Block const&, uchar, ::Block const&) const; + MCFOLD bool $canConnect(::Block const&, uchar, ::Block const&) const; // NOLINTEND public: diff --git a/src/mc/world/level/block/PoweredRailBlock.h b/src/mc/world/level/block/PoweredRailBlock.h index d3283602ab..3fdf4b49a8 100644 --- a/src/mc/world/level/block/PoweredRailBlock.h +++ b/src/mc/world/level/block/PoweredRailBlock.h @@ -48,7 +48,7 @@ class PoweredRailBlock : public ::BaseRailBlock { public: // virtual function thunks // NOLINTBEGIN - MCAPI int $getVariant(::Block const& block) const; + MCFOLD int $getVariant(::Block const& block) const; MCAPI void $onRedstoneUpdate(::BlockSource& region, ::BlockPos const& pos, int strength, bool isFirstTime) const; // NOLINTEND diff --git a/src/mc/world/level/block/PumpkinBlock.h b/src/mc/world/level/block/PumpkinBlock.h index 02c795c2e4..f3f4b9be09 100644 --- a/src/mc/world/level/block/PumpkinBlock.h +++ b/src/mc/world/level/block/PumpkinBlock.h @@ -105,7 +105,7 @@ class PumpkinBlock : public ::BlockLegacy { MCAPI bool $dispense(::BlockSource& region, ::Container& container, int slot, ::Vec3 const& pos, uchar face) const; - MCAPI bool $canConnect(::Block const&, uchar, ::Block const&) const; + MCFOLD bool $canConnect(::Block const&, uchar, ::Block const&) const; MCAPI void $_addHardCodedBlockComponents(::Experiments const&); // NOLINTEND diff --git a/src/mc/world/level/block/RedStoneOreBlock.h b/src/mc/world/level/block/RedStoneOreBlock.h index 48177575af..4337475375 100644 --- a/src/mc/world/level/block/RedStoneOreBlock.h +++ b/src/mc/world/level/block/RedStoneOreBlock.h @@ -91,7 +91,7 @@ class RedStoneOreBlock : public ::BlockLegacy { MCAPI ::ItemInstance $asItemInstance(::Block const&, ::BlockActor const*) const; - MCAPI bool $canBeOriginalSurface() const; + MCFOLD bool $canBeOriginalSurface() const; MCAPI void $_lightUpBlock(::BlockSource& region, ::BlockPos const& pos) const; // NOLINTEND diff --git a/src/mc/world/level/block/RedStoneWireBlock.h b/src/mc/world/level/block/RedStoneWireBlock.h index 23fbc0820c..8f9903066d 100644 --- a/src/mc/world/level/block/RedStoneWireBlock.h +++ b/src/mc/world/level/block/RedStoneWireBlock.h @@ -97,19 +97,19 @@ class RedStoneWireBlock : public ::BlockLegacy { public: // virtual function thunks // NOLINTBEGIN - MCAPI ::AABB + MCFOLD ::AABB $getCollisionShape(::Block const&, ::IConstBlockSource const&, ::BlockPos const&, ::optional_ref<::GetCollisionShapeInterface const>) const; MCAPI bool $canSurvive(::BlockSource& region, ::BlockPos const& pos) const; - MCAPI bool $mayPlace(::BlockSource& region, ::BlockPos const& pos) const; + MCFOLD bool $mayPlace(::BlockSource& region, ::BlockPos const& pos) const; MCAPI void $setupRedstoneComponent(::BlockSource& region, ::BlockPos const& pos) const; MCAPI void $onRedstoneUpdate(::BlockSource& region, ::BlockPos const& pos, int strength, bool isFirstTime) const; - MCAPI void $neighborChanged(::BlockSource& region, ::BlockPos const& pos, ::BlockPos const& neighborPos) const; + MCFOLD void $neighborChanged(::BlockSource& region, ::BlockPos const& pos, ::BlockPos const& neighborPos) const; MCAPI ::ItemInstance $asItemInstance(::Block const&, ::BlockActor const*) const; @@ -117,10 +117,10 @@ class RedStoneWireBlock : public ::BlockLegacy { MCAPI void $animateTickBedrockLegacy(::BlockSource& region, ::BlockPos const& pos, ::Random& random) const; - MCAPI bool + MCFOLD bool $shouldConnectToRedstone(::BlockSource& region, ::BlockPos const& pos, ::Direction::Type direction) const; - MCAPI bool $canSpawnOn(::Actor*) const; + MCFOLD bool $canSpawnOn(::Actor*) const; MCAPI void $_addHardCodedBlockComponents(::Experiments const&); // NOLINTEND diff --git a/src/mc/world/level/block/RedstoneBlock.h b/src/mc/world/level/block/RedstoneBlock.h index 560437fbfd..3d58c5266c 100644 --- a/src/mc/world/level/block/RedstoneBlock.h +++ b/src/mc/world/level/block/RedstoneBlock.h @@ -45,7 +45,7 @@ class RedstoneBlock : public ::BlockLegacy { // NOLINTBEGIN MCAPI RedstoneBlock(::std::string const& nameId, int id); - MCAPI void onPlace(::BlockEvents::BlockPlaceEvent& eventData) const; + MCFOLD void onPlace(::BlockEvents::BlockPlaceEvent& eventData) const; // NOLINTEND public: @@ -63,14 +63,14 @@ class RedstoneBlock : public ::BlockLegacy { public: // virtual function thunks // NOLINTBEGIN - MCAPI bool + MCFOLD bool $shouldConnectToRedstone(::BlockSource& region, ::BlockPos const& pos, ::Direction::Type direction) const; MCAPI void $setupRedstoneComponent(::BlockSource& region, ::BlockPos const& pos) const; - MCAPI bool $isSignalSource() const; + MCFOLD bool $isSignalSource() const; - MCAPI bool $canSpawnOn(::Actor*) const; + MCFOLD bool $canSpawnOn(::Actor*) const; MCAPI void $_addHardCodedBlockComponents(::Experiments const&); // NOLINTEND diff --git a/src/mc/world/level/block/RedstoneLampBlock.h b/src/mc/world/level/block/RedstoneLampBlock.h index 0ae88c0ff2..83435287c6 100644 --- a/src/mc/world/level/block/RedstoneLampBlock.h +++ b/src/mc/world/level/block/RedstoneLampBlock.h @@ -58,7 +58,7 @@ class RedstoneLampBlock : public ::BlockLegacy { // NOLINTBEGIN MCAPI RedstoneLampBlock(::std::string const& nameId, int id, bool isLit); - MCAPI void onPlace(::BlockEvents::BlockPlaceEvent& eventData) const; + MCFOLD void onPlace(::BlockEvents::BlockPlaceEvent& eventData) const; // NOLINTEND public: @@ -78,13 +78,13 @@ class RedstoneLampBlock : public ::BlockLegacy { // NOLINTBEGIN MCAPI void $tick(::BlockSource& region, ::BlockPos const& pos, ::Random& random) const; - MCAPI void $setupRedstoneComponent(::BlockSource& region, ::BlockPos const& pos) const; + MCFOLD void $setupRedstoneComponent(::BlockSource& region, ::BlockPos const& pos) const; MCAPI void $onRedstoneUpdate(::BlockSource& region, ::BlockPos const& pos, int strength, bool isFirstTime) const; MCAPI ::ItemInstance $asItemInstance(::Block const&, ::BlockActor const*) const; - MCAPI bool + MCFOLD bool $shouldConnectToRedstone(::BlockSource& region, ::BlockPos const& pos, ::Direction::Type direction) const; MCAPI void $_addHardCodedBlockComponents(::Experiments const&); diff --git a/src/mc/world/level/block/RedstoneTorchBlock.h b/src/mc/world/level/block/RedstoneTorchBlock.h index 88a2e4652d..311ba33a8a 100644 --- a/src/mc/world/level/block/RedstoneTorchBlock.h +++ b/src/mc/world/level/block/RedstoneTorchBlock.h @@ -75,7 +75,7 @@ class RedstoneTorchBlock : public ::TorchBlock { MCAPI void _installCircuit(::BlockSource& source, ::BlockPos const& pos) const; - MCAPI void onPlaceRedstoneTorchBlock(::BlockEvents::BlockPlaceEvent& eventData) const; + MCFOLD void onPlaceRedstoneTorchBlock(::BlockEvents::BlockPlaceEvent& eventData) const; // NOLINTEND public: @@ -99,18 +99,18 @@ class RedstoneTorchBlock : public ::TorchBlock { MCAPI void $animateTickBedrockLegacy(::BlockSource& region, ::BlockPos const& pos, ::Random& random) const; - MCAPI int $getTickDelay(); + MCFOLD int $getTickDelay(); - MCAPI bool + MCFOLD bool $shouldConnectToRedstone(::BlockSource& region, ::BlockPos const& pos, ::Direction::Type direction) const; MCAPI ::ItemInstance $asItemInstance(::Block const&, ::BlockActor const*) const; - MCAPI bool $isSignalSource() const; + MCFOLD bool $isSignalSource() const; MCAPI void $neighborChanged(::BlockSource& region, ::BlockPos const& pos, ::BlockPos const& neighborPos) const; - MCAPI bool $canSpawnOn(::Actor*) const; + MCFOLD bool $canSpawnOn(::Actor*) const; MCAPI void $_addHardCodedBlockComponents(::Experiments const& experiments); // NOLINTEND diff --git a/src/mc/world/level/block/ReinforcedDeepslateBlock.h b/src/mc/world/level/block/ReinforcedDeepslateBlock.h index 202d0d6244..6a0e05bb21 100644 --- a/src/mc/world/level/block/ReinforcedDeepslateBlock.h +++ b/src/mc/world/level/block/ReinforcedDeepslateBlock.h @@ -25,7 +25,7 @@ class ReinforcedDeepslateBlock : public ::BlockLegacy { public: // constructor thunks // NOLINTBEGIN - MCAPI void* $ctor(::std::string const& nameId, int id); + MCFOLD void* $ctor(::std::string const& nameId, int id); // NOLINTEND public: @@ -37,7 +37,7 @@ class ReinforcedDeepslateBlock : public ::BlockLegacy { public: // virtual function thunks // NOLINTBEGIN - MCAPI bool $canBeOriginalSurface() const; + MCFOLD bool $canBeOriginalSurface() const; // NOLINTEND public: diff --git a/src/mc/world/level/block/RepeaterBlock.h b/src/mc/world/level/block/RepeaterBlock.h index e0cb3c9d73..6fd31a3af9 100644 --- a/src/mc/world/level/block/RepeaterBlock.h +++ b/src/mc/world/level/block/RepeaterBlock.h @@ -91,7 +91,7 @@ class RepeaterBlock : public ::DiodeBlock { // NOLINTBEGIN MCAPI RepeaterBlock(::std::string const& nameId, int id, bool on); - MCAPI void onPlace(::BlockEvents::BlockPlaceEvent& eventData) const; + MCFOLD void onPlace(::BlockEvents::BlockPlaceEvent& eventData) const; MCAPI void updateDelay(::BlockSource& region, ::BlockPos const& pos, bool doIncrement) const; // NOLINTEND @@ -127,24 +127,24 @@ class RepeaterBlock : public ::DiodeBlock { MCAPI bool $isLocked(::BlockSource& region, ::BlockPos const& pos) const; - MCAPI bool $isInteractiveBlock() const; + MCFOLD bool $isInteractiveBlock() const; MCAPI void $tick(::BlockSource& region, ::BlockPos const& pos, ::Random& random) const; MCAPI void $animateTickBedrockLegacy(::BlockSource& region, ::BlockPos const& pos, ::Random& random) const; - MCAPI bool $mayPlace(::BlockSource& region, ::BlockPos const& pos) const; + MCFOLD bool $mayPlace(::BlockSource& region, ::BlockPos const& pos) const; MCAPI bool $canSurvive(::BlockSource& region, ::BlockPos const& pos) const; - MCAPI void $neighborChanged(::BlockSource& region, ::BlockPos const& pos, ::BlockPos const& neighborPos) const; + MCFOLD void $neighborChanged(::BlockSource& region, ::BlockPos const& pos, ::BlockPos const& neighborPos) const; - MCAPI void $onRemove(::BlockSource& region, ::BlockPos const& pos) const; + MCFOLD void $onRemove(::BlockSource& region, ::BlockPos const& pos) const; MCAPI bool $shouldConnectToRedstone(::BlockSource& region, ::BlockPos const& pos, ::Direction::Type direction) const; - MCAPI bool $isPreservingMediumWhenPlaced(::BlockLegacy const* medium) const; + MCFOLD bool $isPreservingMediumWhenPlaced(::BlockLegacy const* medium) const; MCAPI int $getTurnOnDelay(::Block const& block) const; diff --git a/src/mc/world/level/block/ResourceDrops.h b/src/mc/world/level/block/ResourceDrops.h index 5a9557b031..a72ba02f05 100644 --- a/src/mc/world/level/block/ResourceDrops.h +++ b/src/mc/world/level/block/ResourceDrops.h @@ -24,6 +24,6 @@ struct ResourceDrops { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/world/level/block/RespawnAnchorBlock.h b/src/mc/world/level/block/RespawnAnchorBlock.h index 4adea94af2..f02be73ba9 100644 --- a/src/mc/world/level/block/RespawnAnchorBlock.h +++ b/src/mc/world/level/block/RespawnAnchorBlock.h @@ -112,7 +112,7 @@ class RespawnAnchorBlock : public ::BlockLegacy { MCAPI bool $use(::Player& player, ::BlockPos const& anchorBlockPos, uchar) const; - MCAPI bool $isInteractiveBlock() const; + MCFOLD bool $isInteractiveBlock() const; MCAPI ::Brightness $getLightEmission(::Block const& block) const; @@ -120,7 +120,7 @@ class RespawnAnchorBlock : public ::BlockLegacy { MCAPI void $notifySpawnedAt(::BlockSource& region, ::BlockPos const& pos) const; - MCAPI bool $hasComparatorSignal() const; + MCFOLD bool $hasComparatorSignal() const; MCAPI int $getComparatorSignal(::BlockSource& region, ::BlockPos const& pos, ::Block const& block, uchar dir) const; diff --git a/src/mc/world/level/block/RootedDirtBlock.h b/src/mc/world/level/block/RootedDirtBlock.h index cb7b05ca9c..d2595a0e77 100644 --- a/src/mc/world/level/block/RootedDirtBlock.h +++ b/src/mc/world/level/block/RootedDirtBlock.h @@ -73,7 +73,7 @@ class RootedDirtBlock : public ::BlockLegacy { MCAPI bool $tryToTill(::BlockSource& region, ::BlockPos const& pos, ::Actor& entity, ::ItemStack& item) const; - MCAPI bool $canBeOriginalSurface() const; + MCFOLD bool $canBeOriginalSurface() const; // NOLINTEND public: diff --git a/src/mc/world/level/block/RotatedPillarBlock.h b/src/mc/world/level/block/RotatedPillarBlock.h index 2cae8c05f7..31c9ecd7af 100644 --- a/src/mc/world/level/block/RotatedPillarBlock.h +++ b/src/mc/world/level/block/RotatedPillarBlock.h @@ -58,7 +58,7 @@ class RotatedPillarBlock : public ::BlockLegacy { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND public: @@ -70,7 +70,7 @@ class RotatedPillarBlock : public ::BlockLegacy { $getPlacementBlock(::Actor const& by, ::BlockPos const& pos, uchar face, ::Vec3 const& clickPos, int itemValue) const; - MCAPI ::ItemInstance $asItemInstance(::Block const& block, ::BlockActor const*) const; + MCFOLD ::ItemInstance $asItemInstance(::Block const& block, ::BlockActor const*) const; // NOLINTEND public: diff --git a/src/mc/world/level/block/SandBlock.h b/src/mc/world/level/block/SandBlock.h index d46024ad18..1c87edbaa3 100644 --- a/src/mc/world/level/block/SandBlock.h +++ b/src/mc/world/level/block/SandBlock.h @@ -70,20 +70,20 @@ class SandBlock : public ::FallingBlock { public: // virtual function thunks // NOLINTBEGIN - MCAPI ::ItemInstance $asItemInstance(::Block const& block, ::BlockActor const*) const; + MCFOLD ::ItemInstance $asItemInstance(::Block const& block, ::BlockActor const*) const; MCAPI ::mce::Color $getDustColor(::Block const& block) const; MCAPI ::std::string $getDustParticleName(::Block const& block) const; - MCAPI bool + MCFOLD bool $onFertilized(::BlockSource& region, ::BlockPos const& pos, ::Actor* actor, ::FertilizerType fType) const; - MCAPI bool $mayConsumeFertilizer(::BlockSource& region) const; + MCFOLD bool $mayConsumeFertilizer(::BlockSource& region) const; - MCAPI bool $canBeFertilized(::BlockSource& region, ::BlockPos const& pos, ::Block const& aboveBlock) const; + MCFOLD bool $canBeFertilized(::BlockSource& region, ::BlockPos const& pos, ::Block const& aboveBlock) const; - MCAPI bool $canBeOriginalSurface() const; + MCFOLD bool $canBeOriginalSurface() const; // NOLINTEND public: diff --git a/src/mc/world/level/block/SaplingBlock.h b/src/mc/world/level/block/SaplingBlock.h index e146461f5f..67b93c81cf 100644 --- a/src/mc/world/level/block/SaplingBlock.h +++ b/src/mc/world/level/block/SaplingBlock.h @@ -133,7 +133,7 @@ class SaplingBlock : public ::BushBlock { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND public: @@ -144,13 +144,13 @@ class SaplingBlock : public ::BushBlock { MCAPI bool $onFertilized(::BlockSource& region, ::BlockPos const& pos, ::Actor* actor, ::FertilizerType fType) const; - MCAPI bool $canBeFertilized(::BlockSource& region, ::BlockPos const& pos, ::Block const& aboveBlock) const; + MCFOLD bool $canBeFertilized(::BlockSource& region, ::BlockPos const& pos, ::Block const& aboveBlock) const; - MCAPI bool $mayPlace(::BlockSource& region, ::BlockPos const& pos) const; + MCFOLD bool $mayPlace(::BlockSource& region, ::BlockPos const& pos) const; - MCAPI ::BlockRenderLayer $getRenderLayer() const; + MCFOLD ::BlockRenderLayer $getRenderLayer() const; - MCAPI ::BlockRenderLayer $getRenderLayer(::Block const& block, ::BlockSource&, ::BlockPos const& pos) const; + MCFOLD ::BlockRenderLayer $getRenderLayer(::Block const& block, ::BlockSource&, ::BlockPos const& pos) const; // NOLINTEND public: diff --git a/src/mc/world/level/block/ScaffoldingBlock.h b/src/mc/world/level/block/ScaffoldingBlock.h index 2751da2535..007d45177d 100644 --- a/src/mc/world/level/block/ScaffoldingBlock.h +++ b/src/mc/world/level/block/ScaffoldingBlock.h @@ -137,9 +137,9 @@ class ScaffoldingBlock : public ::FallingBlock { MCAPI bool $canSlide(::BlockSource& region, ::BlockPos const& pos) const; - MCAPI bool $isLavaBlocking() const; + MCFOLD bool $isLavaBlocking() const; - MCAPI bool $breaksFallingBlocks(::Block const& block, ::BaseGameVersion const version) const; + MCFOLD bool $breaksFallingBlocks(::Block const& block, ::BaseGameVersion const version) const; MCAPI ::Block const& $getPlacementBlock(::Actor const& by, ::BlockPos const& pos, uchar face, ::Vec3 const& clickPos, int itemValue) diff --git a/src/mc/world/level/block/SculkBlockBehavior.h b/src/mc/world/level/block/SculkBlockBehavior.h index 3f0600f37e..b664f420cb 100644 --- a/src/mc/world/level/block/SculkBlockBehavior.h +++ b/src/mc/world/level/block/SculkBlockBehavior.h @@ -65,13 +65,13 @@ class SculkBlockBehavior : public ::SculkBehavior { public: // virtual function thunks // NOLINTBEGIN - MCAPI int $updateDecayDelay(int const) const; + MCFOLD int $updateDecayDelay(int const) const; MCAPI int $updateFacingData(int const, ::Block const&) const; - MCAPI bool $canChangeBlockOnSpread() const; + MCFOLD bool $canChangeBlockOnSpread() const; - MCAPI bool + MCFOLD bool $attemptSpreadVeins(::IBlockWorldGenAPI& target, ::BlockPos const& pos, ::Block const& block, int, ::SculkSpreader&) const; @@ -87,7 +87,7 @@ class SculkBlockBehavior : public ::SculkBehavior { bool const ) const; - MCAPI void $onDischarged(::IBlockWorldGenAPI&, ::BlockSource*, ::BlockPos const&) const; + MCFOLD void $onDischarged(::IBlockWorldGenAPI&, ::BlockSource*, ::BlockPos const&) const; // NOLINTEND public: diff --git a/src/mc/world/level/block/SculkSensorBlock.h b/src/mc/world/level/block/SculkSensorBlock.h index cfec69713b..9e481e3bc0 100644 --- a/src/mc/world/level/block/SculkSensorBlock.h +++ b/src/mc/world/level/block/SculkSensorBlock.h @@ -36,7 +36,7 @@ class SculkSensorBlock : public ::ActorBlock { virtual bool canProvideSupport(::Block const&, uchar face, ::BlockSupportType) const /*override*/; // vIndex: 134 - virtual void onStandOn(::EntityContext& entity, ::BlockPos const& pos) const /*override*/; + virtual void onStandOn(::EntityContext& entityContext, ::BlockPos const& pos) const /*override*/; // vIndex: 67 virtual void setupRedstoneComponent(::BlockSource& region, ::BlockPos const& pos) const /*override*/; @@ -90,7 +90,7 @@ class SculkSensorBlock : public ::ActorBlock { MCAPI SculkSensorBlock(::std::string const& nameId, int id, ::BlockActorType type, int activeTicks); - MCAPI void onPlace(::BlockEvents::BlockPlaceEvent& eventData) const; + MCFOLD void onPlace(::BlockEvents::BlockPlaceEvent& eventData) const; // NOLINTEND public: @@ -134,15 +134,15 @@ class SculkSensorBlock : public ::ActorBlock { public: // virtual function thunks // NOLINTBEGIN - MCAPI bool $canProvideSupport(::Block const&, uchar face, ::BlockSupportType) const; + MCFOLD bool $canProvideSupport(::Block const&, uchar face, ::BlockSupportType) const; - MCAPI void $onStandOn(::EntityContext& entity, ::BlockPos const& pos) const; + MCAPI void $onStandOn(::EntityContext& entityContext, ::BlockPos const& pos) const; MCAPI void $setupRedstoneComponent(::BlockSource& region, ::BlockPos const& pos) const; - MCAPI bool $isSignalSource() const; + MCFOLD bool $isSignalSource() const; - MCAPI bool + MCFOLD bool $shouldConnectToRedstone(::BlockSource& region, ::BlockPos const& pos, ::Direction::Type direction) const; MCAPI void $tick(::BlockSource& region, ::BlockPos const& pos, ::Random& random) const; @@ -153,11 +153,11 @@ class SculkSensorBlock : public ::ActorBlock { MCAPI ::Brightness $getEmissiveBrightness(::Block const& block) const; - MCAPI bool $hasComparatorSignal() const; + MCFOLD bool $hasComparatorSignal() const; MCAPI int $getComparatorSignal(::BlockSource& region, ::BlockPos const& pos, ::Block const& block, uchar dir) const; - MCAPI bool $liquidCanFlowIntoFromDirection( + MCFOLD bool $liquidCanFlowIntoFromDirection( uchar flowIntoFacing, ::std::function<::Block const&(::BlockPos const&)> const& getBlock, ::BlockPos const& pos diff --git a/src/mc/world/level/block/SculkShriekerBlock.h b/src/mc/world/level/block/SculkShriekerBlock.h index bc959dd381..56a9d678a0 100644 --- a/src/mc/world/level/block/SculkShriekerBlock.h +++ b/src/mc/world/level/block/SculkShriekerBlock.h @@ -56,7 +56,7 @@ class SculkShriekerBlock : public ::ActorBlock { // NOLINTBEGIN MCAPI SculkShriekerBlock(::std::string const& nameId, int id, ::Material const& material); - MCAPI void onPlace(::BlockEvents::BlockPlaceEvent& eventData) const; + MCFOLD void onPlace(::BlockEvents::BlockPlaceEvent& eventData) const; // NOLINTEND public: @@ -82,9 +82,9 @@ class SculkShriekerBlock : public ::ActorBlock { MCAPI void $tick(::BlockSource& region, ::BlockPos const& pos, ::Random& random) const; - MCAPI void $setupRedstoneComponent(::BlockSource& region, ::BlockPos const& pos) const; + MCFOLD void $setupRedstoneComponent(::BlockSource& region, ::BlockPos const& pos) const; - MCAPI bool $canProvideSupport(::Block const&, uchar face, ::BlockSupportType) const; + MCFOLD bool $canProvideSupport(::Block const&, uchar face, ::BlockSupportType) const; MCAPI int $getVariant(::Block const& block) const; diff --git a/src/mc/world/level/block/SculkSpreader.h b/src/mc/world/level/block/SculkSpreader.h index 5790e39a74..ae6ef8669e 100644 --- a/src/mc/world/level/block/SculkSpreader.h +++ b/src/mc/world/level/block/SculkSpreader.h @@ -48,7 +48,7 @@ class SculkSpreader { MCAPI ::BlockPos getCursorPosition(int index) const; - MCAPI int getMaxCharge() const; + MCFOLD int getMaxCharge() const; MCAPI int getNumberOfCursors() const; diff --git a/src/mc/world/level/block/SculkVeinBlock.h b/src/mc/world/level/block/SculkVeinBlock.h index c208e14c0e..9ec4be1337 100644 --- a/src/mc/world/level/block/SculkVeinBlock.h +++ b/src/mc/world/level/block/SculkVeinBlock.h @@ -53,7 +53,7 @@ class SculkVeinBlock : public ::MultifaceBlock { // NOLINTBEGIN MCAPI ::ItemInstance $asItemInstance(::Block const& block, ::BlockActor const*) const; - MCAPI bool $checkIsPathable(::Actor& entity, ::BlockPos const& lastPathPos, ::BlockPos const& pathPos) const; + MCFOLD bool $checkIsPathable(::Actor& entity, ::BlockPos const& lastPathPos, ::BlockPos const& pathPos) const; // NOLINTEND public: diff --git a/src/mc/world/level/block/SculkVeinBlockBehavior.h b/src/mc/world/level/block/SculkVeinBlockBehavior.h index 20e7999e23..0200521721 100644 --- a/src/mc/world/level/block/SculkVeinBlockBehavior.h +++ b/src/mc/world/level/block/SculkVeinBlockBehavior.h @@ -69,13 +69,13 @@ class SculkVeinBlockBehavior : public ::SculkBehavior { public: // virtual function thunks // NOLINTBEGIN - MCAPI int $updateDecayDelay(int const) const; + MCFOLD int $updateDecayDelay(int const) const; MCAPI int $updateFacingData(int const, ::Block const& block) const; - MCAPI bool $canChangeBlockOnSpread() const; + MCFOLD bool $canChangeBlockOnSpread() const; - MCAPI bool + MCFOLD bool $attemptSpreadVeins(::IBlockWorldGenAPI& target, ::BlockPos const& pos, ::Block const& block, int, ::SculkSpreader&) const; diff --git a/src/mc/world/level/block/SculkVeinMultifaceSpreader.h b/src/mc/world/level/block/SculkVeinMultifaceSpreader.h index a69ff8f6c6..b0ab9dbeb5 100644 --- a/src/mc/world/level/block/SculkVeinMultifaceSpreader.h +++ b/src/mc/world/level/block/SculkVeinMultifaceSpreader.h @@ -37,7 +37,7 @@ class SculkVeinMultifaceSpreader : public ::MultifaceSpreader { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND public: diff --git a/src/mc/world/level/block/SeaPickleBlock.h b/src/mc/world/level/block/SeaPickleBlock.h index ced873dd75..e60d2f530e 100644 --- a/src/mc/world/level/block/SeaPickleBlock.h +++ b/src/mc/world/level/block/SeaPickleBlock.h @@ -111,30 +111,30 @@ class SeaPickleBlock : public ::BushBlock { MCAPI void $randomTick(::BlockSource& region, ::BlockPos const& pos, ::Random& random) const; - MCAPI ::std::string $buildDescriptionId(::Block const&) const; + MCFOLD ::std::string $buildDescriptionId(::Block const&) const; - MCAPI ::AABB + MCFOLD ::AABB $getCollisionShape(::Block const&, ::IConstBlockSource const&, ::BlockPos const&, ::optional_ref<::GetCollisionShapeInterface const>) const; - MCAPI bool $canSurvive(::BlockSource& region, ::BlockPos const& pos) const; + MCFOLD bool $canSurvive(::BlockSource& region, ::BlockPos const& pos) const; MCAPI bool $onFertilized(::BlockSource& region, ::BlockPos const& pos, ::Actor* actor, ::FertilizerType fType) const; - MCAPI bool $mayConsumeFertilizer(::BlockSource& region) const; + MCFOLD bool $mayConsumeFertilizer(::BlockSource& region) const; - MCAPI bool $canBeFertilized(::BlockSource& region, ::BlockPos const& pos, ::Block const& aboveBlock) const; + MCFOLD bool $canBeFertilized(::BlockSource& region, ::BlockPos const& pos, ::Block const& aboveBlock) const; MCAPI ::Brightness $getLightEmission(::Block const& block) const; - MCAPI bool $hasVariableLighting() const; + MCFOLD bool $hasVariableLighting() const; - MCAPI bool $canProvideSupport(::Block const&, uchar, ::BlockSupportType) const; + MCFOLD bool $canProvideSupport(::Block const&, uchar, ::BlockSupportType) const; MCAPI bool $mayPlaceOn(::BlockSource& region, ::BlockPos const& pos) const; - MCAPI void $checkAlive(::BlockSource& region, ::BlockPos const& pos) const; + MCFOLD void $checkAlive(::BlockSource& region, ::BlockPos const& pos) const; MCAPI void $_addHardCodedBlockComponents(::Experiments const&); // NOLINTEND diff --git a/src/mc/world/level/block/SeagrassBlock.h b/src/mc/world/level/block/SeagrassBlock.h index d47c63c309..e8e47fd45d 100644 --- a/src/mc/world/level/block/SeagrassBlock.h +++ b/src/mc/world/level/block/SeagrassBlock.h @@ -104,21 +104,21 @@ class SeagrassBlock : public ::BlockLegacy { MCAPI bool $onFertilized(::BlockSource& region, ::BlockPos const& pos, ::Actor* actor, ::FertilizerType fType) const; - MCAPI bool $mayConsumeFertilizer(::BlockSource& region) const; + MCFOLD bool $mayConsumeFertilizer(::BlockSource& region) const; - MCAPI bool $canBeFertilized(::BlockSource& region, ::BlockPos const& pos, ::Block const& aboveBlock) const; + MCFOLD bool $canBeFertilized(::BlockSource& region, ::BlockPos const& pos, ::Block const& aboveBlock) const; MCAPI bool $canSurvive(::BlockSource& region, ::BlockPos const& pos) const; - MCAPI void $tick(::BlockSource& region, ::BlockPos const& pos, ::Random& random) const; + MCFOLD void $tick(::BlockSource& region, ::BlockPos const& pos, ::Random& random) const; MCAPI ::std::string $buildDescriptionId(::Block const&) const; - MCAPI ::AABB + MCFOLD ::AABB $getCollisionShape(::Block const&, ::IConstBlockSource const&, ::BlockPos const&, ::optional_ref<::GetCollisionShapeInterface const>) const; - MCAPI bool $isValidAuxValue(int value) const; + MCFOLD bool $isValidAuxValue(int value) const; MCAPI void $_addHardCodedBlockComponents(::Experiments const&); // NOLINTEND diff --git a/src/mc/world/level/block/SeasonsAgnosticLeavesBlock.h b/src/mc/world/level/block/SeasonsAgnosticLeavesBlock.h index 550aaa341e..066704ceab 100644 --- a/src/mc/world/level/block/SeasonsAgnosticLeavesBlock.h +++ b/src/mc/world/level/block/SeasonsAgnosticLeavesBlock.h @@ -66,7 +66,7 @@ class SeasonsAgnosticLeavesBlock : public ::LeavesBlock { public: // virtual function thunks // NOLINTBEGIN - MCAPI ::mce::Color $getMapColor(::BlockSource& region, ::BlockPos const& pos, ::Block const& block) const; + MCFOLD ::mce::Color $getMapColor(::BlockSource& region, ::BlockPos const& pos, ::Block const& block) const; MCAPI ::BlockRenderLayer $getRenderLayer(::Block const&, ::BlockSource& region, ::BlockPos const& pos) const; diff --git a/src/mc/world/level/block/ShulkerBoxBlock.h b/src/mc/world/level/block/ShulkerBoxBlock.h index 64f8b34bde..b76d298fad 100644 --- a/src/mc/world/level/block/ShulkerBoxBlock.h +++ b/src/mc/world/level/block/ShulkerBoxBlock.h @@ -115,7 +115,7 @@ class ShulkerBoxBlock : public ::ChestBlock { MCAPI bool $breaksFallingBlocks(::Block const& block, ::BaseGameVersion const version) const; - MCAPI bool $canProvideSupport(::Block const&, uchar, ::BlockSupportType) const; + MCFOLD bool $canProvideSupport(::Block const&, uchar, ::BlockSupportType) const; // NOLINTEND public: diff --git a/src/mc/world/level/block/SignBlock.h b/src/mc/world/level/block/SignBlock.h index 596eccf3ca..a50b78d3af 100644 --- a/src/mc/world/level/block/SignBlock.h +++ b/src/mc/world/level/block/SignBlock.h @@ -171,25 +171,25 @@ class SignBlock : public ::ActorBlock { // NOLINTBEGIN MCAPI ::AABB const& $getVisualShape(::Block const& block, ::AABB& bufferAABB) const; - MCAPI ::AABB + MCFOLD ::AABB $getCollisionShape(::Block const&, ::IConstBlockSource const&, ::BlockPos const&, ::optional_ref<::GetCollisionShapeInterface const>) const; - MCAPI bool $checkIsPathable(::Actor& entity, ::BlockPos const& lastPathPos, ::BlockPos const& pathPos) const; + MCFOLD bool $checkIsPathable(::Actor& entity, ::BlockPos const& lastPathPos, ::BlockPos const& pathPos) const; - MCAPI ::ItemInstance $asItemInstance(::Block const&, ::BlockActor const*) const; + MCFOLD ::ItemInstance $asItemInstance(::Block const&, ::BlockActor const*) const; MCAPI bool $mayPlace(::BlockSource& region, ::BlockPos const& pos, uchar face) const; MCAPI void $neighborChanged(::BlockSource& region, ::BlockPos const& pos, ::BlockPos const& neighborPos) const; - MCAPI void $tick(::BlockSource& region, ::BlockPos const& pos, ::Random& random) const; + MCFOLD void $tick(::BlockSource& region, ::BlockPos const& pos, ::Random& random) const; MCAPI bool $canSurvive(::BlockSource& region, ::BlockPos const& pos) const; MCAPI bool $use(::Player& player, ::BlockPos const& pos, uchar face) const; - MCAPI bool $isInteractiveBlock() const; + MCFOLD bool $isInteractiveBlock() const; MCAPI float $getYRotationInDegrees(::Block const& block) const; diff --git a/src/mc/world/level/block/SimpleBlockVolume.h b/src/mc/world/level/block/SimpleBlockVolume.h index 110f4b411f..3b4efb1e06 100644 --- a/src/mc/world/level/block/SimpleBlockVolume.h +++ b/src/mc/world/level/block/SimpleBlockVolume.h @@ -92,7 +92,7 @@ class SimpleBlockVolume : public ::BlockVolumeBase { MCAPI ::SimpleBlockVolumeIterator begin() const; - MCAPI bool contains(::BlockPos const& pos) const; + MCFOLD bool contains(::BlockPos const& pos) const; MCAPI bool doesAreaTouchFaces(::BlockPos const& min, ::BlockPos const& max) const; @@ -126,11 +126,11 @@ class SimpleBlockVolume : public ::BlockVolumeBase { public: // constructor thunks // NOLINTBEGIN - MCAPI void* $ctor(::SimpleBlockVolume&& volume); + MCFOLD void* $ctor(::SimpleBlockVolume&& volume); MCAPI void* $ctor(::SimpleBlockVolume const&); - MCAPI void* $ctor(::BlockPos&& from, ::BlockPos&& to); + MCFOLD void* $ctor(::BlockPos&& from, ::BlockPos&& to); MCAPI void* $ctor(::BlockPos const&, ::BlockPos const&); // NOLINTEND @@ -154,7 +154,7 @@ class SimpleBlockVolume : public ::BlockVolumeBase { MCAPI int $getCapacity() const; - MCAPI bool $isInside(::BlockPos const& pos) const; + MCFOLD bool $isInside(::BlockPos const& pos) const; MCAPI void $translate(::BlockPos const& delta); diff --git a/src/mc/world/level/block/SimpleBlockVolumeIterator.h b/src/mc/world/level/block/SimpleBlockVolumeIterator.h index 9fb9a1119b..18a8c87a68 100644 --- a/src/mc/world/level/block/SimpleBlockVolumeIterator.h +++ b/src/mc/world/level/block/SimpleBlockVolumeIterator.h @@ -42,7 +42,7 @@ class SimpleBlockVolumeIterator : public ::BaseBlockLocationIterator { public: // virtual function thunks // NOLINTBEGIN - MCAPI bool $isValid() const; + MCFOLD bool $isValid() const; // NOLINTEND public: diff --git a/src/mc/world/level/block/SkullBlock.h b/src/mc/world/level/block/SkullBlock.h index 20fb9a529f..60dd0032ed 100644 --- a/src/mc/world/level/block/SkullBlock.h +++ b/src/mc/world/level/block/SkullBlock.h @@ -103,7 +103,7 @@ class SkullBlock : public ::ActorBlock { MCAPI ::AABB const& $getVisualShape(::Block const& block, ::AABB& bufferAABB) const; - MCAPI bool $mayPlace(::BlockSource& region, ::BlockPos const& pos) const; + MCFOLD bool $mayPlace(::BlockSource& region, ::BlockPos const& pos) const; MCAPI ::Block const& $getPlacementBlock(::Actor const& by, ::BlockPos const& pos, uchar face, ::Vec3 const& clickPos, int itemValue) diff --git a/src/mc/world/level/block/SlabBlock.h b/src/mc/world/level/block/SlabBlock.h index 34ec1b8501..5bc82af287 100644 --- a/src/mc/world/level/block/SlabBlock.h +++ b/src/mc/world/level/block/SlabBlock.h @@ -113,7 +113,7 @@ class SlabBlock : public ::BlockLegacy { public: // virtual function thunks // NOLINTBEGIN - MCAPI bool $isSlabBlock() const; + MCFOLD bool $isSlabBlock() const; MCAPI ::AABB const& $getVisualShape(::Block const& block, ::AABB& bufferAABB) const; diff --git a/src/mc/world/level/block/SlimeBlock.h b/src/mc/world/level/block/SlimeBlock.h index 71aab33965..0244895231 100644 --- a/src/mc/world/level/block/SlimeBlock.h +++ b/src/mc/world/level/block/SlimeBlock.h @@ -44,7 +44,7 @@ class SlimeBlock : public ::BlockLegacy { // NOLINTBEGIN MCAPI SlimeBlock(::std::string const& nameId, int id, ::Material const& material); - MCAPI void onFallOn(::BlockEvents::BlockEntityFallOnEvent& eventData) const; + MCFOLD void onFallOn(::BlockEvents::BlockEntityFallOnEvent& eventData) const; // NOLINTEND public: @@ -64,13 +64,13 @@ class SlimeBlock : public ::BlockLegacy { // NOLINTBEGIN MCAPI void $_addHardCodedBlockComponents(::Experiments const&); - MCAPI void $onStandOn(::EntityContext& entity, ::BlockPos const& pos) const; + MCFOLD void $onStandOn(::EntityContext& entity, ::BlockPos const& pos) const; MCAPI void $updateEntityAfterFallOn(::BlockPos const& pos, ::UpdateEntityAfterFallOnInterface& entity) const; - MCAPI bool $isBounceBlock() const; + MCFOLD bool $isBounceBlock() const; - MCAPI int $getExtraRenderLayers() const; + MCFOLD int $getExtraRenderLayers() const; // NOLINTEND public: diff --git a/src/mc/world/level/block/SmallDripleafBlock.h b/src/mc/world/level/block/SmallDripleafBlock.h index e332ee19c9..07589a1a00 100644 --- a/src/mc/world/level/block/SmallDripleafBlock.h +++ b/src/mc/world/level/block/SmallDripleafBlock.h @@ -120,27 +120,27 @@ class SmallDripleafBlock : public ::BushBlock { MCAPI bool $canSurvive(::BlockSource& region, ::BlockPos const& pos) const; - MCAPI ::AABB + MCFOLD ::AABB $getCollisionShape(::Block const&, ::IConstBlockSource const&, ::BlockPos const&, ::optional_ref<::GetCollisionShapeInterface const>) const; - MCAPI ::AABB const& + MCFOLD ::AABB const& $getOutline(::Block const&, ::IConstBlockSource const&, ::BlockPos const& pos, ::AABB& bufferValue) const; MCAPI bool $onFertilized(::BlockSource& region, ::BlockPos const& pos, ::Actor* actor, ::FertilizerType fType) const; - MCAPI bool $canBeFertilized(::BlockSource& region, ::BlockPos const& pos, ::Block const& aboveBlock) const; + MCFOLD bool $canBeFertilized(::BlockSource& region, ::BlockPos const& pos, ::Block const& aboveBlock) const; - MCAPI void $neighborChanged(::BlockSource& region, ::BlockPos const& pos, ::BlockPos const& neighborPos) const; + MCFOLD void $neighborChanged(::BlockSource& region, ::BlockPos const& pos, ::BlockPos const& neighborPos) const; MCAPI ::Block const& $getPlacementBlock(::Actor const& by, ::BlockPos const& pos, uchar face, ::Vec3 const& clickPos, int itemValue) const; - MCAPI void $tick(::BlockSource& region, ::BlockPos const& pos, ::Random& random) const; + MCFOLD void $tick(::BlockSource& region, ::BlockPos const& pos, ::Random& random) const; - MCAPI bool $isLavaBlocking() const; + MCFOLD bool $isLavaBlocking() const; MCAPI void $_addHardCodedBlockComponents(::Experiments const&); // NOLINTEND diff --git a/src/mc/world/level/block/SmithingTableBlock.h b/src/mc/world/level/block/SmithingTableBlock.h index 2a8f1eda4f..819b3f24df 100644 --- a/src/mc/world/level/block/SmithingTableBlock.h +++ b/src/mc/world/level/block/SmithingTableBlock.h @@ -50,11 +50,11 @@ class SmithingTableBlock : public ::BlockLegacy { public: // virtual function thunks // NOLINTBEGIN - MCAPI bool $use(::Player& player, ::BlockPos const& pos, uchar face) const; + MCFOLD bool $use(::Player& player, ::BlockPos const& pos, uchar face) const; - MCAPI bool $isCraftingBlock() const; + MCFOLD bool $isCraftingBlock() const; - MCAPI bool $isInteractiveBlock() const; + MCFOLD bool $isInteractiveBlock() const; // NOLINTEND public: diff --git a/src/mc/world/level/block/SnifferEggBlock.h b/src/mc/world/level/block/SnifferEggBlock.h index 92887ee295..0aba17776a 100644 --- a/src/mc/world/level/block/SnifferEggBlock.h +++ b/src/mc/world/level/block/SnifferEggBlock.h @@ -75,13 +75,13 @@ class SnifferEggBlock : public ::BlockLegacy { public: // virtual function thunks // NOLINTBEGIN - MCAPI bool $mayPlace(::BlockSource& region, ::BlockPos const& pos) const; + MCFOLD bool $mayPlace(::BlockSource& region, ::BlockPos const& pos) const; MCAPI void $tick(::BlockSource& region, ::BlockPos const& pos, ::Random& random) const; - MCAPI bool $checkIsPathable(::Actor& entity, ::BlockPos const& lastPathPos, ::BlockPos const& pathPos) const; + MCFOLD bool $checkIsPathable(::Actor& entity, ::BlockPos const& lastPathPos, ::BlockPos const& pathPos) const; - MCAPI ::std::string $buildDescriptionId(::Block const&) const; + MCFOLD ::std::string $buildDescriptionId(::Block const&) const; MCAPI int $getVariant(::Block const& block) const; diff --git a/src/mc/world/level/block/SoulFireBlock.h b/src/mc/world/level/block/SoulFireBlock.h index 747db0607e..4d42619bdd 100644 --- a/src/mc/world/level/block/SoulFireBlock.h +++ b/src/mc/world/level/block/SoulFireBlock.h @@ -92,18 +92,18 @@ class SoulFireBlock : public ::BlockLegacy { public: // virtual function thunks // NOLINTBEGIN - MCAPI ::AABB + MCFOLD ::AABB $getCollisionShape(::Block const&, ::IConstBlockSource const&, ::BlockPos const&, ::optional_ref<::GetCollisionShapeInterface const>) const; - MCAPI ::AABB const& + MCFOLD ::AABB const& $getOutline(::Block const&, ::IConstBlockSource const&, ::BlockPos const&, ::AABB& bufferValue) const; MCAPI void $entityInside(::BlockSource&, ::BlockPos const&, ::Actor& entity) const; - MCAPI bool $mayPick() const; + MCFOLD bool $mayPick() const; - MCAPI bool $mayPlace(::BlockSource& region, ::BlockPos const& pos) const; + MCFOLD bool $mayPlace(::BlockSource& region, ::BlockPos const& pos) const; MCAPI bool $canSurvive(::BlockSource& region, ::BlockPos const& pos) const; @@ -111,7 +111,7 @@ class SoulFireBlock : public ::BlockLegacy { MCAPI void $animateTickBedrockLegacy(::BlockSource& region, ::BlockPos const& pos, ::Random& random) const; - MCAPI void $neighborChanged(::BlockSource& region, ::BlockPos const& pos, ::BlockPos const& neighborPos) const; + MCFOLD void $neighborChanged(::BlockSource& region, ::BlockPos const& pos, ::BlockPos const& neighborPos) const; MCAPI void $_addHardCodedBlockComponents(::Experiments const&); // NOLINTEND diff --git a/src/mc/world/level/block/SoulSandBlock.h b/src/mc/world/level/block/SoulSandBlock.h index d8e32226ad..18b921e30c 100644 --- a/src/mc/world/level/block/SoulSandBlock.h +++ b/src/mc/world/level/block/SoulSandBlock.h @@ -88,9 +88,9 @@ class SoulSandBlock : public ::BlockLegacy { public: // virtual function thunks // NOLINTBEGIN - MCAPI void $randomTick(::BlockSource& region, ::BlockPos const& pos, ::Random& random) const; + MCFOLD void $randomTick(::BlockSource& region, ::BlockPos const& pos, ::Random& random) const; - MCAPI void $tick(::BlockSource& region, ::BlockPos const& pos, ::Random& random) const; + MCFOLD void $tick(::BlockSource& region, ::BlockPos const& pos, ::Random& random) const; MCAPI void $neighborChanged(::BlockSource& region, ::BlockPos const& pos, ::BlockPos const& neighborPos) const; @@ -100,7 +100,7 @@ class SoulSandBlock : public ::BlockLegacy { $getCollisionShape(::Block const&, ::IConstBlockSource const&, ::BlockPos const& pos, ::optional_ref<::GetCollisionShapeInterface const>) const; - MCAPI bool $getCollisionShapeForCamera( + MCFOLD bool $getCollisionShapeForCamera( ::AABB& outAABB, ::Block const& block, ::IConstBlockSource const& region, diff --git a/src/mc/world/level/block/SporeBlossomBlock.h b/src/mc/world/level/block/SporeBlossomBlock.h index f35a231433..2f751dadba 100644 --- a/src/mc/world/level/block/SporeBlossomBlock.h +++ b/src/mc/world/level/block/SporeBlossomBlock.h @@ -68,17 +68,17 @@ class SporeBlossomBlock : public ::BlockLegacy { public: // virtual function thunks // NOLINTBEGIN - MCAPI ::AABB + MCFOLD ::AABB $getCollisionShape(::Block const&, ::IConstBlockSource const&, ::BlockPos const&, ::optional_ref<::GetCollisionShapeInterface const>) const; - MCAPI bool $mayPlace(::BlockSource& region, ::BlockPos const& pos) const; + MCFOLD bool $mayPlace(::BlockSource& region, ::BlockPos const& pos) const; - MCAPI void $neighborChanged(::BlockSource& region, ::BlockPos const& pos, ::BlockPos const& neighborPos) const; + MCFOLD void $neighborChanged(::BlockSource& region, ::BlockPos const& pos, ::BlockPos const& neighborPos) const; - MCAPI bool $canSurvive(::BlockSource& region, ::BlockPos const& pos) const; + MCFOLD bool $canSurvive(::BlockSource& region, ::BlockPos const& pos) const; - MCAPI void $tick(::BlockSource& region, ::BlockPos const& pos, ::Random& random) const; + MCFOLD void $tick(::BlockSource& region, ::BlockPos const& pos, ::Random& random) const; MCAPI void $animateTickBedrockLegacy(::BlockSource& region, ::BlockPos const& pos, ::Random& random) const; // NOLINTEND diff --git a/src/mc/world/level/block/StainedGlassBlock.h b/src/mc/world/level/block/StainedGlassBlock.h index 56705c747f..996724f3a0 100644 --- a/src/mc/world/level/block/StainedGlassBlock.h +++ b/src/mc/world/level/block/StainedGlassBlock.h @@ -70,7 +70,7 @@ class StainedGlassBlock : public ::BlockLegacy { public: // virtual function thunks // NOLINTBEGIN - MCAPI bool $canConnect(::Block const& otherBlock, uchar toOther, ::Block const& thisBlock) const; + MCFOLD bool $canConnect(::Block const& otherBlock, uchar toOther, ::Block const& thisBlock) const; MCAPI bool $getCollisionShapeForCamera( ::AABB& outAABB, diff --git a/src/mc/world/level/block/StairBlock.h b/src/mc/world/level/block/StairBlock.h index 783d016241..9745a61984 100644 --- a/src/mc/world/level/block/StairBlock.h +++ b/src/mc/world/level/block/StairBlock.h @@ -195,13 +195,13 @@ class StairBlock : public ::BlockLegacy { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND public: // virtual function thunks // NOLINTBEGIN - MCAPI ::AABB const& + MCFOLD ::AABB const& $getOutline(::Block const&, ::IConstBlockSource const&, ::BlockPos const& pos, ::AABB& bufferValue) const; MCAPI void $addAABBs( @@ -212,7 +212,7 @@ class StairBlock : public ::BlockLegacy { ::std::vector<::AABB>& inoutBoxes ) const; - MCAPI bool $addCollisionShapes( + MCFOLD bool $addCollisionShapes( ::Block const& block, ::IConstBlockSource const& region, ::BlockPos const& pos, @@ -253,9 +253,9 @@ class StairBlock : public ::BlockLegacy { $getPlacementBlock(::Actor const& by, ::BlockPos const& pos, uchar face, ::Vec3 const& clickPos, int itemValue) const; - MCAPI bool $isStairBlock() const; + MCFOLD bool $isStairBlock() const; - MCAPI int $getVariant(::Block const& block) const; + MCFOLD int $getVariant(::Block const& block) const; MCAPI bool $canConnect(::Block const&, uchar toOther, ::Block const& thisBlock) const; diff --git a/src/mc/world/level/block/StemBlock.h b/src/mc/world/level/block/StemBlock.h index ac1f1b37c5..4dd35356b8 100644 --- a/src/mc/world/level/block/StemBlock.h +++ b/src/mc/world/level/block/StemBlock.h @@ -86,7 +86,7 @@ class StemBlock : public ::BushBlock { public: // virtual function thunks // NOLINTBEGIN - MCAPI bool $mayPlaceOn(::BlockSource& region, ::BlockPos const& pos) const; + MCFOLD bool $mayPlaceOn(::BlockSource& region, ::BlockPos const& pos) const; MCAPI void $neighborChanged(::BlockSource& region, ::BlockPos const& pos, ::BlockPos const& neighborPos) const; @@ -99,9 +99,9 @@ class StemBlock : public ::BushBlock { MCAPI bool $onFertilized(::BlockSource& region, ::BlockPos const& pos, ::Actor* actor, ::FertilizerType fType) const; - MCAPI bool $canBeFertilized(::BlockSource& region, ::BlockPos const& pos, ::Block const& aboveBlock) const; + MCFOLD bool $canBeFertilized(::BlockSource& region, ::BlockPos const& pos, ::Block const& aboveBlock) const; - MCAPI bool $isStemBlock() const; + MCFOLD bool $isStemBlock() const; // NOLINTEND public: diff --git a/src/mc/world/level/block/StoneBlock.h b/src/mc/world/level/block/StoneBlock.h index c5f9590133..f485b66103 100644 --- a/src/mc/world/level/block/StoneBlock.h +++ b/src/mc/world/level/block/StoneBlock.h @@ -63,11 +63,11 @@ class StoneBlock : public ::BlockLegacy { // NOLINTBEGIN MCAPI void $_addHardCodedBlockComponents(::Experiments const& experiments); - MCAPI bool $canBeOriginalSurface() const; + MCFOLD bool $canBeOriginalSurface() const; - MCAPI ::ItemInstance $asItemInstance(::Block const& block, ::BlockActor const*) const; + MCFOLD ::ItemInstance $asItemInstance(::Block const& block, ::BlockActor const*) const; - MCAPI ::mce::Color $getMapColor(::BlockSource& region, ::BlockPos const& pos, ::Block const& block) const; + MCFOLD ::mce::Color $getMapColor(::BlockSource& region, ::BlockPos const& pos, ::Block const& block) const; MCAPI ::Block const* $tryGetInfested(::Block const& block) const; // NOLINTEND diff --git a/src/mc/world/level/block/StoneBricksBlock.h b/src/mc/world/level/block/StoneBricksBlock.h index 0f430813b4..7737fddec6 100644 --- a/src/mc/world/level/block/StoneBricksBlock.h +++ b/src/mc/world/level/block/StoneBricksBlock.h @@ -61,9 +61,9 @@ class StoneBricksBlock : public ::BlockLegacy { public: // virtual function thunks // NOLINTBEGIN - MCAPI ::Block const* $tryGetInfested(::Block const& block) const; + MCFOLD ::Block const* $tryGetInfested(::Block const& block) const; - MCAPI ::ItemInstance $asItemInstance(::Block const& block, ::BlockActor const*) const; + MCFOLD ::ItemInstance $asItemInstance(::Block const& block, ::BlockActor const*) const; // NOLINTEND public: diff --git a/src/mc/world/level/block/StonecutterBlock.h b/src/mc/world/level/block/StonecutterBlock.h index e1ced1a061..ad7e566e0f 100644 --- a/src/mc/world/level/block/StonecutterBlock.h +++ b/src/mc/world/level/block/StonecutterBlock.h @@ -59,13 +59,13 @@ class StonecutterBlock : public ::BlockLegacy { // NOLINTBEGIN MCAPI ::BlockLegacy& $init(); - MCAPI bool $use(::Player&, ::BlockPos const&, uchar) const; + MCFOLD bool $use(::Player&, ::BlockPos const&, uchar) const; - MCAPI bool $isCraftingBlock() const; + MCFOLD bool $isCraftingBlock() const; - MCAPI bool $isInteractiveBlock() const; + MCFOLD bool $isInteractiveBlock() const; - MCAPI bool $canProvideSupport(::Block const&, uchar face, ::BlockSupportType) const; + MCFOLD bool $canProvideSupport(::Block const&, uchar face, ::BlockSupportType) const; // NOLINTEND public: diff --git a/src/mc/world/level/block/StrippedLogBlock.h b/src/mc/world/level/block/StrippedLogBlock.h index d929aeb8e0..c9f24f9d0b 100644 --- a/src/mc/world/level/block/StrippedLogBlock.h +++ b/src/mc/world/level/block/StrippedLogBlock.h @@ -56,7 +56,7 @@ class StrippedLogBlock : public ::RotatedPillarBlock { public: // virtual function thunks // NOLINTBEGIN - MCAPI int $getVariant(::Block const& block) const; + MCFOLD int $getVariant(::Block const& block) const; MCAPI ::mce::Color $getMapColor(::BlockSource& region, ::BlockPos const& pos, ::Block const& block) const; // NOLINTEND diff --git a/src/mc/world/level/block/StructureBlock.h b/src/mc/world/level/block/StructureBlock.h index 5cc271677c..b7676bdeec 100644 --- a/src/mc/world/level/block/StructureBlock.h +++ b/src/mc/world/level/block/StructureBlock.h @@ -47,7 +47,7 @@ class StructureBlock : public ::ActorBlock { // NOLINTBEGIN MCAPI StructureBlock(::std::string const& nameId, int id); - MCAPI void onPlace(::BlockEvents::BlockPlaceEvent& eventData) const; + MCFOLD void onPlace(::BlockEvents::BlockPlaceEvent& eventData) const; // NOLINTEND public: @@ -65,11 +65,11 @@ class StructureBlock : public ::ActorBlock { public: // virtual function thunks // NOLINTBEGIN - MCAPI bool $isInteractiveBlock() const; + MCFOLD bool $isInteractiveBlock() const; - MCAPI bool $isConsumerComponent() const; + MCFOLD bool $isConsumerComponent() const; - MCAPI bool $use(::Player& player, ::BlockPos const& pos, uchar face) const; + MCFOLD bool $use(::Player& player, ::BlockPos const& pos, uchar face) const; MCAPI void $setupRedstoneComponent(::BlockSource& region, ::BlockPos const& pos) const; diff --git a/src/mc/world/level/block/StructureVoidBlock.h b/src/mc/world/level/block/StructureVoidBlock.h index b3f3347a84..47d546d731 100644 --- a/src/mc/world/level/block/StructureVoidBlock.h +++ b/src/mc/world/level/block/StructureVoidBlock.h @@ -73,15 +73,15 @@ class StructureVoidBlock : public ::BlockLegacy { public: // virtual function thunks // NOLINTBEGIN - MCAPI bool $isObstructingChests(::BlockSource& region, ::BlockPos const& pos, ::Block const& thisBlock) const; + MCFOLD bool $isObstructingChests(::BlockSource& region, ::BlockPos const& pos, ::Block const& thisBlock) const; MCAPI bool $canRenderSelectionOverlay(::BlockRenderLayer heldItemRenderLayer) const; - MCAPI ::AABB + MCFOLD ::AABB $getCollisionShape(::Block const&, ::IConstBlockSource const&, ::BlockPos const&, ::optional_ref<::GetCollisionShapeInterface const>) const; - MCAPI bool $addCollisionShapes( + MCFOLD bool $addCollisionShapes( ::Block const& block, ::IConstBlockSource const& region, ::BlockPos const& pos, @@ -90,7 +90,7 @@ class StructureVoidBlock : public ::BlockLegacy { ::optional_ref<::GetCollisionShapeInterface const> entity ) const; - MCAPI bool $checkIsPathable(::Actor& entity, ::BlockPos const& lastPathPos, ::BlockPos const& pathPos) const; + MCFOLD bool $checkIsPathable(::Actor& entity, ::BlockPos const& lastPathPos, ::BlockPos const& pathPos) const; // NOLINTEND public: diff --git a/src/mc/world/level/block/SugarCaneBlock.h b/src/mc/world/level/block/SugarCaneBlock.h index 6a501e5724..0aa3aedad6 100644 --- a/src/mc/world/level/block/SugarCaneBlock.h +++ b/src/mc/world/level/block/SugarCaneBlock.h @@ -98,25 +98,25 @@ class SugarCaneBlock : public ::BlockLegacy { MCAPI bool $mayPlace(::BlockSource& region, ::BlockPos const& pos) const; - MCAPI void $neighborChanged(::BlockSource& region, ::BlockPos const& pos, ::BlockPos const& neighborPos) const; + MCFOLD void $neighborChanged(::BlockSource& region, ::BlockPos const& pos, ::BlockPos const& neighborPos) const; MCAPI bool $onFertilized(::BlockSource& region, ::BlockPos const& pos, ::Actor* actor, ::FertilizerType fType) const; - MCAPI bool $canBeFertilized(::BlockSource& region, ::BlockPos const& pos, ::Block const& aboveBlock) const; + MCFOLD bool $canBeFertilized(::BlockSource& region, ::BlockPos const& pos, ::Block const& aboveBlock) const; - MCAPI bool $canSurvive(::BlockSource& region, ::BlockPos const& pos) const; + MCFOLD bool $canSurvive(::BlockSource& region, ::BlockPos const& pos) const; - MCAPI ::AABB + MCFOLD ::AABB $getCollisionShape(::Block const&, ::IConstBlockSource const&, ::BlockPos const&, ::optional_ref<::GetCollisionShapeInterface const>) const; - MCAPI ::AABB const& + MCFOLD ::AABB const& $getOutline(::Block const&, ::IConstBlockSource const&, ::BlockPos const& pos, ::AABB& bufferValue) const; MCAPI ::ItemInstance $asItemInstance(::Block const&, ::BlockActor const*) const; - MCAPI void $onGraphicsModeChanged(::BlockGraphicsModeChangeContext const& context); + MCFOLD void $onGraphicsModeChanged(::BlockGraphicsModeChangeContext const& context); // NOLINTEND public: diff --git a/src/mc/world/level/block/SweetBerryBushBlock.h b/src/mc/world/level/block/SweetBerryBushBlock.h index 56256d7a35..6b3ae4ac19 100644 --- a/src/mc/world/level/block/SweetBerryBushBlock.h +++ b/src/mc/world/level/block/SweetBerryBushBlock.h @@ -142,25 +142,25 @@ class SweetBerryBushBlock : public ::BushBlock { public: // virtual function thunks // NOLINTBEGIN - MCAPI bool $mayPlace(::BlockSource& region, ::BlockPos const& pos) const; + MCFOLD bool $mayPlace(::BlockSource& region, ::BlockPos const& pos) const; - MCAPI bool $canSurvive(::BlockSource& region, ::BlockPos const& pos) const; + MCFOLD bool $canSurvive(::BlockSource& region, ::BlockPos const& pos) const; MCAPI void $randomTick(::BlockSource& region, ::BlockPos const& pos, ::Random& random) const; MCAPI void $entityInside(::BlockSource& region, ::BlockPos const& pos, ::Actor& entity) const; - MCAPI bool $isInteractiveBlock() const; + MCFOLD bool $isInteractiveBlock() const; MCAPI bool $use(::Player& player, ::BlockPos const& pos, uchar) const; MCAPI int $getVariant(::Block const& block) const; - MCAPI ::BlockRenderLayer $getRenderLayer() const; + MCFOLD ::BlockRenderLayer $getRenderLayer() const; - MCAPI ::BlockRenderLayer $getRenderLayer(::Block const&, ::BlockSource&, ::BlockPos const&) const; + MCFOLD ::BlockRenderLayer $getRenderLayer(::Block const&, ::BlockSource&, ::BlockPos const&) const; - MCAPI ::AABB + MCFOLD ::AABB $getCollisionShape(::Block const&, ::IConstBlockSource const&, ::BlockPos const&, ::optional_ref<::GetCollisionShapeInterface const>) const; @@ -188,7 +188,7 @@ class SweetBerryBushBlock : public ::BushBlock { MCAPI bool $onFertilized(::BlockSource& region, ::BlockPos const& pos, ::Actor* actor, ::FertilizerType fType) const; - MCAPI bool $canBeFertilized(::BlockSource& region, ::BlockPos const& pos, ::Block const& aboveBlock) const; + MCFOLD bool $canBeFertilized(::BlockSource& region, ::BlockPos const& pos, ::Block const& aboveBlock) const; // NOLINTEND public: diff --git a/src/mc/world/level/block/TallGrassBlock.h b/src/mc/world/level/block/TallGrassBlock.h index e65170ccdd..efeb02b8a2 100644 --- a/src/mc/world/level/block/TallGrassBlock.h +++ b/src/mc/world/level/block/TallGrassBlock.h @@ -95,33 +95,33 @@ class TallGrassBlock : public ::BushBlock { public: // virtual function thunks // NOLINTBEGIN - MCAPI ::mce::Color $getMapColor(::BlockSource& region, ::BlockPos const& pos, ::Block const&) const; + MCFOLD ::mce::Color $getMapColor(::BlockSource& region, ::BlockPos const& pos, ::Block const&) const; - MCAPI ::ItemInstance $asItemInstance(::Block const& block, ::BlockActor const*) const; + MCFOLD ::ItemInstance $asItemInstance(::Block const& block, ::BlockActor const*) const; MCAPI ::Vec3 $randomlyModifyPosition(::BlockPos const& pos) const; - MCAPI ::AABB + MCFOLD ::AABB $getCollisionShape(::Block const&, ::IConstBlockSource const&, ::BlockPos const&, ::optional_ref<::GetCollisionShapeInterface const>) const; - MCAPI ::AABB const& + MCFOLD ::AABB const& $getOutline(::Block const& block, ::IConstBlockSource const&, ::BlockPos const& pos, ::AABB& bufferValue) const; - MCAPI bool $canSurvive(::BlockSource& region, ::BlockPos const& pos) const; + MCFOLD bool $canSurvive(::BlockSource& region, ::BlockPos const& pos) const; MCAPI bool $onFertilized(::BlockSource& region, ::BlockPos const& pos, ::Actor* actor, ::FertilizerType fType) const; MCAPI bool $mayConsumeFertilizer(::BlockSource& region) const; - MCAPI bool $canBeFertilized(::BlockSource& region, ::BlockPos const& pos, ::Block const& aboveBlock) const; + MCFOLD bool $canBeFertilized(::BlockSource& region, ::BlockPos const& pos, ::Block const& aboveBlock) const; - MCAPI bool $mayPlace(::BlockSource& region, ::BlockPos const& pos) const; + MCFOLD bool $mayPlace(::BlockSource& region, ::BlockPos const& pos) const; - MCAPI ::BlockRenderLayer $getRenderLayer() const; + MCFOLD ::BlockRenderLayer $getRenderLayer() const; - MCAPI ::BlockRenderLayer $getRenderLayer(::Block const&, ::BlockSource&, ::BlockPos const&) const; + MCFOLD ::BlockRenderLayer $getRenderLayer(::Block const&, ::BlockSource&, ::BlockPos const&) const; // NOLINTEND public: diff --git a/src/mc/world/level/block/TargetBlock.h b/src/mc/world/level/block/TargetBlock.h index a1eae3a675..f4459c52e1 100644 --- a/src/mc/world/level/block/TargetBlock.h +++ b/src/mc/world/level/block/TargetBlock.h @@ -58,7 +58,7 @@ class TargetBlock : public ::BlockLegacy { ::Actor const& projectile ) const; - MCAPI void onPlace(::BlockEvents::BlockPlaceEvent& eventData) const; + MCFOLD void onPlace(::BlockEvents::BlockPlaceEvent& eventData) const; // NOLINTEND public: @@ -78,9 +78,9 @@ class TargetBlock : public ::BlockLegacy { // NOLINTBEGIN MCAPI void $setupRedstoneComponent(::BlockSource& region, ::BlockPos const& pos) const; - MCAPI bool $isSignalSource() const; + MCFOLD bool $isSignalSource() const; - MCAPI bool + MCFOLD bool $shouldConnectToRedstone(::BlockSource& region, ::BlockPos const& pos, ::Direction::Type direction) const; MCAPI void $onProjectileHit(::BlockSource& region, ::BlockPos const& pos, ::Actor const& projectile) const; diff --git a/src/mc/world/level/block/ThinFenceBlock.h b/src/mc/world/level/block/ThinFenceBlock.h index 0f71f7efc4..68f47d2030 100644 --- a/src/mc/world/level/block/ThinFenceBlock.h +++ b/src/mc/world/level/block/ThinFenceBlock.h @@ -142,7 +142,7 @@ class ThinFenceBlock : public ::BlockLegacy { ::std::vector<::AABB>& inoutBoxes ) const; - MCAPI bool $addCollisionShapes( + MCFOLD bool $addCollisionShapes( ::Block const& block, ::IConstBlockSource const& region, ::BlockPos const& pos, @@ -169,17 +169,17 @@ class ThinFenceBlock : public ::BlockLegacy { ::BlockPos const& pos ) const; - MCAPI ::AABB const& + MCFOLD ::AABB const& $getOutline(::Block const& block, ::IConstBlockSource const& region, ::BlockPos const& pos, ::AABB& bufferValue) const; - MCAPI bool $canProvideSupport(::Block const&, uchar face, ::BlockSupportType type) const; + MCFOLD bool $canProvideSupport(::Block const&, uchar face, ::BlockSupportType type) const; - MCAPI bool $canConnect(::Block const& otherBlock, uchar, ::Block const&) const; + MCFOLD bool $canConnect(::Block const& otherBlock, uchar, ::Block const&) const; - MCAPI bool $isThinFenceBlock() const; + MCFOLD bool $isThinFenceBlock() const; - MCAPI bool + MCFOLD bool $getLiquidClipVolume(::Block const& block, ::BlockSource& region, ::BlockPos const& pos, ::AABB& includeBox) const; MCAPI bool $breaksFallingBlocks(::Block const& block, ::BaseGameVersion const version) const; diff --git a/src/mc/world/level/block/TntBlock.h b/src/mc/world/level/block/TntBlock.h index e16a145820..8c18f63c3a 100644 --- a/src/mc/world/level/block/TntBlock.h +++ b/src/mc/world/level/block/TntBlock.h @@ -63,7 +63,7 @@ class TntBlock : public ::BlockLegacy { MCAPI bool _shouldAllowUnderwater(::Block const& block) const; - MCAPI void onPlace(::BlockEvents::BlockPlaceEvent& eventData) const; + MCFOLD void onPlace(::BlockEvents::BlockPlaceEvent& eventData) const; // NOLINTEND public: @@ -89,7 +89,7 @@ class TntBlock : public ::BlockLegacy { // NOLINTBEGIN MCAPI void $onExploded(::BlockSource& region, ::BlockPos const& pos, ::Actor* entitySource) const; - MCAPI void $setupRedstoneComponent(::BlockSource& region, ::BlockPos const& pos) const; + MCFOLD void $setupRedstoneComponent(::BlockSource& region, ::BlockPos const& pos) const; MCAPI void $onRedstoneUpdate(::BlockSource& region, ::BlockPos const& pos, int strength, bool isFirstTime) const; diff --git a/src/mc/world/level/block/TopSnowBlock.h b/src/mc/world/level/block/TopSnowBlock.h index 3c54dedc8d..6a6316d320 100644 --- a/src/mc/world/level/block/TopSnowBlock.h +++ b/src/mc/world/level/block/TopSnowBlock.h @@ -241,7 +241,7 @@ class TopSnowBlock : public ::FallingBlock { MCAPI void $tick(::BlockSource& region, ::BlockPos const& pos, ::Random& random) const; - MCAPI ::mce::Color $getDustColor(::Block const&) const; + MCFOLD ::mce::Color $getDustColor(::Block const&) const; MCAPI ::std::string $getDustParticleName(::Block const&) const; @@ -251,9 +251,9 @@ class TopSnowBlock : public ::FallingBlock { MCAPI bool $canBeBuiltOver(::BlockSource& region, ::BlockPos const& pos) const; - MCAPI bool $canHaveExtraData() const; + MCFOLD bool $canHaveExtraData() const; - MCAPI bool $isLavaBlocking() const; + MCFOLD bool $isLavaBlocking() const; MCAPI bool $isFreeToFall(::BlockSource& region, ::BlockPos const& pos) const; diff --git a/src/mc/world/level/block/TorchBlock.h b/src/mc/world/level/block/TorchBlock.h index 9e2ec440ab..b1b84e01fe 100644 --- a/src/mc/world/level/block/TorchBlock.h +++ b/src/mc/world/level/block/TorchBlock.h @@ -112,13 +112,13 @@ class TorchBlock : public ::BlockLegacy { MCAPI ::AABB const& $getVisualShape(::Block const& block, ::AABB& bufferAABB) const; - MCAPI ::AABB + MCFOLD ::AABB $getCollisionShape(::Block const&, ::IConstBlockSource const&, ::BlockPos const&, ::optional_ref<::GetCollisionShapeInterface const>) const; MCAPI void $animateTickBedrockLegacy(::BlockSource& region, ::BlockPos const& pos, ::Random& random) const; - MCAPI ::BlockRenderLayer $getRenderLayer(::Block const&, ::BlockSource&, ::BlockPos const&) const; + MCFOLD ::BlockRenderLayer $getRenderLayer(::Block const&, ::BlockSource&, ::BlockPos const&) const; MCAPI bool $canSurvive(::BlockSource& region, ::BlockPos const& pos) const; diff --git a/src/mc/world/level/block/TorchflowerBlock.h b/src/mc/world/level/block/TorchflowerBlock.h index 4d42b5c45e..759cc18842 100644 --- a/src/mc/world/level/block/TorchflowerBlock.h +++ b/src/mc/world/level/block/TorchflowerBlock.h @@ -52,10 +52,10 @@ class TorchflowerBlock : public ::FlowerBlock { public: // virtual function thunks // NOLINTBEGIN - MCAPI bool + MCFOLD bool $onFertilized(::BlockSource& region, ::BlockPos const& pos, ::Actor* actor, ::FertilizerType fType) const; - MCAPI bool $canBeFertilized(::BlockSource& region, ::BlockPos const& pos, ::Block const& aboveBlock) const; + MCFOLD bool $canBeFertilized(::BlockSource& region, ::BlockPos const& pos, ::Block const& aboveBlock) const; // NOLINTEND public: diff --git a/src/mc/world/level/block/TorchflowerCropBlock.h b/src/mc/world/level/block/TorchflowerCropBlock.h index 8a47ae483a..ce40a7f3d2 100644 --- a/src/mc/world/level/block/TorchflowerCropBlock.h +++ b/src/mc/world/level/block/TorchflowerCropBlock.h @@ -71,7 +71,7 @@ class TorchflowerCropBlock : public ::CropBlock { MCAPI int $getVariant(::Block const& block) const; - MCAPI ::AABB const& + MCFOLD ::AABB const& $getOutline(::Block const& block, ::IConstBlockSource const& region, ::BlockPos const& pos, ::AABB& bufferValue) const; diff --git a/src/mc/world/level/block/TrapDoorBlock.h b/src/mc/world/level/block/TrapDoorBlock.h index a887c6d86d..1fcac76b54 100644 --- a/src/mc/world/level/block/TrapDoorBlock.h +++ b/src/mc/world/level/block/TrapDoorBlock.h @@ -122,7 +122,7 @@ class TrapDoorBlock : public ::BlockLegacy { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND public: @@ -151,7 +151,7 @@ class TrapDoorBlock : public ::BlockLegacy { MCAPI bool $checkIsPathable(::Actor& entity, ::BlockPos const& lastPathPos, ::BlockPos const& pathPos) const; - MCAPI bool $isInteractiveBlock() const; + MCFOLD bool $isInteractiveBlock() const; MCAPI bool $breaksFallingBlocks(::Block const& block, ::BaseGameVersion const version) const; diff --git a/src/mc/world/level/block/TrialSpawnerBlock.h b/src/mc/world/level/block/TrialSpawnerBlock.h index ef7c527225..c9590b90c9 100644 --- a/src/mc/world/level/block/TrialSpawnerBlock.h +++ b/src/mc/world/level/block/TrialSpawnerBlock.h @@ -60,7 +60,7 @@ class TrialSpawnerBlock : public ::ActorBlock { public: // virtual function thunks // NOLINTBEGIN - MCAPI ::AABB + MCFOLD ::AABB $getCollisionShape(::Block const&, ::IConstBlockSource const&, ::BlockPos const& pos, ::optional_ref<::GetCollisionShapeInterface const>) const; @@ -68,7 +68,7 @@ class TrialSpawnerBlock : public ::ActorBlock { MCAPI int $getVariant(::Block const& block) const; - MCAPI bool $isInteractiveBlock() const; + MCFOLD bool $isInteractiveBlock() const; // NOLINTEND public: diff --git a/src/mc/world/level/block/TripWireBlock.h b/src/mc/world/level/block/TripWireBlock.h index 8372149b25..8252af698f 100644 --- a/src/mc/world/level/block/TripWireBlock.h +++ b/src/mc/world/level/block/TripWireBlock.h @@ -93,11 +93,11 @@ class TripWireBlock : public ::BlockLegacy { MCAPI ::AABB const& $getVisualShape(::Block const& block, ::AABB& bufferAABB) const; - MCAPI ::AABB + MCFOLD ::AABB $getCollisionShape(::Block const&, ::IConstBlockSource const&, ::BlockPos const&, ::optional_ref<::GetCollisionShapeInterface const>) const; - MCAPI void $onRemove(::BlockSource& region, ::BlockPos const& pos) const; + MCFOLD void $onRemove(::BlockSource& region, ::BlockPos const& pos) const; MCAPI ::Block const* $playerWillDestroy(::Player& player, ::BlockPos const& pos, ::Block const& block) const; diff --git a/src/mc/world/level/block/TripWireHookBlock.h b/src/mc/world/level/block/TripWireHookBlock.h index c3c33f5fb6..ab26c09e82 100644 --- a/src/mc/world/level/block/TripWireHookBlock.h +++ b/src/mc/world/level/block/TripWireHookBlock.h @@ -113,7 +113,7 @@ class TripWireHookBlock : public ::BlockLegacy { // NOLINTBEGIN MCAPI ::AABB const& $getVisualShape(::Block const& block, ::AABB& bufferAABB) const; - MCAPI ::AABB + MCFOLD ::AABB $getCollisionShape(::Block const&, ::IConstBlockSource const&, ::BlockPos const&, ::optional_ref<::GetCollisionShapeInterface const>) const; @@ -129,14 +129,14 @@ class TripWireHookBlock : public ::BlockLegacy { $getPlacementBlock(::Actor const& by, ::BlockPos const& pos, uchar face, ::Vec3 const& clickPos, int itemValue) const; - MCAPI void $neighborChanged(::BlockSource& region, ::BlockPos const& pos, ::BlockPos const& neighborPos) const; + MCFOLD void $neighborChanged(::BlockSource& region, ::BlockPos const& pos, ::BlockPos const& neighborPos) const; MCAPI void $tick(::BlockSource& region, ::BlockPos const& pos, ::Random& random) const; - MCAPI bool + MCFOLD bool $shouldConnectToRedstone(::BlockSource& region, ::BlockPos const& pos, ::Direction::Type direction) const; - MCAPI bool $canSpawnOn(::Actor*) const; + MCFOLD bool $canSpawnOn(::Actor*) const; MCAPI bool $canSurvive(::BlockSource& region, ::BlockPos const& pos) const; diff --git a/src/mc/world/level/block/TurtleEggBlock.h b/src/mc/world/level/block/TurtleEggBlock.h index 2e2ad09c23..fb461b88cb 100644 --- a/src/mc/world/level/block/TurtleEggBlock.h +++ b/src/mc/world/level/block/TurtleEggBlock.h @@ -32,8 +32,7 @@ class TurtleEggBlock : public ::BlockLegacy { virtual void entityInside(::BlockSource&, ::BlockPos const& pos, ::Actor& entity) const /*override*/; // vIndex: 60 - virtual void - transformOnFall(::BlockSource& region, ::BlockPos const& pos, ::Actor* entity, float fallDistance) const + virtual void transformOnFall(::BlockSource& region, ::BlockPos const& pos, ::Actor* actor, float fallDistance) const /*override*/; // vIndex: 139 @@ -101,14 +100,13 @@ class TurtleEggBlock : public ::BlockLegacy { // NOLINTBEGIN MCAPI void $entityInside(::BlockSource&, ::BlockPos const& pos, ::Actor& entity) const; - MCAPI void - $transformOnFall(::BlockSource& region, ::BlockPos const& pos, ::Actor* entity, float fallDistance) const; + MCAPI void $transformOnFall(::BlockSource& region, ::BlockPos const& pos, ::Actor* actor, float fallDistance) const; MCAPI bool $use(::Player& player, ::BlockPos const& pos, uchar) const; - MCAPI bool $checkIsPathable(::Actor& entity, ::BlockPos const& lastPathPos, ::BlockPos const& pathPos) const; + MCFOLD bool $checkIsPathable(::Actor& entity, ::BlockPos const& lastPathPos, ::BlockPos const& pathPos) const; - MCAPI ::std::string $buildDescriptionId(::Block const&) const; + MCFOLD ::std::string $buildDescriptionId(::Block const&) const; MCAPI void $tick(::BlockSource& region, ::BlockPos const& pos, ::Random& random) const; @@ -116,7 +114,7 @@ class TurtleEggBlock : public ::BlockLegacy { MCAPI bool $mayPlace(::BlockSource& region, ::BlockPos const& pos, uchar face) const; - MCAPI bool $canProvideSupport(::Block const&, uchar face, ::BlockSupportType type) const; + MCFOLD bool $canProvideSupport(::Block const&, uchar face, ::BlockSupportType type) const; MCAPI void $_addHardCodedBlockComponents(::Experiments const&); // NOLINTEND diff --git a/src/mc/world/level/block/TwistingVinesBlock.h b/src/mc/world/level/block/TwistingVinesBlock.h index 675ed9eff9..50a0ac3c62 100644 --- a/src/mc/world/level/block/TwistingVinesBlock.h +++ b/src/mc/world/level/block/TwistingVinesBlock.h @@ -96,15 +96,15 @@ class TwistingVinesBlock : public ::BlockLegacy { // NOLINTBEGIN MCAPI void $tick(::BlockSource& region, ::BlockPos const& pos, ::Random& random) const; - MCAPI void $onRemove(::BlockSource& region, ::BlockPos const& pos) const; + MCFOLD void $onRemove(::BlockSource& region, ::BlockPos const& pos) const; MCAPI bool $mayPlace(::BlockSource& region, ::BlockPos const& pos) const; - MCAPI bool $canSurvive(::BlockSource& region, ::BlockPos const& pos) const; + MCFOLD bool $canSurvive(::BlockSource& region, ::BlockPos const& pos) const; MCAPI void $neighborChanged(::BlockSource& region, ::BlockPos const& pos, ::BlockPos const& neighborPos) const; - MCAPI ::AABB + MCFOLD ::AABB $getCollisionShape(::Block const&, ::IConstBlockSource const&, ::BlockPos const&, ::optional_ref<::GetCollisionShapeInterface const>) const; @@ -114,7 +114,7 @@ class TwistingVinesBlock : public ::BlockLegacy { MCAPI bool $onFertilized(::BlockSource& region, ::BlockPos const& pos, ::Actor* actor, ::FertilizerType fType) const; - MCAPI bool $canBeFertilized(::BlockSource& region, ::BlockPos const& pos, ::Block const& aboveBlock) const; + MCFOLD bool $canBeFertilized(::BlockSource& region, ::BlockPos const& pos, ::Block const& aboveBlock) const; MCAPI void $_addHardCodedBlockComponents(::Experiments const&); // NOLINTEND diff --git a/src/mc/world/level/block/UnderwaterTorchBlock.h b/src/mc/world/level/block/UnderwaterTorchBlock.h index 516e296e0d..991b400627 100644 --- a/src/mc/world/level/block/UnderwaterTorchBlock.h +++ b/src/mc/world/level/block/UnderwaterTorchBlock.h @@ -57,11 +57,11 @@ class UnderwaterTorchBlock : public ::TorchBlock { // NOLINTBEGIN MCAPI void $animateTickBedrockLegacy(::BlockSource& region, ::BlockPos const& pos, ::Random& random) const; - MCAPI bool $canBeUsedInCommands(::BaseGameVersion const& baseGameVersion) const; + MCFOLD bool $canBeUsedInCommands(::BaseGameVersion const& baseGameVersion) const; MCAPI bool $mayPlace(::BlockSource& region, ::BlockPos const& pos) const; - MCAPI bool $isLavaBlocking() const; + MCFOLD bool $isLavaBlocking() const; // NOLINTEND public: diff --git a/src/mc/world/level/block/VaultBlock.h b/src/mc/world/level/block/VaultBlock.h index 0930d64a96..1cf45bb95e 100644 --- a/src/mc/world/level/block/VaultBlock.h +++ b/src/mc/world/level/block/VaultBlock.h @@ -76,7 +76,7 @@ class VaultBlock : public ::ActorBlock { MCAPI ::Brightness $getLightEmission(::Block const& block) const; - MCAPI bool $isInteractiveBlock() const; + MCFOLD bool $isInteractiveBlock() const; MCAPI ::Block const& $getPlacementBlock(::Actor const& by, ::BlockPos const& pos, uchar face, ::Vec3 const& clickPos, int itemValue) diff --git a/src/mc/world/level/block/VineBlock.h b/src/mc/world/level/block/VineBlock.h index 7d872358b3..050b9fd4f8 100644 --- a/src/mc/world/level/block/VineBlock.h +++ b/src/mc/world/level/block/VineBlock.h @@ -137,11 +137,11 @@ class VineBlock : public ::BlockLegacy { ::AABB& bufferAABB ) const; - MCAPI ::AABB + MCFOLD ::AABB $getCollisionShape(::Block const&, ::IConstBlockSource const&, ::BlockPos const&, ::optional_ref<::GetCollisionShapeInterface const>) const; - MCAPI ::AABB const& + MCFOLD ::AABB const& $getOutline(::Block const& block, ::IConstBlockSource const& region, ::BlockPos const& pos, ::AABB& bufferValue) const; @@ -153,7 +153,7 @@ class VineBlock : public ::BlockLegacy { MCAPI void $randomTick(::BlockSource& region, ::BlockPos const& pos, ::Random& random) const; - MCAPI void $tick(::BlockSource& region, ::BlockPos const& pos, ::Random& random) const; + MCFOLD void $tick(::BlockSource& region, ::BlockPos const& pos, ::Random& random) const; MCAPI ::Block const& $getPlacementBlock(::Actor const& by, ::BlockPos const& pos, uchar face, ::Vec3 const& clickPos, int itemValue) diff --git a/src/mc/world/level/block/WallBlock.h b/src/mc/world/level/block/WallBlock.h index 182badcd61..88a0aa6cac 100644 --- a/src/mc/world/level/block/WallBlock.h +++ b/src/mc/world/level/block/WallBlock.h @@ -139,7 +139,7 @@ class WallBlock : public ::BlockLegacy { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND public: @@ -165,22 +165,22 @@ class WallBlock : public ::BlockLegacy { $getCollisionShape(::Block const& block, ::IConstBlockSource const& region, ::BlockPos const& pos, ::optional_ref<::GetCollisionShapeInterface const>) const; - MCAPI ::AABB const& + MCFOLD ::AABB const& $getOutline(::Block const& block, ::IConstBlockSource const& region, ::BlockPos const& pos, ::AABB& bufferValue) const; - MCAPI bool $canProvideSupport(::Block const&, uchar face, ::BlockSupportType type) const; + MCFOLD bool $canProvideSupport(::Block const&, uchar face, ::BlockSupportType type) const; - MCAPI bool $canConnect(::Block const& otherBlock, uchar, ::Block const&) const; + MCFOLD bool $canConnect(::Block const& otherBlock, uchar, ::Block const&) const; - MCAPI bool + MCFOLD bool $getLiquidClipVolume(::Block const& block, ::BlockSource& region, ::BlockPos const& pos, ::AABB& includeBox) const; - MCAPI bool $isWallBlock() const; + MCFOLD bool $isWallBlock() const; MCAPI bool $breaksFallingBlocks(::Block const& block, ::BaseGameVersion const version) const; - MCAPI ::HitResult + MCFOLD ::HitResult $clip(::Block const& block, ::BlockSource const& region, ::BlockPos const& pos, ::Vec3 const& origin, ::Vec3 const& end, ::ShapeType, ::optional_ref<::GetCollisionShapeInterface const>) const; diff --git a/src/mc/world/level/block/WaterlilyBlock.h b/src/mc/world/level/block/WaterlilyBlock.h index c95f544761..3778ccce12 100644 --- a/src/mc/world/level/block/WaterlilyBlock.h +++ b/src/mc/world/level/block/WaterlilyBlock.h @@ -71,18 +71,18 @@ class WaterlilyBlock : public ::BushBlock { MCAPI bool $canSurvive(::BlockSource& region, ::BlockPos const& pos) const; - MCAPI ::AABB $getCollisionShape( + MCFOLD ::AABB $getCollisionShape( ::Block const& block, ::IConstBlockSource const& region, ::BlockPos const& pos, ::optional_ref<::GetCollisionShapeInterface const> entity ) const; - MCAPI ::AABB const& + MCFOLD ::AABB const& $getOutline(::Block const& block, ::IConstBlockSource const& region, ::BlockPos const& pos, ::AABB& bufferValue) const; - MCAPI bool $isLavaBlocking() const; + MCFOLD bool $isLavaBlocking() const; // NOLINTEND public: diff --git a/src/mc/world/level/block/WebBlock.h b/src/mc/world/level/block/WebBlock.h index cf5327b00b..b6ce1cd6f1 100644 --- a/src/mc/world/level/block/WebBlock.h +++ b/src/mc/world/level/block/WebBlock.h @@ -53,7 +53,7 @@ class WebBlock : public ::BlockLegacy { public: // virtual function thunks // NOLINTBEGIN - MCAPI ::AABB + MCFOLD ::AABB $getCollisionShape(::Block const&, ::IConstBlockSource const&, ::BlockPos const&, ::optional_ref<::GetCollisionShapeInterface const>) const; diff --git a/src/mc/world/level/block/WeepingVinesBlock.h b/src/mc/world/level/block/WeepingVinesBlock.h index b69aea6653..1ee1a6c28e 100644 --- a/src/mc/world/level/block/WeepingVinesBlock.h +++ b/src/mc/world/level/block/WeepingVinesBlock.h @@ -109,15 +109,15 @@ class WeepingVinesBlock : public ::BlockLegacy { // NOLINTBEGIN MCAPI void $tick(::BlockSource& region, ::BlockPos const& pos, ::Random& random) const; - MCAPI void $onRemove(::BlockSource& region, ::BlockPos const& pos) const; + MCFOLD void $onRemove(::BlockSource& region, ::BlockPos const& pos) const; MCAPI bool $mayPlace(::BlockSource& region, ::BlockPos const& pos) const; - MCAPI bool $canSurvive(::BlockSource& region, ::BlockPos const& pos) const; + MCFOLD bool $canSurvive(::BlockSource& region, ::BlockPos const& pos) const; MCAPI void $neighborChanged(::BlockSource& region, ::BlockPos const& pos, ::BlockPos const& neighborPos) const; - MCAPI ::AABB + MCFOLD ::AABB $getCollisionShape(::Block const&, ::IConstBlockSource const&, ::BlockPos const&, ::optional_ref<::GetCollisionShapeInterface const>) const; @@ -127,7 +127,7 @@ class WeepingVinesBlock : public ::BlockLegacy { MCAPI bool $onFertilized(::BlockSource& region, ::BlockPos const& pos, ::Actor* actor, ::FertilizerType fType) const; - MCAPI bool $canBeFertilized(::BlockSource& region, ::BlockPos const& pos, ::Block const& aboveBlock) const; + MCFOLD bool $canBeFertilized(::BlockSource& region, ::BlockPos const& pos, ::Block const& aboveBlock) const; MCAPI void $_addHardCodedBlockComponents(::Experiments const&); // NOLINTEND diff --git a/src/mc/world/level/block/WeightedPressurePlateBlock.h b/src/mc/world/level/block/WeightedPressurePlateBlock.h index c70fddfe10..a585f92acb 100644 --- a/src/mc/world/level/block/WeightedPressurePlateBlock.h +++ b/src/mc/world/level/block/WeightedPressurePlateBlock.h @@ -73,15 +73,15 @@ class WeightedPressurePlateBlock : public ::BasePressurePlateBlock { public: // virtual function thunks // NOLINTBEGIN - MCAPI int $getTickDelay() const; + MCFOLD int $getTickDelay() const; MCAPI ::ItemInstance $asItemInstance(::Block const&, ::BlockActor const*) const; MCAPI int $getSignalStrength(::BlockSource& region, ::BlockPos const& pos) const; - MCAPI int $getSignalForData(int data) const; + MCFOLD int $getSignalForData(int data) const; - MCAPI int $getRedstoneSignal(int signal) const; + MCFOLD int $getRedstoneSignal(int signal) const; // NOLINTEND public: diff --git a/src/mc/world/level/block/WitherRoseBlock.h b/src/mc/world/level/block/WitherRoseBlock.h index bfa0aacb99..9108213e4d 100644 --- a/src/mc/world/level/block/WitherRoseBlock.h +++ b/src/mc/world/level/block/WitherRoseBlock.h @@ -76,14 +76,14 @@ class WitherRoseBlock : public ::FlowerBlock { MCAPI void $entityInside(::BlockSource& region, ::BlockPos const&, ::Actor& entity) const; - MCAPI bool + MCFOLD bool $onFertilized(::BlockSource& region, ::BlockPos const& pos, ::Actor* actor, ::FertilizerType fType) const; - MCAPI bool $canBeFertilized(::BlockSource& region, ::BlockPos const& pos, ::Block const& aboveBlock) const; + MCFOLD bool $canBeFertilized(::BlockSource& region, ::BlockPos const& pos, ::Block const& aboveBlock) const; MCAPI ::std::string $buildDescriptionId(::Block const& block) const; - MCAPI bool $isAuxValueRelevantForPicking() const; + MCFOLD bool $isAuxValueRelevantForPicking() const; MCAPI bool $canSpawnOn(::Actor* actor) const; diff --git a/src/mc/world/level/block/actor/BannerBlockActor.h b/src/mc/world/level/block/actor/BannerBlockActor.h index d552d70bd6..570c226737 100644 --- a/src/mc/world/level/block/actor/BannerBlockActor.h +++ b/src/mc/world/level/block/actor/BannerBlockActor.h @@ -118,7 +118,7 @@ class BannerBlockActor : public ::BlockActor { MCAPI bool $save(::CompoundTag& tag, ::SaveContext const& saveContext) const; - MCAPI ::std::unique_ptr<::BlockActorDataPacket> $_getUpdatePacket(::BlockSource&); + MCFOLD ::std::unique_ptr<::BlockActorDataPacket> $_getUpdatePacket(::BlockSource&); MCAPI void $_onUpdatePacket(::CompoundTag const& data, ::BlockSource& region); // NOLINTEND diff --git a/src/mc/world/level/block/actor/BannerPattern.h b/src/mc/world/level/block/actor/BannerPattern.h index 8ac5d4c7be..d12aa970bc 100644 --- a/src/mc/world/level/block/actor/BannerPattern.h +++ b/src/mc/world/level/block/actor/BannerPattern.h @@ -49,11 +49,11 @@ class BannerPattern : public ::Bedrock::EnableNonOwnerReferences { MCAPI ::ItemStack getIngredientItem() const; - MCAPI ::std::string const& getName() const; + MCFOLD ::std::string const& getName() const; - MCAPI ::std::string const& getNameID() const; + MCFOLD ::std::string const& getNameID() const; - MCAPI ::std::vector<::std::string> const& getPattern() const; + MCFOLD ::std::vector<::std::string> const& getPattern() const; MCAPI bool hasPattern() const; diff --git a/src/mc/world/level/block/actor/BarrelBlockActor.h b/src/mc/world/level/block/actor/BarrelBlockActor.h index 10c4519110..1e9b0c5c29 100644 --- a/src/mc/world/level/block/actor/BarrelBlockActor.h +++ b/src/mc/world/level/block/actor/BarrelBlockActor.h @@ -61,7 +61,7 @@ class BarrelBlockActor : public ::ChestBlockActor { // NOLINTBEGIN MCAPI ::std::string $getName() const; - MCAPI void $onPlace(::BlockSource& region); + MCFOLD void $onPlace(::BlockSource& region); MCAPI void $startOpen(::Player& player); diff --git a/src/mc/world/level/block/actor/BaseCommandBlock.h b/src/mc/world/level/block/actor/BaseCommandBlock.h index afba4c4c7a..c3e79abd74 100644 --- a/src/mc/world/level/block/actor/BaseCommandBlock.h +++ b/src/mc/world/level/block/actor/BaseCommandBlock.h @@ -42,19 +42,19 @@ class BaseCommandBlock { MCAPI void compile(::CommandOrigin const& origin, ::Level& level); - MCAPI ::std::string const& getCommand() const; + MCFOLD ::std::string const& getCommand() const; MCAPI ::std::string getLastOutput() const; MCAPI ::std::string const& getName() const; - MCAPI ::std::string const& getRawName() const; + MCFOLD ::std::string const& getRawName() const; - MCAPI int getSuccessCount() const; + MCFOLD int getSuccessCount() const; - MCAPI int getTickDelay() const; + MCFOLD int getTickDelay() const; - MCAPI bool getTrackOutput() const; + MCFOLD bool getTrackOutput() const; MCAPI void load(::CompoundTag const& tag, ::DataLoadHelper& dataLoadHelper); @@ -76,13 +76,13 @@ class BaseCommandBlock { MCAPI void setShouldExecuteOnFirstTick(bool shouldExecute); - MCAPI void setSuccessCount(int successCount); + MCFOLD void setSuccessCount(int successCount); - MCAPI void setTickDelay(int tickDelay); + MCFOLD void setTickDelay(int tickDelay); MCAPI void setTrackOutput(bool trackOutput); - MCAPI bool shouldExecuteOnFirstTick() const; + MCFOLD bool shouldExecuteOnFirstTick() const; MCAPI ~BaseCommandBlock(); // NOLINTEND diff --git a/src/mc/world/level/block/actor/BeaconBlockActor.h b/src/mc/world/level/block/actor/BeaconBlockActor.h index ab9f684658..2ac3eedfd4 100644 --- a/src/mc/world/level/block/actor/BeaconBlockActor.h +++ b/src/mc/world/level/block/actor/BeaconBlockActor.h @@ -164,33 +164,33 @@ class BeaconBlockActor : public ::BlockActor, public ::Container { MCAPI void $load(::Level& level, ::CompoundTag const& tag, ::DataLoadHelper& dataLoadHelper); - MCAPI bool $hasAlphaLayer() const; + MCFOLD bool $hasAlphaLayer() const; - MCAPI ::ItemStack const& $getItem(int slot) const; + MCFOLD ::ItemStack const& $getItem(int slot) const; - MCAPI void $setItem(int slot, ::ItemStack const& item); + MCFOLD void $setItem(int slot, ::ItemStack const& item); - MCAPI void $removeItem(int slot, int count); + MCFOLD void $removeItem(int slot, int count); MCAPI ::std::string $getName() const; - MCAPI int $getContainerSize() const; + MCFOLD int $getContainerSize() const; - MCAPI int $getMaxStackSize() const; + MCFOLD int $getMaxStackSize() const; - MCAPI void $startOpen(::Player& player); + MCFOLD void $startOpen(::Player& player); - MCAPI void $stopOpen(::Player& player); + MCFOLD void $stopOpen(::Player& player); - MCAPI void $serverInitItemStackIds( + MCFOLD void $serverInitItemStackIds( int containerSlot, int count, ::std::function onNetIdChanged ); - MCAPI ::Container* $getContainer(); + MCFOLD ::Container* $getContainer(); - MCAPI ::Container const* $getContainer() const; + MCFOLD ::Container const* $getContainer() const; MCAPI ::std::unique_ptr<::BlockActorDataPacket> $_getUpdatePacket(::BlockSource& region); diff --git a/src/mc/world/level/block/actor/BedBlockActor.h b/src/mc/world/level/block/actor/BedBlockActor.h index f15c44a319..e815100740 100644 --- a/src/mc/world/level/block/actor/BedBlockActor.h +++ b/src/mc/world/level/block/actor/BedBlockActor.h @@ -94,9 +94,9 @@ class BedBlockActor : public ::BlockActor { // NOLINTBEGIN MCAPI void $tick(::BlockSource& region); - MCAPI void $onPlace(::BlockSource& region); + MCFOLD void $onPlace(::BlockSource& region); - MCAPI void $onChanged(::BlockSource& region); + MCFOLD void $onChanged(::BlockSource& region); MCAPI void $load(::Level& level, ::CompoundTag const& base, ::DataLoadHelper& dataLoadHelper); @@ -108,9 +108,9 @@ class BedBlockActor : public ::BlockActor { MCAPI ::std::string $getName() const; - MCAPI ::std::unique_ptr<::BlockActorDataPacket> $_getUpdatePacket(::BlockSource& region); + MCFOLD ::std::unique_ptr<::BlockActorDataPacket> $_getUpdatePacket(::BlockSource& region); - MCAPI void $_onUpdatePacket(::CompoundTag const& data, ::BlockSource& region); + MCFOLD void $_onUpdatePacket(::CompoundTag const& data, ::BlockSource& region); // NOLINTEND public: diff --git a/src/mc/world/level/block/actor/BellBlockActor.h b/src/mc/world/level/block/actor/BellBlockActor.h index a056e570a1..945eb96259 100644 --- a/src/mc/world/level/block/actor/BellBlockActor.h +++ b/src/mc/world/level/block/actor/BellBlockActor.h @@ -83,9 +83,9 @@ class BellBlockActor : public ::BlockActor { MCAPI void $load(::Level& level, ::CompoundTag const& tag, ::DataLoadHelper& dataLoadHelper); - MCAPI ::std::unique_ptr<::BlockActorDataPacket> $_getUpdatePacket(::BlockSource&); + MCFOLD ::std::unique_ptr<::BlockActorDataPacket> $_getUpdatePacket(::BlockSource&); - MCAPI void $_onUpdatePacket(::CompoundTag const& data, ::BlockSource& region); + MCFOLD void $_onUpdatePacket(::CompoundTag const& data, ::BlockSource& region); // NOLINTEND public: diff --git a/src/mc/world/level/block/actor/BlockActor.h b/src/mc/world/level/block/actor/BlockActor.h index 0a9c8ab634..8e77a1fe72 100644 --- a/src/mc/world/level/block/actor/BlockActor.h +++ b/src/mc/world/level/block/actor/BlockActor.h @@ -207,19 +207,19 @@ class BlockActor { // NOLINTBEGIN MCAPI BlockActor(::BlockActorType type, ::BlockPos const& pos, ::std::string const&); - MCAPI ::AABB const& getAABB() const; + MCFOLD ::AABB const& getAABB() const; - MCAPI ::Block const* getBlock() const; + MCFOLD ::Block const* getBlock() const; - MCAPI ::BlockPos const& getPosition() const; + MCFOLD ::BlockPos const& getPosition() const; MCAPI ::std::unique_ptr<::BlockActorDataPacket> getServerUpdatePacket(::BlockSource& region); - MCAPI ::BlockActorType const& getType() const; + MCFOLD ::BlockActorType const& getType() const; - MCAPI bool isChanged() const; + MCFOLD bool isChanged() const; - MCAPI bool isType(::BlockActorType type) const; + MCFOLD bool isType(::BlockActorType type) const; MCAPI void moveTo(::BlockPos const& newPos); @@ -227,9 +227,9 @@ class BlockActor { MCAPI void setChanged(); - MCAPI void setCustomNameSaved(bool saveCustomName); + MCFOLD void setCustomNameSaved(bool saveCustomName); - MCAPI void setMovable(bool canMove); + MCFOLD void setMovable(bool canMove); // NOLINTEND public: @@ -237,7 +237,7 @@ class BlockActor { // NOLINTBEGIN MCAPI static ::std::map<::std::string, ::BlockActorType> _createIdClassMap(); - MCAPI static bool isType(::BlockActor& te, ::BlockActorType type); + MCFOLD static bool isType(::BlockActor& te, ::BlockActorType type); MCAPI static ::std::shared_ptr<::BlockActor> loadStatic(::Level& level, ::CompoundTag const& tag, ::DataLoadHelper& dataLoadHelper); @@ -272,90 +272,90 @@ class BlockActor { MCAPI bool $saveItemInstanceData(::CompoundTag& tag, ::SaveContext const& saveContext) const; - MCAPI void $saveBlockData(::CompoundTag&, ::BlockSource&) const; + MCFOLD void $saveBlockData(::CompoundTag&, ::BlockSource&) const; - MCAPI void $loadBlockData(::CompoundTag const&, ::BlockSource&, ::DataLoadHelper&); + MCFOLD void $loadBlockData(::CompoundTag const&, ::BlockSource&, ::DataLoadHelper&); - MCAPI void $onCustomTagLoadDone(::BlockSource&); + MCFOLD void $onCustomTagLoadDone(::BlockSource&); - MCAPI void $tick(::BlockSource& region); + MCFOLD void $tick(::BlockSource& region); - MCAPI void $onChanged(::BlockSource&); + MCFOLD void $onChanged(::BlockSource&); - MCAPI bool $isMovable(::BlockSource&); + MCFOLD bool $isMovable(::BlockSource&); MCAPI bool $isCustomNameSaved(); - MCAPI void $onPlace(::BlockSource&); + MCFOLD void $onPlace(::BlockSource&); - MCAPI void $onMove(); + MCFOLD void $onMove(); - MCAPI void $onRemoved(::BlockSource&); + MCFOLD void $onRemoved(::BlockSource&); - MCAPI bool $isPreserved(::BlockSource&) const; + MCFOLD bool $isPreserved(::BlockSource&) const; - MCAPI bool $shouldPreserve(::BlockSource&); + MCFOLD bool $shouldPreserve(::BlockSource&); - MCAPI void $triggerEvent(int, int); + MCFOLD void $triggerEvent(int, int); - MCAPI void $clearCache(); + MCFOLD void $clearCache(); - MCAPI void $onNeighborChanged(::BlockSource&, ::BlockPos const&); + MCFOLD void $onNeighborChanged(::BlockSource&, ::BlockPos const&); - MCAPI float $getShadowRadius(::BlockSource&) const; + MCFOLD float $getShadowRadius(::BlockSource&) const; - MCAPI bool $hasAlphaLayer() const; + MCFOLD bool $hasAlphaLayer() const; - MCAPI ::BlockActor* $getCrackEntity(::BlockSource&, ::BlockPos const&); + MCFOLD ::BlockActor* $getCrackEntity(::BlockSource&, ::BlockPos const&); MCAPI ::AABB $getCollisionShape(::IConstBlockSource const&) const; MCAPI void $getDebugText(::std::vector<::std::string>& outputInfo, ::BlockPos const& debugPos); - MCAPI ::std::string const& $getCustomName() const; + MCFOLD ::std::string const& $getCustomName() const; MCAPI ::std::string const& $getFilteredCustomName(::Bedrock::NotNullNonOwnerPtr<::UIProfanityContext> const& context ); - MCAPI ::std::string $getName() const; + MCFOLD ::std::string $getName() const; MCAPI void $setCustomName(::std::string const& name); - MCAPI ::std::string $getImmersiveReaderText(::BlockSource&); + MCFOLD ::std::string $getImmersiveReaderText(::BlockSource&); - MCAPI int $getRepairCost() const; + MCFOLD int $getRepairCost() const; - MCAPI ::PistonBlockActor* $getOwningPiston(::BlockSource&); + MCFOLD ::PistonBlockActor* $getOwningPiston(::BlockSource&); - MCAPI ::PistonBlockActor const* $getOwningPiston(::BlockSource&) const; + MCFOLD ::PistonBlockActor const* $getOwningPiston(::BlockSource&) const; - MCAPI ::Container* $getContainer(); + MCFOLD ::Container* $getContainer(); - MCAPI ::Container const* $getContainer() const; + MCFOLD ::Container const* $getContainer() const; - MCAPI void $eraseLootTable(); + MCFOLD void $eraseLootTable(); - MCAPI void $onChunkLoaded(::LevelChunk&); + MCFOLD void $onChunkLoaded(::LevelChunk&); - MCAPI void $onChunkUnloaded(::LevelChunk&); + MCFOLD void $onChunkUnloaded(::LevelChunk&); - MCAPI void $onSubChunkLoaded(::LevelChunk&, short, bool); + MCFOLD void $onSubChunkLoaded(::LevelChunk&, short, bool); - MCAPI ::std::vector<::std::string> $getUgcStrings(::CompoundTag const&) const; + MCFOLD ::std::vector<::std::string> $getUgcStrings(::CompoundTag const&) const; - MCAPI ::std::vector<::std::string> $getFilteredUgcStrings(::CompoundTag const&) const; + MCFOLD ::std::vector<::std::string> $getFilteredUgcStrings(::CompoundTag const&) const; - MCAPI void $setUgcStrings(::CompoundTag&, ::std::vector<::std::string> const&) const; + MCFOLD void $setUgcStrings(::CompoundTag&, ::std::vector<::std::string> const&) const; - MCAPI void $setFilteredUgcStrings(::CompoundTag&, ::std::vector<::std::string> const&) const; + MCFOLD void $setFilteredUgcStrings(::CompoundTag&, ::std::vector<::std::string> const&) const; - MCAPI void $fixupOnLoad(::LevelChunk&); + MCFOLD void $fixupOnLoad(::LevelChunk&); - MCAPI ::std::unique_ptr<::BlockActorDataPacket> $_getUpdatePacket(::BlockSource&); + MCFOLD ::std::unique_ptr<::BlockActorDataPacket> $_getUpdatePacket(::BlockSource&); - MCAPI void $_onUpdatePacket(::CompoundTag const&, ::BlockSource&); + MCFOLD void $_onUpdatePacket(::CompoundTag const&, ::BlockSource&); - MCAPI bool $_playerCanUpdate(::Player const&) const; + MCFOLD bool $_playerCanUpdate(::Player const&) const; // NOLINTEND public: diff --git a/src/mc/world/level/block/actor/BrewingStandBlockActor.h b/src/mc/world/level/block/actor/BrewingStandBlockActor.h index 8addf38786..4af2596110 100644 --- a/src/mc/world/level/block/actor/BrewingStandBlockActor.h +++ b/src/mc/world/level/block/actor/BrewingStandBlockActor.h @@ -119,17 +119,17 @@ class BrewingStandBlockActor : public ::BlockActor, public ::Container { MCAPI bool canBrew(); - MCAPI int getBrewTime() const; + MCFOLD int getBrewTime() const; - MCAPI int getFuelAmount() const; + MCFOLD int getFuelAmount() const; - MCAPI int getFuelTotal() const; + MCFOLD int getFuelTotal() const; - MCAPI void setBrewTime(int value); + MCFOLD void setBrewTime(int value); - MCAPI void setFuelAmount(int value); + MCFOLD void setFuelAmount(int value); - MCAPI void setFuelTotal(int value); + MCFOLD void setFuelTotal(int value); // NOLINTEND public: @@ -157,27 +157,27 @@ class BrewingStandBlockActor : public ::BlockActor, public ::Container { MCAPI void $setItem(int slot, ::ItemStack const& item); - MCAPI ::std::string $getName() const; + MCFOLD ::std::string $getName() const; - MCAPI int $getMaxStackSize() const; + MCFOLD int $getMaxStackSize() const; - MCAPI int $getContainerSize() const; + MCFOLD int $getContainerSize() const; - MCAPI void $startOpen(::Player&); + MCFOLD void $startOpen(::Player&); - MCAPI void $stopOpen(::Player& player); + MCFOLD void $stopOpen(::Player& player); - MCAPI void $setContainerChanged(int slot); + MCFOLD void $setContainerChanged(int slot); - MCAPI void $onRemoved(::BlockSource&); + MCFOLD void $onRemoved(::BlockSource&); MCAPI bool $canPushInItem(int slot, int face, ::ItemStack const& item) const; MCAPI bool $canPullOutItem(int slot, int face, ::ItemStack const&) const; - MCAPI ::Container* $getContainer(); + MCFOLD ::Container* $getContainer(); - MCAPI ::Container const* $getContainer() const; + MCFOLD ::Container const* $getContainer() const; MCAPI void $load(::Level& level, ::CompoundTag const& base, ::DataLoadHelper& dataLoadHelper); @@ -187,7 +187,7 @@ class BrewingStandBlockActor : public ::BlockActor, public ::Container { MCAPI void $onChanged(::BlockSource& region); - MCAPI void $onMove(); + MCFOLD void $onMove(); MCAPI void $serverInitItemStackIds( int containerSlot, diff --git a/src/mc/world/level/block/actor/BrushableBlockActor.h b/src/mc/world/level/block/actor/BrushableBlockActor.h index 8e9a956343..144a56daf3 100644 --- a/src/mc/world/level/block/actor/BrushableBlockActor.h +++ b/src/mc/world/level/block/actor/BrushableBlockActor.h @@ -143,15 +143,15 @@ class BrushableBlockActor : public ::RandomizableBlockActorContainer { ::std::function onNetIdChanged ); - MCAPI int $getContainerSize() const; + MCFOLD int $getContainerSize() const; - MCAPI int $getMaxStackSize() const; + MCFOLD int $getMaxStackSize() const; MCAPI ::ItemStack const& $getItem(int slot) const; MCAPI void $setItem(int slot, ::ItemStack const& item); - MCAPI void $stopOpen(::Player& player); + MCFOLD void $stopOpen(::Player& player); MCAPI void $onChanged(::BlockSource& region); @@ -161,9 +161,9 @@ class BrushableBlockActor : public ::RandomizableBlockActorContainer { MCAPI bool $save(::CompoundTag& tag, ::SaveContext const& saveContext) const; - MCAPI ::std::unique_ptr<::BlockActorDataPacket> $_getUpdatePacket(::BlockSource&); + MCFOLD ::std::unique_ptr<::BlockActorDataPacket> $_getUpdatePacket(::BlockSource&); - MCAPI void $_onUpdatePacket(::CompoundTag const& data, ::BlockSource& region); + MCFOLD void $_onUpdatePacket(::CompoundTag const& data, ::BlockSource& region); // NOLINTEND public: diff --git a/src/mc/world/level/block/actor/CampfireBlockActor.h b/src/mc/world/level/block/actor/CampfireBlockActor.h index 08bf00d8fe..2e78f6ff4f 100644 --- a/src/mc/world/level/block/actor/CampfireBlockActor.h +++ b/src/mc/world/level/block/actor/CampfireBlockActor.h @@ -101,13 +101,13 @@ class CampfireBlockActor : public ::BlockActor { MCAPI bool $save(::CompoundTag& tag, ::SaveContext const& saveContext) const; - MCAPI float $getShadowRadius(::BlockSource&) const; + MCFOLD float $getShadowRadius(::BlockSource&) const; - MCAPI void $onChanged(::BlockSource& region); + MCFOLD void $onChanged(::BlockSource& region); - MCAPI ::std::unique_ptr<::BlockActorDataPacket> $_getUpdatePacket(::BlockSource&); + MCFOLD ::std::unique_ptr<::BlockActorDataPacket> $_getUpdatePacket(::BlockSource&); - MCAPI void $_onUpdatePacket(::CompoundTag const& data, ::BlockSource& region); + MCFOLD void $_onUpdatePacket(::CompoundTag const& data, ::BlockSource& region); // NOLINTEND public: diff --git a/src/mc/world/level/block/actor/CauldronBlockActor.h b/src/mc/world/level/block/actor/CauldronBlockActor.h index b1bfb48503..2af03fa1c5 100644 --- a/src/mc/world/level/block/actor/CauldronBlockActor.h +++ b/src/mc/world/level/block/actor/CauldronBlockActor.h @@ -104,13 +104,13 @@ class CauldronBlockActor : public ::BlockActor, public ::Container { MCAPI ::mce::Color getPotionColor() const; - MCAPI ::Potion::PotionType getPotionType() const; + MCFOLD ::Potion::PotionType getPotionType() const; MCAPI void mixDyes(); MCAPI void setCustomColor(::mce::Color const& color); - MCAPI void setPotionType(::Potion::PotionType type); + MCFOLD void setPotionType(::Potion::PotionType type); // NOLINTEND public: @@ -134,31 +134,31 @@ class CauldronBlockActor : public ::BlockActor, public ::Container { public: // virtual function thunks // NOLINTBEGIN - MCAPI ::ItemStack const& $getItem(int slot) const; + MCFOLD ::ItemStack const& $getItem(int slot) const; MCAPI void $setItem(int slot, ::ItemStack const& item); MCAPI ::std::string $getName() const; - MCAPI int $getMaxStackSize() const; + MCFOLD int $getMaxStackSize() const; - MCAPI int $getContainerSize() const; + MCFOLD int $getContainerSize() const; - MCAPI void $startOpen(::Player&); + MCFOLD void $startOpen(::Player&); - MCAPI void $stopOpen(::Player& player); + MCFOLD void $stopOpen(::Player& player); - MCAPI ::Container* $getContainer(); + MCFOLD ::Container* $getContainer(); - MCAPI ::Container const* $getContainer() const; + MCFOLD ::Container const* $getContainer() const; MCAPI void $load(::Level& level, ::CompoundTag const& base, ::DataLoadHelper& dataLoadHelper); MCAPI bool $save(::CompoundTag& tag, ::SaveContext const& saveContext) const; - MCAPI void $tick(::BlockSource& region); + MCFOLD void $tick(::BlockSource& region); - MCAPI void $onChanged(::BlockSource& region); + MCFOLD void $onChanged(::BlockSource& region); MCAPI void $serverInitItemStackIds( int containerSlot, @@ -166,9 +166,9 @@ class CauldronBlockActor : public ::BlockActor, public ::Container { ::std::function onNetIdChanged ); - MCAPI ::std::unique_ptr<::BlockActorDataPacket> $_getUpdatePacket(::BlockSource&); + MCFOLD ::std::unique_ptr<::BlockActorDataPacket> $_getUpdatePacket(::BlockSource&); - MCAPI void $_onUpdatePacket(::CompoundTag const& data, ::BlockSource& region); + MCFOLD void $_onUpdatePacket(::CompoundTag const& data, ::BlockSource& region); // NOLINTEND public: diff --git a/src/mc/world/level/block/actor/ChalkboardBlockActor.h b/src/mc/world/level/block/actor/ChalkboardBlockActor.h index 8133c3a391..95475ab321 100644 --- a/src/mc/world/level/block/actor/ChalkboardBlockActor.h +++ b/src/mc/world/level/block/actor/ChalkboardBlockActor.h @@ -57,13 +57,13 @@ class ChalkboardBlockActor : public ::BlockActor { public: // constructor thunks // NOLINTBEGIN - MCAPI void* $ctor(); + MCFOLD void* $ctor(); // NOLINTEND public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; @@ -249,9 +249,9 @@ class ChalkboardBlockActor : public ::BlockActor { MCAPI void $setUgcStrings(::CompoundTag& tag, ::std::vector<::std::string> const& list) const; - MCAPI ::std::unique_ptr<::BlockActorDataPacket> $_getUpdatePacket(::BlockSource&); + MCFOLD ::std::unique_ptr<::BlockActorDataPacket> $_getUpdatePacket(::BlockSource&); - MCAPI void $_onUpdatePacket(::CompoundTag const& data, ::BlockSource& region); + MCFOLD void $_onUpdatePacket(::CompoundTag const& data, ::BlockSource& region); // NOLINTEND public: diff --git a/src/mc/world/level/block/actor/ChemistryTableBlockActor.h b/src/mc/world/level/block/actor/ChemistryTableBlockActor.h index 004c807773..fe378f344b 100644 --- a/src/mc/world/level/block/actor/ChemistryTableBlockActor.h +++ b/src/mc/world/level/block/actor/ChemistryTableBlockActor.h @@ -125,19 +125,19 @@ class ChemistryTableBlockActor : public ::BlockActor, public ::Container { public: // virtual function thunks // NOLINTBEGIN - MCAPI ::Container* $getContainer(); + MCFOLD ::Container* $getContainer(); - MCAPI ::Container const* $getContainer() const; + MCFOLD ::Container const* $getContainer() const; MCAPI ::ItemStack const& $getItem(int slot) const; MCAPI void $setItem(int slot, ::ItemStack const& item); - MCAPI int $getMaxStackSize() const; + MCFOLD int $getMaxStackSize() const; - MCAPI int $getContainerSize() const; + MCFOLD int $getContainerSize() const; - MCAPI void $startOpen(::Player& p); + MCFOLD void $startOpen(::Player& p); MCAPI void $stopOpen(::Player& p); diff --git a/src/mc/world/level/block/actor/ChestBlockActor.h b/src/mc/world/level/block/actor/ChestBlockActor.h index ebd8853c33..590040c791 100644 --- a/src/mc/world/level/block/actor/ChestBlockActor.h +++ b/src/mc/world/level/block/actor/ChestBlockActor.h @@ -217,19 +217,19 @@ class ChestBlockActor : public ::RandomizableBlockActorFillingContainer { MCAPI float getOpenness() const; - MCAPI ::BlockPos const& getPairedChestPosition(); + MCFOLD ::BlockPos const& getPairedChestPosition(); MCAPI bool isFindable() const; MCAPI bool isLargeChest() const; - MCAPI void onMove(::BlockSource& region, ::BlockPos const& from, ::BlockPos const& to); + MCFOLD void onMove(::BlockSource& region, ::BlockPos const& from, ::BlockPos const& to); MCAPI void pairWith(::ChestBlockActor* chest, bool lead); MCAPI void setFindable(bool isFindable); - MCAPI void unpair(::BlockSource& region); + MCFOLD void unpair(::BlockSource& region); // NOLINTEND public: @@ -255,7 +255,7 @@ class ChestBlockActor : public ::RandomizableBlockActorFillingContainer { // NOLINTBEGIN MCAPI int $getContainerSize() const; - MCAPI int $getMaxStackSize() const; + MCFOLD int $getMaxStackSize() const; MCAPI ::std::string $getName() const; @@ -263,7 +263,7 @@ class ChestBlockActor : public ::RandomizableBlockActorFillingContainer { MCAPI void $setItem(int slot, ::ItemStack const& item); - MCAPI void $setItemWithForceBalance(int slot, ::ItemStack const& item, bool forceBalanced); + MCFOLD void $setItemWithForceBalance(int slot, ::ItemStack const& item, bool forceBalanced); MCAPI void $serverInitItemStackIds( int containerSlot, @@ -281,7 +281,7 @@ class ChestBlockActor : public ::RandomizableBlockActorFillingContainer { MCAPI bool $saveItemInstanceData(::CompoundTag& tag, ::SaveContext const& saveContext) const; - MCAPI void $clearCache(); + MCFOLD void $clearCache(); MCAPI void $tick(::BlockSource& region); @@ -295,17 +295,17 @@ class ChestBlockActor : public ::RandomizableBlockActorFillingContainer { MCAPI void $onChanged(::BlockSource& region); - MCAPI void $onNeighborChanged(::BlockSource& region, ::BlockPos const& position); + MCFOLD void $onNeighborChanged(::BlockSource& region, ::BlockPos const& position); MCAPI ::BlockActor* $getCrackEntity(::BlockSource& region, ::BlockPos const& pos); MCAPI int $clearInventory(int resizeTo); - MCAPI ::Container* $getContainer(); + MCFOLD ::Container* $getContainer(); - MCAPI ::Container const* $getContainer() const; + MCFOLD ::Container const* $getContainer() const; - MCAPI void $onMove(); + MCFOLD void $onMove(); MCAPI void $onPlace(::BlockSource& region); @@ -313,9 +313,9 @@ class ChestBlockActor : public ::RandomizableBlockActorFillingContainer { MCAPI void $setContainerChanged(int slot); - MCAPI bool $canPushInItem(int, int, ::ItemStack const&) const; + MCFOLD bool $canPushInItem(int, int, ::ItemStack const&) const; - MCAPI bool $canPullOutItem(int, int, ::ItemStack const&) const; + MCFOLD bool $canPullOutItem(int, int, ::ItemStack const&) const; MCAPI void $getDebugText(::std::vector<::std::string>& outputInfo, ::BlockPos const& debugPos); @@ -327,7 +327,7 @@ class ChestBlockActor : public ::RandomizableBlockActorFillingContainer { MCAPI ::std::unique_ptr<::BlockActorDataPacket> $_getUpdatePacket(::BlockSource& region); - MCAPI void $_onUpdatePacket(::CompoundTag const& data, ::BlockSource& region); + MCFOLD void $_onUpdatePacket(::CompoundTag const& data, ::BlockSource& region); MCAPI void $playOpenSound(::BlockSource& region); diff --git a/src/mc/world/level/block/actor/ChiseledBookshelfBlockActor.h b/src/mc/world/level/block/actor/ChiseledBookshelfBlockActor.h index 49ffe12599..d083fc7222 100644 --- a/src/mc/world/level/block/actor/ChiseledBookshelfBlockActor.h +++ b/src/mc/world/level/block/actor/ChiseledBookshelfBlockActor.h @@ -136,17 +136,17 @@ class ChiseledBookshelfBlockActor : public ::BlockActor, public ::Container { MCAPI ::std::string $getName() const; - MCAPI int $getMaxStackSize() const; + MCFOLD int $getMaxStackSize() const; - MCAPI int $getContainerSize() const; + MCFOLD int $getContainerSize() const; - MCAPI void $startOpen(::Player&); + MCFOLD void $startOpen(::Player&); - MCAPI void $stopOpen(::Player& player); + MCFOLD void $stopOpen(::Player& player); - MCAPI ::Container* $getContainer(); + MCFOLD ::Container* $getContainer(); - MCAPI ::Container const* $getContainer() const; + MCFOLD ::Container const* $getContainer() const; MCAPI void $serverInitItemStackIds( int containerSlot, @@ -168,9 +168,9 @@ class ChiseledBookshelfBlockActor : public ::BlockActor, public ::Container { MCAPI bool $save(::CompoundTag& tag, ::SaveContext const& saveContext) const; - MCAPI ::std::unique_ptr<::BlockActorDataPacket> $_getUpdatePacket(::BlockSource&); + MCFOLD ::std::unique_ptr<::BlockActorDataPacket> $_getUpdatePacket(::BlockSource&); - MCAPI void $_onUpdatePacket(::CompoundTag const& data, ::BlockSource& region); + MCFOLD void $_onUpdatePacket(::CompoundTag const& data, ::BlockSource& region); // NOLINTEND public: diff --git a/src/mc/world/level/block/actor/CommandBlockActor.h b/src/mc/world/level/block/actor/CommandBlockActor.h index 1826728051..1bda7f48ff 100644 --- a/src/mc/world/level/block/actor/CommandBlockActor.h +++ b/src/mc/world/level/block/actor/CommandBlockActor.h @@ -91,7 +91,7 @@ class CommandBlockActor : public ::BlockActor { MCAPI void _setAutomatic(::BlockSource& region, bool alwaysActive, ::CommandBlockMode currentMode); - MCAPI ::BaseCommandBlock& getBaseCommandBlock(); + MCFOLD ::BaseCommandBlock& getBaseCommandBlock(); MCAPI ::std::string const& getCommand() const; @@ -163,7 +163,7 @@ class CommandBlockActor : public ::BlockActor { MCAPI void $onCustomTagLoadDone(::BlockSource& region); - MCAPI void $onChanged(::BlockSource& region); + MCFOLD void $onChanged(::BlockSource& region); MCAPI void $onPlace(::BlockSource& region); diff --git a/src/mc/world/level/block/actor/ConduitBlockActor.h b/src/mc/world/level/block/actor/ConduitBlockActor.h index 4ea6425a75..d0520864b2 100644 --- a/src/mc/world/level/block/actor/ConduitBlockActor.h +++ b/src/mc/world/level/block/actor/ConduitBlockActor.h @@ -88,15 +88,15 @@ class ConduitBlockActor : public ::BlockActor { // NOLINTBEGIN MCAPI void $tick(::BlockSource& region); - MCAPI bool $hasAlphaLayer() const; + MCFOLD bool $hasAlphaLayer() const; MCAPI bool $save(::CompoundTag& tag, ::SaveContext const& saveContext) const; MCAPI void $load(::Level& level, ::CompoundTag const& tag, ::DataLoadHelper& dataLoadHelper); - MCAPI ::std::unique_ptr<::BlockActorDataPacket> $_getUpdatePacket(::BlockSource& region); + MCFOLD ::std::unique_ptr<::BlockActorDataPacket> $_getUpdatePacket(::BlockSource& region); - MCAPI void $_onUpdatePacket(::CompoundTag const& data, ::BlockSource& region); + MCFOLD void $_onUpdatePacket(::CompoundTag const& data, ::BlockSource& region); // NOLINTEND public: diff --git a/src/mc/world/level/block/actor/CreakingHeartBlockActor.h b/src/mc/world/level/block/actor/CreakingHeartBlockActor.h index 81d2922573..b4654eb0a6 100644 --- a/src/mc/world/level/block/actor/CreakingHeartBlockActor.h +++ b/src/mc/world/level/block/actor/CreakingHeartBlockActor.h @@ -69,7 +69,7 @@ class CreakingHeartBlockActor : public ::BlockActor { MCAPI bool $save(::CompoundTag& tag, ::SaveContext const& saveContext) const; - MCAPI bool $saveItemInstanceData(::CompoundTag& tag, ::SaveContext const& saveContext) const; + MCFOLD bool $saveItemInstanceData(::CompoundTag& tag, ::SaveContext const& saveContext) const; MCAPI void $tick(::BlockSource& region); diff --git a/src/mc/world/level/block/actor/DecoratedPotBlockActor.h b/src/mc/world/level/block/actor/DecoratedPotBlockActor.h index 025106e340..41dee7db45 100644 --- a/src/mc/world/level/block/actor/DecoratedPotBlockActor.h +++ b/src/mc/world/level/block/actor/DecoratedPotBlockActor.h @@ -91,7 +91,7 @@ class DecoratedPotBlockActor : public ::RandomizableBlockActorContainer { MCAPI void _setContainedItem(::ItemStack const& item); - MCAPI ::std::array<::std::string, 4> const& getSherdNames() const; + MCFOLD ::std::array<::std::string, 4> const& getSherdNames() const; MCAPI void tryAddItem(::Player& player); // NOLINTEND @@ -144,17 +144,17 @@ class DecoratedPotBlockActor : public ::RandomizableBlockActorContainer { ::std::function onNetIdChanged ); - MCAPI int $getContainerSize() const; + MCFOLD int $getContainerSize() const; - MCAPI int $getMaxStackSize() const; + MCFOLD int $getMaxStackSize() const; MCAPI ::ItemStack const& $getItem(int slot) const; MCAPI void $setItem(int slot, ::ItemStack const& item); - MCAPI ::std::unique_ptr<::BlockActorDataPacket> $_getUpdatePacket(::BlockSource&); + MCFOLD ::std::unique_ptr<::BlockActorDataPacket> $_getUpdatePacket(::BlockSource&); - MCAPI void $_onUpdatePacket(::CompoundTag const& data, ::BlockSource& region); + MCFOLD void $_onUpdatePacket(::CompoundTag const& data, ::BlockSource& region); // NOLINTEND public: diff --git a/src/mc/world/level/block/actor/DispenserBlockActor.h b/src/mc/world/level/block/actor/DispenserBlockActor.h index e803bd2edc..d7e8c2d4c6 100644 --- a/src/mc/world/level/block/actor/DispenserBlockActor.h +++ b/src/mc/world/level/block/actor/DispenserBlockActor.h @@ -111,29 +111,29 @@ class DispenserBlockActor : public ::RandomizableBlockActorContainer { public: // virtual function thunks // NOLINTBEGIN - MCAPI int $getContainerSize() const; + MCFOLD int $getContainerSize() const; - MCAPI ::Container* $getContainer(); + MCFOLD ::Container* $getContainer(); - MCAPI ::Container const* $getContainer() const; + MCFOLD ::Container const* $getContainer() const; MCAPI ::ItemStack const& $getItem(int slot) const; MCAPI void $setItem(int slot, ::ItemStack const& item); - MCAPI int $getMaxStackSize() const; + MCFOLD int $getMaxStackSize() const; MCAPI ::std::string $getName() const; MCAPI void $startOpen(::Player& player); - MCAPI void $stopOpen(::Player& player); + MCFOLD void $stopOpen(::Player& player); MCAPI void $load(::Level& level, ::CompoundTag const& base, ::DataLoadHelper& dataLoadHelper); MCAPI bool $save(::CompoundTag& tag, ::SaveContext const& saveContext) const; - MCAPI void $onMove(); + MCFOLD void $onMove(); MCAPI void $serverInitItemStackIds( int containerSlot, @@ -141,9 +141,9 @@ class DispenserBlockActor : public ::RandomizableBlockActorContainer { ::std::function onNetIdChanged ); - MCAPI ::std::unique_ptr<::BlockActorDataPacket> $_getUpdatePacket(::BlockSource& region); + MCFOLD ::std::unique_ptr<::BlockActorDataPacket> $_getUpdatePacket(::BlockSource& region); - MCAPI void $_onUpdatePacket(::CompoundTag const& data, ::BlockSource& region); + MCFOLD void $_onUpdatePacket(::CompoundTag const& data, ::BlockSource& region); // NOLINTEND public: diff --git a/src/mc/world/level/block/actor/DropperBlockActor.h b/src/mc/world/level/block/actor/DropperBlockActor.h index a870227b61..fb0e87b0c4 100644 --- a/src/mc/world/level/block/actor/DropperBlockActor.h +++ b/src/mc/world/level/block/actor/DropperBlockActor.h @@ -58,9 +58,9 @@ class DropperBlockActor : public ::DispenserBlockActor { // NOLINTBEGIN MCAPI ::std::string $getName() const; - MCAPI ::std::unique_ptr<::BlockActorDataPacket> $_getUpdatePacket(::BlockSource& region); + MCFOLD ::std::unique_ptr<::BlockActorDataPacket> $_getUpdatePacket(::BlockSource& region); - MCAPI void $_onUpdatePacket(::CompoundTag const& data, ::BlockSource& region); + MCFOLD void $_onUpdatePacket(::CompoundTag const& data, ::BlockSource& region); // NOLINTEND public: diff --git a/src/mc/world/level/block/actor/EnchantingTableBlockActor.h b/src/mc/world/level/block/actor/EnchantingTableBlockActor.h index 64cf7e1474..7c078ab2e3 100644 --- a/src/mc/world/level/block/actor/EnchantingTableBlockActor.h +++ b/src/mc/world/level/block/actor/EnchantingTableBlockActor.h @@ -87,9 +87,9 @@ class EnchantingTableBlockActor : public ::BlockActor { MCAPI ::std::string $getName() const; - MCAPI ::std::unique_ptr<::BlockActorDataPacket> $_getUpdatePacket(::BlockSource&); + MCFOLD ::std::unique_ptr<::BlockActorDataPacket> $_getUpdatePacket(::BlockSource&); - MCAPI void $_onUpdatePacket(::CompoundTag const& data, ::BlockSource& region); + MCFOLD void $_onUpdatePacket(::CompoundTag const& data, ::BlockSource& region); // NOLINTEND public: diff --git a/src/mc/world/level/block/actor/EndGatewayBlockActor.h b/src/mc/world/level/block/actor/EndGatewayBlockActor.h index d2c90824b9..f9eabbb439 100644 --- a/src/mc/world/level/block/actor/EndGatewayBlockActor.h +++ b/src/mc/world/level/block/actor/EndGatewayBlockActor.h @@ -115,13 +115,13 @@ class EndGatewayBlockActor : public ::BlockActor { MCAPI void $tick(::BlockSource& region); - MCAPI void $onChanged(::BlockSource& region); + MCFOLD void $onChanged(::BlockSource& region); - MCAPI bool $hasAlphaLayer() const; + MCFOLD bool $hasAlphaLayer() const; MCAPI void $triggerEvent(int b0, int b1); - MCAPI ::std::unique_ptr<::BlockActorDataPacket> $_getUpdatePacket(::BlockSource& region); + MCFOLD ::std::unique_ptr<::BlockActorDataPacket> $_getUpdatePacket(::BlockSource& region); // NOLINTEND public: diff --git a/src/mc/world/level/block/actor/EnderChestBlockActor.h b/src/mc/world/level/block/actor/EnderChestBlockActor.h index f7818fd9a5..418750bfce 100644 --- a/src/mc/world/level/block/actor/EnderChestBlockActor.h +++ b/src/mc/world/level/block/actor/EnderChestBlockActor.h @@ -57,9 +57,9 @@ class EnderChestBlockActor : public ::ChestBlockActor { MCAPI ::std::string $getName() const; - MCAPI bool $canPushInItem(int, int, ::ItemStack const&) const; + MCFOLD bool $canPushInItem(int, int, ::ItemStack const&) const; - MCAPI bool $canPullOutItem(int, int, ::ItemStack const&) const; + MCFOLD bool $canPullOutItem(int, int, ::ItemStack const&) const; MCAPI void $playOpenSound(::BlockSource& region); diff --git a/src/mc/world/level/block/actor/FlowerPotBlockActor.h b/src/mc/world/level/block/actor/FlowerPotBlockActor.h index eb1ecff45b..791ca53915 100644 --- a/src/mc/world/level/block/actor/FlowerPotBlockActor.h +++ b/src/mc/world/level/block/actor/FlowerPotBlockActor.h @@ -49,7 +49,7 @@ class FlowerPotBlockActor : public ::BlockActor { public: // member functions // NOLINTBEGIN - MCAPI ::Block const* getPlantItem() const; + MCFOLD ::Block const* getPlantItem() const; MCAPI void setPlantItem(::Block const* plant); // NOLINTEND @@ -69,9 +69,9 @@ class FlowerPotBlockActor : public ::BlockActor { MCAPI void $onChanged(::BlockSource& region); - MCAPI ::std::unique_ptr<::BlockActorDataPacket> $_getUpdatePacket(::BlockSource&); + MCFOLD ::std::unique_ptr<::BlockActorDataPacket> $_getUpdatePacket(::BlockSource&); - MCAPI void $_onUpdatePacket(::CompoundTag const& data, ::BlockSource& region); + MCFOLD void $_onUpdatePacket(::CompoundTag const& data, ::BlockSource& region); // NOLINTEND public: diff --git a/src/mc/world/level/block/actor/FurnaceBlockActor.h b/src/mc/world/level/block/actor/FurnaceBlockActor.h index 7911a5abb7..272ed6b06a 100644 --- a/src/mc/world/level/block/actor/FurnaceBlockActor.h +++ b/src/mc/world/level/block/actor/FurnaceBlockActor.h @@ -163,25 +163,25 @@ class FurnaceBlockActor : public ::BlockActor, public ::Container { MCAPI void checkForSmeltEverythingAchievement(::BlockSource& region); - MCAPI int getLitDuration() const; + MCFOLD int getLitDuration() const; - MCAPI int getLitTime() const; + MCFOLD int getLitTime() const; MCAPI int getStoredXP() const; - MCAPI int getTickCount() const; + MCFOLD int getTickCount() const; MCAPI bool isEmptiedByHopper(::BlockSource& region); MCAPI void onFurnaceBlockRemoved(::BlockSource& region); - MCAPI void setLitDuration(int value); + MCFOLD void setLitDuration(int value); - MCAPI void setLitTime(int value); + MCFOLD void setLitTime(int value); MCAPI void setStoredXP(int value); - MCAPI void setTickCount(int value); + MCFOLD void setTickCount(int value); MCAPI void storeXPRewardForRemovingWithHopper(::ItemStackBase const& item, int numItemsSmelted); @@ -258,17 +258,17 @@ class FurnaceBlockActor : public ::BlockActor, public ::Container { public: // virtual function thunks // NOLINTBEGIN - MCAPI ::ItemStack const& $getItem(int slot) const; + MCFOLD ::ItemStack const& $getItem(int slot) const; MCAPI void $setItem(int slot, ::ItemStack const& item); MCAPI ::std::string $getName() const; - MCAPI int $getMaxStackSize() const; + MCFOLD int $getMaxStackSize() const; - MCAPI int $getContainerSize() const; + MCFOLD int $getContainerSize() const; - MCAPI void $onRemoved(::BlockSource&); + MCFOLD void $onRemoved(::BlockSource&); MCAPI void $startOpen(::Player& player); @@ -278,9 +278,9 @@ class FurnaceBlockActor : public ::BlockActor, public ::Container { MCAPI bool $canPullOutItem(int slot, int face, ::ItemStack const& item) const; - MCAPI ::Container* $getContainer(); + MCFOLD ::Container* $getContainer(); - MCAPI ::Container const* $getContainer() const; + MCFOLD ::Container const* $getContainer() const; MCAPI void $load(::Level& level, ::CompoundTag const& base, ::DataLoadHelper& dataLoadHelper); @@ -292,7 +292,7 @@ class FurnaceBlockActor : public ::BlockActor, public ::Container { MCAPI void $onNeighborChanged(::BlockSource& region, ::BlockPos const& position); - MCAPI void $onMove(); + MCFOLD void $onMove(); MCAPI void $serverInitItemStackIds( int containerSlot, diff --git a/src/mc/world/level/block/actor/HangingSignBlockActor.h b/src/mc/world/level/block/actor/HangingSignBlockActor.h index 2e01d7ffda..d32c49fca7 100644 --- a/src/mc/world/level/block/actor/HangingSignBlockActor.h +++ b/src/mc/world/level/block/actor/HangingSignBlockActor.h @@ -43,7 +43,7 @@ class HangingSignBlockActor : public ::SignBlockActor { public: // virtual function thunks // NOLINTBEGIN - MCAPI float $getShadowRadius(::BlockSource&) const; + MCFOLD float $getShadowRadius(::BlockSource&) const; // NOLINTEND public: diff --git a/src/mc/world/level/block/actor/HopperBlockActor.h b/src/mc/world/level/block/actor/HopperBlockActor.h index fc7b89d0c7..cccbd01a3a 100644 --- a/src/mc/world/level/block/actor/HopperBlockActor.h +++ b/src/mc/world/level/block/actor/HopperBlockActor.h @@ -148,25 +148,25 @@ class HopperBlockActor : public ::BlockActor, public ::Container, public ::Hoppe MCAPI ::std::string $getName() const; - MCAPI int $getContainerSize() const; + MCFOLD int $getContainerSize() const; - MCAPI int $getMaxStackSize() const; + MCFOLD int $getMaxStackSize() const; - MCAPI void $startOpen(::Player&); + MCFOLD void $startOpen(::Player&); - MCAPI void $stopOpen(::Player& player); + MCFOLD void $stopOpen(::Player& player); - MCAPI ::Container* $getContainer(); + MCFOLD ::Container* $getContainer(); - MCAPI ::Container const* $getContainer() const; + MCFOLD ::Container const* $getContainer() const; - MCAPI void $setContainerChanged(int slot); + MCFOLD void $setContainerChanged(int slot); - MCAPI void $onRemoved(::BlockSource&); + MCFOLD void $onRemoved(::BlockSource&); MCAPI void $onNeighborChanged(::BlockSource& region, ::BlockPos const&); - MCAPI void $onMove(); + MCFOLD void $onMove(); MCAPI void $serverInitItemStackIds( int containerSlot, @@ -174,9 +174,9 @@ class HopperBlockActor : public ::BlockActor, public ::Container, public ::Hoppe ::std::function onNetIdChanged ); - MCAPI ::std::unique_ptr<::BlockActorDataPacket> $_getUpdatePacket(::BlockSource&); + MCFOLD ::std::unique_ptr<::BlockActorDataPacket> $_getUpdatePacket(::BlockSource&); - MCAPI void $_onUpdatePacket(::CompoundTag const& data, ::BlockSource&); + MCFOLD void $_onUpdatePacket(::CompoundTag const& data, ::BlockSource&); // NOLINTEND public: diff --git a/src/mc/world/level/block/actor/ItemFrameBlockActor.h b/src/mc/world/level/block/actor/ItemFrameBlockActor.h index bb0188cf10..c76454d0c6 100644 --- a/src/mc/world/level/block/actor/ItemFrameBlockActor.h +++ b/src/mc/world/level/block/actor/ItemFrameBlockActor.h @@ -86,9 +86,9 @@ class ItemFrameBlockActor : public ::BlockActor { MCAPI void dropFramedItem(::BlockSource& region, bool dropItem, ::Actor* entitySource); - MCAPI ::ItemInstance const& getFramedItem() const; + MCFOLD ::ItemInstance const& getFramedItem() const; - MCAPI float getRotation(); + MCFOLD float getRotation(); MCAPI void rotateFramedItem(::BlockSource& region, ::Actor& entitySource); @@ -128,15 +128,15 @@ class ItemFrameBlockActor : public ::BlockActor { MCAPI bool $save(::CompoundTag& tag, ::SaveContext const& saveContext) const; - MCAPI float $getShadowRadius(::BlockSource&) const; + MCFOLD float $getShadowRadius(::BlockSource&) const; - MCAPI void $onChanged(::BlockSource& region); + MCFOLD void $onChanged(::BlockSource& region); MCAPI void $onRemoved(::BlockSource& region); - MCAPI ::std::unique_ptr<::BlockActorDataPacket> $_getUpdatePacket(::BlockSource&); + MCFOLD ::std::unique_ptr<::BlockActorDataPacket> $_getUpdatePacket(::BlockSource&); - MCAPI void $_onUpdatePacket(::CompoundTag const& data, ::BlockSource& region); + MCFOLD void $_onUpdatePacket(::CompoundTag const& data, ::BlockSource& region); // NOLINTEND public: diff --git a/src/mc/world/level/block/actor/JigsawBlockActor.h b/src/mc/world/level/block/actor/JigsawBlockActor.h index beb968ffec..8daac7c1d0 100644 --- a/src/mc/world/level/block/actor/JigsawBlockActor.h +++ b/src/mc/world/level/block/actor/JigsawBlockActor.h @@ -77,15 +77,15 @@ class JigsawBlockActor : public ::BlockActor { MCAPI bool $save(::CompoundTag& tag, ::SaveContext const& saveContext) const; - MCAPI ::std::vector<::std::string> $getUgcStrings(::CompoundTag const&) const; + MCFOLD ::std::vector<::std::string> $getUgcStrings(::CompoundTag const&) const; - MCAPI void $setUgcStrings(::CompoundTag&, ::std::vector<::std::string> const&) const; + MCFOLD void $setUgcStrings(::CompoundTag&, ::std::vector<::std::string> const&) const; MCAPI void $onChanged(::BlockSource& region); - MCAPI ::std::unique_ptr<::BlockActorDataPacket> $_getUpdatePacket(::BlockSource& region); + MCFOLD ::std::unique_ptr<::BlockActorDataPacket> $_getUpdatePacket(::BlockSource& region); - MCAPI void $_onUpdatePacket(::CompoundTag const& data, ::BlockSource& region); + MCFOLD void $_onUpdatePacket(::CompoundTag const& data, ::BlockSource& region); // NOLINTEND public: diff --git a/src/mc/world/level/block/actor/JukeboxBlockActor.h b/src/mc/world/level/block/actor/JukeboxBlockActor.h index 11af25ab65..0fb4770c4e 100644 --- a/src/mc/world/level/block/actor/JukeboxBlockActor.h +++ b/src/mc/world/level/block/actor/JukeboxBlockActor.h @@ -104,7 +104,7 @@ class JukeboxBlockActor : public ::RandomizableBlockActorContainer { MCAPI void ejectRecord(::BlockSource& region); - MCAPI ::ItemStack const& getRecord() const; + MCFOLD ::ItemStack const& getRecord() const; MCAPI bool isRecordPlaying() const; @@ -136,9 +136,9 @@ class JukeboxBlockActor : public ::RandomizableBlockActorContainer { MCAPI void $tick(::BlockSource& region); - MCAPI int $getContainerSize() const; + MCFOLD int $getContainerSize() const; - MCAPI int $getMaxStackSize() const; + MCFOLD int $getMaxStackSize() const; MCAPI bool $canPushInItem(int, int, ::ItemStack const& item) const; @@ -148,13 +148,13 @@ class JukeboxBlockActor : public ::RandomizableBlockActorContainer { MCAPI void $setItem(int slot, ::ItemStack const& item); - MCAPI void $startOpen(::Player&); + MCFOLD void $startOpen(::Player&); - MCAPI void $stopOpen(::Player& player); + MCFOLD void $stopOpen(::Player& player); - MCAPI ::Container* $getContainer(); + MCFOLD ::Container* $getContainer(); - MCAPI ::Container const* $getContainer() const; + MCFOLD ::Container const* $getContainer() const; MCAPI void $onChanged(::BlockSource& region); diff --git a/src/mc/world/level/block/actor/LabTableReaction.h b/src/mc/world/level/block/actor/LabTableReaction.h index 9047c80944..27cd057a0f 100644 --- a/src/mc/world/level/block/actor/LabTableReaction.h +++ b/src/mc/world/level/block/actor/LabTableReaction.h @@ -44,13 +44,13 @@ class LabTableReaction { public: // member functions // NOLINTBEGIN - MCAPI void addComponent(::std::unique_ptr<::LabTableReactionComponent> comp); + MCFOLD void addComponent(::std::unique_ptr<::LabTableReactionComponent> comp); MCAPI void addResultItem(::ItemStack const& resultItem); - MCAPI int getReactionId(); + MCFOLD int getReactionId(); - MCAPI ::LabTableReactionType getType(); + MCFOLD ::LabTableReactionType getType(); MCAPI bool tick(::BlockSource& region); // NOLINTEND diff --git a/src/mc/world/level/block/actor/LabTableReactionComponent.h b/src/mc/world/level/block/actor/LabTableReactionComponent.h index 17627dbe50..0c6e940c62 100644 --- a/src/mc/world/level/block/actor/LabTableReactionComponent.h +++ b/src/mc/world/level/block/actor/LabTableReactionComponent.h @@ -34,11 +34,11 @@ class LabTableReactionComponent { public: // virtual function thunks // NOLINTBEGIN - MCAPI void $_onStart(::LabTableReaction& owner, ::BlockSource& region); + MCFOLD void $_onStart(::LabTableReaction& owner, ::BlockSource& region); - MCAPI void $_onTick(::LabTableReaction& owner, ::BlockSource& region); + MCFOLD void $_onTick(::LabTableReaction& owner, ::BlockSource& region); - MCAPI void $_onEnd(::LabTableReaction& owner, ::BlockSource& region); + MCFOLD void $_onEnd(::LabTableReaction& owner, ::BlockSource& region); // NOLINTEND public: diff --git a/src/mc/world/level/block/actor/LecternBlockActor.h b/src/mc/world/level/block/actor/LecternBlockActor.h index 003bc7e271..edaef9a1f6 100644 --- a/src/mc/world/level/block/actor/LecternBlockActor.h +++ b/src/mc/world/level/block/actor/LecternBlockActor.h @@ -88,9 +88,9 @@ class LecternBlockActor : public ::BlockActor, public ::Container { MCAPI void dropBook(::BlockSource& region); - MCAPI int getPage() const; + MCFOLD int getPage() const; - MCAPI int getTotalPages() const; + MCFOLD int getTotalPages() const; MCAPI bool hasBook() const; @@ -116,21 +116,21 @@ class LecternBlockActor : public ::BlockActor, public ::Container { public: // virtual function thunks // NOLINTBEGIN - MCAPI ::ItemStack const& $getItem(int slot) const; + MCFOLD ::ItemStack const& $getItem(int slot) const; MCAPI void $setItem(int slot, ::ItemStack const& item); - MCAPI int $getMaxStackSize() const; + MCFOLD int $getMaxStackSize() const; - MCAPI int $getContainerSize() const; + MCFOLD int $getContainerSize() const; - MCAPI void $startOpen(::Player&); + MCFOLD void $startOpen(::Player&); - MCAPI void $stopOpen(::Player& player); + MCFOLD void $stopOpen(::Player& player); - MCAPI ::Container* $getContainer(); + MCFOLD ::Container* $getContainer(); - MCAPI ::Container const* $getContainer() const; + MCFOLD ::Container const* $getContainer() const; MCAPI void $load(::Level& level, ::CompoundTag const& base, ::DataLoadHelper& dataLoadHelper); @@ -144,9 +144,9 @@ class LecternBlockActor : public ::BlockActor, public ::Container { ::std::function onNetIdChanged ); - MCAPI ::std::unique_ptr<::BlockActorDataPacket> $_getUpdatePacket(::BlockSource& region); + MCFOLD ::std::unique_ptr<::BlockActorDataPacket> $_getUpdatePacket(::BlockSource& region); - MCAPI void $_onUpdatePacket(::CompoundTag const& data, ::BlockSource& region); + MCFOLD void $_onUpdatePacket(::CompoundTag const& data, ::BlockSource& region); // NOLINTEND public: diff --git a/src/mc/world/level/block/actor/LodestoneBlockActor.h b/src/mc/world/level/block/actor/LodestoneBlockActor.h index c19ed23f5c..4d75c74764 100644 --- a/src/mc/world/level/block/actor/LodestoneBlockActor.h +++ b/src/mc/world/level/block/actor/LodestoneBlockActor.h @@ -54,7 +54,7 @@ class LodestoneBlockActor : public ::BlockActor { // NOLINTBEGIN MCAPI explicit LodestoneBlockActor(::BlockPos const& pos); - MCAPI ::PositionTrackingId const& getTrackingHandle() const; + MCFOLD ::PositionTrackingId const& getTrackingHandle() const; MCAPI bool hasTrackingHandle() const; @@ -90,9 +90,9 @@ class LodestoneBlockActor : public ::BlockActor { MCAPI bool $save(::CompoundTag& tag, ::SaveContext const& saveContext) const; - MCAPI ::std::unique_ptr<::BlockActorDataPacket> $_getUpdatePacket(::BlockSource& region); + MCFOLD ::std::unique_ptr<::BlockActorDataPacket> $_getUpdatePacket(::BlockSource& region); - MCAPI void $_onUpdatePacket(::CompoundTag const& data, ::BlockSource& region); + MCFOLD void $_onUpdatePacket(::CompoundTag const& data, ::BlockSource& region); // NOLINTEND public: diff --git a/src/mc/world/level/block/actor/MobSpawnerBlockActor.h b/src/mc/world/level/block/actor/MobSpawnerBlockActor.h index 6604d669f0..92056fc929 100644 --- a/src/mc/world/level/block/actor/MobSpawnerBlockActor.h +++ b/src/mc/world/level/block/actor/MobSpawnerBlockActor.h @@ -56,7 +56,7 @@ class MobSpawnerBlockActor : public ::BlockActor { // NOLINTBEGIN MCAPI explicit MobSpawnerBlockActor(::BlockPos const& pos); - MCAPI ::BaseMobSpawner& getSpawner(); + MCFOLD ::BaseMobSpawner& getSpawner(); MCAPI void setMob(::BlockSource& region, ::ActorDefinitionIdentifier const& identifier, ::Actor* usingActor); // NOLINTEND @@ -84,9 +84,9 @@ class MobSpawnerBlockActor : public ::BlockActor { MCAPI void $onRemoved(::BlockSource&); - MCAPI ::std::unique_ptr<::BlockActorDataPacket> $_getUpdatePacket(::BlockSource&); + MCFOLD ::std::unique_ptr<::BlockActorDataPacket> $_getUpdatePacket(::BlockSource&); - MCAPI void $_onUpdatePacket(::CompoundTag const& data, ::BlockSource& region); + MCFOLD void $_onUpdatePacket(::CompoundTag const& data, ::BlockSource& region); // NOLINTEND public: diff --git a/src/mc/world/level/block/actor/MovingBlock.h b/src/mc/world/level/block/actor/MovingBlock.h index 82829d6080..60b41437c6 100644 --- a/src/mc/world/level/block/actor/MovingBlock.h +++ b/src/mc/world/level/block/actor/MovingBlock.h @@ -80,13 +80,13 @@ class MovingBlock : public ::ActorBlock { // NOLINTBEGIN MCAPI void $_addHardCodedBlockComponents(::Experiments const&); - MCAPI ::ItemInstance $asItemInstance(::Block const&, ::BlockActor const*) const; + MCFOLD ::ItemInstance $asItemInstance(::Block const&, ::BlockActor const*) const; MCAPI ::AABB const& $getVisualShapeInWorld(::Block const&, ::IConstBlockSource const& region, ::BlockPos const& pos, ::AABB& bufferAABB) const; - MCAPI bool $pushesUpFallingBlocks() const; + MCFOLD bool $pushesUpFallingBlocks() const; MCAPI ::AABB $getCollisionShape(::Block const&, ::IConstBlockSource const& region, ::BlockPos const& pos, ::optional_ref<::GetCollisionShapeInterface const>) @@ -94,7 +94,7 @@ class MovingBlock : public ::ActorBlock { MCAPI void $updateEntityAfterFallOn(::BlockPos const& pos, ::UpdateEntityAfterFallOnInterface& entity) const; - MCAPI bool $isMovingBlock() const; + MCFOLD bool $isMovingBlock() const; // NOLINTEND public: diff --git a/src/mc/world/level/block/actor/MovingBlockActor.h b/src/mc/world/level/block/actor/MovingBlockActor.h index cf5b5e2cc2..1b645845c7 100644 --- a/src/mc/world/level/block/actor/MovingBlockActor.h +++ b/src/mc/world/level/block/actor/MovingBlockActor.h @@ -81,7 +81,7 @@ class MovingBlockActor : public ::BlockActor { MCAPI ::Vec3 getDrawPos(::IConstBlockSource const& region, float a) const; - MCAPI ::Block const& getWrappedBlock() const; + MCFOLD ::Block const& getWrappedBlock() const; MCAPI void moveCollidedEntities(::PistonBlockActor& pistonBlock, ::BlockSource& region); // NOLINTEND @@ -107,9 +107,9 @@ class MovingBlockActor : public ::BlockActor { MCAPI void $tick(::BlockSource& region); - MCAPI ::PistonBlockActor* $getOwningPiston(::BlockSource& region); + MCFOLD ::PistonBlockActor* $getOwningPiston(::BlockSource& region); - MCAPI ::PistonBlockActor const* $getOwningPiston(::BlockSource& region) const; + MCFOLD ::PistonBlockActor const* $getOwningPiston(::BlockSource& region) const; MCAPI ::AABB $getCollisionShape(::IConstBlockSource const& region) const; @@ -117,9 +117,9 @@ class MovingBlockActor : public ::BlockActor { MCAPI bool $shouldPreserve(::BlockSource& region); - MCAPI ::std::unique_ptr<::BlockActorDataPacket> $_getUpdatePacket(::BlockSource&); + MCFOLD ::std::unique_ptr<::BlockActorDataPacket> $_getUpdatePacket(::BlockSource&); - MCAPI void $_onUpdatePacket(::CompoundTag const& data, ::BlockSource& region); + MCFOLD void $_onUpdatePacket(::CompoundTag const& data, ::BlockSource& region); // NOLINTEND public: diff --git a/src/mc/world/level/block/actor/PistonBlockActor.h b/src/mc/world/level/block/actor/PistonBlockActor.h index 64ff80bf33..8ca497263d 100644 --- a/src/mc/world/level/block/actor/PistonBlockActor.h +++ b/src/mc/world/level/block/actor/PistonBlockActor.h @@ -117,7 +117,7 @@ class PistonBlockActor : public ::BlockActor { MCAPI void _tryFixupStickyPistonArm(::BlockSource& region); - MCAPI ::std::vector<::BlockPos> const& getAttachedBlocks() const; + MCFOLD ::std::vector<::BlockPos> const& getAttachedBlocks() const; MCAPI ::Block const* getCorrectArmBlock() const; @@ -137,7 +137,7 @@ class PistonBlockActor : public ::BlockActor { MCAPI void moveEntityLastProgress(::Actor& entity, ::Vec3 delta); - MCAPI void setShouldVerifyArmType(bool shouldVerify); + MCFOLD void setShouldVerifyArmType(bool shouldVerify); // NOLINTEND public: @@ -169,11 +169,11 @@ class PistonBlockActor : public ::BlockActor { MCAPI void $onRemoved(::BlockSource& region); - MCAPI ::PistonBlockActor* $getOwningPiston(::BlockSource&); + MCFOLD ::PistonBlockActor* $getOwningPiston(::BlockSource&); - MCAPI ::PistonBlockActor const* $getOwningPiston(::BlockSource&) const; + MCFOLD ::PistonBlockActor const* $getOwningPiston(::BlockSource&) const; - MCAPI ::std::unique_ptr<::BlockActorDataPacket> $_getUpdatePacket(::BlockSource&); + MCFOLD ::std::unique_ptr<::BlockActorDataPacket> $_getUpdatePacket(::BlockSource&); MCAPI void $_onUpdatePacket(::CompoundTag const& data, ::BlockSource& region); // NOLINTEND diff --git a/src/mc/world/level/block/actor/RandomizableBlockActorContainer.h b/src/mc/world/level/block/actor/RandomizableBlockActorContainer.h index 65c5f0706b..f6b4cbc543 100644 --- a/src/mc/world/level/block/actor/RandomizableBlockActorContainer.h +++ b/src/mc/world/level/block/actor/RandomizableBlockActorContainer.h @@ -69,17 +69,17 @@ class RandomizableBlockActorContainer : public ::RandomizableBlockActorContainer public: // virtual function thunks // NOLINTBEGIN - MCAPI void $setContainerChanged(int slot); + MCFOLD void $setContainerChanged(int slot); MCAPI void $startOpen(::Player& player); - MCAPI void $dropSlotContent(::BlockSource& region, ::Vec3 const& pos, bool randomizeDrop, int slot); + MCFOLD void $dropSlotContent(::BlockSource& region, ::Vec3 const& pos, bool randomizeDrop, int slot); - MCAPI void $dropContents(::BlockSource& region, ::Vec3 const& pos, bool randomizeDrop); + MCFOLD void $dropContents(::BlockSource& region, ::Vec3 const& pos, bool randomizeDrop); - MCAPI void $onRemoved(::BlockSource&); + MCFOLD void $onRemoved(::BlockSource&); - MCAPI void $initializeContainerContents(::BlockSource& region); + MCFOLD void $initializeContainerContents(::BlockSource& region); // NOLINTEND public: diff --git a/src/mc/world/level/block/actor/RandomizableBlockActorFillingContainer.h b/src/mc/world/level/block/actor/RandomizableBlockActorFillingContainer.h index 3d424b0a47..bb6f95d1d0 100644 --- a/src/mc/world/level/block/actor/RandomizableBlockActorFillingContainer.h +++ b/src/mc/world/level/block/actor/RandomizableBlockActorFillingContainer.h @@ -75,17 +75,17 @@ class RandomizableBlockActorFillingContainer : public ::RandomizableBlockActorCo public: // virtual function thunks // NOLINTBEGIN - MCAPI void $setContainerChanged(int slot); + MCFOLD void $setContainerChanged(int slot); MCAPI void $startOpen(::Player& player); - MCAPI void $dropSlotContent(::BlockSource& region, ::Vec3 const& pos, bool randomizeDrop, int slot); + MCFOLD void $dropSlotContent(::BlockSource& region, ::Vec3 const& pos, bool randomizeDrop, int slot); - MCAPI void $dropContents(::BlockSource& region, ::Vec3 const& pos, bool randomizeDrop); + MCFOLD void $dropContents(::BlockSource& region, ::Vec3 const& pos, bool randomizeDrop); - MCAPI void $onRemoved(::BlockSource&); + MCFOLD void $onRemoved(::BlockSource&); - MCAPI void $initializeContainerContents(::BlockSource& region); + MCFOLD void $initializeContainerContents(::BlockSource& region); // NOLINTEND public: diff --git a/src/mc/world/level/block/actor/SculkCatalystBlockActor.h b/src/mc/world/level/block/actor/SculkCatalystBlockActor.h index 3d0e6bcdfb..cd64328881 100644 --- a/src/mc/world/level/block/actor/SculkCatalystBlockActor.h +++ b/src/mc/world/level/block/actor/SculkCatalystBlockActor.h @@ -73,7 +73,7 @@ class SculkCatalystBlockActor : public ::BlockActor, public ::GameEventListener MCAPI void _tryConsumeOnDeathExperience(::Level& level, ::Actor& actor); - MCAPI ::SculkSpreader& getSculkSpreader(); + MCFOLD ::SculkSpreader& getSculkSpreader(); // NOLINTEND public: @@ -110,11 +110,11 @@ class SculkCatalystBlockActor : public ::BlockActor, public ::GameEventListener MCAPI void $handleGameEvent(::GameEvent const& gameEvent, ::GameEventContext const& gameEventContext, ::BlockSource& region); - MCAPI ::GameEvents::PositionSource const& $getPositionSource() const; + MCFOLD ::GameEvents::PositionSource const& $getPositionSource() const; - MCAPI uint $getRange() const; + MCFOLD uint $getRange() const; - MCAPI ::GameEventListener::DeliveryMode $getDeliveryMode() const; + MCFOLD ::GameEventListener::DeliveryMode $getDeliveryMode() const; // NOLINTEND public: diff --git a/src/mc/world/level/block/actor/SculkSensorBlockActor.h b/src/mc/world/level/block/actor/SculkSensorBlockActor.h index fd924d1c9c..1d954e5a31 100644 --- a/src/mc/world/level/block/actor/SculkSensorBlockActor.h +++ b/src/mc/world/level/block/actor/SculkSensorBlockActor.h @@ -88,9 +88,9 @@ class SculkSensorBlockActor : public ::BlockActor { MCAPI void $load(::Level& level, ::CompoundTag const& tag, ::DataLoadHelper& dataLoadHelper); - MCAPI void $tick(::BlockSource& region); + MCFOLD void $tick(::BlockSource& region); - MCAPI void $onRemoved(::BlockSource& region); + MCFOLD void $onRemoved(::BlockSource& region); // NOLINTEND public: diff --git a/src/mc/world/level/block/actor/SculkSensorVibrationConfig.h b/src/mc/world/level/block/actor/SculkSensorVibrationConfig.h index 9dc2fe6d66..06edadfc2f 100644 --- a/src/mc/world/level/block/actor/SculkSensorVibrationConfig.h +++ b/src/mc/world/level/block/actor/SculkSensorVibrationConfig.h @@ -79,9 +79,9 @@ class SculkSensorVibrationConfig : public ::VibrationListenerConfig { MCAPI bool $shouldListen(::BlockSource& region, ::GameEvent const& gameEvent, ::GameEventContext const& gameEventContext); - MCAPI void $onSerializableDataChanged(::BlockSource& region); + MCFOLD void $onSerializableDataChanged(::BlockSource& region); - MCAPI bool $canReceiveOnlyIfAdjacentChunksAreTicking() const; + MCFOLD bool $canReceiveOnlyIfAdjacentChunksAreTicking() const; // NOLINTEND public: diff --git a/src/mc/world/level/block/actor/SculkShriekerBlockActor.h b/src/mc/world/level/block/actor/SculkShriekerBlockActor.h index c3b263eca5..a149385ca1 100644 --- a/src/mc/world/level/block/actor/SculkShriekerBlockActor.h +++ b/src/mc/world/level/block/actor/SculkShriekerBlockActor.h @@ -102,9 +102,9 @@ class SculkShriekerBlockActor : public ::BlockActor { public: // virtual function thunks // NOLINTBEGIN - MCAPI void $tick(::BlockSource& region); + MCFOLD void $tick(::BlockSource& region); - MCAPI void $onRemoved(::BlockSource& region); + MCFOLD void $onRemoved(::BlockSource& region); MCAPI void $load(::Level& level, ::CompoundTag const& tag, ::DataLoadHelper& dataLoadHelper); diff --git a/src/mc/world/level/block/actor/SculkShriekerVibrationConfig.h b/src/mc/world/level/block/actor/SculkShriekerVibrationConfig.h index 691a232c2d..f4b16dfe21 100644 --- a/src/mc/world/level/block/actor/SculkShriekerVibrationConfig.h +++ b/src/mc/world/level/block/actor/SculkShriekerVibrationConfig.h @@ -79,9 +79,9 @@ class SculkShriekerVibrationConfig : public ::VibrationListenerConfig { ::Actor* projectileOwner ); - MCAPI void $onSerializableDataChanged(::BlockSource& region); + MCFOLD void $onSerializableDataChanged(::BlockSource& region); - MCAPI bool $canReceiveOnlyIfAdjacentChunksAreTicking() const; + MCFOLD bool $canReceiveOnlyIfAdjacentChunksAreTicking() const; MCAPI bool $isValidVibration(::GameEvent const& gameEvent); // NOLINTEND diff --git a/src/mc/world/level/block/actor/ShulkerBoxBlockActor.h b/src/mc/world/level/block/actor/ShulkerBoxBlockActor.h index 217d4df2f5..657d65f54a 100644 --- a/src/mc/world/level/block/actor/ShulkerBoxBlockActor.h +++ b/src/mc/world/level/block/actor/ShulkerBoxBlockActor.h @@ -102,7 +102,7 @@ class ShulkerBoxBlockActor : public ::ChestBlockActor { MCAPI void setFacingDir(uchar facing); - MCAPI void setupRedstoneComponent(::BlockSource& region) const; + MCFOLD void setupRedstoneComponent(::BlockSource& region) const; // NOLINTEND public: @@ -135,9 +135,9 @@ class ShulkerBoxBlockActor : public ::ChestBlockActor { // NOLINTBEGIN MCAPI ::std::string $getName() const; - MCAPI int $getMaxStackSize() const; + MCFOLD int $getMaxStackSize() const; - MCAPI void $onPlace(::BlockSource& region); + MCFOLD void $onPlace(::BlockSource& region); MCAPI void $load(::Level& level, ::CompoundTag const& base, ::DataLoadHelper& dataLoadHelper); @@ -151,9 +151,9 @@ class ShulkerBoxBlockActor : public ::ChestBlockActor { MCAPI void $stopOpen(::Player& player); - MCAPI ::std::unique_ptr<::BlockActorDataPacket> $_getUpdatePacket(::BlockSource&); + MCFOLD ::std::unique_ptr<::BlockActorDataPacket> $_getUpdatePacket(::BlockSource&); - MCAPI void $_onUpdatePacket(::CompoundTag const& data, ::BlockSource& region); + MCFOLD void $_onUpdatePacket(::CompoundTag const& data, ::BlockSource& region); MCAPI void $playOpenSound(::BlockSource& region); @@ -161,7 +161,7 @@ class ShulkerBoxBlockActor : public ::ChestBlockActor { MCAPI ::AABB $getObstructionAABB() const; - MCAPI bool $_detectEntityObstruction(::BlockSource& region) const; + MCFOLD bool $_detectEntityObstruction(::BlockSource& region) const; // NOLINTEND public: diff --git a/src/mc/world/level/block/actor/SignBlockActor.h b/src/mc/world/level/block/actor/SignBlockActor.h index a05f090923..ab63671524 100644 --- a/src/mc/world/level/block/actor/SignBlockActor.h +++ b/src/mc/world/level/block/actor/SignBlockActor.h @@ -59,15 +59,15 @@ class SignBlockActor : public ::BlockActor { public: // constructor thunks // NOLINTBEGIN - MCAPI void* $ctor(); + MCFOLD void* $ctor(); - MCAPI void* $ctor(::SignBlockActor::CachedLineData&&); + MCFOLD void* $ctor(::SignBlockActor::CachedLineData&&); // NOLINTEND public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; @@ -232,7 +232,7 @@ class SignBlockActor : public ::BlockActor { MCAPI bool getIsLockedForEditing(::ILevel& level); - MCAPI bool getIsWaxed() const; + MCFOLD bool getIsWaxed() const; MCAPI ::std::string const& getMessage(::SignTextSide side) const; @@ -280,7 +280,7 @@ class SignBlockActor : public ::BlockActor { MCAPI void $load(::Level& level, ::CompoundTag const& tag, ::DataLoadHelper& dataLoadHelper); - MCAPI void $onChanged(::BlockSource& region); + MCFOLD void $onChanged(::BlockSource& region); MCAPI float $getShadowRadius(::BlockSource& region) const; diff --git a/src/mc/world/level/block/actor/SkullBlockActor.h b/src/mc/world/level/block/actor/SkullBlockActor.h index 27fb52b4f0..d0ef7331e5 100644 --- a/src/mc/world/level/block/actor/SkullBlockActor.h +++ b/src/mc/world/level/block/actor/SkullBlockActor.h @@ -83,13 +83,13 @@ class SkullBlockActor : public ::BlockActor { MCAPI void $load(::Level& level, ::CompoundTag const& tag, ::DataLoadHelper& dataLoadHelper); - MCAPI void $onChanged(::BlockSource& region); + MCFOLD void $onChanged(::BlockSource& region); MCAPI void $tick(::BlockSource& region); - MCAPI ::std::unique_ptr<::BlockActorDataPacket> $_getUpdatePacket(::BlockSource& region); + MCFOLD ::std::unique_ptr<::BlockActorDataPacket> $_getUpdatePacket(::BlockSource& region); - MCAPI void $_onUpdatePacket(::CompoundTag const& data, ::BlockSource& region); + MCFOLD void $_onUpdatePacket(::CompoundTag const& data, ::BlockSource& region); // NOLINTEND public: diff --git a/src/mc/world/level/block/actor/StructureBlockActor.h b/src/mc/world/level/block/actor/StructureBlockActor.h index 749202fbde..7b10ed4eb0 100644 --- a/src/mc/world/level/block/actor/StructureBlockActor.h +++ b/src/mc/world/level/block/actor/StructureBlockActor.h @@ -60,7 +60,7 @@ class StructureBlockActor : public ::BlockActor { MCAPI bool _saveStructure(::BlockSource& region, ::BlockPos const& position, bool redstoneTriggered); - MCAPI ::StructureEditorData const& getStructureData() const; + MCFOLD ::StructureEditorData const& getStructureData() const; MCAPI void setIsWaterlogged(bool waterlogged); @@ -102,9 +102,9 @@ class StructureBlockActor : public ::BlockActor { MCAPI void $onChanged(::BlockSource& region); - MCAPI ::std::unique_ptr<::BlockActorDataPacket> $_getUpdatePacket(::BlockSource& region); + MCFOLD ::std::unique_ptr<::BlockActorDataPacket> $_getUpdatePacket(::BlockSource& region); - MCAPI void $_onUpdatePacket(::CompoundTag const& data, ::BlockSource& region); + MCFOLD void $_onUpdatePacket(::CompoundTag const& data, ::BlockSource& region); // NOLINTEND public: diff --git a/src/mc/world/level/block/actor/VaultBlockActor.h b/src/mc/world/level/block/actor/VaultBlockActor.h index 1f9ac2d53c..d969f2c9ff 100644 --- a/src/mc/world/level/block/actor/VaultBlockActor.h +++ b/src/mc/world/level/block/actor/VaultBlockActor.h @@ -120,7 +120,7 @@ class VaultBlockActor : public ::BlockActor { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/world/level/block/block_descriptor_serializer/StatesProxy.h b/src/mc/world/level/block/block_descriptor_serializer/StatesProxy.h index aafb274c2d..7f3e794bbd 100644 --- a/src/mc/world/level/block/block_descriptor_serializer/StatesProxy.h +++ b/src/mc/world/level/block/block_descriptor_serializer/StatesProxy.h @@ -47,7 +47,7 @@ struct StatesProxy { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/world/level/block/block_descriptor_serializer/TagsProxy.h b/src/mc/world/level/block/block_descriptor_serializer/TagsProxy.h index 684e8ab042..f4dad26dfd 100644 --- a/src/mc/world/level/block/block_descriptor_serializer/TagsProxy.h +++ b/src/mc/world/level/block/block_descriptor_serializer/TagsProxy.h @@ -19,11 +19,11 @@ struct TagsProxy { public: // member functions // NOLINTBEGIN - MCAPI void fromString(::std::string const& expression); + MCFOLD void fromString(::std::string const& expression); - MCAPI ::BlockDescriptorSerializer::TagsProxy& operator=(::BlockDescriptorSerializer::TagsProxy const&); + MCFOLD ::BlockDescriptorSerializer::TagsProxy& operator=(::BlockDescriptorSerializer::TagsProxy const&); - MCAPI ::BlockDescriptorSerializer::TagsProxy& operator=(::BlockDescriptorSerializer::TagsProxy&&); + MCFOLD ::BlockDescriptorSerializer::TagsProxy& operator=(::BlockDescriptorSerializer::TagsProxy&&); MCAPI ~TagsProxy(); // NOLINTEND @@ -31,7 +31,7 @@ struct TagsProxy { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/world/level/block/block_events/BlockEntityFallOnEvent.h b/src/mc/world/level/block/block_events/BlockEntityFallOnEvent.h index c5b8c59cab..d2ccceb079 100644 --- a/src/mc/world/level/block/block_events/BlockEntityFallOnEvent.h +++ b/src/mc/world/level/block/block_events/BlockEntityFallOnEvent.h @@ -53,13 +53,13 @@ class BlockEntityFallOnEvent : public ::BlockEvents::BlockEventBase { MCAPI void configureRenderParamsForTrigger(::RenderParams& params) const; - MCAPI ::Actor const& getActor() const; + MCFOLD ::Actor const& getActor() const; - MCAPI float getFallDistance() const; + MCFOLD float getFallDistance() const; MCAPI void handleActorFallDamage(float distance, float multiplier, ::ActorDamageSource source); - MCAPI bool isClientSide() const; + MCFOLD bool isClientSide() const; MCAPI void postFallOnGameEvent(); @@ -79,13 +79,13 @@ class BlockEntityFallOnEvent : public ::BlockEvents::BlockEventBase { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND public: // virtual function thunks // NOLINTBEGIN - MCAPI ::BlockSource const& $getBlockSource() const; + MCFOLD ::BlockSource const& $getBlockSource() const; // NOLINTEND public: diff --git a/src/mc/world/level/block/block_events/BlockEventManager.h b/src/mc/world/level/block/block_events/BlockEventManager.h index fcf0f1a8de..93faaeda2a 100644 --- a/src/mc/world/level/block/block_events/BlockEventManager.h +++ b/src/mc/world/level/block/block_events/BlockEventManager.h @@ -39,7 +39,7 @@ class BlockEventManager { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/world/level/block/block_events/BlockPlaceEvent.h b/src/mc/world/level/block/block_events/BlockPlaceEvent.h index 5815cc4c82..3c28de48e8 100644 --- a/src/mc/world/level/block/block_events/BlockPlaceEvent.h +++ b/src/mc/world/level/block/block_events/BlockPlaceEvent.h @@ -48,13 +48,13 @@ class BlockPlaceEvent : public ::BlockEvents::BlockEventBase { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND public: // virtual function thunks // NOLINTBEGIN - MCAPI ::BlockSource const& $getBlockSource() const; + MCFOLD ::BlockSource const& $getBlockSource() const; // NOLINTEND public: diff --git a/src/mc/world/level/block/block_events/BlockPlayerDestroyEvent.h b/src/mc/world/level/block/block_events/BlockPlayerDestroyEvent.h index 91472b8db5..6b988aff36 100644 --- a/src/mc/world/level/block/block_events/BlockPlayerDestroyEvent.h +++ b/src/mc/world/level/block/block_events/BlockPlayerDestroyEvent.h @@ -47,9 +47,9 @@ class BlockPlayerDestroyEvent : public ::BlockEvents::BlockEventBase { MCAPI void configureRenderParamsForTrigger(::RenderParams& params) const; - MCAPI ::Player const& getPlayer() const; + MCFOLD ::Player const& getPlayer() const; - MCAPI bool isClientSide() const; + MCFOLD bool isClientSide() const; // NOLINTEND public: @@ -61,13 +61,13 @@ class BlockPlayerDestroyEvent : public ::BlockEvents::BlockEventBase { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND public: // virtual function thunks // NOLINTBEGIN - MCAPI ::BlockSource const& $getBlockSource() const; + MCFOLD ::BlockSource const& $getBlockSource() const; // NOLINTEND public: diff --git a/src/mc/world/level/block/block_events/BlockPlayerInteractEvent.h b/src/mc/world/level/block/block_events/BlockPlayerInteractEvent.h index d0c66e2969..964687460e 100644 --- a/src/mc/world/level/block/block_events/BlockPlayerInteractEvent.h +++ b/src/mc/world/level/block/block_events/BlockPlayerInteractEvent.h @@ -46,9 +46,9 @@ class BlockPlayerInteractEvent : public ::BlockEvents::BlockEventBase { // NOLINTBEGIN MCAPI void configureRenderParamsForTrigger(::RenderParams& params); - MCAPI ::Player const& getPlayer() const; + MCFOLD ::Player const& getPlayer() const; - MCAPI bool isClientSide() const; + MCFOLD bool isClientSide() const; MCAPI bool isInteractionFailure() const; @@ -62,13 +62,13 @@ class BlockPlayerInteractEvent : public ::BlockEvents::BlockEventBase { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND public: // virtual function thunks // NOLINTBEGIN - MCAPI ::BlockSource const& $getBlockSource() const; + MCFOLD ::BlockSource const& $getBlockSource() const; // NOLINTEND public: diff --git a/src/mc/world/level/block/block_events/BlockPlayerPlacingEvent.h b/src/mc/world/level/block/block_events/BlockPlayerPlacingEvent.h index 45435c002c..9ca1ba1db4 100644 --- a/src/mc/world/level/block/block_events/BlockPlayerPlacingEvent.h +++ b/src/mc/world/level/block/block_events/BlockPlayerPlacingEvent.h @@ -58,13 +58,13 @@ class BlockPlayerPlacingEvent : public ::BlockEvents::BlockEventBase { MCAPI void configureRenderParamsForTrigger(::RenderParams& params); - MCAPI ::Actor const& getActor() const; + MCFOLD ::Actor const& getActor() const; MCAPI ::Block const& getPermutationToPlace() const; - MCAPI bool isCancelled() const; + MCFOLD bool isCancelled() const; - MCAPI bool isClientSide() const; + MCFOLD bool isClientSide() const; MCAPI void setPermutationToPlace(::Block const& perm); // NOLINTEND @@ -84,13 +84,13 @@ class BlockPlayerPlacingEvent : public ::BlockEvents::BlockEventBase { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND public: // virtual function thunks // NOLINTBEGIN - MCAPI ::BlockSource const& $getBlockSource() const; + MCFOLD ::BlockSource const& $getBlockSource() const; // NOLINTEND public: diff --git a/src/mc/world/level/block/block_events/BlockQueuedTickEvent.h b/src/mc/world/level/block/block_events/BlockQueuedTickEvent.h index b0e5c4f3a1..8f37e2a17c 100644 --- a/src/mc/world/level/block/block_events/BlockQueuedTickEvent.h +++ b/src/mc/world/level/block/block_events/BlockQueuedTickEvent.h @@ -41,21 +41,21 @@ class BlockQueuedTickEvent : public ::BlockEvents::BlockEventBase { public: // member functions // NOLINTBEGIN - MCAPI void configureRenderParamsForTrigger(::RenderParams& params) const; + MCFOLD void configureRenderParamsForTrigger(::RenderParams& params) const; - MCAPI bool isClientSide() const; + MCFOLD bool isClientSide() const; // NOLINTEND public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND public: // virtual function thunks // NOLINTBEGIN - MCAPI ::BlockSource const& $getBlockSource() const; + MCFOLD ::BlockSource const& $getBlockSource() const; // NOLINTEND public: diff --git a/src/mc/world/level/block/block_events/BlockRandomTickEvent.h b/src/mc/world/level/block/block_events/BlockRandomTickEvent.h index a9344a06ce..8aea1423bf 100644 --- a/src/mc/world/level/block/block_events/BlockRandomTickEvent.h +++ b/src/mc/world/level/block/block_events/BlockRandomTickEvent.h @@ -40,21 +40,21 @@ class BlockRandomTickEvent : public ::BlockEvents::BlockEventBase { public: // member functions // NOLINTBEGIN - MCAPI void configureRenderParamsForTrigger(::RenderParams& params) const; + MCFOLD void configureRenderParamsForTrigger(::RenderParams& params) const; - MCAPI bool isClientSide() const; + MCFOLD bool isClientSide() const; // NOLINTEND public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND public: // virtual function thunks // NOLINTBEGIN - MCAPI ::BlockSource const& $getBlockSource() const; + MCFOLD ::BlockSource const& $getBlockSource() const; // NOLINTEND public: diff --git a/src/mc/world/level/block/block_events/BlockStepOffEvent.h b/src/mc/world/level/block/block_events/BlockStepOffEvent.h index 56c63aa2f0..3f5e665b70 100644 --- a/src/mc/world/level/block/block_events/BlockStepOffEvent.h +++ b/src/mc/world/level/block/block_events/BlockStepOffEvent.h @@ -40,23 +40,23 @@ class BlockStepOffEvent : public ::BlockEvents::BlockEventBase { public: // member functions // NOLINTBEGIN - MCAPI void configureRenderParamsForTrigger(::RenderParams& params) const; + MCFOLD void configureRenderParamsForTrigger(::RenderParams& params) const; - MCAPI ::Actor const& getEntity() const; + MCFOLD ::Actor const& getEntity() const; - MCAPI bool isClientSide() const; + MCFOLD bool isClientSide() const; // NOLINTEND public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND public: // virtual function thunks // NOLINTBEGIN - MCAPI ::BlockSource const& $getBlockSource() const; + MCFOLD ::BlockSource const& $getBlockSource() const; // NOLINTEND public: diff --git a/src/mc/world/level/block/block_events/BlockStepOnEvent.h b/src/mc/world/level/block/block_events/BlockStepOnEvent.h index 3bfb514e6b..2d53fbb483 100644 --- a/src/mc/world/level/block/block_events/BlockStepOnEvent.h +++ b/src/mc/world/level/block/block_events/BlockStepOnEvent.h @@ -40,23 +40,23 @@ class BlockStepOnEvent : public ::BlockEvents::BlockEventBase { public: // member functions // NOLINTBEGIN - MCAPI void configureRenderParamsForTrigger(::RenderParams& params) const; + MCFOLD void configureRenderParamsForTrigger(::RenderParams& params) const; - MCAPI ::Actor const& getEntity() const; + MCFOLD ::Actor const& getEntity() const; - MCAPI bool isClientSide() const; + MCFOLD bool isClientSide() const; // NOLINTEND public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND public: // virtual function thunks // NOLINTBEGIN - MCAPI ::BlockSource const& $getBlockSource() const; + MCFOLD ::BlockSource const& $getBlockSource() const; // NOLINTEND public: diff --git a/src/mc/world/level/block/components/BlockBreathabilityDescription.h b/src/mc/world/level/block/components/BlockBreathabilityDescription.h index 6bb3aa0ae1..9c47378aee 100644 --- a/src/mc/world/level/block/components/BlockBreathabilityDescription.h +++ b/src/mc/world/level/block/components/BlockBreathabilityDescription.h @@ -69,7 +69,7 @@ struct BlockBreathabilityDescription : public ::BlockComponentDescription { // NOLINTBEGIN MCAPI ::std::string const& $getName() const; - MCAPI bool $isNetworkComponent() const; + MCFOLD bool $isNetworkComponent() const; MCAPI ::std::unique_ptr<::CompoundTag> $buildNetworkTag(::cereal::ReflectionCtx const& ctx) const; diff --git a/src/mc/world/level/block/components/BlockCollisionBoxDescription.h b/src/mc/world/level/block/components/BlockCollisionBoxDescription.h index ce6f919916..1bd995e296 100644 --- a/src/mc/world/level/block/components/BlockCollisionBoxDescription.h +++ b/src/mc/world/level/block/components/BlockCollisionBoxDescription.h @@ -87,7 +87,7 @@ struct BlockCollisionBoxDescription : public ::BlockComponentDescription { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND public: @@ -97,13 +97,13 @@ struct BlockCollisionBoxDescription : public ::BlockComponentDescription { MCAPI void $initializeComponent(::BlockComponentStorage& blockComponentStorage) const; - MCAPI void $initializeComponentFromCode(::BlockComponentStorage& blockComponentStorage) const; + MCFOLD void $initializeComponentFromCode(::BlockComponentStorage& blockComponentStorage) const; - MCAPI bool $isNetworkComponent() const; + MCFOLD bool $isNetworkComponent() const; - MCAPI ::std::unique_ptr<::CompoundTag> $buildNetworkTag(::cereal::ReflectionCtx const& ctx) const; + MCFOLD ::std::unique_ptr<::CompoundTag> $buildNetworkTag(::cereal::ReflectionCtx const& ctx) const; - MCAPI void $initializeFromNetwork(::CompoundTag const& tag, ::cereal::ReflectionCtx const& ctx); + MCFOLD void $initializeFromNetwork(::CompoundTag const& tag, ::cereal::ReflectionCtx const& ctx); // NOLINTEND public: diff --git a/src/mc/world/level/block/components/BlockComponentDescription.h b/src/mc/world/level/block/components/BlockComponentDescription.h index 8b1c98a41c..cc80ba36e3 100644 --- a/src/mc/world/level/block/components/BlockComponentDescription.h +++ b/src/mc/world/level/block/components/BlockComponentDescription.h @@ -75,41 +75,41 @@ struct BlockComponentDescription { public: // static functions // NOLINTBEGIN - MCAPI static void registerVersionUpgrades(::CerealSchemaUpgradeSet& schemaUpgrades); + MCFOLD static void registerVersionUpgrades(::CerealSchemaUpgradeSet& schemaUpgrades); // NOLINTEND public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND public: // virtual function thunks // NOLINTBEGIN - MCAPI ::std::string const& $getName() const; + MCFOLD ::std::string const& $getName() const; - MCAPI void $initializeComponent(::EntityContext& entity) const; + MCFOLD void $initializeComponent(::EntityContext& entity) const; - MCAPI void $initializeComponent(::BlockComponentStorage& blockComponentStorage) const; + MCFOLD void $initializeComponent(::BlockComponentStorage& blockComponentStorage) const; - MCAPI void $initializeComponentFromCode(::EntityContext& entity) const; + MCFOLD void $initializeComponentFromCode(::EntityContext& entity) const; - MCAPI void $initializeComponentFromCode(::BlockComponentStorage& blockComponentStorage) const; + MCFOLD void $initializeComponentFromCode(::BlockComponentStorage& blockComponentStorage) const; - MCAPI void $buildSchema( + MCFOLD void $buildSchema( ::std::shared_ptr<::JsonUtil::JsonSchemaObjectNode<::JsonUtil::EmptyClass, ::BlockComponentGroupDescription>>& componentSchema, ::BlockComponentFactory const& factory ) const; - MCAPI bool $isNetworkComponent() const; + MCFOLD bool $isNetworkComponent() const; - MCAPI ::std::unique_ptr<::CompoundTag> $buildNetworkTag(::cereal::ReflectionCtx const& ctx) const; + MCFOLD ::std::unique_ptr<::CompoundTag> $buildNetworkTag(::cereal::ReflectionCtx const& ctx) const; - MCAPI void $initializeFromNetwork(::CompoundTag const& tag, ::cereal::ReflectionCtx const& ctx); + MCFOLD void $initializeFromNetwork(::CompoundTag const& tag, ::cereal::ReflectionCtx const& ctx); - MCAPI void $handleVersionBasedInitialization(::SemVersion const& originalJsonVersion); + MCFOLD void $handleVersionBasedInitialization(::SemVersion const& originalJsonVersion); // NOLINTEND public: diff --git a/src/mc/world/level/block/components/BlockComponentDirectData.h b/src/mc/world/level/block/components/BlockComponentDirectData.h index bde210cdc6..f4172521a3 100644 --- a/src/mc/world/level/block/components/BlockComponentDirectData.h +++ b/src/mc/world/level/block/components/BlockComponentDirectData.h @@ -57,25 +57,25 @@ struct BlockComponentDirectData { // NOLINTBEGIN MCAPI void _finalizeInit(::Block const& block); - MCAPI bool _useNewTessellationInternal() const; + MCFOLD bool _useNewTessellationInternal() const; - MCAPI ::BlockCollisionBoxComponent const* blockCollisionBoxComponent() const; + MCFOLD ::BlockCollisionBoxComponent const* blockCollisionBoxComponent() const; - MCAPI ::BlockSelectionBoxComponent const* blockSelectionBoxComponent() const; + MCFOLD ::BlockSelectionBoxComponent const* blockSelectionBoxComponent() const; - MCAPI ::BlockDestructibleByMiningComponent const* destructibleByMiningComponent() const; + MCFOLD ::BlockDestructibleByMiningComponent const* destructibleByMiningComponent() const; MCAPI void finalize(::Block const& block, ::BlockComponentDirectData::LayerBitMask layersToFinalize); - MCAPI int getBurnOdds() const; + MCFOLD int getBurnOdds() const; MCAPI float getDestroySpeed() const; - MCAPI float getExplosionResistance() const; + MCFOLD float getExplosionResistance() const; - MCAPI int getFlameOdds() const; + MCFOLD int getFlameOdds() const; - MCAPI float getFriction() const; + MCFOLD float getFriction() const; MCAPI ::Brightness light() const; diff --git a/src/mc/world/level/block/components/BlockComponentStorage.h b/src/mc/world/level/block/components/BlockComponentStorage.h index 29a9f80ecc..a69acc16d1 100644 --- a/src/mc/world/level/block/components/BlockComponentStorage.h +++ b/src/mc/world/level/block/components/BlockComponentStorage.h @@ -55,9 +55,9 @@ class BlockComponentStorage { MCAPI void allowTryGetComponentBeforeFinalization(); - MCAPI void finalizeComponents(); + MCFOLD void finalizeComponents(); - MCAPI bool modificationIsAllowed() const; + MCFOLD bool modificationIsAllowed() const; MCAPI ~BlockComponentStorage(); // NOLINTEND @@ -65,6 +65,6 @@ class BlockComponentStorage { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/world/level/block/components/BlockCraftingTableDescription.h b/src/mc/world/level/block/components/BlockCraftingTableDescription.h index cc8c84004d..dc40853709 100644 --- a/src/mc/world/level/block/components/BlockCraftingTableDescription.h +++ b/src/mc/world/level/block/components/BlockCraftingTableDescription.h @@ -74,7 +74,7 @@ struct BlockCraftingTableDescription : public ::BlockComponentDescription { MCAPI void $initializeComponent(::BlockComponentStorage& blockComponentStorage) const; - MCAPI bool $isNetworkComponent() const; + MCFOLD bool $isNetworkComponent() const; MCAPI ::std::unique_ptr<::CompoundTag> $buildNetworkTag(::cereal::ReflectionCtx const& ctx) const; diff --git a/src/mc/world/level/block/components/BlockCustomComponentsComponentDescription.h b/src/mc/world/level/block/components/BlockCustomComponentsComponentDescription.h index fc264502e4..5309297feb 100644 --- a/src/mc/world/level/block/components/BlockCustomComponentsComponentDescription.h +++ b/src/mc/world/level/block/components/BlockCustomComponentsComponentDescription.h @@ -72,7 +72,7 @@ class BlockCustomComponentsComponentDescription : public ::BlockComponentDescrip MCAPI void $initializeComponent(::BlockComponentStorage& blockComponentStorage) const; - MCAPI bool $isNetworkComponent() const; + MCFOLD bool $isNetworkComponent() const; MCAPI ::std::unique_ptr<::CompoundTag> $buildNetworkTag(::cereal::ReflectionCtx const& ctx) const; diff --git a/src/mc/world/level/block/components/BlockDestructibleByExplosionDescription.h b/src/mc/world/level/block/components/BlockDestructibleByExplosionDescription.h index 0de7a8d87b..15b139001e 100644 --- a/src/mc/world/level/block/components/BlockDestructibleByExplosionDescription.h +++ b/src/mc/world/level/block/components/BlockDestructibleByExplosionDescription.h @@ -67,7 +67,7 @@ struct BlockDestructibleByExplosionDescription : public ::BlockComponentDescript public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND public: @@ -77,7 +77,7 @@ struct BlockDestructibleByExplosionDescription : public ::BlockComponentDescript MCAPI void $initializeComponent(::BlockComponentStorage& blockComponentStorage) const; - MCAPI void $initializeComponentFromCode(::BlockComponentStorage& blockComponentStorage) const; + MCFOLD void $initializeComponentFromCode(::BlockComponentStorage& blockComponentStorage) const; // NOLINTEND public: diff --git a/src/mc/world/level/block/components/BlockDestructibleByMiningDescription.h b/src/mc/world/level/block/components/BlockDestructibleByMiningDescription.h index b5af9252a6..51e0bc1504 100644 --- a/src/mc/world/level/block/components/BlockDestructibleByMiningDescription.h +++ b/src/mc/world/level/block/components/BlockDestructibleByMiningDescription.h @@ -88,9 +88,9 @@ struct BlockDestructibleByMiningDescription : public ::BlockComponentDescription MCAPI void $initializeComponent(::BlockComponentStorage& blockComponentStorage) const; - MCAPI void $initializeComponentFromCode(::BlockComponentStorage& blockComponentStorage) const; + MCFOLD void $initializeComponentFromCode(::BlockComponentStorage& blockComponentStorage) const; - MCAPI bool $isNetworkComponent() const; + MCFOLD bool $isNetworkComponent() const; MCAPI ::std::unique_ptr<::CompoundTag> $buildNetworkTag(::cereal::ReflectionCtx const& ctx) const; diff --git a/src/mc/world/level/block/components/BlockDisplayNameDescription.h b/src/mc/world/level/block/components/BlockDisplayNameDescription.h index 09376dbb54..2a2ec033f8 100644 --- a/src/mc/world/level/block/components/BlockDisplayNameDescription.h +++ b/src/mc/world/level/block/components/BlockDisplayNameDescription.h @@ -66,7 +66,7 @@ struct BlockDisplayNameDescription : public ::BlockComponentDescription { MCAPI void $initializeComponent(::BlockComponentStorage& blockComponentStorage) const; - MCAPI bool $isNetworkComponent() const; + MCFOLD bool $isNetworkComponent() const; MCAPI ::std::unique_ptr<::CompoundTag> $buildNetworkTag(::cereal::ReflectionCtx const& ctx) const; diff --git a/src/mc/world/level/block/components/BlockFrictionDescription.h b/src/mc/world/level/block/components/BlockFrictionDescription.h index 249e87e749..4f7870607b 100644 --- a/src/mc/world/level/block/components/BlockFrictionDescription.h +++ b/src/mc/world/level/block/components/BlockFrictionDescription.h @@ -66,7 +66,7 @@ struct BlockFrictionDescription : public ::BlockComponentDescription { MCAPI void $initializeComponent(::BlockComponentStorage& blockComponentStorage) const; - MCAPI bool $isNetworkComponent() const; + MCFOLD bool $isNetworkComponent() const; MCAPI ::std::unique_ptr<::CompoundTag> $buildNetworkTag(::cereal::ReflectionCtx const& ctx) const; diff --git a/src/mc/world/level/block/components/BlockGeometryDescription.h b/src/mc/world/level/block/components/BlockGeometryDescription.h index 5877baba2d..ec35210c67 100644 --- a/src/mc/world/level/block/components/BlockGeometryDescription.h +++ b/src/mc/world/level/block/components/BlockGeometryDescription.h @@ -116,7 +116,7 @@ struct BlockGeometryDescription : public ::NetworkedBlockComponentDescription<:: MCAPI void $initializeComponent(::BlockComponentStorage& blockComponentStorage) const; - MCAPI void $initializeComponentFromCode(::BlockComponentStorage& blockComponentStorage) const; + MCFOLD void $initializeComponentFromCode(::BlockComponentStorage& blockComponentStorage) const; MCAPI void $handleVersionBasedInitialization(::SemVersion const& originalJsonVersion); // NOLINTEND diff --git a/src/mc/world/level/block/components/BlockItemVisualDescription.h b/src/mc/world/level/block/components/BlockItemVisualDescription.h index bb68dbc6a1..1ff546ceab 100644 --- a/src/mc/world/level/block/components/BlockItemVisualDescription.h +++ b/src/mc/world/level/block/components/BlockItemVisualDescription.h @@ -74,11 +74,11 @@ struct BlockItemVisualDescription : public ::BlockComponentDescription { // NOLINTBEGIN MCAPI ::std::string const& $getName() const; - MCAPI void $initializeComponentFromCode(::BlockComponentStorage& blockComponentStorage) const; + MCFOLD void $initializeComponentFromCode(::BlockComponentStorage& blockComponentStorage) const; MCAPI void $initializeComponent(::BlockComponentStorage& blockComponentStorage) const; - MCAPI bool $isNetworkComponent() const; + MCFOLD bool $isNetworkComponent() const; MCAPI ::std::unique_ptr<::CompoundTag> $buildNetworkTag(::cereal::ReflectionCtx const& ctx) const; diff --git a/src/mc/world/level/block/components/BlockLightDampeningDescription.h b/src/mc/world/level/block/components/BlockLightDampeningDescription.h index b7c2cd3a21..ac11e2ac30 100644 --- a/src/mc/world/level/block/components/BlockLightDampeningDescription.h +++ b/src/mc/world/level/block/components/BlockLightDampeningDescription.h @@ -66,7 +66,7 @@ struct BlockLightDampeningDescription : public ::BlockComponentDescription { MCAPI void $initializeComponent(::BlockComponentStorage& blockComponentStorage) const; - MCAPI bool $isNetworkComponent() const; + MCFOLD bool $isNetworkComponent() const; MCAPI ::std::unique_ptr<::CompoundTag> $buildNetworkTag(::cereal::ReflectionCtx const& ctx) const; diff --git a/src/mc/world/level/block/components/BlockLightEmissionDescription.h b/src/mc/world/level/block/components/BlockLightEmissionDescription.h index 14b5ea5ad7..65fd0fc626 100644 --- a/src/mc/world/level/block/components/BlockLightEmissionDescription.h +++ b/src/mc/world/level/block/components/BlockLightEmissionDescription.h @@ -66,7 +66,7 @@ struct BlockLightEmissionDescription : public ::BlockComponentDescription { MCAPI void $initializeComponent(::BlockComponentStorage& blockComponentStorage) const; - MCAPI bool $isNetworkComponent() const; + MCFOLD bool $isNetworkComponent() const; MCAPI ::std::unique_ptr<::CompoundTag> $buildNetworkTag(::cereal::ReflectionCtx const& ctx) const; diff --git a/src/mc/world/level/block/components/BlockLiquidDetectionComponent.h b/src/mc/world/level/block/components/BlockLiquidDetectionComponent.h index 7b78243628..0b673c12e2 100644 --- a/src/mc/world/level/block/components/BlockLiquidDetectionComponent.h +++ b/src/mc/world/level/block/components/BlockLiquidDetectionComponent.h @@ -26,7 +26,7 @@ struct BlockLiquidDetectionComponent { // NOLINTBEGIN MCAPI static bool canBeDestroyedByLiquidSpread(::Block const& block); - MCAPI static bool canContainLiquid(::Block const& block); + MCFOLD static bool canContainLiquid(::Block const& block); MCAPI static bool isLiquidBlocking(::Block const& block); diff --git a/src/mc/world/level/block/components/BlockLiquidDetectionDescription.h b/src/mc/world/level/block/components/BlockLiquidDetectionDescription.h index c38b22bba7..e48c48bd96 100644 --- a/src/mc/world/level/block/components/BlockLiquidDetectionDescription.h +++ b/src/mc/world/level/block/components/BlockLiquidDetectionDescription.h @@ -100,9 +100,9 @@ struct BlockLiquidDetectionDescription : public ::BlockComponentDescription { MCAPI void $initializeComponent(::BlockComponentStorage& blockComponentStorage) const; - MCAPI void $initializeComponentFromCode(::BlockComponentStorage& blockComponentStorage) const; + MCFOLD void $initializeComponentFromCode(::BlockComponentStorage& blockComponentStorage) const; - MCAPI bool $isNetworkComponent() const; + MCFOLD bool $isNetworkComponent() const; MCAPI ::std::unique_ptr<::CompoundTag> $buildNetworkTag(::cereal::ReflectionCtx const& ctx) const; diff --git a/src/mc/world/level/block/components/BlockLootComponent.h b/src/mc/world/level/block/components/BlockLootComponent.h index 15de2e338c..1ba3d1741c 100644 --- a/src/mc/world/level/block/components/BlockLootComponent.h +++ b/src/mc/world/level/block/components/BlockLootComponent.h @@ -18,6 +18,6 @@ struct BlockLootComponent { public: // member functions // NOLINTBEGIN - MCAPI ::std::string const& getLootTable() const; + MCFOLD ::std::string const& getLootTable() const; // NOLINTEND }; diff --git a/src/mc/world/level/block/components/BlockMaterialInstancesDescription.h b/src/mc/world/level/block/components/BlockMaterialInstancesDescription.h index 8ac56099a0..0df2b4d88f 100644 --- a/src/mc/world/level/block/components/BlockMaterialInstancesDescription.h +++ b/src/mc/world/level/block/components/BlockMaterialInstancesDescription.h @@ -139,11 +139,11 @@ struct BlockMaterialInstancesDescription : public ::BlockComponentDescription { // NOLINTBEGIN MCAPI ::std::string const& $getName() const; - MCAPI void $initializeComponentFromCode(::BlockComponentStorage& blockComponentStorage) const; + MCFOLD void $initializeComponentFromCode(::BlockComponentStorage& blockComponentStorage) const; MCAPI void $initializeComponent(::BlockComponentStorage& blockComponentStorage) const; - MCAPI bool $isNetworkComponent() const; + MCFOLD bool $isNetworkComponent() const; MCAPI ::std::unique_ptr<::CompoundTag> $buildNetworkTag(::cereal::ReflectionCtx const& ctx) const; diff --git a/src/mc/world/level/block/components/BlockPlacementCondition.h b/src/mc/world/level/block/components/BlockPlacementCondition.h index c51cb7369d..2185d83d30 100644 --- a/src/mc/world/level/block/components/BlockPlacementCondition.h +++ b/src/mc/world/level/block/components/BlockPlacementCondition.h @@ -25,6 +25,6 @@ struct BlockPlacementCondition { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/world/level/block/components/BlockPlacementFilterDescription.h b/src/mc/world/level/block/components/BlockPlacementFilterDescription.h index 90b7cb5219..be6cc1f67f 100644 --- a/src/mc/world/level/block/components/BlockPlacementFilterDescription.h +++ b/src/mc/world/level/block/components/BlockPlacementFilterDescription.h @@ -72,7 +72,7 @@ struct BlockPlacementFilterDescription : public ::BlockComponentDescription { MCAPI void $initializeComponent(::BlockComponentStorage& blockComponentStorage) const; - MCAPI bool $isNetworkComponent() const; + MCFOLD bool $isNetworkComponent() const; MCAPI ::std::unique_ptr<::CompoundTag> $buildNetworkTag(::cereal::ReflectionCtx const& ctx) const; diff --git a/src/mc/world/level/block/components/BlockRandomTickingComponent.h b/src/mc/world/level/block/components/BlockRandomTickingComponent.h index 1053ea067f..debfed2028 100644 --- a/src/mc/world/level/block/components/BlockRandomTickingComponent.h +++ b/src/mc/world/level/block/components/BlockRandomTickingComponent.h @@ -40,7 +40,7 @@ struct BlockRandomTickingComponent { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND public: diff --git a/src/mc/world/level/block/components/BlockRedstoneDescription.h b/src/mc/world/level/block/components/BlockRedstoneDescription.h index e033576e90..8454bd7af6 100644 --- a/src/mc/world/level/block/components/BlockRedstoneDescription.h +++ b/src/mc/world/level/block/components/BlockRedstoneDescription.h @@ -82,7 +82,7 @@ struct BlockRedstoneDescription : public ::BlockComponentDescription { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND public: @@ -90,11 +90,11 @@ struct BlockRedstoneDescription : public ::BlockComponentDescription { // NOLINTBEGIN MCAPI ::std::string const& $getName() const; - MCAPI void $initializeComponentFromCode(::BlockComponentStorage& blockComponentStorage) const; + MCFOLD void $initializeComponentFromCode(::BlockComponentStorage& blockComponentStorage) const; MCAPI void $initializeComponent(::BlockComponentStorage& blockComponentStorage) const; - MCAPI bool $isNetworkComponent() const; + MCFOLD bool $isNetworkComponent() const; MCAPI ::std::unique_ptr<::CompoundTag> $buildNetworkTag(::cereal::ReflectionCtx const& ctx) const; diff --git a/src/mc/world/level/block/components/BlockSelectionBoxDescription.h b/src/mc/world/level/block/components/BlockSelectionBoxDescription.h index 7197a071a6..de20b54658 100644 --- a/src/mc/world/level/block/components/BlockSelectionBoxDescription.h +++ b/src/mc/world/level/block/components/BlockSelectionBoxDescription.h @@ -84,7 +84,7 @@ struct BlockSelectionBoxDescription : public ::BlockComponentDescription { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND public: @@ -94,13 +94,13 @@ struct BlockSelectionBoxDescription : public ::BlockComponentDescription { MCAPI void $initializeComponent(::BlockComponentStorage& blockComponentStorage) const; - MCAPI void $initializeComponentFromCode(::BlockComponentStorage& blockComponentStorage) const; + MCFOLD void $initializeComponentFromCode(::BlockComponentStorage& blockComponentStorage) const; - MCAPI bool $isNetworkComponent() const; + MCFOLD bool $isNetworkComponent() const; - MCAPI ::std::unique_ptr<::CompoundTag> $buildNetworkTag(::cereal::ReflectionCtx const& ctx) const; + MCFOLD ::std::unique_ptr<::CompoundTag> $buildNetworkTag(::cereal::ReflectionCtx const& ctx) const; - MCAPI void $initializeFromNetwork(::CompoundTag const& tag, ::cereal::ReflectionCtx const& ctx); + MCFOLD void $initializeFromNetwork(::CompoundTag const& tag, ::cereal::ReflectionCtx const& ctx); // NOLINTEND public: diff --git a/src/mc/world/level/block/components/BlockTickConfigurationComponent.h b/src/mc/world/level/block/components/BlockTickConfigurationComponent.h index f19ed56dda..3a2ea79f03 100644 --- a/src/mc/world/level/block/components/BlockTickConfigurationComponent.h +++ b/src/mc/world/level/block/components/BlockTickConfigurationComponent.h @@ -25,6 +25,6 @@ class BlockTickConfigurationComponent { public: // member functions // NOLINTBEGIN - MCAPI int getRandomTickDelay(::Random& random) const; + MCFOLD int getRandomTickDelay(::Random& random) const; // NOLINTEND }; diff --git a/src/mc/world/level/block/components/BlockTransformationDescription.h b/src/mc/world/level/block/components/BlockTransformationDescription.h index 175973f4ce..9440d6af50 100644 --- a/src/mc/world/level/block/components/BlockTransformationDescription.h +++ b/src/mc/world/level/block/components/BlockTransformationDescription.h @@ -76,9 +76,9 @@ struct BlockTransformationDescription : public ::BlockComponentDescription { MCAPI void $initializeComponent(::BlockComponentStorage& blockComponentStorage) const; - MCAPI void $initializeComponentFromCode(::BlockComponentStorage& blockComponentStorage) const; + MCFOLD void $initializeComponentFromCode(::BlockComponentStorage& blockComponentStorage) const; - MCAPI bool $isNetworkComponent() const; + MCFOLD bool $isNetworkComponent() const; MCAPI ::std::unique_ptr<::CompoundTag> $buildNetworkTag(::cereal::ReflectionCtx const& ctx) const; diff --git a/src/mc/world/level/block/components/BlockUnitCubeDescription.h b/src/mc/world/level/block/components/BlockUnitCubeDescription.h index fc6747234d..8c969d3e8e 100644 --- a/src/mc/world/level/block/components/BlockUnitCubeDescription.h +++ b/src/mc/world/level/block/components/BlockUnitCubeDescription.h @@ -61,11 +61,11 @@ struct BlockUnitCubeDescription : public ::BlockComponentDescription { MCAPI void $initializeComponent(::BlockComponentStorage& blockComponentStorage) const; - MCAPI bool $isNetworkComponent() const; + MCFOLD bool $isNetworkComponent() const; MCAPI ::std::unique_ptr<::CompoundTag> $buildNetworkTag(::cereal::ReflectionCtx const& ctx) const; - MCAPI void $initializeFromNetwork(::CompoundTag const& tag, ::cereal::ReflectionCtx const& ctx); + MCFOLD void $initializeFromNetwork(::CompoundTag const& tag, ::cereal::ReflectionCtx const& ctx); // NOLINTEND public: diff --git a/src/mc/world/level/block/components/ItemSpecificSpeed.h b/src/mc/world/level/block/components/ItemSpecificSpeed.h index 04128508b4..1728c6a5d7 100644 --- a/src/mc/world/level/block/components/ItemSpecificSpeed.h +++ b/src/mc/world/level/block/components/ItemSpecificSpeed.h @@ -25,6 +25,6 @@ struct ItemSpecificSpeed { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/world/level/block/components/NetEaseBlockComponentStorage.h b/src/mc/world/level/block/components/NetEaseBlockComponentStorage.h index ec7402acf9..878e9517fb 100644 --- a/src/mc/world/level/block/components/NetEaseBlockComponentStorage.h +++ b/src/mc/world/level/block/components/NetEaseBlockComponentStorage.h @@ -24,6 +24,6 @@ class NetEaseBlockComponentStorage { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/world/level/block/components/RuleSet.h b/src/mc/world/level/block/components/RuleSet.h index 9adfbc457b..417605f284 100644 --- a/src/mc/world/level/block/components/RuleSet.h +++ b/src/mc/world/level/block/components/RuleSet.h @@ -37,6 +37,6 @@ struct RuleSet { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/world/level/block/components/ScriptBlockCustomComponentsFinalizer.h b/src/mc/world/level/block/components/ScriptBlockCustomComponentsFinalizer.h index c8600cfcfb..24219159ef 100644 --- a/src/mc/world/level/block/components/ScriptBlockCustomComponentsFinalizer.h +++ b/src/mc/world/level/block/components/ScriptBlockCustomComponentsFinalizer.h @@ -41,12 +41,12 @@ class ScriptBlockCustomComponentsFinalizer { public: // constructor thunks // NOLINTBEGIN - MCAPI void* $ctor(::StackRefResult<::ScriptModuleMinecraft::ScriptBlockCustomComponentsRegistry>&& registry); + MCFOLD void* $ctor(::StackRefResult<::ScriptModuleMinecraft::ScriptBlockCustomComponentsRegistry>&& registry); // NOLINTEND public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/world/level/block/components/block_collision_versioning/BlockCollision118Upgrade.h b/src/mc/world/level/block/components/block_collision_versioning/BlockCollision118Upgrade.h index cb06da3ad8..d0f1cf3b90 100644 --- a/src/mc/world/level/block/components/block_collision_versioning/BlockCollision118Upgrade.h +++ b/src/mc/world/level/block/components/block_collision_versioning/BlockCollision118Upgrade.h @@ -52,9 +52,9 @@ class BlockCollision118Upgrade : public ::BlockCerealSchemaUpgrade { public: // virtual function thunks // NOLINTBEGIN - MCAPI bool $previousSchema(::rapidjson::GenericValue< - ::rapidjson::UTF8, - ::rapidjson::MemoryPoolAllocator<::rapidjson::CrtAllocator>> const& component) const; + MCFOLD bool $previousSchema(::rapidjson::GenericValue< + ::rapidjson::UTF8, + ::rapidjson::MemoryPoolAllocator<::rapidjson::CrtAllocator>> const& component) const; MCAPI void $upgradeToNext(::rapidjson::GenericDocument<::rapidjson::UTF8, ::rapidjson::MemoryPoolAllocator<::rapidjson::CrtAllocator>, ::rapidjson::CrtAllocator>& document, ::SemVersion const&) diff --git a/src/mc/world/level/block/components/block_collision_versioning/BlockCollision11910Upgrade.h b/src/mc/world/level/block/components/block_collision_versioning/BlockCollision11910Upgrade.h index 7b3833b8b0..e3fa3ec669 100644 --- a/src/mc/world/level/block/components/block_collision_versioning/BlockCollision11910Upgrade.h +++ b/src/mc/world/level/block/components/block_collision_versioning/BlockCollision11910Upgrade.h @@ -52,9 +52,9 @@ class BlockCollision11910Upgrade : public ::BlockCerealSchemaUpgrade { public: // virtual function thunks // NOLINTBEGIN - MCAPI bool $previousSchema(::rapidjson::GenericValue< - ::rapidjson::UTF8, - ::rapidjson::MemoryPoolAllocator<::rapidjson::CrtAllocator>> const& component) const; + MCFOLD bool $previousSchema(::rapidjson::GenericValue< + ::rapidjson::UTF8, + ::rapidjson::MemoryPoolAllocator<::rapidjson::CrtAllocator>> const& component) const; MCAPI void $upgradeToNext(::rapidjson::GenericDocument<::rapidjson::UTF8, ::rapidjson::MemoryPoolAllocator<::rapidjson::CrtAllocator>, ::rapidjson::CrtAllocator>& document, ::SemVersion const&) diff --git a/src/mc/world/level/block/components/block_geometry_serializer/Constraint.h b/src/mc/world/level/block/components/block_geometry_serializer/Constraint.h index ef94f28954..0ddfdd5ea1 100644 --- a/src/mc/world/level/block/components/block_geometry_serializer/Constraint.h +++ b/src/mc/world/level/block/components/block_geometry_serializer/Constraint.h @@ -39,7 +39,7 @@ struct Constraint : public ::cereal::Constraint { // NOLINTBEGIN MCAPI void $doValidate(::entt::meta_any const& any, ::cereal::SerializerContext& context) const; - MCAPI ::cereal::internal::ConstraintDescription $description() const; + MCFOLD ::cereal::internal::ConstraintDescription $description() const; // NOLINTEND public: diff --git a/src/mc/world/level/block/components/block_geometry_versioning/BlockGeometry11910Upgrade.h b/src/mc/world/level/block/components/block_geometry_versioning/BlockGeometry11910Upgrade.h index 0bb7f9bc98..e9b07d94e0 100644 --- a/src/mc/world/level/block/components/block_geometry_versioning/BlockGeometry11910Upgrade.h +++ b/src/mc/world/level/block/components/block_geometry_versioning/BlockGeometry11910Upgrade.h @@ -52,9 +52,9 @@ class BlockGeometry11910Upgrade : public ::BlockCerealSchemaUpgrade { public: // virtual function thunks // NOLINTBEGIN - MCAPI bool $previousSchema(::rapidjson::GenericValue< - ::rapidjson::UTF8, - ::rapidjson::MemoryPoolAllocator<::rapidjson::CrtAllocator>> const& component) const; + MCFOLD bool $previousSchema(::rapidjson::GenericValue< + ::rapidjson::UTF8, + ::rapidjson::MemoryPoolAllocator<::rapidjson::CrtAllocator>> const& component) const; MCAPI void $upgradeToNext(::rapidjson::GenericDocument<::rapidjson::UTF8, ::rapidjson::MemoryPoolAllocator<::rapidjson::CrtAllocator>, ::rapidjson::CrtAllocator>& document, ::SemVersion const&) diff --git a/src/mc/world/level/block/components/block_geometry_versioning/BlockGeometry12010Upgrade.h b/src/mc/world/level/block/components/block_geometry_versioning/BlockGeometry12010Upgrade.h index 05bd70fa41..d1039c8d3f 100644 --- a/src/mc/world/level/block/components/block_geometry_versioning/BlockGeometry12010Upgrade.h +++ b/src/mc/world/level/block/components/block_geometry_versioning/BlockGeometry12010Upgrade.h @@ -52,9 +52,9 @@ class BlockGeometry12010Upgrade : public ::BlockCerealSchemaUpgrade { public: // virtual function thunks // NOLINTBEGIN - MCAPI bool $previousSchema(::rapidjson::GenericValue< - ::rapidjson::UTF8, - ::rapidjson::MemoryPoolAllocator<::rapidjson::CrtAllocator>> const& component) const; + MCFOLD bool $previousSchema(::rapidjson::GenericValue< + ::rapidjson::UTF8, + ::rapidjson::MemoryPoolAllocator<::rapidjson::CrtAllocator>> const& component) const; MCAPI void $upgradeToNext(::rapidjson::GenericDocument<::rapidjson::UTF8, ::rapidjson::MemoryPoolAllocator<::rapidjson::CrtAllocator>, ::rapidjson::CrtAllocator>& document, ::SemVersion const&) diff --git a/src/mc/world/level/block/components/block_geometry_versioning/BlockUnitCube12060Upgrade.h b/src/mc/world/level/block/components/block_geometry_versioning/BlockUnitCube12060Upgrade.h index 4b720c663b..17fb92fe5d 100644 --- a/src/mc/world/level/block/components/block_geometry_versioning/BlockUnitCube12060Upgrade.h +++ b/src/mc/world/level/block/components/block_geometry_versioning/BlockUnitCube12060Upgrade.h @@ -51,9 +51,9 @@ class BlockUnitCube12060Upgrade : public ::BlockCerealSchemaUpgrade { public: // virtual function thunks // NOLINTBEGIN - MCAPI bool $previousSchema(::rapidjson::GenericValue< - ::rapidjson::UTF8, - ::rapidjson::MemoryPoolAllocator<::rapidjson::CrtAllocator>> const&) const; + MCFOLD bool $previousSchema(::rapidjson::GenericValue< + ::rapidjson::UTF8, + ::rapidjson::MemoryPoolAllocator<::rapidjson::CrtAllocator>> const&) const; MCAPI void $upgradeToNext(::rapidjson::GenericDocument<::rapidjson::UTF8, ::rapidjson::MemoryPoolAllocator<::rapidjson::CrtAllocator>, ::rapidjson::CrtAllocator>& document, ::SemVersion const&) diff --git a/src/mc/world/level/block/components/block_selection_box_versioning/BlockAimCollision118Upgrade.h b/src/mc/world/level/block/components/block_selection_box_versioning/BlockAimCollision118Upgrade.h index c9e20031ce..fd73e7de09 100644 --- a/src/mc/world/level/block/components/block_selection_box_versioning/BlockAimCollision118Upgrade.h +++ b/src/mc/world/level/block/components/block_selection_box_versioning/BlockAimCollision118Upgrade.h @@ -52,9 +52,9 @@ class BlockAimCollision118Upgrade : public ::BlockCerealSchemaUpgrade { public: // virtual function thunks // NOLINTBEGIN - MCAPI bool $previousSchema(::rapidjson::GenericValue< - ::rapidjson::UTF8, - ::rapidjson::MemoryPoolAllocator<::rapidjson::CrtAllocator>> const& component) const; + MCFOLD bool $previousSchema(::rapidjson::GenericValue< + ::rapidjson::UTF8, + ::rapidjson::MemoryPoolAllocator<::rapidjson::CrtAllocator>> const& component) const; MCAPI void $upgradeToNext(::rapidjson::GenericDocument<::rapidjson::UTF8, ::rapidjson::MemoryPoolAllocator<::rapidjson::CrtAllocator>, ::rapidjson::CrtAllocator>& document, ::SemVersion const&) diff --git a/src/mc/world/level/block/components/block_selection_box_versioning/BlockAimCollision11910Upgrade.h b/src/mc/world/level/block/components/block_selection_box_versioning/BlockAimCollision11910Upgrade.h index cc470b99c2..0c59b7d37b 100644 --- a/src/mc/world/level/block/components/block_selection_box_versioning/BlockAimCollision11910Upgrade.h +++ b/src/mc/world/level/block/components/block_selection_box_versioning/BlockAimCollision11910Upgrade.h @@ -52,9 +52,9 @@ class BlockAimCollision11910Upgrade : public ::BlockCerealSchemaUpgrade { public: // virtual function thunks // NOLINTBEGIN - MCAPI bool $previousSchema(::rapidjson::GenericValue< - ::rapidjson::UTF8, - ::rapidjson::MemoryPoolAllocator<::rapidjson::CrtAllocator>> const& component) const; + MCFOLD bool $previousSchema(::rapidjson::GenericValue< + ::rapidjson::UTF8, + ::rapidjson::MemoryPoolAllocator<::rapidjson::CrtAllocator>> const& component) const; MCAPI void $upgradeToNext(::rapidjson::GenericDocument<::rapidjson::UTF8, ::rapidjson::MemoryPoolAllocator<::rapidjson::CrtAllocator>, ::rapidjson::CrtAllocator>& document, ::SemVersion const&) diff --git a/src/mc/world/level/block/components/triggers/OnFallOnTrigger.h b/src/mc/world/level/block/components/triggers/OnFallOnTrigger.h index 86d4ef27ce..85dc44e341 100644 --- a/src/mc/world/level/block/components/triggers/OnFallOnTrigger.h +++ b/src/mc/world/level/block/components/triggers/OnFallOnTrigger.h @@ -43,7 +43,7 @@ class OnFallOnTrigger : public ::DefinitionTrigger { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND public: diff --git a/src/mc/world/level/block/components/triggers/OnInteractTrigger.h b/src/mc/world/level/block/components/triggers/OnInteractTrigger.h index a2f2c01814..f5fbf118eb 100644 --- a/src/mc/world/level/block/components/triggers/OnInteractTrigger.h +++ b/src/mc/world/level/block/components/triggers/OnInteractTrigger.h @@ -42,7 +42,7 @@ class OnInteractTrigger : public ::DefinitionTrigger { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND public: diff --git a/src/mc/world/level/block/components/triggers/OnInteractTriggerDescription.h b/src/mc/world/level/block/components/triggers/OnInteractTriggerDescription.h index 5660a910b7..873d3fc80d 100644 --- a/src/mc/world/level/block/components/triggers/OnInteractTriggerDescription.h +++ b/src/mc/world/level/block/components/triggers/OnInteractTriggerDescription.h @@ -49,11 +49,11 @@ class OnInteractTriggerDescription : public ::BlockTriggerDescription<::OnIntera // NOLINTBEGIN MCAPI ::std::string const& $getName() const; - MCAPI bool $isNetworkComponent() const; + MCFOLD bool $isNetworkComponent() const; - MCAPI ::std::unique_ptr<::CompoundTag> $buildNetworkTag(::cereal::ReflectionCtx const& ctx) const; + MCFOLD ::std::unique_ptr<::CompoundTag> $buildNetworkTag(::cereal::ReflectionCtx const& ctx) const; - MCAPI void $initializeFromNetwork(::CompoundTag const& tag, ::cereal::ReflectionCtx const& ctx); + MCFOLD void $initializeFromNetwork(::CompoundTag const& tag, ::cereal::ReflectionCtx const& ctx); // NOLINTEND public: diff --git a/src/mc/world/level/block/components/triggers/OnPlacedTrigger.h b/src/mc/world/level/block/components/triggers/OnPlacedTrigger.h index 7a45309cba..bd7ad13e85 100644 --- a/src/mc/world/level/block/components/triggers/OnPlacedTrigger.h +++ b/src/mc/world/level/block/components/triggers/OnPlacedTrigger.h @@ -42,7 +42,7 @@ class OnPlacedTrigger : public ::DefinitionTrigger { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND public: diff --git a/src/mc/world/level/block/components/triggers/OnPlayerDestroyedTrigger.h b/src/mc/world/level/block/components/triggers/OnPlayerDestroyedTrigger.h index 823a9806a4..0c90fa5284 100644 --- a/src/mc/world/level/block/components/triggers/OnPlayerDestroyedTrigger.h +++ b/src/mc/world/level/block/components/triggers/OnPlayerDestroyedTrigger.h @@ -42,7 +42,7 @@ class OnPlayerDestroyedTrigger : public ::DefinitionTrigger { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND public: diff --git a/src/mc/world/level/block/components/triggers/OnPlayerPlacingTrigger.h b/src/mc/world/level/block/components/triggers/OnPlayerPlacingTrigger.h index aa1ab2312f..65668ea93e 100644 --- a/src/mc/world/level/block/components/triggers/OnPlayerPlacingTrigger.h +++ b/src/mc/world/level/block/components/triggers/OnPlayerPlacingTrigger.h @@ -42,7 +42,7 @@ class OnPlayerPlacingTrigger : public ::DefinitionTrigger { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND public: diff --git a/src/mc/world/level/block/components/triggers/OnPlayerPlacingTriggerDescription.h b/src/mc/world/level/block/components/triggers/OnPlayerPlacingTriggerDescription.h index 3b859ecf50..2bea9ff58c 100644 --- a/src/mc/world/level/block/components/triggers/OnPlayerPlacingTriggerDescription.h +++ b/src/mc/world/level/block/components/triggers/OnPlayerPlacingTriggerDescription.h @@ -49,11 +49,11 @@ class OnPlayerPlacingTriggerDescription : public ::BlockTriggerDescription<::OnP // NOLINTBEGIN MCAPI ::std::string const& $getName() const; - MCAPI bool $isNetworkComponent() const; + MCFOLD bool $isNetworkComponent() const; - MCAPI ::std::unique_ptr<::CompoundTag> $buildNetworkTag(::cereal::ReflectionCtx const& ctx) const; + MCFOLD ::std::unique_ptr<::CompoundTag> $buildNetworkTag(::cereal::ReflectionCtx const& ctx) const; - MCAPI void $initializeFromNetwork(::CompoundTag const& tag, ::cereal::ReflectionCtx const& ctx); + MCFOLD void $initializeFromNetwork(::CompoundTag const& tag, ::cereal::ReflectionCtx const& ctx); // NOLINTEND public: diff --git a/src/mc/world/level/block/components/triggers/OnStepOffTrigger.h b/src/mc/world/level/block/components/triggers/OnStepOffTrigger.h index 9d7e15d181..9d07a3892b 100644 --- a/src/mc/world/level/block/components/triggers/OnStepOffTrigger.h +++ b/src/mc/world/level/block/components/triggers/OnStepOffTrigger.h @@ -42,7 +42,7 @@ class OnStepOffTrigger : public ::DefinitionTrigger { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND public: diff --git a/src/mc/world/level/block/components/triggers/OnStepOnTrigger.h b/src/mc/world/level/block/components/triggers/OnStepOnTrigger.h index 31a6395010..2053cb9d6e 100644 --- a/src/mc/world/level/block/components/triggers/OnStepOnTrigger.h +++ b/src/mc/world/level/block/components/triggers/OnStepOnTrigger.h @@ -42,7 +42,7 @@ class OnStepOnTrigger : public ::DefinitionTrigger { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND public: diff --git a/src/mc/world/level/block/definition/BlockComponentGroupDescription.h b/src/mc/world/level/block/definition/BlockComponentGroupDescription.h index d2937a5b5c..0111c9ecc5 100644 --- a/src/mc/world/level/block/definition/BlockComponentGroupDescription.h +++ b/src/mc/world/level/block/definition/BlockComponentGroupDescription.h @@ -30,7 +30,7 @@ struct BlockComponentGroupDescription { public: // member functions // NOLINTBEGIN - MCAPI ::BlockComponentGroupDescription::Components& + MCFOLD ::BlockComponentGroupDescription::Components& operator=(::BlockComponentGroupDescription::Components const&); MCAPI ~Components(); @@ -39,7 +39,7 @@ struct BlockComponentGroupDescription { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/world/level/block/definition/BlockDefinitionLoader.h b/src/mc/world/level/block/definition/BlockDefinitionLoader.h index 6af3851e55..d24caa0c0d 100644 --- a/src/mc/world/level/block/definition/BlockDefinitionLoader.h +++ b/src/mc/world/level/block/definition/BlockDefinitionLoader.h @@ -51,6 +51,6 @@ class BlockDefinitionLoader { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/world/level/block/definition/BlockDescription.h b/src/mc/world/level/block/definition/BlockDescription.h index 4f77f493b9..f54ab54dc2 100644 --- a/src/mc/world/level/block/definition/BlockDescription.h +++ b/src/mc/world/level/block/definition/BlockDescription.h @@ -25,7 +25,7 @@ struct BlockDescription { public: // member functions // NOLINTBEGIN - MCAPI ::BlockDescription::BlockTraits& operator=(::BlockDescription::BlockTraits const&); + MCFOLD ::BlockDescription::BlockTraits& operator=(::BlockDescription::BlockTraits const&); // NOLINTEND }; diff --git a/src/mc/world/level/block/definition/BlockMenuCategory.h b/src/mc/world/level/block/definition/BlockMenuCategory.h index 11be8ae5f9..0605896d59 100644 --- a/src/mc/world/level/block/definition/BlockMenuCategory.h +++ b/src/mc/world/level/block/definition/BlockMenuCategory.h @@ -26,6 +26,6 @@ struct BlockMenuCategory { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/world/level/block/definition/block_description_versioning/BlockDescription11940Upgrade.h b/src/mc/world/level/block/definition/block_description_versioning/BlockDescription11940Upgrade.h index 719a50eaf8..4d8f1bdef5 100644 --- a/src/mc/world/level/block/definition/block_description_versioning/BlockDescription11940Upgrade.h +++ b/src/mc/world/level/block/definition/block_description_versioning/BlockDescription11940Upgrade.h @@ -51,9 +51,9 @@ class BlockDescription11940Upgrade : public ::BlockCerealSchemaUpgrade { public: // virtual function thunks // NOLINTBEGIN - MCAPI bool $previousSchema(::rapidjson::GenericValue< - ::rapidjson::UTF8, - ::rapidjson::MemoryPoolAllocator<::rapidjson::CrtAllocator>> const&) const; + MCFOLD bool $previousSchema(::rapidjson::GenericValue< + ::rapidjson::UTF8, + ::rapidjson::MemoryPoolAllocator<::rapidjson::CrtAllocator>> const&) const; MCAPI void $upgradeToNext(::rapidjson::GenericDocument<::rapidjson::UTF8, ::rapidjson::MemoryPoolAllocator<::rapidjson::CrtAllocator>, ::rapidjson::CrtAllocator>& document, ::SemVersion const&) diff --git a/src/mc/world/level/block/json_util/details/BlockReference.h b/src/mc/world/level/block/json_util/details/BlockReference.h index 8926ad2cf2..e479257e7f 100644 --- a/src/mc/world/level/block/json_util/details/BlockReference.h +++ b/src/mc/world/level/block/json_util/details/BlockReference.h @@ -27,7 +27,7 @@ struct BlockReference { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/world/level/block/registry/BlockTypeRegistry.h b/src/mc/world/level/block/registry/BlockTypeRegistry.h index b25fab7c62..252f57ef1a 100644 --- a/src/mc/world/level/block/registry/BlockTypeRegistry.h +++ b/src/mc/world/level/block/registry/BlockTypeRegistry.h @@ -52,7 +52,7 @@ class BlockTypeRegistry { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; @@ -71,7 +71,7 @@ class BlockTypeRegistry { public: // member functions // NOLINTBEGIN - MCAPI ::BaseGameVersion const& getRequiredBaseGameVersion() const; + MCFOLD ::BaseGameVersion const& getRequiredBaseGameVersion() const; MCAPI ::Block const* operator()(int data) const; diff --git a/src/mc/world/level/block/registry/TrialSpawnerWeightedLootTable.h b/src/mc/world/level/block/registry/TrialSpawnerWeightedLootTable.h index 7f824fefcd..c9e747d83d 100644 --- a/src/mc/world/level/block/registry/TrialSpawnerWeightedLootTable.h +++ b/src/mc/world/level/block/registry/TrialSpawnerWeightedLootTable.h @@ -25,6 +25,6 @@ struct TrialSpawnerWeightedLootTable { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/world/level/block/registry/flattening_utils/RemovedBoolState.h b/src/mc/world/level/block/registry/flattening_utils/RemovedBoolState.h index c48eaba537..0e4a6dfe30 100644 --- a/src/mc/world/level/block/registry/flattening_utils/RemovedBoolState.h +++ b/src/mc/world/level/block/registry/flattening_utils/RemovedBoolState.h @@ -53,9 +53,9 @@ class RemovedBoolState : public ::FlatteningUtils::RemovedState { // NOLINTBEGIN MCAPI void $addValue(::CompoundTag const& tag); - MCAPI void $match(::CompoundTagUpdaterNodeBuilder& builder, uint64 index) const; + MCFOLD void $match(::CompoundTagUpdaterNodeBuilder& builder, uint64 index) const; - MCAPI uint64 $valueCount() const; + MCFOLD uint64 $valueCount() const; // NOLINTEND public: diff --git a/src/mc/world/level/block/registry/flattening_utils/RemovedIntState.h b/src/mc/world/level/block/registry/flattening_utils/RemovedIntState.h index 69d1d0b6f4..2428991d05 100644 --- a/src/mc/world/level/block/registry/flattening_utils/RemovedIntState.h +++ b/src/mc/world/level/block/registry/flattening_utils/RemovedIntState.h @@ -53,9 +53,9 @@ class RemovedIntState : public ::FlatteningUtils::RemovedState { // NOLINTBEGIN MCAPI void $addValue(::CompoundTag const& tag); - MCAPI void $match(::CompoundTagUpdaterNodeBuilder& builder, uint64 index) const; + MCFOLD void $match(::CompoundTagUpdaterNodeBuilder& builder, uint64 index) const; - MCAPI uint64 $valueCount() const; + MCFOLD uint64 $valueCount() const; // NOLINTEND public: diff --git a/src/mc/world/level/block/states/BlockStateMeta.h b/src/mc/world/level/block/states/BlockStateMeta.h index 43e642ef0f..5bbd0398bc 100644 --- a/src/mc/world/level/block/states/BlockStateMeta.h +++ b/src/mc/world/level/block/states/BlockStateMeta.h @@ -36,13 +36,13 @@ class BlockStateMeta { MCAPI int const getInt(int index) const; - MCAPI ::std::string const& getName() const; + MCFOLD ::std::string const& getName() const; - MCAPI ::BlockState const& getState() const; + MCFOLD ::BlockState const& getState() const; MCAPI ::std::string const& getString(int index) const; - MCAPI ::Tag::Type const getType() const; + MCFOLD ::Tag::Type const getType() const; MCAPI int indexOf(uint64 const& h) const; // NOLINTEND diff --git a/src/mc/world/level/block/traits/block_trait/placement_direction/PlacementDirection.h b/src/mc/world/level/block/traits/block_trait/placement_direction/PlacementDirection.h index 6ef0528550..8be3691817 100644 --- a/src/mc/world/level/block/traits/block_trait/placement_direction/PlacementDirection.h +++ b/src/mc/world/level/block/traits/block_trait/placement_direction/PlacementDirection.h @@ -215,7 +215,7 @@ class PlacementDirection : public ::BlockTrait::ITrait { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND public: diff --git a/src/mc/world/level/block/traits/block_trait/placement_position/PlacementPosition.h b/src/mc/world/level/block/traits/block_trait/placement_position/PlacementPosition.h index eb10be2b68..6cb4f40520 100644 --- a/src/mc/world/level/block/traits/block_trait/placement_position/PlacementPosition.h +++ b/src/mc/world/level/block/traits/block_trait/placement_position/PlacementPosition.h @@ -196,7 +196,7 @@ class PlacementPosition : public ::BlockTrait::ITrait { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND public: diff --git a/src/mc/world/level/camera/CameraPresets.h b/src/mc/world/level/camera/CameraPresets.h index e77811991a..6d2431ee35 100644 --- a/src/mc/world/level/camera/CameraPresets.h +++ b/src/mc/world/level/camera/CameraPresets.h @@ -41,7 +41,7 @@ class CameraPresets { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; @@ -77,9 +77,9 @@ class CameraPresets { MCAPI ::std::optional getCameraPresetIndex(::std::string const& presetName) const; - MCAPI ::std::vector<::CameraPreset> const& getPresets() const; + MCFOLD ::std::vector<::CameraPreset> const& getPresets() const; - MCAPI bool isEmpty() const; + MCFOLD bool isEmpty() const; MCAPI void loadPresets(::ResourcePackManager& resourcePackManager, ::Experiments const&); diff --git a/src/mc/world/level/camera/camera_presets_internals/CameraPresetsInternals.h b/src/mc/world/level/camera/camera_presets_internals/CameraPresetsInternals.h index f4dafcee32..c881e32ca4 100644 --- a/src/mc/world/level/camera/camera_presets_internals/CameraPresetsInternals.h +++ b/src/mc/world/level/camera/camera_presets_internals/CameraPresetsInternals.h @@ -11,7 +11,7 @@ namespace CameraPresetsInternals { MCAPI void _doContentError(::std::string const& message, ::std::string_view filename, ::std::vector<::std::string> const& errors); -MCAPI ::std::string _getUnrecognizedFieldText(::std::vector<::cereal::SerializerContext::LogEntry> const& schemaLog); +MCFOLD ::std::string _getUnrecognizedFieldText(::std::vector<::cereal::SerializerContext::LogEntry> const& schemaLog); // NOLINTEND // static variables diff --git a/src/mc/world/level/chunk/AtomicTimeAccumulator.h b/src/mc/world/level/chunk/AtomicTimeAccumulator.h index 427a15b708..e2a2c644e2 100644 --- a/src/mc/world/level/chunk/AtomicTimeAccumulator.h +++ b/src/mc/world/level/chunk/AtomicTimeAccumulator.h @@ -27,6 +27,6 @@ class AtomicTimeAccumulator { public: // constructor thunks // NOLINTBEGIN - MCAPI void* $ctor(); + MCFOLD void* $ctor(); // NOLINTEND }; diff --git a/src/mc/world/level/chunk/AverageTracker.h b/src/mc/world/level/chunk/AverageTracker.h index a44cf8b088..b627c2268d 100644 --- a/src/mc/world/level/chunk/AverageTracker.h +++ b/src/mc/world/level/chunk/AverageTracker.h @@ -31,6 +31,6 @@ struct AverageTracker { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/world/level/chunk/ChunkBoundingBox.h b/src/mc/world/level/chunk/ChunkBoundingBox.h index 60fddad8c9..e74fe5f684 100644 --- a/src/mc/world/level/chunk/ChunkBoundingBox.h +++ b/src/mc/world/level/chunk/ChunkBoundingBox.h @@ -25,7 +25,7 @@ struct ChunkBoundingBox { public: // member functions // NOLINTBEGIN - MCAPI ::BoundingBox const* operator->() const; + MCFOLD ::BoundingBox const* operator->() const; // NOLINTEND }; diff --git a/src/mc/world/level/chunk/ChunkLoadedRequest.h b/src/mc/world/level/chunk/ChunkLoadedRequest.h index 00480fd393..537ab122a1 100644 --- a/src/mc/world/level/chunk/ChunkLoadedRequest.h +++ b/src/mc/world/level/chunk/ChunkLoadedRequest.h @@ -94,6 +94,6 @@ class ChunkLoadedRequest { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/world/level/chunk/ChunkPerformanceData.h b/src/mc/world/level/chunk/ChunkPerformanceData.h index 2335f25ae7..ffd44f5438 100644 --- a/src/mc/world/level/chunk/ChunkPerformanceData.h +++ b/src/mc/world/level/chunk/ChunkPerformanceData.h @@ -45,7 +45,7 @@ struct ChunkPerformanceData : public ::Bedrock::EnableNonOwnerReferences { public: // constructor thunks // NOLINTBEGIN - MCAPI void* $ctor(); + MCFOLD void* $ctor(); // NOLINTEND }; diff --git a/src/mc/world/level/chunk/ChunkRecyclerTelemetryData.h b/src/mc/world/level/chunk/ChunkRecyclerTelemetryData.h index 23aef88df2..37104b6e23 100644 --- a/src/mc/world/level/chunk/ChunkRecyclerTelemetryData.h +++ b/src/mc/world/level/chunk/ChunkRecyclerTelemetryData.h @@ -92,7 +92,7 @@ class ChunkRecyclerTelemetryData : public ::Bedrock::EnableNonOwnerReferences { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/world/level/chunk/ChunkRecyclerTelemetryOutput.h b/src/mc/world/level/chunk/ChunkRecyclerTelemetryOutput.h index 4efb35ff49..04406a6875 100644 --- a/src/mc/world/level/chunk/ChunkRecyclerTelemetryOutput.h +++ b/src/mc/world/level/chunk/ChunkRecyclerTelemetryOutput.h @@ -35,6 +35,6 @@ struct ChunkRecyclerTelemetryOutput { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/world/level/chunk/ChunkSource.h b/src/mc/world/level/chunk/ChunkSource.h index 4e7f8e6280..3c0e229072 100644 --- a/src/mc/world/level/chunk/ChunkSource.h +++ b/src/mc/world/level/chunk/ChunkSource.h @@ -242,13 +242,13 @@ class ChunkSource : public ::Bedrock::EnableNonOwnerReferences { MCAPI ::std::shared_ptr<::LevelChunk> getAvailableChunkAt(::BlockPos const& pos); - MCAPI int getChunkSide() const; + MCFOLD int getChunkSide() const; - MCAPI ::Dimension& getDimension() const; + MCFOLD ::Dimension& getDimension() const; MCAPI ::std::shared_ptr<::LevelChunk> getGeneratedChunk(::ChunkPos const& cp); - MCAPI ::Level& getLevel() const; + MCFOLD ::Level& getLevel() const; MCAPI void initializeWithLevelStorageManagerConnector(::ILevelStorageManagerConnector& levelStorageManagerConnector ); @@ -285,9 +285,9 @@ class ChunkSource : public ::Bedrock::EnableNonOwnerReferences { MCAPI bool $isShutdownDone(); - MCAPI ::std::shared_ptr<::LevelChunk> $getExistingChunk(::ChunkPos const&); + MCFOLD ::std::shared_ptr<::LevelChunk> $getExistingChunk(::ChunkPos const&); - MCAPI ::std::shared_ptr<::LevelChunk> $getRandomChunk(::Random& random); + MCFOLD ::std::shared_ptr<::LevelChunk> $getRandomChunk(::Random& random); MCAPI bool $isChunkKnown(::ChunkPos const& chunkPos); @@ -299,9 +299,9 @@ class ChunkSource : public ::Bedrock::EnableNonOwnerReferences { MCAPI ::std::shared_ptr<::LevelChunk> $getOrLoadChunk(::ChunkPos const& cp, ::ChunkSource::LoadMode lm, bool readOnly); - MCAPI bool $postProcess(::ChunkViewSource& neighborhood); + MCFOLD bool $postProcess(::ChunkViewSource& neighborhood); - MCAPI void $checkAndReplaceChunk(::ChunkViewSource& neighborhood, ::LevelChunk& lc); + MCFOLD void $checkAndReplaceChunk(::ChunkViewSource& neighborhood, ::LevelChunk& lc); MCAPI void $loadChunk(::LevelChunk& lc, bool forceImmediateReplacementDataLoad); @@ -332,21 +332,21 @@ class ChunkSource : public ::Bedrock::EnableNonOwnerReferences { MCAPI void $flushThreadBatch(); - MCAPI bool $isWithinWorldLimit(::ChunkPos const& cp) const; + MCFOLD bool $isWithinWorldLimit(::ChunkPos const& cp) const; - MCAPI ::std::unordered_map<::ChunkPos, ::std::weak_ptr<::LevelChunk>> const* $getChunkMap(); + MCFOLD ::std::unordered_map<::ChunkPos, ::std::weak_ptr<::LevelChunk>> const* $getChunkMap(); MCAPI ::std::unordered_map<::ChunkPos, ::std::weak_ptr<::LevelChunk>> const& $getStorage() const; - MCAPI void $clearDeletedEntities(); + MCFOLD void $clearDeletedEntities(); - MCAPI bool $canCreateViews() const; + MCFOLD bool $canCreateViews() const; MCAPI ::std::unique_ptr<::BlendingDataProvider> $tryGetBlendingDataProvider(); MCAPI ::std::shared_ptr<::LevelChunkMetaDataDictionary> $loadLevelChunkMetaDataDictionary(); - MCAPI void $setLevelChunk(::std::shared_ptr<::LevelChunk>); + MCFOLD void $setLevelChunk(::std::shared_ptr<::LevelChunk>); MCAPI bool $canLaunchTasks() const; diff --git a/src/mc/world/level/chunk/ChunkTickOffsetManager.h b/src/mc/world/level/chunk/ChunkTickOffsetManager.h index 2eaa6b0fd7..54a55bd82a 100644 --- a/src/mc/world/level/chunk/ChunkTickOffsetManager.h +++ b/src/mc/world/level/chunk/ChunkTickOffsetManager.h @@ -26,11 +26,11 @@ class ChunkTickOffsetManager { // NOLINTBEGIN MCAPI ChunkTickOffsetManager(); - MCAPI ::std::vector<::ChunkPos> const& getClientTickingOffsets() const; + MCFOLD ::std::vector<::ChunkPos> const& getClientTickingOffsets() const; MCAPI ::std::vector<::ChunkPos> getSortedPositionsFromClientOffsets(::std::vector<::ChunkPos> const& centers) const; - MCAPI ::std::vector<::ChunkPos> const& getTickingOffsets() const; + MCFOLD ::std::vector<::ChunkPos> const& getTickingOffsets() const; MCAPI void initialize(uint serverTickRange); @@ -49,6 +49,6 @@ class ChunkTickOffsetManager { public: // constructor thunks // NOLINTBEGIN - MCAPI void* $ctor(); + MCFOLD void* $ctor(); // NOLINTEND }; diff --git a/src/mc/world/level/chunk/ChunkViewSource.h b/src/mc/world/level/chunk/ChunkViewSource.h index e952ed68c8..d736c1e692 100644 --- a/src/mc/world/level/chunk/ChunkViewSource.h +++ b/src/mc/world/level/chunk/ChunkViewSource.h @@ -74,7 +74,7 @@ class ChunkViewSource : public ::ChunkSource { MCAPI ::std::vector<::LevelChunkBlockActorAccessToken> enableBlockEntityAccess(); - MCAPI ::GridArea<::std::shared_ptr<::LevelChunk>>& getArea(); + MCFOLD ::GridArea<::std::shared_ptr<::LevelChunk>>& getArea(); MCAPI void move( ::Bounds const& bounds, @@ -144,7 +144,7 @@ class ChunkViewSource : public ::ChunkSource { MCAPI void $acquireDiscarded(::std::unique_ptr<::LevelChunk, ::LevelChunkFinalDeleter> ptr); - MCAPI ::std::shared_ptr<::LevelChunk> + MCFOLD ::std::shared_ptr<::LevelChunk> $createNewChunk(::ChunkPos const& cp, ::ChunkSource::LoadMode lm, bool readOnly); MCAPI bool $isWithinWorldLimit(::ChunkPos const& cp) const; diff --git a/src/mc/world/level/chunk/ChunksLoadedInfo.h b/src/mc/world/level/chunk/ChunksLoadedInfo.h index 38fbf2feca..a51a4179ee 100644 --- a/src/mc/world/level/chunk/ChunksLoadedInfo.h +++ b/src/mc/world/level/chunk/ChunksLoadedInfo.h @@ -34,7 +34,7 @@ struct ChunksLoadedInfo { // NOLINTBEGIN MCAPI ::std::unique_ptr<::ChunkViewSource> getChunkViewSource() const; - MCAPI ::ChunksLoadedStatus getChunksLoadedStatus() const; + MCFOLD ::ChunksLoadedStatus getChunksLoadedStatus() const; // NOLINTEND public: diff --git a/src/mc/world/level/chunk/DeserializedChunkLoadedRequest.h b/src/mc/world/level/chunk/DeserializedChunkLoadedRequest.h index 6f8085b5f8..ac57ca1aa4 100644 --- a/src/mc/world/level/chunk/DeserializedChunkLoadedRequest.h +++ b/src/mc/world/level/chunk/DeserializedChunkLoadedRequest.h @@ -44,6 +44,6 @@ struct DeserializedChunkLoadedRequest { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/world/level/chunk/DirtyTicksCounter.h b/src/mc/world/level/chunk/DirtyTicksCounter.h index eacdb2b79e..379827210c 100644 --- a/src/mc/world/level/chunk/DirtyTicksCounter.h +++ b/src/mc/world/level/chunk/DirtyTicksCounter.h @@ -17,7 +17,7 @@ struct DirtyTicksCounter { MCAPI int getTicksSinceLastChange() const; - MCAPI int getTotalDirtyTicks() const; + MCFOLD int getTotalDirtyTicks() const; MCAPI ::DirtyTicksCounter& operator++(); diff --git a/src/mc/world/level/chunk/FunctionAction.h b/src/mc/world/level/chunk/FunctionAction.h index 788a95ce54..49593d1d3f 100644 --- a/src/mc/world/level/chunk/FunctionAction.h +++ b/src/mc/world/level/chunk/FunctionAction.h @@ -53,7 +53,7 @@ class FunctionAction : public ::IRequestAction { MCAPI void _printOutput(::ServerLevel& level, int successCount); - MCAPI ::std::string const& getFilePath() const; + MCFOLD ::std::string const& getFilePath() const; // NOLINTEND public: diff --git a/src/mc/world/level/chunk/ImguiProfiler.h b/src/mc/world/level/chunk/ImguiProfiler.h index 1307c0dded..5346956606 100644 --- a/src/mc/world/level/chunk/ImguiProfiler.h +++ b/src/mc/world/level/chunk/ImguiProfiler.h @@ -143,7 +143,7 @@ struct ImguiProfiler : public ::Bedrock::EnableNonOwnerReferences { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND public: @@ -211,7 +211,7 @@ struct ImguiProfiler : public ::Bedrock::EnableNonOwnerReferences { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/world/level/chunk/LevelChunk.h b/src/mc/world/level/chunk/LevelChunk.h index a5ddacf010..6c7d4fd5a3 100644 --- a/src/mc/world/level/chunk/LevelChunk.h +++ b/src/mc/world/level/chunk/LevelChunk.h @@ -125,7 +125,7 @@ class LevelChunk { public: // constructor thunks // NOLINTBEGIN - MCAPI void* $ctor(); + MCFOLD void* $ctor(); MCAPI void* $ctor(::StringByteInput& stream); // NOLINTEND @@ -289,9 +289,9 @@ class LevelChunk { MCAPI bool _deserializeSubChunk(short index, ::StringByteInput& stream); - MCAPI void _disableBlockEntityAccessForThisThread() const; + MCFOLD void _disableBlockEntityAccessForThisThread() const; - MCAPI void _enableBlockEntityAccessForThisThread() const; + MCFOLD void _enableBlockEntityAccessForThisThread() const; MCAPI void _fixupCommandBlocksOnTickingQueue(::BlockSource& tickRegion); @@ -304,7 +304,7 @@ class LevelChunk { MCAPI void _generateOriginalLightingSubChunk(::BlockSource& source, uint64 subchunkIdx, bool); - MCAPI ::ChunkTerrainDataState _getTerrainDataState() const; + MCFOLD ::ChunkTerrainDataState _getTerrainDataState() const; MCAPI void _lightingCallbacks( ::ChunkBlockPos const& pos, @@ -347,7 +347,7 @@ class LevelChunk { ::Bedrock::Threading::UniqueLock<::std::shared_mutex> const& writeLock ); - MCAPI void _setGenerator(::ChunkSource* generator); + MCFOLD void _setGenerator(::ChunkSource* generator); MCAPI bool _setOnChunkLoadedCalled(); @@ -401,7 +401,7 @@ class LevelChunk { ::std::unordered_map<::ChunkBlockPos, ::std::shared_ptr<::BlockActor>>& blockEntityMap ); - MCAPI ::LevelChunkBlockActorAccessToken enableBlockEntityAccessForThisThread() const; + MCFOLD ::LevelChunkBlockActorAccessToken enableBlockEntityAccessForThisThread() const; MCAPI void fetchBiomes(::std::vector<::Biome const*>& biomes) const; @@ -453,7 +453,7 @@ class LevelChunk { MCAPI ::std::vector<::WeakEntityRef>& getChunkEntities(); - MCAPI ::Dimension& getDimension() const; + MCFOLD ::Dimension& getDimension() const; MCAPI void getEntities( ::gsl::span<::gsl::not_null<::Actor const*>> ignoredEntities, @@ -473,7 +473,7 @@ class LevelChunk { MCAPI ::GameEventListenerRegistry& getGameEventListenerRegistry() const; - MCAPI ::ChunkSource* getGenerator() const; + MCFOLD ::ChunkSource* getGenerator() const; MCAPI ::DimensionHeightRange const& getHeightRange() const; @@ -483,9 +483,9 @@ class LevelChunk { MCAPI float getInterpolant(uint64 x, uint64 y) const; - MCAPI ::Tick const& getLastTick() const; + MCFOLD ::Tick const& getLastTick() const; - MCAPI ::Level& getLevel() const; + MCFOLD ::Level& getLevel() const; MCAPI ::LevelChunkVolumeData& getLevelChunkVolumeData(); @@ -503,13 +503,13 @@ class LevelChunk { MCAPI ::std::shared_ptr<::LevelChunkMetaData> getMetaDataCopy() const; - MCAPI ::BlockPos const& getMin() const; + MCFOLD ::BlockPos const& getMin() const; MCAPI short getMinY() const; MCAPI short getNonAirMaxHeight() const; - MCAPI ::ChunkPos const& getPosition() const; + MCFOLD ::ChunkPos const& getPosition() const; MCAPI ::ChunkLocalHeight getPreWorldGenHeightmap(::ChunkBlockPos const& pos) const; @@ -521,7 +521,7 @@ class LevelChunk { MCAPI ::Brightness getRawBrightness(::ChunkBlockPos const& pos, ::Brightness skyDampen) const; - MCAPI ::std::atomic<::ChunkState> const& getState() const; + MCFOLD ::std::atomic<::ChunkState> const& getState() const; MCAPI ::SubChunk const* getSubChunk(short absoluteIndex) const; @@ -533,7 +533,7 @@ class LevelChunk { MCAPI ::BlockTickingQueue const& getTickQueue() const; - MCAPI ::BlockTickingQueue& getTickQueue(); + MCFOLD ::BlockTickingQueue& getTickQueue(); MCAPI ::BlockPos const getTopRainBlockPos(::ChunkBlockPos const& pos); @@ -561,7 +561,7 @@ class LevelChunk { MCAPI bool isNonActorDataDirty() const; - MCAPI bool isReadOnly() const; + MCFOLD bool isReadOnly() const; MCAPI bool isSkyLit(::ChunkBlockPos const& pos) const; @@ -616,9 +616,9 @@ class LevelChunk { MCAPI void removeHardcodedSpawningArea(::HardcodedSpawnAreaType type); - MCAPI void serialize2DMaps(::IDataOutput& stream) const; + MCFOLD void serialize2DMaps(::IDataOutput& stream) const; - MCAPI void serialize3DMaps(::IDataOutput& stream) const; + MCFOLD void serialize3DMaps(::IDataOutput& stream) const; MCAPI void serializeBiomeStates(::IDataOutput& stream) const; @@ -728,7 +728,7 @@ class LevelChunk { public: // static functions // NOLINTBEGIN - MCAPI static bool borderBlocksAreEnabled(); + MCFOLD static bool borderBlocksAreEnabled(); MCAPI static ::std::unique_ptr<::LevelChunk, ::LevelChunkPhase1Deleter> createNew(::Dimension& dimension, ::ChunkPos cp, bool readOnly, ::SubChunkInitMode initBlocks); diff --git a/src/mc/world/level/chunk/LevelChunkEventManager.h b/src/mc/world/level/chunk/LevelChunkEventManager.h index 488003499d..240fb69d11 100644 --- a/src/mc/world/level/chunk/LevelChunkEventManager.h +++ b/src/mc/world/level/chunk/LevelChunkEventManager.h @@ -86,11 +86,11 @@ class LevelChunkEventManager : public ::ILevelChunkEventManagerConnector { public: // virtual function thunks // NOLINTBEGIN - MCAPI ::Bedrock::PubSub::Connector& $getOnChunkLoadedConnector(); + MCFOLD ::Bedrock::PubSub::Connector& $getOnChunkLoadedConnector(); - MCAPI ::Bedrock::PubSub::Connector& $getOnChunkReloadedConnector(); + MCFOLD ::Bedrock::PubSub::Connector& $getOnChunkReloadedConnector(); - MCAPI ::Bedrock::PubSub::Connector& $getOnChunkDiscardedConnector(); + MCFOLD ::Bedrock::PubSub::Connector& $getOnChunkDiscardedConnector(); // NOLINTEND public: diff --git a/src/mc/world/level/chunk/LevelChunkSaveManager.h b/src/mc/world/level/chunk/LevelChunkSaveManager.h index ac1dca4732..630cb04021 100644 --- a/src/mc/world/level/chunk/LevelChunkSaveManager.h +++ b/src/mc/world/level/chunk/LevelChunkSaveManager.h @@ -74,7 +74,7 @@ class LevelChunkSaveManager { MCAPI bool _shouldDoSave() const; - MCAPI bool isChunkSaveInProgress(); + MCFOLD bool isChunkSaveInProgress(); MCAPI void registerForLevelChunkManagerEvents(::ILevelChunkEventManagerConnector& levelChunkEventManagerConnector); diff --git a/src/mc/world/level/chunk/LevelChunkVolumeData.h b/src/mc/world/level/chunk/LevelChunkVolumeData.h index f1c6c8d628..70e7bbd921 100644 --- a/src/mc/world/level/chunk/LevelChunkVolumeData.h +++ b/src/mc/world/level/chunk/LevelChunkVolumeData.h @@ -38,11 +38,11 @@ class LevelChunkVolumeData { // NOLINTBEGIN MCAPI void addStructure(::std::shared_ptr<::br::worldgen::StructureInstance const> instance); - MCAPI void addStructure(::StructureStart const& start); + MCFOLD void addStructure(::StructureStart const& start); MCAPI void addStructureReference(::std::shared_ptr<::br::worldgen::StructureInstance const> instance); - MCAPI void addStructureReference(::StructureStart const& start); + MCFOLD void addStructureReference(::StructureStart const& start); MCAPI void deserializeAabbVolumes(::IDataInput& stream); diff --git a/src/mc/world/level/chunk/MainChunkSource.h b/src/mc/world/level/chunk/MainChunkSource.h index f36448259f..d2d9b7440a 100644 --- a/src/mc/world/level/chunk/MainChunkSource.h +++ b/src/mc/world/level/chunk/MainChunkSource.h @@ -85,7 +85,7 @@ class MainChunkSource : public ::ChunkSource { public: // virtual function thunks // NOLINTBEGIN - MCAPI ::std::shared_ptr<::LevelChunk> $getExistingChunk(::ChunkPos const& cp); + MCFOLD ::std::shared_ptr<::LevelChunk> $getExistingChunk(::ChunkPos const& cp); MCAPI bool $isChunkKnown(::ChunkPos const& chunkPos); @@ -94,15 +94,15 @@ class MainChunkSource : public ::ChunkSource { MCAPI ::std::shared_ptr<::LevelChunk> $createNewChunk(::ChunkPos const& cp, ::ChunkSource::LoadMode lm, bool readOnly); - MCAPI void $acquireDiscarded(::std::unique_ptr<::LevelChunk, ::LevelChunkFinalDeleter> ptr); + MCFOLD void $acquireDiscarded(::std::unique_ptr<::LevelChunk, ::LevelChunkFinalDeleter> ptr); - MCAPI ::std::unordered_map<::ChunkPos, ::std::weak_ptr<::LevelChunk>> const& $getStorage() const; + MCFOLD ::std::unordered_map<::ChunkPos, ::std::weak_ptr<::LevelChunk>> const& $getStorage() const; MCAPI void $clearDeletedEntities(); - MCAPI ::std::unordered_map<::ChunkPos, ::std::weak_ptr<::LevelChunk>> const* $getChunkMap(); + MCFOLD ::std::unordered_map<::ChunkPos, ::std::weak_ptr<::LevelChunk>> const* $getChunkMap(); - MCAPI bool $canCreateViews() const; + MCFOLD bool $canCreateViews() const; MCAPI void $setLevelChunk(::std::shared_ptr<::LevelChunk> lc); // NOLINTEND diff --git a/src/mc/world/level/chunk/MetaDataTypeVisitor_Get.h b/src/mc/world/level/chunk/MetaDataTypeVisitor_Get.h index ed2e90f191..47dd2bf958 100644 --- a/src/mc/world/level/chunk/MetaDataTypeVisitor_Get.h +++ b/src/mc/world/level/chunk/MetaDataTypeVisitor_Get.h @@ -25,6 +25,6 @@ struct MetaDataTypeVisitor_Get { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/world/level/chunk/NetworkChunkSource.h b/src/mc/world/level/chunk/NetworkChunkSource.h index 78189e92f8..f7b9fc1181 100644 --- a/src/mc/world/level/chunk/NetworkChunkSource.h +++ b/src/mc/world/level/chunk/NetworkChunkSource.h @@ -80,7 +80,7 @@ class NetworkChunkSource : public ::ChunkSource { public: // virtual function thunks // NOLINTBEGIN - MCAPI ::std::shared_ptr<::LevelChunk> $getExistingChunk(::ChunkPos const& cp); + MCFOLD ::std::shared_ptr<::LevelChunk> $getExistingChunk(::ChunkPos const& cp); MCAPI ::std::shared_ptr<::LevelChunk> $createNewChunk(::ChunkPos const& cp, ::ChunkSource::LoadMode lm, bool readOnly); @@ -88,15 +88,15 @@ class NetworkChunkSource : public ::ChunkSource { MCAPI ::std::shared_ptr<::LevelChunk> $getOrLoadChunk(::ChunkPos const& cp, ::ChunkSource::LoadMode lm, bool readOnly); - MCAPI void $acquireDiscarded(::std::unique_ptr<::LevelChunk, ::LevelChunkFinalDeleter> ptr); + MCFOLD void $acquireDiscarded(::std::unique_ptr<::LevelChunk, ::LevelChunkFinalDeleter> ptr); - MCAPI ::std::unordered_map<::ChunkPos, ::std::weak_ptr<::LevelChunk>> const& $getStorage() const; + MCFOLD ::std::unordered_map<::ChunkPos, ::std::weak_ptr<::LevelChunk>> const& $getStorage() const; - MCAPI ::std::unordered_map<::ChunkPos, ::std::weak_ptr<::LevelChunk>> const* $getChunkMap(); + MCFOLD ::std::unordered_map<::ChunkPos, ::std::weak_ptr<::LevelChunk>> const* $getChunkMap(); - MCAPI bool $canCreateViews() const; + MCFOLD bool $canCreateViews() const; - MCAPI bool $canLaunchTasks() const; + MCFOLD bool $canLaunchTasks() const; // NOLINTEND public: diff --git a/src/mc/world/level/chunk/PostprocessingManager.h b/src/mc/world/level/chunk/PostprocessingManager.h index e9587fbf8f..a4a143b1e4 100644 --- a/src/mc/world/level/chunk/PostprocessingManager.h +++ b/src/mc/world/level/chunk/PostprocessingManager.h @@ -50,7 +50,7 @@ class PostprocessingManager { public: // constructor thunks // NOLINTBEGIN - MCAPI void* $ctor(); + MCFOLD void* $ctor(); // NOLINTEND public: diff --git a/src/mc/world/level/chunk/RollingAverageTracker.h b/src/mc/world/level/chunk/RollingAverageTracker.h index 4e53c4e417..57e3acd107 100644 --- a/src/mc/world/level/chunk/RollingAverageTracker.h +++ b/src/mc/world/level/chunk/RollingAverageTracker.h @@ -24,7 +24,7 @@ class RollingAverageTracker { MCAPI void addSample(::std::chrono::nanoseconds dt); - MCAPI ::std::chrono::nanoseconds getAverage() const; + MCFOLD ::std::chrono::nanoseconds getAverage() const; MCAPI ::std::chrono::nanoseconds getLastSample() const; diff --git a/src/mc/world/level/chunk/StructureType.h b/src/mc/world/level/chunk/StructureType.h index b00176b85a..af3b2716ed 100644 --- a/src/mc/world/level/chunk/StructureType.h +++ b/src/mc/world/level/chunk/StructureType.h @@ -26,7 +26,7 @@ struct StructureType { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/world/level/chunk/SubChunk.h b/src/mc/world/level/chunk/SubChunk.h index 644f69df81..976f90a9c5 100644 --- a/src/mc/world/level/chunk/SubChunk.h +++ b/src/mc/world/level/chunk/SubChunk.h @@ -107,7 +107,7 @@ struct SubChunk { ::std::vector<::BlockDataFetchResult<::Block>>& output ) const; - MCAPI schar getAbsoluteIndex() const; + MCFOLD schar getAbsoluteIndex() const; MCAPI ::Block const& getBlock(ushort index) const; @@ -115,7 +115,7 @@ struct SubChunk { MCAPI ::SubChunkBrightnessStorage::LightPair getLight(ushort idx) const; - MCAPI ::SubChunk::SubChunkState getSubChunkState() const; + MCFOLD ::SubChunk::SubChunkState getSubChunkState() const; MCAPI bool isEmpty() const; diff --git a/src/mc/world/level/chunk/TimeAccumulator.h b/src/mc/world/level/chunk/TimeAccumulator.h index 3386e0b4cb..25f8a561b4 100644 --- a/src/mc/world/level/chunk/TimeAccumulator.h +++ b/src/mc/world/level/chunk/TimeAccumulator.h @@ -20,7 +20,7 @@ class TimeAccumulator { public: // member functions // NOLINTBEGIN - MCAPI uint64 getCount() const; + MCFOLD uint64 getCount() const; MCAPI float getTimeSumAverageMS() const; diff --git a/src/mc/world/level/chunk/WorldLimitChunkSource.h b/src/mc/world/level/chunk/WorldLimitChunkSource.h index 44df3392d0..5a69c8c111 100644 --- a/src/mc/world/level/chunk/WorldLimitChunkSource.h +++ b/src/mc/world/level/chunk/WorldLimitChunkSource.h @@ -77,7 +77,7 @@ class WorldLimitChunkSource : public ::ChunkSource { MCAPI bool $isWithinWorldLimit(::ChunkPos const& cp) const; - MCAPI bool $canCreateViews() const; + MCFOLD bool $canCreateViews() const; MCAPI ::std::unordered_map<::ChunkPos, ::std::weak_ptr<::LevelChunk>> const* $getChunkMap(); // NOLINTEND diff --git a/src/mc/world/level/chunk_view_tracker_manager_helper/ChunkToReload.h b/src/mc/world/level/chunk_view_tracker_manager_helper/ChunkToReload.h index 72a944e2a3..7aafcd34ff 100644 --- a/src/mc/world/level/chunk_view_tracker_manager_helper/ChunkToReload.h +++ b/src/mc/world/level/chunk_view_tracker_manager_helper/ChunkToReload.h @@ -28,7 +28,7 @@ struct ChunkToReload { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/world/level/dimension/ChunkBuildOrderPolicyBase.h b/src/mc/world/level/dimension/ChunkBuildOrderPolicyBase.h index 88608f9052..2057318748 100644 --- a/src/mc/world/level/dimension/ChunkBuildOrderPolicyBase.h +++ b/src/mc/world/level/dimension/ChunkBuildOrderPolicyBase.h @@ -43,7 +43,7 @@ class ChunkBuildOrderPolicyBase { public: // virtual function thunks // NOLINTBEGIN - MCAPI uint $registerForUpdates(); + MCFOLD uint $registerForUpdates(); // NOLINTEND public: diff --git a/src/mc/world/level/dimension/Dimension.h b/src/mc/world/level/dimension/Dimension.h index 979222508e..e749378485 100644 --- a/src/mc/world/level/dimension/Dimension.h +++ b/src/mc/world/level/dimension/Dimension.h @@ -366,37 +366,37 @@ class Dimension : public ::IDimension, MCAPI void flushRunTimeLighting(); - MCAPI ::BlockEventDispatcher& getBlockEventDispatcher(); + MCFOLD ::BlockEventDispatcher& getBlockEventDispatcher(); - MCAPI ::BlockSource& getBlockSourceFromMainChunkSource() const; + MCFOLD ::BlockSource& getBlockSourceFromMainChunkSource() const; MCAPI ::ChunkBuildOrderPolicyBase& getChunkBuildOrderPolicy(); MCAPI ::gsl::not_null<::ChunkLoadActionList*> getChunkLoadActionList(); - MCAPI ::ChunkSource& getChunkSource() const; + MCFOLD ::ChunkSource& getChunkSource() const; - MCAPI ::CircuitSystem& getCircuitSystem(); + MCFOLD ::CircuitSystem& getCircuitSystem(); MCAPI ::gsl::not_null<::DelayActionList*> getDelayActionList(); MCAPI ::std::vector<::WeakEntityRef>& getDisplayEntities(); - MCAPI ::std::unordered_map<::ActorUniqueID, ::WeakEntityRef>& getEntityIdMap(); + MCFOLD ::std::unordered_map<::ActorUniqueID, ::WeakEntityRef>& getEntityIdMap(); - MCAPI ::FeatureTerrainAdjustments& getFeatureTerrainAdjustments(); + MCFOLD ::FeatureTerrainAdjustments& getFeatureTerrainAdjustments(); - MCAPI ::GameEventDispatcher* getGameEventDispatcher() const; + MCFOLD ::GameEventDispatcher* getGameEventDispatcher() const; MCAPI short getHeight() const; MCAPI ushort getHeightInSubchunks() const; - MCAPI ::DimensionHeightRange const& getHeightRange() const; + MCFOLD ::DimensionHeightRange const& getHeightRange() const; - MCAPI ::Level& getLevel() const; + MCFOLD ::Level& getLevel() const; - MCAPI ::Level const& getLevelConst() const; + MCFOLD ::Level const& getLevelConst() const; MCAPI short getMinHeight() const; @@ -406,7 +406,7 @@ class Dimension : public ::IDimension, MCAPI float getPopCap(int catID, bool surface) const; - MCAPI ::Seasons& getSeasons(); + MCFOLD ::Seasons& getSeasons(); MCAPI ::Brightness getSkyDarken() const; @@ -414,9 +414,9 @@ class Dimension : public ::IDimension, MCAPI ::std::shared_ptr<::LevelChunkMetaData const> getTargetMetaData(); - MCAPI ::TickingAreaList& getTickingAreas(); + MCFOLD ::TickingAreaList& getTickingAreas(); - MCAPI ::TickingAreaList const& getTickingAreasConst() const; + MCFOLD ::TickingAreaList const& getTickingAreasConst() const; MCAPI float getTimeOfDay(float a) const; @@ -424,9 +424,9 @@ class Dimension : public ::IDimension, MCAPI ::WeakRef<::Dimension> getWeakRef(); - MCAPI ::Weather& getWeather() const; + MCFOLD ::Weather& getWeather() const; - MCAPI ::WorldGenerator* getWorldGenerator() const; + MCFOLD ::WorldGenerator* getWorldGenerator() const; MCAPI bool hasCeiling() const; @@ -545,27 +545,27 @@ class Dimension : public ::IDimension, MCAPI void $initializeWithLevelStorageManagerConnector(::ILevelStorageManagerConnector& levelStorageManagerConnector ); - MCAPI bool $isNaturalDimension() const; + MCFOLD bool $isNaturalDimension() const; - MCAPI bool $isValidSpawn(int x, int z) const; + MCFOLD bool $isValidSpawn(int x, int z) const; MCAPI ::mce::Color $getBrightnessDependentFogColor(::mce::Color const& baseColor, float brightness) const; - MCAPI bool $hasPrecipitationFog() const; + MCFOLD bool $hasPrecipitationFog() const; - MCAPI short $getCloudHeight() const; + MCFOLD short $getCloudHeight() const; MCAPI ::HashedString $getDefaultBiome() const; - MCAPI bool $mayRespawnViaBed() const; + MCFOLD bool $mayRespawnViaBed() const; - MCAPI bool $hasGround() const; + MCFOLD bool $hasGround() const; - MCAPI ::BlockPos $getSpawnPos() const; + MCFOLD ::BlockPos $getSpawnPos() const; - MCAPI int $getSpawnYPosition() const; + MCFOLD int $getSpawnYPosition() const; - MCAPI bool $showSky() const; + MCFOLD bool $showSky() const; MCAPI bool $isDay() const; @@ -575,11 +575,11 @@ class Dimension : public ::IDimension, MCAPI void $forEachPlayer(::brstd::function_ref callback) const; - MCAPI ::BiomeRegistry& $getBiomeRegistry(); + MCFOLD ::BiomeRegistry& $getBiomeRegistry(); - MCAPI ::BiomeRegistry const& $getBiomeRegistry() const; + MCFOLD ::BiomeRegistry const& $getBiomeRegistry() const; - MCAPI bool $forceCheckAllNeighChunkSavedStat() const; + MCFOLD bool $forceCheckAllNeighChunkSavedStat() const; MCAPI ::Actor* $fetchEntity(::ActorUniqueID actorID, bool getRemoved) const; @@ -617,7 +617,7 @@ class Dimension : public ::IDimension, MCAPI ::BaseLightTextureImageBuilder* $getLightTextureImageBuilder() const; - MCAPI ::DimensionBrightnessRamp const& $getBrightnessRamp() const; + MCFOLD ::DimensionBrightnessRamp const& $getBrightnessRamp() const; MCAPI void $startLeaveGame(); diff --git a/src/mc/world/level/dimension/DimensionBrightnessRamp.h b/src/mc/world/level/dimension/DimensionBrightnessRamp.h index 5f8b2fd508..147fd17970 100644 --- a/src/mc/world/level/dimension/DimensionBrightnessRamp.h +++ b/src/mc/world/level/dimension/DimensionBrightnessRamp.h @@ -39,7 +39,7 @@ class DimensionBrightnessRamp { // NOLINTBEGIN MCAPI void $buildBrightnessRamp(); - MCAPI float $getBaseAmbientValue() const; + MCFOLD float $getBaseAmbientValue() const; // NOLINTEND public: diff --git a/src/mc/world/level/dimension/DimensionDefinitionGroup.h b/src/mc/world/level/dimension/DimensionDefinitionGroup.h index fa76aa04c4..7fd12b410b 100644 --- a/src/mc/world/level/dimension/DimensionDefinitionGroup.h +++ b/src/mc/world/level/dimension/DimensionDefinitionGroup.h @@ -53,7 +53,7 @@ class DimensionDefinitionGroup { MCAPI ::std::optional<::DimensionDefinitionGroup::DimensionDefinition> getDimensionDefinition(::std::string const& dimensionName) const; - MCAPI bool isEmpty() const; + MCFOLD bool isEmpty() const; MCAPI bool tryAddDimensionDefinitionByString(::cereal::ReflectionCtx& ctx, ::std::string const& dimensionDefinitionJSON); @@ -73,6 +73,6 @@ class DimensionDefinitionGroup { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/world/level/dimension/DimensionDocument.h b/src/mc/world/level/dimension/DimensionDocument.h index 5d92decd84..aff457bde2 100644 --- a/src/mc/world/level/dimension/DimensionDocument.h +++ b/src/mc/world/level/dimension/DimensionDocument.h @@ -39,10 +39,11 @@ struct DimensionDocument { public: // member functions // NOLINTBEGIN - MCAPI ::DimensionDocument::Dimension::Description& + MCFOLD ::DimensionDocument::Dimension::Description& operator=(::DimensionDocument::Dimension::Description const&); - MCAPI ::DimensionDocument::Dimension::Description& operator=(::DimensionDocument::Dimension::Description&&); + MCFOLD ::DimensionDocument::Dimension::Description& + operator=(::DimensionDocument::Dimension::Description&&); MCAPI ~Description(); // NOLINTEND @@ -56,7 +57,7 @@ struct DimensionDocument { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; @@ -105,10 +106,10 @@ struct DimensionDocument { public: // member functions // NOLINTBEGIN - MCAPI ::DimensionDocument::Dimension::Components::Generation& + MCFOLD ::DimensionDocument::Dimension::Components::Generation& operator=(::DimensionDocument::Dimension::Components::Generation const&); - MCAPI ::DimensionDocument::Dimension::Components::Generation& + MCFOLD ::DimensionDocument::Dimension::Components::Generation& operator=(::DimensionDocument::Dimension::Components::Generation&&); // NOLINTEND @@ -178,7 +179,7 @@ struct DimensionDocument { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; @@ -210,6 +211,6 @@ struct DimensionDocument { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/world/level/dimension/NetherBrightnessRamp.h b/src/mc/world/level/dimension/NetherBrightnessRamp.h index c4ff2ee25f..d264ae0a41 100644 --- a/src/mc/world/level/dimension/NetherBrightnessRamp.h +++ b/src/mc/world/level/dimension/NetherBrightnessRamp.h @@ -25,7 +25,7 @@ class NetherBrightnessRamp : public ::DimensionBrightnessRamp { public: // virtual function thunks // NOLINTBEGIN - MCAPI float $getBaseAmbientValue() const; + MCFOLD float $getBaseAmbientValue() const; // NOLINTEND public: diff --git a/src/mc/world/level/dimension/NetherDimension.h b/src/mc/world/level/dimension/NetherDimension.h index e092163bed..c9b5be930c 100644 --- a/src/mc/world/level/dimension/NetherDimension.h +++ b/src/mc/world/level/dimension/NetherDimension.h @@ -103,32 +103,32 @@ class NetherDimension : public ::Dimension { MCAPI ::HashedString $getDefaultBiome() const; - MCAPI bool $isNaturalDimension() const; + MCFOLD bool $isNaturalDimension() const; - MCAPI bool $isValidSpawn(int x, int z) const; + MCFOLD bool $isValidSpawn(int x, int z) const; - MCAPI bool $showSky() const; + MCFOLD bool $showSky() const; - MCAPI float $getTimeOfDay(int time, float a) const; + MCFOLD float $getTimeOfDay(int time, float a) const; - MCAPI bool $mayRespawnViaBed() const; + MCFOLD bool $mayRespawnViaBed() const; - MCAPI bool $forceCheckAllNeighChunkSavedStat() const; + MCFOLD bool $forceCheckAllNeighChunkSavedStat() const; MCAPI ::Vec3 $translatePosAcrossDimension(::Vec3 const& originalPos, ::DimensionType fromId) const; MCAPI ::std::unique_ptr<::WorldGenerator> $createGenerator(::br::worldgen::StructureSetRegistry const& structureSetRegistry); - MCAPI bool $levelChunkNeedsUpgrade(::LevelChunk const& lc) const; + MCFOLD bool $levelChunkNeedsUpgrade(::LevelChunk const& lc) const; MCAPI void $upgradeLevelChunk(::ChunkSource& source, ::LevelChunk& lc, ::LevelChunk& generatedChunk); - MCAPI void $fixWallChunk(::ChunkSource& source, ::LevelChunk& lc); + MCFOLD void $fixWallChunk(::ChunkSource& source, ::LevelChunk& lc); - MCAPI void $_upgradeOldLimboEntity(::CompoundTag& tag, ::LimboEntitiesVersion vers); + MCFOLD void $_upgradeOldLimboEntity(::CompoundTag& tag, ::LimboEntitiesVersion vers); - MCAPI ::std::unique_ptr<::ChunkSource> + MCFOLD ::std::unique_ptr<::ChunkSource> $_wrapStorageForVersionCompatibility(::std::unique_ptr<::ChunkSource> storageSource, ::StorageVersion levelVersion); // NOLINTEND diff --git a/src/mc/world/level/dimension/OverworldDimension.h b/src/mc/world/level/dimension/OverworldDimension.h index 05e6b046e2..621e2704a5 100644 --- a/src/mc/world/level/dimension/OverworldDimension.h +++ b/src/mc/world/level/dimension/OverworldDimension.h @@ -90,19 +90,19 @@ class OverworldDimension : public ::Dimension { MCAPI ::std::unique_ptr<::WorldGenerator> $createGenerator(::br::worldgen::StructureSetRegistry const& structureSetRegistry); - MCAPI bool $levelChunkNeedsUpgrade(::LevelChunk const& lc) const; + MCFOLD bool $levelChunkNeedsUpgrade(::LevelChunk const& lc) const; MCAPI void $upgradeLevelChunk(::ChunkSource& source, ::LevelChunk& lc, ::LevelChunk& generatedChunk); - MCAPI void $fixWallChunk(::ChunkSource& source, ::LevelChunk& lc); + MCFOLD void $fixWallChunk(::ChunkSource& source, ::LevelChunk& lc); MCAPI short $getCloudHeight() const; - MCAPI bool $hasPrecipitationFog() const; + MCFOLD bool $hasPrecipitationFog() const; MCAPI ::mce::Color $getBrightnessDependentFogColor(::mce::Color const& baseColor, float brightness) const; - MCAPI void $_upgradeOldLimboEntity(::CompoundTag& tag, ::LimboEntitiesVersion vers); + MCFOLD void $_upgradeOldLimboEntity(::CompoundTag& tag, ::LimboEntitiesVersion vers); MCAPI ::std::unique_ptr<::ChunkSource> $_wrapStorageForVersionCompatibility(::std::unique_ptr<::ChunkSource> storageSource, ::StorageVersion levelVersion); diff --git a/src/mc/world/level/dimension/end/EndDragonFight.h b/src/mc/world/level/dimension/end/EndDragonFight.h index 66a4a2621a..9cf4cbd5ea 100644 --- a/src/mc/world/level/dimension/end/EndDragonFight.h +++ b/src/mc/world/level/dimension/end/EndDragonFight.h @@ -3,11 +3,13 @@ #include "mc/_HeaderOutputPredefine.h" // auto generated inclusion list +#include "mc/world/level/dimension/end/EndDragonFightVersion.h" #include "mc/world/level/dimension/end/RespawnAnimation.h" // auto generated forward declare list // clang-format off class ActorDamageSource; +class BlockPatternBuilder; class BlockPos; class BlockSource; class ChunkViewSource; @@ -64,35 +66,36 @@ class EndDragonFight { public: // member variables // NOLINTBEGIN - ::ll::UntypedStorage<8, 8> mUnk3074b4; - ::ll::UntypedStorage<8, 24> mUnkd2cb31; - ::ll::UntypedStorage<8, 8> mUnkfe37e5; - ::ll::UntypedStorage<4, 4> mUnk9d1c98; - ::ll::UntypedStorage<4, 4> mUnk57dcd9; - ::ll::UntypedStorage<4, 4> mUnk699483; - ::ll::UntypedStorage<4, 4> mUnkb67f6c; - ::ll::UntypedStorage<1, 1> mUnkde9c45; - ::ll::UntypedStorage<1, 1> mUnk47c04d; - ::ll::UntypedStorage<1, 1> mUnkf7c308; - ::ll::UntypedStorage<8, 8> mUnk63c6c7; - ::ll::UntypedStorage<4, 12> mUnk31f1af; - ::ll::UntypedStorage<4, 12> mUnk93b99b; - ::ll::UntypedStorage<4, 4> mUnk33e167; - ::ll::UntypedStorage<4, 4> mUnka333be; - ::ll::UntypedStorage<8, 24> mUnk26e1c5; - ::ll::UntypedStorage<1, 1> mUnk487fc6; - ::ll::UntypedStorage<8, 32> mUnk8a98cb; - ::ll::UntypedStorage<8, 32> mUnk3022b3; - ::ll::UntypedStorage<1, 1> mUnk507824; - ::ll::UntypedStorage<8, 40> mUnk985b0f; + ::ll::TypedStorage<8, 8, ::BlockSource*> mRegion; + ::ll::TypedStorage<8, 24, ::std::vector> mGateways; + ::ll::TypedStorage<8, 8, ::std::unique_ptr<::BlockPatternBuilder>> mExitPortalPattern; + ::ll::TypedStorage<4, 4, int> mNumCrystalsAlive; + ::ll::TypedStorage<4, 4, int> mTicksSinceCrystalsScanned; + ::ll::TypedStorage<4, 4, int> mTicksSincePortalScanned; + ::ll::TypedStorage<4, 4, int> mTicksSinceLastPlayerScan; + ::ll::TypedStorage<1, 1, bool> mDragonKilled; + ::ll::TypedStorage<1, 1, bool> mPreviouslyKilled; + ::ll::TypedStorage<1, 1, bool> mDragonSpawned; + ::ll::TypedStorage<8, 8, ::ActorUniqueID> mDragonUUID; + ::ll::TypedStorage<4, 12, ::BlockPos> mPortalLocation; + ::ll::TypedStorage<4, 12, ::BlockPos const> mDragonSpawnPos; + ::ll::TypedStorage<4, 4, ::RespawnAnimation> mRespawnStage; + ::ll::TypedStorage<4, 4, int> mRespawnTime; + ::ll::TypedStorage<8, 24, ::std::vector<::ActorUniqueID>> mRespawnCrystals; + ::ll::TypedStorage<1, 1, ::EndDragonFightVersion> mFightVersion; + ::ll::TypedStorage<8, 32, ::EndDragonFight::GateWayGenerator> mEntryGenerator; + ::ll::TypedStorage<8, 32, ::EndDragonFight::GateWayGenerator> mExitGenerator; + ::ll::TypedStorage<1, 1, ::EndDragonFight::GatewayTask> mBuildingOrVerifyingEndGatewayPair; + ::ll::TypedStorage< + 8, + 40, + ::std::deque<::std::tuple< + ::EndDragonFight::GatewayTask, + ::EndDragonFight::GateWayGenerator, + ::EndDragonFight::GateWayGenerator>>> + mGatewayTasks; // NOLINTEND -public: - // prevent constructor by default - EndDragonFight& operator=(EndDragonFight const&); - EndDragonFight(EndDragonFight const&); - EndDragonFight(); - public: // member functions // NOLINTBEGIN diff --git a/src/mc/world/level/dimension/end/TheEndDimension.h b/src/mc/world/level/dimension/end/TheEndDimension.h index 187bc35946..82bf72c1ca 100644 --- a/src/mc/world/level/dimension/end/TheEndDimension.h +++ b/src/mc/world/level/dimension/end/TheEndDimension.h @@ -147,17 +147,17 @@ class TheEndDimension : public ::Dimension { MCAPI ::HashedString $getDefaultBiome() const; - MCAPI bool $isNaturalDimension() const; + MCFOLD bool $isNaturalDimension() const; - MCAPI bool $isValidSpawn(int x, int z) const; + MCFOLD bool $isValidSpawn(int x, int z) const; - MCAPI short $getCloudHeight() const; + MCFOLD short $getCloudHeight() const; - MCAPI bool $isDay() const; + MCFOLD bool $isDay() const; - MCAPI bool $mayRespawnViaBed() const; + MCFOLD bool $mayRespawnViaBed() const; - MCAPI bool $hasGround() const; + MCFOLD bool $hasGround() const; MCAPI ::BlockPos $getSpawnPos() const; @@ -169,20 +169,20 @@ class TheEndDimension : public ::Dimension { MCAPI void $serialize(::CompoundTag& tag) const; - MCAPI float $getTimeOfDay(int time, float a) const; + MCFOLD float $getTimeOfDay(int time, float a) const; MCAPI ::std::unique_ptr<::WorldGenerator> $createGenerator(::br::worldgen::StructureSetRegistry const& structureSetRegistry); - MCAPI bool $levelChunkNeedsUpgrade(::LevelChunk const& lc) const; + MCFOLD bool $levelChunkNeedsUpgrade(::LevelChunk const& lc) const; MCAPI void $upgradeLevelChunk(::ChunkSource& source, ::LevelChunk& lc, ::LevelChunk& generatedChunk); - MCAPI void $fixWallChunk(::ChunkSource& source, ::LevelChunk& lc); + MCFOLD void $fixWallChunk(::ChunkSource& source, ::LevelChunk& lc); - MCAPI void $_upgradeOldLimboEntity(::CompoundTag& tag, ::LimboEntitiesVersion vers); + MCFOLD void $_upgradeOldLimboEntity(::CompoundTag& tag, ::LimboEntitiesVersion vers); - MCAPI ::std::unique_ptr<::ChunkSource> + MCFOLD ::std::unique_ptr<::ChunkSource> $_wrapStorageForVersionCompatibility(::std::unique_ptr<::ChunkSource> storageSource, ::StorageVersion levelVersion); // NOLINTEND diff --git a/src/mc/world/level/levelgen/WorldGenerator.h b/src/mc/world/level/levelgen/WorldGenerator.h index 02390af686..1992c8af02 100644 --- a/src/mc/world/level/levelgen/WorldGenerator.h +++ b/src/mc/world/level/levelgen/WorldGenerator.h @@ -132,7 +132,7 @@ class WorldGenerator : public ::ChunkSource, public ::IPreliminarySurfaceProvide MCAPI ::std::vector computeChunkHeightMap(::ChunkPos const& pos); - MCAPI ::StructureFeatureRegistry& getStructureFeatureRegistry() const; + MCFOLD ::StructureFeatureRegistry& getStructureFeatureRegistry() const; MCAPI void postProcessStructureFeatures(::BlockSource& region, ::Random& random, int chunkX, int chunkZ); diff --git a/src/mc/world/level/levelgen/feature/BonusChestFeature.h b/src/mc/world/level/levelgen/feature/BonusChestFeature.h index bafe37eec8..a7e91ed46d 100644 --- a/src/mc/world/level/levelgen/feature/BonusChestFeature.h +++ b/src/mc/world/level/levelgen/feature/BonusChestFeature.h @@ -32,7 +32,7 @@ class BonusChestFeature : public ::Feature { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND public: diff --git a/src/mc/world/level/levelgen/feature/CoralCrustFeature.h b/src/mc/world/level/levelgen/feature/CoralCrustFeature.h index bb23d39e77..f28acc853b 100644 --- a/src/mc/world/level/levelgen/feature/CoralCrustFeature.h +++ b/src/mc/world/level/levelgen/feature/CoralCrustFeature.h @@ -52,7 +52,7 @@ class CoralCrustFeature : public ::Feature { MCAPI void _placeSideDecorations(::BlockSource& region, ::BlockPos const& pos, ::Random& random, uchar dir) const; - MCAPI ::gsl::not_null<::Block const*> _setCoralHangData(int face, int color, int type) const; + MCFOLD ::gsl::not_null<::Block const*> _setCoralHangData(int face, int color, int type) const; // NOLINTEND public: diff --git a/src/mc/world/level/levelgen/feature/CoralFeature.h b/src/mc/world/level/levelgen/feature/CoralFeature.h index a2b9e09e52..19dd855fb1 100644 --- a/src/mc/world/level/levelgen/feature/CoralFeature.h +++ b/src/mc/world/level/levelgen/feature/CoralFeature.h @@ -85,7 +85,7 @@ class CoralFeature : public ::Feature { _setBlockOnSolid(::BlockSource& region, ::BlockPos const& pos, ::gsl::not_null<::Block const*> block, int color) const; - MCAPI ::gsl::not_null<::Block const*> _setCoralHangData(int face, int color, int type) const; + MCFOLD ::gsl::not_null<::Block const*> _setCoralHangData(int face, int color, int type) const; // NOLINTEND public: diff --git a/src/mc/world/level/levelgen/feature/EndGatewayFeature.h b/src/mc/world/level/levelgen/feature/EndGatewayFeature.h index 0332452ec4..f2f5c2f522 100644 --- a/src/mc/world/level/levelgen/feature/EndGatewayFeature.h +++ b/src/mc/world/level/levelgen/feature/EndGatewayFeature.h @@ -26,7 +26,7 @@ class EndGatewayFeature : public ::Feature { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND public: diff --git a/src/mc/world/level/levelgen/feature/EndIslandFeature.h b/src/mc/world/level/levelgen/feature/EndIslandFeature.h index daee6adb1f..7431a6474a 100644 --- a/src/mc/world/level/levelgen/feature/EndIslandFeature.h +++ b/src/mc/world/level/levelgen/feature/EndIslandFeature.h @@ -26,7 +26,7 @@ class EndIslandFeature : public ::Feature { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND public: diff --git a/src/mc/world/level/levelgen/feature/EndPodiumFeature.h b/src/mc/world/level/levelgen/feature/EndPodiumFeature.h index 8c8df3b3cb..4070e9bb43 100644 --- a/src/mc/world/level/levelgen/feature/EndPodiumFeature.h +++ b/src/mc/world/level/levelgen/feature/EndPodiumFeature.h @@ -66,7 +66,7 @@ class EndPodiumFeature : public ::Feature { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND public: diff --git a/src/mc/world/level/levelgen/feature/Feature.h b/src/mc/world/level/levelgen/feature/Feature.h index f722ae927c..fbe15a2fc6 100644 --- a/src/mc/world/level/levelgen/feature/Feature.h +++ b/src/mc/world/level/levelgen/feature/Feature.h @@ -60,7 +60,7 @@ class Feature : public ::IFeature { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND public: diff --git a/src/mc/world/level/levelgen/feature/FlowerFeature.h b/src/mc/world/level/levelgen/feature/FlowerFeature.h index c429bfdc20..d3666fdd2f 100644 --- a/src/mc/world/level/levelgen/feature/FlowerFeature.h +++ b/src/mc/world/level/levelgen/feature/FlowerFeature.h @@ -48,7 +48,7 @@ class FlowerFeature : public ::Feature { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND public: diff --git a/src/mc/world/level/levelgen/feature/GlowStoneFeature.h b/src/mc/world/level/levelgen/feature/GlowStoneFeature.h index fd0f910850..8c0ead8d70 100644 --- a/src/mc/world/level/levelgen/feature/GlowStoneFeature.h +++ b/src/mc/world/level/levelgen/feature/GlowStoneFeature.h @@ -26,7 +26,7 @@ class GlowStoneFeature : public ::Feature { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND public: diff --git a/src/mc/world/level/levelgen/feature/GrowingPlantFeature.h b/src/mc/world/level/levelgen/feature/GrowingPlantFeature.h index fc4340dfb1..4c2b5a2103 100644 --- a/src/mc/world/level/levelgen/feature/GrowingPlantFeature.h +++ b/src/mc/world/level/levelgen/feature/GrowingPlantFeature.h @@ -60,7 +60,7 @@ class GrowingPlantFeature : public ::IFeature { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/world/level/levelgen/feature/HugeFungusFeature.h b/src/mc/world/level/levelgen/feature/HugeFungusFeature.h index 1276e13784..38c0ce2e39 100644 --- a/src/mc/world/level/levelgen/feature/HugeFungusFeature.h +++ b/src/mc/world/level/levelgen/feature/HugeFungusFeature.h @@ -53,7 +53,7 @@ class HugeFungusFeature : public ::Feature { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND public: diff --git a/src/mc/world/level/levelgen/feature/HugeMushroomFeature.h b/src/mc/world/level/levelgen/feature/HugeMushroomFeature.h index 58e428a946..8cc4951308 100644 --- a/src/mc/world/level/levelgen/feature/HugeMushroomFeature.h +++ b/src/mc/world/level/levelgen/feature/HugeMushroomFeature.h @@ -58,7 +58,7 @@ class HugeMushroomFeature : public ::Feature { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND public: diff --git a/src/mc/world/level/levelgen/feature/IFeature.h b/src/mc/world/level/levelgen/feature/IFeature.h index d2b347d327..eb2e7951be 100644 --- a/src/mc/world/level/levelgen/feature/IFeature.h +++ b/src/mc/world/level/levelgen/feature/IFeature.h @@ -43,7 +43,7 @@ class IFeature { // NOLINTBEGIN MCAPI bool isAllowedToPlaceFeature(::IFeature const& feature) const; - MCAPI bool isInternal() const; + MCFOLD bool isInternal() const; MCAPI bool operator==(::IFeature const& other) const; @@ -52,9 +52,9 @@ class IFeature { MCAPI bool setBlockSafeSimple(::IBlockWorldGenAPI& target, ::BlockPos const& pos, ::Block const& block) const; - MCAPI void setCanUseInternalFeature(bool canUseInternalFeature); + MCFOLD void setCanUseInternalFeature(bool canUseInternalFeature); - MCAPI void setIsInternal(bool isInternal); + MCFOLD void setIsInternal(bool isInternal); // NOLINTEND public: @@ -73,7 +73,7 @@ class IFeature { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND public: @@ -81,7 +81,7 @@ class IFeature { // NOLINTBEGIN MCAPI bool $isValidPlacement(::std::string const& pass); - MCAPI void $upgradeFormat(::SemVersion const&); + MCFOLD void $upgradeFormat(::SemVersion const&); // NOLINTEND public: diff --git a/src/mc/world/level/levelgen/feature/NetherFireFeature.h b/src/mc/world/level/levelgen/feature/NetherFireFeature.h index 03f690511d..aa36d33db0 100644 --- a/src/mc/world/level/levelgen/feature/NetherFireFeature.h +++ b/src/mc/world/level/levelgen/feature/NetherFireFeature.h @@ -26,7 +26,7 @@ class NetherFireFeature : public ::Feature { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND public: diff --git a/src/mc/world/level/levelgen/feature/NetherSpringFeature.h b/src/mc/world/level/levelgen/feature/NetherSpringFeature.h index a71d801708..b8545cba71 100644 --- a/src/mc/world/level/levelgen/feature/NetherSpringFeature.h +++ b/src/mc/world/level/levelgen/feature/NetherSpringFeature.h @@ -52,7 +52,7 @@ class NetherSpringFeature : public ::Feature { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND public: diff --git a/src/mc/world/level/levelgen/feature/SingleBlockFeature.h b/src/mc/world/level/levelgen/feature/SingleBlockFeature.h index 4164efb778..915df3aa9c 100644 --- a/src/mc/world/level/levelgen/feature/SingleBlockFeature.h +++ b/src/mc/world/level/levelgen/feature/SingleBlockFeature.h @@ -64,7 +64,7 @@ class SingleBlockFeature : public ::IFeature { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/world/level/levelgen/feature/SpikeFeature.h b/src/mc/world/level/levelgen/feature/SpikeFeature.h index 0453b33d86..70069012ee 100644 --- a/src/mc/world/level/levelgen/feature/SpikeFeature.h +++ b/src/mc/world/level/levelgen/feature/SpikeFeature.h @@ -39,11 +39,11 @@ class SpikeFeature : public ::Feature { // NOLINTBEGIN MCAPI EndSpike(int centerX, int centerZ, int radius, int height, bool guarded); - MCAPI int getCenterX() const; + MCFOLD int getCenterX() const; - MCAPI int getCenterZ() const; + MCFOLD int getCenterZ() const; - MCAPI int getHeight() const; + MCFOLD int getHeight() const; MCAPI ::AABB getTopBoundingBox() const; @@ -98,7 +98,7 @@ class SpikeFeature : public ::Feature { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND public: diff --git a/src/mc/world/level/levelgen/feature/UnderwaterCanyonFeature.h b/src/mc/world/level/levelgen/feature/UnderwaterCanyonFeature.h index fd592b8120..1bb4015e8d 100644 --- a/src/mc/world/level/levelgen/feature/UnderwaterCanyonFeature.h +++ b/src/mc/world/level/levelgen/feature/UnderwaterCanyonFeature.h @@ -53,7 +53,7 @@ class UnderwaterCanyonFeature : public ::CanyonFeature { public: // static functions // NOLINTBEGIN - MCAPI static bool isDiggable(::Block const& block); + MCFOLD static bool isDiggable(::Block const& block); // NOLINTEND public: diff --git a/src/mc/world/level/levelgen/feature/UnderwaterCaveFeature.h b/src/mc/world/level/levelgen/feature/UnderwaterCaveFeature.h index 236e9a429c..6b68bc51f7 100644 --- a/src/mc/world/level/levelgen/feature/UnderwaterCaveFeature.h +++ b/src/mc/world/level/levelgen/feature/UnderwaterCaveFeature.h @@ -38,12 +38,12 @@ class UnderwaterCaveFeature : public ::CaveFeature { ::IBlockWorldGenAPI& target, ::CaveFeatureUtils::CarverConfiguration const& configuration, ::Random& random, - ::ChunkPos const& pos, + ::ChunkPos const& chunkPos, ::Vec3 const& startPos, ::BoundingBox const& volume, float rad, float yRad, - ::CaveFeatureUtils::CarvingParameters const& carveValues + ::CaveFeatureUtils::CarvingParameters const& carvingParameters ) const /*override*/; // vIndex: 0 @@ -53,7 +53,7 @@ class UnderwaterCaveFeature : public ::CaveFeature { public: // static functions // NOLINTBEGIN - MCAPI static bool isDiggable(::Block const& block); + MCFOLD static bool isDiggable(::Block const& block); // NOLINTEND public: @@ -69,12 +69,12 @@ class UnderwaterCaveFeature : public ::CaveFeature { ::IBlockWorldGenAPI& target, ::CaveFeatureUtils::CarverConfiguration const& configuration, ::Random& random, - ::ChunkPos const& pos, + ::ChunkPos const& chunkPos, ::Vec3 const& startPos, ::BoundingBox const& volume, float rad, float yRad, - ::CaveFeatureUtils::CarvingParameters const& carveValues + ::CaveFeatureUtils::CarvingParameters const& carvingParameters ) const; // NOLINTEND diff --git a/src/mc/world/level/levelgen/feature/cave_feature_utils/CaveFeatureUtils.h b/src/mc/world/level/levelgen/feature/cave_feature_utils/CaveFeatureUtils.h index 23e7ab3245..41dddc07ea 100644 --- a/src/mc/world/level/levelgen/feature/cave_feature_utils/CaveFeatureUtils.h +++ b/src/mc/world/level/levelgen/feature/cave_feature_utils/CaveFeatureUtils.h @@ -15,7 +15,7 @@ namespace CaveFeatureUtils { // NOLINTBEGIN MCAPI ::CaveFeatureUtils::CarverConfiguration const& getCurrentConfiguration(bool is_1_18_WorldGeneration); -MCAPI int getDistance_1_16(::Random& random); +MCFOLD int getDistance_1_16(::Random& random); MCAPI int getDistance_1_18(::Random& random); diff --git a/src/mc/world/level/levelgen/feature/feature_loading/FeatureRootParseContext.h b/src/mc/world/level/levelgen/feature/feature_loading/FeatureRootParseContext.h index 41c5562835..f11baa82e0 100644 --- a/src/mc/world/level/levelgen/feature/feature_loading/FeatureRootParseContext.h +++ b/src/mc/world/level/levelgen/feature/feature_loading/FeatureRootParseContext.h @@ -30,7 +30,7 @@ struct FeatureRootParseContext { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/world/level/levelgen/feature/feature_loading/VersionInfo.h b/src/mc/world/level/levelgen/feature/feature_loading/VersionInfo.h index 84c0db0ac6..1804a7b01c 100644 --- a/src/mc/world/level/levelgen/feature/feature_loading/VersionInfo.h +++ b/src/mc/world/level/levelgen/feature/feature_loading/VersionInfo.h @@ -45,7 +45,7 @@ struct VersionInfo { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/world/level/levelgen/feature/gamerefs_feature/OwnerStorageFeature.h b/src/mc/world/level/levelgen/feature/gamerefs_feature/OwnerStorageFeature.h index a047b37174..5e4b040e3d 100644 --- a/src/mc/world/level/levelgen/feature/gamerefs_feature/OwnerStorageFeature.h +++ b/src/mc/world/level/levelgen/feature/gamerefs_feature/OwnerStorageFeature.h @@ -24,6 +24,6 @@ class OwnerStorageFeature { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/world/level/levelgen/feature/gamerefs_feature/StackResultStorageFeature.h b/src/mc/world/level/levelgen/feature/gamerefs_feature/StackResultStorageFeature.h index 2ec29fba95..f7eaba002e 100644 --- a/src/mc/world/level/levelgen/feature/gamerefs_feature/StackResultStorageFeature.h +++ b/src/mc/world/level/levelgen/feature/gamerefs_feature/StackResultStorageFeature.h @@ -24,7 +24,7 @@ class StackResultStorageFeature { MCAPI ::IFeature& _getStackRef() const; - MCAPI bool _hasValue() const; + MCFOLD bool _hasValue() const; // NOLINTEND public: diff --git a/src/mc/world/level/levelgen/feature/helpers/ITreeCanopyWrapper.h b/src/mc/world/level/levelgen/feature/helpers/ITreeCanopyWrapper.h index 37b1890f06..058f6f0878 100644 --- a/src/mc/world/level/levelgen/feature/helpers/ITreeCanopyWrapper.h +++ b/src/mc/world/level/levelgen/feature/helpers/ITreeCanopyWrapper.h @@ -24,6 +24,6 @@ class ITreeCanopyWrapper { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/world/level/levelgen/feature/helpers/MangroveTreeCanopy.h b/src/mc/world/level/levelgen/feature/helpers/MangroveTreeCanopy.h index 6a4785fd76..53aa75a97c 100644 --- a/src/mc/world/level/levelgen/feature/helpers/MangroveTreeCanopy.h +++ b/src/mc/world/level/levelgen/feature/helpers/MangroveTreeCanopy.h @@ -45,7 +45,7 @@ class MangroveTreeCanopy : public ::ITreeCanopy { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/world/level/levelgen/feature/helpers/RandomSpreadTreeCanopy.h b/src/mc/world/level/levelgen/feature/helpers/RandomSpreadTreeCanopy.h index 48ab2f91fc..5c2504e6da 100644 --- a/src/mc/world/level/levelgen/feature/helpers/RandomSpreadTreeCanopy.h +++ b/src/mc/world/level/levelgen/feature/helpers/RandomSpreadTreeCanopy.h @@ -45,7 +45,7 @@ class RandomSpreadTreeCanopy : public ::ITreeCanopy { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/world/level/levelgen/feature/helpers/dripstone_utils/WindOffsetter.h b/src/mc/world/level/levelgen/feature/helpers/dripstone_utils/WindOffsetter.h index 358d83e510..fa64630f71 100644 --- a/src/mc/world/level/levelgen/feature/helpers/dripstone_utils/WindOffsetter.h +++ b/src/mc/world/level/levelgen/feature/helpers/dripstone_utils/WindOffsetter.h @@ -37,7 +37,7 @@ class WindOffsetter { public: // constructor thunks // NOLINTBEGIN - MCAPI void* $ctor(); + MCFOLD void* $ctor(); MCAPI void* $ctor(int originY, ::Random& random, ::ValueProviders::UniformFloat const& windSpeedRange); // NOLINTEND diff --git a/src/mc/world/level/levelgen/feature/registry/FeatureRegistry.h b/src/mc/world/level/levelgen/feature/registry/FeatureRegistry.h index b32ec78d38..7d3bdc7c49 100644 --- a/src/mc/world/level/levelgen/feature/registry/FeatureRegistry.h +++ b/src/mc/world/level/levelgen/feature/registry/FeatureRegistry.h @@ -40,7 +40,7 @@ class FeatureRegistry { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/world/level/levelgen/feature/registry/FeatureResult.h b/src/mc/world/level/levelgen/feature/registry/FeatureResult.h index 2e340285ea..46b758fac0 100644 --- a/src/mc/world/level/levelgen/feature/registry/FeatureResult.h +++ b/src/mc/world/level/levelgen/feature/registry/FeatureResult.h @@ -25,6 +25,6 @@ struct FeatureResult { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/world/level/levelgen/feature/registry/FeatureTypeVersion.h b/src/mc/world/level/levelgen/feature/registry/FeatureTypeVersion.h index 57746c9623..e10baff260 100644 --- a/src/mc/world/level/levelgen/feature/registry/FeatureTypeVersion.h +++ b/src/mc/world/level/levelgen/feature/registry/FeatureTypeVersion.h @@ -29,7 +29,7 @@ class FeatureTypeVersion { // NOLINTBEGIN MCAPI FeatureTypeVersion(::FeatureLoading::FeatureVersion version, bool isInternal); - MCAPI ::SemVersion const& getFormatVersion() const; + MCFOLD ::SemVersion const& getFormatVersion() const; MCAPI ~FeatureTypeVersion(); // NOLINTEND @@ -43,6 +43,6 @@ class FeatureTypeVersion { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/world/level/levelgen/flat/FlatWorldGenerator.h b/src/mc/world/level/levelgen/flat/FlatWorldGenerator.h index 859675ec68..58ef13a298 100644 --- a/src/mc/world/level/levelgen/flat/FlatWorldGenerator.h +++ b/src/mc/world/level/levelgen/flat/FlatWorldGenerator.h @@ -128,7 +128,7 @@ class FlatWorldGenerator : public ::WorldGenerator { MCAPI bool $postProcess(::ChunkViewSource& neighborhood); - MCAPI ::HashedString $findStructureFeatureTypeAt(::BlockPos const& pos); + MCFOLD ::HashedString $findStructureFeatureTypeAt(::BlockPos const& pos); MCAPI bool $isStructureFeatureTypeAt(::BlockPos const& pos, ::HashedString type) const; @@ -140,24 +140,24 @@ class FlatWorldGenerator : public ::WorldGenerator { ::std::optional<::HashedString> biomeTag ); - MCAPI void $prepareHeights(::BlockVolume&, ::ChunkPos const&, bool); + MCFOLD void $prepareHeights(::BlockVolume&, ::ChunkPos const&, bool); - MCAPI void $prepareAndComputeHeights(::BlockVolume&, ::ChunkPos const&, ::std::vector&, bool, int); + MCFOLD void $prepareAndComputeHeights(::BlockVolume&, ::ChunkPos const&, ::std::vector&, bool, int); - MCAPI void $garbageCollectBlueprints(::buffer_span<::ChunkPos> activeChunks); + MCFOLD void $garbageCollectBlueprints(::buffer_span<::ChunkPos> activeChunks); MCAPI ::BiomeArea $getBiomeArea(::BoundingBox const& area, uint scale) const; MCAPI ::BlockPos $findSpawnPosition() const; - MCAPI ::BiomeSource const& $getBiomeSource() const; + MCFOLD ::BiomeSource const& $getBiomeSource() const; MCAPI ::WorldGenerator::BlockVolumeDimensions $getBlockVolumeDimensions() const; - MCAPI void + MCFOLD void $decorateWorldGenLoadChunk(::Biome const&, ::LevelChunk&, ::BlockVolumeTarget&, ::Random&, ::ChunkPos const&) const; - MCAPI void $decorateWorldGenPostProcess(::Biome const&, ::LevelChunk&, ::BlockSource&, ::Random&) const; + MCFOLD void $decorateWorldGenPostProcess(::Biome const&, ::LevelChunk&, ::BlockSource&, ::Random&) const; // NOLINTEND public: diff --git a/src/mc/world/level/levelgen/structure/AncientCityPiece.h b/src/mc/world/level/levelgen/structure/AncientCityPiece.h index bd640b84c3..440d7b3b9d 100644 --- a/src/mc/world/level/levelgen/structure/AncientCityPiece.h +++ b/src/mc/world/level/levelgen/structure/AncientCityPiece.h @@ -68,11 +68,11 @@ class AncientCityPiece : public ::PoolElementStructurePiece { $generateHeightAtPosition(::BlockPos const&, ::Dimension&, ::BlockVolume&, ::std::unordered_map<::ChunkPos, ::std::unique_ptr<::std::vector>>&) const; - MCAPI ::Block const* $getSupportBlock(::BlockSource&, ::BlockPos const&, ::Block const&) const; + MCFOLD ::Block const* $getSupportBlock(::BlockSource&, ::BlockPos const&, ::Block const&) const; MCAPI ::Block const& $getBeardStabilizeBlock(::Block const&) const; - MCAPI ::AdjustmentEffect $getTerrainAdjustmentEffect() const; + MCFOLD ::AdjustmentEffect $getTerrainAdjustmentEffect() const; // NOLINTEND public: diff --git a/src/mc/world/level/levelgen/structure/AncientCityStart.h b/src/mc/world/level/levelgen/structure/AncientCityStart.h index 0b9ba8f7dd..89c5f28e96 100644 --- a/src/mc/world/level/levelgen/structure/AncientCityStart.h +++ b/src/mc/world/level/levelgen/structure/AncientCityStart.h @@ -40,7 +40,7 @@ class AncientCityStart : public ::StructureStart { public: // virtual function thunks // NOLINTBEGIN - MCAPI bool $isValid() const; + MCFOLD bool $isValid() const; MCAPI ::std::string_view $getStructureName() const; // NOLINTEND diff --git a/src/mc/world/level/levelgen/structure/BastionFeature.h b/src/mc/world/level/levelgen/structure/BastionFeature.h index 4f35332b03..d6cb82c199 100644 --- a/src/mc/world/level/levelgen/structure/BastionFeature.h +++ b/src/mc/world/level/levelgen/structure/BastionFeature.h @@ -96,7 +96,7 @@ class BastionFeature : public ::StructureFeature { MCAPI bool $isFeatureChunk(::BiomeSource const& biomeSource, ::Random& random, ::ChunkPos const& chunkPos, uint levelSeed, ::IPreliminarySurfaceProvider const&, ::Dimension const&); - MCAPI bool $shouldPostProcessMobs() const; + MCFOLD bool $shouldPostProcessMobs() const; MCAPI ::std::unique_ptr<::StructureStart> $createStructureStart(::Dimension& generator, ::BiomeSource const& biomeSource, ::Random& random, ::ChunkPos const& chunkPos, ::IPreliminarySurfaceProvider const&); diff --git a/src/mc/world/level/levelgen/structure/BastionPiece.h b/src/mc/world/level/levelgen/structure/BastionPiece.h index 80b139dd04..1fab7c06df 100644 --- a/src/mc/world/level/levelgen/structure/BastionPiece.h +++ b/src/mc/world/level/levelgen/structure/BastionPiece.h @@ -75,12 +75,12 @@ class BastionPiece : public ::PoolElementStructurePiece { ::std::unordered_map<::ChunkPos, ::std::unique_ptr<::std::vector>>& chunkHeightCache ) const; - MCAPI ::Block const* + MCFOLD ::Block const* $getSupportBlock(::BlockSource& region, ::BlockPos const& pos, ::Block const& aboveBlock) const; MCAPI ::Block const& $getBeardStabilizeBlock(::Block const& foundationBlock) const; - MCAPI ::AdjustmentEffect $getTerrainAdjustmentEffect() const; + MCFOLD ::AdjustmentEffect $getTerrainAdjustmentEffect() const; // NOLINTEND public: diff --git a/src/mc/world/level/levelgen/structure/BastionStart.h b/src/mc/world/level/levelgen/structure/BastionStart.h index ecaf45b26b..098b1be5dc 100644 --- a/src/mc/world/level/levelgen/structure/BastionStart.h +++ b/src/mc/world/level/levelgen/structure/BastionStart.h @@ -40,7 +40,7 @@ class BastionStart : public ::StructureStart { public: // virtual function thunks // NOLINTBEGIN - MCAPI bool $isValid() const; + MCFOLD bool $isValid() const; MCAPI ::std::string_view $getStructureName() const; // NOLINTEND diff --git a/src/mc/world/level/levelgen/structure/BlockSelector.h b/src/mc/world/level/levelgen/structure/BlockSelector.h index 95dea0cf4e..77b37a7f88 100644 --- a/src/mc/world/level/levelgen/structure/BlockSelector.h +++ b/src/mc/world/level/levelgen/structure/BlockSelector.h @@ -22,7 +22,7 @@ class BlockSelector { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND public: diff --git a/src/mc/world/level/levelgen/structure/BoundingBox.h b/src/mc/world/level/levelgen/structure/BoundingBox.h index efc52b0f05..6c8bf665c1 100644 --- a/src/mc/world/level/levelgen/structure/BoundingBox.h +++ b/src/mc/world/level/levelgen/structure/BoundingBox.h @@ -39,7 +39,7 @@ class BoundingBox { public: // constructor thunks // NOLINTBEGIN - MCAPI void* $ctor(); + MCFOLD void* $ctor(); MCAPI void* $ctor(::BlockPos const& min, ::BlockPos const& size, ::Rotation rotation); // NOLINTEND diff --git a/src/mc/world/level/levelgen/structure/EndCityFeature.h b/src/mc/world/level/levelgen/structure/EndCityFeature.h index 5b7040280e..bd91df3823 100644 --- a/src/mc/world/level/levelgen/structure/EndCityFeature.h +++ b/src/mc/world/level/levelgen/structure/EndCityFeature.h @@ -91,7 +91,7 @@ class EndCityFeature : public ::StructureFeature { ::std::optional<::HashedString> const& biomeTag ); - MCAPI bool $shouldPostProcessMobs() const; + MCFOLD bool $shouldPostProcessMobs() const; MCAPI bool $isFeatureChunk( ::BiomeSource const&, diff --git a/src/mc/world/level/levelgen/structure/EndCityStart.h b/src/mc/world/level/levelgen/structure/EndCityStart.h index 31ecedaa3e..7126c37c5a 100644 --- a/src/mc/world/level/levelgen/structure/EndCityStart.h +++ b/src/mc/world/level/levelgen/structure/EndCityStart.h @@ -52,7 +52,7 @@ class EndCityStart : public ::StructureStart { public: // virtual function thunks // NOLINTBEGIN - MCAPI bool $isValid() const; + MCFOLD bool $isValid() const; MCAPI ::std::string_view $getStructureName() const; // NOLINTEND diff --git a/src/mc/world/level/levelgen/structure/FitSimpleRoom.h b/src/mc/world/level/levelgen/structure/FitSimpleRoom.h index 4b759333b2..9edf1b112d 100644 --- a/src/mc/world/level/levelgen/structure/FitSimpleRoom.h +++ b/src/mc/world/level/levelgen/structure/FitSimpleRoom.h @@ -36,7 +36,7 @@ class FitSimpleRoom : public ::MonumentRoomFitter { public: // virtual function thunks // NOLINTBEGIN - MCAPI bool $fits(::RoomDefinition const& definition) const; + MCFOLD bool $fits(::RoomDefinition const& definition) const; MCAPI ::std::unique_ptr<::OceanMonumentPiece> $create(int& orientation, ::std::shared_ptr<::RoomDefinition> definition, ::Random& random); diff --git a/src/mc/world/level/levelgen/structure/JigsawEditorData.h b/src/mc/world/level/levelgen/structure/JigsawEditorData.h index 49a67f8490..46854153eb 100644 --- a/src/mc/world/level/levelgen/structure/JigsawEditorData.h +++ b/src/mc/world/level/levelgen/structure/JigsawEditorData.h @@ -45,19 +45,19 @@ class JigsawEditorData { int selection ); - MCAPI ::std::string const& getFinalBlock() const; + MCFOLD ::std::string const& getFinalBlock() const; - MCAPI ::SharedTypes::JigsawJointType const& getJointType() const; + MCFOLD ::SharedTypes::JigsawJointType const& getJointType() const; - MCAPI ::std::string const& getName() const; + MCFOLD ::std::string const& getName() const; - MCAPI int getPlacementPriority() const; + MCFOLD int getPlacementPriority() const; - MCAPI int getSelectionPriority() const; + MCFOLD int getSelectionPriority() const; - MCAPI ::std::string const& getTarget() const; + MCFOLD ::std::string const& getTarget() const; - MCAPI ::std::string const& getTargetPool() const; + MCFOLD ::std::string const& getTargetPool() const; MCAPI void load(::CompoundTag const& tag, ::DataLoadHelper& dataLoadHelper); @@ -71,9 +71,9 @@ class JigsawEditorData { MCAPI void setJointTypeVisible(bool visible); - MCAPI void setName(::std::string const& name); + MCFOLD void setName(::std::string const& name); - MCAPI void setTarget(::std::string const& target); + MCFOLD void setTarget(::std::string const& target); MCAPI void setTargetPool(::std::string const& targetPool); @@ -105,6 +105,6 @@ class JigsawEditorData { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/world/level/levelgen/structure/JigsawJunction.h b/src/mc/world/level/levelgen/structure/JigsawJunction.h index 6e4cd9c86c..47a89443d3 100644 --- a/src/mc/world/level/levelgen/structure/JigsawJunction.h +++ b/src/mc/world/level/levelgen/structure/JigsawJunction.h @@ -34,7 +34,7 @@ struct JigsawJunction { ::Projection targetProjection ); - MCAPI int getDeltaTargetY() const; + MCFOLD int getDeltaTargetY() const; // NOLINTEND public: diff --git a/src/mc/world/level/levelgen/structure/LegacyStructureBlockPalette.h b/src/mc/world/level/levelgen/structure/LegacyStructureBlockPalette.h index 71a8fdd5aa..3cbf029fff 100644 --- a/src/mc/world/level/levelgen/structure/LegacyStructureBlockPalette.h +++ b/src/mc/world/level/levelgen/structure/LegacyStructureBlockPalette.h @@ -26,7 +26,7 @@ class LegacyStructureBlockPalette { MCAPI void addMapping(int id, ::Block const& block); - MCAPI void clearMap(); + MCFOLD void clearMap(); MCAPI ::Block const& getBlock(int id); @@ -42,6 +42,6 @@ class LegacyStructureBlockPalette { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/world/level/levelgen/structure/LegacyStructureSettings.h b/src/mc/world/level/levelgen/structure/LegacyStructureSettings.h index e2ad90dd20..c72678d239 100644 --- a/src/mc/world/level/levelgen/structure/LegacyStructureSettings.h +++ b/src/mc/world/level/levelgen/structure/LegacyStructureSettings.h @@ -78,49 +78,49 @@ class LegacyStructureSettings { MCAPI void addSwapAuxValue(int oldvariation, int variation); - MCAPI ::std::vector<::std::unique_ptr<::StructurePoolBlockRule>> const* getBlockRules() const; + MCFOLD ::std::vector<::std::unique_ptr<::StructurePoolBlockRule>> const* getBlockRules() const; MCAPI ::BoundingBox const& getBoundingBox(); - MCAPI ::Block const* getIgnoreBlock() const; + MCFOLD ::Block const* getIgnoreBlock() const; MCAPI ::Mirror const& getMirror() const; - MCAPI ::BlockPos const& getRefPos() const; + MCFOLD ::BlockPos const& getRefPos() const; MCAPI ::Rotation const& getRotation() const; MCAPI ::Block const& getSwappedBlock(::BlockPalette const& palette, ::Block const& oldBlock) const; - MCAPI bool isIgnoreJigsawBlocks() const; + MCFOLD bool isIgnoreJigsawBlocks() const; - MCAPI bool isIgnoreStructureBlocks() const; + MCFOLD bool isIgnoreStructureBlocks() const; - MCAPI bool isPlacingWaterBelowSeaLevel() const; + MCFOLD bool isPlacingWaterBelowSeaLevel() const; MCAPI ::LegacyStructureSettings& operator=(::LegacyStructureSettings const&); - MCAPI void placeWaterBelowSeaLevel(bool water); + MCFOLD void placeWaterBelowSeaLevel(bool water); - MCAPI void setBlockRules(::std::vector<::std::unique_ptr<::StructurePoolBlockRule>> const* blockRules); + MCFOLD void setBlockRules(::std::vector<::std::unique_ptr<::StructurePoolBlockRule>> const* blockRules); MCAPI void setBlockTagRules(::std::vector<::std::unique_ptr<::StructurePoolBlockTagRule>> const* blockTagRules); MCAPI void setBoundingBox(::BoundingBox const& boundingBox); - MCAPI void setIgnoreBlock(::Block const* ignoreBlock); + MCFOLD void setIgnoreBlock(::Block const* ignoreBlock); MCAPI void setIntegrity(float integrity); - MCAPI void setMirror(::Mirror mirror); + MCFOLD void setMirror(::Mirror mirror); - MCAPI void setProjection(::Projection projection); + MCFOLD void setProjection(::Projection projection); MCAPI void setRefPos(::BlockPos const& refPos); MCAPI void setRotation(::Rotation rotation); - MCAPI void setSeed(uint seed); + MCFOLD void setSeed(uint seed); MCAPI void updateBoundingBoxFromChunkPos(); diff --git a/src/mc/world/level/levelgen/structure/LegacyStructureTemplate.h b/src/mc/world/level/levelgen/structure/LegacyStructureTemplate.h index a8b8355292..48c0cc6b0b 100644 --- a/src/mc/world/level/levelgen/structure/LegacyStructureTemplate.h +++ b/src/mc/world/level/levelgen/structure/LegacyStructureTemplate.h @@ -64,7 +64,7 @@ class LegacyStructureTemplate : public ::ILegacyStructureTemplate, public ::IStr // NOLINTBEGIN MCAPI LegacyStructureTemplate(); - MCAPI ::IStructureTemplate const& asStructureTemplate() const; + MCFOLD ::IStructureTemplate const& asStructureTemplate() const; MCAPI ::BlockPos calculateConnectedPosition( ::LegacyStructureSettings const& settings1, diff --git a/src/mc/world/level/levelgen/structure/MineshaftFeature.h b/src/mc/world/level/levelgen/structure/MineshaftFeature.h index 59a2d491da..0e700de0b4 100644 --- a/src/mc/world/level/levelgen/structure/MineshaftFeature.h +++ b/src/mc/world/level/levelgen/structure/MineshaftFeature.h @@ -63,7 +63,7 @@ class MineshaftFeature : public ::StructureFeature { ::Dimension const& dimension ); - MCAPI bool $shouldPostProcessMobs() const; + MCFOLD bool $shouldPostProcessMobs() const; MCAPI ::std::unique_ptr<::StructureStart> $createStructureStart( ::Dimension& generator, diff --git a/src/mc/world/level/levelgen/structure/MineshaftPiece.h b/src/mc/world/level/levelgen/structure/MineshaftPiece.h index 30617df372..ad68793389 100644 --- a/src/mc/world/level/levelgen/structure/MineshaftPiece.h +++ b/src/mc/world/level/levelgen/structure/MineshaftPiece.h @@ -74,7 +74,7 @@ class MineshaftPiece : public ::StructurePiece { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND public: diff --git a/src/mc/world/level/levelgen/structure/MossStoneSelector.h b/src/mc/world/level/levelgen/structure/MossStoneSelector.h index 9e21b283c5..92fa92cdc9 100644 --- a/src/mc/world/level/levelgen/structure/MossStoneSelector.h +++ b/src/mc/world/level/levelgen/structure/MossStoneSelector.h @@ -71,7 +71,7 @@ class MossStoneSelector : public ::BlockSelector { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND public: diff --git a/src/mc/world/level/levelgen/structure/NBBridgeCrossing.h b/src/mc/world/level/levelgen/structure/NBBridgeCrossing.h index b7f64ce282..cbde4927d9 100644 --- a/src/mc/world/level/levelgen/structure/NBBridgeCrossing.h +++ b/src/mc/world/level/levelgen/structure/NBBridgeCrossing.h @@ -52,7 +52,7 @@ class NBBridgeCrossing : public ::NetherFortressPiece { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND public: diff --git a/src/mc/world/level/levelgen/structure/NBCastleCorridorStairsPiece.h b/src/mc/world/level/levelgen/structure/NBCastleCorridorStairsPiece.h index c88c6cd974..309efee980 100644 --- a/src/mc/world/level/levelgen/structure/NBCastleCorridorStairsPiece.h +++ b/src/mc/world/level/levelgen/structure/NBCastleCorridorStairsPiece.h @@ -60,7 +60,7 @@ class NBCastleCorridorStairsPiece : public ::NetherFortressPiece { // NOLINTBEGIN MCAPI ::StructurePieceType $getType() const; - MCAPI void $addChildren( + MCFOLD void $addChildren( ::StructurePiece& startPiece, ::std::vector<::std::unique_ptr<::StructurePiece>>& pieces, ::Random& random diff --git a/src/mc/world/level/levelgen/structure/NBCastleSmallCorridorPiece.h b/src/mc/world/level/levelgen/structure/NBCastleSmallCorridorPiece.h index d2f1851d87..6c928482df 100644 --- a/src/mc/world/level/levelgen/structure/NBCastleSmallCorridorPiece.h +++ b/src/mc/world/level/levelgen/structure/NBCastleSmallCorridorPiece.h @@ -60,7 +60,7 @@ class NBCastleSmallCorridorPiece : public ::NetherFortressPiece { // NOLINTBEGIN MCAPI ::StructurePieceType $getType() const; - MCAPI void $addChildren( + MCFOLD void $addChildren( ::StructurePiece& startPiece, ::std::vector<::std::unique_ptr<::StructurePiece>>& pieces, ::Random& random diff --git a/src/mc/world/level/levelgen/structure/NetherFortressFeature.h b/src/mc/world/level/levelgen/structure/NetherFortressFeature.h index 3726d0ce39..85e0cd24bc 100644 --- a/src/mc/world/level/levelgen/structure/NetherFortressFeature.h +++ b/src/mc/world/level/levelgen/structure/NetherFortressFeature.h @@ -79,7 +79,7 @@ class NetherFortressFeature : public ::StructureFeature { public: // virtual function thunks // NOLINTBEGIN - MCAPI bool $shouldAddHardcodedSpawnAreas() const; + MCFOLD bool $shouldAddHardcodedSpawnAreas() const; MCAPI bool $isFeatureChunk( ::BiomeSource const& biomeSource, diff --git a/src/mc/world/level/levelgen/structure/NetherFortressPiece.h b/src/mc/world/level/levelgen/structure/NetherFortressPiece.h index 736da5dc66..ba6e12d6a7 100644 --- a/src/mc/world/level/levelgen/structure/NetherFortressPiece.h +++ b/src/mc/world/level/levelgen/structure/NetherFortressPiece.h @@ -136,7 +136,7 @@ class NetherFortressPiece : public ::StructurePiece { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND public: diff --git a/src/mc/world/level/levelgen/structure/OceanMonumentFeature.h b/src/mc/world/level/levelgen/structure/OceanMonumentFeature.h index df5d04240b..b0ce606aad 100644 --- a/src/mc/world/level/levelgen/structure/OceanMonumentFeature.h +++ b/src/mc/world/level/levelgen/structure/OceanMonumentFeature.h @@ -101,9 +101,9 @@ class OceanMonumentFeature : public ::StructureFeature { MCAPI bool $isFeatureChunk(::BiomeSource const& biomeSource, ::Random& random, ::ChunkPos const& pos, uint levelSeed, ::IPreliminarySurfaceProvider const& preliminarySurfaceLevel, ::Dimension const&); - MCAPI bool $shouldAddHardcodedSpawnAreas() const; + MCFOLD bool $shouldAddHardcodedSpawnAreas() const; - MCAPI bool $shouldPostProcessMobs() const; + MCFOLD bool $shouldPostProcessMobs() const; MCAPI ::std::unique_ptr<::StructureStart> $createStructureStart(::Dimension& generator, ::BiomeSource const&, ::Random& random, ::ChunkPos const& lc, ::IPreliminarySurfaceProvider const&); diff --git a/src/mc/world/level/levelgen/structure/OceanMonumentPiece.h b/src/mc/world/level/levelgen/structure/OceanMonumentPiece.h index 99545f6f9c..461a6c1abf 100644 --- a/src/mc/world/level/levelgen/structure/OceanMonumentPiece.h +++ b/src/mc/world/level/levelgen/structure/OceanMonumentPiece.h @@ -108,7 +108,7 @@ class OceanMonumentPiece : public ::StructurePiece { public: // virtual function thunks // NOLINTBEGIN - MCAPI void $postProcessMobsAt(::BlockSource& region, ::Random& random, ::BoundingBox const& chunkBB); + MCFOLD void $postProcessMobsAt(::BlockSource& region, ::Random& random, ::BoundingBox const& chunkBB); MCAPI int $getWorldZ(int x, int z); diff --git a/src/mc/world/level/levelgen/structure/PieceWeight.h b/src/mc/world/level/levelgen/structure/PieceWeight.h index c8093a3ea0..afc62c172a 100644 --- a/src/mc/world/level/levelgen/structure/PieceWeight.h +++ b/src/mc/world/level/levelgen/structure/PieceWeight.h @@ -41,6 +41,6 @@ class PieceWeight { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/world/level/levelgen/structure/PillagerOutpostFeature.h b/src/mc/world/level/levelgen/structure/PillagerOutpostFeature.h index c5a2caca94..aa9530f38f 100644 --- a/src/mc/world/level/levelgen/structure/PillagerOutpostFeature.h +++ b/src/mc/world/level/levelgen/structure/PillagerOutpostFeature.h @@ -100,9 +100,9 @@ class PillagerOutpostFeature : public ::StructureFeature { MCAPI bool $isFeatureChunk(::BiomeSource const& biomeSource, ::Random& random, ::ChunkPos const& lc, uint levelSeed, ::IPreliminarySurfaceProvider const& preliminarySurfaceLevel, ::Dimension const&); - MCAPI bool $shouldAddHardcodedSpawnAreas() const; + MCFOLD bool $shouldAddHardcodedSpawnAreas() const; - MCAPI bool $shouldPostProcessMobs() const; + MCFOLD bool $shouldPostProcessMobs() const; MCAPI ::std::unique_ptr<::StructureStart> $createStructureStart(::Dimension& generator, ::BiomeSource const&, ::Random& random, ::ChunkPos const& lc, ::IPreliminarySurfaceProvider const&); diff --git a/src/mc/world/level/levelgen/structure/PoolElementStructurePiece.h b/src/mc/world/level/levelgen/structure/PoolElementStructurePiece.h index 277e26cf2a..cd74a86d69 100644 --- a/src/mc/world/level/levelgen/structure/PoolElementStructurePiece.h +++ b/src/mc/world/level/levelgen/structure/PoolElementStructurePiece.h @@ -120,7 +120,7 @@ class PoolElementStructurePiece : public ::StructurePiece { MCAPI void $moveBoundingBox(int dx, int dy, int dz); - MCAPI bool $_needsPostProcessing(::BlockSource& region); + MCFOLD bool $_needsPostProcessing(::BlockSource& region); // NOLINTEND public: diff --git a/src/mc/world/level/levelgen/structure/RandomScatteredLargeFeature.h b/src/mc/world/level/levelgen/structure/RandomScatteredLargeFeature.h index eca0817959..744e5b6be2 100644 --- a/src/mc/world/level/levelgen/structure/RandomScatteredLargeFeature.h +++ b/src/mc/world/level/levelgen/structure/RandomScatteredLargeFeature.h @@ -106,9 +106,9 @@ class RandomScatteredLargeFeature : public ::StructureFeature { ::std::optional<::HashedString> const& biomeTag ); - MCAPI bool $shouldAddHardcodedSpawnAreas() const; + MCFOLD bool $shouldAddHardcodedSpawnAreas() const; - MCAPI bool $shouldPostProcessMobs() const; + MCFOLD bool $shouldPostProcessMobs() const; MCAPI bool $isFeatureChunk( ::BiomeSource const& biomeSource, diff --git a/src/mc/world/level/levelgen/structure/SHChestCorridor.h b/src/mc/world/level/levelgen/structure/SHChestCorridor.h index 33d39b1556..85adb6c5bc 100644 --- a/src/mc/world/level/levelgen/structure/SHChestCorridor.h +++ b/src/mc/world/level/levelgen/structure/SHChestCorridor.h @@ -62,7 +62,7 @@ class SHChestCorridor : public ::StrongholdPiece { MCAPI bool $postProcess(::BlockSource& region, ::Random& random, ::BoundingBox const& chunkBB); - MCAPI void $addChildren( + MCFOLD void $addChildren( ::StructurePiece& startPiece, ::std::vector<::std::unique_ptr<::StructurePiece>>& pieces, ::Random& random diff --git a/src/mc/world/level/levelgen/structure/SHPrisonHall.h b/src/mc/world/level/levelgen/structure/SHPrisonHall.h index c1b3832663..d232132160 100644 --- a/src/mc/world/level/levelgen/structure/SHPrisonHall.h +++ b/src/mc/world/level/levelgen/structure/SHPrisonHall.h @@ -62,7 +62,7 @@ class SHPrisonHall : public ::StrongholdPiece { MCAPI bool $postProcess(::BlockSource& region, ::Random& random, ::BoundingBox const& chunkBB); - MCAPI void $addChildren( + MCFOLD void $addChildren( ::StructurePiece& startPiece, ::std::vector<::std::unique_ptr<::StructurePiece>>& pieces, ::Random& random diff --git a/src/mc/world/level/levelgen/structure/SHStairsDown.h b/src/mc/world/level/levelgen/structure/SHStairsDown.h index 96b0448543..82a1f18127 100644 --- a/src/mc/world/level/levelgen/structure/SHStairsDown.h +++ b/src/mc/world/level/levelgen/structure/SHStairsDown.h @@ -70,7 +70,7 @@ class SHStairsDown : public ::StrongholdPiece { public: // virtual function thunks // NOLINTBEGIN - MCAPI ::StructurePieceType $getType() const; + MCFOLD ::StructurePieceType $getType() const; MCAPI bool $postProcess(::BlockSource& region, ::Random& random, ::BoundingBox const& chunkBB); diff --git a/src/mc/world/level/levelgen/structure/SHStraightStairsDown.h b/src/mc/world/level/levelgen/structure/SHStraightStairsDown.h index eda2b490c7..b1ecc8c5e0 100644 --- a/src/mc/world/level/levelgen/structure/SHStraightStairsDown.h +++ b/src/mc/world/level/levelgen/structure/SHStraightStairsDown.h @@ -58,11 +58,11 @@ class SHStraightStairsDown : public ::StrongholdPiece { public: // virtual function thunks // NOLINTBEGIN - MCAPI ::StructurePieceType $getType() const; + MCFOLD ::StructurePieceType $getType() const; MCAPI bool $postProcess(::BlockSource& region, ::Random& random, ::BoundingBox const& chunkBB); - MCAPI void $addChildren( + MCFOLD void $addChildren( ::StructurePiece& startPiece, ::std::vector<::std::unique_ptr<::StructurePiece>>& pieces, ::Random& random diff --git a/src/mc/world/level/levelgen/structure/ScatteredFeaturePiece.h b/src/mc/world/level/levelgen/structure/ScatteredFeaturePiece.h index cdff98356a..0803193ec6 100644 --- a/src/mc/world/level/levelgen/structure/ScatteredFeaturePiece.h +++ b/src/mc/world/level/levelgen/structure/ScatteredFeaturePiece.h @@ -95,7 +95,7 @@ class ScatteredFeaturePiece : public ::StructurePiece { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND public: diff --git a/src/mc/world/level/levelgen/structure/SmoothStoneSelector.h b/src/mc/world/level/levelgen/structure/SmoothStoneSelector.h index d10db91757..b21a14430b 100644 --- a/src/mc/world/level/levelgen/structure/SmoothStoneSelector.h +++ b/src/mc/world/level/levelgen/structure/SmoothStoneSelector.h @@ -62,7 +62,7 @@ class SmoothStoneSelector : public ::BlockSelector { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND public: diff --git a/src/mc/world/level/levelgen/structure/StrongholdPiece.h b/src/mc/world/level/levelgen/structure/StrongholdPiece.h index 356f1c06e4..868acbd774 100644 --- a/src/mc/world/level/levelgen/structure/StrongholdPiece.h +++ b/src/mc/world/level/levelgen/structure/StrongholdPiece.h @@ -126,6 +126,6 @@ class StrongholdPiece : public ::StructurePiece { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/world/level/levelgen/structure/StrongholdStart.h b/src/mc/world/level/levelgen/structure/StrongholdStart.h index 4e30598c47..c1408ca454 100644 --- a/src/mc/world/level/levelgen/structure/StrongholdStart.h +++ b/src/mc/world/level/levelgen/structure/StrongholdStart.h @@ -60,7 +60,7 @@ class StrongholdStart : public ::StructureStart { public: // virtual function thunks // NOLINTBEGIN - MCAPI bool $isValid() const; + MCFOLD bool $isValid() const; MCAPI ::std::string_view $getStructureName() const; // NOLINTEND diff --git a/src/mc/world/level/levelgen/structure/StructureAnimationData.h b/src/mc/world/level/levelgen/structure/StructureAnimationData.h index 965a2232ca..82365aea81 100644 --- a/src/mc/world/level/levelgen/structure/StructureAnimationData.h +++ b/src/mc/world/level/levelgen/structure/StructureAnimationData.h @@ -53,27 +53,27 @@ class StructureAnimationData { MCAPI uint getBlocksExpectedToPlace(uint64 currentTick) const; - MCAPI uint getBlocksPlaced() const; + MCFOLD uint getBlocksPlaced() const; MCAPI ::BlockSource& getDimensionBlockSource() const; - MCAPI ::BlockPos const& getPosition() const; + MCFOLD ::BlockPos const& getPosition() const; MCAPI uint getQueueID() const; - MCAPI ::std::string const& getStructureName() const; + MCFOLD ::std::string const& getStructureName() const; - MCAPI ::StructureSettings const& getStructureSettings() const; + MCFOLD ::StructureSettings const& getStructureSettings() const; - MCAPI uchar getStructureVersion() const; + MCFOLD uchar getStructureVersion() const; - MCAPI ::DimensionType const& getTargetDimension() const; + MCFOLD ::DimensionType const& getTargetDimension() const; MCAPI uint getTotalBlocks() const; MCAPI ::CompoundTag& serialize(::CompoundTag& tag); - MCAPI void setBlocksPlaced(uint blocksPlaced); + MCFOLD void setBlocksPlaced(uint blocksPlaced); MCAPI void setCmdArea(::std::unique_ptr<::CommandArea> cmdArea); diff --git a/src/mc/world/level/levelgen/structure/StructureBlockPalette.h b/src/mc/world/level/levelgen/structure/StructureBlockPalette.h index 3b9560d511..110b383151 100644 --- a/src/mc/world/level/levelgen/structure/StructureBlockPalette.h +++ b/src/mc/world/level/levelgen/structure/StructureBlockPalette.h @@ -87,7 +87,7 @@ class StructureBlockPalette { MCAPI ::StructureBlockPalette::BlockPositionData const* getBlockPositionData(uint64 blockIndex) const; - MCAPI uint64 getSize() const; + MCFOLD uint64 getSize() const; MCAPI ::std::unique_ptr<::CompoundTag> save() const; diff --git a/src/mc/world/level/levelgen/structure/StructureEditorData.h b/src/mc/world/level/levelgen/structure/StructureEditorData.h index 94fc36f0ce..ed669a73ca 100644 --- a/src/mc/world/level/levelgen/structure/StructureEditorData.h +++ b/src/mc/world/level/levelgen/structure/StructureEditorData.h @@ -45,35 +45,35 @@ class StructureEditorData { MCAPI bool getIgnoreBlocks() const; - MCAPI bool getIgnoreEntities() const; + MCFOLD bool getIgnoreEntities() const; - MCAPI bool getIncludePlayers() const; + MCFOLD bool getIncludePlayers() const; - MCAPI uint getIntegritySeed() const; + MCFOLD uint getIntegritySeed() const; - MCAPI float getIntegrityValue() const; + MCFOLD float getIntegrityValue() const; MCAPI bool getIsWaterLogged() const; - MCAPI ::Mirror getMirror() const; + MCFOLD ::Mirror getMirror() const; - MCAPI ::Vec3 const& getPivot() const; + MCFOLD ::Vec3 const& getPivot() const; - MCAPI ::StructureRedstoneSaveMode getRedstoneSaveMode() const; + MCFOLD ::StructureRedstoneSaveMode getRedstoneSaveMode() const; - MCAPI ::Rotation getRotation() const; + MCFOLD ::Rotation getRotation() const; MCAPI bool getShowBoundingBox() const; - MCAPI ::StructureBlockType getStructureBlockType() const; + MCFOLD ::StructureBlockType getStructureBlockType() const; - MCAPI ::std::string const& getStructureName() const; + MCFOLD ::std::string const& getStructureName() const; MCAPI ::BlockPos const& getStructureOffset() const; - MCAPI ::StructureSettings const& getStructureSettings() const; + MCFOLD ::StructureSettings const& getStructureSettings() const; - MCAPI ::BlockPos const& getStructureSize() const; + MCFOLD ::BlockPos const& getStructureSize() const; MCAPI void load(::CompoundTag const& base, ::DataLoadHelper& dataLoadHelper); @@ -81,9 +81,9 @@ class StructureEditorData { MCAPI void save(::CompoundTag& tag) const; - MCAPI void setAllowNonTickingPlayerAndTickingAreaChunks(bool allowNonTickingPlayerAndTickingAreaChunks); + MCFOLD void setAllowNonTickingPlayerAndTickingAreaChunks(bool allowNonTickingPlayerAndTickingAreaChunks); - MCAPI void setAnimationMode(::AnimationMode animationMode); + MCFOLD void setAnimationMode(::AnimationMode animationMode); MCAPI void setAnimationSeconds(float animationSeconds); @@ -93,7 +93,7 @@ class StructureEditorData { MCAPI void setIgnoreEntities(bool ignoreEntities); - MCAPI void setIntegritySeed(uint integritySeed); + MCFOLD void setIntegritySeed(uint integritySeed); MCAPI void setIntegrityValue(float integrityValue); @@ -103,7 +103,7 @@ class StructureEditorData { MCAPI void setMirror(::Mirror mirror); - MCAPI void setRotation(::Rotation rotation); + MCFOLD void setRotation(::Rotation rotation); MCAPI void setShowBoundingBox(bool showBoundingBox); @@ -153,6 +153,6 @@ class StructureEditorData { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/world/level/levelgen/structure/StructureFeature.h b/src/mc/world/level/levelgen/structure/StructureFeature.h index 5223419ea4..d9d15298fa 100644 --- a/src/mc/world/level/levelgen/structure/StructureFeature.h +++ b/src/mc/world/level/levelgen/structure/StructureFeature.h @@ -171,9 +171,9 @@ class StructureFeature { public: // virtual function thunks // NOLINTBEGIN - MCAPI bool $shouldAddHardcodedSpawnAreas() const; + MCFOLD bool $shouldAddHardcodedSpawnAreas() const; - MCAPI bool $shouldPostProcessMobs() const; + MCFOLD bool $shouldPostProcessMobs() const; MCAPI bool $getNearestGeneratedFeature( ::Dimension& dimension, diff --git a/src/mc/world/level/levelgen/structure/StructureFeatureRegistry.h b/src/mc/world/level/levelgen/structure/StructureFeatureRegistry.h index f88e82148c..b67ef71c3d 100644 --- a/src/mc/world/level/levelgen/structure/StructureFeatureRegistry.h +++ b/src/mc/world/level/levelgen/structure/StructureFeatureRegistry.h @@ -49,7 +49,7 @@ class StructureFeatureRegistry { MCAPI bool isStructureFeatureTypeAt(::BlockPos const& pos, ::HashedString type) const; - MCAPI ::br::worldgen::StructureCache& structureCache(); + MCFOLD ::br::worldgen::StructureCache& structureCache(); MCAPI void tick(); diff --git a/src/mc/world/level/levelgen/structure/StructurePiece.h b/src/mc/world/level/levelgen/structure/StructurePiece.h index 4e14da94f3..e72f5d7069 100644 --- a/src/mc/world/level/levelgen/structure/StructurePiece.h +++ b/src/mc/world/level/levelgen/structure/StructurePiece.h @@ -150,7 +150,7 @@ class StructurePiece { MCAPI ::Block const& getBlock(::BlockSource& region, int x, int y, int z, ::BoundingBox const& chunkBB); - MCAPI ::Direction::Type getOrientation() const; + MCFOLD ::Direction::Type getOrientation() const; MCAPI ushort getOrientationData(::Block const* block, ushort data); @@ -197,7 +197,7 @@ class StructurePiece { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND public: @@ -205,15 +205,15 @@ class StructurePiece { // NOLINTBEGIN MCAPI void $moveBoundingBox(int dx, int dy, int dz); - MCAPI ::StructurePieceType $getType() const; + MCFOLD ::StructurePieceType $getType() const; - MCAPI void $addChildren( + MCFOLD void $addChildren( ::StructurePiece& startPiece, ::std::vector<::std::unique_ptr<::StructurePiece>>& pieces, ::Random& random ); - MCAPI void $postProcessMobsAt(::BlockSource& region, ::Random& random, ::BoundingBox const& chunkBB); + MCFOLD void $postProcessMobsAt(::BlockSource& region, ::Random& random, ::BoundingBox const& chunkBB); MCAPI bool $isInInvalidLocation(::BlockSource& region, ::BoundingBox const& chunkBB); @@ -224,7 +224,7 @@ class StructurePiece { MCAPI void $placeBlock(::BlockSource& region, ::Block const& block, int x, int y, int z, ::BoundingBox const& chunkBB); - MCAPI bool $canBeReplaced(::BlockSource&, int const, int const, int const, ::BoundingBox const&); + MCFOLD bool $canBeReplaced(::BlockSource&, int const, int const, int const, ::BoundingBox const&); MCAPI void $generateBox( ::BlockSource& region, @@ -240,7 +240,7 @@ class StructurePiece { bool skipAir ); - MCAPI void $addHardcodedSpawnAreas(::LevelChunk& chunk) const; + MCFOLD void $addHardcodedSpawnAreas(::LevelChunk& chunk) const; // NOLINTEND public: diff --git a/src/mc/world/level/levelgen/structure/StructureSettings.h b/src/mc/world/level/levelgen/structure/StructureSettings.h index 5e4d3edc6a..5223d8bf1b 100644 --- a/src/mc/world/level/levelgen/structure/StructureSettings.h +++ b/src/mc/world/level/levelgen/structure/StructureSettings.h @@ -51,27 +51,27 @@ class StructureSettings { MCAPI uint getAnimationTicks() const; - MCAPI bool getIgnoreBlocks() const; + MCFOLD bool getIgnoreBlocks() const; - MCAPI bool getIgnoreEntities() const; + MCFOLD bool getIgnoreEntities() const; - MCAPI bool getIgnoreJigsawBlocks() const; + MCFOLD bool getIgnoreJigsawBlocks() const; - MCAPI uint getIntegritySeed() const; + MCFOLD uint getIntegritySeed() const; MCAPI float getIntegrityValue() const; - MCAPI bool getIsWaterLogged() const; + MCFOLD bool getIsWaterLogged() const; - MCAPI ::Mirror getMirror() const; + MCFOLD ::Mirror getMirror() const; - MCAPI ::std::string const& getPaletteName() const; + MCFOLD ::std::string const& getPaletteName() const; MCAPI ::Rotation getRotation() const; MCAPI ::BlockPos const& getStructureOffset() const; - MCAPI ::BlockPos const& getStructureSize() const; + MCFOLD ::BlockPos const& getStructureSize() const; MCAPI ::BoundingBox getTransformedBoundBox() const; @@ -81,7 +81,7 @@ class StructureSettings { MCAPI ::StructureSettings& operator=(::StructureSettings const&); - MCAPI void setAllowNonTickingPlayerAndTickingAreaChunks(bool allowNonTickingPlayerAndTickingAreaChunks); + MCFOLD void setAllowNonTickingPlayerAndTickingAreaChunks(bool allowNonTickingPlayerAndTickingAreaChunks); MCAPI void setAnimationMode(::AnimationMode animationMode); @@ -89,9 +89,9 @@ class StructureSettings { MCAPI void setIgnoreBlocks(bool ignoreBlocks); - MCAPI void setIgnoreEntities(bool ignoreEntities); + MCFOLD void setIgnoreEntities(bool ignoreEntities); - MCAPI void setIgnoreJigsawBlocks(bool ignoreJigsawBlocks); + MCFOLD void setIgnoreJigsawBlocks(bool ignoreJigsawBlocks); MCAPI void setIntegritySeed(uint integritySeed); @@ -99,7 +99,7 @@ class StructureSettings { MCAPI void setIsWaterLogged(bool waterLogged); - MCAPI void setMirror(::Mirror mirror); + MCFOLD void setMirror(::Mirror mirror); MCAPI void setPivot(::Vec3 const& pivot); @@ -115,7 +115,7 @@ class StructureSettings { MCAPI void setStructureSize(::BlockPos const& size); - MCAPI bool shouldAllowNonTickingPlayerAndTickingAreaChunks() const; + MCFOLD bool shouldAllowNonTickingPlayerAndTickingAreaChunks() const; MCAPI ~StructureSettings(); // NOLINTEND @@ -139,6 +139,6 @@ class StructureSettings { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/world/level/levelgen/structure/StructureStart.h b/src/mc/world/level/levelgen/structure/StructureStart.h index 326d149b32..74a8f01416 100644 --- a/src/mc/world/level/levelgen/structure/StructureStart.h +++ b/src/mc/world/level/levelgen/structure/StructureStart.h @@ -63,9 +63,9 @@ class StructureStart { // NOLINTBEGIN MCAPI bool $postProcess(::BlockSource& region, ::Random& random, ::BoundingBox const& chunkBB); - MCAPI bool $isValid() const; + MCFOLD bool $isValid() const; - MCAPI int $getMaxYSpawnOffset() const; + MCFOLD int $getMaxYSpawnOffset() const; // NOLINTEND public: diff --git a/src/mc/world/level/levelgen/structure/StructureTelemetryClientData.h b/src/mc/world/level/levelgen/structure/StructureTelemetryClientData.h index 97e8455aa5..c8aca89c6c 100644 --- a/src/mc/world/level/levelgen/structure/StructureTelemetryClientData.h +++ b/src/mc/world/level/levelgen/structure/StructureTelemetryClientData.h @@ -21,12 +21,12 @@ class StructureTelemetryClientData { public: // member functions // NOLINTBEGIN - MCAPI uint getMirrorEditCount() const; + MCFOLD uint getMirrorEditCount() const; - MCAPI uint getOffsetEditCount() const; + MCFOLD uint getOffsetEditCount() const; - MCAPI uint getRotationEditCount() const; + MCFOLD uint getRotationEditCount() const; - MCAPI uint getSizeEditCount() const; + MCFOLD uint getSizeEditCount() const; // NOLINTEND }; diff --git a/src/mc/world/level/levelgen/structure/StructureTelemetryServerData.h b/src/mc/world/level/levelgen/structure/StructureTelemetryServerData.h index a1680041ca..0ae2bc8b77 100644 --- a/src/mc/world/level/levelgen/structure/StructureTelemetryServerData.h +++ b/src/mc/world/level/levelgen/structure/StructureTelemetryServerData.h @@ -21,9 +21,9 @@ class StructureTelemetryServerData { // NOLINTBEGIN MCAPI StructureTelemetryServerData(); - MCAPI bool hasBeenActivatedByRedstone(); + MCFOLD bool hasBeenActivatedByRedstone(); - MCAPI void setHasBeenActivedByRedstone(); + MCFOLD void setHasBeenActivedByRedstone(); // NOLINTEND public: diff --git a/src/mc/world/level/levelgen/structure/StructureTemplate.h b/src/mc/world/level/levelgen/structure/StructureTemplate.h index 1acefc8ba9..10110b746e 100644 --- a/src/mc/world/level/levelgen/structure/StructureTemplate.h +++ b/src/mc/world/level/levelgen/structure/StructureTemplate.h @@ -128,7 +128,7 @@ class StructureTemplate : public ::IStructureTemplate { bool ignoreJigsawBlocks ) const; - MCAPI ::IStructureTemplate const& asStructureTemplate() const; + MCFOLD ::IStructureTemplate const& asStructureTemplate() const; MCAPI void fillEmpty(::BlockPos const& size); @@ -142,11 +142,11 @@ class StructureTemplate : public ::IStructureTemplate { MCAPI ::std::vector<::JigsawStructureBlockInfo> getJigsawMarkers() const; - MCAPI ::std::string const& getName() const; + MCFOLD ::std::string const& getName() const; - MCAPI bool getRemovable() const; + MCFOLD bool getRemovable() const; - MCAPI ::BlockPos const& getSize() const; + MCFOLD ::BlockPos const& getSize() const; MCAPI bool isLoaded() const; diff --git a/src/mc/world/level/levelgen/structure/StructureTemplateData.h b/src/mc/world/level/levelgen/structure/StructureTemplateData.h index e8ebd6f1a2..cfe440504b 100644 --- a/src/mc/world/level/levelgen/structure/StructureTemplateData.h +++ b/src/mc/world/level/levelgen/structure/StructureTemplateData.h @@ -53,15 +53,15 @@ class StructureTemplateData { MCAPI void _saveStructureTag(::CompoundTag& tag) const; - MCAPI ::std::unordered_map<::std::string, ::StructureBlockPalette> const& getAllPalettes() const; + MCFOLD ::std::unordered_map<::std::string, ::StructureBlockPalette> const& getAllPalettes() const; - MCAPI ::std::vector const& getBlockIndices() const; + MCFOLD ::std::vector const& getBlockIndices() const; - MCAPI ::std::vector const& getExtraBlockIndices() const; + MCFOLD ::std::vector const& getExtraBlockIndices() const; MCAPI ::StructureBlockPalette const* getPalette(::std::string const& name) const; - MCAPI ::BlockPos const& getSize() const; + MCFOLD ::BlockPos const& getSize() const; MCAPI bool load(::CompoundTag const& tag); diff --git a/src/mc/world/level/levelgen/structure/VillageFeature.h b/src/mc/world/level/levelgen/structure/VillageFeature.h index 857a685c55..567c465971 100644 --- a/src/mc/world/level/levelgen/structure/VillageFeature.h +++ b/src/mc/world/level/levelgen/structure/VillageFeature.h @@ -95,7 +95,7 @@ class VillageFeature : public ::StructureFeature { ::std::optional<::HashedString> const& biomeTag ); - MCAPI bool $shouldPostProcessMobs() const; + MCFOLD bool $shouldPostProcessMobs() const; MCAPI ::std::unique_ptr<::StructureStart> $createStructureStart( ::Dimension& generator, diff --git a/src/mc/world/level/levelgen/structure/VillagePiece.h b/src/mc/world/level/levelgen/structure/VillagePiece.h index 38a250f222..293b327d3d 100644 --- a/src/mc/world/level/levelgen/structure/VillagePiece.h +++ b/src/mc/world/level/levelgen/structure/VillagePiece.h @@ -83,7 +83,7 @@ class VillagePiece : public ::PoolElementStructurePiece { MCAPI ::Block const& $getBeardStabilizeBlock(::Block const& foundationBlock) const; - MCAPI ::AdjustmentEffect $getTerrainAdjustmentEffect() const; + MCFOLD ::AdjustmentEffect $getTerrainAdjustmentEffect() const; MCAPI bool $_needsPostProcessing(::BlockSource& region); // NOLINTEND diff --git a/src/mc/world/level/levelgen/structure/VillageStart.h b/src/mc/world/level/levelgen/structure/VillageStart.h index 1fad436260..4292bbaf96 100644 --- a/src/mc/world/level/levelgen/structure/VillageStart.h +++ b/src/mc/world/level/levelgen/structure/VillageStart.h @@ -40,7 +40,7 @@ class VillageStart : public ::StructureStart { public: // virtual function thunks // NOLINTBEGIN - MCAPI bool $isValid() const; + MCFOLD bool $isValid() const; MCAPI ::std::string_view $getStructureName() const; // NOLINTEND diff --git a/src/mc/world/level/levelgen/structure/WoodlandMansionFeature.h b/src/mc/world/level/levelgen/structure/WoodlandMansionFeature.h index f443517fa3..f4007d5cc5 100644 --- a/src/mc/world/level/levelgen/structure/WoodlandMansionFeature.h +++ b/src/mc/world/level/levelgen/structure/WoodlandMansionFeature.h @@ -94,7 +94,7 @@ class WoodlandMansionFeature : public ::StructureFeature { ::std::optional<::HashedString> const& biomeTag ); - MCAPI bool $shouldPostProcessMobs() const; + MCFOLD bool $shouldPostProcessMobs() const; MCAPI bool $isFeatureChunk(::BiomeSource const& biomeSource, ::Random& random, ::ChunkPos const& lc, uint levelSeed, ::IPreliminarySurfaceProvider const& preliminarySurfaceLevel, ::Dimension const&); diff --git a/src/mc/world/level/levelgen/structure/WoodlandMansionPieces.h b/src/mc/world/level/levelgen/structure/WoodlandMansionPieces.h index 1ac070db08..2036ba92f3 100644 --- a/src/mc/world/level/levelgen/structure/WoodlandMansionPieces.h +++ b/src/mc/world/level/levelgen/structure/WoodlandMansionPieces.h @@ -179,7 +179,7 @@ class WoodlandMansionPieces { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; @@ -421,7 +421,7 @@ class WoodlandMansionPieces { // NOLINTBEGIN MCAPI ::std::string $get1x1(::Random& random); - MCAPI ::std::string $get1x1Secret(::Random& random); + MCFOLD ::std::string $get1x1Secret(::Random& random); MCAPI ::std::string $get1x2SideEntrance(::Random& random, bool isStairsRoom); @@ -431,7 +431,7 @@ class WoodlandMansionPieces { MCAPI ::std::string $get2x2(::Random& random); - MCAPI ::std::string $get2x2Secret(::Random& random); + MCFOLD ::std::string $get2x2Secret(::Random& random); // NOLINTEND public: @@ -481,7 +481,7 @@ class WoodlandMansionPieces { // NOLINTBEGIN MCAPI ::std::string $get1x1(::Random& random); - MCAPI ::std::string $get1x1Secret(::Random& random); + MCFOLD ::std::string $get1x1Secret(::Random& random); MCAPI ::std::string $get1x2SideEntrance(::Random& random, bool isStairsRoom); @@ -491,7 +491,7 @@ class WoodlandMansionPieces { MCAPI ::std::string $get2x2(::Random& random); - MCAPI ::std::string $get2x2Secret(::Random& random); + MCFOLD ::std::string $get2x2Secret(::Random& random); // NOLINTEND public: diff --git a/src/mc/world/level/levelgen/structure/registry/JigsawStructureActorRulesRegistry.h b/src/mc/world/level/levelgen/structure/registry/JigsawStructureActorRulesRegistry.h index 04e809cddf..e221b44eef 100644 --- a/src/mc/world/level/levelgen/structure/registry/JigsawStructureActorRulesRegistry.h +++ b/src/mc/world/level/levelgen/structure/registry/JigsawStructureActorRulesRegistry.h @@ -24,7 +24,7 @@ class JigsawStructureActorRulesRegistry { public: // member functions // NOLINTBEGIN - MCAPI ::std::vector<::std::unique_ptr<::StructurePoolActorRule>> const* lookupByName(::std::string name) const; + MCFOLD ::std::vector<::std::unique_ptr<::StructurePoolActorRule>> const* lookupByName(::std::string name) const; MCAPI void registerActorRules( ::std::string name, diff --git a/src/mc/world/level/levelgen/structure/registry/JigsawStructureBlockRulesRegistry.h b/src/mc/world/level/levelgen/structure/registry/JigsawStructureBlockRulesRegistry.h index 2e836793e9..2ff32c41af 100644 --- a/src/mc/world/level/levelgen/structure/registry/JigsawStructureBlockRulesRegistry.h +++ b/src/mc/world/level/levelgen/structure/registry/JigsawStructureBlockRulesRegistry.h @@ -30,7 +30,7 @@ class JigsawStructureBlockRulesRegistry { ::std::vector<::gsl::not_null<::std::shared_ptr<::br::worldgen::StructureProcessor const>>> const>>> get(::std::string_view key) const; - MCAPI ::std::vector<::std::unique_ptr<::StructurePoolBlockRule>> const* lookupByName(::std::string name) const; + MCFOLD ::std::vector<::std::unique_ptr<::StructurePoolBlockRule>> const* lookupByName(::std::string name) const; MCAPI void record( ::std::string_view key, diff --git a/src/mc/world/level/levelgen/structure/registry/JigsawStructureBlockTagRulesRegistry.h b/src/mc/world/level/levelgen/structure/registry/JigsawStructureBlockTagRulesRegistry.h index b02a8f5fb0..7e5e226f61 100644 --- a/src/mc/world/level/levelgen/structure/registry/JigsawStructureBlockTagRulesRegistry.h +++ b/src/mc/world/level/levelgen/structure/registry/JigsawStructureBlockTagRulesRegistry.h @@ -24,7 +24,7 @@ class JigsawStructureBlockTagRulesRegistry { public: // member functions // NOLINTBEGIN - MCAPI ::std::vector<::std::unique_ptr<::StructurePoolBlockTagRule>> const* lookupByName(::std::string name) const; + MCFOLD ::std::vector<::std::unique_ptr<::StructurePoolBlockTagRule>> const* lookupByName(::std::string name) const; MCAPI void registerBlockTagRules( ::std::string name, diff --git a/src/mc/world/level/levelgen/structure/registry/JigsawStructureElementRegistry.h b/src/mc/world/level/levelgen/structure/registry/JigsawStructureElementRegistry.h index f41f33091a..d4887e616f 100644 --- a/src/mc/world/level/levelgen/structure/registry/JigsawStructureElementRegistry.h +++ b/src/mc/world/level/levelgen/structure/registry/JigsawStructureElementRegistry.h @@ -24,7 +24,7 @@ class JigsawStructureElementRegistry { public: // member functions // NOLINTBEGIN - MCAPI ::StructurePoolElement const* lookupByName(::std::string name) const; + MCFOLD ::StructurePoolElement const* lookupByName(::std::string name) const; MCAPI ::StructurePoolElement const& registerStructureElement(::std::string name, ::std::unique_ptr<::StructurePoolElement>&& element); diff --git a/src/mc/world/level/levelgen/structure/registry/JigsawStructureRegistry.h b/src/mc/world/level/levelgen/structure/registry/JigsawStructureRegistry.h index a2b89c500a..b0c5590105 100644 --- a/src/mc/world/level/levelgen/structure/registry/JigsawStructureRegistry.h +++ b/src/mc/world/level/levelgen/structure/registry/JigsawStructureRegistry.h @@ -44,13 +44,13 @@ class JigsawStructureRegistry { MCAPI ::JigsawStructureActorRulesRegistry& getJigsawStructureActorRulesRegistry(); - MCAPI ::JigsawStructureBlockRulesRegistry& getJigsawStructureBlockRulesRegistry(); + MCFOLD ::JigsawStructureBlockRulesRegistry& getJigsawStructureBlockRulesRegistry(); - MCAPI ::JigsawStructureBlockTagRulesRegistry& getJigsawStructureBlockTagRulesRegistry(); + MCFOLD ::JigsawStructureBlockTagRulesRegistry& getJigsawStructureBlockTagRulesRegistry(); - MCAPI ::SharedTypes::v1_21_20::JigsawStructureData const* getJigsawStructureData() const; + MCFOLD ::SharedTypes::v1_21_20::JigsawStructureData const* getJigsawStructureData() const; - MCAPI ::JigsawStructureElementRegistry& getJigsawStructureElementRegistry(); + MCFOLD ::JigsawStructureElementRegistry& getJigsawStructureElementRegistry(); MCAPI void initialize( ::StructureSpawnRegistry& structureSpawnRegistry, @@ -68,9 +68,9 @@ class JigsawStructureRegistry { MCAPI ::br::worldgen::StructureRegistry const& structureRegistry() const; - MCAPI ::br::worldgen::StructureRegistry& structureRegistry(); + MCFOLD ::br::worldgen::StructureRegistry& structureRegistry(); - MCAPI ::br::worldgen::StructureSetRegistry& structureSetRegistry(); + MCFOLD ::br::worldgen::StructureSetRegistry& structureSetRegistry(); MCAPI ~JigsawStructureRegistry(); // NOLINTEND diff --git a/src/mc/world/level/levelgen/structure/registry/StructureRegistry.h b/src/mc/world/level/levelgen/structure/registry/StructureRegistry.h index 20a9cd447c..d849e9182f 100644 --- a/src/mc/world/level/levelgen/structure/registry/StructureRegistry.h +++ b/src/mc/world/level/levelgen/structure/registry/StructureRegistry.h @@ -25,11 +25,11 @@ class StructureRegistry { public: // member functions // NOLINTBEGIN - MCAPI ::entt::internal::dense_map_iterator<::std::_Vector_const_iterator<::std::_Vector_val<::std::_Simple_types< + MCFOLD ::entt::internal::dense_map_iterator<::std::_Vector_const_iterator<::std::_Vector_val<::std::_Simple_types< ::entt::internal::dense_map_node<::std::string, ::std::shared_ptr<::br::worldgen::Structure>>>>>> begin() const; - MCAPI ::entt::internal::dense_map_iterator<::std::_Vector_const_iterator<::std::_Vector_val<::std::_Simple_types< + MCFOLD ::entt::internal::dense_map_iterator<::std::_Vector_const_iterator<::std::_Vector_val<::std::_Simple_types< ::entt::internal::dense_map_node<::std::string, ::std::shared_ptr<::br::worldgen::Structure>>>>>> end() const; diff --git a/src/mc/world/level/levelgen/structure/structurepools/EmptyPoolElement.h b/src/mc/world/level/levelgen/structure/structurepools/EmptyPoolElement.h index b44ab096f7..90c05e8d50 100644 --- a/src/mc/world/level/levelgen/structure/structurepools/EmptyPoolElement.h +++ b/src/mc/world/level/levelgen/structure/structurepools/EmptyPoolElement.h @@ -54,18 +54,18 @@ class EmptyPoolElement : public ::StructurePoolElement { public: // virtual function thunks // NOLINTBEGIN - MCAPI ::BlockPos $getSize(::Rotation) const; + MCFOLD ::BlockPos $getSize(::Rotation) const; - MCAPI ::std::vector<::JigsawBlockInfo> $getJigsawMarkers(::BlockPos position, ::Rotation rotation) const; + MCFOLD ::std::vector<::JigsawBlockInfo> $getJigsawMarkers(::BlockPos position, ::Rotation rotation) const; - MCAPI ::std::vector<::JigsawBlockInfo> + MCFOLD ::std::vector<::JigsawBlockInfo> $getJigsawMarkers(::BlockPos position, ::LegacyStructureSettings& settings, ::BlockSource* region) const; MCAPI ::BoundingBox $getBoundingBox(::BlockPos position, ::Rotation rotation) const; - MCAPI bool $isValid() const; + MCFOLD bool $isValid() const; - MCAPI ::StructurePoolElementType $type() const; + MCFOLD ::StructurePoolElementType $type() const; // NOLINTEND public: diff --git a/src/mc/world/level/levelgen/structure/structurepools/FeaturePoolElement.h b/src/mc/world/level/levelgen/structure/structurepools/FeaturePoolElement.h index 4e35a35ca7..36d0a842d1 100644 --- a/src/mc/world/level/levelgen/structure/structurepools/FeaturePoolElement.h +++ b/src/mc/world/level/levelgen/structure/structurepools/FeaturePoolElement.h @@ -102,7 +102,7 @@ class FeaturePoolElement : public ::StructurePoolElement { ::BlockPos refPos ) const; - MCAPI ::StructurePoolElementType $type() const; + MCFOLD ::StructurePoolElementType $type() const; // NOLINTEND public: diff --git a/src/mc/world/level/levelgen/structure/structurepools/IStructurePoolBlockPredicate.h b/src/mc/world/level/levelgen/structure/structurepools/IStructurePoolBlockPredicate.h index 77cb4244c0..4bfb2faaf9 100644 --- a/src/mc/world/level/levelgen/structure/structurepools/IStructurePoolBlockPredicate.h +++ b/src/mc/world/level/levelgen/structure/structurepools/IStructurePoolBlockPredicate.h @@ -50,8 +50,8 @@ class IStructurePoolBlockPredicate { public: // virtual function thunks // NOLINTBEGIN - MCAPI bool $finalize(::BlockSource&, ::IRandom&); + MCFOLD bool $finalize(::BlockSource&, ::IRandom&); - MCAPI ::std::string $validate() const; + MCFOLD ::std::string $validate() const; // NOLINTEND }; diff --git a/src/mc/world/level/levelgen/structure/structurepools/StructurePoolActorRule.h b/src/mc/world/level/levelgen/structure/structurepools/StructurePoolActorRule.h index eca4bc820d..da35e38c83 100644 --- a/src/mc/world/level/levelgen/structure/structurepools/StructurePoolActorRule.h +++ b/src/mc/world/level/levelgen/structure/structurepools/StructurePoolActorRule.h @@ -42,6 +42,6 @@ class StructurePoolActorRule { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/world/level/levelgen/structure/structurepools/StructurePoolBlockPredicateAlwaysTrue.h b/src/mc/world/level/levelgen/structure/structurepools/StructurePoolBlockPredicateAlwaysTrue.h index 15147a39f3..a152d4573e 100644 --- a/src/mc/world/level/levelgen/structure/structurepools/StructurePoolBlockPredicateAlwaysTrue.h +++ b/src/mc/world/level/levelgen/structure/structurepools/StructurePoolBlockPredicateAlwaysTrue.h @@ -55,13 +55,13 @@ class StructurePoolBlockPredicateAlwaysTrue : public ::IStructurePoolBlockPredic public: // virtual function thunks // NOLINTBEGIN - MCAPI bool $test(::Block const& block, ::Randomize& randomize) const; + MCFOLD bool $test(::Block const& block, ::Randomize& randomize) const; - MCAPI bool $test(::BlockPos const&, ::BlockPos const&, ::Randomize&) const; + MCFOLD bool $test(::BlockPos const&, ::BlockPos const&, ::Randomize&) const; - MCAPI ::StructurePoolBlockPredicateType $getType() const; + MCFOLD ::StructurePoolBlockPredicateType $getType() const; - MCAPI void $appendMetadataKey(::Util::XXHash& hash) const; + MCFOLD void $appendMetadataKey(::Util::XXHash& hash) const; // NOLINTEND public: diff --git a/src/mc/world/level/levelgen/structure/structurepools/StructurePoolBlockPredicateAlwaysTrueExcept.h b/src/mc/world/level/levelgen/structure/structurepools/StructurePoolBlockPredicateAlwaysTrueExcept.h index e80b085d94..f809f543fe 100644 --- a/src/mc/world/level/levelgen/structure/structurepools/StructurePoolBlockPredicateAlwaysTrueExcept.h +++ b/src/mc/world/level/levelgen/structure/structurepools/StructurePoolBlockPredicateAlwaysTrueExcept.h @@ -71,9 +71,9 @@ class StructurePoolBlockPredicateAlwaysTrueExcept : public ::IStructurePoolBlock // NOLINTBEGIN MCAPI bool $test(::Block const& block, ::Randomize& randomize) const; - MCAPI bool $test(::BlockPos const& worldPos, ::BlockPos const& refPos, ::Randomize& randomize) const; + MCFOLD bool $test(::BlockPos const& worldPos, ::BlockPos const& refPos, ::Randomize& randomize) const; - MCAPI ::StructurePoolBlockPredicateType $getType() const; + MCFOLD ::StructurePoolBlockPredicateType $getType() const; MCAPI void $appendMetadataKey(::Util::XXHash& hash) const; // NOLINTEND diff --git a/src/mc/world/level/levelgen/structure/structurepools/StructurePoolBlockPredicateAxisAlignedPosition.h b/src/mc/world/level/levelgen/structure/structurepools/StructurePoolBlockPredicateAxisAlignedPosition.h index 99fcf94515..ceddcd34a1 100644 --- a/src/mc/world/level/levelgen/structure/structurepools/StructurePoolBlockPredicateAxisAlignedPosition.h +++ b/src/mc/world/level/levelgen/structure/structurepools/StructurePoolBlockPredicateAxisAlignedPosition.h @@ -77,11 +77,11 @@ class StructurePoolBlockPredicateAxisAlignedPosition : public ::IStructurePoolBl public: // virtual function thunks // NOLINTBEGIN - MCAPI bool $test(::Block const& block, ::Randomize& randomize) const; + MCFOLD bool $test(::Block const& block, ::Randomize& randomize) const; MCAPI bool $test(::BlockPos const& worldPos, ::BlockPos const& refPos, ::Randomize& randomize) const; - MCAPI ::StructurePoolBlockPredicateType $getType() const; + MCFOLD ::StructurePoolBlockPredicateType $getType() const; MCAPI void $appendMetadataKey(::Util::XXHash& hash) const; // NOLINTEND diff --git a/src/mc/world/level/levelgen/structure/structurepools/StructurePoolBlockPredicateBlockMatch.h b/src/mc/world/level/levelgen/structure/structurepools/StructurePoolBlockPredicateBlockMatch.h index 57b08b454c..da48ce1d5e 100644 --- a/src/mc/world/level/levelgen/structure/structurepools/StructurePoolBlockPredicateBlockMatch.h +++ b/src/mc/world/level/levelgen/structure/structurepools/StructurePoolBlockPredicateBlockMatch.h @@ -74,9 +74,9 @@ class StructurePoolBlockPredicateBlockMatch : public ::IStructurePoolBlockPredic // NOLINTBEGIN MCAPI bool $test(::Block const& block, ::Randomize&) const; - MCAPI bool $test(::BlockPos const&, ::BlockPos const&, ::Randomize&) const; + MCFOLD bool $test(::BlockPos const&, ::BlockPos const&, ::Randomize&) const; - MCAPI ::StructurePoolBlockPredicateType $getType() const; + MCFOLD ::StructurePoolBlockPredicateType $getType() const; MCAPI void $appendMetadataKey(::Util::XXHash& hash) const; // NOLINTEND diff --git a/src/mc/world/level/levelgen/structure/structurepools/StructurePoolBlockPredicateBlockMatchRandom.h b/src/mc/world/level/levelgen/structure/structurepools/StructurePoolBlockPredicateBlockMatchRandom.h index 7c10b0da44..c7401fe72a 100644 --- a/src/mc/world/level/levelgen/structure/structurepools/StructurePoolBlockPredicateBlockMatchRandom.h +++ b/src/mc/world/level/levelgen/structure/structurepools/StructurePoolBlockPredicateBlockMatchRandom.h @@ -70,9 +70,9 @@ class StructurePoolBlockPredicateBlockMatchRandom : public ::IStructurePoolBlock // NOLINTBEGIN MCAPI bool $test(::Block const& block, ::Randomize& randomize) const; - MCAPI bool $test(::BlockPos const& worldPos, ::BlockPos const& refPos, ::Randomize& randomize) const; + MCFOLD bool $test(::BlockPos const& worldPos, ::BlockPos const& refPos, ::Randomize& randomize) const; - MCAPI ::StructurePoolBlockPredicateType $getType() const; + MCFOLD ::StructurePoolBlockPredicateType $getType() const; MCAPI void $appendMetadataKey(::Util::XXHash& hash) const; // NOLINTEND diff --git a/src/mc/world/level/levelgen/structure/structurepools/StructurePoolBlockPredicateCappedArcheologyBlockReplacement.h b/src/mc/world/level/levelgen/structure/structurepools/StructurePoolBlockPredicateCappedArcheologyBlockReplacement.h index 2cc65e1bd2..ad9c689fac 100644 --- a/src/mc/world/level/levelgen/structure/structurepools/StructurePoolBlockPredicateCappedArcheologyBlockReplacement.h +++ b/src/mc/world/level/levelgen/structure/structurepools/StructurePoolBlockPredicateCappedArcheologyBlockReplacement.h @@ -84,7 +84,7 @@ class StructurePoolBlockPredicateCappedArcheologyBlockReplacement MCAPI ::std::string $validate() const; - MCAPI ::StructurePoolBlockPredicateType $getType() const; + MCFOLD ::StructurePoolBlockPredicateType $getType() const; // NOLINTEND public: diff --git a/src/mc/world/level/levelgen/structure/structurepools/StructurePoolBlockPredicateCappedRandomBlockReplacement.h b/src/mc/world/level/levelgen/structure/structurepools/StructurePoolBlockPredicateCappedRandomBlockReplacement.h index 64c2295733..f138954650 100644 --- a/src/mc/world/level/levelgen/structure/structurepools/StructurePoolBlockPredicateCappedRandomBlockReplacement.h +++ b/src/mc/world/level/levelgen/structure/structurepools/StructurePoolBlockPredicateCappedRandomBlockReplacement.h @@ -94,7 +94,7 @@ class StructurePoolBlockPredicateCappedRandomBlockReplacement : public ::IStruct MCAPI bool $finalize(::BlockSource& region, ::IRandom& random); - MCAPI ::StructurePoolBlockPredicateType $getType() const; + MCFOLD ::StructurePoolBlockPredicateType $getType() const; MCAPI void $appendMetadataKey(::Util::XXHash& hash) const; // NOLINTEND diff --git a/src/mc/world/level/levelgen/structure/structurepools/StructurePoolBlockPredicateTrueIfFound.h b/src/mc/world/level/levelgen/structure/structurepools/StructurePoolBlockPredicateTrueIfFound.h index 34e862c09d..20e50ecc27 100644 --- a/src/mc/world/level/levelgen/structure/structurepools/StructurePoolBlockPredicateTrueIfFound.h +++ b/src/mc/world/level/levelgen/structure/structurepools/StructurePoolBlockPredicateTrueIfFound.h @@ -70,9 +70,9 @@ class StructurePoolBlockPredicateTrueIfFound : public ::IStructurePoolBlockPredi // NOLINTBEGIN MCAPI bool $test(::Block const& block, ::Randomize& randomize) const; - MCAPI bool $test(::BlockPos const&, ::BlockPos const&, ::Randomize&) const; + MCFOLD bool $test(::BlockPos const&, ::BlockPos const&, ::Randomize&) const; - MCAPI ::StructurePoolBlockPredicateType $getType() const; + MCFOLD ::StructurePoolBlockPredicateType $getType() const; MCAPI void $appendMetadataKey(::Util::XXHash& hash) const; // NOLINTEND diff --git a/src/mc/world/level/levelgen/structure/structurepools/StructurePoolBlockRule.h b/src/mc/world/level/levelgen/structure/structurepools/StructurePoolBlockRule.h index d4d89750af..ce0448a067 100644 --- a/src/mc/world/level/levelgen/structure/structurepools/StructurePoolBlockRule.h +++ b/src/mc/world/level/levelgen/structure/structurepools/StructurePoolBlockRule.h @@ -44,7 +44,7 @@ class StructurePoolBlockRule { ::Block const* resultBlock ); - MCAPI bool finalizeRule(::BlockSource& region, ::IRandom& random); + MCFOLD bool finalizeRule(::BlockSource& region, ::IRandom& random); MCAPI bool processRule( ::Block const& sourceBlock, diff --git a/src/mc/world/level/levelgen/structure/structurepools/StructurePoolElement.h b/src/mc/world/level/levelgen/structure/structurepools/StructurePoolElement.h index 10adf4d4ff..b913c2faf6 100644 --- a/src/mc/world/level/levelgen/structure/structurepools/StructurePoolElement.h +++ b/src/mc/world/level/levelgen/structure/structurepools/StructurePoolElement.h @@ -60,7 +60,7 @@ class StructurePoolElement { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND public: @@ -144,7 +144,7 @@ class StructurePoolElement { public: // virtual function thunks // NOLINTBEGIN - MCAPI ::std::vector<::JigsawBlockInfo> const& $getJigsawMarkers() const; + MCFOLD ::std::vector<::JigsawBlockInfo> const& $getJigsawMarkers() const; MCAPI bool $isLegacyStructure() const; // NOLINTEND @@ -378,11 +378,11 @@ class StructurePoolElement { MCAPI ::BoundingBox $getBoundingBox(::BlockPos position, ::Rotation rotation) const; - MCAPI void $setProjection(::Projection projection); + MCFOLD void $setProjection(::Projection projection); - MCAPI ::Projection $getProjection() const; + MCFOLD ::Projection $getProjection() const; - MCAPI ::PostProcessSettings $getPostProcessSettings() const; + MCFOLD ::PostProcessSettings $getPostProcessSettings() const; MCAPI bool $place( ::BlockSource& region, @@ -422,7 +422,7 @@ class StructurePoolElement { MCAPI bool $isValid() const; - MCAPI ::StructurePoolElementType $type() const; + MCFOLD ::StructurePoolElementType $type() const; // NOLINTEND public: diff --git a/src/mc/world/level/levelgen/structure/structurepools/StructureTemplatePool.h b/src/mc/world/level/levelgen/structure/structurepools/StructureTemplatePool.h index 28271c72cb..160d56fb20 100644 --- a/src/mc/world/level/levelgen/structure/structurepools/StructureTemplatePool.h +++ b/src/mc/world/level/levelgen/structure/structurepools/StructureTemplatePool.h @@ -45,7 +45,7 @@ class StructureTemplatePool { ::std::initializer_list<::WeightedStructureTemplateRegistration> pieces ); - MCAPI ::std::string const& getFallback() const; + MCFOLD ::std::string const& getFallback() const; MCAPI ::StructurePoolElement const* getRandomTemplate(::Random& random) const; diff --git a/src/mc/world/level/levelgen/structure/structurepools/WeightedStructureTemplateRegistration.h b/src/mc/world/level/levelgen/structure/structurepools/WeightedStructureTemplateRegistration.h index 0731cfab71..7d0ac83ceb 100644 --- a/src/mc/world/level/levelgen/structure/structurepools/WeightedStructureTemplateRegistration.h +++ b/src/mc/world/level/levelgen/structure/structurepools/WeightedStructureTemplateRegistration.h @@ -25,6 +25,6 @@ struct WeightedStructureTemplateRegistration { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/world/level/levelgen/structure/structurepools/alias/PoolAliasBinding.h b/src/mc/world/level/levelgen/structure/structurepools/alias/PoolAliasBinding.h index b35d5a85d0..f097d98e56 100644 --- a/src/mc/world/level/levelgen/structure/structurepools/alias/PoolAliasBinding.h +++ b/src/mc/world/level/levelgen/structure/structurepools/alias/PoolAliasBinding.h @@ -45,7 +45,7 @@ class PoolAliasBinding { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/world/level/levelgen/synth/AquiferNoises.h b/src/mc/world/level/levelgen/synth/AquiferNoises.h index c5fa790b30..29c45cbfff 100644 --- a/src/mc/world/level/levelgen/synth/AquiferNoises.h +++ b/src/mc/world/level/levelgen/synth/AquiferNoises.h @@ -52,9 +52,9 @@ class AquiferNoises { public: // constructor thunks // NOLINTBEGIN - MCAPI void* $ctor(::AquiferNoises const&); + MCFOLD void* $ctor(::AquiferNoises const&); - MCAPI void* $ctor( + MCFOLD void* $ctor( ::NormalNoiseImpl<0, ::MultiOctaveNoiseImpl<0, ::ParityImprovedNoiseImpl<0>>> barrierNoise, ::NormalNoiseImpl<0, ::MultiOctaveNoiseImpl<0, ::ParityImprovedNoiseImpl<0>>> fluidLevelFloodednessNoise, ::NormalNoiseImpl<0, ::MultiOctaveNoiseImpl<0, ::ParityImprovedNoiseImpl<0>>> lavaNoise, @@ -66,6 +66,6 @@ class AquiferNoises { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/world/level/levelgen/synth/MesaSurfaceBuilderNoises.h b/src/mc/world/level/levelgen/synth/MesaSurfaceBuilderNoises.h index bd301f3b68..90d956b64f 100644 --- a/src/mc/world/level/levelgen/synth/MesaSurfaceBuilderNoises.h +++ b/src/mc/world/level/levelgen/synth/MesaSurfaceBuilderNoises.h @@ -60,6 +60,6 @@ class MesaSurfaceBuilderNoises { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/world/level/levelgen/synth/noise_utils/DelegatingRandom.h b/src/mc/world/level/levelgen/synth/noise_utils/DelegatingRandom.h index e44f72ac9e..d6a01db71d 100644 --- a/src/mc/world/level/levelgen/synth/noise_utils/DelegatingRandom.h +++ b/src/mc/world/level/levelgen/synth/noise_utils/DelegatingRandom.h @@ -63,21 +63,21 @@ class DelegatingRandom : public ::IRandom { public: // virtual function thunks // NOLINTBEGIN - MCAPI int $nextInt(); + MCFOLD int $nextInt(); - MCAPI int $nextInt(int const bound); + MCFOLD int $nextInt(int const bound); - MCAPI int64 $nextLong(); + MCFOLD int64 $nextLong(); - MCAPI bool $nextBoolean(); + MCFOLD bool $nextBoolean(); - MCAPI double $nextDouble(); + MCFOLD double $nextDouble(); MCAPI double $nextGaussianDouble(); - MCAPI void $consumeCount(uint count); + MCFOLD void $consumeCount(uint count); - MCAPI ::std::unique_ptr<::IRandom> $fork(); + MCFOLD ::std::unique_ptr<::IRandom> $fork(); // NOLINTEND }; diff --git a/src/mc/world/level/levelgen/synth/noise_utils/DoublesForFloatsRandom.h b/src/mc/world/level/levelgen/synth/noise_utils/DoublesForFloatsRandom.h index a7ceb95b73..d90e0baecc 100644 --- a/src/mc/world/level/levelgen/synth/noise_utils/DoublesForFloatsRandom.h +++ b/src/mc/world/level/levelgen/synth/noise_utils/DoublesForFloatsRandom.h @@ -21,7 +21,7 @@ class DoublesForFloatsRandom : public ::NoiseUtils::DelegatingRandom { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND public: diff --git a/src/mc/world/level/levelgen/v1/Aquifer.h b/src/mc/world/level/levelgen/v1/Aquifer.h index 7a89137160..b50e2446c4 100644 --- a/src/mc/world/level/levelgen/v1/Aquifer.h +++ b/src/mc/world/level/levelgen/v1/Aquifer.h @@ -94,13 +94,13 @@ class Aquifer { MCAPI void computeAt(::BlockPos const& worldPos); - MCAPI float getLastBarrier() const; + MCFOLD float getLastBarrier() const; MCAPI ::Block const* getLastFluidBlockType(bool canTickUpdate) const; - MCAPI int getLastFluidLevel() const; + MCFOLD int getLastFluidLevel() const; - MCAPI bool shouldScheduleFluidUpdate() const; + MCFOLD bool shouldScheduleFluidUpdate() const; // NOLINTEND public: diff --git a/src/mc/world/level/levelgen/v1/BeardAndShaverDescription.h b/src/mc/world/level/levelgen/v1/BeardAndShaverDescription.h index 2fcd4d8825..213dd855e2 100644 --- a/src/mc/world/level/levelgen/v1/BeardAndShaverDescription.h +++ b/src/mc/world/level/levelgen/v1/BeardAndShaverDescription.h @@ -37,7 +37,7 @@ class BeardAndShaverDescription { MCAPI float calculateContribution(::BlockPos const& pos) const; - MCAPI ::BeardingDescriptionCache const& getCache() const; + MCFOLD ::BeardingDescriptionCache const& getCache() const; // NOLINTEND public: diff --git a/src/mc/world/level/levelgen/v1/BeardKernel.h b/src/mc/world/level/levelgen/v1/BeardKernel.h index 742d05f88d..59c5efd6fc 100644 --- a/src/mc/world/level/levelgen/v1/BeardKernel.h +++ b/src/mc/world/level/levelgen/v1/BeardKernel.h @@ -18,6 +18,6 @@ struct BeardKernel { public: // constructor thunks // NOLINTBEGIN - MCAPI void* $ctor(); + MCFOLD void* $ctor(); // NOLINTEND }; diff --git a/src/mc/world/level/levelgen/v1/ChunkBlender.h b/src/mc/world/level/levelgen/v1/ChunkBlender.h index 4554715507..de622a47cc 100644 --- a/src/mc/world/level/levelgen/v1/ChunkBlender.h +++ b/src/mc/world/level/levelgen/v1/ChunkBlender.h @@ -57,6 +57,6 @@ class ChunkBlender { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/world/level/levelgen/v1/FeatureTerrainAdjustments.h b/src/mc/world/level/levelgen/v1/FeatureTerrainAdjustments.h index 5e7da7010e..b07e4885ea 100644 --- a/src/mc/world/level/levelgen/v1/FeatureTerrainAdjustments.h +++ b/src/mc/world/level/levelgen/v1/FeatureTerrainAdjustments.h @@ -46,7 +46,7 @@ class FeatureTerrainAdjustments { public: // constructor thunks // NOLINTBEGIN - MCAPI void* $ctor(); + MCFOLD void* $ctor(); // NOLINTEND public: diff --git a/src/mc/world/level/levelgen/v1/IPreliminarySurfaceProvider.h b/src/mc/world/level/levelgen/v1/IPreliminarySurfaceProvider.h index 7f14062583..7caee9ac42 100644 --- a/src/mc/world/level/levelgen/v1/IPreliminarySurfaceProvider.h +++ b/src/mc/world/level/levelgen/v1/IPreliminarySurfaceProvider.h @@ -19,7 +19,7 @@ class IPreliminarySurfaceProvider { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND public: diff --git a/src/mc/world/level/levelgen/v1/NetherGenerator.h b/src/mc/world/level/levelgen/v1/NetherGenerator.h index 2de7d2c779..5e74aa3f1b 100644 --- a/src/mc/world/level/levelgen/v1/NetherGenerator.h +++ b/src/mc/world/level/levelgen/v1/NetherGenerator.h @@ -73,7 +73,7 @@ class NetherGenerator : public ::WorldGenerator { virtual ~NetherGenerator() /*override*/ = default; // vIndex: 11 - virtual void loadChunk(::LevelChunk& lc, bool forceImmediateReplacementDataLoad) /*override*/; + virtual void loadChunk(::LevelChunk& levelChunk, bool forceImmediateReplacementDataLoad) /*override*/; // vIndex: 9 virtual bool postProcess(::ChunkViewSource& neighborhood) /*override*/; @@ -151,7 +151,7 @@ class NetherGenerator : public ::WorldGenerator { public: // virtual function thunks // NOLINTBEGIN - MCAPI void $loadChunk(::LevelChunk& lc, bool forceImmediateReplacementDataLoad); + MCAPI void $loadChunk(::LevelChunk& levelChunk, bool forceImmediateReplacementDataLoad); MCAPI bool $postProcess(::ChunkViewSource& neighborhood); @@ -169,11 +169,11 @@ class NetherGenerator : public ::WorldGenerator { MCAPI ::BiomeSource const& $getBiomeSource() const; - MCAPI ::WorldGenerator::BlockVolumeDimensions $getBlockVolumeDimensions() const; + MCFOLD ::WorldGenerator::BlockVolumeDimensions $getBlockVolumeDimensions() const; MCAPI ::BlockPos $findSpawnPosition() const; - MCAPI void $decorateWorldGenLoadChunk( + MCFOLD void $decorateWorldGenLoadChunk( ::Biome const& biome, ::LevelChunk& lc, ::BlockVolumeTarget& target, @@ -181,7 +181,7 @@ class NetherGenerator : public ::WorldGenerator { ::ChunkPos const& pos ) const; - MCAPI void + MCFOLD void $decorateWorldGenPostProcess(::Biome const& biome, ::LevelChunk& lc, ::BlockSource& source, ::Random& random) const; // NOLINTEND diff --git a/src/mc/world/level/levelgen/v1/NoodleCavifierNoises.h b/src/mc/world/level/levelgen/v1/NoodleCavifierNoises.h index 92d86367ab..fb4df0fc48 100644 --- a/src/mc/world/level/levelgen/v1/NoodleCavifierNoises.h +++ b/src/mc/world/level/levelgen/v1/NoodleCavifierNoises.h @@ -45,6 +45,6 @@ class NoodleCavifierNoises { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/world/level/levelgen/v1/OreVeinifierNoises.h b/src/mc/world/level/levelgen/v1/OreVeinifierNoises.h index ccb0e78c05..90ef0610c5 100644 --- a/src/mc/world/level/levelgen/v1/OreVeinifierNoises.h +++ b/src/mc/world/level/levelgen/v1/OreVeinifierNoises.h @@ -52,9 +52,9 @@ class OreVeinifierNoises { public: // constructor thunks // NOLINTBEGIN - MCAPI void* $ctor(::OreVeinifierNoises const&); + MCFOLD void* $ctor(::OreVeinifierNoises const&); - MCAPI void* $ctor( + MCFOLD void* $ctor( ::NormalNoiseImpl<0, ::MultiOctaveNoiseImpl<0, ::ParityImprovedNoiseImpl<0>>> mVeininessNoiseSource, ::NormalNoiseImpl<0, ::MultiOctaveNoiseImpl<0, ::ParityImprovedNoiseImpl<0>>> mVeinNoiseSourceA, ::NormalNoiseImpl<0, ::MultiOctaveNoiseImpl<0, ::ParityImprovedNoiseImpl<0>>> mVeinNoiseSourceB, @@ -66,6 +66,6 @@ class OreVeinifierNoises { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/world/level/levelgen/v1/OverworldGenerator.h b/src/mc/world/level/levelgen/v1/OverworldGenerator.h index 23e4228628..f15c3c72f2 100644 --- a/src/mc/world/level/levelgen/v1/OverworldGenerator.h +++ b/src/mc/world/level/levelgen/v1/OverworldGenerator.h @@ -210,10 +210,10 @@ class OverworldGenerator : public ::WorldGenerator { MCAPI ::BiomeArea $getBiomeArea(::BoundingBox const& area, uint scale) const; - MCAPI ::std::unique_ptr<::Aquifer> + MCFOLD ::std::unique_ptr<::Aquifer> $tryMakeAquifer(::ChunkPos const&, ::SurfaceLevelCache const&, short, short, short) const; - MCAPI void $decorateWorldGenLoadChunk( + MCFOLD void $decorateWorldGenLoadChunk( ::Biome const& biome, ::LevelChunk& lc, ::BlockVolumeTarget& target, @@ -221,7 +221,7 @@ class OverworldGenerator : public ::WorldGenerator { ::ChunkPos const& pos ) const; - MCAPI ::ChunkLocalNoiseCache $createNoiseCache(::ChunkPos chunkPos) const; + MCFOLD ::ChunkLocalNoiseCache $createNoiseCache(::ChunkPos chunkPos) const; MCAPI ::WorldGenCache $createWorldGenCache(::ChunkPos chunkPos) const; // NOLINTEND diff --git a/src/mc/world/level/levelgen/v1/OverworldGenerator2d.h b/src/mc/world/level/levelgen/v1/OverworldGenerator2d.h index 6adc4bca4b..cfe90cc442 100644 --- a/src/mc/world/level/levelgen/v1/OverworldGenerator2d.h +++ b/src/mc/world/level/levelgen/v1/OverworldGenerator2d.h @@ -121,16 +121,16 @@ class OverworldGenerator2d : public ::OverworldGenerator { MCAPI ::BlockPos $findSpawnPosition() const; - MCAPI int $getLevelGenHeight() const; + MCFOLD int $getLevelGenHeight() const; MCAPI ::Util::MultidimensionalArray $generateDensityCellsForChunk(::ChunkPos const& chunkPos ) const; MCAPI ::PerlinSimplexNoise const& $getSurfaceNoise(); - MCAPI ::std::unique_ptr<::PerlinSimplexNoise> const& $getMaterialAdjNoise() const; + MCFOLD ::std::unique_ptr<::PerlinSimplexNoise> const& $getMaterialAdjNoise() const; - MCAPI void + MCFOLD void $decorateWorldGenPostProcess(::Biome const& biome, ::LevelChunk& lc, ::BlockSource& source, ::Random& random) const; MCAPI void $_prepareHeights( diff --git a/src/mc/world/level/levelgen/v1/OverworldGeneratorMultinoise.h b/src/mc/world/level/levelgen/v1/OverworldGeneratorMultinoise.h index 231fbdef3b..b42694826c 100644 --- a/src/mc/world/level/levelgen/v1/OverworldGeneratorMultinoise.h +++ b/src/mc/world/level/levelgen/v1/OverworldGeneratorMultinoise.h @@ -222,7 +222,7 @@ class OverworldGeneratorMultinoise : public ::OverworldGenerator { MCAPI ::std::optional $getPreliminarySurfaceLevel(::DividedPos2d<4> worldQuartPos) const; - MCAPI int $getLevelGenHeight() const; + MCFOLD int $getLevelGenHeight() const; MCAPI ::Util::MultidimensionalArray $generateDensityCellsForChunk(::ChunkPos const& chunkPos ) const; diff --git a/src/mc/world/level/levelgen/v1/TheEndGenerator.h b/src/mc/world/level/levelgen/v1/TheEndGenerator.h index 1f2aeb17c8..121cdb932b 100644 --- a/src/mc/world/level/levelgen/v1/TheEndGenerator.h +++ b/src/mc/world/level/levelgen/v1/TheEndGenerator.h @@ -79,7 +79,7 @@ class TheEndGenerator : public ::WorldGenerator { virtual ~TheEndGenerator() /*override*/ = default; // vIndex: 11 - virtual void loadChunk(::LevelChunk& levelChunk, bool forceImmediateReplacementDataLoad) /*override*/; + virtual void loadChunk(::LevelChunk& lc, bool forceImmediateReplacementDataLoad) /*override*/; // vIndex: 9 virtual bool postProcess(::ChunkViewSource& neighborhood) /*override*/; @@ -170,7 +170,7 @@ class TheEndGenerator : public ::WorldGenerator { public: // virtual function thunks // NOLINTBEGIN - MCAPI void $loadChunk(::LevelChunk& levelChunk, bool forceImmediateReplacementDataLoad); + MCAPI void $loadChunk(::LevelChunk& lc, bool forceImmediateReplacementDataLoad); MCAPI bool $postProcess(::ChunkViewSource& neighborhood); @@ -192,11 +192,11 @@ class TheEndGenerator : public ::WorldGenerator { MCAPI ::BiomeSource const& $getBiomeSource() const; - MCAPI ::BlockPos $findSpawnPosition() const; + MCFOLD ::BlockPos $findSpawnPosition() const; - MCAPI ::WorldGenerator::BlockVolumeDimensions $getBlockVolumeDimensions() const; + MCFOLD ::WorldGenerator::BlockVolumeDimensions $getBlockVolumeDimensions() const; - MCAPI void $decorateWorldGenLoadChunk( + MCFOLD void $decorateWorldGenLoadChunk( ::Biome const& biome, ::LevelChunk& lc, ::BlockVolumeTarget& target, @@ -204,7 +204,7 @@ class TheEndGenerator : public ::WorldGenerator { ::ChunkPos const& pos ) const; - MCAPI void + MCFOLD void $decorateWorldGenPostProcess(::Biome const& biome, ::LevelChunk& lc, ::BlockSource& source, ::Random& random) const; // NOLINTEND diff --git a/src/mc/world/level/levelgen/v1/VoidGenerator.h b/src/mc/world/level/levelgen/v1/VoidGenerator.h index a6a895f742..2d9367434f 100644 --- a/src/mc/world/level/levelgen/v1/VoidGenerator.h +++ b/src/mc/world/level/levelgen/v1/VoidGenerator.h @@ -117,17 +117,17 @@ class VoidGenerator : public ::WorldGenerator { public: // virtual function thunks // NOLINTBEGIN - MCAPI ::BiomeSource const& $getBiomeSource() const; + MCFOLD ::BiomeSource const& $getBiomeSource() const; - MCAPI ::BlockPos $findSpawnPosition() const; + MCFOLD ::BlockPos $findSpawnPosition() const; MCAPI void $loadChunk(::LevelChunk& lc, bool forceImmediateReplacementDataLoad); - MCAPI bool $postProcess(::ChunkViewSource& neighborhood); + MCFOLD bool $postProcess(::ChunkViewSource& neighborhood); - MCAPI void $prepareHeights(::BlockVolume& box, ::ChunkPos const& chunkPos, bool factorInBeardsAndShavers); + MCFOLD void $prepareHeights(::BlockVolume& box, ::ChunkPos const& chunkPos, bool factorInBeardsAndShavers); - MCAPI void $prepareAndComputeHeights( + MCFOLD void $prepareAndComputeHeights( ::BlockVolume& box, ::ChunkPos const& chunkPos, ::std::vector& ZXheights, @@ -139,14 +139,14 @@ class VoidGenerator : public ::WorldGenerator { MCAPI ::WorldGenerator::BlockVolumeDimensions $getBlockVolumeDimensions() const; - MCAPI ::ChunkLocalNoiseCache $createNoiseCache(::ChunkPos chunkPos) const; + MCFOLD ::ChunkLocalNoiseCache $createNoiseCache(::ChunkPos chunkPos) const; MCAPI ::WorldGenCache $createWorldGenCache(::ChunkPos chunkPos) const; - MCAPI void + MCFOLD void $decorateWorldGenPostProcess(::Biome const& biome, ::LevelChunk& lc, ::BlockSource& source, ::Random& random) const; - MCAPI void $decorateWorldGenLoadChunk( + MCFOLD void $decorateWorldGenLoadChunk( ::Biome const& biome, ::LevelChunk& lc, ::BlockVolumeTarget& target, diff --git a/src/mc/world/level/levelgen/v2/Beardifier.h b/src/mc/world/level/levelgen/v2/Beardifier.h index f73d20d517..e4094938c6 100644 --- a/src/mc/world/level/levelgen/v2/Beardifier.h +++ b/src/mc/world/level/levelgen/v2/Beardifier.h @@ -31,7 +31,7 @@ class Beardifier { MCAPI double compute(::BlockPos pos) const; - MCAPI bool empty() const; + MCFOLD bool empty() const; MCAPI ::br::worldgen::Beardifier& operator=(::br::worldgen::Beardifier&&); @@ -48,7 +48,7 @@ class Beardifier { public: // constructor thunks // NOLINTBEGIN - MCAPI void* $ctor(); + MCFOLD void* $ctor(); // NOLINTEND public: diff --git a/src/mc/world/level/levelgen/v2/ChunkAccessor.h b/src/mc/world/level/levelgen/v2/ChunkAccessor.h index 6ecf2b328e..885891ba02 100644 --- a/src/mc/world/level/levelgen/v2/ChunkAccessor.h +++ b/src/mc/world/level/levelgen/v2/ChunkAccessor.h @@ -35,7 +35,7 @@ class ChunkAccessor { // NOLINTBEGIN MCAPI ChunkAccessor(::Dimension& dimension, ::BiomeSource const& biomeSource); - MCAPI ::Dimension& dimension(); + MCFOLD ::Dimension& dimension(); MCAPI int getFirstFreeHeight(int x, int z, ::br::worldgen::HeightmapProjection::Type heightmapProjection) const; diff --git a/src/mc/world/level/levelgen/v2/DimensionPadding.h b/src/mc/world/level/levelgen/v2/DimensionPadding.h index 50e3a15a9d..3949e20d71 100644 --- a/src/mc/world/level/levelgen/v2/DimensionPadding.h +++ b/src/mc/world/level/levelgen/v2/DimensionPadding.h @@ -27,7 +27,7 @@ struct DimensionPadding { public: // constructor thunks // NOLINTBEGIN - MCAPI void* $ctor(uint amount); + MCFOLD void* $ctor(uint amount); // NOLINTEND }; diff --git a/src/mc/world/level/levelgen/v2/JigsawSectionData.h b/src/mc/world/level/levelgen/v2/JigsawSectionData.h index 0e35bfc1f4..7e969b87e0 100644 --- a/src/mc/world/level/levelgen/v2/JigsawSectionData.h +++ b/src/mc/world/level/levelgen/v2/JigsawSectionData.h @@ -47,7 +47,7 @@ class JigsawSectionData { public: // constructor thunks // NOLINTBEGIN - MCAPI void* $ctor(::br::worldgen::JigsawSectionData&&); + MCFOLD void* $ctor(::br::worldgen::JigsawSectionData&&); MCAPI void* $ctor(::br::worldgen::JigsawSectionData const&); // NOLINTEND diff --git a/src/mc/world/level/levelgen/v2/JigsawSpace.h b/src/mc/world/level/levelgen/v2/JigsawSpace.h index 53df84944c..2a1db903b1 100644 --- a/src/mc/world/level/levelgen/v2/JigsawSpace.h +++ b/src/mc/world/level/levelgen/v2/JigsawSpace.h @@ -27,7 +27,7 @@ struct JigsawSpace { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/world/level/levelgen/v2/SpawnerData.h b/src/mc/world/level/levelgen/v2/SpawnerData.h index 713ef2d4da..fccd93c85f 100644 --- a/src/mc/world/level/levelgen/v2/SpawnerData.h +++ b/src/mc/world/level/levelgen/v2/SpawnerData.h @@ -95,7 +95,7 @@ struct SpawnerData : public ::WeightedRandom::WeighedRandomItem { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/world/level/levelgen/v2/StructureCache.h b/src/mc/world/level/levelgen/v2/StructureCache.h index 12451b4f59..4ffb77a080 100644 --- a/src/mc/world/level/levelgen/v2/StructureCache.h +++ b/src/mc/world/level/levelgen/v2/StructureCache.h @@ -38,7 +38,7 @@ class StructureCache { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/world/level/levelgen/v2/StructureHeightProvider.h b/src/mc/world/level/levelgen/v2/StructureHeightProvider.h index fe3d47d7ac..8806e9dd61 100644 --- a/src/mc/world/level/levelgen/v2/StructureHeightProvider.h +++ b/src/mc/world/level/levelgen/v2/StructureHeightProvider.h @@ -48,7 +48,7 @@ class StructureHeightProvider : public ::br::worldgen::HeightProvider { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND public: diff --git a/src/mc/world/level/levelgen/v2/StructureInstance.h b/src/mc/world/level/levelgen/v2/StructureInstance.h index d8f939c633..12f836ec18 100644 --- a/src/mc/world/level/levelgen/v2/StructureInstance.h +++ b/src/mc/world/level/levelgen/v2/StructureInstance.h @@ -48,15 +48,15 @@ class StructureInstance { ::std::vector<::std::unique_ptr<::br::worldgen::StructureSection>>&& sections ); - MCAPI ::std::_Vector_const_iterator< + MCFOLD ::std::_Vector_const_iterator< ::std::_Vector_val<::std::_Simple_types<::std::unique_ptr<::br::worldgen::StructureSection>>>> begin() const; - MCAPI ::BoundingBox const& boundingBox() const; + MCFOLD ::BoundingBox const& boundingBox() const; MCAPI bool contains(::BlockPos pos) const; - MCAPI ::std::_Vector_const_iterator< + MCFOLD ::std::_Vector_const_iterator< ::std::_Vector_val<::std::_Simple_types<::std::unique_ptr<::br::worldgen::StructureSection>>>> end() const; @@ -72,7 +72,7 @@ class StructureInstance { MCAPI bool postProcess(::BlockSource& region, ::IRandom& random, ::BoundingBox const& chunkBB) const; - MCAPI ::br::worldgen::Structure const& structure() const; + MCFOLD ::br::worldgen::Structure const& structure() const; MCAPI ::br::worldgen::TerrainAdjustment::Type terrainAdaptation() const; diff --git a/src/mc/world/level/levelgen/v2/StructureSection.h b/src/mc/world/level/levelgen/v2/StructureSection.h index 2db4f4a09e..ccc5c36ae3 100644 --- a/src/mc/world/level/levelgen/v2/StructureSection.h +++ b/src/mc/world/level/levelgen/v2/StructureSection.h @@ -62,7 +62,7 @@ class StructureSection { // NOLINTBEGIN MCAPI explicit StructureSection(::BoundingBox bb); - MCAPI ::BoundingBox const& boundingBox() const; + MCFOLD ::BoundingBox const& boundingBox() const; MCAPI bool isNearChunk(::ChunkPos pos, int distance) const; // NOLINTEND diff --git a/src/mc/world/level/levelgen/v2/StructureSet.h b/src/mc/world/level/levelgen/v2/StructureSet.h index 265d1fe3ec..b6fea1e4e5 100644 --- a/src/mc/world/level/levelgen/v2/StructureSet.h +++ b/src/mc/world/level/levelgen/v2/StructureSet.h @@ -42,7 +42,7 @@ struct StructureSet { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/world/level/levelgen/v2/WorldGenContext.h b/src/mc/world/level/levelgen/v2/WorldGenContext.h index 012a0ad8e1..5a1f050aee 100644 --- a/src/mc/world/level/levelgen/v2/WorldGenContext.h +++ b/src/mc/world/level/levelgen/v2/WorldGenContext.h @@ -27,9 +27,9 @@ class WorldGenContext { public: // member functions // NOLINTBEGIN - MCAPI int maxHeight() const; + MCFOLD int maxHeight() const; - MCAPI int minHeight() const; + MCFOLD int minHeight() const; // NOLINTEND public: diff --git a/src/mc/world/level/levelgen/v2/WorldGenRandom.h b/src/mc/world/level/levelgen/v2/WorldGenRandom.h index 6cbe62f5a2..340f4e7751 100644 --- a/src/mc/world/level/levelgen/v2/WorldGenRandom.h +++ b/src/mc/world/level/levelgen/v2/WorldGenRandom.h @@ -130,7 +130,7 @@ struct WorldGenRandom : public ::IRandom, public ::IRandomSeeded { MCAPI ::std::unique_ptr<::IRandom> $fork(); - MCAPI ::std::unique_ptr<::IPositionalRandomFactory> $forkPositional(); + MCFOLD ::std::unique_ptr<::IPositionalRandomFactory> $forkPositional(); MCAPI void $setSeed(int64 seed); diff --git a/src/mc/world/level/levelgen/v2/br.h b/src/mc/world/level/levelgen/v2/br.h index 9afe5d18fe..508d6585f3 100644 --- a/src/mc/world/level/levelgen/v2/br.h +++ b/src/mc/world/level/levelgen/v2/br.h @@ -48,7 +48,7 @@ MCAPI void insertStructure( ::br::worldgen::StructureInstance const& instance ); -MCAPI bool serialize(::IDataOutput& stream, ::br::StructureKey const& val); +MCFOLD bool serialize(::IDataOutput& stream, ::br::StructureKey const& val); MCAPI bool serialize(::IDataOutput& stream, ::br::StructureType const& val); diff --git a/src/mc/world/level/levelgen/v2/processors/BlockIgnore.h b/src/mc/world/level/levelgen/v2/processors/BlockIgnore.h index 60b63bb470..cfc4c14c4d 100644 --- a/src/mc/world/level/levelgen/v2/processors/BlockIgnore.h +++ b/src/mc/world/level/levelgen/v2/processors/BlockIgnore.h @@ -68,7 +68,7 @@ class BlockIgnore : public ::br::worldgen::StructureProcessor { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND public: @@ -78,7 +78,7 @@ class BlockIgnore : public ::br::worldgen::StructureProcessor { $process(::IBlockSource&, ::BlockPos, ::BlockPos, ::br::worldgen::StructureBlockInfo const&, ::br::worldgen::StructureBlockInfo&& processedBlockInfo, ::br::worldgen::StructurePlaceSettings const&) const; - MCAPI ::br::worldgen::StructureProcessorType $type() const; + MCFOLD ::br::worldgen::StructureProcessorType $type() const; MCAPI void $appendMetadataKey(::Util::XXHash& hash) const; // NOLINTEND diff --git a/src/mc/world/level/levelgen/v2/processors/Capped.h b/src/mc/world/level/levelgen/v2/processors/Capped.h index 2969618836..3b1a29b29a 100644 --- a/src/mc/world/level/levelgen/v2/processors/Capped.h +++ b/src/mc/world/level/levelgen/v2/processors/Capped.h @@ -80,7 +80,7 @@ class Capped : public ::br::worldgen::StructureProcessor { ::br::worldgen::StructurePlaceSettings const& settings ) const; - MCAPI ::br::worldgen::StructureProcessorType $type() const; + MCFOLD ::br::worldgen::StructureProcessorType $type() const; MCAPI void $appendMetadataKey(::Util::XXHash& hash) const; // NOLINTEND diff --git a/src/mc/world/level/levelgen/v2/processors/Gravity.h b/src/mc/world/level/levelgen/v2/processors/Gravity.h index 1444a93579..58b4bd796d 100644 --- a/src/mc/world/level/levelgen/v2/processors/Gravity.h +++ b/src/mc/world/level/levelgen/v2/processors/Gravity.h @@ -68,7 +68,7 @@ class Gravity : public ::br::worldgen::StructureProcessor { $process(::IBlockSource& region, ::BlockPos, ::BlockPos, ::br::worldgen::StructureBlockInfo const& originalBlockInfo, ::br::worldgen::StructureBlockInfo&& processedBlockInfo, ::br::worldgen::StructurePlaceSettings const&) const; - MCAPI ::br::worldgen::StructureProcessorType $type() const; + MCFOLD ::br::worldgen::StructureProcessorType $type() const; MCAPI void $appendMetadataKey(::Util::XXHash& hash) const; // NOLINTEND diff --git a/src/mc/world/level/levelgen/v2/processors/JigsawReplacement.h b/src/mc/world/level/levelgen/v2/processors/JigsawReplacement.h index e7dfdd3e41..3877b24933 100644 --- a/src/mc/world/level/levelgen/v2/processors/JigsawReplacement.h +++ b/src/mc/world/level/levelgen/v2/processors/JigsawReplacement.h @@ -55,7 +55,7 @@ class JigsawReplacement : public ::br::worldgen::StructureProcessor { $process(::IBlockSource&, ::BlockPos targetPosition, ::BlockPos, ::br::worldgen::StructureBlockInfo const&, ::br::worldgen::StructureBlockInfo&& processedBlockInfo, ::br::worldgen::StructurePlaceSettings const&) const; - MCAPI ::br::worldgen::StructureProcessorType $type() const; + MCFOLD ::br::worldgen::StructureProcessorType $type() const; MCAPI void $appendMetadataKey(::Util::XXHash& hash) const; // NOLINTEND diff --git a/src/mc/world/level/levelgen/v2/processors/ProtectedBlock.h b/src/mc/world/level/levelgen/v2/processors/ProtectedBlock.h index c638c6a5c1..54c78314a8 100644 --- a/src/mc/world/level/levelgen/v2/processors/ProtectedBlock.h +++ b/src/mc/world/level/levelgen/v2/processors/ProtectedBlock.h @@ -58,7 +58,7 @@ class ProtectedBlock : public ::br::worldgen::StructureProcessor { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND public: @@ -68,7 +68,7 @@ class ProtectedBlock : public ::br::worldgen::StructureProcessor { $process(::IBlockSource& region, ::BlockPos, ::BlockPos, ::br::worldgen::StructureBlockInfo const&, ::br::worldgen::StructureBlockInfo&& processedBlockInfo, ::br::worldgen::StructurePlaceSettings const&) const; - MCAPI ::br::worldgen::StructureProcessorType $type() const; + MCFOLD ::br::worldgen::StructureProcessorType $type() const; MCAPI void $appendMetadataKey(::Util::XXHash& hash) const; // NOLINTEND diff --git a/src/mc/world/level/levelgen/v2/processors/Rule.h b/src/mc/world/level/levelgen/v2/processors/Rule.h index 5319c6a8e5..7fe35cdb08 100644 --- a/src/mc/world/level/levelgen/v2/processors/Rule.h +++ b/src/mc/world/level/levelgen/v2/processors/Rule.h @@ -61,7 +61,7 @@ class Rule : public ::br::worldgen::StructureProcessor { $process(::IBlockSource& region, ::BlockPos, ::BlockPos structurePos, ::br::worldgen::StructureBlockInfo const& originalBlockInfo, ::br::worldgen::StructureBlockInfo&& processedBlockInfo, ::br::worldgen::StructurePlaceSettings const&) const; - MCAPI ::br::worldgen::StructureProcessorType $type() const; + MCFOLD ::br::worldgen::StructureProcessorType $type() const; MCAPI void $appendMetadataKey(::Util::XXHash& hash) const; // NOLINTEND diff --git a/src/mc/world/level/levelgen/v2/processors/StructureProcessor.h b/src/mc/world/level/levelgen/v2/processors/StructureProcessor.h index 96607eee0a..d6204282e6 100644 --- a/src/mc/world/level/levelgen/v2/processors/StructureProcessor.h +++ b/src/mc/world/level/levelgen/v2/processors/StructureProcessor.h @@ -81,7 +81,7 @@ struct StructureProcessor { $finalize(::IBlockSource&, ::BlockPos, ::BlockPos, ::std::vector<::br::worldgen::StructureBlockInfo> const&, ::std::vector<::br::worldgen::StructureBlockInfo>&& processedBlocks, ::br::worldgen::StructurePlaceSettings const&) const; - MCAPI ::br::worldgen::StructureProcessorType $type() const; + MCFOLD ::br::worldgen::StructureProcessorType $type() const; MCAPI void $appendMetadataKey(::Util::XXHash&) const; // NOLINTEND diff --git a/src/mc/world/level/levelgen/v2/processors/block_entity/AppendLoot.h b/src/mc/world/level/levelgen/v2/processors/block_entity/AppendLoot.h index 20b06072a1..7334cf5db3 100644 --- a/src/mc/world/level/levelgen/v2/processors/block_entity/AppendLoot.h +++ b/src/mc/world/level/levelgen/v2/processors/block_entity/AppendLoot.h @@ -50,7 +50,7 @@ struct AppendLoot : public ::br::worldgen::processors::BlockEntity::ModifierType public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND public: diff --git a/src/mc/world/level/levelgen/v2/processors/block_entity/Modifier.h b/src/mc/world/level/levelgen/v2/processors/block_entity/Modifier.h index 263bbc9fa5..f263dc9e97 100644 --- a/src/mc/world/level/levelgen/v2/processors/block_entity/Modifier.h +++ b/src/mc/world/level/levelgen/v2/processors/block_entity/Modifier.h @@ -65,7 +65,7 @@ struct Modifier : public ::br::worldgen::processors::BlockEntity::ModifierType { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND public: diff --git a/src/mc/world/level/levelgen/v2/processors/block_rules/AlwaysTrue.h b/src/mc/world/level/levelgen/v2/processors/block_rules/AlwaysTrue.h index abe66009dc..f077660d11 100644 --- a/src/mc/world/level/levelgen/v2/processors/block_rules/AlwaysTrue.h +++ b/src/mc/world/level/levelgen/v2/processors/block_rules/AlwaysTrue.h @@ -37,9 +37,9 @@ struct AlwaysTrue : public ::br::worldgen::processors::BlockRules::TestType { public: // virtual function thunks // NOLINTBEGIN - MCAPI bool $test(::Block const&, ::IRandom&) const; + MCFOLD bool $test(::Block const&, ::IRandom&) const; - MCAPI void $appendMetadataKey(::Util::XXHash& hash) const; + MCFOLD void $appendMetadataKey(::Util::XXHash& hash) const; // NOLINTEND public: diff --git a/src/mc/world/level/levelgen/v2/processors/block_rules/TagMatch.h b/src/mc/world/level/levelgen/v2/processors/block_rules/TagMatch.h index 6aabee6baf..165fd8c488 100644 --- a/src/mc/world/level/levelgen/v2/processors/block_rules/TagMatch.h +++ b/src/mc/world/level/levelgen/v2/processors/block_rules/TagMatch.h @@ -49,7 +49,7 @@ struct TagMatch : public ::br::worldgen::processors::BlockRules::TestType { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND public: diff --git a/src/mc/world/level/levelgen/v2/processors/pos_rules/AlwaysTrue.h b/src/mc/world/level/levelgen/v2/processors/pos_rules/AlwaysTrue.h index 0b44168d5a..f30b99c24a 100644 --- a/src/mc/world/level/levelgen/v2/processors/pos_rules/AlwaysTrue.h +++ b/src/mc/world/level/levelgen/v2/processors/pos_rules/AlwaysTrue.h @@ -37,9 +37,9 @@ struct AlwaysTrue : public ::br::worldgen::processors::PosRules::TestType { public: // virtual function thunks // NOLINTBEGIN - MCAPI bool $test(::BlockPos, ::BlockPos, ::BlockPos, ::IRandom&) const; + MCFOLD bool $test(::BlockPos, ::BlockPos, ::BlockPos, ::IRandom&) const; - MCAPI void $appendMetadataKey(::Util::XXHash& hash) const; + MCFOLD void $appendMetadataKey(::Util::XXHash& hash) const; // NOLINTEND public: diff --git a/src/mc/world/level/levelgen/v2/processors/processors.h b/src/mc/world/level/levelgen/v2/processors/processors.h index 41d711d96a..e94899dafd 100644 --- a/src/mc/world/level/levelgen/v2/processors/processors.h +++ b/src/mc/world/level/levelgen/v2/processors/processors.h @@ -17,7 +17,7 @@ namespace br::worldgen::processors::PosRules { struct Test; } namespace br::worldgen::processors { // functions // NOLINTBEGIN -MCAPI ::br::worldgen::processors::AlwaysTrueType AlwaysTrue(); +MCFOLD ::br::worldgen::processors::AlwaysTrueType AlwaysTrue(); MCAPI ::br::worldgen::processors::BlockEntity::Modifier AppendLoot(::std::string_view lootTable); diff --git a/src/mc/world/level/levelgen/v2/providers/ConstantInt.h b/src/mc/world/level/levelgen/v2/providers/ConstantInt.h index 22ba504136..ec4672e7c2 100644 --- a/src/mc/world/level/levelgen/v2/providers/ConstantInt.h +++ b/src/mc/world/level/levelgen/v2/providers/ConstantInt.h @@ -55,11 +55,11 @@ struct ConstantInt : public ::IntProviderType { public: // virtual function thunks // NOLINTBEGIN - MCAPI int $sample(::IRandom&) const; + MCFOLD int $sample(::IRandom&) const; - MCAPI int $maxValue() const; + MCFOLD int $maxValue() const; - MCAPI int $minValue() const; + MCFOLD int $minValue() const; // NOLINTEND public: diff --git a/src/mc/world/level/levelgen/v2/providers/UniformInt.h b/src/mc/world/level/levelgen/v2/providers/UniformInt.h index 725c3e98d5..4cc7d1e784 100644 --- a/src/mc/world/level/levelgen/v2/providers/UniformInt.h +++ b/src/mc/world/level/levelgen/v2/providers/UniformInt.h @@ -58,9 +58,9 @@ struct UniformInt : public ::IntProviderType { // NOLINTBEGIN MCAPI int $sample(::IRandom& random) const; - MCAPI int $maxValue() const; + MCFOLD int $maxValue() const; - MCAPI int $minValue() const; + MCFOLD int $minValue() const; // NOLINTEND public: diff --git a/src/mc/world/level/levelgen/v2/worldgen.h b/src/mc/world/level/levelgen/v2/worldgen.h index b18dbd2ec2..78302be2d7 100644 --- a/src/mc/world/level/levelgen/v2/worldgen.h +++ b/src/mc/world/level/levelgen/v2/worldgen.h @@ -43,10 +43,10 @@ MCAPI void expansionHackEval(int expandTo, ::BoundingBox& box); MCAPI ::std::vector<::gsl::not_null<::std::shared_ptr<::br::worldgen::StructureProcessor const>>> const& getProjectionProcessors(::Projection projection); -MCAPI int +MCFOLD int noopCalc(::JigsawStructureUtils::MetadataCache&, ::BlockPos const&, ::Rotation, ::BoundingBox const&, ::std::vector<::std::pair> const&, ::JigsawStructureRegistry const&); -MCAPI void noopEval(int, ::BoundingBox&); +MCFOLD void noopEval(int, ::BoundingBox&); MCAPI bool placeInWorld( ::IStructureTemplate const& tmpl, diff --git a/src/mc/world/level/material/Material.h b/src/mc/world/level/material/Material.h index b98bab5089..abeb3508cc 100644 --- a/src/mc/world/level/material/Material.h +++ b/src/mc/world/level/material/Material.h @@ -35,17 +35,17 @@ class Material { public: // member functions // NOLINTBEGIN - MCAPI bool getBlocksMotion() const; + MCFOLD bool getBlocksMotion() const; - MCAPI bool getBlocksPrecipitation() const; + MCFOLD bool getBlocksPrecipitation() const; - MCAPI bool isLiquid() const; + MCFOLD bool isLiquid() const; - MCAPI bool isSolid() const; + MCFOLD bool isSolid() const; MCAPI bool isSolidBlocking() const; - MCAPI bool isSuperHot() const; + MCFOLD bool isSuperHot() const; MCAPI bool isTopSolid(bool includeWater, bool includeLeaves) const; diff --git a/src/mc/world/level/newbiome/OceanMixerOperationNode.h b/src/mc/world/level/newbiome/OceanMixerOperationNode.h index e9d9e80800..42247c6d50 100644 --- a/src/mc/world/level/newbiome/OceanMixerOperationNode.h +++ b/src/mc/world/level/newbiome/OceanMixerOperationNode.h @@ -95,7 +95,7 @@ class OceanMixerOperationNode ::OperationGraphResult<::BiomeTemperatureCategory> oceanData ) const; - MCAPI ::std::tuple<::Pos2d, ::Pos2d> $_getAreaRead(::Pos2d const& origin, ::Pos2d const& size) const; + MCFOLD ::std::tuple<::Pos2d, ::Pos2d> $_getAreaRead(::Pos2d const& origin, ::Pos2d const& size) const; // NOLINTEND public: diff --git a/src/mc/world/level/newbiome/RegionHillsOperationNode.h b/src/mc/world/level/newbiome/RegionHillsOperationNode.h index c1cd314b12..bdb6fa6a92 100644 --- a/src/mc/world/level/newbiome/RegionHillsOperationNode.h +++ b/src/mc/world/level/newbiome/RegionHillsOperationNode.h @@ -84,7 +84,7 @@ class RegionHillsOperationNode : public ::MixerOperationNode<::Biome const*, ::P int pw ) const; - MCAPI ::std::tuple<::Pos2d, ::Pos2d> $_getAreaRead(::Pos2d const& origin, ::Pos2d const& size) const; + MCFOLD ::std::tuple<::Pos2d, ::Pos2d> $_getAreaRead(::Pos2d const& origin, ::Pos2d const& size) const; // NOLINTEND public: diff --git a/src/mc/world/level/newbiome/operation_node_filters/AddMushroomIsland.h b/src/mc/world/level/newbiome/operation_node_filters/AddMushroomIsland.h index 8f1d08a33d..94fe4ad25b 100644 --- a/src/mc/world/level/newbiome/operation_node_filters/AddMushroomIsland.h +++ b/src/mc/world/level/newbiome/operation_node_filters/AddMushroomIsland.h @@ -36,7 +36,7 @@ struct AddMushroomIsland : public ::OperationNodeFilters::FilterBase<3, 3, ::Bio public: // constructor thunks // NOLINTBEGIN - MCAPI void* $ctor(::Biome const& mushroomBiome, ::BiomeRegistry const& biomeRegistry); + MCFOLD void* $ctor(::Biome const& mushroomBiome, ::BiomeRegistry const& biomeRegistry); // NOLINTEND }; diff --git a/src/mc/world/level/newbiome/operation_node_filters/PromoteCenter.h b/src/mc/world/level/newbiome/operation_node_filters/PromoteCenter.h index 735f7cbc88..a0b118b96f 100644 --- a/src/mc/world/level/newbiome/operation_node_filters/PromoteCenter.h +++ b/src/mc/world/level/newbiome/operation_node_filters/PromoteCenter.h @@ -38,7 +38,7 @@ class PromoteCenter : public ::OperationNodeFilters::FilterBase<3, 3, ::Biome co public: // constructor thunks // NOLINTBEGIN - MCAPI void* $ctor(::Biome const& from, ::Biome const& to); + MCFOLD void* $ctor(::Biome const& from, ::Biome const& to); // NOLINTEND }; diff --git a/src/mc/world/level/newbiome/operation_node_filters/RareBiomeSpot.h b/src/mc/world/level/newbiome/operation_node_filters/RareBiomeSpot.h index 2fa41d52aa..e5dccc3f36 100644 --- a/src/mc/world/level/newbiome/operation_node_filters/RareBiomeSpot.h +++ b/src/mc/world/level/newbiome/operation_node_filters/RareBiomeSpot.h @@ -36,7 +36,7 @@ class RareBiomeSpot : public ::OperationNodeFilters::FilterBase<1, 1, ::Biome co public: // constructor thunks // NOLINTBEGIN - MCAPI void* $ctor(uint oneInXChance, ::Biome const& fromBiome, ::Biome const& toBiome); + MCFOLD void* $ctor(uint oneInXChance, ::Biome const& fromBiome, ::Biome const& toBiome); // NOLINTEND }; diff --git a/src/mc/world/level/pathfinder/BinaryHeap.h b/src/mc/world/level/pathfinder/BinaryHeap.h index d073637025..d02c8c1b01 100644 --- a/src/mc/world/level/pathfinder/BinaryHeap.h +++ b/src/mc/world/level/pathfinder/BinaryHeap.h @@ -31,7 +31,7 @@ class BinaryHeap { MCAPI ::PathfinderNode* insert(::PathfinderNode* node); - MCAPI bool isEmpty(); + MCFOLD bool isEmpty(); MCAPI ::PathfinderNode* pop(); @@ -47,6 +47,6 @@ class BinaryHeap { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/world/level/pathfinder/Path.h b/src/mc/world/level/pathfinder/Path.h index 8f73242f46..c0fa62944e 100644 --- a/src/mc/world/level/pathfinder/Path.h +++ b/src/mc/world/level/pathfinder/Path.h @@ -53,11 +53,11 @@ class Path { MCAPI bool endsInXZ(::Vec3 const& pos); - MCAPI ::PathCompletionType getCompletionType() const; + MCFOLD ::PathCompletionType getCompletionType() const; MCAPI ::Vec3 getEndPos() const; - MCAPI uint64 getIndex() const; + MCFOLD uint64 getIndex() const; MCAPI ::BlockPos const& getLastPos() const; @@ -67,7 +67,7 @@ class Path { MCAPI ::Vec3 getPos(::Actor const* actor, uint64 index) const; - MCAPI uint64 getSize() const; + MCFOLD uint64 getSize() const; MCAPI bool isDone() const; @@ -79,7 +79,7 @@ class Path { MCAPI bool sameAs(::Path* path) const; - MCAPI void setIndex(uint64 index); + MCFOLD void setIndex(uint64 index); MCAPI void setSize(uint64 length); @@ -95,6 +95,6 @@ class Path { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/world/level/pathfinder/PathBlockSource.h b/src/mc/world/level/pathfinder/PathBlockSource.h index 657a6c9db9..b951975f98 100644 --- a/src/mc/world/level/pathfinder/PathBlockSource.h +++ b/src/mc/world/level/pathfinder/PathBlockSource.h @@ -56,9 +56,9 @@ class PathBlockSource : public ::IPathBlockSource { public: // virtual function thunks // NOLINTBEGIN - MCAPI bool $isInWater() const; + MCFOLD bool $isInWater() const; - MCAPI bool $isInLava() const; + MCFOLD bool $isInLava() const; MCAPI bool $isWaterBlock(::BlockPos const& blockPos) const; diff --git a/src/mc/world/level/pathfinder/PathfinderNode.h b/src/mc/world/level/pathfinder/PathfinderNode.h index d155370f5f..9f377e4845 100644 --- a/src/mc/world/level/pathfinder/PathfinderNode.h +++ b/src/mc/world/level/pathfinder/PathfinderNode.h @@ -45,7 +45,7 @@ class PathfinderNode { MCAPI bool equals(::PathfinderNode* o); - MCAPI ::NodeType getType() const; + MCFOLD ::NodeType getType() const; MCAPI bool inOpenSet(); // NOLINTEND diff --git a/src/mc/world/level/position_trackingdb/AsyncOperationBase.h b/src/mc/world/level/position_trackingdb/AsyncOperationBase.h index 33b038ba4b..701fcdf6b4 100644 --- a/src/mc/world/level/position_trackingdb/AsyncOperationBase.h +++ b/src/mc/world/level/position_trackingdb/AsyncOperationBase.h @@ -81,7 +81,7 @@ class AsyncOperationBase : public ::PositionTrackingDB::OperationBase { ::PositionTrackingDB::TrackingRecord& record ); - MCAPI bool $isAsync() const; + MCFOLD bool $isAsync() const; MCAPI bool $isComplete() const; diff --git a/src/mc/world/level/position_trackingdb/DestroyOperation.h b/src/mc/world/level/position_trackingdb/DestroyOperation.h index 48cd2d9378..82d74a1c98 100644 --- a/src/mc/world/level/position_trackingdb/DestroyOperation.h +++ b/src/mc/world/level/position_trackingdb/DestroyOperation.h @@ -63,7 +63,7 @@ class DestroyOperation : public ::PositionTrackingDB::AsyncOperationBase { ::PositionTrackingDB::TrackingRecord& record ); - MCAPI bool + MCFOLD bool $_tick(::std::weak_ptr<::PositionTrackingDB::PositionTrackingDBServer> databasePtr, ::PositionTrackingDB::TrackingRecord&); // NOLINTEND diff --git a/src/mc/world/level/position_trackingdb/LoadOperation.h b/src/mc/world/level/position_trackingdb/LoadOperation.h index 508702ce12..7a0232c6de 100644 --- a/src/mc/world/level/position_trackingdb/LoadOperation.h +++ b/src/mc/world/level/position_trackingdb/LoadOperation.h @@ -63,7 +63,7 @@ class LoadOperation : public ::PositionTrackingDB::AsyncOperationBase { ::PositionTrackingDB::TrackingRecord& record ); - MCAPI bool + MCFOLD bool $_tick(::std::weak_ptr<::PositionTrackingDB::PositionTrackingDBServer> databasePtr, ::PositionTrackingDB::TrackingRecord&); // NOLINTEND diff --git a/src/mc/world/level/position_trackingdb/TrackingRecord.h b/src/mc/world/level/position_trackingdb/TrackingRecord.h index 520bfff941..852e4b2287 100644 --- a/src/mc/world/level/position_trackingdb/TrackingRecord.h +++ b/src/mc/world/level/position_trackingdb/TrackingRecord.h @@ -52,7 +52,7 @@ class TrackingRecord { MCAPI ::EntityContext& getEntity(); - MCAPI ::PositionTrackingId const& getId() const; + MCFOLD ::PositionTrackingId const& getId() const; MCAPI ::PositionTrackingDB::TrackingRecord::RecordStatus const getStatus() const; diff --git a/src/mc/world/level/saveddata/maps/MapDecoration.h b/src/mc/world/level/saveddata/maps/MapDecoration.h index 386333218a..63f2c18ae4 100644 --- a/src/mc/world/level/saveddata/maps/MapDecoration.h +++ b/src/mc/world/level/saveddata/maps/MapDecoration.h @@ -67,17 +67,17 @@ class MapDecoration { ::mce::Color const& color ); - MCAPI ::mce::Color const& getColor() const; + MCFOLD ::mce::Color const& getColor() const; - MCAPI ::MapDecoration::Type getImg() const; + MCFOLD ::MapDecoration::Type getImg() const; - MCAPI ::std::string const& getLabel() const; + MCFOLD ::std::string const& getLabel() const; - MCAPI schar getRot() const; + MCFOLD schar getRot() const; - MCAPI schar getX() const; + MCFOLD schar getX() const; - MCAPI schar getY() const; + MCFOLD schar getY() const; MCAPI ~MapDecoration(); // NOLINTEND @@ -98,6 +98,6 @@ class MapDecoration { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/world/level/saveddata/maps/MapItemSavedData.h b/src/mc/world/level/saveddata/maps/MapItemSavedData.h index 0955416255..fc8c776353 100644 --- a/src/mc/world/level/saveddata/maps/MapItemSavedData.h +++ b/src/mc/world/level/saveddata/maps/MapItemSavedData.h @@ -181,7 +181,7 @@ class MapItemSavedData { MCAPI ::std::shared_ptr<::MapItemTrackedActor> addTrackedMapEntity(::BlockPos const& position, ::BlockSource& region, ::MapDecoration::Type decorationType); - MCAPI bool areClientPixelsDirty() const; + MCFOLD bool areClientPixelsDirty() const; MCAPI void checkNeedsResampling(); @@ -191,15 +191,15 @@ class MapItemSavedData { MCAPI void enableUnlimitedTracking(); - MCAPI ::std::vector<::ClientTerrainPixel>& getClientPixels(); + MCFOLD ::std::vector<::ClientTerrainPixel>& getClientPixels(); - MCAPI ::SpinLockImpl* getClientSamplingLock(); + MCFOLD ::SpinLockImpl* getClientSamplingLock(); MCAPI ::std::unique_ptr<::Packet> getFullDataPacket() const; - MCAPI ::ActorUniqueID getMapId() const; + MCFOLD ::ActorUniqueID getMapId() const; - MCAPI ::ActorUniqueID getParentMapId() const; + MCFOLD ::ActorUniqueID getParentMapId() const; MCAPI ::buffer_span getPixels() const; diff --git a/src/mc/world/level/spawn/EntityType.h b/src/mc/world/level/spawn/EntityType.h index 4b201ab487..297dd200cf 100644 --- a/src/mc/world/level/spawn/EntityType.h +++ b/src/mc/world/level/spawn/EntityType.h @@ -31,7 +31,7 @@ struct EntityType { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/world/level/spawn/IsValidSpawn.h b/src/mc/world/level/spawn/IsValidSpawn.h index f6ec8d8ab4..3387447517 100644 --- a/src/mc/world/level/spawn/IsValidSpawn.h +++ b/src/mc/world/level/spawn/IsValidSpawn.h @@ -13,11 +13,11 @@ namespace br::spawn { struct EntityType; } namespace IsValidSpawn { // functions // NOLINTBEGIN -MCAPI bool always(::BlockSource const&, ::Block const&, ::BlockPos, ::br::spawn::EntityType const&); +MCFOLD bool always(::BlockSource const&, ::Block const&, ::BlockPos, ::br::spawn::EntityType const&); MCAPI bool fireImmune(::BlockSource const&, ::Block const&, ::BlockPos, ::br::spawn::EntityType const& entityType); -MCAPI bool never(::BlockSource const&, ::Block const&, ::BlockPos, ::br::spawn::EntityType const&); +MCFOLD bool never(::BlockSource const&, ::Block const&, ::BlockPos, ::br::spawn::EntityType const&); MCAPI bool ocelotOrParrot(::BlockSource const&, ::Block const&, ::BlockPos, ::br::spawn::EntityType const& entityType); diff --git a/src/mc/world/level/storage/AdventureSettings.h b/src/mc/world/level/storage/AdventureSettings.h index b0bf7d02ce..dd1b296c2a 100644 --- a/src/mc/world/level/storage/AdventureSettings.h +++ b/src/mc/world/level/storage/AdventureSettings.h @@ -22,6 +22,6 @@ struct AdventureSettings { public: // constructor thunks // NOLINTBEGIN - MCAPI void* $ctor(); + MCFOLD void* $ctor(); // NOLINTEND }; diff --git a/src/mc/world/level/storage/CloudSaveLevelInfo.h b/src/mc/world/level/storage/CloudSaveLevelInfo.h index 129d809319..992da87dcc 100644 --- a/src/mc/world/level/storage/CloudSaveLevelInfo.h +++ b/src/mc/world/level/storage/CloudSaveLevelInfo.h @@ -53,6 +53,6 @@ class CloudSaveLevelInfo { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/world/level/storage/ConsoleChunkBlender.h b/src/mc/world/level/storage/ConsoleChunkBlender.h index 6927759915..c5d58f6486 100644 --- a/src/mc/world/level/storage/ConsoleChunkBlender.h +++ b/src/mc/world/level/storage/ConsoleChunkBlender.h @@ -90,6 +90,6 @@ class ConsoleChunkBlender { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/world/level/storage/DBChunkStorage.h b/src/mc/world/level/storage/DBChunkStorage.h index 6680e954f7..314dd759e7 100644 --- a/src/mc/world/level/storage/DBChunkStorage.h +++ b/src/mc/world/level/storage/DBChunkStorage.h @@ -111,7 +111,7 @@ class DBChunkStorage : public ::ChunkSource { virtual bool saveLiveChunk(::LevelChunk& lc) /*override*/; // vIndex: 15 - virtual void writeEntityChunkTransfer(::LevelChunk& lc) /*override*/; + virtual void writeEntityChunkTransfer(::LevelChunk& levelChunk) /*override*/; // vIndex: 16 virtual void writeEntityChunkTransfersToUnloadedChunk( @@ -258,9 +258,9 @@ class DBChunkStorage : public ::ChunkSource { MCAPI void $loadChunk(::LevelChunk& lc, bool forceImmediateReplacementDataLoad); - MCAPI bool $isChunkKnown(::ChunkPos const& chunkPos); + MCFOLD bool $isChunkKnown(::ChunkPos const& chunkPos); - MCAPI bool $isChunkSaved(::ChunkPos const& chunkPos); + MCFOLD bool $isChunkSaved(::ChunkPos const& chunkPos); MCAPI bool $postProcess(::ChunkViewSource& neighborhood); @@ -268,7 +268,7 @@ class DBChunkStorage : public ::ChunkSource { MCAPI bool $saveLiveChunk(::LevelChunk& lc); - MCAPI void $writeEntityChunkTransfer(::LevelChunk& lc); + MCAPI void $writeEntityChunkTransfer(::LevelChunk& levelChunk); MCAPI void $writeEntityChunkTransfersToUnloadedChunk( ::ChunkKey const& chunkKey, @@ -277,7 +277,7 @@ class DBChunkStorage : public ::ChunkSource { MCAPI void $acquireDiscarded(::std::unique_ptr<::LevelChunk, ::LevelChunkFinalDeleter> ptr); - MCAPI void $hintDiscardBatchBegin(); + MCFOLD void $hintDiscardBatchBegin(); MCAPI void $hintDiscardBatchEnd(); diff --git a/src/mc/world/level/storage/DBStorage.h b/src/mc/world/level/storage/DBStorage.h index b0394000b3..408573ae8f 100644 --- a/src/mc/world/level/storage/DBStorage.h +++ b/src/mc/world/level/storage/DBStorage.h @@ -77,7 +77,7 @@ class DBStorage : public ::LevelStorage { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; @@ -132,7 +132,7 @@ class DBStorage : public ::LevelStorage { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; @@ -358,9 +358,9 @@ class DBStorage : public ::LevelStorage { MCAPI bool $loadedSuccessfully() const; - MCAPI ::Core::LevelStorageResult $getState() const; + MCFOLD ::Core::LevelStorageResult $getState() const; - MCAPI ::Core::PathBuffer<::std::string> const& $getFullPath() const; + MCFOLD ::Core::PathBuffer<::std::string> const& $getFullPath() const; MCAPI ::std::unique_ptr<::CompoundTag> $getCompoundTag(::std::string const& key, ::DBHelpers::Category category); @@ -386,7 +386,7 @@ class DBStorage : public ::LevelStorage { ::std::function const& callback ) const; - MCAPI ::Core::LevelStorageResult $getLevelStorageState() const; + MCFOLD ::Core::LevelStorageResult $getLevelStorageState() const; MCAPI void $startShutdown(); diff --git a/src/mc/world/level/storage/ExperimentStorage.h b/src/mc/world/level/storage/ExperimentStorage.h index a46b824f89..36ac7da6c5 100644 --- a/src/mc/world/level/storage/ExperimentStorage.h +++ b/src/mc/world/level/storage/ExperimentStorage.h @@ -28,6 +28,6 @@ class ExperimentStorage { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/world/level/storage/Experiments.h b/src/mc/world/level/storage/Experiments.h index e64ce68bf2..ae70aa2cd2 100644 --- a/src/mc/world/level/storage/Experiments.h +++ b/src/mc/world/level/storage/Experiments.h @@ -65,6 +65,6 @@ class Experiments : public ::ExperimentStorage { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/world/level/storage/ExternalFileLevelStorageMetadata.h b/src/mc/world/level/storage/ExternalFileLevelStorageMetadata.h index baab911131..95d4340045 100644 --- a/src/mc/world/level/storage/ExternalFileLevelStorageMetadata.h +++ b/src/mc/world/level/storage/ExternalFileLevelStorageMetadata.h @@ -10,7 +10,7 @@ class LevelData; namespace ExternalFileLevelStorageMetadata { // functions // NOLINTBEGIN -MCAPI void saveLevelMetadata(::std::string const& levelId, ::LevelData const& levelData); +MCFOLD void saveLevelMetadata(::std::string const& levelId, ::LevelData const& levelData); // NOLINTEND } // namespace ExternalFileLevelStorageMetadata diff --git a/src/mc/world/level/storage/ExternalFileLevelStorageSource.h b/src/mc/world/level/storage/ExternalFileLevelStorageSource.h index b56c9cf4e8..9eddc108c5 100644 --- a/src/mc/world/level/storage/ExternalFileLevelStorageSource.h +++ b/src/mc/world/level/storage/ExternalFileLevelStorageSource.h @@ -190,7 +190,7 @@ class ExternalFileLevelStorageSource : public ::LevelStorageSource { MCAPI ::Core::PathBuffer<::std::string> const $getPathToLevelInfo(::std::string const& levelId, bool forceInfo) const; - MCAPI bool $isBetaRetailLevel(::std::string const& levelId) const; + MCFOLD bool $isBetaRetailLevel(::std::string const& levelId) const; // NOLINTEND public: diff --git a/src/mc/world/level/storage/FolderSizeAndModifyDateSnapshot.h b/src/mc/world/level/storage/FolderSizeAndModifyDateSnapshot.h index 9bcf8bc111..93b4269211 100644 --- a/src/mc/world/level/storage/FolderSizeAndModifyDateSnapshot.h +++ b/src/mc/world/level/storage/FolderSizeAndModifyDateSnapshot.h @@ -75,6 +75,6 @@ class FolderSizeAndModifyDateSnapshot { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/world/level/storage/GameRule.h b/src/mc/world/level/storage/GameRule.h index 08b283a0ad..9e94bc1c7d 100644 --- a/src/mc/world/level/storage/GameRule.h +++ b/src/mc/world/level/storage/GameRule.h @@ -49,7 +49,7 @@ class GameRule { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; @@ -85,25 +85,25 @@ class GameRule { MCAPI ::GameRule& _setDefaultValue(int i); - MCAPI bool allowUseInCommand() const; + MCFOLD bool allowUseInCommand() const; - MCAPI bool allowUseInScripting() const; + MCFOLD bool allowUseInScripting() const; - MCAPI bool canBeModifiedByPlayer() const; + MCFOLD bool canBeModifiedByPlayer() const; - MCAPI bool getBool() const; + MCFOLD bool getBool() const; - MCAPI float getFloat() const; + MCFOLD float getFloat() const; - MCAPI int getInt() const; + MCFOLD int getInt() const; MCAPI ::std::string getLowercaseName() const; - MCAPI ::std::string const& getName() const; + MCFOLD ::std::string const& getName() const; - MCAPI ::GameRule::Type getType() const; + MCFOLD ::GameRule::Type getType() const; - MCAPI ::GameRule::Value const& getValue() const; + MCFOLD ::GameRule::Value const& getValue() const; MCAPI ::GameRule& operator=(::GameRule&&); diff --git a/src/mc/world/level/storage/GameRuleId.h b/src/mc/world/level/storage/GameRuleId.h index 4f4e2e064f..fca4de5814 100644 --- a/src/mc/world/level/storage/GameRuleId.h +++ b/src/mc/world/level/storage/GameRuleId.h @@ -15,6 +15,6 @@ struct GameRuleId : public ::NewType { public: // constructor thunks // NOLINTBEGIN - MCAPI void* $ctor(int value); + MCFOLD void* $ctor(int value); // NOLINTEND }; diff --git a/src/mc/world/level/storage/GameRules.h b/src/mc/world/level/storage/GameRules.h index 2b26effc5f..0d933375f5 100644 --- a/src/mc/world/level/storage/GameRules.h +++ b/src/mc/world/level/storage/GameRules.h @@ -129,7 +129,7 @@ class GameRules : public ::Bedrock::EnableNonOwnerReferences { MCAPI ::GameRule const* getRule(::GameRuleId rule) const; - MCAPI ::std::vector<::GameRule> const& getRules() const; + MCFOLD ::std::vector<::GameRule> const& getRules() const; MCAPI void getTagData(::CompoundTag const& tag, ::BaseGameVersion const& version); diff --git a/src/mc/world/level/storage/ILevelListCache.h b/src/mc/world/level/storage/ILevelListCache.h index 1fc1821650..69326b0fa5 100644 --- a/src/mc/world/level/storage/ILevelListCache.h +++ b/src/mc/world/level/storage/ILevelListCache.h @@ -121,7 +121,7 @@ class ILevelListCache : public ::Bedrock::EnableNonOwnerReferences { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND public: diff --git a/src/mc/world/level/storage/InMemoryWritableFile.h b/src/mc/world/level/storage/InMemoryWritableFile.h index a502d16cb0..6881da5bdd 100644 --- a/src/mc/world/level/storage/InMemoryWritableFile.h +++ b/src/mc/world/level/storage/InMemoryWritableFile.h @@ -47,9 +47,9 @@ class InMemoryWritableFile : public ::leveldb::WritableFile { MCAPI ::leveldb::Status $Close(); - MCAPI ::leveldb::Status $Flush(); + MCFOLD ::leveldb::Status $Flush(); - MCAPI ::leveldb::Status $Sync(); + MCFOLD ::leveldb::Status $Sync(); // NOLINTEND public: diff --git a/src/mc/world/level/storage/LevelData.h b/src/mc/world/level/storage/LevelData.h index 77993d4c57..1dd7a5da02 100644 --- a/src/mc/world/level/storage/LevelData.h +++ b/src/mc/world/level/storage/LevelData.h @@ -5,6 +5,7 @@ // auto generated inclusion list #include "mc/common/editor/WorldType.h" #include "mc/config/ChatRestrictionLevel.h" +#include "mc/deps/core/utility/pub_sub/Publisher.h" #include "mc/network/GamePublishSetting.h" #include "mc/options/EducationEditionOffer.h" #include "mc/world/Difficulty.h" @@ -23,20 +24,26 @@ class BlockPos; class CloudSaveLevelInfo; class CompoundTag; class ContentIdentity; +class EducationEditionOfferValue; +class ExperimentStorage; class Experiments; class GameRules; +class GameVersion; class HashedString; class ILevelStorageManagerConnector; class LevelSeed64; class LevelSettings; class PermissionsHandler; class SemVersion; +class WorldTemplateLevelData; struct AdventureSettings; struct EduSharedUriResource; struct LevelDataValue; struct PackIdVersion; struct SpawnSettings; struct Tick; +namespace Bedrock::PubSub { class Subscription; } +namespace Bedrock::PubSub::ThreadModel { struct SingleThreaded; } namespace Json { class Value; } namespace RakNet { class BitStream; } // clang-format on @@ -45,90 +52,88 @@ class LevelData { public: // member variables // NOLINTBEGIN - ::ll::UntypedStorage<1, 5> mUnk3869a7; - ::ll::UntypedStorage<8, 408> mUnk8932cd; - ::ll::UntypedStorage<8, 192> mUnke17dd2; - ::ll::UntypedStorage<8, 72> mUnkef417a; - ::ll::UntypedStorage<4, 228> mUnk501975; - ::ll::UntypedStorage<1, 2> mUnkeb9a04; - ::ll::UntypedStorage<8, 32> mUnk522209; - ::ll::UntypedStorage<4, 4> mUnkc388c0; - ::ll::UntypedStorage<8, 56> mUnk130ded; - ::ll::UntypedStorage<4, 4> mUnkcf7b76; - ::ll::UntypedStorage<8, 112> mUnk9463e1; - ::ll::UntypedStorage<8, 8> mUnkc3e8ef; - ::ll::UntypedStorage<1, 1> mUnkcde2e5; - ::ll::UntypedStorage<4, 12> mUnk8055f2; - ::ll::UntypedStorage<4, 4> mUnke171f7; - ::ll::UntypedStorage<8, 8> mUnk2ca67d; - ::ll::UntypedStorage<4, 4> mUnkbb5b63; - ::ll::UntypedStorage<4, 4> mUnkdfb31f; - ::ll::UntypedStorage<4, 4> mUnk71d22e; - ::ll::UntypedStorage<4, 4> mUnkfe3e1d; - ::ll::UntypedStorage<4, 4> mUnkcee1a2; - ::ll::UntypedStorage<4, 4> mUnkabc0e0; - ::ll::UntypedStorage<8, 56> mUnk606fd9; - ::ll::UntypedStorage<4, 4> mUnk571ae5; - ::ll::UntypedStorage<1, 1> mUnk384a39; - ::ll::UntypedStorage<1, 1> mUnk4f1d12; - ::ll::UntypedStorage<1, 1> mUnk99e5ec; - ::ll::UntypedStorage<1, 1> mUnkfe4902; - ::ll::UntypedStorage<1, 1> mUnkec87c9; - ::ll::UntypedStorage<8, 16> mUnk62bd85; - ::ll::UntypedStorage<4, 4> mUnkd400d4; - ::ll::UntypedStorage<1, 1> mUnk97cb66; - ::ll::UntypedStorage<4, 4> mUnk75b3ad; - ::ll::UntypedStorage<1, 1> mUnkaa4f80; - ::ll::UntypedStorage<1, 1> mUnk4a5e75; - ::ll::UntypedStorage<4, 4> mUnkd0854f; - ::ll::UntypedStorage<8, 176> mUnk7e3e6f; - ::ll::UntypedStorage<1, 1> mUnka79eb7; - ::ll::UntypedStorage<1, 1> mUnk49d6d3; - ::ll::UntypedStorage<1, 1> mUnk3edace; - ::ll::UntypedStorage<1, 1> mUnk951220; - ::ll::UntypedStorage<1, 1> mUnka5b54c; - ::ll::UntypedStorage<1, 1> mUnk95ba70; - ::ll::UntypedStorage<1, 1> mUnk6a378a; - ::ll::UntypedStorage<4, 4> mUnk6f9d7d; - ::ll::UntypedStorage<4, 4> mUnkaf2740; - ::ll::UntypedStorage<4, 4> mUnk1ae6b3; - ::ll::UntypedStorage<4, 4> mUnkc425f1; - ::ll::UntypedStorage<1, 1> mUnk62f005; - ::ll::UntypedStorage<1, 1> mUnk4e5f4e; - ::ll::UntypedStorage<1, 1> mUnkbcd71c; - ::ll::UntypedStorage<1, 1> mUnk42cc17; - ::ll::UntypedStorage<1, 1> mUnk142780; - ::ll::UntypedStorage<1, 1> mUnk32b4c4; - ::ll::UntypedStorage<1, 1> mUnk652297; - ::ll::UntypedStorage<8, 32> mUnkc13207; - ::ll::UntypedStorage<1, 1> mUnkfa06de; - ::ll::UntypedStorage<1, 1> mUnke79e01; - ::ll::UntypedStorage<1, 1> mUnk1db81c; - ::ll::UntypedStorage<1, 1> mUnk8b5ba8; - ::ll::UntypedStorage<1, 1> mUnk9452cb; - ::ll::UntypedStorage<1, 1> mUnkb1d0ee; - ::ll::UntypedStorage<1, 1> mUnk2c59c0; - ::ll::UntypedStorage<1, 1> mUnkc1f652; - ::ll::UntypedStorage<1, 1> mUnk9adf2f; - ::ll::UntypedStorage<1, 1> mUnk770d22; - ::ll::UntypedStorage<1, 1> mUnka7a691; - ::ll::UntypedStorage<1, 1> mUnkb2b714; - ::ll::UntypedStorage<8, 48> mUnk425bba; - ::ll::UntypedStorage<8, 64> mUnk6a5aee; - ::ll::UntypedStorage<8, 64> mUnkf37e74; - ::ll::UntypedStorage<8, 32> mUnk730497; - ::ll::UntypedStorage<4, 8> mUnk386804; - ::ll::UntypedStorage<1, 1> mUnka7d96a; - ::ll::UntypedStorage<8, 8> mUnk5f51f6; - ::ll::UntypedStorage<8, 16> mUnk184ea7; + ::ll::TypedStorage<1, 5, ::AdventureSettings> mAdventureSettings; + ::ll::TypedStorage<8, 408, ::WorldTemplateLevelData> mWorldTemplateLevelData; + ::ll::TypedStorage<8, 192, ::GameRules> mGameRules; + ::ll::TypedStorage<8, 72, ::ExperimentStorage> mExperiments; + ::ll::TypedStorage<4, 228, ::Abilities> mDefaultAbilities; + ::ll::TypedStorage<1, 2, ::PermissionsHandler> mDefaultPermissions; + ::ll::TypedStorage<8, 32, ::std::string> mLevelName; + ::ll::TypedStorage<4, 4, ::StorageVersion> mStorageVersion; + ::ll::TypedStorage<8, 56, ::GameVersion> mMinCompatibleClientVersion; + ::ll::TypedStorage<4, 4, int> mNetworkVersion; + ::ll::TypedStorage<8, 112, ::SemVersion> mInventoryVersion; + ::ll::TypedStorage<8, 8, ::Tick> mCurrentTick; + ::ll::TypedStorage<1, 1, bool> mHasSpawnPos; + ::ll::TypedStorage<4, 12, ::BlockPos> mLimitedWorldOrigin; + ::ll::TypedStorage<4, 4, int> mTime; + ::ll::TypedStorage<8, 8, int64> mLastSaved; + ::ll::TypedStorage<4, 4, uint> mServerTickRange; + ::ll::TypedStorage<4, 4, float> mRainLevel; + ::ll::TypedStorage<4, 4, int> mRainTime; + ::ll::TypedStorage<4, 4, float> mLightningLevel; + ::ll::TypedStorage<4, 4, int> mLightningTime; + ::ll::TypedStorage<4, 4, int> mNetherScale; + ::ll::TypedStorage<8, 56, ::GameVersion> mLastOpenedWithVersion; + ::ll::TypedStorage<4, 4, ::Difficulty> mGameDifficulty; + ::ll::TypedStorage<1, 1, bool> mForceGameType; + ::ll::TypedStorage<1, 1, bool> mIsHardcore; + ::ll::TypedStorage<1, 1, bool> mPlayerHasDied; + ::ll::TypedStorage<1, 1, bool> mSpawnMobs; + ::ll::TypedStorage<1, 1, bool> mAdventureModeOverridesEnabled; + ::ll::TypedStorage<8, 16, ::Json::Value> mFlatworldGeneratorOptions; + ::ll::TypedStorage<4, 4, uint> mWorldStartCount; + ::ll::TypedStorage<1, 1, bool> mAchievementsDisabled; + ::ll::TypedStorage<4, 4, ::Editor::WorldType> mEditorWorldType; + ::ll::TypedStorage<1, 1, bool> mIsCreatedInEditor; + ::ll::TypedStorage<1, 1, bool> mIsExportedFromEditor; + ::ll::TypedStorage<4, 4, ::EducationEditionOfferValue> mEducationEditionOffer; + ::ll::TypedStorage<8, 176, ::std::optional<::CloudSaveLevelInfo>> mCloudSaveInfo; + ::ll::TypedStorage<1, 1, bool> mEducationFeaturesEnabled; + ::ll::TypedStorage<1, 1, bool> mIsSingleUseWorld; + ::ll::TypedStorage<1, 1, bool> mConfirmedPlatformLockedContent; + ::ll::TypedStorage<1, 1, bool> mMultiplayerGameIntent; + ::ll::TypedStorage<1, 1, bool> mMultiplayerGame; + ::ll::TypedStorage<1, 1, bool> mLANBroadcastIntent; + ::ll::TypedStorage<1, 1, bool> mLANBroadcast; + ::ll::TypedStorage<4, 4, ::Social::GamePublishSetting> mXBLBroadcastIntent; + ::ll::TypedStorage<4, 4, ::Social::GamePublishSetting> mXBLBroadcastMode; + ::ll::TypedStorage<4, 4, ::Social::GamePublishSetting> mPlatformBroadcastIntent; + ::ll::TypedStorage<4, 4, ::Social::GamePublishSetting> mPlatformBroadcastMode; + ::ll::TypedStorage<1, 1, bool> mCheatsEnabled; + ::ll::TypedStorage<1, 1, bool> mCommandsEnabled; + ::ll::TypedStorage<1, 1, bool> mTexturePacksRequired; + ::ll::TypedStorage<1, 1, bool> mHasLockedBehaviorPack; + ::ll::TypedStorage<1, 1, bool> mHasLockedResourcePack; + ::ll::TypedStorage<1, 1, bool> mIsFromLockedTemplate; + ::ll::TypedStorage<1, 1, bool> mIsRandomSeedAllowed; + ::ll::TypedStorage<8, 32, ::std::string> mEducationProductId; + ::ll::TypedStorage<1, 1, bool> mUseMsaGamertagsOnly; + ::ll::TypedStorage<1, 1, bool> mBonusChestEnabled; + ::ll::TypedStorage<1, 1, bool> mBonusChestSpawned; + ::ll::TypedStorage<1, 1, bool> mStartWithMapEnabled; + ::ll::TypedStorage<1, 1, bool> mMapsCenteredToOrigin; + ::ll::TypedStorage<1, 1, bool> mRequiresCopiedPackRemovalCheck; + ::ll::TypedStorage<1, 1, bool> mSpawnV1Villagers; + ::ll::TypedStorage<1, 1, bool> mPersonaDisabled; + ::ll::TypedStorage<1, 1, bool> mCustomSkinsDisabled; + ::ll::TypedStorage<1, 1, bool> mEmoteChatMuted; + ::ll::TypedStorage<1, 1, bool> mHasUncompleteWorldFileOnDisk; + ::ll::TypedStorage<1, 1, ::NetherWorldType> mNetherType; + ::ll::TypedStorage<8, 48, ::SpawnSettings> mSpawnSettings; + ::ll::TypedStorage<8, 64, ::std::unordered_map<::HashedString, ::LevelDataValue>> mValues; + ::ll::TypedStorage<8, 64, ::std::unordered_map<::HashedString, ::LevelDataValue>> mOverrides; + ::ll::TypedStorage<8, 32, ::std::string> mBiomeOverride; + ::ll::TypedStorage<4, 8, ::std::optional<::GeneratorType>> mDataDrivenGeneratorType; + ::ll::TypedStorage<1, 1, ::ChatRestrictionLevel> mChatRestrictionLevel; + ::ll::TypedStorage< + 8, + 8, + ::std::unique_ptr<::Bedrock::PubSub::Publisher>> + mIsHardcoreSubscribers; + ::ll::TypedStorage<8, 16, ::Bedrock::PubSub::Subscription> mOnSaveLevelData; // NOLINTEND -public: - // prevent constructor by default - LevelData& operator=(LevelData const&); - LevelData(LevelData const&); - LevelData(); - public: // member functions // NOLINTBEGIN @@ -175,7 +180,7 @@ class LevelData { MCAPI ::AdventureSettings const& getAdventureSettings() const; - MCAPI ::AdventureSettings& getAdventureSettings(); + MCFOLD ::AdventureSettings& getAdventureSettings(); MCAPI ::BaseGameVersion const& getBaseGameVersion() const; @@ -187,17 +192,17 @@ class LevelData { MCAPI ::CloudSaveLevelInfo const& getCloudSaveInfo() const; - MCAPI ::Tick const& getCurrentTick() const; + MCFOLD ::Tick const& getCurrentTick() const; MCAPI bool getCustomSkinsDisabled() const; MCAPI ::DaylightCycle getDaylightCycle() const; - MCAPI ::Abilities& getDefaultAbilities(); + MCFOLD ::Abilities& getDefaultAbilities(); MCAPI ::PermissionsHandler const& getDefaultPermissions() const; - MCAPI ::PermissionsHandler& getDefaultPermissions(); + MCFOLD ::PermissionsHandler& getDefaultPermissions(); MCAPI ::Editor::WorldType getEditorWorldType() const; @@ -211,7 +216,7 @@ class LevelData { MCAPI ::Experiments const& getExperiments() const; - MCAPI ::Experiments& getExperiments(); + MCFOLD ::Experiments& getExperiments(); MCAPI ::Json::Value const& getFlatWorldGeneratorOptions() const; @@ -221,7 +226,7 @@ class LevelData { MCAPI ::GameRules const& getGameRules() const; - MCAPI ::GameRules& getGameRules(); + MCFOLD ::GameRules& getGameRules(); MCAPI ::GameType getGameType() const; @@ -269,9 +274,9 @@ class LevelData { MCAPI ::BlockPos const& getSpawnPos() const; - MCAPI ::SpawnSettings const& getSpawnSettings() const; + MCFOLD ::SpawnSettings const& getSpawnSettings() const; - MCAPI ::StorageVersion getStorageVersion() const; + MCFOLD ::StorageVersion getStorageVersion() const; MCAPI void getTagData(::CompoundTag const& tag); @@ -283,7 +288,7 @@ class LevelData { MCAPI uint getWorldStartCount() const; - MCAPI ::PackIdVersion const& getWorldTemplateIdentity() const; + MCFOLD ::PackIdVersion const& getWorldTemplateIdentity() const; MCAPI ::WorldVersion getWorldVersion() const; @@ -313,7 +318,7 @@ class LevelData { MCAPI bool isAlwaysDay() const; - MCAPI bool isCreatedInEditor() const; + MCFOLD bool isCreatedInEditor() const; MCAPI bool isEditorWorld() const; @@ -341,7 +346,7 @@ class LevelData { MCAPI bool isWorldTemplateOptionLocked() const; - MCAPI void recordStartUp(); + MCFOLD void recordStartUp(); MCAPI void registerWithLevelStorageManagerEvents(::ILevelStorageManagerConnector& levelStorageManagerConnector); @@ -405,7 +410,7 @@ class LevelData { MCAPI void setLightningLevel(float level); - MCAPI void setLightningTime(int lightningTime); + MCFOLD void setLightningTime(int lightningTime); MCAPI void setMultiplayerGame(bool multiplayer); diff --git a/src/mc/world/level/storage/LevelDataValue.h b/src/mc/world/level/storage/LevelDataValue.h index 98926e9407..d3c5b5c792 100644 --- a/src/mc/world/level/storage/LevelDataValue.h +++ b/src/mc/world/level/storage/LevelDataValue.h @@ -36,7 +36,7 @@ struct LevelDataValue { MCAPI explicit Tag(::CompoundTag&& tag); - MCAPI ::LevelDataValue::Tag& operator=(::LevelDataValue::Tag&& tag); + MCFOLD ::LevelDataValue::Tag& operator=(::LevelDataValue::Tag&& tag); MCAPI ~Tag(); // NOLINTEND @@ -46,7 +46,7 @@ struct LevelDataValue { // NOLINTBEGIN MCAPI void* $ctor(); - MCAPI void* $ctor(::LevelDataValue::Tag&& tag); + MCFOLD void* $ctor(::LevelDataValue::Tag&& tag); MCAPI void* $ctor(::CompoundTag&& tag); // NOLINTEND @@ -54,7 +54,7 @@ struct LevelDataValue { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/world/level/storage/LevelStorage.h b/src/mc/world/level/storage/LevelStorage.h index 7d5050dd16..3cf602000a 100644 --- a/src/mc/world/level/storage/LevelStorage.h +++ b/src/mc/world/level/storage/LevelStorage.h @@ -175,15 +175,15 @@ class LevelStorage { public: // virtual function thunks // NOLINTBEGIN - MCAPI bool $loadedSuccessfully() const; + MCFOLD bool $loadedSuccessfully() const; MCAPI bool $clonePlayerData(::std::string_view fromKey, ::std::string_view toKey); - MCAPI bool $loadData(::std::string_view key, ::std::string& buffer, ::DBHelpers::Category category) const; + MCFOLD bool $loadData(::std::string_view key, ::std::string& buffer, ::DBHelpers::Category category) const; - MCAPI void $freeCaches(); + MCFOLD void $freeCaches(); - MCAPI void $corruptLevel(); + MCFOLD void $corruptLevel(); // NOLINTEND public: diff --git a/src/mc/world/level/storage/LevelStorageEventingContext.h b/src/mc/world/level/storage/LevelStorageEventingContext.h index 10bd78116d..d1236a140b 100644 --- a/src/mc/world/level/storage/LevelStorageEventingContext.h +++ b/src/mc/world/level/storage/LevelStorageEventingContext.h @@ -29,6 +29,6 @@ struct LevelStorageEventingContext { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/world/level/storage/LevelStorageManager.h b/src/mc/world/level/storage/LevelStorageManager.h index 635d0a88d0..2b020e0beb 100644 --- a/src/mc/world/level/storage/LevelStorageManager.h +++ b/src/mc/world/level/storage/LevelStorageManager.h @@ -87,9 +87,9 @@ class LevelStorageManager : public ::ILevelStorageManagerConnector { MCAPI void _savePlayer(::Player& player); - MCAPI ::Bedrock::NotNullNonOwnerPtr<::LevelStorage> getLevelStorage(); + MCFOLD ::Bedrock::NotNullNonOwnerPtr<::LevelStorage> getLevelStorage(); - MCAPI ::SavedDataStorage& getSavedDataStorage(); + MCFOLD ::SavedDataStorage& getSavedDataStorage(); MCAPI void initializeWithDimensionManager(::IDimensionManagerConnector& dimensionManagerConnector); @@ -134,17 +134,17 @@ class LevelStorageManager : public ::ILevelStorageManagerConnector { public: // virtual function thunks // NOLINTBEGIN - MCAPI ::Bedrock::PubSub::Connector& $getOnSaveConnector(); + MCFOLD ::Bedrock::PubSub::Connector& $getOnSaveConnector(); MCAPI ::Bedrock::PubSub::Connector& $getOnSaveGameDataConnector(); - MCAPI ::Bedrock::PubSub::Connector& $getOnSaveLevelDataConnector(); + MCFOLD ::Bedrock::PubSub::Connector& $getOnSaveLevelDataConnector(); - MCAPI ::Bedrock::PubSub::Connector& $getOnCanStartGameSaveTimerCheckConnector(); + MCFOLD ::Bedrock::PubSub::Connector& $getOnCanStartGameSaveTimerCheckConnector(); MCAPI ::Bedrock::PubSub::Connector& $getOnStartLeaveGameConnector(); - MCAPI ::Bedrock::PubSub::Connector& $getOnAppSuspendConnector(); + MCFOLD ::Bedrock::PubSub::Connector& $getOnAppSuspendConnector(); // NOLINTEND public: diff --git a/src/mc/world/level/storage/LevelStorageWriteBatch.h b/src/mc/world/level/storage/LevelStorageWriteBatch.h index c6e2c06209..6fa41449ff 100644 --- a/src/mc/world/level/storage/LevelStorageWriteBatch.h +++ b/src/mc/world/level/storage/LevelStorageWriteBatch.h @@ -55,7 +55,7 @@ class LevelStorageWriteBatch { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/world/level/storage/NullLogger.h b/src/mc/world/level/storage/NullLogger.h index 7f039ec4fb..bd87fa09df 100644 --- a/src/mc/world/level/storage/NullLogger.h +++ b/src/mc/world/level/storage/NullLogger.h @@ -28,7 +28,7 @@ class NullLogger : public ::leveldb::Logger { public: // virtual function thunks // NOLINTBEGIN - MCAPI void $Logv(char const* format, char* ap); + MCFOLD void $Logv(char const* format, char* ap); // NOLINTEND public: diff --git a/src/mc/world/level/storage/PlayerStorageIds.h b/src/mc/world/level/storage/PlayerStorageIds.h index 586a08d5c8..b8913952a2 100644 --- a/src/mc/world/level/storage/PlayerStorageIds.h +++ b/src/mc/world/level/storage/PlayerStorageIds.h @@ -31,6 +31,6 @@ struct PlayerStorageIds { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/world/level/storage/RealmEventForPlayer.h b/src/mc/world/level/storage/RealmEventForPlayer.h index 4819800273..3ea017f211 100644 --- a/src/mc/world/level/storage/RealmEventForPlayer.h +++ b/src/mc/world/level/storage/RealmEventForPlayer.h @@ -25,6 +25,6 @@ struct RealmEventForPlayer { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/world/level/storage/SnapshotEnv.h b/src/mc/world/level/storage/SnapshotEnv.h index fb0a7d14b7..bb3d1b83e5 100644 --- a/src/mc/world/level/storage/SnapshotEnv.h +++ b/src/mc/world/level/storage/SnapshotEnv.h @@ -42,7 +42,7 @@ class SnapshotEnv : public ::leveldb::EnvWrapper { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/world/level/storage/UserStorageChecker.h b/src/mc/world/level/storage/UserStorageChecker.h index adbbb76e41..b92f5bcd42 100644 --- a/src/mc/world/level/storage/UserStorageChecker.h +++ b/src/mc/world/level/storage/UserStorageChecker.h @@ -53,6 +53,6 @@ class UserStorageChecker { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/world/level/storage/WorldTemplateLevelData.h b/src/mc/world/level/storage/WorldTemplateLevelData.h index ed4d507211..9b61fb64d0 100644 --- a/src/mc/world/level/storage/WorldTemplateLevelData.h +++ b/src/mc/world/level/storage/WorldTemplateLevelData.h @@ -45,13 +45,13 @@ class WorldTemplateLevelData { MCAPI ::BaseGameVersion const& getBaseGameVersion() const; - MCAPI ::ContentIdentity const& getContentIdentity() const; + MCFOLD ::ContentIdentity const& getContentIdentity() const; MCAPI void getTagData(::CompoundTag const& tag); - MCAPI ::PackIdVersion const& getWorldTemplateIdentity() const; + MCFOLD ::PackIdVersion const& getWorldTemplateIdentity() const; - MCAPI bool isFromWorldTemplate() const; + MCFOLD bool isFromWorldTemplate() const; MCAPI bool isWorldTemplateOptionLocked() const; diff --git a/src/mc/world/level/storage/loot/LootTableContext.h b/src/mc/world/level/storage/loot/LootTableContext.h index 335a3d2e43..925eef75cd 100644 --- a/src/mc/world/level/storage/loot/LootTableContext.h +++ b/src/mc/world/level/storage/loot/LootTableContext.h @@ -67,7 +67,7 @@ class LootTableContext { MCAPI ::LootTableContext::Builder& withThisEntity(::Actor* actor); - MCAPI ::LootTableContext::Builder& withTool(::ItemStack const* tool); + MCFOLD ::LootTableContext::Builder& withTool(::ItemStack const* tool); MCAPI ~Builder(); // NOLINTEND @@ -122,7 +122,7 @@ class LootTableContext { ::ItemStack const* tool ); - MCAPI ::Level* getLevel() const; + MCFOLD ::Level* getLevel() const; MCAPI void removeVisitedTable(::LootTable const* table); diff --git a/src/mc/world/level/storage/loot/entries/EmptyLootItem.h b/src/mc/world/level/storage/loot/entries/EmptyLootItem.h index 16eba765a5..9bb3e488be 100644 --- a/src/mc/world/level/storage/loot/entries/EmptyLootItem.h +++ b/src/mc/world/level/storage/loot/entries/EmptyLootItem.h @@ -33,7 +33,7 @@ class EmptyLootItem : public ::LootPoolEntry { public: // virtual function thunks // NOLINTBEGIN - MCAPI bool $_createItem(::std::vector<::ItemStack>& output, ::Random& random, ::LootTableContext& context) const; + MCFOLD bool $_createItem(::std::vector<::ItemStack>& output, ::Random& random, ::LootTableContext& context) const; // NOLINTEND public: diff --git a/src/mc/world/level/storage/loot/functions/EnchantBookForTradingFunction.h b/src/mc/world/level/storage/loot/functions/EnchantBookForTradingFunction.h index 9247bb5d06..288df04228 100644 --- a/src/mc/world/level/storage/loot/functions/EnchantBookForTradingFunction.h +++ b/src/mc/world/level/storage/loot/functions/EnchantBookForTradingFunction.h @@ -49,7 +49,7 @@ class EnchantBookForTradingFunction : public ::LootItemFunction { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; @@ -115,13 +115,13 @@ class EnchantBookForTradingFunction : public ::LootItemFunction { public: // virtual function thunks // NOLINTBEGIN - MCAPI void $apply(::ItemStack& item, ::Random& random, ::LootTableContext&); + MCFOLD void $apply(::ItemStack& item, ::Random& random, ::LootTableContext&); - MCAPI int $apply(::ItemStack& item, ::Random& random, ::Trade const& trade, ::LootTableContext& context); + MCFOLD int $apply(::ItemStack& item, ::Random& random, ::Trade const& trade, ::LootTableContext& context); - MCAPI void $apply(::ItemInstance& item, ::Random& random, ::LootTableContext&); + MCFOLD void $apply(::ItemInstance& item, ::Random& random, ::LootTableContext&); - MCAPI int $apply(::ItemInstance& item, ::Random& random, ::Trade const& trade, ::LootTableContext& context); + MCFOLD int $apply(::ItemInstance& item, ::Random& random, ::Trade const& trade, ::LootTableContext& context); // NOLINTEND public: diff --git a/src/mc/world/level/storage/loot/functions/EnchantRandomEquipmentFunction.h b/src/mc/world/level/storage/loot/functions/EnchantRandomEquipmentFunction.h index e8aeaec776..f5ca082543 100644 --- a/src/mc/world/level/storage/loot/functions/EnchantRandomEquipmentFunction.h +++ b/src/mc/world/level/storage/loot/functions/EnchantRandomEquipmentFunction.h @@ -48,9 +48,9 @@ class EnchantRandomEquipmentFunction : public ::LootItemFunction { public: // virtual function thunks // NOLINTBEGIN - MCAPI void $apply(::ItemStack& item, ::Random& random, ::LootTableContext& context); + MCFOLD void $apply(::ItemStack& item, ::Random& random, ::LootTableContext& context); - MCAPI void $apply(::ItemInstance& item, ::Random& random, ::LootTableContext& context); + MCFOLD void $apply(::ItemInstance& item, ::Random& random, ::LootTableContext& context); // NOLINTEND public: diff --git a/src/mc/world/level/storage/loot/functions/EnchantRandomlyFunction.h b/src/mc/world/level/storage/loot/functions/EnchantRandomlyFunction.h index f19e3ce566..43907861ca 100644 --- a/src/mc/world/level/storage/loot/functions/EnchantRandomlyFunction.h +++ b/src/mc/world/level/storage/loot/functions/EnchantRandomlyFunction.h @@ -49,9 +49,9 @@ class EnchantRandomlyFunction : public ::LootItemFunction { public: // virtual function thunks // NOLINTBEGIN - MCAPI void $apply(::ItemStack& item, ::Random& random, ::LootTableContext& context); + MCFOLD void $apply(::ItemStack& item, ::Random& random, ::LootTableContext& context); - MCAPI void $apply(::ItemInstance& item, ::Random& random, ::LootTableContext& context); + MCFOLD void $apply(::ItemInstance& item, ::Random& random, ::LootTableContext& context); // NOLINTEND public: diff --git a/src/mc/world/level/storage/loot/functions/EnchantWithLevelsFunction.h b/src/mc/world/level/storage/loot/functions/EnchantWithLevelsFunction.h index a855aabbf3..ada8ba3a5a 100644 --- a/src/mc/world/level/storage/loot/functions/EnchantWithLevelsFunction.h +++ b/src/mc/world/level/storage/loot/functions/EnchantWithLevelsFunction.h @@ -58,13 +58,13 @@ class EnchantWithLevelsFunction : public ::LootItemFunction { public: // virtual function thunks // NOLINTBEGIN - MCAPI void $apply(::ItemStack& item, ::Random& random, ::LootTableContext& context); + MCFOLD void $apply(::ItemStack& item, ::Random& random, ::LootTableContext& context); - MCAPI int $apply(::ItemStack& item, ::Random& random, ::Trade const& trade, ::LootTableContext& context); + MCFOLD int $apply(::ItemStack& item, ::Random& random, ::Trade const& trade, ::LootTableContext& context); - MCAPI void $apply(::ItemInstance& item, ::Random& random, ::LootTableContext& context); + MCFOLD void $apply(::ItemInstance& item, ::Random& random, ::LootTableContext& context); - MCAPI int $apply(::ItemInstance& item, ::Random& random, ::Trade const& trade, ::LootTableContext& context); + MCFOLD int $apply(::ItemInstance& item, ::Random& random, ::Trade const& trade, ::LootTableContext& context); // NOLINTEND public: diff --git a/src/mc/world/level/storage/loot/functions/ExplorationMapFunction.h b/src/mc/world/level/storage/loot/functions/ExplorationMapFunction.h index 2dac8107b1..b47d66b0e3 100644 --- a/src/mc/world/level/storage/loot/functions/ExplorationMapFunction.h +++ b/src/mc/world/level/storage/loot/functions/ExplorationMapFunction.h @@ -57,9 +57,9 @@ class ExplorationMapFunction : public ::LootItemFunction { public: // virtual function thunks // NOLINTBEGIN - MCAPI void $apply(::ItemStack& item, ::Random&, ::LootTableContext& context); + MCFOLD void $apply(::ItemStack& item, ::Random&, ::LootTableContext& context); - MCAPI void $apply(::ItemInstance& item, ::Random&, ::LootTableContext& context); + MCFOLD void $apply(::ItemInstance& item, ::Random&, ::LootTableContext& context); // NOLINTEND public: diff --git a/src/mc/world/level/storage/loot/functions/FillContainerFunction.h b/src/mc/world/level/storage/loot/functions/FillContainerFunction.h index 6fb86fec3f..4c248d1b68 100644 --- a/src/mc/world/level/storage/loot/functions/FillContainerFunction.h +++ b/src/mc/world/level/storage/loot/functions/FillContainerFunction.h @@ -57,9 +57,9 @@ class FillContainerFunction : public ::LootItemFunction { public: // virtual function thunks // NOLINTBEGIN - MCAPI void $apply(::ItemStack& item, ::Random& random, ::LootTableContext& context); + MCFOLD void $apply(::ItemStack& item, ::Random& random, ::LootTableContext& context); - MCAPI void $apply(::ItemInstance& itemInstance, ::Random& random, ::LootTableContext& context); + MCFOLD void $apply(::ItemInstance& itemInstance, ::Random& random, ::LootTableContext& context); // NOLINTEND public: diff --git a/src/mc/world/level/storage/loot/functions/RandomDyeFunction.h b/src/mc/world/level/storage/loot/functions/RandomDyeFunction.h index 0547ad1efb..2ed06cfc03 100644 --- a/src/mc/world/level/storage/loot/functions/RandomDyeFunction.h +++ b/src/mc/world/level/storage/loot/functions/RandomDyeFunction.h @@ -46,9 +46,9 @@ class RandomDyeFunction : public ::LootItemFunction { public: // virtual function thunks // NOLINTBEGIN - MCAPI void $apply(::ItemStack& item, ::Random& random, ::LootTableContext&); + MCFOLD void $apply(::ItemStack& item, ::Random& random, ::LootTableContext&); - MCAPI void $apply(::ItemInstance& item, ::Random& random, ::LootTableContext&); + MCFOLD void $apply(::ItemInstance& item, ::Random& random, ::LootTableContext&); // NOLINTEND public: diff --git a/src/mc/world/level/storage/loot/functions/SetArmorTrimFunction.h b/src/mc/world/level/storage/loot/functions/SetArmorTrimFunction.h index 73ffad2af3..af16fe2af2 100644 --- a/src/mc/world/level/storage/loot/functions/SetArmorTrimFunction.h +++ b/src/mc/world/level/storage/loot/functions/SetArmorTrimFunction.h @@ -65,9 +65,9 @@ class SetArmorTrimFunction : public ::LootItemFunction { public: // virtual function thunks // NOLINTBEGIN - MCAPI void $apply(::ItemStack& item, ::Random&, ::LootTableContext& context); + MCFOLD void $apply(::ItemStack& item, ::Random&, ::LootTableContext& context); - MCAPI void $apply(::ItemInstance& item, ::Random&, ::LootTableContext& context); + MCFOLD void $apply(::ItemInstance& item, ::Random&, ::LootTableContext& context); // NOLINTEND public: diff --git a/src/mc/world/level/storage/loot/functions/SetBannerDetailsFunction.h b/src/mc/world/level/storage/loot/functions/SetBannerDetailsFunction.h index d6d8ca91e5..e46e96e8ec 100644 --- a/src/mc/world/level/storage/loot/functions/SetBannerDetailsFunction.h +++ b/src/mc/world/level/storage/loot/functions/SetBannerDetailsFunction.h @@ -70,9 +70,9 @@ class SetBannerDetailsFunction : public ::LootItemFunction { public: // virtual function thunks // NOLINTBEGIN - MCAPI void $apply(::ItemStack& item, ::Random& random, ::LootTableContext& context); + MCFOLD void $apply(::ItemStack& item, ::Random& random, ::LootTableContext& context); - MCAPI void $apply(::ItemInstance& item, ::Random& random, ::LootTableContext& context); + MCFOLD void $apply(::ItemInstance& item, ::Random& random, ::LootTableContext& context); // NOLINTEND public: diff --git a/src/mc/world/level/storage/loot/functions/SetBookContentsFunction.h b/src/mc/world/level/storage/loot/functions/SetBookContentsFunction.h index 2d9f3d11ff..4caafc992d 100644 --- a/src/mc/world/level/storage/loot/functions/SetBookContentsFunction.h +++ b/src/mc/world/level/storage/loot/functions/SetBookContentsFunction.h @@ -66,9 +66,9 @@ class SetBookContentsFunction : public ::LootItemFunction { public: // virtual function thunks // NOLINTBEGIN - MCAPI void $apply(::ItemStack& item, ::Random&, ::LootTableContext&); + MCFOLD void $apply(::ItemStack& item, ::Random&, ::LootTableContext&); - MCAPI void $apply(::ItemInstance& itemInstance, ::Random&, ::LootTableContext&); + MCFOLD void $apply(::ItemInstance& itemInstance, ::Random&, ::LootTableContext&); // NOLINTEND public: diff --git a/src/mc/world/level/storage/loot/functions/SetItemDamageFunction.h b/src/mc/world/level/storage/loot/functions/SetItemDamageFunction.h index 9aa1782b08..d9c6c16696 100644 --- a/src/mc/world/level/storage/loot/functions/SetItemDamageFunction.h +++ b/src/mc/world/level/storage/loot/functions/SetItemDamageFunction.h @@ -48,9 +48,9 @@ class SetItemDamageFunction : public ::LootItemFunction { public: // virtual function thunks // NOLINTBEGIN - MCAPI void $apply(::ItemStack& item, ::Random& random, ::LootTableContext& context); + MCFOLD void $apply(::ItemStack& item, ::Random& random, ::LootTableContext& context); - MCAPI void $apply(::ItemInstance& item, ::Random& random, ::LootTableContext& context); + MCFOLD void $apply(::ItemInstance& item, ::Random& random, ::LootTableContext& context); // NOLINTEND public: diff --git a/src/mc/world/level/storage/loot/functions/SetItemLoreFunction.h b/src/mc/world/level/storage/loot/functions/SetItemLoreFunction.h index 9d4f65d311..4dc431c350 100644 --- a/src/mc/world/level/storage/loot/functions/SetItemLoreFunction.h +++ b/src/mc/world/level/storage/loot/functions/SetItemLoreFunction.h @@ -57,9 +57,9 @@ class SetItemLoreFunction : public ::LootItemFunction { public: // virtual function thunks // NOLINTBEGIN - MCAPI void $apply(::ItemStack& item, ::Random&, ::LootTableContext&); + MCFOLD void $apply(::ItemStack& item, ::Random&, ::LootTableContext&); - MCAPI void $apply(::ItemInstance& itemInstance, ::Random&, ::LootTableContext&); + MCFOLD void $apply(::ItemInstance& itemInstance, ::Random&, ::LootTableContext&); // NOLINTEND public: diff --git a/src/mc/world/level/storage/loot/functions/SetItemNameFunction.h b/src/mc/world/level/storage/loot/functions/SetItemNameFunction.h index 32e175d52b..0ced90c93f 100644 --- a/src/mc/world/level/storage/loot/functions/SetItemNameFunction.h +++ b/src/mc/world/level/storage/loot/functions/SetItemNameFunction.h @@ -57,9 +57,9 @@ class SetItemNameFunction : public ::LootItemFunction { public: // virtual function thunks // NOLINTBEGIN - MCAPI void $apply(::ItemStack& item, ::Random&, ::LootTableContext&); + MCFOLD void $apply(::ItemStack& item, ::Random&, ::LootTableContext&); - MCAPI void $apply(::ItemInstance& itemInstance, ::Random&, ::LootTableContext&); + MCFOLD void $apply(::ItemInstance& itemInstance, ::Random&, ::LootTableContext&); // NOLINTEND public: diff --git a/src/mc/world/level/storage/loot/functions/SetPotionFunction.h b/src/mc/world/level/storage/loot/functions/SetPotionFunction.h index dfc78ec10d..6544b7f1e2 100644 --- a/src/mc/world/level/storage/loot/functions/SetPotionFunction.h +++ b/src/mc/world/level/storage/loot/functions/SetPotionFunction.h @@ -57,9 +57,9 @@ class SetPotionFunction : public ::LootItemFunction { public: // virtual function thunks // NOLINTBEGIN - MCAPI void $apply(::ItemStack& item, ::Random&, ::LootTableContext& context); + MCFOLD void $apply(::ItemStack& item, ::Random&, ::LootTableContext& context); - MCAPI void $apply(::ItemInstance& item, ::Random&, ::LootTableContext& context); + MCFOLD void $apply(::ItemInstance& item, ::Random&, ::LootTableContext& context); // NOLINTEND public: diff --git a/src/mc/world/level/storage/loot/predicates/LootItemCondition.h b/src/mc/world/level/storage/loot/predicates/LootItemCondition.h index eebe6b89c8..a20a73c37f 100644 --- a/src/mc/world/level/storage/loot/predicates/LootItemCondition.h +++ b/src/mc/world/level/storage/loot/predicates/LootItemCondition.h @@ -29,7 +29,7 @@ class LootItemCondition { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND public: diff --git a/src/mc/world/level/ticking/ITickingAreaView.h b/src/mc/world/level/ticking/ITickingAreaView.h index 2fa9baca18..0fb6658966 100644 --- a/src/mc/world/level/ticking/ITickingAreaView.h +++ b/src/mc/world/level/ticking/ITickingAreaView.h @@ -64,7 +64,7 @@ class ITickingAreaView { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND public: diff --git a/src/mc/world/level/ticking/PendingArea.h b/src/mc/world/level/ticking/PendingArea.h index 5b5df0cfa9..938d7ed381 100644 --- a/src/mc/world/level/ticking/PendingArea.h +++ b/src/mc/world/level/ticking/PendingArea.h @@ -52,6 +52,6 @@ struct PendingArea { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/world/level/ticking/TickingArea.h b/src/mc/world/level/ticking/TickingArea.h index b95e8ff464..dd19c4c670 100644 --- a/src/mc/world/level/ticking/TickingArea.h +++ b/src/mc/world/level/ticking/TickingArea.h @@ -185,11 +185,11 @@ class TickingArea : public ::ITickingArea { public: // virtual function thunks // NOLINTBEGIN - MCAPI ::mce::UUID const& $getId() const; + MCFOLD ::mce::UUID const& $getId() const; - MCAPI ::std::string const& $getName() const; + MCFOLD ::std::string const& $getName() const; - MCAPI ::ActorUniqueID const& $getEntityId() const; + MCFOLD ::ActorUniqueID const& $getEntityId() const; MCAPI ::Bounds const& $getBounds() const; @@ -197,15 +197,15 @@ class TickingArea : public ::ITickingArea { MCAPI bool $isAlwaysActive() const; - MCAPI float $getMaxDistToPlayers() const; + MCFOLD float $getMaxDistToPlayers() const; - MCAPI ::ITickingAreaView const& $getView() const; + MCFOLD ::ITickingAreaView const& $getView() const; - MCAPI ::ITickingAreaView& $getView(); + MCFOLD ::ITickingAreaView& $getView(); - MCAPI ::WeakRef<::BlockSource> const $getBlockSource() const; + MCFOLD ::WeakRef<::BlockSource> const $getBlockSource() const; - MCAPI ::WeakRef<::BlockSource> $getBlockSource(); + MCFOLD ::WeakRef<::BlockSource> $getBlockSource(); MCAPI ::TickingAreaDescription $getDescription() const; diff --git a/src/mc/world/level/ticking/TickingAreaDescription.h b/src/mc/world/level/ticking/TickingAreaDescription.h index 674aae00fc..1baaf9b68f 100644 --- a/src/mc/world/level/ticking/TickingAreaDescription.h +++ b/src/mc/world/level/ticking/TickingAreaDescription.h @@ -31,6 +31,6 @@ struct TickingAreaDescription { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/world/level/ticking/TickingAreaListBase.h b/src/mc/world/level/ticking/TickingAreaListBase.h index 0c0d3225e7..cd68252ff1 100644 --- a/src/mc/world/level/ticking/TickingAreaListBase.h +++ b/src/mc/world/level/ticking/TickingAreaListBase.h @@ -56,7 +56,7 @@ class TickingAreaListBase { MCAPI ::std::shared_ptr<::ITickingArea> getAreaFor(::ActorUniqueID const& entityId) const; - MCAPI ::std::vector<::std::shared_ptr<::ITickingArea>> const& getAreas() const; + MCFOLD ::std::vector<::std::shared_ptr<::ITickingArea>> const& getAreas() const; MCAPI ::std::vector<::TickingAreaDescription> getStandaloneTickingAreaDescriptions() const; diff --git a/src/mc/world/level/ticking/TickingAreaView.h b/src/mc/world/level/ticking/TickingAreaView.h index ac0f76d3b3..b7096382cd 100644 --- a/src/mc/world/level/ticking/TickingAreaView.h +++ b/src/mc/world/level/ticking/TickingAreaView.h @@ -105,7 +105,7 @@ class TickingAreaView : public ::ITickingAreaView { MCAPI bool $isCircle() const; - MCAPI bool $isDoneLoading() const; + MCFOLD bool $isDoneLoading() const; MCAPI bool $checkInitialLoadDone(::Tick currentLevelTick); diff --git a/src/mc/world/level/ticking/TickingAreasManager.h b/src/mc/world/level/ticking/TickingAreasManager.h index bfd7e00989..bd5e0740b3 100644 --- a/src/mc/world/level/ticking/TickingAreasManager.h +++ b/src/mc/world/level/ticking/TickingAreasManager.h @@ -148,7 +148,7 @@ class TickingAreasManager { MCAPI ::std::vector<::TickingAreaDescription> getPendingStandaloneAreaDescriptionsByPosition(::DimensionType dimensionId, ::BlockPos const& position) const; - MCAPI bool isPreloadDone() const; + MCFOLD bool isPreloadDone() const; MCAPI void loadArea(::std::string const& key, ::CompoundTag const* tag); diff --git a/src/mc/world/module/GameModuleServer.h b/src/mc/world/module/GameModuleServer.h index c2ba47547a..b83da23bc7 100644 --- a/src/mc/world/module/GameModuleServer.h +++ b/src/mc/world/module/GameModuleServer.h @@ -77,7 +77,7 @@ class GameModuleServer { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND public: diff --git a/src/mc/world/persistence/DynamicProperties.h b/src/mc/world/persistence/DynamicProperties.h index b661cff03c..4a155d5a6e 100644 --- a/src/mc/world/persistence/DynamicProperties.h +++ b/src/mc/world/persistence/DynamicProperties.h @@ -71,7 +71,7 @@ class DynamicProperties { MCAPI void deserialize(::CompoundTag const& root, ::cereal::ReflectionCtx const& ctx); - MCAPI uint64 getCollectionCount() const; + MCFOLD uint64 getCollectionCount() const; MCAPI ::std::variant const* getDynamicProperty(::std::string const& key, ::std::string const& collectionName) const; diff --git a/src/mc/world/persistence/DynamicPropertiesManager.h b/src/mc/world/persistence/DynamicPropertiesManager.h index 50965e7d1b..aff77fdf05 100644 --- a/src/mc/world/persistence/DynamicPropertiesManager.h +++ b/src/mc/world/persistence/DynamicPropertiesManager.h @@ -36,7 +36,7 @@ class DynamicPropertiesManager { MCAPI ::DynamicProperties& getOrAddLevelDynamicProperties(); - MCAPI uint64 getTotalBytesSaved() const; + MCFOLD uint64 getTotalBytesSaved() const; MCAPI void readFromLevelStorage(::LevelStorage& levelStorage); diff --git a/src/mc/world/phys/AABB.h b/src/mc/world/phys/AABB.h index 0dff323e49..347835ade1 100644 --- a/src/mc/world/phys/AABB.h +++ b/src/mc/world/phys/AABB.h @@ -90,7 +90,7 @@ class AABB { MCAPI ::AABB& set(::AABB const& b); - MCAPI ::AABB& set(::Vec3 const& min, ::Vec3 const& max); + MCFOLD ::AABB& set(::Vec3 const& min, ::Vec3 const& max); MCAPI ::AABB& set(float minX, float minY, float minZ, float maxX, float maxY, float maxZ); @@ -117,7 +117,7 @@ class AABB { public: // constructor thunks // NOLINTBEGIN - MCAPI void* $ctor(::Vec3 const& min, ::Vec3 const& max); + MCFOLD void* $ctor(::Vec3 const& min, ::Vec3 const& max); MCAPI void* $ctor(::Vec3 const& min, float side); diff --git a/src/mc/world/phys/HitResultWrapper.h b/src/mc/world/phys/HitResultWrapper.h index aa54133744..b335f1915a 100644 --- a/src/mc/world/phys/HitResultWrapper.h +++ b/src/mc/world/phys/HitResultWrapper.h @@ -34,9 +34,9 @@ class HitResultWrapper { MCAPI void _onGameplayUserRemoved(::EntityContext const& entity); - MCAPI ::HitResult& getHitResult(); + MCFOLD ::HitResult& getHitResult(); - MCAPI ::HitResult& getLiquidHitResult(); + MCFOLD ::HitResult& getLiquidHitResult(); MCAPI void initialize( ::IActorManagerConnector& actorManagerConnector, diff --git a/src/mc/world/phys/rope/AABBBucket.h b/src/mc/world/phys/rope/AABBBucket.h index 070dbedd1a..4cef058968 100644 --- a/src/mc/world/phys/rope/AABBBucket.h +++ b/src/mc/world/phys/rope/AABBBucket.h @@ -2,22 +2,23 @@ #include "mc/_HeaderOutputPredefine.h" +// auto generated forward declare list +// clang-format off +class AABB; +struct RopeAABB; +// clang-format on + struct AABBBucket { public: // member variables // NOLINTBEGIN - ::ll::UntypedStorage<4, 24> mUnk230b65; - ::ll::UntypedStorage<4, 4> mUnk221fb2; - ::ll::UntypedStorage<8, 24> mUnk830088; - ::ll::UntypedStorage<1, 1> mUnk4d486b; - ::ll::UntypedStorage<1, 1> mUnkef625e; + ::ll::TypedStorage<4, 24, ::AABB> mBucketBounds; + ::ll::TypedStorage<4, 4, int> mCachedTicks; + ::ll::TypedStorage<8, 24, ::std::vector<::RopeAABB>> mBBs; + ::ll::TypedStorage<1, 1, bool> mDirty; + ::ll::TypedStorage<1, 1, bool> mNeedsFinalize; // NOLINTEND -public: - // prevent constructor by default - AABBBucket& operator=(AABBBucket const&); - AABBBucket(AABBBucket const&); - public: // member functions // NOLINTBEGIN @@ -29,11 +30,11 @@ struct AABBBucket { MCAPI bool isDirty(); - MCAPI void markDirty(); + MCFOLD void markDirty(); MCAPI void mergeAABBs(); - MCAPI bool needsFinalize() const; + MCFOLD bool needsFinalize() const; // NOLINTEND public: diff --git a/src/mc/world/phys/rope/RopeAABB.h b/src/mc/world/phys/rope/RopeAABB.h index 57b573ccce..a2b0db4f5c 100644 --- a/src/mc/world/phys/rope/RopeAABB.h +++ b/src/mc/world/phys/rope/RopeAABB.h @@ -4,6 +4,7 @@ // auto generated forward declare list // clang-format off +class AABB; class Vec3; struct AABBContactPoint; // clang-format on @@ -12,16 +13,10 @@ struct RopeAABB { public: // member variables // NOLINTBEGIN - ::ll::UntypedStorage<4, 24> mUnk9d4fdf; - ::ll::UntypedStorage<1, 1> mUnkfcf383; + ::ll::TypedStorage<4, 24, ::AABB> mBB; + ::ll::TypedStorage<1, 1, bool> mDenyListed; // NOLINTEND -public: - // prevent constructor by default - RopeAABB& operator=(RopeAABB const&); - RopeAABB(RopeAABB const&); - RopeAABB(); - public: // member functions // NOLINTBEGIN diff --git a/src/mc/world/phys/rope/RopeNode.h b/src/mc/world/phys/rope/RopeNode.h index 9ad497654f..dd52c1a8f6 100644 --- a/src/mc/world/phys/rope/RopeNode.h +++ b/src/mc/world/phys/rope/RopeNode.h @@ -2,18 +2,17 @@ #include "mc/_HeaderOutputPredefine.h" +// auto generated forward declare list +// clang-format off +class Vec3; +// clang-format on + struct RopeNode { public: // member variables // NOLINTBEGIN - ::ll::UntypedStorage<4, 12> mUnk16d274; - ::ll::UntypedStorage<4, 12> mUnkf7d6f6; - ::ll::UntypedStorage<1, 1> mUnk5dc17b; + ::ll::TypedStorage<4, 12, ::Vec3> mPos; + ::ll::TypedStorage<4, 12, ::Vec3> mPrevPos; + ::ll::TypedStorage<1, 1, char> mFrictionAxis; // NOLINTEND - -public: - // prevent constructor by default - RopeNode& operator=(RopeNode const&); - RopeNode(RopeNode const&); - RopeNode(); }; diff --git a/src/mc/world/phys/rope/RopeParams.h b/src/mc/world/phys/rope/RopeParams.h index e789b34f05..e3799144a4 100644 --- a/src/mc/world/phys/rope/RopeParams.h +++ b/src/mc/world/phys/rope/RopeParams.h @@ -21,28 +21,23 @@ struct RopeParams { public: // member variables // NOLINTBEGIN - ::ll::UntypedStorage<4, 4> mUnkf4a723; - ::ll::UntypedStorage<4, 4> mUnkc7baa0; - ::ll::UntypedStorage<4, 4> mUnk78d532; - ::ll::UntypedStorage<4, 4> mUnk860abb; - ::ll::UntypedStorage<4, 4> mUnkefe7eb; - ::ll::UntypedStorage<4, 4> mUnkb82663; - ::ll::UntypedStorage<4, 4> mUnk946de8; - ::ll::UntypedStorage<4, 4> mUnkb4d863; - ::ll::UntypedStorage<4, 12> mUnk357fdc; - ::ll::UntypedStorage<4, 12> mUnk1a6433; - ::ll::UntypedStorage<8, 8> mUnkb608e1; - ::ll::UntypedStorage<8, 8> mUnk6faeff; - ::ll::UntypedStorage<4, 4> mUnk41af79; - ::ll::UntypedStorage<4, 4> mUnk88464a; - ::ll::UntypedStorage<4, 4> mUnkedc8bd; + ::ll::TypedStorage<4, 4, float> mNodeDist; + ::ll::TypedStorage<4, 4, float> mNodeSize; + ::ll::TypedStorage<4, 4, float> mGravity; + ::ll::TypedStorage<4, 4, float> mSlack; + ::ll::TypedStorage<4, 4, float> mMaxTension; + ::ll::TypedStorage<4, 4, float> mVelDamping; + ::ll::TypedStorage<4, 4, float> mRelaxation; + ::ll::TypedStorage<4, 4, float> mFriction; + ::ll::TypedStorage<4, 12, ::Vec3> mStartPin; + ::ll::TypedStorage<4, 12, ::Vec3> mEndPin; + ::ll::TypedStorage<8, 8, uint64> mIterations; + ::ll::TypedStorage<8, 8, uint64> mDestroyDelay; + ::ll::TypedStorage<4, 4, int> mFlags; + ::ll::TypedStorage<4, 4, float> mLength; + ::ll::TypedStorage<4, 4, float> mOriginalNodeDist; // NOLINTEND -public: - // prevent constructor by default - RopeParams& operator=(RopeParams const&); - RopeParams(RopeParams const&); - public: // member functions // NOLINTBEGIN diff --git a/src/mc/world/phys/rope/RopePoint.h b/src/mc/world/phys/rope/RopePoint.h index dae8ddbd19..720f184c9e 100644 --- a/src/mc/world/phys/rope/RopePoint.h +++ b/src/mc/world/phys/rope/RopePoint.h @@ -2,17 +2,16 @@ #include "mc/_HeaderOutputPredefine.h" +// auto generated forward declare list +// clang-format off +class Vec3; +// clang-format on + struct RopePoint { public: // member variables // NOLINTBEGIN - ::ll::UntypedStorage<4, 12> mUnkdc431f; - ::ll::UntypedStorage<4, 12> mUnk4c7785; + ::ll::TypedStorage<4, 12, ::Vec3> mOldPos; + ::ll::TypedStorage<4, 12, ::Vec3> mToNewPos; // NOLINTEND - -public: - // prevent constructor by default - RopePoint& operator=(RopePoint const&); - RopePoint(RopePoint const&); - RopePoint(); }; diff --git a/src/mc/world/phys/rope/RopePoints.h b/src/mc/world/phys/rope/RopePoints.h index 22e0776e5e..528d60ee69 100644 --- a/src/mc/world/phys/rope/RopePoints.h +++ b/src/mc/world/phys/rope/RopePoints.h @@ -5,26 +5,21 @@ // auto generated forward declare list // clang-format off class Vec3; +struct RopePoint; // clang-format on struct RopePoints { public: // member variables // NOLINTBEGIN - ::ll::UntypedStorage<8, 8> mUnkc96835; - ::ll::UntypedStorage<8, 24> mUnk3ebf87; + ::ll::TypedStorage<8, 8, uint64> mSize; + ::ll::TypedStorage<8, 24, ::std::vector<::RopePoint>> mPoints; // NOLINTEND -public: - // prevent constructor by default - RopePoints& operator=(RopePoints const&); - RopePoints(RopePoints const&); - RopePoints(); - public: // member functions // NOLINTBEGIN - MCAPI void beginRope(); + MCFOLD void beginRope(); MCAPI void endRope(); @@ -34,7 +29,7 @@ struct RopePoints { MCAPI void reserve(uint64 size); - MCAPI uint64 size() const; + MCFOLD uint64 size() const; MCAPI ~RopePoints(); // NOLINTEND @@ -42,6 +37,6 @@ struct RopePoints { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/world/phys/rope/RopePointsRef.h b/src/mc/world/phys/rope/RopePointsRef.h index ecad5e98ef..4b8e684b63 100644 --- a/src/mc/world/phys/rope/RopePointsRef.h +++ b/src/mc/world/phys/rope/RopePointsRef.h @@ -2,17 +2,17 @@ #include "mc/_HeaderOutputPredefine.h" +// auto generated forward declare list +// clang-format off +struct RopePoints; +namespace Bedrock::Threading { class Mutex; } +// clang-format on + struct RopePointsRef { public: // member variables // NOLINTBEGIN - ::ll::UntypedStorage<8, 8> mUnk93c480; - ::ll::UntypedStorage<8, 8> mUnk60ca4c; + ::ll::TypedStorage<8, 8, ::RopePoints const&> mPoints; + ::ll::TypedStorage<8, 8, ::Bedrock::Threading::Mutex&> mPointMutex; // NOLINTEND - -public: - // prevent constructor by default - RopePointsRef& operator=(RopePointsRef const&); - RopePointsRef(RopePointsRef const&); - RopePointsRef(); }; diff --git a/src/mc/world/phys/rope/RopeSystem.h b/src/mc/world/phys/rope/RopeSystem.h index 60488acff9..40b7b23faf 100644 --- a/src/mc/world/phys/rope/RopeSystem.h +++ b/src/mc/world/phys/rope/RopeSystem.h @@ -4,44 +4,46 @@ // auto generated forward declare list // clang-format off +class AABB; class BlockSource; class Vec3; struct AABBBucket; +struct AABBPred; +struct ActorUniqueID; +struct RopeNode; struct RopeParams; +struct RopePoints; +struct RopeWave; +namespace Bedrock::Threading { class Mutex; } // clang-format on class RopeSystem { public: // member variables // NOLINTBEGIN - ::ll::UntypedStorage<1, 1> mUnkce34a3; - ::ll::UntypedStorage<8, 32> mUnk280dd2; - ::ll::UntypedStorage<8, 32> mUnk3d6d35; - ::ll::UntypedStorage<8, 24> mUnkfb98c7; - ::ll::UntypedStorage<8, 24> mUnk4457bf; - ::ll::UntypedStorage<8, 24> mUnkd205d8; - ::ll::UntypedStorage<8, 88> mUnkfae5e8; - ::ll::UntypedStorage<8, 16> mUnk5c68a3; - ::ll::UntypedStorage<4, 12> mUnkd3c819; - ::ll::UntypedStorage<4, 12> mUnk97573a; - ::ll::UntypedStorage<8, 8> mUnkb42b2c; - ::ll::UntypedStorage<8, 8> mUnk739c92; - ::ll::UntypedStorage<8, 8> mUnk83f922; - ::ll::UntypedStorage<8, 8> mUnke365be; - ::ll::UntypedStorage<8, 8> mUnkc1e0e1; - ::ll::UntypedStorage<4, 4> mUnk5d427a; - ::ll::UntypedStorage<8, 80> mUnk8b840e; - ::ll::UntypedStorage<1, 1> mUnk2068ee; - ::ll::UntypedStorage<4, 12> mUnkedf1b8; - ::ll::UntypedStorage<4, 12> mUnkb4da06; - ::ll::UntypedStorage<8, 8> mUnk8463ca; + ::ll::TypedStorage<1, 1, bool> mWaveApplied; + ::ll::TypedStorage<8, 32, ::RopePoints> mQueuedRenderPoints; + ::ll::TypedStorage<8, 32, ::RopePoints> mRenderPoints; + ::ll::TypedStorage<8, 24, ::std::vector<::RopeNode>> mNodes; + ::ll::TypedStorage<8, 24, ::std::vector<::AABBBucket>> mColliderBuckets; + ::ll::TypedStorage<8, 24, ::std::vector<::RopeWave>> mWaves; + ::ll::TypedStorage<8, 88, ::RopeParams> mParams; + ::ll::TypedStorage<8, 16, ::std::set<::AABB, ::AABBPred>> mDenyListedColliders; + ::ll::TypedStorage<4, 12, ::Vec3> mPrevStartPin; + ::ll::TypedStorage<4, 12, ::Vec3> mPrevEndPin; + ::ll::TypedStorage<8, 8, uint64> mCutNode; + ::ll::TypedStorage<8, 8, uint64> mCutRenderNode; + ::ll::TypedStorage<8, 8, uint64> mMinNodes; + ::ll::TypedStorage<8, 8, uint64> mCutTicks; + ::ll::TypedStorage<8, 8, ::ActorUniqueID> mEndPinEntity; + ::ll::TypedStorage<4, 4, ::std::atomic_flag> mTicking; + ::ll::TypedStorage<8, 80, ::Bedrock::Threading::Mutex> mRenderMutex; + ::ll::TypedStorage<1, 1, bool> mAbandonCollision; + ::ll::TypedStorage<4, 12, ::Vec3> mStartPin; + ::ll::TypedStorage<4, 12, ::Vec3> mEndPin; + ::ll::TypedStorage<8, 8, uint64> mToCutNode; // NOLINTEND -public: - // prevent constructor by default - RopeSystem& operator=(RopeSystem const&); - RopeSystem(RopeSystem const&); - public: // member functions // NOLINTBEGIN diff --git a/src/mc/world/phys/rope/RopeWave.h b/src/mc/world/phys/rope/RopeWave.h index cc486c67f2..d013593e36 100644 --- a/src/mc/world/phys/rope/RopeWave.h +++ b/src/mc/world/phys/rope/RopeWave.h @@ -2,6 +2,11 @@ #include "mc/_HeaderOutputPredefine.h" +// auto generated forward declare list +// clang-format off +class Vec3; +// clang-format on + struct RopeWave { public: // RopeWave inner types define @@ -13,17 +18,11 @@ struct RopeWave { public: // member variables // NOLINTBEGIN - ::ll::UntypedStorage<4, 12> mUnk9e6388; - ::ll::UntypedStorage<4, 4> mUnk4b458c; - ::ll::UntypedStorage<4, 4> mUnkf82952; - ::ll::UntypedStorage<8, 8> mUnk7bd9c0; - ::ll::UntypedStorage<4, 4> mUnk7f88f8; - ::ll::UntypedStorage<4, 4> mUnk358ce3; + ::ll::TypedStorage<4, 12, ::Vec3> mForce; + ::ll::TypedStorage<4, 4, float> mSpeed; + ::ll::TypedStorage<4, 4, float> mDamping; + ::ll::TypedStorage<8, 8, uint64> mCurNode; + ::ll::TypedStorage<4, 4, float> mDistAlongNode; + ::ll::TypedStorage<4, 4, ::RopeWave::Direction> mDir; // NOLINTEND - -public: - // prevent constructor by default - RopeWave& operator=(RopeWave const&); - RopeWave(RopeWave const&); - RopeWave(); }; diff --git a/src/mc/world/redstone/circuit/ChunkCircuitComponentList.h b/src/mc/world/redstone/circuit/ChunkCircuitComponentList.h index 545c9b46de..02594cfb60 100644 --- a/src/mc/world/redstone/circuit/ChunkCircuitComponentList.h +++ b/src/mc/world/redstone/circuit/ChunkCircuitComponentList.h @@ -45,6 +45,6 @@ struct ChunkCircuitComponentList { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/world/redstone/circuit/CircuitSceneGraph.h b/src/mc/world/redstone/circuit/CircuitSceneGraph.h index 69290074a7..cb87c5e1a3 100644 --- a/src/mc/world/redstone/circuit/CircuitSceneGraph.h +++ b/src/mc/world/redstone/circuit/CircuitSceneGraph.h @@ -47,7 +47,7 @@ class CircuitSceneGraph { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/world/redstone/circuit/components/BaseCircuitComponent.h b/src/mc/world/redstone/circuit/components/BaseCircuitComponent.h index 8b093c768d..1392f68c7b 100644 --- a/src/mc/world/redstone/circuit/components/BaseCircuitComponent.h +++ b/src/mc/world/redstone/circuit/components/BaseCircuitComponent.h @@ -163,54 +163,54 @@ class BaseCircuitComponent { public: // virtual function thunks // NOLINTBEGIN - MCAPI int $getStrength() const; + MCFOLD int $getStrength() const; - MCAPI int $getDirection() const; + MCFOLD int $getDirection() const; - MCAPI void $setStrength(int strength); + MCFOLD void $setStrength(int strength); - MCAPI void $setDirection(uchar direction); + MCFOLD void $setDirection(uchar direction); - MCAPI void $setConsumePowerAnyDirection(bool canConsumePowerAnyDirection); + MCFOLD void $setConsumePowerAnyDirection(bool canConsumePowerAnyDirection); - MCAPI bool $canConsumePowerAnyDirection() const; + MCFOLD bool $canConsumePowerAnyDirection() const; - MCAPI bool $canConsumerPower() const; + MCFOLD bool $canConsumerPower() const; - MCAPI bool $canStopPower() const; + MCFOLD bool $canStopPower() const; - MCAPI void $setStopPower(bool bPower); + MCFOLD void $setStopPower(bool bPower); MCAPI void $removeSource(::BlockPos const& posSource, ::BaseCircuitComponent const* pComponent); - MCAPI bool + MCFOLD bool $addSource(::CircuitSceneGraph& graph, ::CircuitTrackingInfo const& info, int& dampening, bool& bDirectlyPowered); - MCAPI bool $allowConnection(::CircuitSceneGraph& graph, ::CircuitTrackingInfo const& info, bool& bDirectlyPowered); + MCFOLD bool $allowConnection(::CircuitSceneGraph& graph, ::CircuitTrackingInfo const& info, bool& bDirectlyPowered); - MCAPI void $checkLock(::CircuitSystem& system, ::BlockPos const& pos); + MCFOLD void $checkLock(::CircuitSystem& system, ::BlockPos const& pos); - MCAPI bool $evaluate(::CircuitSystem& system, ::BlockPos const& pos); + MCFOLD bool $evaluate(::CircuitSystem& system, ::BlockPos const& pos); - MCAPI void $cacheValues(::CircuitSystem& system, ::BlockPos const& pos); + MCFOLD void $cacheValues(::CircuitSystem& system, ::BlockPos const& pos); - MCAPI void $updateDependencies(::CircuitSceneGraph& system, ::BlockPos const& pos); + MCFOLD void $updateDependencies(::CircuitSceneGraph& system, ::BlockPos const& pos); - MCAPI ::RedstoneLogicExecutionFlags $getLogicExecutionFlags() const; + MCFOLD ::RedstoneLogicExecutionFlags $getLogicExecutionFlags() const; - MCAPI bool $allowIndirect() const; + MCFOLD bool $allowIndirect() const; - MCAPI bool $isHalfPulse() const; + MCFOLD bool $isHalfPulse() const; MCAPI bool $hasSource(::BaseCircuitComponent const& source) const; - MCAPI bool $hasChildrenSource() const; + MCFOLD bool $hasChildrenSource() const; - MCAPI bool $isSecondaryPowered() const; + MCFOLD bool $isSecondaryPowered() const; MCAPI void $removeFromAnySourceList(::BaseCircuitComponent const* component); - MCAPI ::CircuitComponentType $getCircuitComponentType() const; + MCFOLD ::CircuitComponentType $getCircuitComponentType() const; MCAPI ::CircuitComponentType $getCircuitComponentGroupType() const; // NOLINTEND diff --git a/src/mc/world/redstone/circuit/components/BaseRailTransporter.h b/src/mc/world/redstone/circuit/components/BaseRailTransporter.h index 397d97c852..036285b8ff 100644 --- a/src/mc/world/redstone/circuit/components/BaseRailTransporter.h +++ b/src/mc/world/redstone/circuit/components/BaseRailTransporter.h @@ -70,7 +70,7 @@ class BaseRailTransporter : public ::BaseCircuitComponent { MCAPI bool $evaluate(::CircuitSystem& system, ::BlockPos const& pos); - MCAPI ::CircuitComponentType $getCircuitComponentType() const; + MCFOLD ::CircuitComponentType $getCircuitComponentType() const; // NOLINTEND public: diff --git a/src/mc/world/redstone/circuit/components/CapacitorComponent.h b/src/mc/world/redstone/circuit/components/CapacitorComponent.h index 49538eac2a..6c2156de21 100644 --- a/src/mc/world/redstone/circuit/components/CapacitorComponent.h +++ b/src/mc/world/redstone/circuit/components/CapacitorComponent.h @@ -47,9 +47,9 @@ class CapacitorComponent : public ::ProducerComponent { public: // virtual function thunks // NOLINTBEGIN - MCAPI uchar $getPoweroutDirection() const; + MCFOLD uchar $getPoweroutDirection() const; - MCAPI ::CircuitComponentType $getCircuitComponentType() const; + MCFOLD ::CircuitComponentType $getCircuitComponentType() const; // NOLINTEND public: diff --git a/src/mc/world/redstone/circuit/components/CircuitComponentList.h b/src/mc/world/redstone/circuit/components/CircuitComponentList.h index 8035be4a46..aa84393458 100644 --- a/src/mc/world/redstone/circuit/components/CircuitComponentList.h +++ b/src/mc/world/redstone/circuit/components/CircuitComponentList.h @@ -44,6 +44,6 @@ class CircuitComponentList { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/world/redstone/circuit/components/ComparatorCapacitor.h b/src/mc/world/redstone/circuit/components/ComparatorCapacitor.h index 28fcb2dfb5..79d560222a 100644 --- a/src/mc/world/redstone/circuit/components/ComparatorCapacitor.h +++ b/src/mc/world/redstone/circuit/components/ComparatorCapacitor.h @@ -80,7 +80,7 @@ class ComparatorCapacitor : public ::SidePoweredComponent { MCAPI void setAnalogStrength(int strength, uchar dir); - MCAPI void setMode(::ComparatorCapacitor::Mode mode); + MCFOLD void setMode(::ComparatorCapacitor::Mode mode); // NOLINTEND public: @@ -107,9 +107,9 @@ class ComparatorCapacitor : public ::SidePoweredComponent { MCAPI void $updateDependencies(::CircuitSceneGraph& system, ::BlockPos const& pos); - MCAPI ::RedstoneLogicExecutionFlags $getLogicExecutionFlags() const; + MCFOLD ::RedstoneLogicExecutionFlags $getLogicExecutionFlags() const; - MCAPI ::CircuitComponentType $getCircuitComponentType() const; + MCFOLD ::CircuitComponentType $getCircuitComponentType() const; // NOLINTEND public: diff --git a/src/mc/world/redstone/circuit/components/ConsumerComponent.h b/src/mc/world/redstone/circuit/components/ConsumerComponent.h index 443e4449ae..ba355c8a42 100644 --- a/src/mc/world/redstone/circuit/components/ConsumerComponent.h +++ b/src/mc/world/redstone/circuit/components/ConsumerComponent.h @@ -85,11 +85,11 @@ class ConsumerComponent : public ::BaseCircuitComponent { MCAPI bool $addSource(::CircuitSceneGraph& graph, ::CircuitTrackingInfo const& info, int& dampening, bool& bDirectlyPowered); - MCAPI bool $canConsumerPower() const; + MCFOLD bool $canConsumerPower() const; - MCAPI bool $isSecondaryPowered() const; + MCFOLD bool $isSecondaryPowered() const; - MCAPI ::CircuitComponentType $getCircuitComponentType() const; + MCFOLD ::CircuitComponentType $getCircuitComponentType() const; // NOLINTEND public: diff --git a/src/mc/world/redstone/circuit/components/PistonConsumer.h b/src/mc/world/redstone/circuit/components/PistonConsumer.h index 843b606d73..5f9421f62f 100644 --- a/src/mc/world/redstone/circuit/components/PistonConsumer.h +++ b/src/mc/world/redstone/circuit/components/PistonConsumer.h @@ -68,14 +68,14 @@ class PistonConsumer : public ::ConsumerComponent { public: // virtual function thunks // NOLINTBEGIN - MCAPI bool $canConsumePowerAnyDirection() const; + MCFOLD bool $canConsumePowerAnyDirection() const; - MCAPI bool $allowConnection(::CircuitSceneGraph& graph, ::CircuitTrackingInfo const& info, bool& bDirectlyPowered); + MCFOLD bool $allowConnection(::CircuitSceneGraph& graph, ::CircuitTrackingInfo const& info, bool& bDirectlyPowered); MCAPI bool $addSource(::CircuitSceneGraph& graph, ::CircuitTrackingInfo const& info, int& dampening, bool& bDirectlyPowered); - MCAPI ::CircuitComponentType $getCircuitComponentType() const; + MCFOLD ::CircuitComponentType $getCircuitComponentType() const; // NOLINTEND public: diff --git a/src/mc/world/redstone/circuit/components/PoweredBlockComponent.h b/src/mc/world/redstone/circuit/components/PoweredBlockComponent.h index 1425d1288f..022199038d 100644 --- a/src/mc/world/redstone/circuit/components/PoweredBlockComponent.h +++ b/src/mc/world/redstone/circuit/components/PoweredBlockComponent.h @@ -83,15 +83,15 @@ class PoweredBlockComponent : public ::BaseCircuitComponent { MCAPI bool $addSource(::CircuitSceneGraph& graph, ::CircuitTrackingInfo const& info, int& dampening, bool& bDirectlyPowered); - MCAPI bool $evaluate(::CircuitSystem& system, ::BlockPos const& pos); + MCFOLD bool $evaluate(::CircuitSystem& system, ::BlockPos const& pos); - MCAPI bool $canConsumerPower() const; + MCFOLD bool $canConsumerPower() const; - MCAPI bool $hasChildrenSource() const; + MCFOLD bool $hasChildrenSource() const; MCAPI int $getStrength() const; - MCAPI ::CircuitComponentType $getCircuitComponentType() const; + MCFOLD ::CircuitComponentType $getCircuitComponentType() const; // NOLINTEND public: diff --git a/src/mc/world/redstone/circuit/components/ProducerComponent.h b/src/mc/world/redstone/circuit/components/ProducerComponent.h index 50560f6520..ef0e5eb64c 100644 --- a/src/mc/world/redstone/circuit/components/ProducerComponent.h +++ b/src/mc/world/redstone/circuit/components/ProducerComponent.h @@ -81,9 +81,9 @@ class ProducerComponent : public ::BaseCircuitComponent { MCAPI bool $canStopPower() const; - MCAPI void $setStopPower(bool bPower); + MCFOLD void $setStopPower(bool bPower); - MCAPI ::CircuitComponentType $getCircuitComponentType() const; + MCFOLD ::CircuitComponentType $getCircuitComponentType() const; // NOLINTEND public: diff --git a/src/mc/world/redstone/circuit/components/PulseCapacitor.h b/src/mc/world/redstone/circuit/components/PulseCapacitor.h index 4f41a4b881..13b2985b10 100644 --- a/src/mc/world/redstone/circuit/components/PulseCapacitor.h +++ b/src/mc/world/redstone/circuit/components/PulseCapacitor.h @@ -76,21 +76,21 @@ class PulseCapacitor : public ::CapacitorComponent { public: // virtual function thunks // NOLINTBEGIN - MCAPI bool $canConsumePowerAnyDirection() const; + MCFOLD bool $canConsumePowerAnyDirection() const; - MCAPI bool $canConsumerPower() const; + MCFOLD bool $canConsumerPower() const; - MCAPI bool $allowConnection(::CircuitSceneGraph& graph, ::CircuitTrackingInfo const& info, bool& bDirectlyPowered); + MCFOLD bool $allowConnection(::CircuitSceneGraph& graph, ::CircuitTrackingInfo const& info, bool& bDirectlyPowered); - MCAPI uchar $getPoweroutDirection() const; + MCFOLD uchar $getPoweroutDirection() const; MCAPI bool $evaluate(::CircuitSystem& system, ::BlockPos const& pos); MCAPI void $setStrength(int strength); - MCAPI int $getStrength() const; + MCFOLD int $getStrength() const; - MCAPI ::CircuitComponentType $getCircuitComponentType() const; + MCFOLD ::CircuitComponentType $getCircuitComponentType() const; // NOLINTEND public: diff --git a/src/mc/world/redstone/circuit/components/RedstoneTorchCapacitor.h b/src/mc/world/redstone/circuit/components/RedstoneTorchCapacitor.h index 96b2d6c628..dd95b26415 100644 --- a/src/mc/world/redstone/circuit/components/RedstoneTorchCapacitor.h +++ b/src/mc/world/redstone/circuit/components/RedstoneTorchCapacitor.h @@ -123,7 +123,7 @@ class RedstoneTorchCapacitor : public ::CapacitorComponent { public: // virtual function thunks // NOLINTBEGIN - MCAPI uchar $getPoweroutDirection() const; + MCFOLD uchar $getPoweroutDirection() const; MCAPI bool $allowConnection(::CircuitSceneGraph& graph, ::CircuitTrackingInfo const& info, bool& bDirectlyPowered); @@ -140,9 +140,9 @@ class RedstoneTorchCapacitor : public ::CapacitorComponent { MCAPI bool $isHalfPulse() const; - MCAPI ::CircuitComponentType $getCircuitComponentType() const; + MCFOLD ::CircuitComponentType $getCircuitComponentType() const; - MCAPI ::RedstoneLogicExecutionFlags $getLogicExecutionFlags() const; + MCFOLD ::RedstoneLogicExecutionFlags $getLogicExecutionFlags() const; MCAPI void $updateDependencies(::CircuitSceneGraph& system, ::BlockPos const& pos); // NOLINTEND diff --git a/src/mc/world/redstone/circuit/components/RepeaterCapacitor.h b/src/mc/world/redstone/circuit/components/RepeaterCapacitor.h index 50a3d637dd..50549289f9 100644 --- a/src/mc/world/redstone/circuit/components/RepeaterCapacitor.h +++ b/src/mc/world/redstone/circuit/components/RepeaterCapacitor.h @@ -116,9 +116,9 @@ class RepeaterCapacitor : public ::SidePoweredComponent { MCAPI int $getStrength() const; - MCAPI ::RedstoneLogicExecutionFlags $getLogicExecutionFlags() const; + MCFOLD ::RedstoneLogicExecutionFlags $getLogicExecutionFlags() const; - MCAPI ::CircuitComponentType $getCircuitComponentType() const; + MCFOLD ::CircuitComponentType $getCircuitComponentType() const; // NOLINTEND public: diff --git a/src/mc/world/redstone/circuit/components/SidePoweredComponent.h b/src/mc/world/redstone/circuit/components/SidePoweredComponent.h index 0370434a66..3bec205e70 100644 --- a/src/mc/world/redstone/circuit/components/SidePoweredComponent.h +++ b/src/mc/world/redstone/circuit/components/SidePoweredComponent.h @@ -56,13 +56,13 @@ class SidePoweredComponent : public ::CapacitorComponent { public: // virtual function thunks // NOLINTBEGIN - MCAPI uchar $getPoweroutDirection() const; + MCFOLD uchar $getPoweroutDirection() const; - MCAPI bool $allowConnection(::CircuitSceneGraph& graph, ::CircuitTrackingInfo const& info, bool& bDirectlyPowered); + MCFOLD bool $allowConnection(::CircuitSceneGraph& graph, ::CircuitTrackingInfo const& info, bool& bDirectlyPowered); - MCAPI bool $canConsumePowerAnyDirection() const; + MCFOLD bool $canConsumePowerAnyDirection() const; - MCAPI bool $canConsumerPower() const; + MCFOLD bool $canConsumerPower() const; MCAPI void $removeSource(::BlockPos const& posSource, ::BaseCircuitComponent const* pComponent); diff --git a/src/mc/world/redstone/circuit/components/TransporterComponent.h b/src/mc/world/redstone/circuit/components/TransporterComponent.h index b413473358..ee13aa1c1e 100644 --- a/src/mc/world/redstone/circuit/components/TransporterComponent.h +++ b/src/mc/world/redstone/circuit/components/TransporterComponent.h @@ -85,13 +85,13 @@ class TransporterComponent : public ::BaseCircuitComponent { MCAPI bool $allowConnection(::CircuitSceneGraph& graph, ::CircuitTrackingInfo const& info, bool& bDirectlyPowered); - MCAPI bool $canConsumerPower() const; + MCFOLD bool $canConsumerPower() const; - MCAPI ::RedstoneLogicExecutionFlags $getLogicExecutionFlags() const; + MCFOLD ::RedstoneLogicExecutionFlags $getLogicExecutionFlags() const; MCAPI bool $evaluate(::CircuitSystem& system, ::BlockPos const& pos); - MCAPI ::CircuitComponentType $getCircuitComponentType() const; + MCFOLD ::CircuitComponentType $getCircuitComponentType() const; // NOLINTEND public: diff --git a/src/mc/world/response/ActorCommandResponse.h b/src/mc/world/response/ActorCommandResponse.h index 4c4751b312..83f942baf3 100644 --- a/src/mc/world/response/ActorCommandResponse.h +++ b/src/mc/world/response/ActorCommandResponse.h @@ -28,7 +28,7 @@ class ActorCommandResponse : public ::CommandResponseBase, public ::ActorEventRe // vIndex: 3 virtual void buildSchema( ::std::shared_ptr<::JsonUtil::JsonSchemaObjectNode<::JsonUtil::EmptyClass, ::ActorEventResponseCollection>>& - root, + schema, ::Factory<::ActorEventResponse> const& factory ) const /*override*/; @@ -45,13 +45,13 @@ class ActorCommandResponse : public ::CommandResponseBase, public ::ActorEventRe public: // virtual function thunks // NOLINTBEGIN - MCAPI ::std::string const& $getName() const; + MCFOLD ::std::string const& $getName() const; - MCAPI void $executeAction(::RenderParams& params) const; + MCFOLD void $executeAction(::RenderParams& params) const; MCAPI void $buildSchema( ::std::shared_ptr<::JsonUtil::JsonSchemaObjectNode<::JsonUtil::EmptyClass, ::ActorEventResponseCollection>>& - root, + schema, ::Factory<::ActorEventResponse> const& factory ) const; // NOLINTEND diff --git a/src/mc/world/response/ActorEventResponse.h b/src/mc/world/response/ActorEventResponse.h index 02fe019913..6555cb51f6 100644 --- a/src/mc/world/response/ActorEventResponse.h +++ b/src/mc/world/response/ActorEventResponse.h @@ -43,9 +43,9 @@ class ActorEventResponse { public: // virtual function thunks // NOLINTBEGIN - MCAPI ::std::string const& $getName() const; + MCFOLD ::std::string const& $getName() const; - MCAPI void $buildSchema( + MCFOLD void $buildSchema( ::std::shared_ptr<::JsonUtil::JsonSchemaObjectNode<::JsonUtil::EmptyClass, ::ActorEventResponseCollection>>& schema, ::Factory<::ActorEventResponse> const& factory diff --git a/src/mc/world/response/ActorQueueCommandResponse.h b/src/mc/world/response/ActorQueueCommandResponse.h index 6e849fb616..3d0ec8921e 100644 --- a/src/mc/world/response/ActorQueueCommandResponse.h +++ b/src/mc/world/response/ActorQueueCommandResponse.h @@ -57,7 +57,7 @@ class ActorQueueCommandResponse : public ::CommandResponseBase, public ::ActorEv // NOLINTBEGIN MCAPI ::std::string const& $getName() const; - MCAPI void $executeAction(::RenderParams& params) const; + MCFOLD void $executeAction(::RenderParams& params) const; MCAPI void $buildSchema( ::std::shared_ptr<::JsonUtil::JsonSchemaObjectNode<::JsonUtil::EmptyClass, ::ActorEventResponseCollection>>& @@ -65,7 +65,7 @@ class ActorQueueCommandResponse : public ::CommandResponseBase, public ::ActorEv ::Factory<::ActorEventResponse> const& factory ) const; - MCAPI ::CommandOriginSystem $_getCommandOriginSystem() const; + MCFOLD ::CommandOriginSystem $_getCommandOriginSystem() const; // NOLINTEND public: diff --git a/src/mc/world/response/CommandResponse.h b/src/mc/world/response/CommandResponse.h index 87b7da8ad9..898d36814b 100644 --- a/src/mc/world/response/CommandResponse.h +++ b/src/mc/world/response/CommandResponse.h @@ -44,9 +44,9 @@ class CommandResponse : public ::CommandResponseBase, public ::EventResponse { public: // virtual function thunks // NOLINTBEGIN - MCAPI ::std::string const& $getName() const; + MCFOLD ::std::string const& $getName() const; - MCAPI void $executeAction(::RenderParams& params) const; + MCFOLD void $executeAction(::RenderParams& params) const; MCAPI void $buildSchema( ::std::shared_ptr<::JsonUtil::JsonSchemaObjectNode<::JsonUtil::EmptyClass, ::EventResponseCollection>>& schema, diff --git a/src/mc/world/response/CommandResponseBase.h b/src/mc/world/response/CommandResponseBase.h index 50068205a4..ca1909776b 100644 --- a/src/mc/world/response/CommandResponseBase.h +++ b/src/mc/world/response/CommandResponseBase.h @@ -64,6 +64,6 @@ class CommandResponseBase { public: // virtual function thunks // NOLINTBEGIN - MCAPI ::CommandOriginSystem $_getCommandOriginSystem() const; + MCFOLD ::CommandOriginSystem $_getCommandOriginSystem() const; // NOLINTEND }; diff --git a/src/mc/world/response/EmitVibrationResponse.h b/src/mc/world/response/EmitVibrationResponse.h index 9ce8d54174..4470da21b0 100644 --- a/src/mc/world/response/EmitVibrationResponse.h +++ b/src/mc/world/response/EmitVibrationResponse.h @@ -39,7 +39,7 @@ class EmitVibrationResponse : public ::ActorEventResponse { // vIndex: 3 virtual void buildSchema( ::std::shared_ptr<::JsonUtil::JsonSchemaObjectNode<::JsonUtil::EmptyClass, ::ActorEventResponseCollection>>& - root, + schema, ::Factory<::ActorEventResponse> const& factory ) const /*override*/; @@ -68,7 +68,7 @@ class EmitVibrationResponse : public ::ActorEventResponse { MCAPI void $buildSchema( ::std::shared_ptr<::JsonUtil::JsonSchemaObjectNode<::JsonUtil::EmptyClass, ::ActorEventResponseCollection>>& - root, + schema, ::Factory<::ActorEventResponse> const& factory ) const; // NOLINTEND diff --git a/src/mc/world/response/EventResponse.h b/src/mc/world/response/EventResponse.h index 8b2f2c8222..06a2a37ff5 100644 --- a/src/mc/world/response/EventResponse.h +++ b/src/mc/world/response/EventResponse.h @@ -42,9 +42,9 @@ class EventResponse { public: // virtual function thunks // NOLINTBEGIN - MCAPI ::std::string const& $getName() const; + MCFOLD ::std::string const& $getName() const; - MCAPI void $buildSchema( + MCFOLD void $buildSchema( ::std::shared_ptr<::JsonUtil::JsonSchemaObjectNode<::JsonUtil::EmptyClass, ::EventResponseCollection>>& schema, ::Factory<::EventResponse> const& factory ) const; diff --git a/src/mc/world/response/MobEffectResponse.h b/src/mc/world/response/MobEffectResponse.h index 925bf48b24..aee6041f35 100644 --- a/src/mc/world/response/MobEffectResponse.h +++ b/src/mc/world/response/MobEffectResponse.h @@ -4,12 +4,14 @@ // auto generated inclusion list #include "mc/deps/core/utility/json_utils/JsonSchemaObjectNode.h" +#include "mc/deps/shared_types/FilterSubject.h" #include "mc/util/Factory.h" #include "mc/world/response/EventResponse.h" // auto generated forward declare list // clang-format off class RenderParams; +struct EffectDuration; struct EventResponseCollection; namespace JsonUtil { class EmptyClass; } // clang-format on @@ -18,18 +20,12 @@ class MobEffectResponse : public ::EventResponse { public: // member variables // NOLINTBEGIN - ::ll::UntypedStorage<8, 32> mUnk414b8b; - ::ll::UntypedStorage<4, 4> mUnk96fe55; - ::ll::UntypedStorage<4, 4> mUnk15c4b0; - ::ll::UntypedStorage<2, 2> mUnkd4032f; + ::ll::TypedStorage<8, 32, ::std::string> mEffect; + ::ll::TypedStorage<4, 4, ::EffectDuration> mDuration; + ::ll::TypedStorage<4, 4, int> mAmplifier; + ::ll::TypedStorage<2, 2, ::SharedTypes::Legacy::FilterSubject> mTarget; // NOLINTEND -public: - // prevent constructor by default - MobEffectResponse& operator=(MobEffectResponse const&); - MobEffectResponse(MobEffectResponse const&); - MobEffectResponse(); - public: // virtual functions // NOLINTBEGIN diff --git a/src/mc/world/response/TeleportResponse.h b/src/mc/world/response/TeleportResponse.h index 2d6743940a..9ff319414a 100644 --- a/src/mc/world/response/TeleportResponse.h +++ b/src/mc/world/response/TeleportResponse.h @@ -42,7 +42,7 @@ class TeleportResponse : public ::EventResponse { // vIndex: 3 virtual void buildSchema( - ::std::shared_ptr<::JsonUtil::JsonSchemaObjectNode<::JsonUtil::EmptyClass, ::EventResponseCollection>>& schema, + ::std::shared_ptr<::JsonUtil::JsonSchemaObjectNode<::JsonUtil::EmptyClass, ::EventResponseCollection>>& root, ::Factory<::EventResponse> const& factory ) const /*override*/; @@ -70,7 +70,7 @@ class TeleportResponse : public ::EventResponse { MCAPI void $executeAction(::RenderParams& params) const; MCAPI void $buildSchema( - ::std::shared_ptr<::JsonUtil::JsonSchemaObjectNode<::JsonUtil::EmptyClass, ::EventResponseCollection>>& schema, + ::std::shared_ptr<::JsonUtil::JsonSchemaObjectNode<::JsonUtil::EmptyClass, ::EventResponseCollection>>& root, ::Factory<::EventResponse> const& factory ) const; // NOLINTEND diff --git a/src/mc/world/scores/DisplayObjective.h b/src/mc/world/scores/DisplayObjective.h index b2ea462e16..2c4e69a3a4 100644 --- a/src/mc/world/scores/DisplayObjective.h +++ b/src/mc/world/scores/DisplayObjective.h @@ -26,13 +26,13 @@ class DisplayObjective { // NOLINTBEGIN MCAPI ::std::string const getBelowNameStringForId(::ScoreboardId const& scoreboardId) const; - MCAPI ::Objective const& getObjective() const; + MCFOLD ::Objective const& getObjective() const; - MCAPI ::ObjectiveSortOrder getSortOrder() const; + MCFOLD ::ObjectiveSortOrder getSortOrder() const; MCAPI bool isDisplaying(::Objective const& targetObjective) const; - MCAPI bool isValid() const; + MCFOLD bool isValid() const; // NOLINTEND public: diff --git a/src/mc/world/scores/IdentityDefinition.h b/src/mc/world/scores/IdentityDefinition.h index 73be5b872f..55124eae81 100644 --- a/src/mc/world/scores/IdentityDefinition.h +++ b/src/mc/world/scores/IdentityDefinition.h @@ -39,18 +39,18 @@ class IdentityDefinition { MCAPI IdentityDefinition(::IdentityDefinition const& o); - MCAPI ::ActorUniqueID const& getEntityId() const; + MCFOLD ::ActorUniqueID const& getEntityId() const; - MCAPI ::std::string const& getFakePlayerName() const; + MCFOLD ::std::string const& getFakePlayerName() const; - MCAPI ::IdentityDefinition::Type getIdentityType() const; + MCFOLD ::IdentityDefinition::Type getIdentityType() const; MCAPI ::std::string const& getName(::std::function<::std::string const&(::ActorUniqueID)> const& playerNameResolver ) const; - MCAPI ::PlayerScoreboardId const& getPlayerId() const; + MCFOLD ::PlayerScoreboardId const& getPlayerId() const; - MCAPI ::ScoreboardId const& getScoreboardId() const; + MCFOLD ::ScoreboardId const& getScoreboardId() const; MCAPI bool isEntityType() const; @@ -82,6 +82,6 @@ class IdentityDefinition { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; diff --git a/src/mc/world/scores/Objective.h b/src/mc/world/scores/Objective.h index 2770e3a055..cbde941ac3 100644 --- a/src/mc/world/scores/Objective.h +++ b/src/mc/world/scores/Objective.h @@ -36,21 +36,21 @@ class Objective : public ::Bedrock::EnableNonOwnerReferences { // NOLINTBEGIN MCAPI Objective(::std::string const& name, ::ObjectiveCriteria const& criteria); - MCAPI ::ObjectiveCriteria const& getCriteria() const; + MCFOLD ::ObjectiveCriteria const& getCriteria() const; - MCAPI ::std::string const& getDisplayName() const; + MCFOLD ::std::string const& getDisplayName() const; - MCAPI ::std::string const& getName() const; + MCFOLD ::std::string const& getName() const; MCAPI ::ScoreInfo getPlayerScore(::ScoreboardId const& id) const; MCAPI ::std::vector<::ScoreboardId> getPlayers() const; - MCAPI ::std::unordered_map<::ScoreboardId, int> const& getScores() const; + MCFOLD ::std::unordered_map<::ScoreboardId, int> const& getScores() const; MCAPI bool hasScore(::ScoreboardId const& id) const; - MCAPI bool hasScores() const; + MCFOLD bool hasScores() const; // NOLINTEND public: diff --git a/src/mc/world/scores/ObjectiveCriteria.h b/src/mc/world/scores/ObjectiveCriteria.h index 500fd64352..f65f64ea4d 100644 --- a/src/mc/world/scores/ObjectiveCriteria.h +++ b/src/mc/world/scores/ObjectiveCriteria.h @@ -22,9 +22,9 @@ class ObjectiveCriteria { public: // member functions // NOLINTBEGIN - MCAPI ::std::string const& getName() const; + MCFOLD ::std::string const& getName() const; - MCAPI bool isReadOnly() const; + MCFOLD bool isReadOnly() const; // NOLINTEND public: diff --git a/src/mc/world/scores/PlayerScore.h b/src/mc/world/scores/PlayerScore.h index 9a52a4f601..a8914262fd 100644 --- a/src/mc/world/scores/PlayerScore.h +++ b/src/mc/world/scores/PlayerScore.h @@ -24,6 +24,6 @@ struct PlayerScore { public: // member functions // NOLINTBEGIN - MCAPI ::ScoreboardId const& getId() const; + MCFOLD ::ScoreboardId const& getId() const; // NOLINTEND }; diff --git a/src/mc/world/scores/PlayerScoreboardId.h b/src/mc/world/scores/PlayerScoreboardId.h index d0f244679f..909da13cb0 100644 --- a/src/mc/world/scores/PlayerScoreboardId.h +++ b/src/mc/world/scores/PlayerScoreboardId.h @@ -28,6 +28,6 @@ struct PlayerScoreboardId { // NOLINTBEGIN MCAPI void* $ctor(); - MCAPI void* $ctor(int64 actorUniqueId); + MCFOLD void* $ctor(int64 actorUniqueId); // NOLINTEND }; diff --git a/src/mc/world/scores/Scoreboard.h b/src/mc/world/scores/Scoreboard.h index 5afaa5433f..79f2b0d00d 100644 --- a/src/mc/world/scores/Scoreboard.h +++ b/src/mc/world/scores/Scoreboard.h @@ -111,9 +111,9 @@ class Scoreboard { MCAPI void _addLoadedObjective(::std::unique_ptr<::Objective> newObjective); - MCAPI ::std::unordered_map<::std::string, ::std::unique_ptr<::ObjectiveCriteria>> const& _getCriteriaMap() const; + MCFOLD ::std::unordered_map<::std::string, ::std::unique_ptr<::ObjectiveCriteria>> const& _getCriteriaMap() const; - MCAPI ::std::unordered_map<::std::string, ::std::unique_ptr<::Objective>> const& _getObjectiveMap() const; + MCFOLD ::std::unordered_map<::std::string, ::std::unique_ptr<::Objective>> const& _getObjectiveMap() const; MCAPI void _init(); @@ -156,7 +156,7 @@ class Scoreboard { MCAPI ::std::vector<::Objective const*> getObjectives() const; - MCAPI ::ScoreboardEventCoordinator& getScoreboardEventCoordinator(); + MCFOLD ::ScoreboardEventCoordinator& getScoreboardEventCoordinator(); MCAPI ::ScoreboardId const& getScoreboardId(::Actor const& entity) const; @@ -263,11 +263,11 @@ class Scoreboard { MCAPI ::Objective* $clearDisplayObjective(::std::string const& displaySlotName); - MCAPI ::ScoreboardId const& $createScoreboardId(::Player const& player); + MCFOLD ::ScoreboardId const& $createScoreboardId(::Player const& player); - MCAPI ::ScoreboardId const& $createScoreboardId(::Actor const& entity); + MCFOLD ::ScoreboardId const& $createScoreboardId(::Actor const& entity); - MCAPI ::ScoreboardId const& $createScoreboardId(::std::string const& fakePlayer); + MCFOLD ::ScoreboardId const& $createScoreboardId(::std::string const& fakePlayer); MCAPI void $onObjectiveAdded(::Objective const& objective); @@ -275,19 +275,19 @@ class Scoreboard { MCAPI void $onScoreChanged(::ScoreboardId const& id, ::Objective const& obj); - MCAPI void $onPlayerScoreRemoved(::ScoreboardId const& id, ::Objective const& objective); + MCFOLD void $onPlayerScoreRemoved(::ScoreboardId const& id, ::Objective const& objective); - MCAPI void $onPlayerJoined(::Player const& player); + MCFOLD void $onPlayerJoined(::Player const& player); - MCAPI void $onPlayerIdentityUpdated(::PlayerScoreboardId const& playerId); + MCFOLD void $onPlayerIdentityUpdated(::PlayerScoreboardId const& playerId); - MCAPI void $tick(); + MCFOLD void $tick(); - MCAPI void $setPacketSender(::PacketSender* sender); + MCFOLD void $setPacketSender(::PacketSender* sender); - MCAPI void $writeToLevelStorage(); + MCFOLD void $writeToLevelStorage(); - MCAPI bool $isClientSide() const; + MCFOLD bool $isClientSide() const; // NOLINTEND public: diff --git a/src/mc/world/scores/ScoreboardId.h b/src/mc/world/scores/ScoreboardId.h index 48b1ad6ba1..3a7aa94eda 100644 --- a/src/mc/world/scores/ScoreboardId.h +++ b/src/mc/world/scores/ScoreboardId.h @@ -24,7 +24,7 @@ struct ScoreboardId { MCAPI ScoreboardId(::ScoreboardId const& scoreboardId); - MCAPI uint64 getHash() const; + MCFOLD uint64 getHash() const; MCAPI ::IdentityDefinition const& getIdentityDef() const; @@ -50,8 +50,8 @@ struct ScoreboardId { // NOLINTBEGIN MCAPI void* $ctor(); - MCAPI void* $ctor(int64 bytes); + MCFOLD void* $ctor(int64 bytes); - MCAPI void* $ctor(::ScoreboardId const& scoreboardId); + MCFOLD void* $ctor(::ScoreboardId const& scoreboardId); // NOLINTEND }; diff --git a/src/mc/world/scores/ScoreboardIdentityRef.h b/src/mc/world/scores/ScoreboardIdentityRef.h index 357d060bb9..8ae7dc06d9 100644 --- a/src/mc/world/scores/ScoreboardIdentityRef.h +++ b/src/mc/world/scores/ScoreboardIdentityRef.h @@ -38,7 +38,7 @@ class ScoreboardIdentityRef { MCAPI ::PlayerScoreboardId const& getPlayerId() const; - MCAPI ::ScoreboardId const& getScoreboardId() const; + MCFOLD ::ScoreboardId const& getScoreboardId() const; MCAPI bool modifyScoreInObjective(int& result, ::Objective& objective, int score, ::PlayerScoreSetFunction fn); diff --git a/src/mc/world/scores/ServerScoreboard.h b/src/mc/world/scores/ServerScoreboard.h index d03530850a..19be3b5555 100644 --- a/src/mc/world/scores/ServerScoreboard.h +++ b/src/mc/world/scores/ServerScoreboard.h @@ -146,7 +146,7 @@ class ServerScoreboard : public ::Scoreboard { MCAPI void deserialize(::std::unique_ptr<::CompoundTag> root); - MCAPI void initializeImGui(::Level& level); + MCFOLD void initializeImGui(::Level& level); MCAPI void initializeWithLevelStorageManagerConnector(::ILevelStorageManagerConnector& levelStorageManagerConnector ); @@ -183,7 +183,7 @@ class ServerScoreboard : public ::Scoreboard { MCAPI void $onPlayerScoreRemoved(::ScoreboardId const& id, ::Objective const& objective); - MCAPI void $setPacketSender(::PacketSender* sender); + MCFOLD void $setPacketSender(::PacketSender* sender); MCAPI ::DisplayObjective const* $setDisplayObjective( ::std::string const& displaySlotName, @@ -207,7 +207,7 @@ class ServerScoreboard : public ::Scoreboard { MCAPI void $writeToLevelStorage(); - MCAPI bool $isClientSide() const; + MCFOLD bool $isClientSide() const; // NOLINTEND public: diff --git a/src/mc/world/vanilla_systems_registration/RegistrationOptions.h b/src/mc/world/vanilla_systems_registration/RegistrationOptions.h index c5bcab2076..5c8cdc0625 100644 --- a/src/mc/world/vanilla_systems_registration/RegistrationOptions.h +++ b/src/mc/world/vanilla_systems_registration/RegistrationOptions.h @@ -54,7 +54,7 @@ struct RegistrationOptions { public: // destructor thunk // NOLINTBEGIN - MCAPI void $dtor(); + MCFOLD void $dtor(); // NOLINTEND }; From ee59799b878f27f6d0d6cfaf016bb259ea79a973 Mon Sep 17 00:00:00 2001 From: CuteKitten <94376005+Lovelylavender4@users.noreply.github.com> Date: Sat, 11 Jan 2025 23:40:48 +0800 Subject: [PATCH 17/20] chore: update CHANGELOG.md --- CHANGELOG.md | 21 ++++++++++++++++++++- 1 file changed, 20 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 50d57dfce1..7cf0db9e84 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,22 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [1.0.0-rc.3] - 2025-01-11 + +### Added + +- Added more nbt operator @OEOTYAN +- Added some api to logger @OEOTYAN +- Added itemstack ctor default param @Dofes +- Added some mc class members [#1611] +- Added an issue template for requesting complementary mc class member variables @Lovelylavender4 + +### Fixed + +- Fixed [#1610] @Dofes +- Fixed command @OEOTYAN +- Fixed version prelease parse @OEOTYAN + ## [1.0.0-rc.2] - 2025-01-06 ### Added @@ -733,8 +749,11 @@ For lip and tooth-hub test only. [#1559]: https://github.com/LiteLDev/LeviLamina/issues/1559 [#1574]: https://github.com/LiteLDev/LeviLamina/issues/1574 [#1582]: https://github.com/LiteLDev/LeviLamina/issues/1582 +[#1610]: https://github.com/LiteLDev/LeviLamina/issues/1610 +[#1611]: https://github.com/LiteLDev/LeviLamina/issues/1611 -[Unreleased]: https://github.com/LiteLDev/LeviLamina/compare/v1.0.0-rc.2...HEAD +[Unreleased]: https://github.com/LiteLDev/LeviLamina/compare/v1.0.0-rc.3...HEAD +[1.0.0-rc.3]: https://github.com/LiteLDev/LeviLamina/compare/v1.0.0-rc.2...v1.0.0-rc.3 [1.0.0-rc.2]: https://github.com/LiteLDev/LeviLamina/compare/v1.0.0-rc.1...v1.0.0-rc.2 [1.0.0-rc.1]: https://github.com/LiteLDev/LeviLamina/compare/v0.13.5...v1.0.0-rc.1 [0.13.5]: https://github.com/LiteLDev/LeviLamina/compare/v0.13.4...v0.13.5 From 95a19515642317768144972d3a12856b21411b9c Mon Sep 17 00:00:00 2001 From: CuteKitten <94376005+Lovelylavender4@users.noreply.github.com> Date: Sat, 11 Jan 2025 23:43:05 +0800 Subject: [PATCH 18/20] chore: update tooth.json --- tooth.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tooth.json b/tooth.json index ca81db612e..f665411b42 100644 --- a/tooth.json +++ b/tooth.json @@ -1,14 +1,14 @@ { "format_version": 2, "tooth": "github.com/LiteLDev/LeviLamina", - "version": "1.0.0-rc.2", + "version": "1.0.0-rc.3", "info": { "name": "LeviLamina", "description": "A lightweight, modular and versatile mod loader for Minecraft Bedrock Edition.", "author": "levimc", "tags": [] }, - "asset_url": "https://github.com/LiteLDev/LeviLamina/releases/download/v1.0.0-rc.2/levilamina-release-windows-x64.zip", + "asset_url": "https://github.com/LiteLDev/LeviLamina/releases/download/v1.0.0-rc.3/levilamina-release-windows-x64.zip", "dependencies": { "github.com/LiteLDev/bds": "1.21.50", "github.com/LiteLDev/CrashLogger": "1.1.x", From c58acff446a7eeb770710d3f68066e1f4c2143be Mon Sep 17 00:00:00 2001 From: OEOTYAN Date: Sat, 11 Jan 2025 23:44:45 +0800 Subject: [PATCH 19/20] chore: add some operators --- src/mc/common/ActorRuntimeID.h | 15 +++++++++++---- src/mc/common/ActorUniqueID.h | 7 +++++++ src/mc/world/level/BlockTickingQueue.h | 8 ++++++-- src/mc/world/level/Tick.h | 7 +++++++ 4 files changed, 31 insertions(+), 6 deletions(-) diff --git a/src/mc/common/ActorRuntimeID.h b/src/mc/common/ActorRuntimeID.h index d7794ecbab..82ee81fe9d 100644 --- a/src/mc/common/ActorRuntimeID.h +++ b/src/mc/common/ActorRuntimeID.h @@ -4,15 +4,22 @@ class ActorRuntimeID { public: - // member variables - // NOLINTBEGIN - uint64 rawID; - // NOLINTEND + [[nodiscard]] constexpr bool operator==(ActorRuntimeID const& other) const noexcept { return rawID == other.rawID; } + + [[nodiscard]] constexpr std::strong_ordering operator<=>(ActorRuntimeID const& other) const noexcept { + return rawID <=> other.rawID; + } [[nodiscard]] constexpr ActorRuntimeID() : rawID(0) {} [[nodiscard]] constexpr ActorRuntimeID(uint64 x) : rawID(x) {} [[nodiscard]] constexpr operator uint64() const { return rawID; } + +public: + // member variables + // NOLINTBEGIN + uint64 rawID; + // NOLINTEND }; namespace std { diff --git a/src/mc/common/ActorUniqueID.h b/src/mc/common/ActorUniqueID.h index fbe0e0d92f..b1c1988f68 100644 --- a/src/mc/common/ActorUniqueID.h +++ b/src/mc/common/ActorUniqueID.h @@ -8,6 +8,13 @@ namespace mce { class UUID; } // clang-format on struct ActorUniqueID { +public: + [[nodiscard]] constexpr bool operator==(ActorUniqueID const& other) const noexcept { return rawID == other.rawID; } + + [[nodiscard]] constexpr std::strong_ordering operator<=>(ActorUniqueID const& other) const noexcept { + return rawID <=> other.rawID; + } + public: // member variables // NOLINTBEGIN diff --git a/src/mc/world/level/BlockTickingQueue.h b/src/mc/world/level/BlockTickingQueue.h index 5cd2ead322..b1ff436edb 100644 --- a/src/mc/world/level/BlockTickingQueue.h +++ b/src/mc/world/level/BlockTickingQueue.h @@ -1,6 +1,7 @@ #pragma once #include "mc/_HeaderOutputPredefine.h" +#include "mc/world/level/TickNextTickData.h" // auto generated inclusion list #include "mc/deps/core/container/MovePriorityQueue.h" @@ -33,11 +34,14 @@ class BlockTickingQueue { // BlockTickingQueue inner types define class BlockTick { + public: + [[nodiscard]] bool operator>(BlockTick const& other) const { return mData > other.mData; } + public: // member variables // NOLINTBEGIN - ::ll::TypedStorage<1, 1, bool> mIsRemoved; - ::ll::TypedStorage<8, 40, ::TickNextTickData> mData; + bool mIsRemoved; + ::TickNextTickData mData; // NOLINTEND }; diff --git a/src/mc/world/level/Tick.h b/src/mc/world/level/Tick.h index 2e5bb724ec..40eea60f7c 100644 --- a/src/mc/world/level/Tick.h +++ b/src/mc/world/level/Tick.h @@ -3,6 +3,13 @@ #include "mc/_HeaderOutputPredefine.h" struct Tick { +public: + [[nodiscard]] constexpr bool operator==(Tick const& other) const noexcept { return tickID == other.tickID; } + + [[nodiscard]] constexpr std::strong_ordering operator<=>(Tick const& other) const noexcept { + return tickID <=> other.tickID; + } + public: // member variables // NOLINTBEGIN From 0dc6931b603fac1cffdc2b7111c2c5a7b9d4ab0c Mon Sep 17 00:00:00 2001 From: ShrBox Date: Sun, 12 Jan 2025 10:42:51 +0800 Subject: [PATCH 20/20] refactor: delete version in motd (cherry picked from commit 69ec9f62c955e2f1564c51d423dc484eaefb3b4a) --- src/ll/core/tweak/ModifyInfomation.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ll/core/tweak/ModifyInfomation.cpp b/src/ll/core/tweak/ModifyInfomation.cpp index 63efb74451..523dd80906 100644 --- a/src/ll/core/tweak/ModifyInfomation.cpp +++ b/src/ll/core/tweak/ModifyInfomation.cpp @@ -141,7 +141,7 @@ LL_TYPE_INSTANCE_HOOK( ) { std::string_view dataView{data, dataSize}; if (dataView.contains("MCPE;")) { - auto modified = fmt::format("{}LeviLamina;{};", dataView, getLoaderVersion().to_string()); + auto modified = fmt::format("{}LeviLamina;", dataView); return origin(modified.c_str(), (uint)modified.size()); } return origin(data, dataSize);