UltimateZoneBuilder/Source/Core/Config/SectorEffectData.cs
2017-01-15 00:35:40 +02:00

15 lines
269 B
C#
Executable file

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