mirror of
https://git.do.srb2.org/STJr/UltimateZoneBuilder.git
synced 2024-11-23 20:32:34 +00:00
af4f40389f
Added, Automap mode: added "Show secrets" top menu button. Added, Automap mode: added "Color preset" top menu drop-down.
15 lines
269 B
C#
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>();
|
|
}
|
|
}
|
|
}
|