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