mirror of
https://git.do.srb2.org/STJr/UltimateZoneBuilder.git
synced 2024-11-27 22:22:32 +00:00
26 lines
506 B
C#
26 lines
506 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;
|
||
|
|
||
|
#endregion
|
||
|
|
||
|
namespace CodeImp.DoomBuilder.GZDoomEditing
|
||
|
{
|
||
|
internal struct SectorLevel
|
||
|
{
|
||
|
// Type of level
|
||
|
public SectorLevelType type;
|
||
|
|
||
|
// Plane in the sector
|
||
|
public Plane plane;
|
||
|
|
||
|
// Color below the plane (includes brightness)
|
||
|
public int color;
|
||
|
}
|
||
|
}
|