mirror of
https://git.do.srb2.org/STJr/ZoneBuilder.git
synced 2025-02-06 07:41:01 +00:00
21 lines
399 B
C#
21 lines
399 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();
|
|||
|
}
|
|||
|
}
|