mirror of
https://git.do.srb2.org/STJr/UltimateZoneBuilder.git
synced 2024-11-27 14:12:16 +00:00
23 lines
394 B
C#
23 lines
394 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;
|
||
|
|
||
|
#endregion
|
||
|
|
||
|
namespace CodeImp.DoomBuilder.Plugins.VisplaneExplorer
|
||
|
{
|
||
|
internal enum ViewStats : int
|
||
|
{
|
||
|
Visplanes = 0,
|
||
|
Drawsegs = 1,
|
||
|
Solidsegs = 2,
|
||
|
Openings = 3,
|
||
|
|
||
|
NumStats = 4
|
||
|
}
|
||
|
}
|