mirror of
https://git.do.srb2.org/STJr/UltimateZoneBuilder.git
synced 2024-11-23 20:32:34 +00:00
20 lines
419 B
C#
Executable file
20 lines
419 B
C#
Executable file
#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();
|
|
}
|
|
}
|