UltimateZoneBuilder/Source/Plugins/BuilderModes/VisualModes/SectorEffect.cs
MaxED 5fe89efc7c Visual mode: added support for "Transfer Brightness Level" (50) effect type parameter (arg 1).
Visual mode: added support for "Transfer Floor Brightness" (210) effect.
Visual mode: added support for "Transfer Ceiling Brightness" (211) effect.
Visual mode: changed the way thing brightness is calculated. Should be closer to GZDoom now.
Sector Edit Form: you can now enter "++" or "--" into "Height Offset" input to raise or lower sectors by their height.
Cosmetic fix in ZDoom_linedefs.cfg.
2015-04-01 12:51:26 +00:00

20 lines
419 B
C#

#region === Copyright (c) 2010 Pascal van der Heiden ===
#endregion
namespace CodeImp.DoomBuilder.BuilderModes
{
internal abstract class SectorEffect
{
protected readonly SectorData data;
// Constructor
protected SectorEffect(SectorData data)
{
this.data = data;
}
// This makes sure we are updated with the source linedef information
public abstract void Update();
}
}