mirror of
https://git.do.srb2.org/STJr/UltimateZoneBuilder.git
synced 2024-11-23 20:32:34 +00:00
23 lines
367 B
C#
23 lines
367 B
C#
|
#region ================== Namespaces
|
||
|
|
||
|
using System;
|
||
|
using System.Collections;
|
||
|
using System.Collections.Generic;
|
||
|
using System.Globalization;
|
||
|
using System.Text;
|
||
|
|
||
|
#endregion
|
||
|
|
||
|
namespace CodeImp.DoomBuilder.Rendering
|
||
|
{
|
||
|
internal enum RenderLayers : int
|
||
|
{
|
||
|
None = 0,
|
||
|
Background = 1,
|
||
|
Plotter = 2,
|
||
|
Things = 3,
|
||
|
Overlay = 4,
|
||
|
Surface = 5
|
||
|
}
|
||
|
}
|