16 lines
360 B
C#
16 lines
360 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace Stary.Evo
|
|
{
|
|
public static class Layer
|
|
{
|
|
public const int Default = 0;
|
|
public const int TransparentFX = 1;
|
|
public const int IgnoreRaycast = 2;
|
|
public const int Water = 4;
|
|
public const int UI = 5;
|
|
public const int UIRenderToTarget = 6;
|
|
}
|
|
}
|