public static void Main()
Tags permitted = Tags.All;
Console.WriteLine(permitted);
Tags disallowA = Tags.Fire | Tags.Earth | Tags.Wind;
Tags disallowB = Tags.Wind | Tags.Azure;
Console.WriteLine((Tags) permitted);
bool hasEarth = permitted.HasFlag(Tags.Water);
Console.WriteLine(hasEarth);