#region ================== Copyright (c) 2026 Boris Iwanski /* * Copyright (c) 2026 Boris Iwanski * * This file is part of Ultimate Doom Builder. * * Ultimate Doom Builder is free software: you can redistribute it and/or * modify it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or (at your * option) any later version. * * Ultimate Doom Builder is distributed in the hope that it will be useful, but * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for * more details. * * You should have received a copy of the GNU General Public License along with * Ultimate Doom Builder. If not, see . * */ #endregion #region ================== Namespaces using System.Collections.Generic; #endregion namespace CodeImp.DoomBuilder.BlockmapExplorer { internal class BlockmapBlockList { public List LinedefIndexes; public bool IsSublist; public BlockmapBlockList(IEnumerable newIndexes, bool isSublist) { LinedefIndexes = new List(newIndexes); IsSublist = isSublist; } } }