mirror of
https://git.do.srb2.org/STJr/UltimateZoneBuilder.git
synced 2024-11-24 04:41:10 +00:00
42 lines
861 B
C#
42 lines
861 B
C#
#region === Copyright (c) 2010 Pascal van der Heiden ===
|
|
|
|
using System;
|
|
using System.Collections;
|
|
using System.Collections.Generic;
|
|
using System.Globalization;
|
|
using System.Text;
|
|
using CodeImp.DoomBuilder.Geometry;
|
|
using CodeImp.DoomBuilder.Map;
|
|
using CodeImp.DoomBuilder.Rendering;
|
|
|
|
#endregion
|
|
|
|
namespace CodeImp.DoomBuilder.GZDoomEditing
|
|
{
|
|
internal class WallPolygon : List<Vector3D>
|
|
{
|
|
// The color that the wall should have
|
|
public int color;
|
|
|
|
// Constructor
|
|
public WallPolygon()
|
|
{
|
|
}
|
|
|
|
// Constructor
|
|
public WallPolygon(int capacity) : base(capacity)
|
|
{
|
|
}
|
|
|
|
// Constructor
|
|
public WallPolygon(IEnumerable<Vector3D> collection) : base(collection)
|
|
{
|
|
}
|
|
|
|
// This copies all the wall properties
|
|
public void CopyProperties(WallPolygon target)
|
|
{
|
|
target.color = this.color;
|
|
}
|
|
}
|
|
}
|