mirror of
https://git.do.srb2.org/STJr/ZoneBuilder.git
synced 2025-02-06 07:41:01 +00:00
26 lines
538 B
C#
26 lines
538 B
C#
|
#region === Copyright (c) 2010 Pascal van der Heiden ===
|
|||
|
|
|||
|
using System.Collections.Generic;
|
|||
|
using CodeImp.DoomBuilder.Geometry;
|
|||
|
|
|||
|
#endregion
|
|||
|
|
|||
|
namespace CodeImp.DoomBuilder.BuilderModes
|
|||
|
{
|
|||
|
internal class WallPolygon : List<Vector3D>
|
|||
|
{
|
|||
|
// The color that the wall should have
|
|||
|
public int color;
|
|||
|
|
|||
|
// Constructors
|
|||
|
public WallPolygon() { }
|
|||
|
public WallPolygon(int capacity) : base(capacity) { }
|
|||
|
|
|||
|
// This copies all the wall properties
|
|||
|
public void CopyProperties(WallPolygon target)
|
|||
|
{
|
|||
|
target.color = this.color;
|
|||
|
}
|
|||
|
}
|
|||
|
}
|