Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
SelectionTypes.cs
Go to the documentation of this file.
2
3[Flags]
4public enum SelectionTypes
5{
6 Auto = 1,
7 [Obsolete("SelectionTypes.Normal has been deprecated. Use SelectionTypes.Auto instead.")]
8 Normal = 1,
9 Replace = 2,
10 [Obsolete("SelectionTypes.MouseDown has been deprecated and is not supported.")]
11 MouseDown = 4,
12 [Obsolete("SelectionTypes.MouseUp has been deprecated and is not supported.")]
13 MouseUp = 8,
14 [Obsolete("SelectionTypes.Click has been deprecated. Use SelectionTypes.Primary instead.")]
15 Click = 0x10,
16 Primary = 0x10,
17 Toggle = 0x20,
18 Add = 0x40,
19 Remove = 0x80,
20 [Obsolete("SelectionTypes.Valid has been deprecated. Use Enum class methods to determine valid values, or use a type converter instead.")]
21 Valid = 0x1F
22}