10 lines
112 B
C#
10 lines
112 B
C#
namespace Ezereal
|
|
{
|
|
public enum LightBeam
|
|
{
|
|
off = 0,
|
|
low = 1,
|
|
high = 2,
|
|
}
|
|
}
|