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