AirScout/RainScout.Radars/RadarLayer.cs

16 wiersze
246 B
C#
Czysty Zwykły widok Historia

2021-12-31 08:08:48 +00:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace RainScout.Radars
{
public enum RADARLAYER
{
NONE = 0,
INTENSITY = 1,
CLOUDTOPS = 2,
LIGHTNING = 4
}
}