/******************************************************************** Minecraft: Pocket Edition - Decompilation Project Copyright (C) 2023 iProgramInCpp The following code is licensed under the BSD 1 clause license. SPDX-License-Identifier: BSD-1-Clause ********************************************************************/ #pragma once #include #include "IArea.hpp" class IncludeExcludeArea : public IArea { public: IncludeExcludeArea(); ~IncludeExcludeArea(); void include(IArea*); void exclude(IArea*); void clear(); bool isInside(float x, float y) override; private: std::vector m_include; std::vector m_exclude; };