-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathobjtree.txt
26689 lines (23905 loc) · 686 KB
/
objtree.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
00A89780h: possible vtable (6 methods)
(SI)
0000: bfx::BoolSetting
0000: bfx::Setting
bfx::BoolSetting::`vftable'
referencing functions:
.text:00A5D730
.text:00A5D770
.text:00A5D7B0
.text:00A5D7F0
.text:00A5D830
.text:00A5D870
.text:00A5D8B0
.text:00A5DA10
.text:00A5DA50
.text:00A5DA90
.text:00A5DAD0
.text:00A5DB10
.text:00A5DB50
.text:00A5DB90
.text:00A5DBD0
.text:00A5DC10
.text:00A5DC50
.text:00A5DC90
.text:00A5DCD0
.text:00A5DD10
.text:00A5DD50
.text:00A5DD90
.text:00A5DDD0
.text:00A5DE40
.text:00A5DE80
.text:00A5DEC0
.text:00A5DF00
.text:00A5DF40
.text:00A5DF80
.text:00A5DFC0
.text:00A5E000
.text:00A5E040
.text:00A5E080
.text:00A5E0C0
.text:00A5E100
.text:00A5E1C0
.text:00A5E200
.text:00A5E240
.text:00A5E550
.text:00A5E590
.text:00A5E610
.text:00A5E670
.text:00A5E6B0
.text:00A5E6F0
.text:00A5E7F0
scalar deleting destructor: 00404E60h
destructor: 004574C0h
00A8979Ch: possible vtable (21 methods)
(SI)
0000: bfx::MotionBase
bfx::MotionBase::`vftable'
referencing functions:
.text:004049E0
.text:00406130
.text:00407AE0
.text:00424730
scalar deleting destructor: 004049E0h
00A8984Ch: possible vtable (23 methods)
(SI)
0000: bfx::IdleImpl
0000: bfx::Idle
0000: bfx::MotionBase
bfx::IdleImpl::`vftable'
referencing functions:
.text:00405F10
.text:00406130
scalar deleting destructor: 00406350h
destructor: 00406130h
constructor: 00405F10h
00A89924h: possible vtable (24 methods)
(SI)
0000: bfx::JumperImpl
0000: bfx::Jumper
0000: bfx::MotionBase
bfx::JumperImpl::`vftable'
referencing functions:
.text:00407420
.text:00407AE0
00A899BCh: possible vtable (23 methods)
(SI)
0000: bfx::LocomoterImpl
0000: bfx::Locomoter
0000: bfx::MotionBase
bfx::LocomoterImpl::`vftable'
referencing functions:
.text:00407EC0
scalar deleting destructor: 004049E0h
00A89B5Ch: possible vtable (1 methods)
(SI)
0000: bfx::HandleTargetBase
bfx::HandleTargetBase::`vftable'
referencing functions:
.text:00458E00
scalar deleting destructor: 0040A3C0h
destructor: 00458E00h
00A89B64h: possible vtable (5 methods)
(SI)
0000: bfx::MoverBase
0000: bfx::HandleTargetBase
bfx::MoverBase::`vftable'
referencing functions:
.text:0040A4C0
.text:0040EB60
scalar deleting destructor: 0040A4C0h
00A89CE0h: possible vtable (5 methods)
(SI)
0000: bfx::MoverImpl
0000: bfx::MoverBase
0000: bfx::HandleTargetBase
bfx::MoverImpl::`vftable'
referencing functions:
.text:0040CBA0
.text:0040EB60
scalar deleting destructor: 0040ED20h
destructor: 0040EB60h
constructor: 0040CBA0h
00A89DA0h: possible vtable (1 methods)
(SI)
0000: bfx::MoverReplayManager
bfx::MoverReplayManager::`vftable'
referencing functions:
.text:0040ED80
.text:00412880
scalar deleting destructor: 0040ED80h
00A8A8C8h: possible vtable (1 methods)
(SI)
0000: bfx::MoverReplayManagerImpl
0000: bfx::MoverReplayManager
bfx::MoverReplayManagerImpl::`vftable'
referencing functions:
.text:00412880
.text:00413000
scalar deleting destructor: 00413050h
destructor: 00412880h
constructor: 00413000h
00A8A8F4h: possible vtable (6 methods)
(SI)
0000: bfx::InstanceComponent
bfx::InstanceComponent::`vftable'
referencing functions:
.text:00413100
.text:004133F0
.text:00441C90
scalar deleting destructor: 00413100h
00A8A910h: possible vtable (4 methods)
(SI)
0000: bfx::SpaceComponent
bfx::SpaceComponent::`vftable'
referencing functions:
.text:00413120
.text:00413730
.text:004423A0 (2 times)
scalar deleting destructor: 00413120h
00A8A950h: possible vtable (6 methods)
(SI)
0000: bfx::MovementInstance
0000: bfx::InstanceComponent
bfx::MovementInstance::`vftable'
referencing functions:
.text:004133F0
00A8A96Ch: possible vtable (4 methods)
(SI)
0000: bfx::MoverSpaceComponent
0000: bfx::SpaceComponent
bfx::MoverSpaceComponent::`vftable'
referencing functions:
.text:004135B0
.text:00413730
scalar deleting destructor: 00413900h
destructor: 00413730h
constructor: 004135B0h
00A8A9C4h: possible vtable (1 methods)
(SI)
0000: bfx::LinkFlowBase
bfx::LinkFlowBase::`vftable'
referencing functions:
.text:00414030
.text:004150C0
scalar deleting destructor: 00414030h
00A8AAB4h: possible vtable (1 methods)
(SI)
0000: bfx::LinkFlowImpl
0000: bfx::LinkFlowBase
bfx::LinkFlowImpl::`vftable'
referencing functions:
.text:00415540
scalar deleting destructor: 004150C0h
00A8AC34h: possible vtable (5 methods)
(SI)
0000: bfx::Surfer
bfx::Surfer::`vftable'
referencing functions:
.text:00415480
.text:004154E0
scalar deleting destructor: 00416D30h
destructor: 004154E0h
constructor: 00415480h
00A8AC4Ch: possible vtable (5 methods)
(SI)
0000: bfx::MSurfer
0000: bfx::Surfer
bfx::MSurfer::`vftable'
referencing functions:
.text:00417730
scalar deleting destructor: 00416D30h
destructor: 004154E0h
00A8ADFCh: possible vtable (23 methods)
(SI)
0000: bfx::PuppetImpl
0000: bfx::Puppet
0000: bfx::MotionBase
bfx::PuppetImpl::`vftable'
referencing functions:
.text:004197C0
scalar deleting destructor: 004049E0h
00A8AE80h: possible vtable (1 methods)
(SI)
0000: bfx::RepulsorImpl
0000: bfx::HandleTargetBase
bfx::RepulsorImpl::`vftable'
referencing functions:
.text:004198F0
.text:00419FB0
00A8AFFCh: possible vtable (33 methods)
(SI)
0000: bfx::WalkerImpl
0000: bfx::Walker
0000: bfx::MotionBase
bfx::WalkerImpl::`vftable'
referencing functions:
.text:00424730
.text:004261A0
scalar deleting destructor: 00426680h
destructor: 00424730h
constructor: 004261A0h
00A8B198h: possible vtable (4 methods)
(SI)
0000: bfx::Path
bfx::Path::`vftable'
referencing functions:
.text:0042A010
.text:0042ABD0
.text:0043DA00
.text:00440E10 (2 times)
.text:00449DD0 (2 times)
.text:00449FD0 (2 times)
00A8B1B4h: possible vtable (3 methods)
(SI)
0000: bfx::AreaHandlePath
0000: bfx::Path
bfx::AreaHandlePath::`vftable'
referencing functions:
.text:0042AAB0
.text:0042ABD0
scalar deleting destructor: 0042AC30h
destructor: 0042ABD0h
constructor: 0042AAB0h
00A8B378h: possible vtable (1 methods)
(SI)
0000: bfx::HLink
0000: bfx::HandleTargetBase
bfx::HLink::`vftable'
referencing functions:
.text:0042DFB0
.text:0042E020
scalar deleting destructor: 0042E020h
00A8B3A0h: possible vtable (7 methods)
(SI)
0000: bfx::LinkBase
0000: bfx::HandleTargetBase
bfx::LinkBase::`vftable'
referencing functions:
.text:0042FE60
.text:004309B0
.text:00430A90
.text:00431760
00A8B3C0h: possible vtable (7 methods)
(SI)
0000: bfx::LinkStripImpl
0000: bfx::LinkBase
0000: bfx::HandleTargetBase
bfx::LinkStripImpl::`vftable'
referencing functions:
.text:0042FE60
00A8B3E0h: possible vtable (7 methods)
(SI)
0000: bfx::LinkImpl
0000: bfx::LinkBase
0000: bfx::HandleTargetBase
bfx::LinkImpl::`vftable'
referencing functions:
.text:004309B0
00A8B8C4h: possible vtable (7 methods)
(SI)
0000: bfx::ObstacleImpl
0000: bfx::HandleTargetBase
bfx::ObstacleImpl::`vftable'
referencing functions:
.text:00439820
.text:00439F20
.text:0043A0F0
00A8B990h: possible vtable (8 methods)
(SI)
0000: bfx::BoxObstacle
0000: bfx::ObstacleImpl
0000: bfx::HandleTargetBase
bfx::BoxObstacle::`vftable'
referencing functions:
.text:00439F50
00A8BE84h: possible vtable (6 methods)
(SI)
0000: bfx::PlannerInstance
0000: bfx::InstanceComponent
bfx::PlannerInstance::`vftable'
referencing functions:
.text:004414A0
.text:00441C90
00A8BF08h: possible vtable (4 methods)
(SI)
0000: bfx::Planner
0000: bfx::SpaceComponent
bfx::Planner::`vftable'
referencing functions:
.text:00441D70
.text:004423A0
scalar deleting destructor: 00442730h
destructor: 004423A0h
constructor: 00441D70h
00A8C03Ch: possible vtable (1 methods)
(SI)
0000: bfx::PolylinePath
0000: bfx::HandleTargetBase
bfx::PolylinePath::`vftable'
referencing functions:
.text:00442880
.text:004428F0
scalar deleting destructor: 004436F0h
destructor: 00442880h
constructor: 004428F0h
00A8C1ECh: possible vtable (2 methods)
(SI)
0000: bfx::CreateObstacleTask
0000: bfx::Task
bfx::CreateObstacleTask::`vftable'
referencing functions:
.text:00443720
00A8C1F8h: possible vtable (2 methods)
(SI)
0000: bfx::DestroyObstacleTask
0000: bfx::Task
bfx::DestroyObstacleTask::`vftable'
referencing functions:
.text:00443AB0
scalar deleting destructor: 004594D0h
destructor: 004521F0h
00A8C204h: possible vtable (2 methods)
(SI)
0000: bfx::CreatePolylinePathTask
0000: bfx::Task
bfx::CreatePolylinePathTask::`vftable'
referencing functions:
.text:00443870
.text:00443900
00A8C268h: possible vtable (1 methods)
(SI)
0000: bfx::PlannerReplayManager
bfx::PlannerReplayManager::`vftable'
referencing functions:
.text:004440C0
.text:004475E0
scalar deleting destructor: 004440C0h
00A8C694h: possible vtable (1 methods)
(SI)
0000: bfx::PlannerReplayManagerImpl
0000: bfx::PlannerReplayManager
bfx::PlannerReplayManagerImpl::`vftable'
referencing functions:
.text:004475E0
.text:00447BD0
scalar deleting destructor: 00447C40h
destructor: 004475E0h
constructor: 00447BD0h
00A8C720h: possible vtable (10 methods)
(SI)
0000: bfx::XGraph
bfx::XGraph::`vftable'
referencing functions:
.text:0044A040
.text:0044CAC0
scalar deleting destructor: 0044A040h
00A8C754h: possible vtable (9 methods)
(SI)
0000: bfx::XGraphImpl
0000: bfx::XGraph
bfx::XGraphImpl::`vftable'
referencing functions:
.text:0044ABF0
.text:0044CAC0
scalar deleting destructor: 0044CB80h
destructor: 0044CAC0h
constructor: 0044ABF0h
00A8C8A4h: possible vtable (2 methods)
(SI)
0000: bfx::RemoteFunctionCaller
bfx::RemoteFunctionCaller::`vftable'
referencing functions:
.text:004521B0
.text:00452330
scalar deleting destructor: 004521B0h
00A8C8B0h: possible vtable (2 methods)
(SI)
0000: bfx::Task
bfx::Task::`vftable'
referencing functions:
.text:004521D0
.text:004521F0 (bfx::DestroyObstacleTask::~DestroyObstacleTask)
.text:00452260
00A8C8BCh: possible vtable (2 methods)
(SI)
0000: bfx::RemoteFunctionCallerWin32
0000: bfx::RemoteFunctionCaller
bfx::RemoteFunctionCallerWin32::`vftable'
referencing functions:
.text:004522A0
.text:00452330
00A8C920h: possible vtable (6 methods)
(SI)
0000: bfx::Renderer
bfx::Renderer::`vftable'
referencing functions:
.text:004B4780
scalar deleting destructor: 004B4780h
00A8CA1Ch: possible vtable (18 methods)
(SI)
0000: bfx::ReplayLogOut
bfx::ReplayLogOut::`vftable'
referencing functions:
.text:00455F00
.text:00456990
scalar deleting destructor: 00455F00h
00A8CBC4h: possible vtable (19 methods)
(SI)
0000: bfx::TextReplayLogOut
0000: bfx::ReplayLogOut
bfx::TextReplayLogOut::`vftable'
referencing functions:
.text:00456760
scalar deleting destructor: 00455F00h
00A8CC14h: possible vtable (18 methods)
(SI)
0000: bfx::BinaryReplayLogOut
0000: bfx::ReplayLogOut
bfx::BinaryReplayLogOut::`vftable'
referencing functions:
.text:00456620
.text:00456990
00A8CC78h: possible vtable (1 methods)
(SI)
0000: bfx::ResourceImpl
0000: bfx::HandleTargetBase
bfx::ResourceImpl::`vftable'
referencing functions:
.text:00456FA0
scalar deleting destructor: 00456D70h
destructor: 00458E00h
00A8CFD8h: possible vtable (5 methods)
(SI)
0000: bfx::Setting
bfx::Setting::`vftable'
referencing functions:
.text:004574A0
.text:004574C0 (bfx::BoolSetting::~BoolSetting)
.text:00457550
00A8D018h: possible vtable (1 methods)
(SI)
0000: bfx::Space
0000: bfx::HandleTargetBase
bfx::Space::`vftable'
referencing functions:
.text:00457C40
.text:00457D30
scalar deleting destructor: 00457F10h
destructor: 00457D30h
constructor: 00457C40h
00A8D140h: possible vtable (2 methods)
(SI)
0000: bfx::LogDevice
bfx::LogDevice::`vftable'
referencing functions:
.text:00459040
.text:004598B0
.text:004B3D60
.text:00A72A80
scalar deleting destructor: 004B3D60h
00A8D14Ch: possible vtable (2 methods)
(SI)
0000: bfx::ScreenLog
0000: bfx::LogDevice
bfx::ScreenLog::`vftable'
referencing functions:
.text:00459490
scalar deleting destructor: 00459040h
00A8D158h: possible vtable (2 methods)
(SI)
0000: bfx::StdoutLog
0000: bfx::LogDevice
bfx::StdoutLog::`vftable'
referencing functions:
.text:004594B0
.text:00459670
scalar deleting destructor: 00459040h
00A8D19Ch: possible vtable (2 methods)
(SI)
0000: bfx::SimulateTask
0000: bfx::Task
bfx::SimulateTask::`vftable'
referencing functions:
.text:004592A0
scalar deleting destructor: 004594D0h
destructor: 004521F0h
00A8D1A8h: possible vtable (2 methods)
(SI)
0000: bfx::DefaultWarningLog
0000: bfx::LogDevice
bfx::DefaultWarningLog::`vftable'
referencing functions:
.text:00459870
00A8D200h: possible vtable (9 methods)
(SI)
0000: bfx::SystemMCore
bfx::SystemMCore::`vftable'
referencing functions:
.text:00459910
.text:00459C10
scalar deleting destructor: 00459910h
00A8D254h: possible vtable (9 methods)
(SI)
0000: bfx::SystemMCoreImpl
0000: bfx::SystemMCore
bfx::SystemMCoreImpl::`vftable'
referencing functions:
.text:00459B60
.text:00459C10
00A8D29Ch: possible vtable (1 methods)
(SI)
0000: bfx::SystemReplayManager
bfx::SystemReplayManager::`vftable'
referencing functions:
.text:00459CE0
.text:0045B170
scalar deleting destructor: 00459CE0h
00A8D568h: possible vtable (1 methods)
(SI)
0000: bfx::SystemReplayManagerImpl
0000: bfx::SystemReplayManager
bfx::SystemReplayManagerImpl::`vftable'
referencing functions:
.text:0045B0F0
.text:0045B170
00A8D6D0h: possible vtable (5 methods)
(SI)
0000: bfx::TimerManager
bfx::TimerManager::`vftable'
referencing functions:
.text:0045B4B0
.text:0045B620
scalar deleting destructor: 0045B6B0h
destructor: 0045B620h
constructor: 0045B4B0h
00A8D84Ch: possible vtable (23 methods)
(SI)
0000: cdc::IAnimGraphNode
cdc::IAnimGraphNode::`vftable'
referencing functions:
.text:00460520
.text:004605B0
.text:00460600
.text:004607F0
.text:00461240
.text:00461400
.text:00462260
.text:00462300
.text:00463D20
.text:00463D70
.text:00463F70
.text:00463FD0
.text:00464DB0
.text:00464F40
.text:00471100
.text:007672B0
.text:00767420
.text:00768540
.text:007686C0
.text:0076A0F0
.text:0076A280
00A8D8ACh: possible vtable (23 methods)
(SI)
0000: cdc::AnimTransientStateNode
0000: cdc::IAnimGraphNode
cdc::AnimTransientStateNode::`vftable'
referencing functions:
.text:004607F0
00A8D914h: possible vtable (23 methods)
(SI)
0000: cdc::AnimExitStateNode
0000: cdc::IAnimGraphNode
cdc::AnimExitStateNode::`vftable'
referencing functions:
.text:00460520
00A8D99Ch: possible vtable (19 methods)
(SI)
0000: cdc::AnimInputNode::AnimInputNodeAllocator
0000: cdc::FixedAllocatorByPolicy<cdc::Policy_CriticalSection>
0000: cdc::Allocator
cdc::AnimInputNode::AnimInputNodeAllocator::`vftable'
referencing functions:
.text:00A5E910
scalar deleting destructor: 00768BB0h
destructor: 005FC380h
00A8D9ECh: possible vtable (23 methods)
(SI)
0000: cdc::AnimInputNode
0000: cdc::IAnimGraphNode
cdc::AnimInputNode::`vftable'
referencing functions:
.text:00461240
00A8DA74h: possible vtable (25 methods)
(SI)
0000: cdc::AnimInterpNode
0000: cdc::AnimPipelineNode
0000: cdc::IAnimGraphNode
cdc::AnimInterpNode::`vftable'
referencing functions:
.text:004614C0
.text:00461500
.text:004615A0
scalar deleting destructor: 004615A0h
00A8DB0Ch: possible vtable (23 methods)
(SI)
0000: cdc::AnimPipelineNode
0000: cdc::IAnimGraphNode
cdc::AnimPipelineNode::`vftable'
referencing functions:
.text:00462260
.text:00462300
scalar deleting destructor: 004622D0h
destructor: 00462260h
constructor: 00462300h
00A8DBCCh: possible vtable (23 methods)
(SI)
0000: cdc::AnimPoseNode
0000: cdc::IAnimGraphNode
cdc::AnimPoseNode::`vftable'
referencing functions:
.text:00463D20
.text:00463D70
.text:00463F70
.text:00463FD0
00A8DC5Ch: possible vtable (19 methods)
(SI)
0000: cdc::AnimStateGraph::AnimStateGraphAllocator
0000: cdc::FixedAllocatorByPolicy<cdc::Policy_CriticalSection>
0000: cdc::Allocator
cdc::AnimStateGraph::AnimStateGraphAllocator::`vftable'
referencing functions:
.text:00A5E9E0
scalar deleting destructor: 00768BB0h
destructor: 005FC380h
00A8DCACh: possible vtable (23 methods)
(SI)
0000: cdc::AnimStateGraph
0000: cdc::IAnimGraphNode
cdc::AnimStateGraph::`vftable'
referencing functions:
.text:00464DB0
.text:00464F40
scalar deleting destructor: 00465000h
destructor: 00464F40h
constructor: 00464DB0h
00A8DD44h: possible vtable (19 methods)
(SI)
0000: cdc::AnimStateTransition::AnimStateTransitionAllocator
0000: cdc::FixedAllocatorByPolicy<cdc::Policy_CriticalSection>
0000: cdc::Allocator
cdc::AnimStateTransition::AnimStateTransitionAllocator::`vftable'
referencing functions:
.text:00A5EAA0
scalar deleting destructor: 00768BB0h
destructor: 005FC380h
00A8DF5Ch: possible vtable (4 methods)
(SI)
0000: cdc::FxActorWrapper
0000: OC3Ent::Face::FxActor
0000: OC3Ent::Face::FxNamedObject
0000: OC3Ent::Face::FxObject
0004: OC3Ent::Face::FxUseAllocator
cdc::FxActorWrapper::`vftable'
referencing functions:
.text:004681C0
.text:00468480
00A8E174h: possible vtable (2 methods)
(SI)
0000: InstanceComponent
InstanceComponent::`vftable'
referencing functions:
.text:0060C790
00A8E180h: possible vtable (2 methods)
(SI)
0000: cdc::IKComponent
0000: InstanceComponent
cdc::IKComponent::`vftable'
referencing functions:
.text:00468DC0
.text:0046A020
00A8E204h: possible vtable (19 methods)
(SI)
0000: cdc::AnimBlendNode::AnimBlendNodeAllocator
0000: cdc::FixedAllocatorByPolicy<cdc::Policy_CriticalSection>
0000: cdc::Allocator
cdc::AnimBlendNode::AnimBlendNodeAllocator::`vftable'
referencing functions:
.text:00A5EC10
scalar deleting destructor: 00768BB0h
destructor: 005FC380h
00A8E274h: possible vtable (23 methods)
(SI)
0000: cdc::AnimBlendNode
0000: cdc::AnimPipelineNode
0000: cdc::IAnimGraphNode
cdc::AnimBlendNode::`vftable'
referencing functions:
.text:0046ABB0
.text:0046ACD0
00A8E31Ch: possible vtable (23 methods)
(SI)
0000: cdc::AnimBoneSetNode
0000: cdc::AnimPipelineNode
0000: cdc::IAnimGraphNode
cdc::AnimBoneSetNode::`vftable'
referencing functions:
.text:0046C600
scalar deleting destructor: 0046C600h
00A8E3B4h: possible vtable (19 methods)
(SI)
0000: cdc::AnimDrivenRagdollNode::AnimDrivenRagdollNodeAllocator
0000: cdc::FixedAllocatorByPolicy<cdc::Policy_CriticalSection>
0000: cdc::Allocator
cdc::AnimDrivenRagdollNode::AnimDrivenRagdollNodeAllocator::`vftable'
referencing functions:
.text:00A5ED20
scalar deleting destructor: 00768BB0h
destructor: 005FC380h
00A8E42Ch: possible vtable (31 methods)
(SI)
0000: cdc::AnimDrivenRagdollNode
0000: cdc::AnimRagdollNode
0000: cdc::AnimPipelineNode
0000: cdc::IAnimGraphNode
cdc::AnimDrivenRagdollNode::`vftable'
referencing functions:
.text:0046CA20
.text:0046DE30
scalar deleting destructor: 0046DEE0h
destructor: 0046CA20h
constructor: 0046DE30h
00A8E4D4h: possible vtable (19 methods)
(SI)
0000: cdc::AnimEmptyFragmentNode::AnimEmptyFragmentNodeAllocator
0000: cdc::FixedAllocatorByPolicy<cdc::Policy_CriticalSection>
0000: cdc::Allocator
cdc::AnimEmptyFragmentNode::AnimEmptyFragmentNodeAllocator::`vftable'
referencing functions:
.text:00A5EDD0
scalar deleting destructor: 00768BB0h
destructor: 005FC380h
00A8E54Ch: possible vtable (23 methods)
(SI)
0000: cdc::AnimEmptyFragmentNode
0000: cdc::AnimPipelineNode
0000: cdc::IAnimGraphNode
cdc::AnimEmptyFragmentNode::`vftable'
referencing functions:
.text:0046DF60
.text:0046E060
scalar deleting destructor: 0046DF60h
00A8E5D4h: possible vtable (19 methods)
(SI)
0000: cdc::AnimFaceFxNode::AnimFaceFxNodeAllocator
0000: cdc::FixedAllocatorByPolicy<cdc::Policy_CriticalSection>
0000: cdc::Allocator
cdc::AnimFaceFxNode::AnimFaceFxNodeAllocator::`vftable'
referencing functions:
.text:00A5EE70
scalar deleting destructor: 00768BB0h
destructor: 005FC380h
00A8E64Ch: possible vtable (23 methods)
(SI)
0000: cdc::AnimFaceFxNode
0000: cdc::AnimPipelineNode
0000: cdc::IAnimGraphNode
cdc::AnimFaceFxNode::`vftable'
referencing functions:
.text:0046E110
.text:0046E140
scalar deleting destructor: 0046E110h
00A8E6D4h: possible vtable (19 methods)
(SI)
0000: cdc::AnimFragmentNode::AnimFragmentNodeAllocator
0000: cdc::FixedAllocatorByPolicy<cdc::Policy_CriticalSection>
0000: cdc::Allocator
cdc::AnimFragmentNode::AnimFragmentNodeAllocator::`vftable'
referencing functions:
.text:00A5EF50
scalar deleting destructor: 00768BB0h
destructor: 005FC380h
00A8E744h: possible vtable (25 methods)
(SI)
0000: cdc::AnimFragmentNode
0000: cdc::AnimPipelineNode
0000: cdc::IAnimGraphNode
cdc::AnimFragmentNode::`vftable'
referencing functions:
.text:0046E8E0
.text:0046EA40
.text:0046F320
00A8E7D4h: possible vtable (19 methods)
(SI)
0000: cdc::AnimHostedNode::AnimHostedNodeAllocator
0000: cdc::FixedAllocatorByPolicy<cdc::Policy_CriticalSection>
0000: cdc::Allocator
cdc::AnimHostedNode::AnimHostedNodeAllocator::`vftable'
referencing functions:
.text:00A5F000
scalar deleting destructor: 00768BB0h
destructor: 005FC380h
00A8E844h: possible vtable (23 methods)
(SI)
0000: cdc::AnimHostedNode
0000: cdc::IAnimGraphNode
cdc::AnimHostedNode::`vftable'
referencing functions:
.text:00471100
scalar deleting destructor: 00471350h
destructor: 00471100h
00A8E8CCh: possible vtable (19 methods)
(SI)
0000: cdc::AnimMirrorNode::AnimMirrorNodeAllocator
0000: cdc::FixedAllocatorByPolicy<cdc::Policy_CriticalSection>
0000: cdc::Allocator
cdc::AnimMirrorNode::AnimMirrorNodeAllocator::`vftable'
referencing functions:
.text:00A5F0A0
scalar deleting destructor: 00768BB0h
destructor: 005FC380h
00A8E93Ch: possible vtable (23 methods)
(SI)
0000: cdc::AnimMirrorNode
0000: cdc::AnimPipelineNode
0000: cdc::IAnimGraphNode
cdc::AnimMirrorNode::`vftable'
referencing functions:
.text:00471540
scalar deleting destructor: 00471540h
00A8E9C4h: possible vtable (19 methods)
(SI)
0000: cdc::AnimModifierNode::AnimModifierNodeAllocator
0000: cdc::FixedAllocatorByPolicy<cdc::Policy_CriticalSection>
0000: cdc::Allocator
cdc::AnimModifierNode::AnimModifierNodeAllocator::`vftable'
referencing functions:
.text:00A5F140
scalar deleting destructor: 00768BB0h
destructor: 005FC380h
00A8EA34h: possible vtable (23 methods)
(SI)
0000: cdc::AnimModifierNode
0000: cdc::AnimPipelineNode
0000: cdc::IAnimGraphNode
cdc::AnimModifierNode::`vftable'
referencing functions:
.text:00471800
scalar deleting destructor: 00471800h
00A8EABCh: possible vtable (19 methods)
(SI)
0000: cdc::AnimOverlayNode::AnimOverlayNodeAllocator
0000: cdc::FixedAllocatorByPolicy<cdc::Policy_CriticalSection>
0000: cdc::Allocator
cdc::AnimOverlayNode::AnimOverlayNodeAllocator::`vftable'
referencing functions:
.text:00A5F1E0
scalar deleting destructor: 00768BB0h
destructor: 005FC380h
00A8EB34h: possible vtable (23 methods)
(SI)
0000: cdc::AnimOverlayNode
0000: cdc::AnimPipelineNode
0000: cdc::IAnimGraphNode
cdc::AnimOverlayNode::`vftable'
referencing functions:
.text:00471DD0
scalar deleting destructor: 00471DD0h
00A8EBD4h: possible vtable (19 methods)