forked from anegostudios/vsapi
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.manifest
5416 lines (5416 loc) · 634 KB
/
.manifest
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{
"Vintagestory.API": "Vintagestory.API.yml",
"Vintagestory.API.ArrayExtensions": "Vintagestory.API.ArrayExtensions.yml",
"Vintagestory.API.ArrayExtensions.Fill``1(``0[],``0)": "Vintagestory.API.ArrayExtensions.yml",
"Vintagestory.API.ArrayExtensions.Shuffle``1(``0[],System.Random)": "Vintagestory.API.ArrayExtensions.yml",
"Vintagestory.API.Client": "Vintagestory.API.Client.yml",
"Vintagestory.API.Client.BakedCompositeTexture": "Vintagestory.API.Client.BakedCompositeTexture.yml",
"Vintagestory.API.Client.BakedCompositeTexture.BakedName": "Vintagestory.API.Client.BakedCompositeTexture.yml",
"Vintagestory.API.Client.BakedCompositeTexture.BakedVariants": "Vintagestory.API.Client.BakedCompositeTexture.yml",
"Vintagestory.API.Client.BakedCompositeTexture.TextureFilenames": "Vintagestory.API.Client.BakedCompositeTexture.yml",
"Vintagestory.API.Client.BakedCompositeTexture.TextureSubId": "Vintagestory.API.Client.BakedCompositeTexture.yml",
"Vintagestory.API.Client.BasicMusicTrack": "Vintagestory.API.Client.BasicMusicTrack.yml",
"Vintagestory.API.Client.BasicMusicTrack.BeginPlay(Vintagestory.API.Common.Entities.TrackedPlayerProperties,Vintagestory.API.Client.IMusicEngine)": "Vintagestory.API.Client.BasicMusicTrack.yml",
"Vintagestory.API.Client.BasicMusicTrack.ContinuePlay(System.Single,Vintagestory.API.Common.Entities.TrackedPlayerProperties,Vintagestory.API.Client.IMusicEngine)": "Vintagestory.API.Client.BasicMusicTrack.yml",
"Vintagestory.API.Client.BasicMusicTrack.FadeOut(System.Single,Vintagestory.API.Common.Action)": "Vintagestory.API.Client.BasicMusicTrack.yml",
"Vintagestory.API.Client.BasicMusicTrack.Initialize(Vintagestory.API.Common.IAssetManager,Vintagestory.API.Client.IClientWorldAccessor)": "Vintagestory.API.Client.BasicMusicTrack.yml",
"Vintagestory.API.Client.BasicMusicTrack.IsActive": "Vintagestory.API.Client.BasicMusicTrack.yml",
"Vintagestory.API.Client.BasicMusicTrack.Location": "Vintagestory.API.Client.BasicMusicTrack.yml",
"Vintagestory.API.Client.BasicMusicTrack.MaxHour": "Vintagestory.API.Client.BasicMusicTrack.yml",
"Vintagestory.API.Client.BasicMusicTrack.MinHour": "Vintagestory.API.Client.BasicMusicTrack.yml",
"Vintagestory.API.Client.BasicMusicTrack.MinSunlight": "Vintagestory.API.Client.BasicMusicTrack.yml",
"Vintagestory.API.Client.BasicMusicTrack.Name": "Vintagestory.API.Client.BasicMusicTrack.yml",
"Vintagestory.API.Client.BasicMusicTrack.Playstyle": "Vintagestory.API.Client.BasicMusicTrack.yml",
"Vintagestory.API.Client.BasicMusicTrack.Priority": "Vintagestory.API.Client.BasicMusicTrack.yml",
"Vintagestory.API.Client.BasicMusicTrack.SetCooldown(System.Single)": "Vintagestory.API.Client.BasicMusicTrack.yml",
"Vintagestory.API.Client.BasicMusicTrack.ShouldPlay(Vintagestory.API.Common.Entities.TrackedPlayerProperties,Vintagestory.API.Client.IMusicEngine)": "Vintagestory.API.Client.BasicMusicTrack.yml",
"Vintagestory.API.Client.BasicMusicTrack.Sound": "Vintagestory.API.Client.BasicMusicTrack.yml",
"Vintagestory.API.Client.BasicMusicTrack.UpdateVolume": "Vintagestory.API.Client.BasicMusicTrack.yml",
"Vintagestory.API.Client.CaveMusicTrack": "Vintagestory.API.Client.CaveMusicTrack.yml",
"Vintagestory.API.Client.CaveMusicTrack.BeginPlay(Vintagestory.API.Common.Entities.TrackedPlayerProperties,Vintagestory.API.Client.IMusicEngine)": "Vintagestory.API.Client.CaveMusicTrack.yml",
"Vintagestory.API.Client.CaveMusicTrack.ContinuePlay(System.Single,Vintagestory.API.Common.Entities.TrackedPlayerProperties,Vintagestory.API.Client.IMusicEngine)": "Vintagestory.API.Client.CaveMusicTrack.yml",
"Vintagestory.API.Client.CaveMusicTrack.FadeOut(System.Single,Vintagestory.API.Common.Action)": "Vintagestory.API.Client.CaveMusicTrack.yml",
"Vintagestory.API.Client.CaveMusicTrack.Initialize(Vintagestory.API.Common.IAssetManager,Vintagestory.API.Client.IClientWorldAccessor)": "Vintagestory.API.Client.CaveMusicTrack.yml",
"Vintagestory.API.Client.CaveMusicTrack.IsActive": "Vintagestory.API.Client.CaveMusicTrack.yml",
"Vintagestory.API.Client.CaveMusicTrack.Name": "Vintagestory.API.Client.CaveMusicTrack.yml",
"Vintagestory.API.Client.CaveMusicTrack.ShouldPlay(Vintagestory.API.Common.Entities.TrackedPlayerProperties,Vintagestory.API.Client.IMusicEngine)": "Vintagestory.API.Client.CaveMusicTrack.yml",
"Vintagestory.API.Client.CaveMusicTrack.UpdateVolume": "Vintagestory.API.Client.CaveMusicTrack.yml",
"Vintagestory.API.Client.CaveMusicTrack.Vintagestory#API#Client#IMusicTrack#Priority": "Vintagestory.API.Client.CaveMusicTrack.yml",
"Vintagestory.API.Client.ChatLineDelegate": "Vintagestory.API.Client.ChatLineDelegate.yml",
"Vintagestory.API.Client.ClientChatLineDelegate": "Vintagestory.API.Client.ClientChatLineDelegate.yml",
"Vintagestory.API.Client.ClientSettingsApi": "Vintagestory.API.Client.ClientSettingsApi.yml",
"Vintagestory.API.Client.ClientSettingsApi.GUIScale": "Vintagestory.API.Client.ClientSettingsApi.yml",
"Vintagestory.API.Client.ClientSettingsApi.HighQualityAnimations": "Vintagestory.API.Client.ClientSettingsApi.yml",
"Vintagestory.API.Client.ClientSettingsApi.MainThreadId": "Vintagestory.API.Client.ClientSettingsApi.yml",
"Vintagestory.API.Client.ClientSettingsApi.ShowEntityDebugInfo": "Vintagestory.API.Client.ClientSettingsApi.yml",
"Vintagestory.API.Client.ClientSettingsApi.ViewBobbing": "Vintagestory.API.Client.ClientSettingsApi.yml",
"Vintagestory.API.Client.CompositeTexture": "Vintagestory.API.Client.CompositeTexture.yml",
"Vintagestory.API.Client.CompositeTexture.#ctor": "Vintagestory.API.Client.CompositeTexture.yml",
"Vintagestory.API.Client.CompositeTexture.#ctor(Vintagestory.API.Common.AssetLocation)": "Vintagestory.API.Client.CompositeTexture.yml",
"Vintagestory.API.Client.CompositeTexture.Alternates": "Vintagestory.API.Client.CompositeTexture.yml",
"Vintagestory.API.Client.CompositeTexture.Bake(Vintagestory.API.Common.IAssetManager)": "Vintagestory.API.Client.CompositeTexture.yml",
"Vintagestory.API.Client.CompositeTexture.Bake(Vintagestory.API.Common.IAssetManager,Vintagestory.API.Client.CompositeTexture)": "Vintagestory.API.Client.CompositeTexture.yml",
"Vintagestory.API.Client.CompositeTexture.Baked": "Vintagestory.API.Client.CompositeTexture.yml",
"Vintagestory.API.Client.CompositeTexture.Base": "Vintagestory.API.Client.CompositeTexture.yml",
"Vintagestory.API.Client.CompositeTexture.Clone": "Vintagestory.API.Client.CompositeTexture.yml",
"Vintagestory.API.Client.CompositeTexture.Overlays": "Vintagestory.API.Client.CompositeTexture.yml",
"Vintagestory.API.Client.CubeMeshUtil": "Vintagestory.API.Client.CubeMeshUtil.yml",
"Vintagestory.API.Client.CubeMeshUtil.BaseCubeVertexIndices": "Vintagestory.API.Client.CubeMeshUtil.yml",
"Vintagestory.API.Client.CubeMeshUtil.CloudSideShadings": "Vintagestory.API.Client.CubeMeshUtil.yml",
"Vintagestory.API.Client.CubeMeshUtil.CubeFaceIndices": "Vintagestory.API.Client.CubeMeshUtil.yml",
"Vintagestory.API.Client.CubeMeshUtil.CubeUvCoords": "Vintagestory.API.Client.CubeMeshUtil.yml",
"Vintagestory.API.Client.CubeMeshUtil.CubeUvRotation": "Vintagestory.API.Client.CubeMeshUtil.yml",
"Vintagestory.API.Client.CubeMeshUtil.CubeVertexIndices": "Vintagestory.API.Client.CubeMeshUtil.yml",
"Vintagestory.API.Client.CubeMeshUtil.CubeVertices": "Vintagestory.API.Client.CubeMeshUtil.yml",
"Vintagestory.API.Client.CubeMeshUtil.DefaultBlockSideShadings": "Vintagestory.API.Client.CubeMeshUtil.yml",
"Vintagestory.API.Client.CubeMeshUtil.DefaultBlockSideShadingsByFacing": "Vintagestory.API.Client.CubeMeshUtil.yml",
"Vintagestory.API.Client.CubeMeshUtil.GetCube": "Vintagestory.API.Client.CubeMeshUtil.yml",
"Vintagestory.API.Client.CubeMeshUtil.GetCube(System.Single,System.Single,Vintagestory.API.MathTools.Vec3f)": "Vintagestory.API.Client.CubeMeshUtil.yml",
"Vintagestory.API.Client.CubeMeshUtil.GetCubeOnlyScaleXyz(System.Single,System.Single,Vintagestory.API.MathTools.Vec3f)": "Vintagestory.API.Client.CubeMeshUtil.yml",
"Vintagestory.API.Client.CubeMeshUtil.GetShadedCubeRGBA(System.Int32,System.Single[],System.Boolean)": "Vintagestory.API.Client.CubeMeshUtil.yml",
"Vintagestory.API.Client.CubeMeshUtil.GetShadedCubeRGBA(System.Int32[],System.Boolean)": "Vintagestory.API.Client.CubeMeshUtil.yml",
"Vintagestory.API.Client.CustomMeshDataPart`1": "Vintagestory.API.Client.CustomMeshDataPart-1.yml",
"Vintagestory.API.Client.CustomMeshDataPart`1.#ctor": "Vintagestory.API.Client.CustomMeshDataPart-1.yml",
"Vintagestory.API.Client.CustomMeshDataPart`1.#ctor(System.Int32)": "Vintagestory.API.Client.CustomMeshDataPart-1.yml",
"Vintagestory.API.Client.CustomMeshDataPart`1.Add(`0)": "Vintagestory.API.Client.CustomMeshDataPart-1.yml",
"Vintagestory.API.Client.CustomMeshDataPart`1.Add(`0,`0)": "Vintagestory.API.Client.CustomMeshDataPart-1.yml",
"Vintagestory.API.Client.CustomMeshDataPart`1.Add(`0,`0,`0,`0)": "Vintagestory.API.Client.CustomMeshDataPart-1.yml",
"Vintagestory.API.Client.CustomMeshDataPart`1.Add(`0[])": "Vintagestory.API.Client.CustomMeshDataPart-1.yml",
"Vintagestory.API.Client.CustomMeshDataPart`1.AllocationSize": "Vintagestory.API.Client.CustomMeshDataPart-1.yml",
"Vintagestory.API.Client.CustomMeshDataPart`1.AutoAllocationSize": "Vintagestory.API.Client.CustomMeshDataPart-1.yml",
"Vintagestory.API.Client.CustomMeshDataPart`1.BaseOffset": "Vintagestory.API.Client.CustomMeshDataPart-1.yml",
"Vintagestory.API.Client.CustomMeshDataPart`1.BufferSize": "Vintagestory.API.Client.CustomMeshDataPart-1.yml",
"Vintagestory.API.Client.CustomMeshDataPart`1.Count": "Vintagestory.API.Client.CustomMeshDataPart-1.yml",
"Vintagestory.API.Client.CustomMeshDataPart`1.GrowBuffer(System.Int32)": "Vintagestory.API.Client.CustomMeshDataPart-1.yml",
"Vintagestory.API.Client.CustomMeshDataPart`1.Instanced": "Vintagestory.API.Client.CustomMeshDataPart-1.yml",
"Vintagestory.API.Client.CustomMeshDataPart`1.InterleaveOffsets": "Vintagestory.API.Client.CustomMeshDataPart-1.yml",
"Vintagestory.API.Client.CustomMeshDataPart`1.InterleaveSizes": "Vintagestory.API.Client.CustomMeshDataPart-1.yml",
"Vintagestory.API.Client.CustomMeshDataPart`1.InterleaveStride": "Vintagestory.API.Client.CustomMeshDataPart-1.yml",
"Vintagestory.API.Client.CustomMeshDataPart`1.SetAllocationSize(System.Int32)": "Vintagestory.API.Client.CustomMeshDataPart-1.yml",
"Vintagestory.API.Client.CustomMeshDataPart`1.SetFrom(Vintagestory.API.Client.CustomMeshDataPart{`0})": "Vintagestory.API.Client.CustomMeshDataPart-1.yml",
"Vintagestory.API.Client.CustomMeshDataPart`1.StaticDraw": "Vintagestory.API.Client.CustomMeshDataPart-1.yml",
"Vintagestory.API.Client.CustomMeshDataPart`1.Values": "Vintagestory.API.Client.CustomMeshDataPart-1.yml",
"Vintagestory.API.Client.CustomMeshDataPartByte": "Vintagestory.API.Client.CustomMeshDataPartByte.yml",
"Vintagestory.API.Client.CustomMeshDataPartByte.#ctor": "Vintagestory.API.Client.CustomMeshDataPartByte.yml",
"Vintagestory.API.Client.CustomMeshDataPartByte.#ctor(System.Int32)": "Vintagestory.API.Client.CustomMeshDataPartByte.yml",
"Vintagestory.API.Client.CustomMeshDataPartByte.AddBytes(System.Int32)": "Vintagestory.API.Client.CustomMeshDataPartByte.yml",
"Vintagestory.API.Client.CustomMeshDataPartByte.Clone": "Vintagestory.API.Client.CustomMeshDataPartByte.yml",
"Vintagestory.API.Client.CustomMeshDataPartByte.Conversion": "Vintagestory.API.Client.CustomMeshDataPartByte.yml",
"Vintagestory.API.Client.CustomMeshDataPartFloat": "Vintagestory.API.Client.CustomMeshDataPartFloat.yml",
"Vintagestory.API.Client.CustomMeshDataPartFloat.#ctor": "Vintagestory.API.Client.CustomMeshDataPartFloat.yml",
"Vintagestory.API.Client.CustomMeshDataPartFloat.#ctor(System.Int32)": "Vintagestory.API.Client.CustomMeshDataPartFloat.yml",
"Vintagestory.API.Client.CustomMeshDataPartFloat.Clone": "Vintagestory.API.Client.CustomMeshDataPartFloat.yml",
"Vintagestory.API.Client.CustomMeshDataPartInt": "Vintagestory.API.Client.CustomMeshDataPartInt.yml",
"Vintagestory.API.Client.CustomMeshDataPartInt.#ctor": "Vintagestory.API.Client.CustomMeshDataPartInt.yml",
"Vintagestory.API.Client.CustomMeshDataPartInt.#ctor(System.Int32)": "Vintagestory.API.Client.CustomMeshDataPartInt.yml",
"Vintagestory.API.Client.CustomMeshDataPartInt.Clone": "Vintagestory.API.Client.CustomMeshDataPartInt.yml",
"Vintagestory.API.Client.CustomMeshDataPartInt.Conversion": "Vintagestory.API.Client.CustomMeshDataPartInt.yml",
"Vintagestory.API.Client.DataConversion": "Vintagestory.API.Client.DataConversion.yml",
"Vintagestory.API.Client.DataConversion.Float": "Vintagestory.API.Client.DataConversion.yml",
"Vintagestory.API.Client.DataConversion.Integer": "Vintagestory.API.Client.DataConversion.yml",
"Vintagestory.API.Client.DataConversion.NormalizedFloat": "Vintagestory.API.Client.DataConversion.yml",
"Vintagestory.API.Client.DialogElement": "Vintagestory.API.Client.DialogElement.yml",
"Vintagestory.API.Client.DialogElement.Code": "Vintagestory.API.Client.DialogElement.yml",
"Vintagestory.API.Client.DialogElement.FontSize": "Vintagestory.API.Client.DialogElement.yml",
"Vintagestory.API.Client.DialogElement.Height": "Vintagestory.API.Client.DialogElement.yml",
"Vintagestory.API.Client.DialogElement.Icon": "Vintagestory.API.Client.DialogElement.yml",
"Vintagestory.API.Client.DialogElement.Icons": "Vintagestory.API.Client.DialogElement.yml",
"Vintagestory.API.Client.DialogElement.Label": "Vintagestory.API.Client.DialogElement.yml",
"Vintagestory.API.Client.DialogElement.MaxValue": "Vintagestory.API.Client.DialogElement.yml",
"Vintagestory.API.Client.DialogElement.MinValue": "Vintagestory.API.Client.DialogElement.yml",
"Vintagestory.API.Client.DialogElement.Mode": "Vintagestory.API.Client.DialogElement.yml",
"Vintagestory.API.Client.DialogElement.Names": "Vintagestory.API.Client.DialogElement.yml",
"Vintagestory.API.Client.DialogElement.Param": "Vintagestory.API.Client.DialogElement.yml",
"Vintagestory.API.Client.DialogElement.Step": "Vintagestory.API.Client.DialogElement.yml",
"Vintagestory.API.Client.DialogElement.Text": "Vintagestory.API.Client.DialogElement.yml",
"Vintagestory.API.Client.DialogElement.Tooltips": "Vintagestory.API.Client.DialogElement.yml",
"Vintagestory.API.Client.DialogElement.Type": "Vintagestory.API.Client.DialogElement.yml",
"Vintagestory.API.Client.DialogElement.Values": "Vintagestory.API.Client.DialogElement.yml",
"Vintagestory.API.Client.DialogElement.Width": "Vintagestory.API.Client.DialogElement.yml",
"Vintagestory.API.Client.DialogRow": "Vintagestory.API.Client.DialogRow.yml",
"Vintagestory.API.Client.DialogRow.#ctor": "Vintagestory.API.Client.DialogRow.yml",
"Vintagestory.API.Client.DialogRow.#ctor(Vintagestory.API.Client.DialogElement[])": "Vintagestory.API.Client.DialogRow.yml",
"Vintagestory.API.Client.DialogRow.BottomPadding": "Vintagestory.API.Client.DialogRow.yml",
"Vintagestory.API.Client.DialogRow.Elements": "Vintagestory.API.Client.DialogRow.yml",
"Vintagestory.API.Client.DialogRow.TopPadding": "Vintagestory.API.Client.DialogRow.yml",
"Vintagestory.API.Client.ElementAlignment": "Vintagestory.API.Client.ElementAlignment.yml",
"Vintagestory.API.Client.ElementAlignment.CenterBottom": "Vintagestory.API.Client.ElementAlignment.yml",
"Vintagestory.API.Client.ElementAlignment.CenterFixed": "Vintagestory.API.Client.ElementAlignment.yml",
"Vintagestory.API.Client.ElementAlignment.CenterMiddle": "Vintagestory.API.Client.ElementAlignment.yml",
"Vintagestory.API.Client.ElementAlignment.CenterTop": "Vintagestory.API.Client.ElementAlignment.yml",
"Vintagestory.API.Client.ElementAlignment.FixedBottom": "Vintagestory.API.Client.ElementAlignment.yml",
"Vintagestory.API.Client.ElementAlignment.FixedMiddle": "Vintagestory.API.Client.ElementAlignment.yml",
"Vintagestory.API.Client.ElementAlignment.FixedTop": "Vintagestory.API.Client.ElementAlignment.yml",
"Vintagestory.API.Client.ElementAlignment.LeftBottom": "Vintagestory.API.Client.ElementAlignment.yml",
"Vintagestory.API.Client.ElementAlignment.LeftFixed": "Vintagestory.API.Client.ElementAlignment.yml",
"Vintagestory.API.Client.ElementAlignment.LeftMiddle": "Vintagestory.API.Client.ElementAlignment.yml",
"Vintagestory.API.Client.ElementAlignment.LeftTop": "Vintagestory.API.Client.ElementAlignment.yml",
"Vintagestory.API.Client.ElementAlignment.None": "Vintagestory.API.Client.ElementAlignment.yml",
"Vintagestory.API.Client.ElementAlignment.RightBottom": "Vintagestory.API.Client.ElementAlignment.yml",
"Vintagestory.API.Client.ElementAlignment.RightFixed": "Vintagestory.API.Client.ElementAlignment.yml",
"Vintagestory.API.Client.ElementAlignment.RightMiddle": "Vintagestory.API.Client.ElementAlignment.yml",
"Vintagestory.API.Client.ElementAlignment.RightTop": "Vintagestory.API.Client.ElementAlignment.yml",
"Vintagestory.API.Client.ElementAlignment.TextBaselineOffset": "Vintagestory.API.Client.ElementAlignment.yml",
"Vintagestory.API.Client.ElementGeometrics": "Vintagestory.API.Client.ElementGeometrics.yml",
"Vintagestory.API.Client.ElementGeometrics.DarkBrownColor": "Vintagestory.API.Client.ElementGeometrics.yml",
"Vintagestory.API.Client.ElementGeometrics.decorativeFontName": "Vintagestory.API.Client.ElementGeometrics.yml",
"Vintagestory.API.Client.ElementGeometrics.DetailFontSize": "Vintagestory.API.Client.ElementGeometrics.yml",
"Vintagestory.API.Client.ElementGeometrics.DialogAlternateBgColor": "Vintagestory.API.Client.ElementGeometrics.yml",
"Vintagestory.API.Client.ElementGeometrics.DialogBGRadius": "Vintagestory.API.Client.ElementGeometrics.yml",
"Vintagestory.API.Client.ElementGeometrics.DialogBlueBgColor": "Vintagestory.API.Client.ElementGeometrics.yml",
"Vintagestory.API.Client.ElementGeometrics.DialogDefaultBgColor": "Vintagestory.API.Client.ElementGeometrics.yml",
"Vintagestory.API.Client.ElementGeometrics.DialogDefaultTextColor": "Vintagestory.API.Client.ElementGeometrics.yml",
"Vintagestory.API.Client.ElementGeometrics.DialogHighlightColor": "Vintagestory.API.Client.ElementGeometrics.yml",
"Vintagestory.API.Client.ElementGeometrics.DialogLightBgColor": "Vintagestory.API.Client.ElementGeometrics.yml",
"Vintagestory.API.Client.ElementGeometrics.DialogStrongBgColor": "Vintagestory.API.Client.ElementGeometrics.yml",
"Vintagestory.API.Client.ElementGeometrics.DialogToScreenPadding": "Vintagestory.API.Client.ElementGeometrics.yml",
"Vintagestory.API.Client.ElementGeometrics.DisabledTextColor": "Vintagestory.API.Client.ElementGeometrics.yml",
"Vintagestory.API.Client.ElementGeometrics.ElementBGRadius": "Vintagestory.API.Client.ElementGeometrics.yml",
"Vintagestory.API.Client.ElementGeometrics.ElementToDialogPadding": "Vintagestory.API.Client.ElementGeometrics.yml",
"Vintagestory.API.Client.ElementGeometrics.ErrorTextColor": "Vintagestory.API.Client.ElementGeometrics.yml",
"Vintagestory.API.Client.ElementGeometrics.FatBarColor": "Vintagestory.API.Client.ElementGeometrics.yml",
"Vintagestory.API.Client.ElementGeometrics.FoodBarColor": "Vintagestory.API.Client.ElementGeometrics.yml",
"Vintagestory.API.Client.ElementGeometrics.HalfPadding": "Vintagestory.API.Client.ElementGeometrics.yml",
"Vintagestory.API.Client.ElementGeometrics.HealthBarColor": "Vintagestory.API.Client.ElementGeometrics.yml",
"Vintagestory.API.Client.ElementGeometrics.LargeFontSize": "Vintagestory.API.Client.ElementGeometrics.yml",
"Vintagestory.API.Client.ElementGeometrics.LightBrownHoverTextColor": "Vintagestory.API.Client.ElementGeometrics.yml",
"Vintagestory.API.Client.ElementGeometrics.LightBrownTextColor": "Vintagestory.API.Client.ElementGeometrics.yml",
"Vintagestory.API.Client.ElementGeometrics.LinkTextColor": "Vintagestory.API.Client.ElementGeometrics.yml",
"Vintagestory.API.Client.ElementGeometrics.MacroIconColor": "Vintagestory.API.Client.ElementGeometrics.yml",
"Vintagestory.API.Client.ElementGeometrics.NormalFontSize": "Vintagestory.API.Client.ElementGeometrics.yml",
"Vintagestory.API.Client.ElementGeometrics.SmallFontSize": "Vintagestory.API.Client.ElementGeometrics.yml",
"Vintagestory.API.Client.ElementGeometrics.SmallishFontSize": "Vintagestory.API.Client.ElementGeometrics.yml",
"Vintagestory.API.Client.ElementGeometrics.standardBoldFontName": "Vintagestory.API.Client.ElementGeometrics.yml",
"Vintagestory.API.Client.ElementGeometrics.standardFontName": "Vintagestory.API.Client.ElementGeometrics.yml",
"Vintagestory.API.Client.ElementGeometrics.standardSemiBoldFontName": "Vintagestory.API.Client.ElementGeometrics.yml",
"Vintagestory.API.Client.ElementGeometrics.SubNormalFontSize": "Vintagestory.API.Client.ElementGeometrics.yml",
"Vintagestory.API.Client.ElementGeometrics.TitleBarColor": "Vintagestory.API.Client.ElementGeometrics.yml",
"Vintagestory.API.Client.ElementGeometrics.XPBarColor": "Vintagestory.API.Client.ElementGeometrics.yml",
"Vintagestory.API.Client.ElementSizing": "Vintagestory.API.Client.ElementSizing.yml",
"Vintagestory.API.Client.ElementSizing.FitToChildren": "Vintagestory.API.Client.ElementSizing.yml",
"Vintagestory.API.Client.ElementSizing.Fixed": "Vintagestory.API.Client.ElementSizing.yml",
"Vintagestory.API.Client.ElementSizing.Percentual": "Vintagestory.API.Client.ElementSizing.yml",
"Vintagestory.API.Client.ElementSizing.PercentualSubstractFixed": "Vintagestory.API.Client.ElementSizing.yml",
"Vintagestory.API.Client.EnumBlendMode": "Vintagestory.API.Client.EnumBlendMode.yml",
"Vintagestory.API.Client.EnumBlendMode.Brighten": "Vintagestory.API.Client.EnumBlendMode.yml",
"Vintagestory.API.Client.EnumBlendMode.Glow": "Vintagestory.API.Client.EnumBlendMode.yml",
"Vintagestory.API.Client.EnumBlendMode.Multiply": "Vintagestory.API.Client.EnumBlendMode.yml",
"Vintagestory.API.Client.EnumBlendMode.Overlay": "Vintagestory.API.Client.EnumBlendMode.yml",
"Vintagestory.API.Client.EnumBlendMode.PremultipliedAlpha": "Vintagestory.API.Client.EnumBlendMode.yml",
"Vintagestory.API.Client.EnumBlendMode.Standard": "Vintagestory.API.Client.EnumBlendMode.yml",
"Vintagestory.API.Client.EnumCameraMode": "Vintagestory.API.Client.EnumCameraMode.yml",
"Vintagestory.API.Client.EnumCameraMode.FirstPerson": "Vintagestory.API.Client.EnumCameraMode.yml",
"Vintagestory.API.Client.EnumCameraMode.Overhead": "Vintagestory.API.Client.EnumCameraMode.yml",
"Vintagestory.API.Client.EnumCameraMode.ThirdPerson": "Vintagestory.API.Client.EnumCameraMode.yml",
"Vintagestory.API.Client.EnumChunkRenderPass": "Vintagestory.API.Client.EnumChunkRenderPass.yml",
"Vintagestory.API.Client.EnumChunkRenderPass.BlendNoCull": "Vintagestory.API.Client.EnumChunkRenderPass.yml",
"Vintagestory.API.Client.EnumChunkRenderPass.Liquid": "Vintagestory.API.Client.EnumChunkRenderPass.yml",
"Vintagestory.API.Client.EnumChunkRenderPass.Meta": "Vintagestory.API.Client.EnumChunkRenderPass.yml",
"Vintagestory.API.Client.EnumChunkRenderPass.Opaque": "Vintagestory.API.Client.EnumChunkRenderPass.yml",
"Vintagestory.API.Client.EnumChunkRenderPass.OpaqueNoCull": "Vintagestory.API.Client.EnumChunkRenderPass.yml",
"Vintagestory.API.Client.EnumChunkRenderPass.TopSoil": "Vintagestory.API.Client.EnumChunkRenderPass.yml",
"Vintagestory.API.Client.EnumChunkRenderPass.Transparent": "Vintagestory.API.Client.EnumChunkRenderPass.yml",
"Vintagestory.API.Client.EnumDialogElementMode": "Vintagestory.API.Client.EnumDialogElementMode.yml",
"Vintagestory.API.Client.EnumDialogElementMode.Buttons": "Vintagestory.API.Client.EnumDialogElementMode.yml",
"Vintagestory.API.Client.EnumDialogElementMode.DropDown": "Vintagestory.API.Client.EnumDialogElementMode.yml",
"Vintagestory.API.Client.EnumDialogElementType": "Vintagestory.API.Client.EnumDialogElementType.yml",
"Vintagestory.API.Client.EnumDialogElementType.Button": "Vintagestory.API.Client.EnumDialogElementType.yml",
"Vintagestory.API.Client.EnumDialogElementType.Input": "Vintagestory.API.Client.EnumDialogElementType.yml",
"Vintagestory.API.Client.EnumDialogElementType.NumberInput": "Vintagestory.API.Client.EnumDialogElementType.yml",
"Vintagestory.API.Client.EnumDialogElementType.Select": "Vintagestory.API.Client.EnumDialogElementType.yml",
"Vintagestory.API.Client.EnumDialogElementType.Slider": "Vintagestory.API.Client.EnumDialogElementType.yml",
"Vintagestory.API.Client.EnumDialogElementType.Switch": "Vintagestory.API.Client.EnumDialogElementType.yml",
"Vintagestory.API.Client.EnumDialogElementType.Text": "Vintagestory.API.Client.EnumDialogElementType.yml",
"Vintagestory.API.Client.EnumDrawMode": "Vintagestory.API.Client.EnumDrawMode.yml",
"Vintagestory.API.Client.EnumDrawMode.Lines": "Vintagestory.API.Client.EnumDrawMode.yml",
"Vintagestory.API.Client.EnumDrawMode.LineStrip": "Vintagestory.API.Client.EnumDrawMode.yml",
"Vintagestory.API.Client.EnumDrawMode.Triangles": "Vintagestory.API.Client.EnumDrawMode.yml",
"Vintagestory.API.Client.EnumDrawType": "Vintagestory.API.Client.EnumDrawType.yml",
"Vintagestory.API.Client.EnumDrawType.BlockLayer_1": "Vintagestory.API.Client.EnumDrawType.yml",
"Vintagestory.API.Client.EnumDrawType.BlockLayer_2": "Vintagestory.API.Client.EnumDrawType.yml",
"Vintagestory.API.Client.EnumDrawType.BlockLayer_3": "Vintagestory.API.Client.EnumDrawType.yml",
"Vintagestory.API.Client.EnumDrawType.BlockLayer_4": "Vintagestory.API.Client.EnumDrawType.yml",
"Vintagestory.API.Client.EnumDrawType.BlockLayer_5": "Vintagestory.API.Client.EnumDrawType.yml",
"Vintagestory.API.Client.EnumDrawType.BlockLayer_6": "Vintagestory.API.Client.EnumDrawType.yml",
"Vintagestory.API.Client.EnumDrawType.BlockLayer_7": "Vintagestory.API.Client.EnumDrawType.yml",
"Vintagestory.API.Client.EnumDrawType.Cross": "Vintagestory.API.Client.EnumDrawType.yml",
"Vintagestory.API.Client.EnumDrawType.CrossAndSnowlayer": "Vintagestory.API.Client.EnumDrawType.yml",
"Vintagestory.API.Client.EnumDrawType.Cube": "Vintagestory.API.Client.EnumDrawType.yml",
"Vintagestory.API.Client.EnumDrawType.Empty": "Vintagestory.API.Client.EnumDrawType.yml",
"Vintagestory.API.Client.EnumDrawType.JSON": "Vintagestory.API.Client.EnumDrawType.yml",
"Vintagestory.API.Client.EnumDrawType.JSONAndWater": "Vintagestory.API.Client.EnumDrawType.yml",
"Vintagestory.API.Client.EnumDrawType.Liquid": "Vintagestory.API.Client.EnumDrawType.yml",
"Vintagestory.API.Client.EnumDrawType.TopSoil": "Vintagestory.API.Client.EnumDrawType.yml",
"Vintagestory.API.Client.EnumDrawType.Transparent": "Vintagestory.API.Client.EnumDrawType.yml",
"Vintagestory.API.Client.EnumFaceCullMode": "Vintagestory.API.Client.EnumFaceCullMode.yml",
"Vintagestory.API.Client.EnumFaceCullMode.Collapse": "Vintagestory.API.Client.EnumFaceCullMode.yml",
"Vintagestory.API.Client.EnumFaceCullMode.CollapseMaterial": "Vintagestory.API.Client.EnumFaceCullMode.yml",
"Vintagestory.API.Client.EnumFaceCullMode.Default": "Vintagestory.API.Client.EnumFaceCullMode.yml",
"Vintagestory.API.Client.EnumFaceCullMode.Liquid": "Vintagestory.API.Client.EnumFaceCullMode.yml",
"Vintagestory.API.Client.EnumFaceCullMode.Merge": "Vintagestory.API.Client.EnumFaceCullMode.yml",
"Vintagestory.API.Client.EnumFaceCullMode.MergeMaterial": "Vintagestory.API.Client.EnumFaceCullMode.yml",
"Vintagestory.API.Client.EnumFaceCullMode.NeverCull": "Vintagestory.API.Client.EnumFaceCullMode.yml",
"Vintagestory.API.Client.EnumFontStyle": "Vintagestory.API.Client.EnumFontStyle.yml",
"Vintagestory.API.Client.EnumFontStyle.Bold": "Vintagestory.API.Client.EnumFontStyle.yml",
"Vintagestory.API.Client.EnumFontStyle.Italic": "Vintagestory.API.Client.EnumFontStyle.yml",
"Vintagestory.API.Client.EnumFontStyle.Regular": "Vintagestory.API.Client.EnumFontStyle.yml",
"Vintagestory.API.Client.EnumFontStyle.Strikeout": "Vintagestory.API.Client.EnumFontStyle.yml",
"Vintagestory.API.Client.EnumFontStyle.Underline": "Vintagestory.API.Client.EnumFontStyle.yml",
"Vintagestory.API.Client.EnumFramebufferAttachment": "Vintagestory.API.Client.EnumFramebufferAttachment.yml",
"Vintagestory.API.Client.EnumFramebufferAttachment.ColorAttachment0": "Vintagestory.API.Client.EnumFramebufferAttachment.yml",
"Vintagestory.API.Client.EnumFramebufferAttachment.ColorAttachment1": "Vintagestory.API.Client.EnumFramebufferAttachment.yml",
"Vintagestory.API.Client.EnumFramebufferAttachment.ColorAttachment2": "Vintagestory.API.Client.EnumFramebufferAttachment.yml",
"Vintagestory.API.Client.EnumFramebufferAttachment.ColorAttachment3": "Vintagestory.API.Client.EnumFramebufferAttachment.yml",
"Vintagestory.API.Client.EnumFramebufferAttachment.ColorAttachment4": "Vintagestory.API.Client.EnumFramebufferAttachment.yml",
"Vintagestory.API.Client.EnumFramebufferAttachment.DepthAttachment": "Vintagestory.API.Client.EnumFramebufferAttachment.yml",
"Vintagestory.API.Client.EnumHighlightBlocksMode": "Vintagestory.API.Client.EnumHighlightBlocksMode.yml",
"Vintagestory.API.Client.EnumHighlightBlocksMode.Absolute": "Vintagestory.API.Client.EnumHighlightBlocksMode.yml",
"Vintagestory.API.Client.EnumHighlightBlocksMode.AttachedToSelectedBlock": "Vintagestory.API.Client.EnumHighlightBlocksMode.yml",
"Vintagestory.API.Client.EnumHighlightBlocksMode.CenteredToSelectedBlock": "Vintagestory.API.Client.EnumHighlightBlocksMode.yml",
"Vintagestory.API.Client.EnumHighlightBlocksMode.CenteredToSelectedBlockFollowTerrain": "Vintagestory.API.Client.EnumHighlightBlocksMode.yml",
"Vintagestory.API.Client.EnumItemRenderTarget": "Vintagestory.API.Client.EnumItemRenderTarget.yml",
"Vintagestory.API.Client.EnumItemRenderTarget.Ground": "Vintagestory.API.Client.EnumItemRenderTarget.yml",
"Vintagestory.API.Client.EnumItemRenderTarget.Gui": "Vintagestory.API.Client.EnumItemRenderTarget.yml",
"Vintagestory.API.Client.EnumItemRenderTarget.HandFp": "Vintagestory.API.Client.EnumItemRenderTarget.yml",
"Vintagestory.API.Client.EnumItemRenderTarget.HandTp": "Vintagestory.API.Client.EnumItemRenderTarget.yml",
"Vintagestory.API.Client.EnumRenderStage": "Vintagestory.API.Client.EnumRenderStage.yml",
"Vintagestory.API.Client.EnumRenderStage.AfterFinalComposition": "Vintagestory.API.Client.EnumRenderStage.yml",
"Vintagestory.API.Client.EnumRenderStage.AfterPostProcessing": "Vintagestory.API.Client.EnumRenderStage.yml",
"Vintagestory.API.Client.EnumRenderStage.Before": "Vintagestory.API.Client.EnumRenderStage.yml",
"Vintagestory.API.Client.EnumRenderStage.Done": "Vintagestory.API.Client.EnumRenderStage.yml",
"Vintagestory.API.Client.EnumRenderStage.OIT": "Vintagestory.API.Client.EnumRenderStage.yml",
"Vintagestory.API.Client.EnumRenderStage.Opaque": "Vintagestory.API.Client.EnumRenderStage.yml",
"Vintagestory.API.Client.EnumRenderStage.Ortho": "Vintagestory.API.Client.EnumRenderStage.yml",
"Vintagestory.API.Client.EnumRenderStage.ShadowFar": "Vintagestory.API.Client.EnumRenderStage.yml",
"Vintagestory.API.Client.EnumRenderStage.ShadowFarDone": "Vintagestory.API.Client.EnumRenderStage.yml",
"Vintagestory.API.Client.EnumRenderStage.ShadowNear": "Vintagestory.API.Client.EnumRenderStage.yml",
"Vintagestory.API.Client.EnumRenderStage.ShadowNearDone": "Vintagestory.API.Client.EnumRenderStage.yml",
"Vintagestory.API.Client.EnumShaderProgram": "Vintagestory.API.Client.EnumShaderProgram.yml",
"Vintagestory.API.Client.EnumShaderProgram.Autocamera": "Vintagestory.API.Client.EnumShaderProgram.yml",
"Vintagestory.API.Client.EnumShaderProgram.Blit": "Vintagestory.API.Client.EnumShaderProgram.yml",
"Vintagestory.API.Client.EnumShaderProgram.Blockhighlights": "Vintagestory.API.Client.EnumShaderProgram.yml",
"Vintagestory.API.Client.EnumShaderProgram.Blur": "Vintagestory.API.Client.EnumShaderProgram.yml",
"Vintagestory.API.Client.EnumShaderProgram.Celestialobject": "Vintagestory.API.Client.EnumShaderProgram.yml",
"Vintagestory.API.Client.EnumShaderProgram.Chunkliquid": "Vintagestory.API.Client.EnumShaderProgram.yml",
"Vintagestory.API.Client.EnumShaderProgram.Chunkopaque": "Vintagestory.API.Client.EnumShaderProgram.yml",
"Vintagestory.API.Client.EnumShaderProgram.Chunktopsoil": "Vintagestory.API.Client.EnumShaderProgram.yml",
"Vintagestory.API.Client.EnumShaderProgram.Chunktransparent": "Vintagestory.API.Client.EnumShaderProgram.yml",
"Vintagestory.API.Client.EnumShaderProgram.Clouds": "Vintagestory.API.Client.EnumShaderProgram.yml",
"Vintagestory.API.Client.EnumShaderProgram.Debugdepthbuffer": "Vintagestory.API.Client.EnumShaderProgram.yml",
"Vintagestory.API.Client.EnumShaderProgram.Decals": "Vintagestory.API.Client.EnumShaderProgram.yml",
"Vintagestory.API.Client.EnumShaderProgram.Entityanimated": "Vintagestory.API.Client.EnumShaderProgram.yml",
"Vintagestory.API.Client.EnumShaderProgram.Final": "Vintagestory.API.Client.EnumShaderProgram.yml",
"Vintagestory.API.Client.EnumShaderProgram.Findbright": "Vintagestory.API.Client.EnumShaderProgram.yml",
"Vintagestory.API.Client.EnumShaderProgram.Godrays": "Vintagestory.API.Client.EnumShaderProgram.yml",
"Vintagestory.API.Client.EnumShaderProgram.Gui": "Vintagestory.API.Client.EnumShaderProgram.yml",
"Vintagestory.API.Client.EnumShaderProgram.Guitopsoil": "Vintagestory.API.Client.EnumShaderProgram.yml",
"Vintagestory.API.Client.EnumShaderProgram.Helditem": "Vintagestory.API.Client.EnumShaderProgram.yml",
"Vintagestory.API.Client.EnumShaderProgram.Luma": "Vintagestory.API.Client.EnumShaderProgram.yml",
"Vintagestory.API.Client.EnumShaderProgram.Mainmenuparticles": "Vintagestory.API.Client.EnumShaderProgram.yml",
"Vintagestory.API.Client.EnumShaderProgram.Multitexturetest": "Vintagestory.API.Client.EnumShaderProgram.yml",
"Vintagestory.API.Client.EnumShaderProgram.Nightsky": "Vintagestory.API.Client.EnumShaderProgram.yml",
"Vintagestory.API.Client.EnumShaderProgram.Particlescube": "Vintagestory.API.Client.EnumShaderProgram.yml",
"Vintagestory.API.Client.EnumShaderProgram.Particlesquad": "Vintagestory.API.Client.EnumShaderProgram.yml",
"Vintagestory.API.Client.EnumShaderProgram.Shadowmap": "Vintagestory.API.Client.EnumShaderProgram.yml",
"Vintagestory.API.Client.EnumShaderProgram.Shadowmapentityanimated": "Vintagestory.API.Client.EnumShaderProgram.yml",
"Vintagestory.API.Client.EnumShaderProgram.Shadowmapgeneric": "Vintagestory.API.Client.EnumShaderProgram.yml",
"Vintagestory.API.Client.EnumShaderProgram.Sky": "Vintagestory.API.Client.EnumShaderProgram.yml",
"Vintagestory.API.Client.EnumShaderProgram.Standard": "Vintagestory.API.Client.EnumShaderProgram.yml",
"Vintagestory.API.Client.EnumShaderProgram.Texture2texture": "Vintagestory.API.Client.EnumShaderProgram.yml",
"Vintagestory.API.Client.EnumShaderProgram.Transparentcompose": "Vintagestory.API.Client.EnumShaderProgram.yml",
"Vintagestory.API.Client.EnumShaderProgram.Wireframe": "Vintagestory.API.Client.EnumShaderProgram.yml",
"Vintagestory.API.Client.EnumShaderProgram.Woittest": "Vintagestory.API.Client.EnumShaderProgram.yml",
"Vintagestory.API.Client.EnumShaderType": "Vintagestory.API.Client.EnumShaderType.yml",
"Vintagestory.API.Client.EnumShaderType.ComputeShader": "Vintagestory.API.Client.EnumShaderType.yml",
"Vintagestory.API.Client.EnumShaderType.FragmentShader": "Vintagestory.API.Client.EnumShaderType.yml",
"Vintagestory.API.Client.EnumShaderType.GeometryShader": "Vintagestory.API.Client.EnumShaderType.yml",
"Vintagestory.API.Client.EnumShaderType.GeometryShaderExt": "Vintagestory.API.Client.EnumShaderType.yml",
"Vintagestory.API.Client.EnumShaderType.TessControlShader": "Vintagestory.API.Client.EnumShaderType.yml",
"Vintagestory.API.Client.EnumShaderType.TessEvaluationShader": "Vintagestory.API.Client.EnumShaderType.yml",
"Vintagestory.API.Client.EnumShaderType.VertexShader": "Vintagestory.API.Client.EnumShaderType.yml",
"Vintagestory.API.Client.EnumSoundType": "Vintagestory.API.Client.EnumSoundType.yml",
"Vintagestory.API.Client.EnumSoundType.Music": "Vintagestory.API.Client.EnumSoundType.yml",
"Vintagestory.API.Client.EnumSoundType.Sound": "Vintagestory.API.Client.EnumSoundType.yml",
"Vintagestory.API.Client.EnumTextOrientation": "Vintagestory.API.Client.EnumTextOrientation.yml",
"Vintagestory.API.Client.EnumTextOrientation.Center": "Vintagestory.API.Client.EnumTextOrientation.yml",
"Vintagestory.API.Client.EnumTextOrientation.Justify": "Vintagestory.API.Client.EnumTextOrientation.yml",
"Vintagestory.API.Client.EnumTextOrientation.Left": "Vintagestory.API.Client.EnumTextOrientation.yml",
"Vintagestory.API.Client.EnumTextOrientation.Right": "Vintagestory.API.Client.EnumTextOrientation.yml",
"Vintagestory.API.Client.EnumTextureFilter": "Vintagestory.API.Client.EnumTextureFilter.yml",
"Vintagestory.API.Client.EnumTextureFilter.Linear": "Vintagestory.API.Client.EnumTextureFilter.yml",
"Vintagestory.API.Client.EnumTextureFilter.Nearest": "Vintagestory.API.Client.EnumTextureFilter.yml",
"Vintagestory.API.Client.EnumTextureInternalFormat": "Vintagestory.API.Client.EnumTextureInternalFormat.yml",
"Vintagestory.API.Client.EnumTextureInternalFormat.DepthComponent32": "Vintagestory.API.Client.EnumTextureInternalFormat.yml",
"Vintagestory.API.Client.EnumTextureInternalFormat.R16f": "Vintagestory.API.Client.EnumTextureInternalFormat.yml",
"Vintagestory.API.Client.EnumTextureInternalFormat.Rgba16f": "Vintagestory.API.Client.EnumTextureInternalFormat.yml",
"Vintagestory.API.Client.EnumTextureInternalFormat.Rgba8": "Vintagestory.API.Client.EnumTextureInternalFormat.yml",
"Vintagestory.API.Client.EnumTexturePixelFormat": "Vintagestory.API.Client.EnumTexturePixelFormat.yml",
"Vintagestory.API.Client.EnumTexturePixelFormat.DepthComponent": "Vintagestory.API.Client.EnumTexturePixelFormat.yml",
"Vintagestory.API.Client.EnumTexturePixelFormat.Red": "Vintagestory.API.Client.EnumTexturePixelFormat.yml",
"Vintagestory.API.Client.EnumTexturePixelFormat.Rgba": "Vintagestory.API.Client.EnumTexturePixelFormat.yml",
"Vintagestory.API.Client.EnumTextureWrap": "Vintagestory.API.Client.EnumTextureWrap.yml",
"Vintagestory.API.Client.EnumTextureWrap.ClampToEdge": "Vintagestory.API.Client.EnumTextureWrap.yml",
"Vintagestory.API.Client.EnumTextureWrap.Repeat": "Vintagestory.API.Client.EnumTextureWrap.yml",
"Vintagestory.API.Client.FontConfig": "Vintagestory.API.Client.FontConfig.yml",
"Vintagestory.API.Client.FontConfig.Color": "Vintagestory.API.Client.FontConfig.yml",
"Vintagestory.API.Client.FontConfig.Fontname": "Vintagestory.API.Client.FontConfig.yml",
"Vintagestory.API.Client.FontConfig.FontWeight": "Vintagestory.API.Client.FontConfig.yml",
"Vintagestory.API.Client.FontConfig.StrokeColor": "Vintagestory.API.Client.FontConfig.yml",
"Vintagestory.API.Client.FontConfig.StrokeWidth": "Vintagestory.API.Client.FontConfig.yml",
"Vintagestory.API.Client.FontConfig.UnscaledFontsize": "Vintagestory.API.Client.FontConfig.yml",
"Vintagestory.API.Client.FramebufferAttrs": "Vintagestory.API.Client.FramebufferAttrs.yml",
"Vintagestory.API.Client.FramebufferAttrs.#ctor(System.String,System.Int32,System.Int32)": "Vintagestory.API.Client.FramebufferAttrs.yml",
"Vintagestory.API.Client.FramebufferAttrs.Attachments": "Vintagestory.API.Client.FramebufferAttrs.yml",
"Vintagestory.API.Client.FramebufferAttrs.Height": "Vintagestory.API.Client.FramebufferAttrs.yml",
"Vintagestory.API.Client.FramebufferAttrs.Name": "Vintagestory.API.Client.FramebufferAttrs.yml",
"Vintagestory.API.Client.FramebufferAttrs.Width": "Vintagestory.API.Client.FramebufferAttrs.yml",
"Vintagestory.API.Client.FramebufferAttrsAttachment": "Vintagestory.API.Client.FramebufferAttrsAttachment.yml",
"Vintagestory.API.Client.FramebufferAttrsAttachment.AttachmentType": "Vintagestory.API.Client.FramebufferAttrsAttachment.yml",
"Vintagestory.API.Client.FramebufferAttrsAttachment.Texture": "Vintagestory.API.Client.FramebufferAttrsAttachment.yml",
"Vintagestory.API.Client.FrameBufferRef": "Vintagestory.API.Client.FrameBufferRef.yml",
"Vintagestory.API.Client.FrameBufferRef.ColorTextureIds": "Vintagestory.API.Client.FrameBufferRef.yml",
"Vintagestory.API.Client.FrameBufferRef.DepthTextureId": "Vintagestory.API.Client.FrameBufferRef.yml",
"Vintagestory.API.Client.FrameBufferRef.FbAttrs": "Vintagestory.API.Client.FrameBufferRef.yml",
"Vintagestory.API.Client.FrameBufferRef.FboId": "Vintagestory.API.Client.FrameBufferRef.yml",
"Vintagestory.API.Client.FrameBufferRef.Height": "Vintagestory.API.Client.FrameBufferRef.yml",
"Vintagestory.API.Client.FrameBufferRef.Width": "Vintagestory.API.Client.FrameBufferRef.yml",
"Vintagestory.API.Client.GlKeys": "Vintagestory.API.Client.GlKeys.yml",
"Vintagestory.API.Client.GlKeys.A": "Vintagestory.API.Client.GlKeys.yml",
"Vintagestory.API.Client.GlKeys.AltLeft": "Vintagestory.API.Client.GlKeys.yml",
"Vintagestory.API.Client.GlKeys.AltRight": "Vintagestory.API.Client.GlKeys.yml",
"Vintagestory.API.Client.GlKeys.B": "Vintagestory.API.Client.GlKeys.yml",
"Vintagestory.API.Client.GlKeys.Back": "Vintagestory.API.Client.GlKeys.yml",
"Vintagestory.API.Client.GlKeys.BackSlash": "Vintagestory.API.Client.GlKeys.yml",
"Vintagestory.API.Client.GlKeys.BackSpace": "Vintagestory.API.Client.GlKeys.yml",
"Vintagestory.API.Client.GlKeys.BracketLeft": "Vintagestory.API.Client.GlKeys.yml",
"Vintagestory.API.Client.GlKeys.BracketRight": "Vintagestory.API.Client.GlKeys.yml",
"Vintagestory.API.Client.GlKeys.C": "Vintagestory.API.Client.GlKeys.yml",
"Vintagestory.API.Client.GlKeys.CapsLock": "Vintagestory.API.Client.GlKeys.yml",
"Vintagestory.API.Client.GlKeys.Clear": "Vintagestory.API.Client.GlKeys.yml",
"Vintagestory.API.Client.GlKeys.Comma": "Vintagestory.API.Client.GlKeys.yml",
"Vintagestory.API.Client.GlKeys.ControlLeft": "Vintagestory.API.Client.GlKeys.yml",
"Vintagestory.API.Client.GlKeys.ControlRight": "Vintagestory.API.Client.GlKeys.yml",
"Vintagestory.API.Client.GlKeys.D": "Vintagestory.API.Client.GlKeys.yml",
"Vintagestory.API.Client.GlKeys.Delete": "Vintagestory.API.Client.GlKeys.yml",
"Vintagestory.API.Client.GlKeys.Down": "Vintagestory.API.Client.GlKeys.yml",
"Vintagestory.API.Client.GlKeys.E": "Vintagestory.API.Client.GlKeys.yml",
"Vintagestory.API.Client.GlKeys.End": "Vintagestory.API.Client.GlKeys.yml",
"Vintagestory.API.Client.GlKeys.Enter": "Vintagestory.API.Client.GlKeys.yml",
"Vintagestory.API.Client.GlKeys.Escape": "Vintagestory.API.Client.GlKeys.yml",
"Vintagestory.API.Client.GlKeys.F": "Vintagestory.API.Client.GlKeys.yml",
"Vintagestory.API.Client.GlKeys.F1": "Vintagestory.API.Client.GlKeys.yml",
"Vintagestory.API.Client.GlKeys.F10": "Vintagestory.API.Client.GlKeys.yml",
"Vintagestory.API.Client.GlKeys.F11": "Vintagestory.API.Client.GlKeys.yml",
"Vintagestory.API.Client.GlKeys.F12": "Vintagestory.API.Client.GlKeys.yml",
"Vintagestory.API.Client.GlKeys.F13": "Vintagestory.API.Client.GlKeys.yml",
"Vintagestory.API.Client.GlKeys.F14": "Vintagestory.API.Client.GlKeys.yml",
"Vintagestory.API.Client.GlKeys.F15": "Vintagestory.API.Client.GlKeys.yml",
"Vintagestory.API.Client.GlKeys.F16": "Vintagestory.API.Client.GlKeys.yml",
"Vintagestory.API.Client.GlKeys.F17": "Vintagestory.API.Client.GlKeys.yml",
"Vintagestory.API.Client.GlKeys.F18": "Vintagestory.API.Client.GlKeys.yml",
"Vintagestory.API.Client.GlKeys.F19": "Vintagestory.API.Client.GlKeys.yml",
"Vintagestory.API.Client.GlKeys.F2": "Vintagestory.API.Client.GlKeys.yml",
"Vintagestory.API.Client.GlKeys.F20": "Vintagestory.API.Client.GlKeys.yml",
"Vintagestory.API.Client.GlKeys.F21": "Vintagestory.API.Client.GlKeys.yml",
"Vintagestory.API.Client.GlKeys.F22": "Vintagestory.API.Client.GlKeys.yml",
"Vintagestory.API.Client.GlKeys.F23": "Vintagestory.API.Client.GlKeys.yml",
"Vintagestory.API.Client.GlKeys.F24": "Vintagestory.API.Client.GlKeys.yml",
"Vintagestory.API.Client.GlKeys.F25": "Vintagestory.API.Client.GlKeys.yml",
"Vintagestory.API.Client.GlKeys.F26": "Vintagestory.API.Client.GlKeys.yml",
"Vintagestory.API.Client.GlKeys.F27": "Vintagestory.API.Client.GlKeys.yml",
"Vintagestory.API.Client.GlKeys.F28": "Vintagestory.API.Client.GlKeys.yml",
"Vintagestory.API.Client.GlKeys.F29": "Vintagestory.API.Client.GlKeys.yml",
"Vintagestory.API.Client.GlKeys.F3": "Vintagestory.API.Client.GlKeys.yml",
"Vintagestory.API.Client.GlKeys.F30": "Vintagestory.API.Client.GlKeys.yml",
"Vintagestory.API.Client.GlKeys.F31": "Vintagestory.API.Client.GlKeys.yml",
"Vintagestory.API.Client.GlKeys.F32": "Vintagestory.API.Client.GlKeys.yml",
"Vintagestory.API.Client.GlKeys.F33": "Vintagestory.API.Client.GlKeys.yml",
"Vintagestory.API.Client.GlKeys.F34": "Vintagestory.API.Client.GlKeys.yml",
"Vintagestory.API.Client.GlKeys.F35": "Vintagestory.API.Client.GlKeys.yml",
"Vintagestory.API.Client.GlKeys.F4": "Vintagestory.API.Client.GlKeys.yml",
"Vintagestory.API.Client.GlKeys.F5": "Vintagestory.API.Client.GlKeys.yml",
"Vintagestory.API.Client.GlKeys.F6": "Vintagestory.API.Client.GlKeys.yml",
"Vintagestory.API.Client.GlKeys.F7": "Vintagestory.API.Client.GlKeys.yml",
"Vintagestory.API.Client.GlKeys.F8": "Vintagestory.API.Client.GlKeys.yml",
"Vintagestory.API.Client.GlKeys.F9": "Vintagestory.API.Client.GlKeys.yml",
"Vintagestory.API.Client.GlKeys.G": "Vintagestory.API.Client.GlKeys.yml",
"Vintagestory.API.Client.GlKeys.H": "Vintagestory.API.Client.GlKeys.yml",
"Vintagestory.API.Client.GlKeys.Home": "Vintagestory.API.Client.GlKeys.yml",
"Vintagestory.API.Client.GlKeys.I": "Vintagestory.API.Client.GlKeys.yml",
"Vintagestory.API.Client.GlKeys.Insert": "Vintagestory.API.Client.GlKeys.yml",
"Vintagestory.API.Client.GlKeys.J": "Vintagestory.API.Client.GlKeys.yml",
"Vintagestory.API.Client.GlKeys.K": "Vintagestory.API.Client.GlKeys.yml",
"Vintagestory.API.Client.GlKeys.Keypad0": "Vintagestory.API.Client.GlKeys.yml",
"Vintagestory.API.Client.GlKeys.Keypad1": "Vintagestory.API.Client.GlKeys.yml",
"Vintagestory.API.Client.GlKeys.Keypad2": "Vintagestory.API.Client.GlKeys.yml",
"Vintagestory.API.Client.GlKeys.Keypad3": "Vintagestory.API.Client.GlKeys.yml",
"Vintagestory.API.Client.GlKeys.Keypad4": "Vintagestory.API.Client.GlKeys.yml",
"Vintagestory.API.Client.GlKeys.Keypad5": "Vintagestory.API.Client.GlKeys.yml",
"Vintagestory.API.Client.GlKeys.Keypad6": "Vintagestory.API.Client.GlKeys.yml",
"Vintagestory.API.Client.GlKeys.Keypad7": "Vintagestory.API.Client.GlKeys.yml",
"Vintagestory.API.Client.GlKeys.Keypad8": "Vintagestory.API.Client.GlKeys.yml",
"Vintagestory.API.Client.GlKeys.Keypad9": "Vintagestory.API.Client.GlKeys.yml",
"Vintagestory.API.Client.GlKeys.KeypadAdd": "Vintagestory.API.Client.GlKeys.yml",
"Vintagestory.API.Client.GlKeys.KeypadDecimal": "Vintagestory.API.Client.GlKeys.yml",
"Vintagestory.API.Client.GlKeys.KeypadDivide": "Vintagestory.API.Client.GlKeys.yml",
"Vintagestory.API.Client.GlKeys.KeypadEnter": "Vintagestory.API.Client.GlKeys.yml",
"Vintagestory.API.Client.GlKeys.KeypadMinus": "Vintagestory.API.Client.GlKeys.yml",
"Vintagestory.API.Client.GlKeys.KeypadMultiply": "Vintagestory.API.Client.GlKeys.yml",
"Vintagestory.API.Client.GlKeys.KeypadPlus": "Vintagestory.API.Client.GlKeys.yml",
"Vintagestory.API.Client.GlKeys.KeypadSubtract": "Vintagestory.API.Client.GlKeys.yml",
"Vintagestory.API.Client.GlKeys.L": "Vintagestory.API.Client.GlKeys.yml",
"Vintagestory.API.Client.GlKeys.LAlt": "Vintagestory.API.Client.GlKeys.yml",
"Vintagestory.API.Client.GlKeys.LastKey": "Vintagestory.API.Client.GlKeys.yml",
"Vintagestory.API.Client.GlKeys.LBracket": "Vintagestory.API.Client.GlKeys.yml",
"Vintagestory.API.Client.GlKeys.LControl": "Vintagestory.API.Client.GlKeys.yml",
"Vintagestory.API.Client.GlKeys.Left": "Vintagestory.API.Client.GlKeys.yml",
"Vintagestory.API.Client.GlKeys.LShift": "Vintagestory.API.Client.GlKeys.yml",
"Vintagestory.API.Client.GlKeys.LWin": "Vintagestory.API.Client.GlKeys.yml",
"Vintagestory.API.Client.GlKeys.M": "Vintagestory.API.Client.GlKeys.yml",
"Vintagestory.API.Client.GlKeys.Menu": "Vintagestory.API.Client.GlKeys.yml",
"Vintagestory.API.Client.GlKeys.Minus": "Vintagestory.API.Client.GlKeys.yml",
"Vintagestory.API.Client.GlKeys.N": "Vintagestory.API.Client.GlKeys.yml",
"Vintagestory.API.Client.GlKeys.Number0": "Vintagestory.API.Client.GlKeys.yml",
"Vintagestory.API.Client.GlKeys.Number1": "Vintagestory.API.Client.GlKeys.yml",
"Vintagestory.API.Client.GlKeys.Number2": "Vintagestory.API.Client.GlKeys.yml",
"Vintagestory.API.Client.GlKeys.Number3": "Vintagestory.API.Client.GlKeys.yml",
"Vintagestory.API.Client.GlKeys.Number4": "Vintagestory.API.Client.GlKeys.yml",
"Vintagestory.API.Client.GlKeys.Number5": "Vintagestory.API.Client.GlKeys.yml",
"Vintagestory.API.Client.GlKeys.Number6": "Vintagestory.API.Client.GlKeys.yml",
"Vintagestory.API.Client.GlKeys.Number7": "Vintagestory.API.Client.GlKeys.yml",
"Vintagestory.API.Client.GlKeys.Number8": "Vintagestory.API.Client.GlKeys.yml",
"Vintagestory.API.Client.GlKeys.Number9": "Vintagestory.API.Client.GlKeys.yml",
"Vintagestory.API.Client.GlKeys.NumLock": "Vintagestory.API.Client.GlKeys.yml",
"Vintagestory.API.Client.GlKeys.O": "Vintagestory.API.Client.GlKeys.yml",
"Vintagestory.API.Client.GlKeys.P": "Vintagestory.API.Client.GlKeys.yml",
"Vintagestory.API.Client.GlKeys.PageDown": "Vintagestory.API.Client.GlKeys.yml",
"Vintagestory.API.Client.GlKeys.PageUp": "Vintagestory.API.Client.GlKeys.yml",
"Vintagestory.API.Client.GlKeys.Pause": "Vintagestory.API.Client.GlKeys.yml",
"Vintagestory.API.Client.GlKeys.Period": "Vintagestory.API.Client.GlKeys.yml",
"Vintagestory.API.Client.GlKeys.Plus": "Vintagestory.API.Client.GlKeys.yml",
"Vintagestory.API.Client.GlKeys.PrintScreen": "Vintagestory.API.Client.GlKeys.yml",
"Vintagestory.API.Client.GlKeys.Q": "Vintagestory.API.Client.GlKeys.yml",
"Vintagestory.API.Client.GlKeys.Quote": "Vintagestory.API.Client.GlKeys.yml",
"Vintagestory.API.Client.GlKeys.R": "Vintagestory.API.Client.GlKeys.yml",
"Vintagestory.API.Client.GlKeys.RAlt": "Vintagestory.API.Client.GlKeys.yml",
"Vintagestory.API.Client.GlKeys.RBracket": "Vintagestory.API.Client.GlKeys.yml",
"Vintagestory.API.Client.GlKeys.RControl": "Vintagestory.API.Client.GlKeys.yml",
"Vintagestory.API.Client.GlKeys.Right": "Vintagestory.API.Client.GlKeys.yml",
"Vintagestory.API.Client.GlKeys.RShift": "Vintagestory.API.Client.GlKeys.yml",
"Vintagestory.API.Client.GlKeys.RWin": "Vintagestory.API.Client.GlKeys.yml",
"Vintagestory.API.Client.GlKeys.S": "Vintagestory.API.Client.GlKeys.yml",
"Vintagestory.API.Client.GlKeys.ScrollLock": "Vintagestory.API.Client.GlKeys.yml",
"Vintagestory.API.Client.GlKeys.Semicolon": "Vintagestory.API.Client.GlKeys.yml",
"Vintagestory.API.Client.GlKeys.ShiftLeft": "Vintagestory.API.Client.GlKeys.yml",
"Vintagestory.API.Client.GlKeys.ShiftRight": "Vintagestory.API.Client.GlKeys.yml",
"Vintagestory.API.Client.GlKeys.Slash": "Vintagestory.API.Client.GlKeys.yml",
"Vintagestory.API.Client.GlKeys.Sleep": "Vintagestory.API.Client.GlKeys.yml",
"Vintagestory.API.Client.GlKeys.Space": "Vintagestory.API.Client.GlKeys.yml",
"Vintagestory.API.Client.GlKeys.T": "Vintagestory.API.Client.GlKeys.yml",
"Vintagestory.API.Client.GlKeys.Tab": "Vintagestory.API.Client.GlKeys.yml",
"Vintagestory.API.Client.GlKeys.Tilde": "Vintagestory.API.Client.GlKeys.yml",
"Vintagestory.API.Client.GlKeys.U": "Vintagestory.API.Client.GlKeys.yml",
"Vintagestory.API.Client.GlKeys.Unknown": "Vintagestory.API.Client.GlKeys.yml",
"Vintagestory.API.Client.GlKeys.Up": "Vintagestory.API.Client.GlKeys.yml",
"Vintagestory.API.Client.GlKeys.V": "Vintagestory.API.Client.GlKeys.yml",
"Vintagestory.API.Client.GlKeys.W": "Vintagestory.API.Client.GlKeys.yml",
"Vintagestory.API.Client.GlKeys.WinLeft": "Vintagestory.API.Client.GlKeys.yml",
"Vintagestory.API.Client.GlKeys.WinRight": "Vintagestory.API.Client.GlKeys.yml",
"Vintagestory.API.Client.GlKeys.X": "Vintagestory.API.Client.GlKeys.yml",
"Vintagestory.API.Client.GlKeys.Y": "Vintagestory.API.Client.GlKeys.yml",
"Vintagestory.API.Client.GlKeys.Z": "Vintagestory.API.Client.GlKeys.yml",
"Vintagestory.API.Client.HotKey": "Vintagestory.API.Client.HotKey.yml",
"Vintagestory.API.Client.HotKey.Clone": "Vintagestory.API.Client.HotKey.yml",
"Vintagestory.API.Client.HotKey.Code": "Vintagestory.API.Client.HotKey.yml",
"Vintagestory.API.Client.HotKey.CurrentMapping": "Vintagestory.API.Client.HotKey.yml",
"Vintagestory.API.Client.HotKey.DefaultMapping": "Vintagestory.API.Client.HotKey.yml",
"Vintagestory.API.Client.HotKey.DidPress(Vintagestory.API.Client.KeyEvent,Vintagestory.API.Common.IWorldAccessor,Vintagestory.API.Common.IPlayer,System.Boolean)": "Vintagestory.API.Client.HotKey.yml",
"Vintagestory.API.Client.HotKey.FallbackDidPress(Vintagestory.API.Client.KeyEvent,Vintagestory.API.Common.IWorldAccessor,Vintagestory.API.Common.IPlayer,System.Boolean)": "Vintagestory.API.Client.HotKey.yml",
"Vintagestory.API.Client.HotKey.Handler": "Vintagestory.API.Client.HotKey.yml",
"Vintagestory.API.Client.HotKey.IsGlobalHotkey": "Vintagestory.API.Client.HotKey.yml",
"Vintagestory.API.Client.HotKey.IsIngameHotkey": "Vintagestory.API.Client.HotKey.yml",
"Vintagestory.API.Client.HotKey.KeyCombinationType": "Vintagestory.API.Client.HotKey.yml",
"Vintagestory.API.Client.HotKey.Name": "Vintagestory.API.Client.HotKey.yml",
"Vintagestory.API.Client.HotKey.SetDefaultMapping": "Vintagestory.API.Client.HotKey.yml",
"Vintagestory.API.Client.HotkeyType": "Vintagestory.API.Client.HotkeyType.yml",
"Vintagestory.API.Client.HotkeyType.CharacterControls": "Vintagestory.API.Client.HotkeyType.yml",
"Vintagestory.API.Client.HotkeyType.CreativeOrSpectatorTool": "Vintagestory.API.Client.HotkeyType.yml",
"Vintagestory.API.Client.HotkeyType.CreativeTool": "Vintagestory.API.Client.HotkeyType.yml",
"Vintagestory.API.Client.HotkeyType.DevTool": "Vintagestory.API.Client.HotkeyType.yml",
"Vintagestory.API.Client.HotkeyType.GeneralControls": "Vintagestory.API.Client.HotkeyType.yml",
"Vintagestory.API.Client.IBlockTextureAtlasAPI": "Vintagestory.API.Client.IBlockTextureAtlasAPI.yml",
"Vintagestory.API.Client.IBlockTextureAtlasAPI.GetPosition(Vintagestory.API.Common.Block,System.String)": "Vintagestory.API.Client.IBlockTextureAtlasAPI.yml",
"Vintagestory.API.Client.ICairoFont": "Vintagestory.API.Client.ICairoFont.yml",
"Vintagestory.API.Client.IClientEventAPI": "Vintagestory.API.Client.IClientEventAPI.yml",
"Vintagestory.API.Client.IClientEventAPI.BlockTexturesLoaded(Vintagestory.API.Common.Action)": "Vintagestory.API.Client.IClientEventAPI.yml",
"Vintagestory.API.Client.IClientEventAPI.LeaveWorld": "Vintagestory.API.Client.IClientEventAPI.yml",
"Vintagestory.API.Client.IClientEventAPI.OnChatMessage": "Vintagestory.API.Client.IClientEventAPI.yml",
"Vintagestory.API.Client.IClientEventAPI.OnKeyDown": "Vintagestory.API.Client.IClientEventAPI.yml",
"Vintagestory.API.Client.IClientEventAPI.OnKeyUp": "Vintagestory.API.Client.IClientEventAPI.yml",
"Vintagestory.API.Client.IClientEventAPI.OnMouseDown": "Vintagestory.API.Client.IClientEventAPI.yml",
"Vintagestory.API.Client.IClientEventAPI.OnMouseMove": "Vintagestory.API.Client.IClientEventAPI.yml",
"Vintagestory.API.Client.IClientEventAPI.OnMouseUp": "Vintagestory.API.Client.IClientEventAPI.yml",
"Vintagestory.API.Client.IClientEventAPI.PauseResume": "Vintagestory.API.Client.IClientEventAPI.yml",
"Vintagestory.API.Client.IClientEventAPI.PlayerDespawn": "Vintagestory.API.Client.IClientEventAPI.yml",
"Vintagestory.API.Client.IClientEventAPI.PlayerSpawn": "Vintagestory.API.Client.IClientEventAPI.yml",
"Vintagestory.API.Client.IClientEventAPI.RegisterOnLeaveWorld(Vintagestory.API.Common.Action)": "Vintagestory.API.Client.IClientEventAPI.yml",
"Vintagestory.API.Client.IClientEventAPI.RegisterReloadShaders(Vintagestory.API.Common.Action)": "Vintagestory.API.Client.IClientEventAPI.yml",
"Vintagestory.API.Client.IClientEventAPI.RegisterReloadShapes(Vintagestory.API.Common.Action)": "Vintagestory.API.Client.IClientEventAPI.yml",
"Vintagestory.API.Client.IClientEventAPI.RegisterRenderer(Vintagestory.API.Client.IRenderer,Vintagestory.API.Client.EnumRenderStage)": "Vintagestory.API.Client.IClientEventAPI.yml",
"Vintagestory.API.Client.IClientEventAPI.UnregisterReloadShaders(Vintagestory.API.Common.Action)": "Vintagestory.API.Client.IClientEventAPI.yml",
"Vintagestory.API.Client.IClientEventAPI.UnregisterReloadShapes(Vintagestory.API.Common.Action)": "Vintagestory.API.Client.IClientEventAPI.yml",
"Vintagestory.API.Client.IClientEventAPI.UnregisterRenderer(Vintagestory.API.Client.IRenderer,Vintagestory.API.Client.EnumRenderStage)": "Vintagestory.API.Client.IClientEventAPI.yml",
"Vintagestory.API.Client.IClientNetworkAPI": "Vintagestory.API.Client.IClientNetworkAPI.yml",
"Vintagestory.API.Client.IClientNetworkAPI.RegisterChannel(System.String)": "Vintagestory.API.Client.IClientNetworkAPI.yml",
"Vintagestory.API.Client.IClientNetworkAPI.SendArbitraryPacket(System.Byte[])": "Vintagestory.API.Client.IClientNetworkAPI.yml",
"Vintagestory.API.Client.IClientNetworkAPI.SendBlockEntityPacket(System.Int32,System.Int32,System.Int32,System.Int32,System.Byte[])": "Vintagestory.API.Client.IClientNetworkAPI.yml",
"Vintagestory.API.Client.IClientNetworkChannel": "Vintagestory.API.Client.IClientNetworkChannel.yml",
"Vintagestory.API.Client.IClientNetworkChannel.RegisterMessageType(System.Type)": "Vintagestory.API.Client.IClientNetworkChannel.yml",
"Vintagestory.API.Client.IClientNetworkChannel.SendPacket``1(``0)": "Vintagestory.API.Client.IClientNetworkChannel.yml",
"Vintagestory.API.Client.IClientNetworkChannel.SetMessageHandler``1(Vintagestory.API.Client.NetworkServerMessageHandler{``0})": "Vintagestory.API.Client.IClientNetworkChannel.yml",
"Vintagestory.API.Client.IClientPlayer": "Vintagestory.API.Client.IClientPlayer.yml",
"Vintagestory.API.Client.IClientPlayer.CameraMode": "Vintagestory.API.Client.IClientPlayer.yml",
"Vintagestory.API.Client.IClientPlayer.CameraPitch": "Vintagestory.API.Client.IClientPlayer.yml",
"Vintagestory.API.Client.IClientPlayer.CameraYaw": "Vintagestory.API.Client.IClientPlayer.yml",
"Vintagestory.API.Client.IClientPlayer.ShowChatNotification(System.String)": "Vintagestory.API.Client.IClientPlayer.yml",
"Vintagestory.API.Client.IClientWorldAccessor": "Vintagestory.API.Client.IClientWorldAccessor.yml",
"Vintagestory.API.Client.IClientWorldAccessor.AmbientParticles": "Vintagestory.API.Client.IClientWorldAccessor.yml",
"Vintagestory.API.Client.IClientWorldAccessor.ForceLiquidSelectable": "Vintagestory.API.Client.IClientWorldAccessor.yml",
"Vintagestory.API.Client.IClientWorldAccessor.LoadedEntities": "Vintagestory.API.Client.IClientWorldAccessor.yml",
"Vintagestory.API.Client.IClientWorldAccessor.LoadSound(Vintagestory.API.Client.SoundParams)": "Vintagestory.API.Client.IClientWorldAccessor.yml",
"Vintagestory.API.Client.IClientWorldAccessor.OpenDialog(System.String,System.Object[])": "Vintagestory.API.Client.IClientWorldAccessor.yml",
"Vintagestory.API.Client.IClientWorldAccessor.Player": "Vintagestory.API.Client.IClientWorldAccessor.yml",
"Vintagestory.API.Client.IClientWorldAccessor.ShakeCamera(System.Single)": "Vintagestory.API.Client.IClientWorldAccessor.yml",
"Vintagestory.API.Client.ICoreClientAPI": "Vintagestory.API.Client.ICoreClientAPI.yml",
"Vintagestory.API.Client.ICoreClientAPI.Ambient": "Vintagestory.API.Client.ICoreClientAPI.yml",
"Vintagestory.API.Client.ICoreClientAPI.ApplyColorTint(System.Int32,System.Int32,System.Int32,System.Int32,System.Int32)": "Vintagestory.API.Client.ICoreClientAPI.yml",
"Vintagestory.API.Client.ICoreClientAPI.BlockTextureAtlas": "Vintagestory.API.Client.ICoreClientAPI.yml",
"Vintagestory.API.Client.ICoreClientAPI.EntityTextureAtlas": "Vintagestory.API.Client.ICoreClientAPI.yml",
"Vintagestory.API.Client.ICoreClientAPI.Event": "Vintagestory.API.Client.ICoreClientAPI.yml",
"Vintagestory.API.Client.ICoreClientAPI.GetRandomBlockPixel(System.UInt16,System.Int32)": "Vintagestory.API.Client.ICoreClientAPI.yml",
"Vintagestory.API.Client.ICoreClientAPI.GetRandomItemPixel(System.Int32,System.Int32)": "Vintagestory.API.Client.ICoreClientAPI.yml",
"Vintagestory.API.Client.ICoreClientAPI.HideGuis": "Vintagestory.API.Client.ICoreClientAPI.yml",
"Vintagestory.API.Client.ICoreClientAPI.HotKeys": "Vintagestory.API.Client.ICoreClientAPI.yml",
"Vintagestory.API.Client.ICoreClientAPI.IsGamePaused": "Vintagestory.API.Client.ICoreClientAPI.yml",
"Vintagestory.API.Client.ICoreClientAPI.ItemTextureAtlas": "Vintagestory.API.Client.ICoreClientAPI.yml",
"Vintagestory.API.Client.ICoreClientAPI.MouseWorldInteractAnyway": "Vintagestory.API.Client.ICoreClientAPI.yml",
"Vintagestory.API.Client.ICoreClientAPI.Network": "Vintagestory.API.Client.ICoreClientAPI.yml",
"Vintagestory.API.Client.ICoreClientAPI.RegisterCommand(System.String,System.String,System.String,Vintagestory.API.Common.ClientChatCommandDelegate)": "Vintagestory.API.Client.ICoreClientAPI.yml",
"Vintagestory.API.Client.ICoreClientAPI.RegisterCommand(Vintagestory.API.Common.ClientChatCommand)": "Vintagestory.API.Client.ICoreClientAPI.yml",
"Vintagestory.API.Client.ICoreClientAPI.RegisterEntityRendererClass(System.String,System.Type)": "Vintagestory.API.Client.ICoreClientAPI.yml",
"Vintagestory.API.Client.ICoreClientAPI.RegisterHotKey(System.String,System.String,Vintagestory.API.Client.GlKeys,Vintagestory.API.Client.HotkeyType,System.Boolean,System.Boolean,System.Boolean)": "Vintagestory.API.Client.ICoreClientAPI.yml",
"Vintagestory.API.Client.ICoreClientAPI.Render": "Vintagestory.API.Client.ICoreClientAPI.yml",
"Vintagestory.API.Client.ICoreClientAPI.SendMessageToClient(System.String)": "Vintagestory.API.Client.ICoreClientAPI.yml",
"Vintagestory.API.Client.ICoreClientAPI.SendMessageToServer(System.String,System.Int32,System.String)": "Vintagestory.API.Client.ICoreClientAPI.yml",
"Vintagestory.API.Client.ICoreClientAPI.SendMessageToServer(System.String,System.String)": "Vintagestory.API.Client.ICoreClientAPI.yml",
"Vintagestory.API.Client.ICoreClientAPI.SetHotKeyHandler(System.String,Vintagestory.API.Common.ActionConsumable{Vintagestory.API.Client.KeyCombination})": "Vintagestory.API.Client.ICoreClientAPI.yml",
"Vintagestory.API.Client.ICoreClientAPI.Shader": "Vintagestory.API.Client.ICoreClientAPI.yml",
"Vintagestory.API.Client.ICoreClientAPI.ShowChatNotification(System.String)": "Vintagestory.API.Client.ICoreClientAPI.yml",
"Vintagestory.API.Client.ICoreClientAPI.Tesselator": "Vintagestory.API.Client.ICoreClientAPI.yml",
"Vintagestory.API.Client.ICoreClientAPI.World": "Vintagestory.API.Client.ICoreClientAPI.yml",
"Vintagestory.API.Client.IEntityTextureAtlasAPI": "Vintagestory.API.Client.IEntityTextureAtlasAPI.yml",
"Vintagestory.API.Client.IEntityTextureAtlasAPI.RenderTextureIntoAtlas(Vintagestory.API.Client.LoadedTexture,System.Single,System.Single,System.Single,System.Single,System.Single,System.Single,System.Single)": "Vintagestory.API.Client.IEntityTextureAtlasAPI.yml",
"Vintagestory.API.Client.IGuiDialog": "Vintagestory.API.Client.IGuiDialog.yml",
"Vintagestory.API.Client.IGuiDialog.Attributes": "Vintagestory.API.Client.IGuiDialog.yml",
"Vintagestory.API.Client.IGuiDialog.FocusElement(System.Int32)": "Vintagestory.API.Client.IGuiDialog.yml",
"Vintagestory.API.Client.IGuiDialog.IsOpened": "Vintagestory.API.Client.IGuiDialog.yml",
"Vintagestory.API.Client.IGuiDialog.OnClosed": "Vintagestory.API.Client.IGuiDialog.yml",
"Vintagestory.API.Client.IGuiDialog.Recompose": "Vintagestory.API.Client.IGuiDialog.yml",
"Vintagestory.API.Client.IGuiDialog.ReloadValues": "Vintagestory.API.Client.IGuiDialog.yml",
"Vintagestory.API.Client.IGuiDialog.TryClose": "Vintagestory.API.Client.IGuiDialog.yml",
"Vintagestory.API.Client.IGuiDialog.UnfocusElements": "Vintagestory.API.Client.IGuiDialog.yml",
"Vintagestory.API.Client.IItemTextureAtlasAPI": "Vintagestory.API.Client.IItemTextureAtlasAPI.yml",
"Vintagestory.API.Client.IItemTextureAtlasAPI.GetPosition(Vintagestory.API.Common.Item,System.String)": "Vintagestory.API.Client.IItemTextureAtlasAPI.yml",
"Vintagestory.API.Client.ILoadedSound": "Vintagestory.API.Client.ILoadedSound.yml",
"Vintagestory.API.Client.ILoadedSound.Dispose": "Vintagestory.API.Client.ILoadedSound.yml",
"Vintagestory.API.Client.ILoadedSound.FadeIn(System.Single,Vintagestory.API.Common.Action{Vintagestory.API.Client.ILoadedSound})": "Vintagestory.API.Client.ILoadedSound.yml",
"Vintagestory.API.Client.ILoadedSound.FadeOut(System.Single,Vintagestory.API.Common.Action{Vintagestory.API.Client.ILoadedSound})": "Vintagestory.API.Client.ILoadedSound.yml",
"Vintagestory.API.Client.ILoadedSound.FadeOutAndStop(System.Single)": "Vintagestory.API.Client.ILoadedSound.yml",
"Vintagestory.API.Client.ILoadedSound.FadeTo(System.Single,System.Single,Vintagestory.API.Common.Action{Vintagestory.API.Client.ILoadedSound})": "Vintagestory.API.Client.ILoadedSound.yml",
"Vintagestory.API.Client.ILoadedSound.HasStopped": "Vintagestory.API.Client.ILoadedSound.yml",
"Vintagestory.API.Client.ILoadedSound.IsDisposed": "Vintagestory.API.Client.ILoadedSound.yml",
"Vintagestory.API.Client.ILoadedSound.IsFadingIn": "Vintagestory.API.Client.ILoadedSound.yml",
"Vintagestory.API.Client.ILoadedSound.IsFadingOut": "Vintagestory.API.Client.ILoadedSound.yml",
"Vintagestory.API.Client.ILoadedSound.IsPlaying": "Vintagestory.API.Client.ILoadedSound.yml",
"Vintagestory.API.Client.ILoadedSound.Params": "Vintagestory.API.Client.ILoadedSound.yml",
"Vintagestory.API.Client.ILoadedSound.Pause": "Vintagestory.API.Client.ILoadedSound.yml",
"Vintagestory.API.Client.ILoadedSound.SetPitch(System.Single)": "Vintagestory.API.Client.ILoadedSound.yml",
"Vintagestory.API.Client.ILoadedSound.SetPosition(Vintagestory.API.MathTools.Vec3f)": "Vintagestory.API.Client.ILoadedSound.yml",
"Vintagestory.API.Client.ILoadedSound.SetVolume": "Vintagestory.API.Client.ILoadedSound.yml",
"Vintagestory.API.Client.ILoadedSound.SetVolume(System.Single)": "Vintagestory.API.Client.ILoadedSound.yml",
"Vintagestory.API.Client.ILoadedSound.Start": "Vintagestory.API.Client.ILoadedSound.yml",
"Vintagestory.API.Client.ILoadedSound.Stop": "Vintagestory.API.Client.ILoadedSound.yml",
"Vintagestory.API.Client.ILoadedSound.Toggle(System.Boolean)": "Vintagestory.API.Client.ILoadedSound.yml",
"Vintagestory.API.Client.IMeshPoolSupplier": "Vintagestory.API.Client.IMeshPoolSupplier.yml",
"Vintagestory.API.Client.IMeshPoolSupplier.GetMeshPoolForPass(Vintagestory.API.Client.EnumChunkRenderPass)": "Vintagestory.API.Client.IMeshPoolSupplier.yml",
"Vintagestory.API.Client.IMusicEngine": "Vintagestory.API.Client.IMusicEngine.yml",
"Vintagestory.API.Client.IMusicEngine.CurrentTrack": "Vintagestory.API.Client.IMusicEngine.yml",
"Vintagestory.API.Client.IMusicEngine.LastPlayedTrack": "Vintagestory.API.Client.IMusicEngine.yml",
"Vintagestory.API.Client.IMusicEngine.MillisecondsSinceLastTrack": "Vintagestory.API.Client.IMusicEngine.yml",
"Vintagestory.API.Client.IMusicEngine.StartTrack(Vintagestory.API.Common.AssetLocation,Vintagestory.API.Common.Action{Vintagestory.API.Client.ILoadedSound},System.Single,System.Single)": "Vintagestory.API.Client.IMusicEngine.yml",
"Vintagestory.API.Client.IMusicTrack": "Vintagestory.API.Client.IMusicTrack.yml",
"Vintagestory.API.Client.IMusicTrack.BeginPlay(Vintagestory.API.Common.Entities.TrackedPlayerProperties,Vintagestory.API.Client.IMusicEngine)": "Vintagestory.API.Client.IMusicTrack.yml",
"Vintagestory.API.Client.IMusicTrack.ContinuePlay(System.Single,Vintagestory.API.Common.Entities.TrackedPlayerProperties,Vintagestory.API.Client.IMusicEngine)": "Vintagestory.API.Client.IMusicTrack.yml",
"Vintagestory.API.Client.IMusicTrack.FadeOut(System.Single,Vintagestory.API.Common.Action)": "Vintagestory.API.Client.IMusicTrack.yml",
"Vintagestory.API.Client.IMusicTrack.Initialize(Vintagestory.API.Common.IAssetManager,Vintagestory.API.Client.IClientWorldAccessor)": "Vintagestory.API.Client.IMusicTrack.yml",
"Vintagestory.API.Client.IMusicTrack.IsActive": "Vintagestory.API.Client.IMusicTrack.yml",
"Vintagestory.API.Client.IMusicTrack.Name": "Vintagestory.API.Client.IMusicTrack.yml",
"Vintagestory.API.Client.IMusicTrack.Priority": "Vintagestory.API.Client.IMusicTrack.yml",
"Vintagestory.API.Client.IMusicTrack.ShouldPlay(Vintagestory.API.Common.Entities.TrackedPlayerProperties,Vintagestory.API.Client.IMusicEngine)": "Vintagestory.API.Client.IMusicTrack.yml",
"Vintagestory.API.Client.IMusicTrack.UpdateVolume": "Vintagestory.API.Client.IMusicTrack.yml",
"Vintagestory.API.Client.INetworkChannel": "Vintagestory.API.Client.INetworkChannel.yml",
"Vintagestory.API.Client.INetworkChannel.ChannelName": "Vintagestory.API.Client.INetworkChannel.yml",
"Vintagestory.API.Client.IRenderAPI": "Vintagestory.API.Client.IRenderAPI.yml",
"Vintagestory.API.Client.IRenderAPI.AllocateEmptyMesh(System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,Vintagestory.API.Client.CustomMeshDataPartFloat,Vintagestory.API.Client.CustomMeshDataPartByte,Vintagestory.API.Client.CustomMeshDataPartInt,Vintagestory.API.Client.EnumDrawMode,System.Boolean)": "Vintagestory.API.Client.IRenderAPI.yml",
"Vintagestory.API.Client.IRenderAPI.AmbientColor": "Vintagestory.API.Client.IRenderAPI.yml",
"Vintagestory.API.Client.IRenderAPI.BindTexture2d(System.Int32)": "Vintagestory.API.Client.IRenderAPI.yml",
"Vintagestory.API.Client.IRenderAPI.CameraMatrixOrigin": "Vintagestory.API.Client.IRenderAPI.yml",
"Vintagestory.API.Client.IRenderAPI.CameraType": "Vintagestory.API.Client.IRenderAPI.yml",
"Vintagestory.API.Client.IRenderAPI.CurrentActiveShader": "Vintagestory.API.Client.IRenderAPI.yml",
"Vintagestory.API.Client.IRenderAPI.CurrentModelviewMatrix": "Vintagestory.API.Client.IRenderAPI.yml",
"Vintagestory.API.Client.IRenderAPI.CurrentProjectionMatrix": "Vintagestory.API.Client.IRenderAPI.yml",
"Vintagestory.API.Client.IRenderAPI.CurrentRenderStage": "Vintagestory.API.Client.IRenderAPI.yml",
"Vintagestory.API.Client.IRenderAPI.CurrentShadowProjectionMatrix": "Vintagestory.API.Client.IRenderAPI.yml",
"Vintagestory.API.Client.IRenderAPI.DecorativeFontName": "Vintagestory.API.Client.IRenderAPI.yml",
"Vintagestory.API.Client.IRenderAPI.DeleteMesh(Vintagestory.API.Client.MeshRef)": "Vintagestory.API.Client.IRenderAPI.yml",
"Vintagestory.API.Client.IRenderAPI.DeleteTexture(Vintagestory.API.Common.AssetLocation)": "Vintagestory.API.Client.IRenderAPI.yml",
"Vintagestory.API.Client.IRenderAPI.FogColor": "Vintagestory.API.Client.IRenderAPI.yml",
"Vintagestory.API.Client.IRenderAPI.FogDensity": "Vintagestory.API.Client.IRenderAPI.yml",
"Vintagestory.API.Client.IRenderAPI.FogMin": "Vintagestory.API.Client.IRenderAPI.yml",
"Vintagestory.API.Client.IRenderAPI.GenTextTexture(System.String,Vintagestory.API.Client.ICairoFont,System.Int32,System.Int32,Vintagestory.API.Client.TextBackground,Vintagestory.API.Client.EnumTextOrientation,System.Single)": "Vintagestory.API.Client.IRenderAPI.yml",
"Vintagestory.API.Client.IRenderAPI.GenTextTexture(System.String,Vintagestory.API.Client.ICairoFont,System.Int32,Vintagestory.API.Client.TextBackground,Vintagestory.API.Client.EnumTextOrientation)": "Vintagestory.API.Client.IRenderAPI.yml",
"Vintagestory.API.Client.IRenderAPI.GenTextTexture(System.String,Vintagestory.API.Client.ICairoFont,Vintagestory.API.Client.TextBackground,Vintagestory.API.Client.EnumTextOrientation)": "Vintagestory.API.Client.IRenderAPI.yml",
"Vintagestory.API.Client.IRenderAPI.GenUnscaledTextTexture(System.String,Vintagestory.API.Client.ICairoFont,Vintagestory.API.Client.TextBackground)": "Vintagestory.API.Client.IRenderAPI.yml",
"Vintagestory.API.Client.IRenderAPI.GetEngineShader(Vintagestory.API.Client.EnumShaderProgram)": "Vintagestory.API.Client.IRenderAPI.yml",
"Vintagestory.API.Client.IRenderAPI.GetFont(System.Double,System.String,System.Double[],System.Double[])": "Vintagestory.API.Client.IRenderAPI.yml",
"Vintagestory.API.Client.IRenderAPI.GetItemStackRenderInfo(Vintagestory.API.Common.ItemStack,Vintagestory.API.Client.EnumItemRenderTarget)": "Vintagestory.API.Client.IRenderAPI.yml",
"Vintagestory.API.Client.IRenderAPI.GetLightRGBs(System.Int32,System.Int32,System.Int32)": "Vintagestory.API.Client.IRenderAPI.yml",
"Vintagestory.API.Client.IRenderAPI.GetOrLoadTexture(Vintagestory.API.Common.AssetLocation)": "Vintagestory.API.Client.IRenderAPI.yml",
"Vintagestory.API.Client.IRenderAPI.GetOrLoadTexture(Vintagestory.API.Common.AssetLocation,Vintagestory.API.Common.BitmapRef)": "Vintagestory.API.Client.IRenderAPI.yml",
"Vintagestory.API.Client.IRenderAPI.GetShader(System.Int32)": "Vintagestory.API.Client.IRenderAPI.yml",
"Vintagestory.API.Client.IRenderAPI.GetUniformLocation(System.Int32,System.String)": "Vintagestory.API.Client.IRenderAPI.yml",
"Vintagestory.API.Client.IRenderAPI.GLDeleteTexture(System.Int32)": "Vintagestory.API.Client.IRenderAPI.yml",
"Vintagestory.API.Client.IRenderAPI.GlDisableCullFace": "Vintagestory.API.Client.IRenderAPI.yml",
"Vintagestory.API.Client.IRenderAPI.GLDisableDepthTest": "Vintagestory.API.Client.IRenderAPI.yml",
"Vintagestory.API.Client.IRenderAPI.GlEnableCullFace": "Vintagestory.API.Client.IRenderAPI.yml",
"Vintagestory.API.Client.IRenderAPI.GLEnableDepthTest": "Vintagestory.API.Client.IRenderAPI.yml",
"Vintagestory.API.Client.IRenderAPI.GlGenerateTex2DMipmaps": "Vintagestory.API.Client.IRenderAPI.yml",
"Vintagestory.API.Client.IRenderAPI.GlGetError": "Vintagestory.API.Client.IRenderAPI.yml",
"Vintagestory.API.Client.IRenderAPI.GlGetMaxTextureSize": "Vintagestory.API.Client.IRenderAPI.yml",
"Vintagestory.API.Client.IRenderAPI.GlLoadMatrix(System.Double[])": "Vintagestory.API.Client.IRenderAPI.yml",
"Vintagestory.API.Client.IRenderAPI.GlMatrixModeModelView": "Vintagestory.API.Client.IRenderAPI.yml",
"Vintagestory.API.Client.IRenderAPI.GlPopMatrix": "Vintagestory.API.Client.IRenderAPI.yml",
"Vintagestory.API.Client.IRenderAPI.GlPushMatrix": "Vintagestory.API.Client.IRenderAPI.yml",
"Vintagestory.API.Client.IRenderAPI.GlRotate(System.Single,System.Single,System.Single,System.Single)": "Vintagestory.API.Client.IRenderAPI.yml",
"Vintagestory.API.Client.IRenderAPI.GlScale(System.Single,System.Single,System.Single)": "Vintagestory.API.Client.IRenderAPI.yml",
"Vintagestory.API.Client.IRenderAPI.GlToggleBlend(System.Boolean,Vintagestory.API.Client.EnumBlendMode)": "Vintagestory.API.Client.IRenderAPI.yml",
"Vintagestory.API.Client.IRenderAPI.GlTranslate(System.Double,System.Double,System.Double)": "Vintagestory.API.Client.IRenderAPI.yml",
"Vintagestory.API.Client.IRenderAPI.GlTranslate(System.Single,System.Single,System.Single)": "Vintagestory.API.Client.IRenderAPI.yml",
"Vintagestory.API.Client.IRenderAPI.MvMatrix": "Vintagestory.API.Client.IRenderAPI.yml",
"Vintagestory.API.Client.IRenderAPI.PerspectiveProjectionMat": "Vintagestory.API.Client.IRenderAPI.yml",
"Vintagestory.API.Client.IRenderAPI.PerspectiveViewMat": "Vintagestory.API.Client.IRenderAPI.yml",
"Vintagestory.API.Client.IRenderAPI.PMatrix": "Vintagestory.API.Client.IRenderAPI.yml",
"Vintagestory.API.Client.IRenderAPI.PreparedStandardShader(System.Int32,System.Int32,System.Int32)": "Vintagestory.API.Client.IRenderAPI.yml",
"Vintagestory.API.Client.IRenderAPI.Render2DTexture(System.Int32,System.Single,System.Single,System.Single,System.Single,System.Single)": "Vintagestory.API.Client.IRenderAPI.yml",
"Vintagestory.API.Client.IRenderAPI.RenderItemstackToGui(Vintagestory.API.Common.ItemStack,System.Double,System.Double,System.Double,System.Single,System.Int32,System.Boolean,System.Boolean,System.Boolean)": "Vintagestory.API.Client.IRenderAPI.yml",
"Vintagestory.API.Client.IRenderAPI.RenderMesh(Vintagestory.API.Client.MeshRef)": "Vintagestory.API.Client.IRenderAPI.yml",
"Vintagestory.API.Client.IRenderAPI.RenderMesh(Vintagestory.API.Client.MeshRef,System.Int32[],System.Int32[],System.Int32)": "Vintagestory.API.Client.IRenderAPI.yml",
"Vintagestory.API.Client.IRenderAPI.RenderMeshInstanced(Vintagestory.API.Client.MeshRef,System.Int32)": "Vintagestory.API.Client.IRenderAPI.yml",
"Vintagestory.API.Client.IRenderAPI.RenderTextureIntoTexture(Vintagestory.API.Client.LoadedTexture,System.Single,System.Single,System.Single,System.Single,Vintagestory.API.Client.LoadedTexture,System.Single,System.Single,System.Single)": "Vintagestory.API.Client.IRenderAPI.yml",
"Vintagestory.API.Client.IRenderAPI.ScreenHeight": "Vintagestory.API.Client.IRenderAPI.yml",
"Vintagestory.API.Client.IRenderAPI.ScreenWidth": "Vintagestory.API.Client.IRenderAPI.yml",
"Vintagestory.API.Client.IRenderAPI.StandardFontName": "Vintagestory.API.Client.IRenderAPI.yml",
"Vintagestory.API.Client.IRenderAPI.StandardShader": "Vintagestory.API.Client.IRenderAPI.yml",
"Vintagestory.API.Client.IRenderAPI.UpdateMesh(Vintagestory.API.Client.MeshRef,Vintagestory.API.Client.MeshData)": "Vintagestory.API.Client.IRenderAPI.yml",
"Vintagestory.API.Client.IRenderAPI.UploadMesh(Vintagestory.API.Client.MeshData)": "Vintagestory.API.Client.IRenderAPI.yml",
"Vintagestory.API.Client.IRenderer": "Vintagestory.API.Client.IRenderer.yml",
"Vintagestory.API.Client.IRenderer.Dispose": "Vintagestory.API.Client.IRenderer.yml",
"Vintagestory.API.Client.IRenderer.OnRenderFrame(System.Single,Vintagestory.API.Client.EnumRenderStage)": "Vintagestory.API.Client.IRenderer.yml",
"Vintagestory.API.Client.IRenderer.RenderOrder": "Vintagestory.API.Client.IRenderer.yml",
"Vintagestory.API.Client.IRenderer.RenderRange": "Vintagestory.API.Client.IRenderer.yml",
"Vintagestory.API.Client.IShader": "Vintagestory.API.Client.IShader.yml",
"Vintagestory.API.Client.IShader.Code": "Vintagestory.API.Client.IShader.yml",
"Vintagestory.API.Client.IShader.PrefixCode": "Vintagestory.API.Client.IShader.yml",
"Vintagestory.API.Client.IShader.Type": "Vintagestory.API.Client.IShader.yml",
"Vintagestory.API.Client.IShaderAPI": "Vintagestory.API.Client.IShaderAPI.yml",
"Vintagestory.API.Client.IShaderAPI.GetProgram(System.Int32)": "Vintagestory.API.Client.IShaderAPI.yml",
"Vintagestory.API.Client.IShaderAPI.IsGLSLVersionSupported(System.String)": "Vintagestory.API.Client.IShaderAPI.yml",
"Vintagestory.API.Client.IShaderAPI.NewShader(Vintagestory.API.Client.EnumShaderType)": "Vintagestory.API.Client.IShaderAPI.yml",
"Vintagestory.API.Client.IShaderAPI.NewShaderProgram": "Vintagestory.API.Client.IShaderAPI.yml",
"Vintagestory.API.Client.IShaderAPI.RegisterFileShaderProgram(System.String,Vintagestory.API.Client.IShaderProgram)": "Vintagestory.API.Client.IShaderAPI.yml",
"Vintagestory.API.Client.IShaderAPI.RegisterMemoryShaderProgram(System.String,Vintagestory.API.Client.IShaderProgram)": "Vintagestory.API.Client.IShaderAPI.yml",
"Vintagestory.API.Client.IShaderAPI.ReloadShaders": "Vintagestory.API.Client.IShaderAPI.yml",
"Vintagestory.API.Client.IShaderProgram": "Vintagestory.API.Client.IShaderProgram.yml",
"Vintagestory.API.Client.IShaderProgram.BindTexture2D(System.String,System.Int32,System.Int32)": "Vintagestory.API.Client.IShaderProgram.yml",
"Vintagestory.API.Client.IShaderProgram.BindTextureCube(System.String,System.Int32,System.Int32)": "Vintagestory.API.Client.IShaderProgram.yml",
"Vintagestory.API.Client.IShaderProgram.ClampTexturesToEdge": "Vintagestory.API.Client.IShaderProgram.yml",
"Vintagestory.API.Client.IShaderProgram.Compile": "Vintagestory.API.Client.IShaderProgram.yml",
"Vintagestory.API.Client.IShaderProgram.Dispose": "Vintagestory.API.Client.IShaderProgram.yml",
"Vintagestory.API.Client.IShaderProgram.Disposed": "Vintagestory.API.Client.IShaderProgram.yml",
"Vintagestory.API.Client.IShaderProgram.FragmentShader": "Vintagestory.API.Client.IShaderProgram.yml",
"Vintagestory.API.Client.IShaderProgram.GeometryShader": "Vintagestory.API.Client.IShaderProgram.yml",
"Vintagestory.API.Client.IShaderProgram.PassId": "Vintagestory.API.Client.IShaderProgram.yml",
"Vintagestory.API.Client.IShaderProgram.PassName": "Vintagestory.API.Client.IShaderProgram.yml",
"Vintagestory.API.Client.IShaderProgram.PrepareUniformLocations(System.String[])": "Vintagestory.API.Client.IShaderProgram.yml",
"Vintagestory.API.Client.IShaderProgram.Stop": "Vintagestory.API.Client.IShaderProgram.yml",
"Vintagestory.API.Client.IShaderProgram.Uniform(System.String,System.Int32)": "Vintagestory.API.Client.IShaderProgram.yml",
"Vintagestory.API.Client.IShaderProgram.Uniform(System.String,System.Single)": "Vintagestory.API.Client.IShaderProgram.yml",
"Vintagestory.API.Client.IShaderProgram.Uniform(System.String,Vintagestory.API.MathTools.Vec2f)": "Vintagestory.API.Client.IShaderProgram.yml",
"Vintagestory.API.Client.IShaderProgram.Uniform(System.String,Vintagestory.API.MathTools.Vec3f)": "Vintagestory.API.Client.IShaderProgram.yml",
"Vintagestory.API.Client.IShaderProgram.Uniform(System.String,Vintagestory.API.MathTools.Vec4f)": "Vintagestory.API.Client.IShaderProgram.yml",
"Vintagestory.API.Client.IShaderProgram.UniformMatrices(System.String,System.Int32,System.Single[])": "Vintagestory.API.Client.IShaderProgram.yml",
"Vintagestory.API.Client.IShaderProgram.UniformMatrix(System.String,System.Single[])": "Vintagestory.API.Client.IShaderProgram.yml",
"Vintagestory.API.Client.IShaderProgram.Use": "Vintagestory.API.Client.IShaderProgram.yml",
"Vintagestory.API.Client.IShaderProgram.VertexShader": "Vintagestory.API.Client.IShaderProgram.yml",
"Vintagestory.API.Client.IStandardShaderProgram": "Vintagestory.API.Client.IStandardShaderProgram.yml",
"Vintagestory.API.Client.IStandardShaderProgram.AlphaTest": "Vintagestory.API.Client.IStandardShaderProgram.yml",
"Vintagestory.API.Client.IStandardShaderProgram.ExtraGlow": "Vintagestory.API.Client.IStandardShaderProgram.yml",
"Vintagestory.API.Client.IStandardShaderProgram.FogDensityIn": "Vintagestory.API.Client.IStandardShaderProgram.yml",
"Vintagestory.API.Client.IStandardShaderProgram.FogMinIn": "Vintagestory.API.Client.IStandardShaderProgram.yml",
"Vintagestory.API.Client.IStandardShaderProgram.ModelViewMatrix": "Vintagestory.API.Client.IStandardShaderProgram.yml",
"Vintagestory.API.Client.IStandardShaderProgram.ProjectionMatrix": "Vintagestory.API.Client.IStandardShaderProgram.yml",
"Vintagestory.API.Client.IStandardShaderProgram.RgbaAmbientIn": "Vintagestory.API.Client.IStandardShaderProgram.yml",
"Vintagestory.API.Client.IStandardShaderProgram.RgbaBlockIn": "Vintagestory.API.Client.IStandardShaderProgram.yml",
"Vintagestory.API.Client.IStandardShaderProgram.RgbaFogIn": "Vintagestory.API.Client.IStandardShaderProgram.yml",
"Vintagestory.API.Client.IStandardShaderProgram.RgbaLightIn": "Vintagestory.API.Client.IStandardShaderProgram.yml",
"Vintagestory.API.Client.IStandardShaderProgram.RgbaTint": "Vintagestory.API.Client.IStandardShaderProgram.yml",
"Vintagestory.API.Client.IStandardShaderProgram.ShadowMapFar2D": "Vintagestory.API.Client.IStandardShaderProgram.yml",
"Vintagestory.API.Client.IStandardShaderProgram.ShadowMapNear2D": "Vintagestory.API.Client.IStandardShaderProgram.yml",
"Vintagestory.API.Client.IStandardShaderProgram.Tex2D": "Vintagestory.API.Client.IStandardShaderProgram.yml",
"Vintagestory.API.Client.IStandardShaderProgram.ZFar": "Vintagestory.API.Client.IStandardShaderProgram.yml",
"Vintagestory.API.Client.IStandardShaderProgram.ZNear": "Vintagestory.API.Client.IStandardShaderProgram.yml",
"Vintagestory.API.Client.ItemRenderInfo": "Vintagestory.API.Client.ItemRenderInfo.yml",
"Vintagestory.API.Client.ItemRenderInfo.AlphaTest": "Vintagestory.API.Client.ItemRenderInfo.yml",
"Vintagestory.API.Client.ItemRenderInfo.CullFaces": "Vintagestory.API.Client.ItemRenderInfo.yml",
"Vintagestory.API.Client.ItemRenderInfo.HalfTransparent": "Vintagestory.API.Client.ItemRenderInfo.yml",
"Vintagestory.API.Client.ItemRenderInfo.ModelRef": "Vintagestory.API.Client.ItemRenderInfo.yml",
"Vintagestory.API.Client.ItemRenderInfo.TextureId": "Vintagestory.API.Client.ItemRenderInfo.yml",
"Vintagestory.API.Client.ItemRenderInfo.Transform": "Vintagestory.API.Client.ItemRenderInfo.yml",
"Vintagestory.API.Client.ITerrainMeshPool": "Vintagestory.API.Client.ITerrainMeshPool.yml",
"Vintagestory.API.Client.ITerrainMeshPool.AddMeshData(Vintagestory.API.Client.MeshData)": "Vintagestory.API.Client.ITerrainMeshPool.yml",
"Vintagestory.API.Client.ITerrainMeshPool.AddMeshData(Vintagestory.API.Client.MeshData,System.Int32)": "Vintagestory.API.Client.ITerrainMeshPool.yml",
"Vintagestory.API.Client.ITesselatorAPI": "Vintagestory.API.Client.ITesselatorAPI.yml",
"Vintagestory.API.Client.ITesselatorAPI.GetDefaultBlockMesh(Vintagestory.API.Common.Block)": "Vintagestory.API.Client.ITesselatorAPI.yml",
"Vintagestory.API.Client.ITesselatorAPI.GetTextureSource(Vintagestory.API.Common.Block,System.Int32)": "Vintagestory.API.Client.ITesselatorAPI.yml",
"Vintagestory.API.Client.ITesselatorAPI.GetTextureSource(Vintagestory.API.Common.Entities.EntityType,System.Int32)": "Vintagestory.API.Client.ITesselatorAPI.yml",
"Vintagestory.API.Client.ITesselatorAPI.GetTextureSource(Vintagestory.API.Common.Item)": "Vintagestory.API.Client.ITesselatorAPI.yml",
"Vintagestory.API.Client.ITesselatorAPI.TesselateBlock(Vintagestory.API.Common.Block,Vintagestory.API.Client.MeshData@)": "Vintagestory.API.Client.ITesselatorAPI.yml",
"Vintagestory.API.Client.ITesselatorAPI.TesselateItem(Vintagestory.API.Common.Item,Vintagestory.API.Client.MeshData@)": "Vintagestory.API.Client.ITesselatorAPI.yml",
"Vintagestory.API.Client.ITesselatorAPI.TesselateItem(Vintagestory.API.Common.Item,Vintagestory.API.Client.MeshData@,Vintagestory.API.Client.ITextureSource)": "Vintagestory.API.Client.ITesselatorAPI.yml",
"Vintagestory.API.Client.ITesselatorAPI.TesselateItem(Vintagestory.API.Common.Item,Vintagestory.API.Common.CompositeShape,Vintagestory.API.Client.MeshData@)": "Vintagestory.API.Client.ITesselatorAPI.yml",
"Vintagestory.API.Client.ITesselatorAPI.TesselateShape(System.String,Vintagestory.API.Common.Shape,Vintagestory.API.Client.MeshData@,Vintagestory.API.Client.ITextureSource,Vintagestory.API.MathTools.Vec3f,System.Int32,System.Int32,System.Int32)": "Vintagestory.API.Client.ITesselatorAPI.yml",
"Vintagestory.API.Client.ITesselatorAPI.TesselateShape(Vintagestory.API.Common.Block,Vintagestory.API.Common.Shape,Vintagestory.API.Client.MeshData@,Vintagestory.API.MathTools.Vec3f,System.Int32)": "Vintagestory.API.Client.ITesselatorAPI.yml",
"Vintagestory.API.Client.ITesselatorAPI.TesselateShapeWithJointIds(System.String,Vintagestory.API.Common.Shape,Vintagestory.API.Client.MeshData@,Vintagestory.API.Client.ITextureSource,Vintagestory.API.MathTools.Vec3f)": "Vintagestory.API.Client.ITesselatorAPI.yml",
"Vintagestory.API.Client.ITesselatorAPI.VoxelizeTexture(System.Int32[],System.Int32,System.Int32,System.Int32,Vintagestory.API.Client.TextureAtlasPosition)": "Vintagestory.API.Client.ITesselatorAPI.yml",
"Vintagestory.API.Client.ITesselatorAPI.VoxelizeTexture(Vintagestory.API.Client.CompositeTexture,System.Int32,Vintagestory.API.Client.TextureAtlasPosition)": "Vintagestory.API.Client.ITesselatorAPI.yml",
"Vintagestory.API.Client.ITextureAtlasAPI": "Vintagestory.API.Client.ITextureAtlasAPI.yml",
"Vintagestory.API.Client.ITextureAtlasAPI.AllocateTextureSpace(System.Int32,System.Int32,System.Int32@,Vintagestory.API.Client.TextureAtlasPosition@)": "Vintagestory.API.Client.ITextureAtlasAPI.yml",
"Vintagestory.API.Client.ITextureAtlasAPI.FreeTextureSpace(System.Int32)": "Vintagestory.API.Client.ITextureAtlasAPI.yml",
"Vintagestory.API.Client.ITextureAtlasAPI.Positions": "Vintagestory.API.Client.ITextureAtlasAPI.yml",
"Vintagestory.API.Client.ITextureAtlasAPI.Size": "Vintagestory.API.Client.ITextureAtlasAPI.yml",
"Vintagestory.API.Client.ITextureAtlasAPI.SubPixelPadding": "Vintagestory.API.Client.ITextureAtlasAPI.yml",
"Vintagestory.API.Client.ITextureSource": "Vintagestory.API.Client.ITextureSource.yml",
"Vintagestory.API.Client.ITextureSource.AtlasSize": "Vintagestory.API.Client.ITextureSource.yml",
"Vintagestory.API.Client.ITextureSource.Item(System.String)": "Vintagestory.API.Client.ITextureSource.yml",
"Vintagestory.API.Client.JsonDialogSettings": "Vintagestory.API.Client.JsonDialogSettings.yml",
"Vintagestory.API.Client.JsonDialogSettings.Alignment": "Vintagestory.API.Client.JsonDialogSettings.yml",
"Vintagestory.API.Client.JsonDialogSettings.Code": "Vintagestory.API.Client.JsonDialogSettings.yml",
"Vintagestory.API.Client.JsonDialogSettings.DisableWorldInteract": "Vintagestory.API.Client.JsonDialogSettings.yml",
"Vintagestory.API.Client.JsonDialogSettings.FromBytes(System.IO.BinaryReader)": "Vintagestory.API.Client.JsonDialogSettings.yml",
"Vintagestory.API.Client.JsonDialogSettings.OnGet": "Vintagestory.API.Client.JsonDialogSettings.yml",
"Vintagestory.API.Client.JsonDialogSettings.OnSet": "Vintagestory.API.Client.JsonDialogSettings.yml",
"Vintagestory.API.Client.JsonDialogSettings.Padding": "Vintagestory.API.Client.JsonDialogSettings.yml",
"Vintagestory.API.Client.JsonDialogSettings.PosX": "Vintagestory.API.Client.JsonDialogSettings.yml",
"Vintagestory.API.Client.JsonDialogSettings.PosY": "Vintagestory.API.Client.JsonDialogSettings.yml",
"Vintagestory.API.Client.JsonDialogSettings.Rows": "Vintagestory.API.Client.JsonDialogSettings.yml",
"Vintagestory.API.Client.JsonDialogSettings.SizeMultiplier": "Vintagestory.API.Client.JsonDialogSettings.yml",
"Vintagestory.API.Client.JsonDialogSettings.ToBytes(System.IO.BinaryWriter)": "Vintagestory.API.Client.JsonDialogSettings.yml",
"Vintagestory.API.Client.KeyCombination": "Vintagestory.API.Client.KeyCombination.yml",
"Vintagestory.API.Client.KeyCombination.Alt": "Vintagestory.API.Client.KeyCombination.yml",
"Vintagestory.API.Client.KeyCombination.Clone": "Vintagestory.API.Client.KeyCombination.yml",
"Vintagestory.API.Client.KeyCombination.Ctrl": "Vintagestory.API.Client.KeyCombination.yml",
"Vintagestory.API.Client.KeyCombination.KeyCode": "Vintagestory.API.Client.KeyCombination.yml",
"Vintagestory.API.Client.KeyCombination.Shift": "Vintagestory.API.Client.KeyCombination.yml",
"Vintagestory.API.Client.KeyCombination.ToString": "Vintagestory.API.Client.KeyCombination.yml",
"Vintagestory.API.Client.KeyEvent": "Vintagestory.API.Client.KeyEvent.yml",
"Vintagestory.API.Client.KeyEvent.AltPressed": "Vintagestory.API.Client.KeyEvent.yml",
"Vintagestory.API.Client.KeyEvent.CtrlPressed": "Vintagestory.API.Client.KeyEvent.yml",
"Vintagestory.API.Client.KeyEvent.Handled": "Vintagestory.API.Client.KeyEvent.yml",
"Vintagestory.API.Client.KeyEvent.KeyChar": "Vintagestory.API.Client.KeyEvent.yml",
"Vintagestory.API.Client.KeyEvent.KeyCode": "Vintagestory.API.Client.KeyEvent.yml",
"Vintagestory.API.Client.KeyEvent.ShiftPressed": "Vintagestory.API.Client.KeyEvent.yml",
"Vintagestory.API.Client.KeyEventDelegate": "Vintagestory.API.Client.KeyEventDelegate.yml",
"Vintagestory.API.Client.LineMeshUtil": "Vintagestory.API.Client.LineMeshUtil.yml",
"Vintagestory.API.Client.LineMeshUtil.AddLine2D(Vintagestory.API.Client.MeshData,System.Single,System.Single,System.Single,System.Single,System.Int32)": "Vintagestory.API.Client.LineMeshUtil.yml",
"Vintagestory.API.Client.LineMeshUtil.AddLineLoop(Vintagestory.API.Client.MeshData,Vintagestory.API.MathTools.Vec3f,Vintagestory.API.MathTools.Vec3f,Vintagestory.API.MathTools.Vec3f,Vintagestory.API.MathTools.Vec3f,System.Int32)": "Vintagestory.API.Client.LineMeshUtil.yml",
"Vintagestory.API.Client.LineMeshUtil.AddVertex(Vintagestory.API.Client.MeshData,System.Single,System.Single,System.Single,System.Int32)": "Vintagestory.API.Client.LineMeshUtil.yml",
"Vintagestory.API.Client.LineMeshUtil.GetCube(System.Int32)": "Vintagestory.API.Client.LineMeshUtil.yml",
"Vintagestory.API.Client.LineMeshUtil.GetRectangle(System.Int32)": "Vintagestory.API.Client.LineMeshUtil.yml",
"Vintagestory.API.Client.LoadedTexture": "Vintagestory.API.Client.LoadedTexture.yml",
"Vintagestory.API.Client.LoadedTexture.#ctor": "Vintagestory.API.Client.LoadedTexture.yml",
"Vintagestory.API.Client.LoadedTexture.#ctor(System.Int32,System.Int32,System.Int32)": "Vintagestory.API.Client.LoadedTexture.yml",
"Vintagestory.API.Client.LoadedTexture.height": "Vintagestory.API.Client.LoadedTexture.yml",
"Vintagestory.API.Client.LoadedTexture.textureId": "Vintagestory.API.Client.LoadedTexture.yml",
"Vintagestory.API.Client.LoadedTexture.width": "Vintagestory.API.Client.LoadedTexture.yml",
"Vintagestory.API.Client.MeshData": "Vintagestory.API.Client.MeshData.yml",
"Vintagestory.API.Client.MeshData.#ctor": "Vintagestory.API.Client.MeshData.yml",
"Vintagestory.API.Client.MeshData.#ctor(System.Int32,System.Int32,System.Boolean,System.Boolean,System.Boolean,System.Boolean,System.Boolean)": "Vintagestory.API.Client.MeshData.yml",
"Vintagestory.API.Client.MeshData.AddIndex(System.Int32)": "Vintagestory.API.Client.MeshData.yml",
"Vintagestory.API.Client.MeshData.AddIndices(System.Int32[])": "Vintagestory.API.Client.MeshData.yml",
"Vintagestory.API.Client.MeshData.AddMeshData(Vintagestory.API.Client.MeshData)": "Vintagestory.API.Client.MeshData.yml",
"Vintagestory.API.Client.MeshData.AddMeshData(Vintagestory.API.Client.MeshData,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32)": "Vintagestory.API.Client.MeshData.yml",
"Vintagestory.API.Client.MeshData.AddNormal(System.Single,System.Single,System.Single)": "Vintagestory.API.Client.MeshData.yml",
"Vintagestory.API.Client.MeshData.AddNormal(Vintagestory.API.MathTools.BlockFacing)": "Vintagestory.API.Client.MeshData.yml",
"Vintagestory.API.Client.MeshData.AddRenderPass(System.Int32)": "Vintagestory.API.Client.MeshData.yml",
"Vintagestory.API.Client.MeshData.AddTintIndex(System.Int32)": "Vintagestory.API.Client.MeshData.yml",
"Vintagestory.API.Client.MeshData.AddVertex(System.Single,System.Single,System.Single,System.Int32)": "Vintagestory.API.Client.MeshData.yml",
"Vintagestory.API.Client.MeshData.AddVertex(System.Single,System.Single,System.Single,System.Single,System.Single)": "Vintagestory.API.Client.MeshData.yml",
"Vintagestory.API.Client.MeshData.AddVertex(System.Single,System.Single,System.Single,System.Single,System.Single,System.Byte[])": "Vintagestory.API.Client.MeshData.yml",
"Vintagestory.API.Client.MeshData.AddVertex(System.Single,System.Single,System.Single,System.Single,System.Single,System.Byte[],System.Byte[])": "Vintagestory.API.Client.MeshData.yml",
"Vintagestory.API.Client.MeshData.AddVertex(System.Single,System.Single,System.Single,System.Single,System.Single,System.Int32)": "Vintagestory.API.Client.MeshData.yml",
"Vintagestory.API.Client.MeshData.AddVertex(System.Single,System.Single,System.Single,System.Single,System.Single,System.Int32,System.Int32)": "Vintagestory.API.Client.MeshData.yml",
"Vintagestory.API.Client.MeshData.AddVertexWithFlags(System.Single,System.Single,System.Single,System.Single,System.Single,System.Int32,System.Int32,System.Int32)": "Vintagestory.API.Client.MeshData.yml",
"Vintagestory.API.Client.MeshData.AddWithFlagsVertex(System.Single,System.Single,System.Single,System.Single,System.Single,System.Int32,System.Int32)": "Vintagestory.API.Client.MeshData.yml",
"Vintagestory.API.Client.MeshData.AddXyzFace(System.Int32)": "Vintagestory.API.Client.MeshData.yml",
"Vintagestory.API.Client.MeshData.Clear": "Vintagestory.API.Client.MeshData.yml",
"Vintagestory.API.Client.MeshData.Clone": "Vintagestory.API.Client.MeshData.yml",
"Vintagestory.API.Client.MeshData.customBytes": "Vintagestory.API.Client.MeshData.yml",
"Vintagestory.API.Client.MeshData.customFloats": "Vintagestory.API.Client.MeshData.yml",
"Vintagestory.API.Client.MeshData.customInts": "Vintagestory.API.Client.MeshData.yml",
"Vintagestory.API.Client.MeshData.flags": "Vintagestory.API.Client.MeshData.yml",
"Vintagestory.API.Client.MeshData.FlagsCount": "Vintagestory.API.Client.MeshData.yml",
"Vintagestory.API.Client.MeshData.flagsInstanced": "Vintagestory.API.Client.MeshData.yml",
"Vintagestory.API.Client.MeshData.flagsOffset": "Vintagestory.API.Client.MeshData.yml",
"Vintagestory.API.Client.MeshData.FlagsSize": "Vintagestory.API.Client.MeshData.yml",
"Vintagestory.API.Client.MeshData.flagsStatic": "Vintagestory.API.Client.MeshData.yml",
"Vintagestory.API.Client.MeshData.getIndices": "Vintagestory.API.Client.MeshData.yml",
"Vintagestory.API.Client.MeshData.GetIndicesCount": "Vintagestory.API.Client.MeshData.yml",
"Vintagestory.API.Client.MeshData.getMode": "Vintagestory.API.Client.MeshData.yml",
"Vintagestory.API.Client.MeshData.getRgba": "Vintagestory.API.Client.MeshData.yml",
"Vintagestory.API.Client.MeshData.getRgba2": "Vintagestory.API.Client.MeshData.yml",
"Vintagestory.API.Client.MeshData.getUv": "Vintagestory.API.Client.MeshData.yml",
"Vintagestory.API.Client.MeshData.GetVerticesCount": "Vintagestory.API.Client.MeshData.yml",
"Vintagestory.API.Client.MeshData.getXyz": "Vintagestory.API.Client.MeshData.yml",
"Vintagestory.API.Client.MeshData.GrowIndexBuffer": "Vintagestory.API.Client.MeshData.yml",
"Vintagestory.API.Client.MeshData.GrowIndexBuffer(System.Int32)": "Vintagestory.API.Client.MeshData.yml",
"Vintagestory.API.Client.MeshData.GrowNormalsBuffer": "Vintagestory.API.Client.MeshData.yml",
"Vintagestory.API.Client.MeshData.GrowVertexBuffer": "Vintagestory.API.Client.MeshData.yml",
"Vintagestory.API.Client.MeshData.IndexSize": "Vintagestory.API.Client.MeshData.yml",
"Vintagestory.API.Client.MeshData.indices": "Vintagestory.API.Client.MeshData.yml",
"Vintagestory.API.Client.MeshData.indicesCount": "Vintagestory.API.Client.MeshData.yml",
"Vintagestory.API.Client.MeshData.indicesInstanced": "Vintagestory.API.Client.MeshData.yml",
"Vintagestory.API.Client.MeshData.indicesMax": "Vintagestory.API.Client.MeshData.yml",
"Vintagestory.API.Client.MeshData.indicesOffset": "Vintagestory.API.Client.MeshData.yml",
"Vintagestory.API.Client.MeshData.indicesStatic": "Vintagestory.API.Client.MeshData.yml",
"Vintagestory.API.Client.MeshData.MatrixTransform(System.Double[])": "Vintagestory.API.Client.MeshData.yml",
"Vintagestory.API.Client.MeshData.MatrixTransform(System.Single[])": "Vintagestory.API.Client.MeshData.yml",
"Vintagestory.API.Client.MeshData.mode": "Vintagestory.API.Client.MeshData.yml",
"Vintagestory.API.Client.MeshData.ModelTransform(Vintagestory.API.Common.ModelTransform)": "Vintagestory.API.Client.MeshData.yml",
"Vintagestory.API.Client.MeshData.normals": "Vintagestory.API.Client.MeshData.yml",
"Vintagestory.API.Client.MeshData.normalsCount": "Vintagestory.API.Client.MeshData.yml",
"Vintagestory.API.Client.MeshData.NormalSize": "Vintagestory.API.Client.MeshData.yml",
"Vintagestory.API.Client.MeshData.normalsOffset": "Vintagestory.API.Client.MeshData.yml",
"Vintagestory.API.Client.MeshData.RemoveIndex": "Vintagestory.API.Client.MeshData.yml",
"Vintagestory.API.Client.MeshData.RemoveVertex": "Vintagestory.API.Client.MeshData.yml",
"Vintagestory.API.Client.MeshData.renderPassCount": "Vintagestory.API.Client.MeshData.yml",
"Vintagestory.API.Client.MeshData.renderPasses": "Vintagestory.API.Client.MeshData.yml",
"Vintagestory.API.Client.MeshData.rgba": "Vintagestory.API.Client.MeshData.yml",
"Vintagestory.API.Client.MeshData.rgba2": "Vintagestory.API.Client.MeshData.yml",
"Vintagestory.API.Client.MeshData.Rgba2Count": "Vintagestory.API.Client.MeshData.yml",
"Vintagestory.API.Client.MeshData.rgba2Instanced": "Vintagestory.API.Client.MeshData.yml",
"Vintagestory.API.Client.MeshData.rgba2Offset": "Vintagestory.API.Client.MeshData.yml",
"Vintagestory.API.Client.MeshData.Rgba2Size": "Vintagestory.API.Client.MeshData.yml",
"Vintagestory.API.Client.MeshData.rgba2Static": "Vintagestory.API.Client.MeshData.yml",
"Vintagestory.API.Client.MeshData.RgbaCount": "Vintagestory.API.Client.MeshData.yml",
"Vintagestory.API.Client.MeshData.rgbaInstanced": "Vintagestory.API.Client.MeshData.yml",
"Vintagestory.API.Client.MeshData.rgbaOffset": "Vintagestory.API.Client.MeshData.yml",
"Vintagestory.API.Client.MeshData.RgbaSize": "Vintagestory.API.Client.MeshData.yml",
"Vintagestory.API.Client.MeshData.rgbaStatic": "Vintagestory.API.Client.MeshData.yml",
"Vintagestory.API.Client.MeshData.Rotate(Vintagestory.API.MathTools.Vec3f,System.Single,System.Single,System.Single)": "Vintagestory.API.Client.MeshData.yml",
"Vintagestory.API.Client.MeshData.Scale(Vintagestory.API.MathTools.Vec3f,System.Single,System.Single,System.Single)": "Vintagestory.API.Client.MeshData.yml",
"Vintagestory.API.Client.MeshData.setIndices(System.Int32[])": "Vintagestory.API.Client.MeshData.yml",
"Vintagestory.API.Client.MeshData.SetIndicesCount(System.Int32)": "Vintagestory.API.Client.MeshData.yml",
"Vintagestory.API.Client.MeshData.setMode(Vintagestory.API.Client.EnumDrawMode)": "Vintagestory.API.Client.MeshData.yml",
"Vintagestory.API.Client.MeshData.setRgba(System.Byte[])": "Vintagestory.API.Client.MeshData.yml",
"Vintagestory.API.Client.MeshData.setRgba2(System.Byte[])": "Vintagestory.API.Client.MeshData.yml",
"Vintagestory.API.Client.MeshData.setUv(System.Single[])": "Vintagestory.API.Client.MeshData.yml",
"Vintagestory.API.Client.MeshData.SetVerticesCount(System.Int32)": "Vintagestory.API.Client.MeshData.yml",
"Vintagestory.API.Client.MeshData.setXyz(System.Single[])": "Vintagestory.API.Client.MeshData.yml",
"Vintagestory.API.Client.MeshData.tints": "Vintagestory.API.Client.MeshData.yml",
"Vintagestory.API.Client.MeshData.tintsCount": "Vintagestory.API.Client.MeshData.yml",
"Vintagestory.API.Client.MeshData.Translate(System.Single,System.Single,System.Single)": "Vintagestory.API.Client.MeshData.yml",
"Vintagestory.API.Client.MeshData.Translate(Vintagestory.API.MathTools.Vec3f)": "Vintagestory.API.Client.MeshData.yml",
"Vintagestory.API.Client.MeshData.uv": "Vintagestory.API.Client.MeshData.yml",
"Vintagestory.API.Client.MeshData.UvCount": "Vintagestory.API.Client.MeshData.yml",
"Vintagestory.API.Client.MeshData.uvInstanced": "Vintagestory.API.Client.MeshData.yml",
"Vintagestory.API.Client.MeshData.uvOffset": "Vintagestory.API.Client.MeshData.yml",
"Vintagestory.API.Client.MeshData.UvSize": "Vintagestory.API.Client.MeshData.yml",
"Vintagestory.API.Client.MeshData.uvStatic": "Vintagestory.API.Client.MeshData.yml",
"Vintagestory.API.Client.MeshData.verticesCount": "Vintagestory.API.Client.MeshData.yml",
"Vintagestory.API.Client.MeshData.verticesMax": "Vintagestory.API.Client.MeshData.yml",
"Vintagestory.API.Client.MeshData.WithRenderpasses": "Vintagestory.API.Client.MeshData.yml",
"Vintagestory.API.Client.MeshData.WithTints": "Vintagestory.API.Client.MeshData.yml",
"Vintagestory.API.Client.MeshData.xyz": "Vintagestory.API.Client.MeshData.yml",
"Vintagestory.API.Client.MeshData.XyzCount": "Vintagestory.API.Client.MeshData.yml",
"Vintagestory.API.Client.MeshData.xyzFaces": "Vintagestory.API.Client.MeshData.yml",
"Vintagestory.API.Client.MeshData.xyzFacesCount": "Vintagestory.API.Client.MeshData.yml",
"Vintagestory.API.Client.MeshData.xyzInstanced": "Vintagestory.API.Client.MeshData.yml",
"Vintagestory.API.Client.MeshData.xyzOffset": "Vintagestory.API.Client.MeshData.yml",
"Vintagestory.API.Client.MeshData.XyzSize": "Vintagestory.API.Client.MeshData.yml",
"Vintagestory.API.Client.MeshData.xyzStatic": "Vintagestory.API.Client.MeshData.yml",
"Vintagestory.API.Client.MeshRef": "Vintagestory.API.Client.MeshRef.yml",
"Vintagestory.API.Client.MouseEvent": "Vintagestory.API.Client.MouseEvent.yml",
"Vintagestory.API.Client.MouseEvent.Button": "Vintagestory.API.Client.MouseEvent.yml",
"Vintagestory.API.Client.MouseEvent.Handled": "Vintagestory.API.Client.MouseEvent.yml",
"Vintagestory.API.Client.MouseEvent.MovementX": "Vintagestory.API.Client.MouseEvent.yml",
"Vintagestory.API.Client.MouseEvent.MovementY": "Vintagestory.API.Client.MouseEvent.yml",
"Vintagestory.API.Client.MouseEvent.X": "Vintagestory.API.Client.MouseEvent.yml",
"Vintagestory.API.Client.MouseEvent.Y": "Vintagestory.API.Client.MouseEvent.yml",
"Vintagestory.API.Client.MouseEventDelegate": "Vintagestory.API.Client.MouseEventDelegate.yml",
"Vintagestory.API.Client.MusicTrackPart": "Vintagestory.API.Client.MusicTrackPart.yml",
"Vintagestory.API.Client.MusicTrackPart.Applicable(Vintagestory.API.Common.IWorldAccessor,Vintagestory.API.Common.Entities.TrackedPlayerProperties)": "Vintagestory.API.Client.MusicTrackPart.yml",
"Vintagestory.API.Client.MusicTrackPart.CurrentSuitability(Vintagestory.API.Common.IWorldAccessor,Vintagestory.API.Common.Entities.TrackedPlayerProperties)": "Vintagestory.API.Client.MusicTrackPart.yml",
"Vintagestory.API.Client.MusicTrackPart.CurrentVolume(Vintagestory.API.Common.IWorldAccessor,Vintagestory.API.Common.Entities.TrackedPlayerProperties)": "Vintagestory.API.Client.MusicTrackPart.yml",
"Vintagestory.API.Client.MusicTrackPart.ExpandFiles(Vintagestory.API.Common.IAssetManager)": "Vintagestory.API.Client.MusicTrackPart.yml",
"Vintagestory.API.Client.MusicTrackPart.Files": "Vintagestory.API.Client.MusicTrackPart.yml",
"Vintagestory.API.Client.MusicTrackPart.IsPlaying": "Vintagestory.API.Client.MusicTrackPart.yml",
"Vintagestory.API.Client.MusicTrackPart.Loading": "Vintagestory.API.Client.MusicTrackPart.yml",
"Vintagestory.API.Client.MusicTrackPart.MaxSuitability": "Vintagestory.API.Client.MusicTrackPart.yml",
"Vintagestory.API.Client.MusicTrackPart.MaxVolumne": "Vintagestory.API.Client.MusicTrackPart.yml",
"Vintagestory.API.Client.MusicTrackPart.MinSuitability": "Vintagestory.API.Client.MusicTrackPart.yml",
"Vintagestory.API.Client.MusicTrackPart.MinVolumne": "Vintagestory.API.Client.MusicTrackPart.yml",
"Vintagestory.API.Client.MusicTrackPart.PosY": "Vintagestory.API.Client.MusicTrackPart.yml",
"Vintagestory.API.Client.MusicTrackPart.Sound": "Vintagestory.API.Client.MusicTrackPart.yml",
"Vintagestory.API.Client.MusicTrackPart.StartedMs": "Vintagestory.API.Client.MusicTrackPart.yml",
"Vintagestory.API.Client.MusicTrackPart.Sunlight": "Vintagestory.API.Client.MusicTrackPart.yml",
"Vintagestory.API.Client.MusicTrackPart.Weather": "Vintagestory.API.Client.MusicTrackPart.yml",
"Vintagestory.API.Client.NetworkServerMessageHandler`1": "Vintagestory.API.Client.NetworkServerMessageHandler-1.yml",
"Vintagestory.API.Client.NormalUtil": "Vintagestory.API.Client.NormalUtil.yml",
"Vintagestory.API.Client.NormalUtil.FromPackedNormal(System.Int32,System.Single[]@)": "Vintagestory.API.Client.NormalUtil.yml",
"Vintagestory.API.Client.NormalUtil.FromPackedNormal(System.Int32,Vintagestory.API.MathTools.Vec4f@)": "Vintagestory.API.Client.NormalUtil.yml",
"Vintagestory.API.Client.NormalUtil.NegBit": "Vintagestory.API.Client.NormalUtil.yml",
"Vintagestory.API.Client.NormalUtil.nineBitMask": "Vintagestory.API.Client.NormalUtil.yml",
"Vintagestory.API.Client.NormalUtil.PackNormal(System.Single,System.Single,System.Single)": "Vintagestory.API.Client.NormalUtil.yml",
"Vintagestory.API.Client.NormalUtil.PackNormal(Vintagestory.API.MathTools.Vec4f)": "Vintagestory.API.Client.NormalUtil.yml",
"Vintagestory.API.Client.NormalUtil.tenBitMask": "Vintagestory.API.Client.NormalUtil.yml",
"Vintagestory.API.Client.NormalUtil.tenthBitMask": "Vintagestory.API.Client.NormalUtil.yml",
"Vintagestory.API.Client.OnGamePauseResume": "Vintagestory.API.Client.OnGamePauseResume.yml",
"Vintagestory.API.Client.OnLeaveWorld": "Vintagestory.API.Client.OnLeaveWorld.yml",
"Vintagestory.API.Client.OnValueGetDelegate": "Vintagestory.API.Client.OnValueGetDelegate.yml",
"Vintagestory.API.Client.OnValueSetDelegate": "Vintagestory.API.Client.OnValueSetDelegate.yml",