Newer
Older
DNA / corlib / System / ConsoleModifiers.cs
@Chris Bacon Chris Bacon on 21 Jan 2012 127 bytes First commit
#if !LOCALTEST

namespace System {
	[Flags]
	public enum ConsoleModifiers {
		Alt = 1,
		Shift = 2,
		Control = 4
	}
}

#endif