Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
GamepadPageID.cs
Go to the documentation of this file.
1namespace Terraria.UI.Gamepad;
2
3public static class GamepadPageID
4{
5 public const int None = -1;
6
7 public const int Inventory = 0;
8
9 public const int Coins = 1;
10
11 public const int Ammo = 2;
12
13 public const int Armor = 3;
14
15 public const int Chest = 4;
16
17 public const int Reforge = 5;
18
19 public const int NPCHousing = 6;
20
21 public const int Equipment = 7;
22
23 public const int Tabs = 8;
24
25 public const int CraftSmall = 9;
26
27 public const int CraftsBig = 10;
28
29 public const int HairCustomizationStyle = 11;
30
31 public const int HairCustomizationColor = 12;
32
33 public const int NPCShop = 13;
34
35 public const int ClothCustomizationStyle = 14;
36
37 public const int ClothCustomizationColor = 15;
38
39 public const int PVP = 16;
40
41 public const int InfoAccs = 17;
42
43 public const int BuilderAccs = 18;
44
45 public const int BuffsOnEquipment = 19;
46
47 public const int DisplayDoll = 20;
48
49 public const int HatRack = 21;
50
51 public const int MainMenu = 1000;
52
53 public const int IngameOptionsLeft = 1001;
54
55 public const int IngameOptionsRight = 1002;
56
57 public const int NPCChat = 1003;
58
59 public const int FancyUI = 1004;
60
61 public const int CreativeMenu = 1005;
62}