1+ // ReSharper disable All
2+ // DO NOT MODIFY: START
3+
4+ using Appalachia . Utility . Constants ;
5+
6+
7+ namespace Appalachia . Audio . Contextual
8+ {
9+ internal static partial class PKG
10+ {
11+ public const string Root = "Appalachia/" ;
12+ public const string Prefix = Root + "Audio/Contextual/" ;
13+ public const int Priority = 1000 * 5 ;
14+
15+ public static partial class Prefs
16+ {
17+ public const string Group = Prefix ;
18+
19+ public static partial class Gizmos
20+ {
21+ public const string Base = Group + "Gizmos/" ;
22+ }
23+ }
24+
25+ public static partial class Menu
26+ {
27+ public static partial class Assets
28+ {
29+ public const int Priority = PKG . Priority ;
30+ public const string Base = "Assets/" + Prefix ;
31+ }
32+
33+ public static partial class GameObject
34+ {
35+ public const int Priority = PKG . Priority ;
36+ public const string Base = "GameObject/" + Prefix ;
37+ }
38+
39+ public static partial class Appalachia
40+ {
41+ public const int Priority = PKG . Priority ;
42+
43+ public static partial class Behaviours
44+ {
45+ public const int Priority = Appalachia . Priority ;
46+ public const string Base = Prefix + nameof ( Behaviours ) + "/" ;
47+ }
48+
49+ public static partial class Components
50+ {
51+ public const int Priority = Behaviours . Priority + 100 ;
52+ public const string Base = Prefix + nameof ( Components ) + "/" ;
53+ }
54+
55+ public static partial class Add
56+ {
57+ public const int Priority = Components . Priority + 100 ;
58+ public const string Base = Prefix + nameof ( Add ) + "/" ;
59+ }
60+
61+ public static partial class Create
62+ {
63+ public const int Priority = Add . Priority + 100 ;
64+ public const string Base = Prefix + nameof ( Create ) + "/" ;
65+ }
66+
67+ public static partial class Update
68+ {
69+ public const int Priority = Create . Priority + 100 ;
70+ public const string Base = Prefix + nameof ( Update ) + "/" ;
71+ }
72+
73+ public static partial class Manage
74+ {
75+ public const int Priority = Update . Priority + 100 ;
76+ public const string Base = Prefix + nameof ( Manage ) + "/" ;
77+ }
78+
79+ public static partial class Data
80+ {
81+ public const int Priority = Manage . Priority + 100 ;
82+ public const string Base = Prefix + nameof ( Data ) + "/" ;
83+ }
84+
85+ public static partial class RootTools
86+ {
87+ public const int Priority = Data . Priority + 100 ;
88+ public const string Base = Root + "Tools/" ;
89+ }
90+
91+ public static partial class State
92+ {
93+ public const int Priority = RootTools . Priority + 100 ;
94+ public const string Base = Prefix + nameof ( State ) + "/" ;
95+ }
96+
97+ public static partial class Tools
98+ {
99+ public const int Priority = State . Priority + 100 ;
100+ public const string Base = Prefix + nameof ( Tools ) + "/" ;
101+
102+ public static partial class Enable
103+ {
104+ public const int Priority = Tools . Priority + 0 ;
105+ public const string Base = Tools . Base + nameof ( Enable ) ;
106+ }
107+
108+ public static partial class Disable
109+ {
110+ public const int Priority = Tools . Priority + 1 ;
111+ public const string Base = Tools . Base + nameof ( Disable ) ;
112+ }
113+ }
114+
115+ public static partial class Jobs
116+ {
117+ public const int Priority = Tools . Priority + 100 ;
118+ public const string Base = Prefix + nameof ( Jobs ) + "/" ;
119+ }
120+
121+ public static partial class Timing
122+ {
123+ public const int Priority = Jobs . Priority + 100 ;
124+ public const string Base = Prefix + nameof ( Timing ) + "/" ;
125+ }
126+
127+ public static partial class Utility
128+ {
129+ public const int Priority = Timing . Priority + 100 ;
130+ public const string Base = Prefix + nameof ( Utility ) + "/" ;
131+ }
132+
133+ public static partial class Windows
134+ {
135+ public const int Priority = Utility . Priority + 100 ;
136+ public const string Base = Prefix + nameof ( Windows ) + "/" ;
137+ }
138+
139+ public static partial class Logging
140+ {
141+ public const int Priority = Windows . Priority + 100 ;
142+ public const string Base = Prefix + nameof ( Logging ) + "/" ;
143+ }
144+
145+ public static partial class Settings
146+ {
147+ public const int Priority = Logging . Priority + 100 ;
148+ public const string Base = Prefix + nameof ( Settings ) + "/" ;
149+ }
150+
151+ public static partial class Packages
152+ {
153+ public const int Priority = Settings . Priority + 100 ;
154+ public const string Base = Prefix + nameof ( Packages ) + "/" ;
155+ }
156+
157+ public static partial class External
158+ {
159+ public const int Priority = Packages . Priority + 100 ;
160+ public const string Base = Prefix + nameof ( External ) + "/" ;
161+ }
162+
163+ public static partial class Debug
164+ {
165+ public const int Priority = External . Priority + 100 ;
166+ public const string Base = Prefix + nameof ( Debug ) + "/" ;
167+ }
168+
169+ public static partial class Gizmos
170+ {
171+ public const int Priority = Debug . Priority + 100 ;
172+ public const string Base = Prefix + nameof ( Gizmos ) + "/" ;
173+ }
174+ }
175+
176+ public static partial class CONTEXT
177+ {
178+ public const int Priority = PKG . Priority ;
179+ public const string Start = "CONTEXT/" ;
180+ public const string Mid = "/" + Prefix ;
181+ public const string Mid_short = "/" + Root ;
182+ }
183+ }
184+
185+ // DO NOT MODIFY: END
186+ // MODIFICATIONS ALLOWED: START
187+
188+ // MODIFICATIONS ALLOWED: END
189+ // DO NOT MODIFY: START
190+ }
191+ }
192+ // DO NOT MODIFY: END
0 commit comments