UltimateZoneBuilder/Source/Core/Config/SectorEffectData.cs
MaxED af4f40389f Added, Automap mode: added "Show hidden lines" top menu button.
Added, Automap mode: added "Show secrets" top menu button.
Added, Automap mode: added "Color preset" top menu drop-down.
2016-06-18 00:10:35 +00:00

15 lines
269 B
C#

using System.Collections.Generic;
namespace CodeImp.DoomBuilder.Config
{
public class SectorEffectData
{
public int Effect;
public HashSet<int> GeneralizedBits;
public SectorEffectData()
{
GeneralizedBits = new HashSet<int>();
}
}
}