-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathReference - Dark Souls II RTTI.txt
5355 lines (5336 loc) · 489 KB
/
Reference - Dark Souls II RTTI.txt
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
PLAYER STUFF:
012D24A4 0005 PlayerTurnCtrl: ChrTurnCtrl; [SI]
012C1328 0004 PlayerStartUpMotionCtrl: ChrMotionSubComponent; [SI]
012C1448 0013 PlayerRemoteOperator: CharacterOperator; [SI]
012C0D84 0004 PlayerQuickStopCtrl; [SI]
012C1410 0013 PlayerOperator: CharacterOperator; [SI]
012C127C 0042 PlayerNetworkManipulator: ChrNetworkManipulator, ChrManipulator; [SI]
012D23FC 0020 PlayerMovementCtrl: CharacterMovementCtrl; [SI]
012C0D54 0009 PlayerMoveIkCtrl: ChrMoveIkCtrl; [SI]
012D2544 0007 PlayerMorphemeNodeCtrl: ChrMorphemeNodeCtrl; [SI]
012D238C 0006 PlayerMorphemeCtrl: ChrMorphemeCtrl; [SI]
012D30A0 0007 PlayerLookAtCtrl: ChrLookAtCtrl; [SI]
012D2304 0008 PlayerLockTargetCtrl: CharacterLockTargetCtrl; [SI]
012B7F20 0002 PlayerLevelUpLayoutScene: FrontendEx::FexDynamicLayoutScene, FrontendEx::FexLayoutSceneProxy, FrontendEx::FexLayoutResourceProxy; [SI]
012D24F4 0010 PlayerJumpCtrl: ChrJumpCtrl; [SI]
012BDF84 0004 PlayerHeapContainer: ChrHeapInterface; [SI]
012C0F8C 0042 PlayerGhostManipulator: PlayerNetworkManipulator, ChrNetworkManipulator, ChrManipulator; [SI]
012D21C4 0079 PlayerGameParamCalculator: ChrGameParamCalculator; [SI]
012BA610 0002 PlayerEzStateCtrl; [MI]
012BA61C 0013 PlayerEzStateCtrl: ChrEzStateCtrl, CommonEzStateCtrl, EzStateCtrl, EzState::EzStateEventListener, EzState::EzStateEnvironment; [MI]
012D1D5C 0013 PlayerEquipHeapContainer::_PlayerEquipHeap: DynamicHeapMemoryTemplate<WinAssertHeapStrategy<DLKR::DLDefaultHeapStrategy<DLKR::DLRegularHeap,DLKR::DLMultiThreadingPolicy>>>, HeapMemory; [SI]
012BDC9C 0011 PlayerEquipHeapContainer: ChrEquipHeapInterface; [SI]
012C0D1C 0013 PlayerEquipBrokenActionCtrl: ChrEquipBrokenActionCtrl; [SI]
012D24BC 0008 PlayerDodgeCtrl: ChrDodgeCtrl; [SI]
012C0C5C 0047 PlayerDamageActionCtrl: ChrDamageActionCtrl; [SI]
012D2054 0037 PlayerCtrl: CharacterCtrl, CharacterCtrlBase, GameEntity, GameObject; [SI]
012DCF7C 0011 PlayerCameraOperator: PerspectiveCameraOperator, CameraOperator; [SI]
012C13D8 0013 PlayerAiOperator: CharacterOperator; [SI]
012C0EDC 0042 PlayerAiManipulator: ChrManipulator; [SI]
012BA654 0057 PlayerAi: ChrAi, ChrAiBase; [SI]
012D1F04 0005 PlayerActionCtrl: CharacterActionCtrl; [SI]
012BD73C 0002 ItemInventory2SpellList: ItemInventory2EachList; [SI]
012BD94C 0020 ItemInventory2ShopList: ItemInventory2ListBase; [SI]
012BD708 0012 ItemInventory2RepositoryList: ItemInventory2EachList; [SI]
012BD6D4 0012 ItemInventory2NormalList: ItemInventory2EachList; [SI]
012BD894 0020 ItemInventory2ListBase; [SI]
012BD6A0 0012 ItemInventory2EquipList: ItemInventory2EachList; [SI]
012BD66C 0012 ItemInventory2EachList; [SI]
012BD83C 0020 ItemInventory2CofferList: ItemInventory2ListBase; [SI]
012BD7E4 0020 ItemInventory2BagList: ItemInventory2ListBase; [SI]
CHR/CHARACTER:
012BAFBC 0005 ChrWindCtrl; [SI]
012BAF9C 0005 ChrWetCtrl; [SI]
012BC784 0001 ChrWepSfxCtrl; [SI]
012D1194 0004 ChrWalkMotionCtrl: ChrMotionSubComponent; [SI]
012CF05C 0005 ChrTurnCtrl; [SI]
012BC828 0002 ChrTextureManager: MdlTextureFactory; [SI]
012BC7D0 0007 ChrTexture: MdlTexture, DLNonAtomicReferenceCountObject; [SI]
012BC104 0002 ChrStatusPacketReceiver: NetPacketReceiver; [SI]
012BB100 0002 ChrStatusAbnormalityEffect: DLUT::DLReferenceCountObject; [SI]
012BB0F4 0002 ChrStatusAbnormalities: DLUT::DLReferenceCountObject; [SI]
012D1140 0004 ChrRopeMotionCtrl: ChrMotionSubComponent; [SI]
012BC184 0004 ChrResTimeActObject: ChrResObjectBase; [SI]
012BC170 0004 ChrResSoundObject: ChrResObjectBase; [SI]
012BC134 0004 ChrResObjectBase; [SI]
012BC15C 0004 ChrResMorphemeObject: ChrResObjectBase; [SI]
012BC148 0004 ChrResModelObject: ChrResObjectBase; [SI]
012D1BF4 0001 ChrRagdollCtrl; [SI]
012CEA84 0004 ChrPositionFixCtrl; [SI]
012BAF3C 0004 ChrPoiseCtrl; [SI]
012D1BB4 0001 ChrPhysicsCtrl; [SI]
012D1B88 0001 ChrPhysicalProxy; [SI]
012D112C 0004 ChrPassiveActionMotionCtrl: ChrMotionSubComponent; [SI]
012D0C58 0004 ChrPartialIkMotionCtrl: ChrMotionSubComponent; [SI]
012BAF18 0004 ChrParryActionCtrl; [SI]
012D196C 0042 ChrPadManipulator: ChrManipulator; [SI]
012BAF04 0004 ChrObjGenerateCtrl; [SI]
012CF73C 0013 ChrNullOperator: CharacterOperator; [SI]
012D18A4 0042 ChrNetworkManipulator: ChrManipulator; [SI]
012D1E14 0002 ChrNetworkDataCtrl; [SI]
012BBD9C 0042 ChrNetAiManipulator: ChrManipulator; [SI]
012D1E7C 0011 ChrNaviGraphLocationComponent: NaviGraphLocationComponent, GameEntityComponent; [SI]
012BAECC 0009 ChrMoveIkCtrl; [SI]
012BBE80 0004 ChrMotionSubComponent; [SI]
012BC0F8 0002 ChrMotionPacketReceiver: NetPacketReceiver; [SI]
012CEA3C 0001 ChrMotionCtrl; [SI]
012CEDF8 0003 ChrMorphemeTimeActTrackWeaponCtrl: MorphemeTimeActTrack; [SI]
012CEDE8 0003 ChrMorphemeTimeActTrackStaminaCtrl: MorphemeTimeActTrack; [SI]
012BC920 0003 ChrMorphemeTimeActTrackSpEffectCtrl: MorphemeTimeActTrack; [SI]
012CE398 0010 ChrMorphemeTimeActTrackSoundCtrlInterfaceBase; [SI]
012CE3C4 0010 ChrMorphemeTimeActTrackSoundCtrlCharacterInterface: ChrMorphemeTimeActTrackSoundCtrlInterfaceBase; [SI]
012CEDD8 0003 ChrMorphemeTimeActTrackSoundCtrl: MorphemeTimeActTrack; [SI]
012CEDC8 0003 ChrMorphemeTimeActTrackSfxCtrl: MorphemeTimeActTrack; [SI]
012BC910 0003 ChrMorphemeTimeActTrackParryCtrl: MorphemeTimeActTrack; [SI]
012BC900 0003 ChrMorphemeTimeActTrackObjGenerateCtrl: MorphemeTimeActTrack; [SI]
012BC8F0 0003 ChrMorphemeTimeActTrackLockOnCtrl: MorphemeTimeActTrack; [SI]
012BC8E0 0003 ChrMorphemeTimeActTrackGimmickCtrl: MorphemeTimeActTrack; [SI]
012CEDB8 0003 ChrMorphemeTimeActTrackFootEffectCtrl: MorphemeTimeActTrack; [SI]
012BC8D0 0003 ChrMorphemeTimeActTrackEventCtrl: MorphemeTimeActTrack; [SI]
012BC8C0 0003 ChrMorphemeTimeActTrackDeadCtrl: MorphemeTimeActTrack; [SI]
012CEDA8 0003 ChrMorphemeTimeActTrackDamageCtrl: MorphemeTimeActTrack; [SI]
012CED98 0003 ChrMorphemeTimeActTrackDamageActionCtrl: MorphemeTimeActTrack; [SI]
012BC8B0 0003 ChrMorphemeTimeActTrackChrPartsCtrl: MorphemeTimeActTrack; [SI]
012BC8A0 0003 ChrMorphemeTimeActTrackChrMoveCtrl: MorphemeTimeActTrack; [SI]
012BC88C 0003 ChrMorphemeTimeActTrackChrModelCtrl: MorphemeTimeActTrack; [SI]
012BC87C 0003 ChrMorphemeTimeActTrackChrItemCtrl: MorphemeTimeActTrack; [SI]
012BC86C 0003 ChrMorphemeTimeActTrackChrGenerateCtrl: MorphemeTimeActTrack; [SI]
012BC85C 0003 ChrMorphemeTimeActTrackChrCollidCtrl: MorphemeTimeActTrack; [SI]
012CED88 0003 ChrMorphemeTimeActTrackCameraCtrl: MorphemeTimeActTrack; [SI]
012CED78 0003 ChrMorphemeTimeActTrackBulletCtrl: MorphemeTimeActTrack; [SI]
012CED68 0003 ChrMorphemeTimeActTrackAttackCtrl: MorphemeTimeActTrack; [SI]
012BC84C 0003 ChrMorphemeTimeActTrackAiCtrl: MorphemeTimeActTrack; [SI]
012CED50 0005 ChrMorphemeTimeActEventHandler: MorphemeTimeActEventHandler; [SI]
012D16C4 0007 ChrMorphemeNodeCtrl; [SI]
012CEA20 0006 ChrMorphemeCtrl; [SI]
012D17F4 0042 ChrManipulator; [SI]
012D1C44 0007 ChrLookAtCtrl; [SI]
012BBD94 0001 ChrLogicalInputFilter; [SI]
012D1738 0001 ChrLogicalInput; [SI]
012BC0EC 0002 ChrLockOnPacketReceiver: NetPacketReceiver; [SI]
012BAEC0 0001 ChrLightCtrl; [SI]
012BAEB0 0003 ChrLanternCtrl; [SI]
012D0AC4 0004 ChrLadderMotionCtrl: ChrMotionSubComponent; [SI]
012CEECC 0001 ChrLadderCtrl; [SI]
012D0944 0005 ChrJumpMotionCtrl: ChrMotionSubComponent; [SI]
012CEEA0 0010 ChrJumpCtrl; [SI]
012BAE98 0005 ChrJumpAttackCtrl; [SI]
012BBF48 0004 ChrItemMotionCtrl: ChrMotionSubComponent; [SI]
012CEE90 0003 ChrItemCtrl; [SI]
012D16E4 0020 ChrInput; [SI]
012BBE94 0004 ChrHitBackMotionCtrl: ChrMotionSubComponent; [SI]
012D08A0 0004 ChrGuardMotionCtrl: ChrMotionSubComponent; [SI]
012CEE7C 0004 ChrGuardActionCtrl; [SI]
012BC0E0 0002 ChrGrabPacketReceiver: NetPacketReceiver; [SI]
012D07EC 0004 ChrGrabMotionCtrl: ChrMotionSubComponent; [SI]
012CEE2C 0004 ChrGrabActionCtrl; [SI]
012CE8CC 0078 ChrGameParamCalculator; [SI]
012BB04C 0001 ChrFullBodySfxCtrl; [SI]
012CE8C0 0001 ChrFootEffectCtrl; [SI]
012BA56C 0002 ChrEzStateCtrl; [MI]
012BA578 0013 ChrEzStateCtrl: CommonEzStateCtrl, EzStateCtrl, EzState::EzStateEventListener, EzState::EzStateEnvironment; [MI]
012BAE2C 0021 ChrEventWhiteDoorActionCtrl: ChrEventSubActionCtrl; [SI]
012D1E04 0002 ChrEventTriggerCtrl; [SI]
012D1AF4 0003 ChrEventTrackHandler: MorphemeEventTrackHandler; [SI]
012D1AD8 0002 ChrEventTrackActionUpperBody: MorphemeEventTrackAction; [SI]
012D1ACC 0002 ChrEventTrackActionTimeAct: MorphemeEventTrackAction; [SI]
012D1AC0 0002 ChrEventTrackActionStateControl: MorphemeEventTrackAction; [SI]
012D1AB4 0002 ChrEventTrackActionRope: MorphemeEventTrackAction; [SI]
012D1AA8 0002 ChrEventTrackActionMagic: MorphemeEventTrackAction; [SI]
012BBC48 0002 ChrEventTrackActionItem: MorphemeEventTrackAction; [SI]
012D1A9C 0002 ChrEventTrackActionIk: MorphemeEventTrackAction; [SI]
012D1A90 0002 ChrEventTrackActionHit: MorphemeEventTrackAction; [SI]
012D1A84 0002 ChrEventTrackActionGuardSequence: MorphemeEventTrackAction; [SI]
012D1A78 0002 ChrEventTrackActionGuard: MorphemeEventTrackAction; [SI]
012D1A6C 0002 ChrEventTrackActionGravity: MorphemeEventTrackAction; [SI]
012D1A60 0002 ChrEventTrackActionFootEffect: MorphemeEventTrackAction; [SI]
012D1A54 0002 ChrEventTrackActionFalling: MorphemeEventTrackAction; [SI]
012BBC3C 0002 ChrEventTrackActionEventAction: MorphemeEventTrackAction; [SI]
012D1A48 0002 ChrEventTrackActionDoor: MorphemeEventTrackAction; [SI]
012D1A3C 0002 ChrEventTrackActionDamage: MorphemeEventTrackAction; [SI]
012BBC30 0002 ChrEventTrackActionBossExtraMotion: MorphemeEventTrackAction; [SI]
012BBC20 0002 ChrEventTrackActionBossDie: MorphemeEventTrackAction; [SI]
012D1A30 0002 ChrEventTrackActionBossDamage: MorphemeEventTrackAction; [SI]
012BBC14 0002 ChrEventTrackActionAttackStagger: MorphemeEventTrackAction; [SI]
012D1A24 0002 ChrEventTrackActionAttack: MorphemeEventTrackAction; [SI]
012BADD4 0021 ChrEventSubActionCtrl; [SI]
012BAD7C 0021 ChrEventPickUpItemActionCtrl: ChrEventSubActionCtrl; [SI]
012BAD1C 0021 ChrEventLightTorchActionCtrl: ChrEventSubActionCtrl; [SI]
012BACC4 0021 ChrEventLevelUpActionCtrl: ChrEventSubActionCtrl; [SI]
012BAC14 0021 ChrEventKindleBonfireActionCtrl: ChrEventSubActionCtrl; [SI]
012BABBC 0021 ChrEventKickGimmickActionCtrl: ChrEventSubActionCtrl; [SI]
012BAC6C 0021 ChrEventGimmickActionCtrl: ChrEventSubActionCtrl; [SI]
012BAB0C 0021 ChrEventDoorActionCtrl: ChrEventSubActionCtrl; [SI]
012BAAB4 0021 ChrEventBallistaActionCtrl: ChrEventSubActionCtrl; [SI]
012D05C4 0004 ChrEventActionMotionCtrl: ChrMotionSubComponent; [SI]
012CEE24 0001 ChrEventActionCtrl; [SI]
012BB2A4 0011 ChrEquipWeaponCtrl; [SI]
012BB930 0010 ChrEquipSfxSlotCtrl: SfxSlotCtrl; [SI]
012BC0D4 0002 ChrEquipPacketReceiver: NetPacketReceiver; [SI]
012BAA78 0013 ChrEquipBrokenActionCtrl; [SI]
012BA964 0004 ChrDownActionCtrl; [SI]
012D0428 0004 ChrDodgeMotionCtrl: ChrMotionSubComponent; [SI]
012CEE08 0006 ChrDodgeCtrl; [SI]
012BC0C8 0002 ChrDeadPacketReceiver: NetPacketReceiver; [SI]
012BAA54 0005 ChrDeadActionCtrl; [SI]
012BC0BC 0002 ChrDamagePacketReceiver: NetPacketReceiver; [SI]
012D0244 0004 ChrDamageMotionCtrl: ChrMotionSubComponent; [SI]
012BA97C 0047 ChrDamageActionCtrl; [SI]
012BB044 0001 ChrCullingGroupCtrl; [SI]
012D0130 0004 ChrConditionMotionCtrl: ChrMotionSubComponent; [SI]
012D8714 0001 ChrCollideReactionCtrl: DLUT::DLNonCopyable; [SI]
012D86BC 0008 ChrCollideNotifyComponent: GameEntityCollideNotifyInterface, GameEntityComponent; [SI]
012D1B04 0001 ChrClothCtrl; [SI]
012CF730 0001 ChrBodyScale; [SI]
012CFA4C 0004 ChrAttackMotionCtrl: ChrMotionSubComponent; [SI]
012D1C64 0001 ChrAttackDamageCtrl; [SI]
012CF6EC 0016 ChrAsmResource; [SI]
012BB5CC 0016 ChrAsmResidentResource: ChrAsmResource; [SI]
012BB5C0 0001 ChrAsmResidentResManager; [SI]
012BB4C4 0007 ChrAsmModelStatus; [SI]
012CF614 0008 ChrAsmModelPoseDummyPolygon: ChrAsmModelPose; [SI]
012CF638 0008 ChrAsmModelPoseBone: ChrAsmModelPose; [SI]
012CF5F0 0008 ChrAsmModelPose; [SI]
012CF414 0045 ChrAsmModelParts: ChrAsmModelBase; [SI]
012CF400 0003 ChrAsmModelMaterialPatch: Flver::FlverModelMaterialPatch; [SI]
012CF2BC 0056 ChrAsmModelFace: ChrAsmModelBase; [SI]
012CF204 0045 ChrAsmModelBase; [SI]
012CF1B4 0019 ChrAsmModel: GXDrawItem; [SI]
012CF0D4 0028 ChrAsmCtrl; [SI]
012BB3DC 0057 ChrAsmCopyModelFace: ChrAsmModelFace, ChrAsmModelBase; [SI]
012BB38C 0019 ChrAsmCopyModel: ChrAsmModel, GXDrawItem; [SI]
012BB314 0028 ChrAsmCopyCtrl: ChrAsmCtrl; [SI]
012BB2D4 0002 ChrAsmCommonResData: DLUT::DLReferenceCountObject; [SI]
012D8084 0001 ChrAiNavimeshCtrl; [SI]
012BA4F8 0001 ChrAiMapObjectCtrl; [SI]
012D1744 0043 ChrAiManipulator: ChrManipulator; [SI]
012D7F14 0016 ChrAiBase; [SI]
012D7E4C 0048 ChrAi: ChrAiBase; [SI]
012BA950 0003 ChrActionSfxCtrl; [SI]
012CECFC 0020 CharacterTimeActEventHandler: TimeActEventHandler; [SI]
012BC78C 0005 CharacterSoundSlotCtrl: AppSoundSlotCtrl; [SI]
012CF074 0011 CharacterSfxSlotCtrl: SfxSlotCtrl; [SI]
012CEF84 0001 CharacterRigidBody; [SI]
012CE848 0013 CharacterOperator; [SI]
012CEFD4 0020 CharacterMovementCtrl; [SI]
012CE7E4 0010 CharacterModelCtrl: GXDrawItem; [SI]
012CF7B4 0007 CharacterManager; [SI]
012CE7A0 0008 CharacterLockTargetCtrl; [SI]
012CF0A4 0011 CharacterHorizontalSfxSlotCtrl: SfxSlotCtrl; [SI]
012CE788 0005 CharacterDamageCtrl; [SI]
012CE5EC 0065 CharacterCtrlBase: GameEntity, GameObject; [SI]
012CE454 0037 CharacterCtrl: CharacterCtrlBase, GameEntity, GameObject; [SI]
012CE284 0005 CharacterActionCtrl; [SI]
013EB368 0005 CharDataDelayedSendTask: Nauru::System::Task, DLUT::DLReferenceCountObject; [SI]
GAME:
012D4364 0001 GameSensor; [SI]
012D79B8 0003 GameObject; [SI]
012BDE14 0003 GameManagerImp: GameManager; [SI]
012CCE70 0002 GameManagerCallbackObjectBase; [SI]
012CDBB8 0002 GameManagerCallbackObject<ModelTestSceneImpl>: GameManagerCallbackObjectBase; [SI]
012D3104 0022 GameManager; [SI]
012BECC4 0009 GameEntitySupportNotifyInterface: GameEntityComponent; [SI]
012D843C 0008 GameEntityDamageInterface: GameEntityComponent; [SI]
012D8398 0007 GameEntityComponent; [SI]
012D6244 0008 GameEntityCollideNotifyInterface: GameEntityComponent; [SI]
012D7910 0009 GameEntity: GameObject; [SI]
012BD32C 0001 GameDataPlayerTempData; [SI]
012D9950 0001 GameDataManager; [SI]
ENEMY:
012D4078 0004 EnemyWalkMotionCtrl: ChrMotionSubComponent; [SI]
012BCEBC 0004 EnemyQuickTurnCtrl; [SI]
012BCDFC 0047 EnemyPartsDamageActionCtrl: ChrDamageActionCtrl; [SI]
012D3C64 0004 EnemyPartialIkMotionCtrl: ChrMotionSubComponent; [SI]
012D346C 0013 EnemyOperator: CharacterOperator; [SI]
012D3534 0020 EnemyMovementCtrl: CharacterMovementCtrl; [SI]
012D3A40 0007 EnemyMorphemeNodeCtrl: ChrMorphemeNodeCtrl; [SI]
012D3424 0006 EnemyMorphemeCtrl: ChrMorphemeCtrl; [SI]
012D4234 0007 EnemyLookAtCtrl: ChrLookAtCtrl; [SI]
012D3400 0008 EnemyLockTargetCtrl: CharacterLockTargetCtrl; [SI]
012D38EC 0005 EnemyJumpMotionCtrl: ChrJumpMotionCtrl, ChrMotionSubComponent; [SI]
012D34DC 0020 EnemyInput: ChrInput; [SI]
012D7B1C 0002 EnemyGeneratorPacketCtrl: NetPacketReceiver; [SI]
012D7B64 0001 EnemyGeneratorManager; [SI]
012C0C54 0001 EnemyGeneratorDeadCounter; [SI]
012D7AF4 0009 EnemyGeneratorCtrl: GameEntity, GameObject; [SI]
012D79D0 0001 EnemyGeneratorAreaCtrl; [SI]
012D79C8 0001 EnemyGeneratorAreaChrStatus; [SI]
012D4264 0014 EnemyEquipWeaponCtrl: ChrEquipWeaponCtrl; [SI]
012BDCCC 0010 EnemyEquipHeapContainer: ChrEquipHeapInterface; [SI]
012BCD48 0013 EnemyEquipBrokenActionCtrl: ChrEquipBrokenActionCtrl; [SI]
012BCD2C 0006 EnemyDodgeCtrl: ChrDodgeCtrl; [SI]
012BCC6C 0047 EnemyDamageActionCtrl: EnemyPartsDamageActionCtrl, ChrDamageActionCtrl; [SI]
012D35CC 0004 EnemyAttackMotionCtrl: ChrMotionSubComponent; [SI]
012D316C 0005 EnemyActionCtrlBase: CharacterActionCtrl; [SI]
012D32C4 0005 EnemyActionCtrl: EnemyActionCtrlBase, CharacterActionCtrl; [SI]
EVENT:
012BD2C8 0001 EventWindowManager; [SI]
012D9590 0001 EventValueManager; [SI]
012BD270 0001 EventValueBuffer; [SI]
012D95A0 0001 EventTimerManager; [SI]
012BD250 0007 EventTaskPointCtrl: EventTaskCtrl; [SI]
012BD230 0007 EventTaskObjCtrl: EventTaskCtrl; [SI]
012BD210 0007 EventTaskNonOwnerCtrl: EventTaskCtrl; [SI]
012D8D24 0001 EventTaskManager; [SI]
012BD1F0 0007 EventTaskCtrl; [SI]
012BD1D0 0007 EventTaskChrCtrl: EventTaskCtrl; [SI]
012BD1C8 0001 EventTaskAreaCtrl; [SI]
012BD1C0 0001 EventTalkManager; [SI]
012BD1B8 0001 EventTalkCtrl; [SI]
012D95C4 0001 EventSoundManager; [SI]
012BD190 0009 EventResultManager: NetEventListener; [SI]
012BD168 0004 EventResultJob::WaitSessionJob: FeBasicJob, FeJob, DLUT::DLReferenceCountObject; [SI]
012BD17C 0004 EventResultJob::WaitJob: FeBasicJob, FeJob, DLUT::DLReferenceCountObject; [SI]
012BD154 0004 EventResultJob::WaitFeEndJob: FeBasicJob, FeJob, DLUT::DLReferenceCountObject; [SI]
012BD12C 0004 EventResultJob::Remunerate: FeBasicJob, FeJob, DLUT::DLReferenceCountObject; [SI]
012BD140 0004 EventResultJob::ChargeVowContributeJob: FeBasicJob, FeJob, DLUT::DLReferenceCountObject; [SI]
012BD0E4 0007 EventResultBase; [SI]
012BD0C4 0007 EventResult: EventResultBase; [SI]
012BCFB0 0003 EventResidentAction_GetItem_HostKillCount: EventResidentAction_GetItem, EventResidentActionBase; [SI]
012BCFA0 0003 EventResidentAction_GetItem_BlackPhantomKillCount: EventResidentAction_GetItem, EventResidentActionBase; [SI]
012BCFC0 0003 EventResidentAction_DlcEnable: EventResidentActionBase; [SI]
012BCFE0 0003 EventResidentAction_CheckGiantsSeed: EventResidentActionBase; [SI]
012BCFD0 0003 EventResidentAction_CheckEndrollItem: EventResidentActionBase; [SI]
012BCF90 0003 EventResidentActionBase; [SI]
012D8CFC 0001 EventPositionSaveEstimator; [SI]
012D9560 0007 EventPointManager: SignEventListener; [SI]
012BD03C 0001 EventPointChrInsideCheckManager; [SI]
012BD01C 0007 EventPointChrInsideCheckListener: PXPhantomOverlapListener; [SI]
012D9504 0009 EventPointBulletEmitter: GameEntity, GameObject; [SI]
012D94B4 0001 EventPointAreaCtrl; [SI]
012BD044 0001 EventPhantomReturn; [SI]
012D8CF0 0002 EventPacketResultCtrl: NetPacketReceiver; [SI]
012D8CE4 0002 EventPacketFlagCtrl: NetPacketReceiver; [SI]
012D8CD8 0002 EventPacketConditionCtrl: NetPacketReceiver; [SI]
012D8CCC 0002 EventPacketBossBattleCtrl: NetPacketReceiver; [SI]
012BD004 0001 EventNotifyManager; [SI]
012D4A0C 0001 EventMovementPointManager; [SI]
012D4A04 0001 EventMovementPointCtrl; [SI]
012D8D04 0001 EventManager; [SI]
0134D700 0001 EventMakerRes; [SI]
012C8BA4 0017 EventMakerExResourceObject_ForRegulation: EventMakerExResourceObject, FileResourceObject, ResourceObject; [SI]
0134DDBC 0017 EventMakerExResourceObject: FileResourceObject, ResourceObject; [SI]
0134D6F8 0001 EventMakerEvd; [SI]
012D8D64 0001 EventKeyGuideManager; [SI]
012D8D2C 0007 EventKeyGuideCtrl: EventPointChrInsideCheckListener, PXPhantomOverlapListener; [SI]
012BCF74 0002 EventGraveCtrl::EventGrave: EventFlagActionListener; [SI]
012D9588 0001 EventGlobalValueCtrl; [SI]
012D9474 0001 EventFlagManager; [SI]
012BCF60 0001 EventFlagBuffer; [SI]
012BCF54 0002 EventFlagActionListener; [SI]
012BCF4C 0001 EventFlagActionCtrl; [SI]
012D93E8 0002 EventEzStatePointCtrl; [MI]
012D93F4 0020 EventEzStatePointCtrl: EventEzStateCtrl, CommonEzStateCtrl, EzStateCtrl, EzState::EzStateEventListener, EzState::EzStateEnvironment; [MI]
012D9388 0002 EventEzStateObjCtrl; [MI]
012D9394 0020 EventEzStateObjCtrl: EventEzStateCtrl, CommonEzStateCtrl, EzStateCtrl, EzState::EzStateEventListener, EzState::EzStateEnvironment; [MI]
012D9308 0002 EventEzStateCtrl; [MI]
012D9314 0019 EventEzStateCtrl: CommonEzStateCtrl, EzStateCtrl, EzState::EzStateEventListener, EzState::EzStateEnvironment; [MI]
012D8E58 0002 EventEzStateChrCtrl; [MI]
012D8E64 0020 EventEzStateChrCtrl: EventEzStateCtrl, CommonEzStateCtrl, EzStateCtrl, EzState::EzStateEventListener, EzState::EzStateEnvironment; [MI]
012BCF44 0001 EventDrawCtrl; [SI]
012D9234 0002 EventConditionSystem_IsTrue: EventConditionBase; [SI]
012D921C 0002 EventConditionSystem_IsConditionGroupTrue: EventConditionBase; [SI]
012D9240 0002 EventConditionSystem_IsActorExist: EventConditionBase; [SI]
012D9284 0002 EventConditionSystem_IsActor: EventConditionBase; [SI]
012D9228 0002 EventConditionSystem_CompareBossBattleId: EventConditionBase; [SI]
012D9210 0002 EventConditionOther_IsSaving: EventConditionBase; [SI]
012D9204 0002 EventConditionOther_IsGraveGeneatable: EventConditionBase; [SI]
012D91EC 0002 EventConditionOther_CompareTotalSoul: EventConditionBase; [SI]
012D91E0 0002 EventConditionOther_CompareSoul: EventConditionBase; [SI]
012D91F8 0002 EventConditionOther_CompareRound: EventConditionBase; [SI]
012D91B0 0002 EventConditionObj_IsSearch: EventConditionBase; [SI]
012D9198 0002 EventConditionObj_IsDamaged: EventConditionBase; [SI]
012D918C 0002 EventConditionObj_IsBreak: EventConditionBase; [SI]
012D91D4 0002 EventConditionObj_IsActive: EventConditionBase; [SI]
012D9180 0002 EventConditionObj_CompareState: EventConditionBase; [SI]
012D91A4 0002 EventConditionObj_CompareRideNum: EventConditionBase; [SI]
012D91C8 0002 EventConditionObj_ComparePlayerDistance: EventConditionBase; [SI]
012D92FC 0002 EventConditionObj_CompareBreakNum: EventConditionBase; [SI]
012D91BC 0002 EventConditionObj_CheckAroundSound: EventConditionBase; [SI]
012D9114 0002 EventConditionNet_IsReceivedBell: EventConditionBase; [SI]
012D9174 0002 EventConditionNet_IsOffline: EventConditionBase; [SI]
012D9150 0002 EventConditionNet_IsNpcActive: EventConditionBase; [SI]
012D90FC 0002 EventConditionNet_IsMultiPlay: EventConditionBase; [SI]
012D915C 0002 EventConditionNet_IsHostDead: EventConditionBase; [SI]
012D9108 0002 EventConditionNet_IsHost: EventConditionBase; [SI]
012D9168 0002 EventConditionNet_IsForgivePenaltyItemGettable: EventConditionBase; [SI]
012D9138 0002 EventConditionNet_IsDuelRunningMatching: EventConditionBase; [SI]
012D912C 0002 EventConditionNet_IsDuelMatchingCompleted: EventConditionBase; [SI]
012D9120 0002 EventConditionNet_IsDuelEnable: EventConditionBase; [SI]
012D9144 0002 EventConditionNet_CompareMultiPlayNum: EventConditionBase; [SI]
012D90F0 0002 EventConditionMap_IsUsableMap: EventConditionBase; [SI]
012D90A8 0002 EventConditionMap_IsPlayerRideHit: EventConditionBase; [SI]
012D90B4 0002 EventConditionMap_IsPlayerInsideMultiPlayZone: EventConditionBase; [SI]
012D90C0 0002 EventConditionMap_IsPlayerInsideMap: EventConditionBase; [SI]
012D90CC 0002 EventConditionMap_IsBackreadStabilize: EventConditionBase; [SI]
012D90D8 0002 EventConditionMap_IsActiveMap: EventConditionBase; [SI]
012D90E4 0002 EventConditionMap_ComparePlayerRelationshipOnHitGroup: EventConditionBase; [SI]
012D9090 0002 EventConditionItem_IsItemMyDropped: EventConditionBase; [SI]
012D909C 0002 EventConditionItem_IsGetObjItem: EventConditionBase; [SI]
012D9078 0002 EventConditionItem_CompareItemNum: EventConditionBase; [SI]
012D9084 0002 EventConditionItem_CompareEquipItemNum: EventConditionBase; [SI]
012BCF20 0001 EventConditionHolder; [SI]
012BCF18 0001 EventConditionGroup; [SI]
012D906C 0002 EventConditionFlag_CompareValueId: EventConditionBase; [SI]
012D9060 0002 EventConditionFlag_CompareValue: EventConditionBase; [SI]
012D9048 0002 EventConditionFlag_Compare; [MI]
012D9054 0002 EventConditionFlag_Compare: EventConditionBase, EventFlagActionListener; [MI]
012D9024 0002 EventConditionEvent_IsBossKill: EventConditionBase; [SI]
012D9018 0002 EventConditionEvent_IsBossBattle: EventConditionBase; [SI]
012D900C 0002 EventConditionEvent_CompareTimer: EventConditionBase; [SI]
012D9000 0002 EventConditionEvent_CompareTaskState: EventConditionBase; [SI]
012D92F0 0002 EventConditionEvent_CompareStateTime: EventConditionBase; [SI]
012D903C 0002 EventConditionEvent_CompareRandValue: EventConditionBase; [SI]
012D9030 0002 EventConditionEvent_CompareBossHpRate: EventConditionBase; [SI]
012D8F58 0002 EventConditionChr_IsSearch: EventConditionBase; [SI]
012D9364 0002 EventConditionChr_IsPointInside: EventConditionBase; [SI]
012D8F94 0002 EventConditionChr_IsPlayerVowEnable: EventConditionBase; [SI]
012D8FB8 0002 EventConditionChr_IsPlayerUseTorch: EventConditionBase; [SI]
012D9370 0002 EventConditionChr_IsPlayerPointInside: EventConditionBase; [SI]
012D8F64 0002 EventConditionChr_IsPlayerPlayingMotion: EventConditionBase; [SI]
012D8F40 0002 EventConditionChr_IsPlayerHpDecrease: EventConditionBase; [SI]
012D8F70 0002 EventConditionChr_IsPlayerDamaged: EventConditionBase; [SI]
012D8F4C 0002 EventConditionChr_IsPartsDead: EventConditionBase; [SI]
012D8F04 0002 EventConditionChr_IsMaxRespawnCount: EventConditionBase; [SI]
012D8F10 0002 EventConditionChr_IsDeadOrRespawnOver: EventConditionBase; [SI]
012D8EF8 0002 EventConditionChr_IsDead: EventConditionBase; [SI]
012D8FF4 0002 EventConditionChr_IsActiveChr: EventConditionBase; [SI]
012D8FDC 0002 EventConditionChr_HasSpEffect: EventConditionBase; [SI]
012D8FE8 0002 EventConditionChr_HasPlayerSpEffect: EventConditionBase; [SI]
012D8FD0 0002 EventConditionChr_DoesPlayerEventAction: EventConditionBase; [SI]
012D8F88 0002 EventConditionChr_CompareStartUpState: EventConditionBase; [SI]
012D8FA0 0002 EventConditionChr_ComparePlayerVowLevel: EventConditionBase; [SI]
012D8FC4 0002 EventConditionChr_ComparePlayerHumanCondition: EventConditionBase; [SI]
012D8F34 0002 EventConditionChr_ComparePlayerHpValue: EventConditionBase; [SI]
012D8EEC 0002 EventConditionChr_ComparePlayerDistance: EventConditionBase; [SI]
012D8FAC 0002 EventConditionChr_ComparePlayerCriminalLevel: EventConditionBase; [SI]
012D9278 0002 EventConditionChr_CompareLogicEzStateFlag: EventConditionBase; [SI]
012D8F28 0002 EventConditionChr_CompareHpValue: EventConditionBase; [SI]
012D8F1C 0002 EventConditionChr_CompareHpRate: EventConditionBase; [SI]
012D8F7C 0002 EventConditionChr_CompareFallingTime: EventConditionBase; [SI]
012D937C 0002 EventConditionChr_CompareActiveChrNum: EventConditionBase; [SI]
012D8EE0 0002 EventConditionBase; [SI]
012BCF68 0002 EventClatteryItemDrop: EventFlagActionListener; [SI]
012B03AC 0015 EventCameraOperator: PerspectiveCameraOperator, CameraOperator; [SI]
012BCF10 0001 EventCameraManager; [SI]
012BCEE8 0001 EventBossBattleManager; [SI]
012BCED8 0001 EventBonfireManager: MapGimmickListCtrl<MapObjBonfireComponent>; [SI]
012D9580 0001 EventAreaValueCtrl; [SI]
012D9598 0001 EventAreaTimer; [SI]
EZSTATE:
0134DF8C 0017 EzStateResourceObject: FileResourceObject, ResourceObject; [SI]
01350E04 0002 EzStateData: DLUT::DLReferenceCountObject; [SI]
0134CEF4 0002 EzStateCtrl; [MI]
0134CF00 0005 EzStateCtrl: EzState::EzStateEventListener, EzState::EzStateEnvironment; [MI]
0130388C 0001 EzState::detail::EzStateRegisterSet; [SI]
01304380 0001 EzState::detail::EzStateManagerImpl; [SI]
0130384C 0013 EzState::detail::EzStateMachineImpl: EzState::EzStateMachine, EzState::EzStateEventListener; [SI]
01304214 0005 EzState::detail::EzStateExternalEventTemp: EzState::EzStateEvent; [SI]
01304348 0013 EzState::detail::EzStateCGMachine: EzState::EzStateMachine, EzState::EzStateEventListener; [SI]
013041A0 0002 EzState::EzStateValue::EzStateSharedString: DLUT::DLReferenceCountObject; [SI]
013038E0 0001 EzState::EzStateMessageQueue; [SI]
013038D8 0001 EzState::EzStateMessage; [SI]
01303884 0001 EzState::EzStateMachineDebugInterface; [SI]
013038A0 0013 EzState::EzStateMachine: EzState::EzStateEventListener; [SI]
01303894 0002 EzState::EzStateEventListener; [SI]
013041AC 0005 EzState::EzStateEvent; [SI]
013040E0 0004 EzState::EzStateEnvironmentQueryImpl: EzState::EzStateEnvironmentQuery; [SI]
01304388 0004 EzState::EzStateEnvironmentQuery; [SI]
0134CEE8 0002 EzState::EzStateEnvironment; [SI]
013063B0 0007 EzState23Loader::EzStateTransitionHostEvent: EzState23Loader::EzStateEventImpl, EzState23Loader::EzStateEvent; [SI]
01306438 0005 EzState23Loader::EzStateTransition; [SI]
0130581C 0008 EzState23Loader::EzStateSpawnChildEvent: EzState23Loader::EzStateInternalEvent, EzState23Loader::EzStateEventImpl, EzState23Loader::EzStateEvent; [SI]
0130555C 0008 EzState23Loader::EzStateRegisterSetEvent: EzState23Loader::EzStateInternalEvent, EzState23Loader::EzStateEventImpl, EzState23Loader::EzStateEvent; [SI]
013046E8 0005 EzState23Loader::EzStateProject; [SI]
013069C8 0005 EzState23Loader::EzStateMapState; [SI]
01305AD4 0005 EzState23Loader::EzStateMap; [SI]
013052B8 0008 EzState23Loader::EzStateKillChildEvent: EzState23Loader::EzStateInternalEvent, EzState23Loader::EzStateEventImpl, EzState23Loader::EzStateEvent; [SI]
01306708 0008 EzState23Loader::EzStateInternalEvent: EzState23Loader::EzStateEventImpl, EzState23Loader::EzStateEvent; [SI]
01304DF4 0007 EzState23Loader::EzStateExternalEventT<6>: EzState23Loader::EzStateEventImpl, EzState23Loader::EzStateEvent; [SI]
01304E54 0007 EzState23Loader::EzStateExternalEventT<30>: EzState23Loader::EzStateEventImpl, EzState23Loader::EzStateEvent; [SI]
01304E34 0007 EzState23Loader::EzStateExternalEventT<22>: EzState23Loader::EzStateEventImpl, EzState23Loader::EzStateEvent; [SI]
01304E14 0007 EzState23Loader::EzStateExternalEventT<14>: EzState23Loader::EzStateEventImpl, EzState23Loader::EzStateEvent; [SI]
01304E74 0007 EzState23Loader::EzStateExternalEvent: EzState23Loader::EzStateExternalEventT<6>, EzState23Loader::EzStateEventImpl, EzState23Loader::EzStateEvent; [SI]
01306084 0007 EzState23Loader::EzStateEventImpl: EzState23Loader::EzStateEvent; [SI]
01306A50 0001 EzState23Loader::EzStateEvent; [SI]
01305E10 0005 EzState23Loader::EzStateEvaluator; [SI]
01306C78 0005 EzState23Loader::EzStateCondition; [SI]
MAP:
012C05BC 0020 MapbhdMultiMountFileCap: BhdMultiMountFileCap, BhdFileCap, FileResourceObject, ResourceObject; [SI]
012D5A70 0002 MapWorldList: DLUT::DLReferenceCountObject; [SI]
012D77B4 0005 MapWindReactor; [SI]
012D7884 0001 MapWindManager; [SI]
012D7844 0001 MapWindCtrl; [SI]
012D7820 0006 MapWind: DLUT::DLReferenceCountObject; [SI]
012D5C44 0003 MapTimeActTrackSound: TimeActTrack; [SI]
012D5C34 0003 MapTimeActTrackSfx: TimeActTrack; [SI]
012D5C24 0003 MapTimeActTrackGimmick: TimeActTrack; [SI]
012C0C10 0003 MapTimeActTrackExtra: TimeActTrack; [SI]
012D5C14 0003 MapTimeActTrackDamage: TimeActTrack; [SI]
012D5C04 0003 MapTimeActTrackCamera: TimeActTrack; [SI]
012D5BF4 0003 MapTimeActTrackBullet: TimeActTrack; [SI]
012C0C00 0003 MapTimeActTrackAi: TimeActTrack; [SI]
012D5BDC 0005 MapTimeActEventHandlerList: TimeActEventHandler; [SI]
012D5BC4 0005 MapTimeActEventHandler; [SI]
012C0BF8 0001 MapTextureResolutionManager; [SI]
012D7350 0001 MapTextureResolutionCtrl: DLUT::DLNonCopyable; [SI]
012D7334 0004 MapTextureManager: MdlTextureFactory; [SI]
012D7280 0007 MapTexture: MdlTexture, DLNonAtomicReferenceCountObject; [SI]
012D7804 0006 MapTargetDirectionalWind: MapWind, DLUT::DLReferenceCountObject; [SI]
012D7120 0007 MapTargetComponent: MapEntityComponent, GameEntityComponent; [SI]
012C0BEC 0002 MapStateActPacketReceiver: NetPacketReceiver; [SI]
012C0BB8 0008 MapStateActManager: StateActEventListener; [SI]
012C0B48 0007 MapStateActLocation: EventPointChrInsideCheckListener, PXPhantomOverlapListener; [SI]
012D5BAC 0005 MapSoundTimeActEventHandler: MapTimeActEventHandler; [SI]
012C0914 0005 MapSoundSlotCtrl: AppSoundSlotCtrl; [SI]
012D71DC 0001 MapSoundCtrl: DLUT::DLNonCopyable; [SI]
012D7178 0003 MapSoundComponent; [MI]
012D7188 0007 MapSoundComponent: MapEntityComponent, GameEntityComponent, MapBackreadEventListener; [MI]
012BF690 0001 MapSnapDataManager; [SI]
012D4B10 0011 MapSfxSlotCtrl: SfxSlotCtrl; [SI]
012D6768 0005 MapSfxSlotComponent; [MI]
012D6780 0003 MapSfxSlotComponent: MapTimeActEventHandler; [MI]
012D6790 0007 MapSfxSlotComponent: MapEntityComponent, GameEntityComponent, MapBackreadEventListener, MapTimeActEventHandler; [MI]
012D4AC8 0001 MapRoute; [SI]
012D5ADC 0003 MapRegionCubeEnvAttribute: MapRegionAttribute, DLUT::DLReferenceCountObject; [SI]
012D5AC0 0003 MapRegionCubeEnv: MapRegionBase, DLUT::DLReferenceCountObject; [SI]
012D5AB0 0003 MapRegionBase: DLUT::DLReferenceCountObject; [SI]
012D5AA4 0002 MapRegionAttribute: DLUT::DLReferenceCountObject; [SI]
012D61A0 0007 MapProxyComponent<MapObjPhysicsComponent>: MapEntityComponent, GameEntityComponent; [SI]
012D6828 0007 MapProxyComponent<MapModelComponent>: MapEntityComponent, GameEntityComponent; [SI]
012D6A70 0007 MapProxyComponent<MapClothComponent>: MapEntityComponent, GameEntityComponent; [SI]
012D6F5C 0007 MapProxyComponent<MapActionComponent>: MapEntityComponent, GameEntityComponent; [SI]
012D5C9C 0018 MapPrefabPartsBackreadComponent: MapObjBackreadComponent, MapBackreadComponent, MapEntityComponent, GameEntityComponent; [SI]
012D6CAC 0007 MapPoseModifierComponent: MapEntityComponent, GameEntityComponent; [SI]
012D77CC 0006 MapPointWind: MapWind, DLUT::DLReferenceCountObject; [SI]
012D4AA8 0001 MapPoint; [SI]
012C0C20 0001 MapPlayerLocationChecker; [SI]
012BF6A0 0002 MapPhysicsManager: PXWorldEventListener; [SI]
012D69CC 0003 MapPhysicsComponent; [MI]
012D69DC 0009 MapPhysicsComponent: MapEntityComponent, GameEntityComponent, MapBackreadEventListener; [MI]
012BF25C 0011 MapPartsNaviGraphLocationComponent: NaviGraphLocationComponent, GameEntityComponent; [SI]
012D65E4 0018 MapPartsBackreadComponent: MapBackreadComponent, MapEntityComponent, GameEntityComponent; [SI]
012D44FC 0001 MapParamContainer; [SI]
012D53FC 0017 MapObjbndResourceObject: FileResourceObject, ResourceObject; [SI]
012BEAD8 0003 MapObjWhiteDoorComponent; [MI]
012BEAE8 0010 MapObjWhiteDoorComponent: MapObjGimmickComponent, MapEntityComponent, GameEntityComponent, MapBackreadEventListener; [MI]
012BE9E0 0003 MapObjTreasureBoxComponent; [MI]
012BE9F0 0011 MapObjTreasureBoxComponent: MapObjGimmickComponent, MapEntityComponent, GameEntityComponent, MapBackreadEventListener; [MI]
012D64C4 0001 MapObjTouchCtrl: DLUT::DLNonCopyable; [SI]
012BE8BC 0003 MapObjTorchComponent; [MI]
012BE8CC 0010 MapObjTorchComponent: MapObjGimmickComponent, MapEntityComponent, GameEntityComponent, MapBackreadEventListener; [MI]
012D5C5C 0003 MapObjSvrEventTreasureBoxComponent; [MI]
012D5C6C 0011 MapObjSvrEventTreasureBoxComponent: MapObjTreasureBoxComponent, MapObjGimmickComponent, MapEntityComponent, GameEntityComponent, MapBackreadEventListener; [MI]
012BED48 0009 MapObjSupportNotifyComponent: GameEntitySupportNotifyInterface, GameEntityComponent; [SI]
012D63BC 0001 MapObjStatus; [SI]
012BE760 0003 MapObjStatueComponent; [MI]
012BE770 0010 MapObjStatueComponent: MapObjGimmickComponent, MapEntityComponent, GameEntityComponent, MapBackreadEventListener; [MI]
012BF09C 0003 MapObjStateActComponent; [MI]
012BF044 0008 MapObjStateActComponent: MapEntityComponent, GameEntityComponent, IStateActEntity, MapBackreadEventListener; [MI]
012BF0AC 0039 MapObjStateActComponent: MapBackreadEventListener; [MI]
012BE6AC 0003 MapObjRopeComponent; [MI]
012BE6BC 0010 MapObjRopeComponent: MapObjGimmickComponent, MapEntityComponent, GameEntityComponent, MapBackreadEventListener; [MI]
012BEC04 0009 MapObjRigidBodyContactListener: PXModelRigidBodyContactListener, hkpContactListener; [SI]
012D6438 0003 MapObjReactionComponent; [MI]
012D6448 0003 MapObjReactionComponent: MapActionHandle; [MI]
012D6458 0009 MapObjReactionComponent: MapActionComponent, MapEntityComponent, GameEntityComponent, MapBackreadEventListener, MapActionHandle; [MI]
012D63C4 0001 MapObjReactionCommon: DLUT::DLNonCopyable; [SI]
012BEE00 0003 MapObjPrefabStateActComponent; [MI]
012BEEB4 0008 MapObjPrefabStateActComponent: MapObjStateActComponent, MapEntityComponent, GameEntityComponent, IStateActEntity, MapBackreadEventListener; [MI]
012BEE14 0039 MapObjPrefabStateActComponent: MapBackreadEventListener; [MI]
012BEC84 0010 MapObjPrefabBreakCtrl: AbstractMapObjBreakCtrl, DLUT::DLNonCopyable; [SI]
012D61F4 0003 MapObjPhysicsComponent; [MI]
012D6204 0009 MapObjPhysicsComponent: MapPhysicsComponent, MapEntityComponent, GameEntityComponent, MapBackreadEventListener; [MI]
012BEC58 0010 MapObjNormalBreakCtrl: AbstractMapObjBreakCtrl, DLUT::DLNonCopyable; [SI]
012D60E8 0002 MapObjNaviGraphLocationComponent; [MI]
012D60F4 0011 MapObjNaviGraphLocationComponent: NaviGraphLocationComponent, GameEntityComponent, MapObjChangeBehaviorListener; [MI]
012D63B4 0001 MapObjMoveCtrl: DLUT::DLNonCopyable; [SI]
012BE600 0003 MapObjLadderComponent; [MI]
012BE610 0010 MapObjLadderComponent: MapObjGimmickComponent, MapEntityComponent, GameEntityComponent, MapBackreadEventListener; [MI]
012BEBD4 0003 MapObjItemDropComponent; [MI]
012BEBE4 0007 MapObjItemDropComponent: MapEntityComponent, GameEntityComponent, MapBackreadEventListener; [MI]
012D658C 0001 MapObjGimmickCtrl: DLUT::DLNonCopyable; [SI]
012D651C 0003 MapObjGimmickComponent; [MI]
012D652C 0010 MapObjGimmickComponent: MapEntityComponent, GameEntityComponent, MapBackreadEventListener; [MI]
012C0684 0007 MapObjFlverResourceFactory: Flver::FlverResourceFactory; [SI]
012D6000 0005 MapObjExtraComponent; [MI]
012D6018 0003 MapObjExtraComponent: MapTimeActEventHandler; [MI]
012D6028 0008 MapObjExtraComponent: MapEntityComponent, GameEntityComponent, MapBackreadEventListener, MapTimeActEventHandler; [MI]
012D5F58 0003 MapObjEventTriggerComponent; [MI]
012D5F68 0007 MapObjEventTriggerComponent: MapEntityComponent, GameEntityComponent, MapBackreadEventListener; [MI]
012D639C 0001 MapObjEntityCollideReactionCtrl: DLUT::DLNonCopyable; [SI]
012BE580 0003 MapObjDoorComponent; [MI]
012BE590 0010 MapObjDoorComponent: MapObjGimmickComponent, MapEntityComponent, GameEntityComponent, MapBackreadEventListener; [MI]
012D6394 0001 MapObjDmgCollideReactionCtrl: DLUT::DLNonCopyable; [SI]
012D64CC 0001 MapObjDamageGimmickCtrl: DLUT::DLNonCopyable; [SI]
012D633C 0008 MapObjDamageComponent: GameEntityDamageInterface, GameEntityComponent; [SI]
012D63CC 0008 MapObjCollideNotifyComponent: GameEntityCollideNotifyInterface, GameEntityComponent; [SI]
012D5EB0 0007 MapObjChrOwnershipComponent: MapEntityComponent, GameEntityComponent; [SI]
012D622C 0001 MapObjChrCollideReactionCtrl: DLUT::DLNonCopyable; [SI]
012BDF98 0002 MapObjChangeBehaviorListener; [SI]
012BE3CC 0003 MapObjBonfireComponent; [MI]
012BE3DC 0010 MapObjBonfireComponent: MapObjGimmickComponent, MapEntityComponent, GameEntityComponent, MapBackreadEventListener; [MI]
012D5DDC 0018 MapObjBackreadComponent: MapBackreadComponent, MapEntityComponent, GameEntityComponent; [SI]
012D6EBC 0007 MapNvmInfoComponent: MapEntityComponent, GameEntityComponent; [SI]
012D6904 0006 MapModelWindReactor: MapWindReactor; [SI]
012BE37C 0001 MapModelRumbleCtrl: DLUT::DLNonCopyable; [SI]
012D68E8 0001 MapModelPointCloudReceiveCtrl; [SI]
012D687C 0003 MapModelComponent; [MI]
012D688C 0008 MapModelComponent: MapEntityComponent, GameEntityComponent, MapBackreadEventListener; [MI]
012D6BF0 0003 MapMdlAnimationComponent; [MI]
012D6C00 0009 MapMdlAnimationComponent: MapPoseModifierComponent, MapEntityComponent, GameEntityComponent, MapBackreadEventListener; [MI]
012D4AEC 0001 MapLightCtrl; [SI]
012D4AD0 0001 MapLayer; [SI]
012BF634 0004 MapItemPackSystemListener: MapItemPackListener; [SI]
012BF648 0002 MapItemPackNetworkCtrl: NetPacketReceiver; [SI]
012BD2B4 0004 MapItemPackEventWindowListener: MapItemPackListener; [SI]
012BF5C4 0009 MapItemPackEntity: GameEntity, GameObject; [SI]
012D4B40 0001 MapInitialPoseModifierIf; [SI]
012D44DC 0007 MapHitWaterContactListener: PXThroughContactListener, hkpContactListener; [SI]
012D6E14 0003 MapHitPhysicsComponent; [MI]
012D6E24 0009 MapHitPhysicsComponent: MapPhysicsComponent, MapEntityComponent, GameEntityComponent, MapBackreadEventListener; [MI]
012BE328 0007 MapHitMaterialSlotComponent: MapEntityComponent, GameEntityComponent; [SI]
012D44BC 0007 MapHitEnemyWallContactListener: PXThroughContactListener, hkpContactListener; [SI]
012BE264 0008 MapHitDamageComponent: GameEntityDamageInterface, GameEntityComponent; [SI]
012BE178 0002 MapHitConnectComponent::_ConnectMap: EventFlagActionListener; [SI]
012BE200 0007 MapHitConnectComponent: MapEntityComponent, GameEntityComponent; [SI]
012BE124 0007 MapHitBrightnessComponent: MapEntityComponent, GameEntityComponent; [SI]
012D6D4C 0018 MapHitBackreadComponent: MapBackreadComponent, MapEntityComponent, GameEntityComponent; [SI]
012D5B94 0005 MapGimmickTimeActEventHandler: MapTimeActEventHandler; [SI]
012D4B48 0001 MapGimmickListCtrl<MapObjWhiteDoorComponent>; [SI]
012D4B50 0001 MapGimmickListCtrl<MapObjSvrEventTreasureBoxComponent>; [SI]
012BF564 0001 MapGimmickListCtrl<MapObjStatueComponent>; [SI]
012BCED0 0001 MapGimmickListCtrl<MapObjBonfireComponent>; [SI]
012C03A0 0004 MapGeneralWindLocation: MapGeneralLocation; [SI]
012C02DC 0004 MapGeneralStatueLocation: MapGeneralLocation; [SI]
012C0224 0007 MapGeneralSlideLocation: PXPhantomOverlapListener; [MI]
012C0244 0004 MapGeneralSlideLocation: MapGeneralPhantomLocation, MapGeneralLocation, EventPointChrInsideCheckListener, PXPhantomOverlapListener; [MI]
012C0174 0007 MapGeneralPhantomLocation: PXPhantomOverlapListener; [MI]
012C0194 0004 MapGeneralPhantomLocation: MapGeneralLocation, EventPointChrInsideCheckListener, PXPhantomOverlapListener; [MI]
012C0110 0004 MapGeneralNavimeshLocation: MapGeneralLocation; [SI]
012C0020 0007 MapGeneralLogicNoEntryLocation: PXPhantomOverlapListener; [MI]
012C0040 0004 MapGeneralLogicNoEntryLocation: MapGeneralPhantomLocation, MapGeneralLocation, EventPointChrInsideCheckListener, PXPhantomOverlapListener; [MI]
012BFF58 0007 MapGeneralLogicLocation: PXPhantomOverlapListener; [MI]
012BFF78 0004 MapGeneralLogicLocation: MapGeneralPhantomLocation, MapGeneralLocation, EventPointChrInsideCheckListener, PXPhantomOverlapListener; [MI]
012BFEA8 0007 MapGeneralLockOffLocation: PXPhantomOverlapListener; [MI]
012BFEC8 0004 MapGeneralLockOffLocation: MapGeneralPhantomLocation, MapGeneralLocation, EventPointChrInsideCheckListener, PXPhantomOverlapListener; [MI]
012D4A94 0004 MapGeneralLocation; [SI]
012BFE10 0004 MapGeneralIntrudeLocation: MapGeneralLocation; [SI]
012BFD58 0007 MapGeneralGeneratorLocation: PXPhantomOverlapListener; [MI]
012BFD78 0004 MapGeneralGeneratorLocation: MapGeneralPhantomLocation, MapGeneralLocation, EventPointChrInsideCheckListener, PXPhantomOverlapListener; [MI]
012BFC9C 0007 MapGeneralEventTriggerLocation: PXPhantomOverlapListener; [MI]
012BFCBC 0004 MapGeneralEventTriggerLocation: MapGeneralPhantomLocation, MapGeneralLocation, EventPointChrInsideCheckListener, PXPhantomOverlapListener; [MI]
012BFBD4 0007 MapGeneralEventJudgmentLocation: PXPhantomOverlapListener; [MI]
012BFBF4 0004 MapGeneralEventJudgmentLocation: MapGeneralPhantomLocation, MapGeneralLocation, EventPointChrInsideCheckListener, PXPhantomOverlapListener; [MI]
012BFB0C 0007 MapGeneralDamageLocation: PXPhantomOverlapListener; [MI]
012BFB2C 0004 MapGeneralDamageLocation: MapGeneralPhantomLocation, MapGeneralLocation, EventPointChrInsideCheckListener, PXPhantomOverlapListener; [MI]
012BFAA8 0004 MapGeneralBulletLocation: MapGeneralLocation; [SI]
012BF9BC 0007 MapGeneralBrightLocation: PXPhantomOverlapListener; [MI]
012BF9DC 0004 MapGeneralBrightLocation: MapGeneralPhantomLocation, MapGeneralLocation, EventPointChrInsideCheckListener, PXPhantomOverlapListener; [MI]
012BF924 0004 MapGeneralBloodMsgLocation: MapGeneralLocation; [SI]
012BF8BC 0004 MapGeneralBloodMsgDisableLocation: MapGeneralLocation; [SI]
012BF7B8 0007 MapGeneralBackreadSafetyLocation: PXPhantomOverlapListener; [MI]
012BF7D8 0004 MapGeneralBackreadSafetyLocation: MapGeneralPhantomLocation, MapGeneralLocation, EventPointChrInsideCheckListener, PXPhantomOverlapListener; [MI]
012D947C 0004 MapGeneralAdviceBloodMsgLocation: MapGeneralBloodMsgLocation, MapGeneralLocation; [SI]
012D4474 0001 MapGameBrightManager; [SI]
012D55D0 0001 MapFlverModelCtrl; [MI]
012D55D8 0004 MapFlverModelCtrl: AppFlverModelCtrl, ModelCtrl, GXDrawItem; [MI]
012D78C0 0003 MapFilterManager: AppSystemMessageListener; [SI]
012D4B04 0001 MapEnvCtrl; [SI]
012D5CE8 0001 MapEntityFactory: PrefabPartsEntityFactory; [SI]
012D5D40 0007 MapEntityComponent: GameEntityComponent; [SI]
012D43C8 0010 MapEntity: GameEntity, GameObject; [SI]
012D55C8 0001 MapDmyPolyAnimPlayer; [SI]
012D721C 0003 MapDemoComponent; [MI]
012D722C 0007 MapDemoComponent: MapEntityComponent, GameEntityComponent, MapBackreadEventListener; [MI]
012D5B70 0007 MapCubeEnvUpdateComponent: GameEntityComponent; [SI]
012BF354 0001 MapCubeEnvLightMapBank; [SI]
012BE0B8 0006 MapClothWindReactor: MapWindReactor; [SI]
012D6AD4 0003 MapClothComponent; [MI]
012D6AE4 0007 MapClothComponent: MapEntityComponent, GameEntityComponent, MapBackreadEventListener; [MI]
012BDFC8 0001 MapChameleonManager: DLUT::DLNonCopyable; [SI]
012BDFC0 0001 MapChameleonAreaData; [SI]
012BDFB8 0001 MapChameleonActiveObjCtrl: DLUT::DLNonCopyable; [SI]
012BE070 0005 MapBulletSlotComponent; [MI]
012BE088 0003 MapBulletSlotComponent: MapTimeActEventHandler; [MI]
012BE098 0007 MapBulletSlotComponent: MapEntityComponent, GameEntityComponent, MapBackreadEventListener, MapTimeActEventHandler; [MI]
012BDFDC 0001 MapBulletCtrl: DLUT::DLNonCopyable; [SI]
012BDFE4 0003 MapBackreadEventListener; [SI]
012D66AC 0018 MapBackreadComponent: MapEntityComponent, GameEntityComponent; [SI]
012D783C 0001 MapAreaWindCtrl; [SI]
012D4B64 0001 MapAreaWhiteDoorCtrl: MapGimmickListCtrl<MapObjWhiteDoorComponent>; [SI]
012D4B6C 0001 MapAreaSvrEventTreasureBoxCtrl: MapGimmickListCtrl<MapObjSvrEventTreasureBoxComponent>; [SI]
012BF56C 0001 MapAreaStatueCtrl: MapGimmickListCtrl<MapObjStatueComponent>; [SI]
012D73E4 0001 MapAreaPointCloudCtrl; [SI]
012BF698 0001 MapAreaMultiPlayZoneCtrl; [SI]
012D4AD8 0001 MapAreaLightCtrl; [SI]
012D4B58 0002 MapAreaInfo: DLUT::DLNonCopyable; [SI]
012D78A4 0001 MapAreaFilterCtrl; [SI]
012BDFA4 0002 MapAreaDebriCtrl: MapObjChangeBehaviorListener; [SI]
012D4B94 0001 MapAreaCtrlOwner; [MI]
012D4B9C 0005 MapAreaCtrlOwner: MapAreaCtrl, MapAreaInfo, DLUT::DLNonCopyable, MapInitialPoseModifierIf; [MI]
012D4B74 0001 MapAreaCtrl; [MI]
012D4B7C 0005 MapAreaCtrl: MapAreaInfo, DLUT::DLNonCopyable, MapInitialPoseModifierIf; [MI]
012D77AC 0001 MapAreaBreakobjCtrl: DLUT::DLNonCopyable; [SI]
012D704C 0003 MapActionOwnershipComponent; [MI]
012D705C 0007 MapActionOwnershipComponent: MapEntityComponent, GameEntityComponent, MapBackreadEventListener; [MI]
012D6F10 0003 MapActionHandle; [SI]
012D6FB0 0003 MapActionComponent; [MI]
012D6FD0 0009 MapActionComponent: MapEntityComponent, GameEntityComponent, MapBackreadEventListener, MapActionHandle; [MI]
012D6FC0 0003 MapActionComponent: MapActionHandle; [MI]
Vftable Method count Class & structure info
------- ------------ ----------------------
0135F4F8 0001 type_info; [SI]
0139BD28 0003 struct hkpStorageMeshShape::SubpartStorage: hkReferencedObject, hkBaseObject; [SI]
0139BA84 0003 struct hkpStorageExtendedMeshShape::ShapeSubpartStorage: hkReferencedObject, hkBaseObject; [SI]
0139BB0C 0003 struct hkpStorageExtendedMeshShape::MeshSubpartStorage: hkReferencedObject, hkBaseObject; [SI]
0139F6D0 0002 struct hkpStaticCompoundShape_Internals::AabbCastQuery::AabbCastCollectorWrapper: struct hkpAabbCastCollector; [SI]
013A1798 0003 struct hkpSerializedAgentNnEntry: hkReferencedObject, hkBaseObject; [SI]
013A3CCC 0003 struct hkpDisplayBindingData::RigidBody: hkReferencedObject, hkBaseObject; [SI]
013A3CDC 0003 struct hkpDisplayBindingData::PhysicsSystem: hkReferencedObject, hkBaseObject; [SI]
013A3CEC 0003 struct hkpDisplayBindingData: hkReferencedObject, hkBaseObject; [SI]
013573B8 0003 struct hkpCharacterRigidBodyCinfo: hkpCharacterControllerCinfo, hkReferencedObject, hkBaseObject; [SI]
0139BF24 0002 struct hkpBvTreeAgent::LinearCastAabbCastCollector: struct hkpAabbCastCollector; [SI]
013A07C4 0003 struct hkpBvCompressedMeshShapeGc: struct hkcdStaticMeshTree<hkcdStaticMeshTreeCommonConfig<unsigned int,unsigned __int64,11,21>,hkpBvCompressedMeshShapeTreeDataRun>::CustomGeometryConverter; [SI]
01397178 0003 struct hkpBreakableMultiMaterial::InverseMapping: hkReferencedObject, hkBaseObject; [SI]
0139BF18 0002 struct hkpAabbCastCollector; [SI]
013DC18C 0004 struct hkgpMesh::TriangleShape: hkgpMesh::IConvexOverlap::IConvexShape; [SI]
013DC1A0 0004 struct hkgpMesh::ExternShape: hkgpMesh::IConvexOverlap::IConvexShape; [SI]
013DC180 0002 struct hkgpJobQueue::IJob; [SI]
013DC1D0 0002 struct hkgpJobQueue::Box<hkgpMeshInternals::ConcaveEdgeJob::Handle>: struct hkgpJobQueue::IJob; [SI]
013DC474 0005 struct hkgpIndexedMeshInternals::DefaultEdgeCollapseInterface: struct hkgpIndexedMesh::IEdgeCollapse, struct hkgpIndexedMesh::ITriangleRemoval, struct hkgpIndexedMesh::IVertexRemoval; [SI]
013DC468 0002 struct hkgpIndexedMesh::IVertexRemoval; [SI]
013A07B4 0003 struct hkcdStaticMeshTree<hkcdStaticMeshTreeCommonConfig<unsigned int,unsigned __int64,11,21>,hkpBvCompressedMeshShapeTreeDataRun>::CustomGeometryConverter; [SI]
013A0034 0003 struct hkcdStaticMeshTree<hkcdStaticMeshTreeCommonConfig<unsigned int,unsigned __int64,11,21>,hkpBvCompressedMeshShapeTreeDataRun>::BuildGeometryProvider<hkpBvCompressedMeshShape_Internals::GeometryProvider>: struct hkGeometryUtils::IVertices; [SI]
013BC3AC 0002 struct hkcdGsk_Vector4ShapeInterface: hkcdGskBase::ShapeInterface; [SI]
013BC3A0 0002 struct hkcdGskBase::RayCastShapeInterface<hkcdGsk_Vector4Shape>: hkcdGskBase::ShapeInterface, struct hkcdGsk::Cache; [MI]
01389360 0003 struct hkMonitorStreamColorTable: hkReferencedObject, hkBaseObject; [SI]
0138C7EC 0009 struct hkMemoryAllocator::ExtendedInterface; [SI]
0138C8A0 0009 struct hkLargeBlockAllocator; [MI]
0138C8F8 0011 struct hkLargeBlockAllocator::FixedMemoryBlockServer: hkMemoryAllocator; [SI]
0139FF14 0003 struct hkGeometryUtils::IVertices; [SI]
013DBCB8 0002 struct hkGeometryProcessing::IFunction<hkVector4,float>; [SI]
013DBCC4 0002 struct hkGeometryProcessing::ConstFunction<hkGeometryProcessing::IFunction<hkVector4,float>>: struct hkGeometryProcessing::IFunction<hkVector4,float>; [SI]
0138C844 0009 struct hkFreeListAllocator; [MI]
013B7164 0003 struct hclClothContainer: hkReferencedObject, hkBaseObject; [SI]
0139F6C4 0002 struct `anonymous namespace'::hkpStaticCompoundShape_RayHitCollectorWrapper: hkpRayHitCollector; [SI]
0139CEF8 0002 struct `anonymous namespace'::RotateNormalHitCollector: hkpRayHitCollector; [SI]
0139CEEC 0002 struct `anonymous namespace'::NearestHitCollector: hkpRayHitCollector; [SI]
01386EC8 0005 struct Movie::CTextureRenderer: struct IUnknown; [MI]
01386EE0 0009 struct Movie::CTextureRenderer: struct IUnknown, struct IQualityControl, struct IUnknown; [MI]
01386F08 0005 struct Movie::CTextureRenderer: struct IUnknown, struct IQualProp, struct IUnknown, struct IQualityControl, struct IUnknown; [MI]
01386F24 0015 struct Movie::CTextureRenderer: struct IMediaFilter, struct IPersist, struct IUnknown, struct IAMovieSetup, struct IUnknown, struct IQualProp, struct IUnknown, struct IQualityControl, struct IUnknown; [MI]
01335474 0008 struct LOCALNAMESPACE::hkNativeResource: hkResource, hkReferencedObject, hkBaseObject; [SI]
013D92D4 0001 struct FSProtobufExtension::ToStringSettings; [SI]
013D92DC 0001 struct FSProtobufExtension::ToStringGlobalSettings: struct FSProtobufExtension::ToStringSettings; [SI]
012C4C88 0002 struct DLUTD::DLFunctorImplBase<void,Frpg2ClientLib::Frpg2MemoryObjectModel>: Frpg2ClientLib::Frpg2MemoryObjectModel; [SI]
01323A70 0001 struct DLNRD::TaskManager::TaskInfo; [SI]
0132751C 0001 struct DLNRD::SessionMemberLight::SessionMemberTaskInfo: struct DLNRD::TaskManager::TaskInfo; [SI]
01323AB0 0001 struct DLNRD::SessionLight::SessionTaskInfo: struct DLNRD::TaskManager::TaskInfo; [SI]
01387164 0009 struct CRendererInputPin: struct IUnknown; [MI]
013871A4 0018 struct CRendererInputPin: struct IUnknown, struct IQualityControl, struct IUnknown, struct IMemInputPin, struct IUnknown; [MI]
0138718C 0005 struct CRendererInputPin: struct IUnknown, struct IMemInputPin, struct IUnknown; [MI]
01387234 0005 struct CBaseVideoRenderer: struct IUnknown; [MI]
0138724C 0009 struct CBaseVideoRenderer: struct IUnknown, struct IQualityControl, struct IUnknown; [MI]
01387274 0005 struct CBaseVideoRenderer: struct IUnknown, struct IQualProp, struct IUnknown, struct IQualityControl, struct IUnknown; [MI]
0138728C 0015 struct CBaseVideoRenderer: struct IMediaFilter, struct IPersist, struct IUnknown, struct IAMovieSetup, struct IUnknown, struct IQualProp, struct IUnknown, struct IQualityControl, struct IUnknown; [MI]
01387054 0005 struct CBaseRenderer: struct IUnknown; [MI]
0138706C 0015 struct CBaseRenderer: struct IMediaFilter, struct IPersist, struct IUnknown, struct IAMovieSetup, struct IUnknown; [MI]
012EBBC0 0002 std::system_error: std::runtime_error, std::exception; [SI]
012EBB14 0002 std::runtime_error: std::exception; [SI]
0135F288 0002 std::out_of_range: std::logic_error, std::exception; [SI]
012F0844 0006 std::numpunct<char>: std::locale::facet; [SI]
012F081C 0009 std::num_put<char,std::ostreambuf_iterator<char,std::char_traits<char>>>: std::locale::facet; [SI]
0135F270 0002 std::logic_error: std::exception; [SI]
012EBB20 0001 std::locale::facet; [SI]
0135F438 0001 std::locale::_Locimp: std::locale::facet; [SI]
0135F27C 0002 std::length_error: std::logic_error, std::exception; [SI]
012EBBCC 0002 std::ios_base::failure: std::system_error, std::runtime_error, std::exception; [SI]
0135F294 0001 std::ios_base: std::_Iosb<int>; [SI]
0135F520 0002 std::exception; [SI]
0135F444 0006 std::error_category; [SI]
012EBB88 0013 std::ctype<wchar_t>: struct std::ctype_base, std::locale::facet; [SI]
012EBB60 0009 std::ctype<char>: struct std::ctype_base, std::locale::facet; [SI]
0135F3EC 0008 std::codecvt<wchar_t,char,int>: std::codecvt_base, std::locale::facet; [SI]
0135F32C 0008 std::codecvt<char,char,int>: std::codecvt_base, std::locale::facet; [SI]
0135F36C 0007 std::basic_streambuf<wchar_t,std::char_traits<wchar_t>>; [SI]
0135F2AC 0007 std::basic_streambuf<char,std::char_traits<char>>; [SI]
0135F358 0001 std::basic_ostream<wchar_t,std::char_traits<wchar_t>>; [SI]
0135F29C 0001 std::basic_ostream<char,std::char_traits<char>>; [SI]
0135F428 0001 std::basic_istream<wchar_t,std::char_traits<wchar_t>>: std::ios_base, std::_Iosb<int>; [SI]
0135F418 0001 std::basic_istream<char,std::char_traits<char>>: std::ios_base, std::_Iosb<int>; [SI]
0135F360 0001 std::basic_ios<wchar_t,std::char_traits<wchar_t>>: std::ios_base, std::_Iosb<int>; [SI]
0135F2A4 0001 std::basic_ios<char,std::char_traits<char>>: std::ios_base, std::_Iosb<int>; [SI]
0135F3AC 0006 std::basic_filebuf<wchar_t,std::char_traits<wchar_t>>: std::basic_streambuf<wchar_t,std::char_traits<wchar_t>>; [SI]
0135F2EC 0006 std::basic_filebuf<char,std::char_traits<char>>: std::basic_streambuf<char,std::char_traits<char>>; [SI]
0135F54C 0002 std::bad_typeid: std::exception; [SI]
01362738 0002 std::bad_exception: std::exception; [SI]
0135F540 0002 std::bad_cast: std::exception; [SI]
012B2550 0002 std::bad_alloc: std::exception; [SI]
0135F558 0002 std::__non_rtti_object: std::bad_typeid, std::exception; [SI]
012F591C 0003 squish::SingleColourFit: squish::ColourFit; [SI]
012F290C 0003 squish::RangeFit: squish::ColourFit; [SI]
012ED408 0003 squish::ColourFit; [SI]
012F28F0 0003 squish::ClusterFit: squish::ColourFit; [SI]
0130CB78 0009 ns_MtlDataBin::CMTDValueU8Chunk: FSLibBin::CChunkExt, FSLibBin::CChunk; [SI]
0130CD10 0009 ns_MtlDataBin::CMTDValueS32Chunk: FSLibBin::CChunkExt, FSLibBin::CChunk; [SI]
0130CEA8 0009 ns_MtlDataBin::CMTDValueF32Chunk: FSLibBin::CChunkExt, FSLibBin::CChunk; [SI]
0130D618 0009 ns_MtlDataBin::CMTDTexmapChunk: FSLibBin::CChunkExt, FSLibBin::CChunk; [SI]
0130D0F8 0009 ns_MtlDataBin::CMTDRootChunk: FSLibBin::CChunkExt, FSLibBin::CChunk; [SI]
0130D3D0 0009 ns_MtlDataBin::CMTDParamChunk: FSLibBin::CChunkExt, FSLibBin::CChunk; [SI]
0130D68C 0009 ns_MtlDataBin::CMTDMaterialChunk: FSLibBin::CChunkExt, FSLibBin::CChunk; [SI]
0130D8A0 0009 ns_MtlDataBin::CMTDHeaderChunk: FSLibBin::CChunkExt, FSLibBin::CChunk; [SI]
0130D51C 0009 ns_MtlDataBin::CMTDDataSetChunk: FSLibBin::CChunkExt, FSLibBin::CChunk; [SI]
0138F304 0003 hkxVertexVectorDataChannel: hkReferencedObject, hkBaseObject; [SI]
0138F378 0003 hkxVertexSelectionChannel: hkReferencedObject, hkBaseObject; [SI]
0138F3E8 0003 hkxVertexIntDataChannel: hkReferencedObject, hkBaseObject; [SI]
0138F494 0003 hkxVertexFloatDataChannel: hkReferencedObject, hkBaseObject; [SI]
01390424 0003 hkxVertexBuffer: hkReferencedObject, hkBaseObject; [SI]
0138E524 0003 hkxVertexAnimation: hkReferencedObject, hkBaseObject; [SI]
0138F508 0003 hkxTriangleSelectionChannel: hkReferencedObject, hkBaseObject; [SI]
0138F5D4 0003 hkxTextureInplace: hkReferencedObject, hkBaseObject; [SI]
0138F664 0003 hkxTextureFile: hkReferencedObject, hkBaseObject; [SI]
0138E694 0003 hkxSpline: hkReferencedObject, hkBaseObject; [SI]
0138F6D4 0003 hkxSparselyAnimatedString: hkReferencedObject, hkBaseObject; [SI]
0138F0F4 0003 hkxSparselyAnimatedInt: hkReferencedObject, hkBaseObject; [SI]
0138F104 0003 hkxSparselyAnimatedEnum: hkxSparselyAnimatedInt, hkReferencedObject, hkBaseObject; [SI]
0138F7BC 0003 hkxSparselyAnimatedBool: hkReferencedObject, hkBaseObject; [SI]
0138F88C 0003 hkxSkinBinding: hkReferencedObject, hkBaseObject; [SI]
0138DFD8 0003 hkxScene: hkReferencedObject, hkBaseObject; [SI]
0138F8FC 0003 hkxNodeSelectionSet: hkxAttributeHolder, hkReferencedObject, hkBaseObject; [SI]
0138E854 0003 hkxNode: hkxAttributeHolder, hkReferencedObject, hkBaseObject; [SI]
0138F9F4 0003 hkxMeshSection: hkReferencedObject, hkBaseObject; [SI]
0138DCF0 0003 hkxMesh::UserChannelInfo: hkxAttributeHolder, hkReferencedObject, hkBaseObject; [SI]
01390414 0003 hkxMesh: hkReferencedObject, hkBaseObject; [SI]
013906DC 0003 hkxMaterialShaderSet: hkReferencedObject, hkBaseObject; [SI]
0138FB6C 0003 hkxMaterialShader: hkReferencedObject, hkBaseObject; [SI]
0138FCA0 0003 hkxMaterialEffect: hkReferencedObject, hkBaseObject; [SI]
0138EF0C 0003 hkxMaterial: hkxAttributeHolder, hkReferencedObject, hkBaseObject; [SI]
0138FD3C 0003 hkxLight: hkReferencedObject, hkBaseObject; [SI]
0138FE6C 0003 hkxIndexBuffer: hkReferencedObject, hkBaseObject; [SI]
013906CC 0003 hkxEnvironment: hkReferencedObject, hkBaseObject; [SI]
0138F114 0003 hkxEnum: hkReferencedObject, hkBaseObject; [SI]
0138FEF0 0003 hkxEdgeSelectionChannel: hkReferencedObject, hkBaseObject; [SI]
0139000C 0003 hkxCamera: hkReferencedObject, hkBaseObject; [SI]
0139007C 0008 hkxBlobMeshShape: hkMeshShape, hkReferencedObject, hkBaseObject; [SI]
0139006C 0003 hkxBlob: hkReferencedObject, hkBaseObject; [SI]
0138DCE0 0003 hkxAttributeHolder: hkReferencedObject, hkBaseObject; [SI]
01390154 0003 hkxAnimatedVector: hkReferencedObject, hkBaseObject; [SI]
013901B0 0003 hkxAnimatedQuaternion: hkReferencedObject, hkBaseObject; [SI]
013901FC 0003 hkxAnimatedMatrix: hkReferencedObject, hkBaseObject; [SI]
0139023C 0003 hkxAnimatedFloat: hkReferencedObject, hkBaseObject; [SI]
013357D4 0003 hkpWorldPostSimulationListener; [SI]
01335EC4 0006 hkpWorldObject: hkReferencedObject, hkBaseObject; [SI]
01335874 0002 hkpWorldLinearCaster: hkpBroadPhaseCastCollector; [SI]
01336714 0005 hkpWorldExtension: hkReferencedObject, hkBaseObject; [SI]
013368C4 0003 hkpWorldDeletionListener; [SI]
01335880 0003 hkpWorldCinfo: hkReferencedObject, hkBaseObject; [SI]
013358C8 0003 hkpWorld: hkReferencedObject, hkBaseObject; [SI]
01337214 0023 hkpWheelConstraintData: hkpConstraintData, hkReferencedObject, hkBaseObject; [SI]
01395D7C 0004 hkpVelocityConstraintMotor: hkpLimitedForceConstraintMotor, hkpConstraintMotor, hkReferencedObject, hkBaseObject; [SI]
013A2614 0008 hkpUnaryAction: hkpAction, hkReferencedObject, hkBaseObject; [SI]
013A6C74 0006 hkpTriggerVolume; [MI]
013A6CA0 0007 hkpTriggerVolume: hkpWorldPostSimulationListener, hkpEntityListener; [MI]
013A6C90 0003 hkpTriggerVolume: hkpEntityListener; [MI]
013A6CC0 0005 hkpTriggerVolume: hkReferencedObject, hkBaseObject, hkpContactListener, hkpWorldPostSimulationListener, hkpEntityListener; [MI]
0139BB6C 0005 hkpTriangleShape: hkpConvexShape, hkpSphereRepShape, hkpShape, hkpShapeBase, hkcdShape, hkReferencedObject, hkBaseObject; [SI]
0139D0D0 0007 hkpTriSampledHeightFieldCollection; [MI]
0139D0F4 0005 hkpTriSampledHeightFieldCollection: hkpShapeCollection, hkpShape, hkpShapeBase, hkcdShape, hkReferencedObject, hkBaseObject, hkpShapeContainer; [MI]
0139D244 0021 hkpTriSampledHeightFieldBvTreeShape: hkpBvTreeShape, hkpShape, hkpShapeBase, hkcdShape, hkReferencedObject, hkBaseObject; [SI]
0139F41C 0031 hkpTreeBroadPhase: hkpBroadPhase, hkReferencedObject, hkBaseObject; [SI]
0139D4EC 0004 hkpTransformShape: hkpShape, hkpShapeBase, hkcdShape, hkReferencedObject, hkBaseObject; [SI]
0139CA84 0014 hkpTransformAgent: hkpCollisionAgent, hkReferencedObject, hkBaseObject; [SI]
01335DE4 0027 hkpThinBoxMotion: hkpBoxMotion, hkpMotion, hkReferencedObject, hkBaseObject; [SI]
0139C844 0014 hkpSymmetricAgentLinearCast<hkpSphereTriangleAgent>: hkpSphereTriangleAgent, hkpIterativeLinearCastAgent, hkpCollisionAgent, hkReferencedObject, hkBaseObject; [SI]
0139C8F0 0014 hkpSymmetricAgentLinearCast<hkpSphereCapsuleAgent>: hkpSphereCapsuleAgent, hkpIterativeLinearCastAgent, hkpCollisionAgent, hkReferencedObject, hkBaseObject; [SI]
0139C7C0 0014 hkpSymmetricAgentLinearCast<hkpSphereBoxAgent>: hkpSphereBoxAgent, hkpIterativeLinearCastAgent, hkpCollisionAgent, hkReferencedObject, hkBaseObject; [SI]
0139C510 0014 hkpSymmetricAgentLinearCast<hkpMultiSphereTriangleAgent>: hkpMultiSphereTriangleAgent, hkpIterativeLinearCastAgent, hkpCollisionAgent, hkReferencedObject, hkBaseObject; [SI]
0139C5C0 0014 hkpSymmetricAgentLinearCast<hkpCapsuleTriangleAgent>: hkpCapsuleTriangleAgent, hkpIterativeLinearCastAgent, hkpCollisionAgent, hkReferencedObject, hkBaseObject; [SI]
0139B930 0003 hkpSymmetricAgentFlipCollector: hkpCdPointCollector; [SI]
0139B940 0003 hkpSymmetricAgentFlipCastCollector: hkpCdPointCollector; [SI]
0139B950 0003 hkpSymmetricAgentFlipBodyCollector: hkpCdBodyPairCollector; [SI]
0139CACC 0014 hkpSymmetricAgent<hkpTransformAgent>: hkpSymmetricAgentLinearCast<hkpTransformAgent>, hkpTransformAgent, hkpCollisionAgent, hkReferencedObject, hkBaseObject; [SI]
0139C0BC 0014 hkpSymmetricAgent<hkpShapeCollectionAgent>: hkpSymmetricAgentLinearCast<hkpShapeCollectionAgent>, hkpShapeCollectionAgent, hkpCollisionAgent, hkReferencedObject, hkBaseObject; [SI]
0139CB94 0014 hkpSymmetricAgent<hkpMultiSphereAgent>: hkpSymmetricAgentLinearCast<hkpMultiSphereAgent>, hkpMultiSphereAgent, hkpCollisionAgent, hkReferencedObject, hkBaseObject; [SI]
0139C13C 0014 hkpSymmetricAgent<hkpMoppAgent>: hkpSymmetricAgentLinearCast<hkpMoppAgent>, hkpMoppAgent, hkpBvTreeAgent, hkpCollisionAgent, hkReferencedObject, hkBaseObject; [SI]
0139C498 0014 hkpSymmetricAgent<hkpListAgent>: hkpSymmetricAgentLinearCast<hkpListAgent>, hkpListAgent, hkpCollisionAgent, hkReferencedObject, hkBaseObject; [SI]
0139BA34 0014 hkpSymmetricAgent<hkpHeightFieldAgent>: hkpSymmetricAgentLinearCast<hkpHeightFieldAgent>, hkpHeightFieldAgent, hkpCollisionAgent, hkReferencedObject, hkBaseObject; [SI]
0139C348 0014 hkpSymmetricAgent<hkpConvexListAgent>: hkpSymmetricAgentLinearCast<hkpConvexListAgent>, hkpConvexListAgent, hkpPredGskfAgent, hkpGskfAgent, hkpGskBaseAgent, hkpIterativeLinearCastAgent, hkpCollisionAgent, hkReferencedObject, hkBaseObject; [SI]
0139C080 0014 hkpSymmetricAgent<hkpBvTreeStreamAgent>: hkpSymmetricAgentLinearCast<hkpBvTreeStreamAgent>, hkpBvTreeStreamAgent, hkpCollisionAgent, hkReferencedObject, hkBaseObject; [SI]
0139C1C0 0014 hkpSymmetricAgent<hkpBvTreeAgent>: hkpSymmetricAgentLinearCast<hkpBvTreeAgent>, hkpBvTreeAgent, hkpCollisionAgent, hkReferencedObject, hkBaseObject; [SI]
0139BFE4 0014 hkpSymmetricAgent<hkpBvCompressedMeshAgent>: hkpSymmetricAgentLinearCast<hkpBvCompressedMeshAgent>, hkpBvCompressedMeshAgent, hkpBvTreeAgent, hkpCollisionAgent, hkReferencedObject, hkBaseObject; [SI]
0139CC2C 0014 hkpSymmetricAgent<hkpBvAgent>: hkpSymmetricAgentLinearCast<hkpBvAgent>, hkpBvAgent, hkpCollisionAgent, hkReferencedObject, hkBaseObject; [SI]
0139A78C 0022 hkpStorageSampledHeightFieldShape: hkpSampledHeightFieldShape, hkpHeightFieldShape, hkpShape, hkpShapeBase, hkcdShape, hkReferencedObject, hkBaseObject; [SI]
0139BD38 0007 hkpStorageMeshShape; [MI]
0139BD5C 0005 hkpStorageMeshShape: hkpMeshShape, hkpShapeCollection, hkpShape, hkpShapeBase, hkcdShape, hkReferencedObject, hkBaseObject, hkpShapeContainer; [MI]
0139BA94 0007 hkpStorageExtendedMeshShape; [MI]
0139BAB4 0005 hkpStorageExtendedMeshShape: hkpExtendedMeshShape, hkpShapeCollection, hkpShape, hkpShapeBase, hkcdShape, hkReferencedObject, hkBaseObject, hkpShapeContainer; [MI]
01337884 0023 hkpStiffSpringConstraintData: hkpConstraintData, hkReferencedObject, hkBaseObject; [SI]
01397254 0024 hkpStiffSpringChainData: hkpConstraintChainData, hkpConstraintData, hkReferencedObject, hkBaseObject; [SI]
01397368 0014 hkpStaticCompoundShapeBreakableMaterial: hkpBreakableMultiMaterial, hkpBreakableMaterial, hkReferencedObject, hkBaseObject; [SI]
0139F8E0 0005 hkpStaticCompoundShape; [MI]
0139F904 0005 hkpStaticCompoundShape: hkpBvTreeShape, hkpShape, hkpShapeBase, hkcdShape, hkReferencedObject, hkBaseObject, hkpShapeContainer; [MI]
0139BF6C 0014 hkpStaticCompoundAgent: hkpBvTreeAgent, hkpCollisionAgent, hkReferencedObject, hkBaseObject; [SI]
01395E94 0004 hkpSpringDamperConstraintMotor: hkpLimitedForceConstraintMotor, hkpConstraintMotor, hkReferencedObject, hkBaseObject; [SI]
013A2138 0008 hkpSpringAction: hkpBinaryAction, hkpAction, hkReferencedObject, hkBaseObject; [SI]
0139C808 0014 hkpSphereTriangleAgent: hkpIterativeLinearCastAgent, hkpCollisionAgent, hkReferencedObject, hkBaseObject; [SI]
0139C964 0004 hkpSphereSphereAgent: hkpIterativeLinearCastAgent, hkpCollisionAgent, hkReferencedObject, hkBaseObject; [SI]
013387A4 0005 hkpSphereShape: hkpConvexShape, hkpSphereRepShape, hkpShape, hkpShapeBase, hkcdShape, hkReferencedObject, hkBaseObject; [SI]
0133870C 0017 hkpSphereRepShape: hkpShape, hkpShapeBase, hkcdShape, hkReferencedObject, hkBaseObject; [SI]
01335D04 0027 hkpSphereMotion: hkpMotion, hkReferencedObject, hkBaseObject; [SI]
0139C8B4 0014 hkpSphereCapsuleAgent: hkpIterativeLinearCastAgent, hkpCollisionAgent, hkReferencedObject, hkBaseObject; [SI]
0139C784 0014 hkpSphereBoxAgent: hkpIterativeLinearCastAgent, hkpCollisionAgent, hkReferencedObject, hkBaseObject; [SI]
01338E74 0007 hkpSingleShapeContainer: hkpShapeContainer; [SI]
01336620 0007 hkpSimulationIsland: hkpConstraintOwner, hkReferencedObject, hkBaseObject; [SI]
0133614C 0004 hkpSimulation: hkReferencedObject, hkBaseObject; [SI]
01335868 0002 hkpSimpleWorldRayCaster: hkpBroadPhaseCastCollector; [SI]
01390904 0019 hkpSimpleShapePhantom: hkpShapePhantom, hkpPhantom, hkpWorldObject, hkReferencedObject, hkBaseObject; [SI]
0139CCDC 0007 hkpSimpleMeshShape; [MI]
0139CCFC 0005 hkpSimpleMeshShape: hkpShapeCollection, hkpShape, hkpShapeBase, hkcdShape, hkReferencedObject, hkBaseObject, hkpShapeContainer; [MI]
013364CC 0025 hkpSimpleContactConstraintData: hkpConstraintData, hkReferencedObject, hkBaseObject; [SI]
013364B0 0004 hkpSimpleConstraintContactMgr::Factory: hkpContactMgrFactory, hkReferencedObject, hkBaseObject; [SI]
01336534 0020 hkpSimpleConstraintContactMgr: hkpDynamicsContactMgr, hkpContactMgr, hkReferencedObject, hkBaseObject; [SI]
0139C2C0 0003 hkpSimpleClosestContactCollector: hkpCdPointCollector; [SI]
013973A4 0014 hkpSimpleBreakableMaterial: hkpBreakableMaterial, hkReferencedObject, hkBaseObject; [SI]
013370F4 0019 hkpShapePhantom: hkpPhantom, hkpWorldObject, hkReferencedObject, hkBaseObject; [SI]
0139AC94 0003 hkpShapeInfo: hkReferencedObject, hkBaseObject; [SI]
01338E54 0007 hkpShapeContainer; [SI]
01335748 0004 hkpShapeCollectionFilter; [SI]
0139CB1C 0014 hkpShapeCollectionAgent: hkpCollisionAgent, hkReferencedObject, hkBaseObject; [SI]
0139BC5C 0007 hkpShapeCollection; [MI]
0139BC7C 0004 hkpShapeCollection: hkpShape, hkpShapeBase, hkcdShape, hkReferencedObject, hkBaseObject, hkpShapeContainer; [MI]
01338684 0014 hkpShapeBase: hkcdShape, hkReferencedObject, hkBaseObject; [SI]
013386C4 0017 hkpShape: hkpShapeBase, hkcdShape, hkReferencedObject, hkBaseObject; [SI]
013A1A0C 0003 hkpSerializedDisplayRbTransforms: hkReferencedObject, hkBaseObject; [SI]
013A22DC 0003 hkpSerializedDisplayMarkerList: hkReferencedObject, hkBaseObject; [SI]
013A244C 0003 hkpSerializedDisplayMarker: hkReferencedObject, hkBaseObject; [SI]
013A8474 0002 hkpSaveContactPointsUtil::EntitySelector; [SI]
0139CF04 0022 hkpSampledHeightFieldShape: hkpHeightFieldShape, hkpShape, hkpShapeBase, hkcdShape, hkReferencedObject, hkBaseObject; [SI]
01391CE4 0023 hkpRotationalConstraintData: hkpConstraintData, hkReferencedObject, hkBaseObject; [SI]
01336A54 0008 hkpRigidBody: hkpEntity, hkpWorldObject, hkReferencedObject, hkBaseObject; [SI]
0133649C 0004 hkpReportContactMgr::Factory: hkpContactMgrFactory, hkReferencedObject, hkBaseObject; [SI]
0133644C 0019 hkpReportContactMgr: hkpDynamicsContactMgr, hkpContactMgr, hkReferencedObject, hkBaseObject; [SI]
013A2638 0008 hkpReorientAction: hkpUnaryAction, hkpAction, hkReferencedObject, hkBaseObject; [SI]
0139AD74 0003 hkpRemoveTerminalsMoppModifier; [MI]
0139AD84 0003 hkpRemoveTerminalsMoppModifier: hkReferencedObject, hkBaseObject, hkpMoppModifier; [MI]
0139D574 0003 hkpRemoveTerminalsMoppModifier2; [MI]
0139D544 0003 hkpRemoveTerminalsMoppModifier2: hkpRemoveTerminalsMoppModifier, hkReferencedObject, hkBaseObject, hkpMoppModifier; [MI]
0133575C 0002 hkpRayShapeCollectionFilter; [SI]
01358D90 0002 hkpRayHitCollector; [SI]
0133573C 0002 hkpRayCollidableFilter; [SI]
013379E4 0023 hkpRagdollLimitsData: hkpConstraintData, hkReferencedObject, hkBaseObject; [SI]
01337294 0023 hkpRagdollConstraintData: hkpConstraintData, hkReferencedObject, hkBaseObject; [SI]
013921CC 0023 hkpRackAndPinionConstraintData: hkpConstraintData, hkReferencedObject, hkBaseObject; [SI]
013378E4 0023 hkpPulleyConstraintData: hkpConstraintData, hkReferencedObject, hkBaseObject; [SI]
013A74F0 0011 hkpProjectileGun: hkpFirstPersonGun, hkReferencedObject, hkBaseObject; [SI]
01337324 0023 hkpPrismaticConstraintData: hkpConstraintData, hkReferencedObject, hkBaseObject; [SI]
0139C274 0003 hkpPredGskfAgent: hkpGskfAgent, hkpGskBaseAgent, hkpIterativeLinearCastAgent, hkpCollisionAgent, hkReferencedObject, hkBaseObject; [SI]
013A1CF4 0003 hkpPoweredChainMapper: hkReferencedObject, hkBaseObject; [SI]
013971C4 0024 hkpPoweredChainData: hkpConstraintChainData, hkpConstraintData, hkReferencedObject, hkBaseObject; [SI]
013961CC 0004 hkpPositionConstraintMotor: hkpLimitedForceConstraintMotor, hkpConstraintMotor, hkReferencedObject, hkBaseObject; [SI]
013373B4 0023 hkpPointToPlaneConstraintData: hkpConstraintData, hkReferencedObject, hkBaseObject; [SI]
01337824 0023 hkpPointToPathConstraintData: hkpConstraintData, hkReferencedObject, hkBaseObject; [SI]
01397B04 0019 hkpPlaneShape: hkpHeightFieldShape, hkpShape, hkpShapeBase, hkcdShape, hkReferencedObject, hkBaseObject; [SI]
013A2A2C 0005 hkpPhysicsSystemWithContacts: hkpPhysicsSystem, hkReferencedObject, hkBaseObject; [SI]
013365E8 0005 hkpPhysicsSystem: hkReferencedObject, hkBaseObject; [SI]
013A0A14 0003 hkpPhysicsData: hkReferencedObject, hkBaseObject; [SI]
013368B4 0003 hkpPhantomOverlapListener; [SI]
01335794 0003 hkpPhantomBroadPhaseListener; [MI]
013357A4 0003 hkpPhantomBroadPhaseListener: hkReferencedObject, hkBaseObject, hkpBroadPhaseListener; [MI]
0139CA48 0014 hkpPhantomAgent: hkpCollisionAgent, hkReferencedObject, hkBaseObject; [SI]
01336674 0015 hkpPhantom: hkpWorldObject, hkReferencedObject, hkBaseObject; [SI]
013376B4 0002 hkpPairCollisionFilter; [MI]
013376E0 0002 hkpPairCollisionFilter: hkpShapeCollectionFilter, hkpRayShapeCollectionFilter, hkpRayCollidableFilter; [MI]
013376CC 0004 hkpPairCollisionFilter: hkpRayShapeCollectionFilter, hkpRayCollidableFilter; [MI]
013376C0 0002 hkpPairCollisionFilter: hkpRayCollidableFilter; [MI]
013376EC 0004 hkpPairCollisionFilter: hkpCollisionFilter, hkReferencedObject, hkBaseObject, hkpCollidableCollidableFilter, hkpShapeCollectionFilter, hkpRayShapeCollectionFilter, hkpRayCollidableFilter; [MI]
01335808 0004 hkpNullContactMgrFactory: hkpContactMgrFactory, hkReferencedObject, hkBaseObject; [SI]
013356F4 0010 hkpNullContactMgr: hkpContactMgr, hkReferencedObject, hkBaseObject; [SI]
0133581C 0002 hkpNullCollisionFilter; [MI]
01335848 0002 hkpNullCollisionFilter: hkpShapeCollectionFilter, hkpRayShapeCollectionFilter, hkpRayCollidableFilter; [MI]
01335834 0004 hkpNullCollisionFilter: hkpRayShapeCollectionFilter, hkpRayCollidableFilter; [MI]
01335828 0002 hkpNullCollisionFilter: hkpRayCollidableFilter; [MI]
01335854 0004 hkpNullCollisionFilter: hkpCollisionFilter, hkReferencedObject, hkBaseObject, hkpCollidableCollidableFilter, hkpShapeCollectionFilter, hkpRayShapeCollectionFilter, hkpRayCollidableFilter; [MI]
013381C4 0003 hkpNullBroadPhaseListener; [MI]
013381D4 0003 hkpNullBroadPhaseListener: hkReferencedObject, hkBaseObject, hkpBroadPhaseListener; [MI]
01338390 0014 hkpNullAgent: hkpCollisionAgent, hkReferencedObject, hkBaseObject; [SI]
01396DCC 0003 hkpMultiThreadedSimulation::MtPhantomBroadPhaseListener: hkpBroadPhaseListener; [SI]
01396DBC 0003 hkpMultiThreadedSimulation::MtEntityEntityBroadPhaseListener: hkpBroadPhaseListener; [SI]
01396DDC 0003 hkpMultiThreadedSimulation::MtBroadPhaseBorderListener: hkpBroadPhaseListener; [SI]
01396F2C 0004 hkpMultiThreadedSimulation: hkpContinuousSimulation, hkpSimulation, hkReferencedObject, hkBaseObject; [SI]
0139C4D4 0014 hkpMultiSphereTriangleAgent: hkpIterativeLinearCastAgent, hkpCollisionAgent, hkReferencedObject, hkBaseObject; [SI]
0139D5D4 0017 hkpMultiSphereShape: hkpSphereRepShape, hkpShape, hkpShapeBase, hkcdShape, hkReferencedObject, hkBaseObject; [SI]
0139CB58 0014 hkpMultiSphereAgent: hkpCollisionAgent, hkReferencedObject, hkBaseObject; [SI]
0139D014 0017 hkpMultiRayShape: hkpShape, hkpShapeBase, hkcdShape, hkReferencedObject, hkBaseObject; [SI]
013A2CC4 0008 hkpMouseSpringAction: hkpUnaryAction, hkpAction, hkReferencedObject, hkBaseObject; [SI]
013A7894 0009 hkpMountedBallGun: hkpBallGun, hkpFirstPersonGun, hkReferencedObject, hkBaseObject; [SI]
013A3034 0008 hkpMotorAction: hkpUnaryAction, hkpAction, hkReferencedObject, hkBaseObject; [SI]
01335C14 0027 hkpMotion: hkReferencedObject, hkBaseObject; [SI]
0139AD64 0003 hkpMoppModifier; [SI]
0139EE78 0003 hkpMoppCode: hkReferencedObject, hkBaseObject; [SI]
0139844C 0005 hkpMoppBvTreeShape: hkMoppBvTreeShapeBase, hkpBvTreeShape, hkpShape, hkpShapeBase, hkcdShape, hkReferencedObject, hkBaseObject; [SI]
0139C100 0014 hkpMoppAgent: hkpBvTreeAgent, hkpCollisionAgent, hkReferencedObject, hkBaseObject; [SI]
0139BDB0 0007 hkpMeshShape; [MI]
0139BDD4 0005 hkpMeshShape: hkpShapeCollection, hkpShape, hkpShapeBase, hkcdShape, hkReferencedObject, hkBaseObject, hkpShapeContainer; [MI]
01335B9C 0029 hkpMaxSizeMotion: hkpKeyframedRigidMotion, hkpMotion, hkReferencedObject, hkBaseObject; [SI]
0139C1FC 0010 hkpMapPointsToSubShapeContactMgr: hkpContactMgr, hkReferencedObject, hkBaseObject; [SI]
01337654 0023 hkpMalleableConstraintData: hkpConstraintData, hkReferencedObject, hkBaseObject; [SI]
013973E0 0014 hkpListShapeBreakableMaterial: hkpBreakableMultiMaterial, hkpBreakableMaterial, hkReferencedObject, hkBaseObject; [SI]
0139BE50 0007 hkpListShape; [MI]
0139BE74 0015 hkpListShape: hkpShapeCollection, hkpShape, hkpShapeBase, hkcdShape, hkReferencedObject, hkBaseObject, hkpShapeContainer; [MI]
0139C45C 0014 hkpListAgent: hkpCollisionAgent, hkReferencedObject, hkBaseObject; [SI]
0139667C 0014 hkpLinearParametricCurve: hkpParametricCurve, hkReferencedObject, hkBaseObject; [SI]
01337434 0023 hkpLimitedHingeConstraintData: hkpConstraintData, hkReferencedObject, hkBaseObject; [SI]
01395D68 0004 hkpLimitedForceConstraintMotor: hkpConstraintMotor, hkReferencedObject, hkBaseObject; [SI]
01335B24 0029 hkpKeyframedRigidMotion: hkpMotion, hkReferencedObject, hkBaseObject; [SI]