-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSlope.h
More file actions
981 lines (825 loc) · 15.9 KB
/
Slope.h
File metadata and controls
981 lines (825 loc) · 15.9 KB
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
/*
This file has been generated by IDA.
It contains local type definitions from
the type library 'Slope'
*/
#define __int8 char
#define __int16 short
#define __int32 int
#define __int64 long long
struct UISys::ViewPage;
struct UISys::ViewPage_vtbl;
struct GameSkinHolder;
struct EditActor_vtbl;
struct ThingWithAttrInfo;
struct EditActor_InnerClass1;
struct EditActor_InnerClass2;
struct EditActor_InnerClass3_vtbl;
struct EditActor_InnerClass3_v9_vtbl;
struct struct_162;
/* 1 */
typedef signed __int64 _Unwind_Sword;
/* 2 */
typedef unsigned __int64 _Unwind_Ptr;
/* 3 */
typedef unsigned __int64 _Unwind_Internal_Ptr;
/* 4 */
typedef unsigned __int64 _Unwind_Word;
/* 5 */
typedef unsigned __int64 _Unwind_Exception_Class;
/* 6 */
typedef _Unwind_Sword __guard;
/* 7 */
typedef unsigned __int64 size_t;
/* 9 */
typedef __int64 __time_t;
/* 8 */
typedef __time_t time_t;
/* 10 */
struct nn::err::ErrorResultVariant;
/* 11 */
struct nn::ldn;
/* 12 */
struct nn::os;
/* 13 */
struct nn::account::AsyncContext;
/* 14 */
struct nn::socket;
/* 15 */
struct nn::nifm;
/* 18 */
typedef unsigned int uint32_t;
/* 17 */
typedef uint32_t in_addr_t;
/* 16 */
struct in_addr
{
in_addr_t s_addr;
};
/* 19 */
struct nn::mem::StandardAllocator;
/* 20 */
struct nn::time;
/* 21 */
struct nn::util;
/* 22 */
struct nn::crypto::detail::Md5Impl;
/* 23 */
struct nn::crypto;
/* 25 */
typedef unsigned __int16 sa_family_t;
/* 24 */
struct sockaddr
{
sa_family_t sa_family;
char sa_data[14];
};
/* 28 */
typedef unsigned int __socklen_t;
/* 27 */
typedef __socklen_t socklen_t;
/* 26 */
struct addrinfo
{
int ai_flags;
int ai_family;
int ai_socktype;
int ai_protocol;
socklen_t ai_addrlen;
struct sockaddr *ai_addr;
char *ai_canonname;
struct addrinfo *ai_next;
};
/* 29 */
struct nn::oe;
/* 30 */
struct nn::account;
/* 31 */
struct nn::detail;
/* 32 */
struct nn::util::BitArray;
/* 33 */
struct nn::util::BinaryFileHeader;
/* 34 */
struct nn::util::RelocationTable;
/* 35 */
struct nn::mii::ParamCharInfoAccessor;
/* 36 */
struct nn::mii::detail::BufferAllocator;
/* 37 */
struct nn::fs;
/* 38 */
struct nn::mii::detail::CalculateSizeAndAlignment;
/* 39 */
struct nn::mii;
/* 40 */
struct nn::util::BinaryBlockHeader;
/* 41 */
struct nn::fontll::ScalableFontEngine;
/* 42 */
struct nn::fontll::ScalableFontEngineHelper;
/* 43 */
struct nn::hid;
/* 44 */
struct nv;
/* 45 */
struct nn::vi;
/* 46 */
struct nn::diag;
/* 47 */
struct nn::diag::detail;
/* 48 */
struct nn::lmem;
/* 49 */
struct nn::image::JpegEncoder;
/* 50 */
struct nn::util::ResDic;
/* 51 */
struct nn::audio;
/* 52 */
struct nn::codec;
/* 53 */
struct nn::codec::HardwareOpusDecoder;
/* 54 */
struct nn::audio::PerformanceInfo;
/* 55 */
struct nn::friends::Friend;
/* 56 */
struct nn::friends::UserPresence;
/* 57 */
struct nn::friends;
/* 58 */
struct nn::bcat;
/* 59 */
struct nn::err::ApplicationErrorArg;
/* 60 */
struct nn::err;
/* 61 */
struct nn::hid::VibrationTarget;
/* 62 */
struct nn::hid::VibrationMixer;
/* 63 */
struct nn::hid::VibrationNodeConnection;
/* 64 */
struct nn::hid::VibrationNode;
/* 65 */
struct nn::hid::VibrationPlayer;
/* 66 */
struct nn::hid::VibrationWriter;
/* 67 */
struct nn::image::JpegDecoder;
/* 68 */
struct nn::crypto::detail::CbcMacImpl;
/* 69 */
struct nn::crypto::detail;
/* 70 */
struct nn::web::ShowOfflineHtmlPageArgWithPlayReport;
/* 71 */
struct nn::web::ShowOfflineHtmlPageArg;
/* 72 */
struct nn::web::OfflineHtmlPageReturnValue;
/* 73 */
struct nn::web;
/* 74 */
struct nn::web::OfflineWebSession;
/* 75 */
struct nn::pctl;
/* 76 */
struct nn::swkbd;
/* 77 */
struct nn::prepo;
/* 78 */
struct nn::account::CachedNintendoAccountInfo;
/* 79 */
struct nn::prepo::PlayReport;
/* 80 */
struct nn::mii::CharInfoAccessor;
/* 81 */
struct nn::mii::Database;
/* 82 */
struct nn::mii::Nickname;
/* 83 */
struct nn::ngc::ProfanityFilter;
/* 84 */
struct nn::ngc;
/* 85 */
struct nn::os::Mutex;
/* 86 */
struct std::nothrow_t;
/* 87 */
union __attribute__((aligned(8))) __n64
{
unsigned __int64 n64_u64[1];
unsigned __int32 n64_u32[2];
unsigned __int16 n64_u16[4];
unsigned __int8 n64_u8[8];
__int64 n64_i64[1];
__int32 n64_i32[2];
__int16 n64_i16[4];
__int8 n64_i8[8];
float n64_f32[2];
double n64_f64[1];
};
/* 88 */
union __attribute__((aligned(8))) __n128
{
unsigned __int64 n128_u64[2];
unsigned __int32 n128_u32[4];
unsigned __int16 n128_u16[8];
unsigned __int8 n128_u8[16];
__int64 n128_i64[2];
__int32 n128_i32[4];
__int16 n128_i16[8];
__int8 n128_i8[16];
float n128_f32[4];
double n128_f64[2];
};
/* 89 */
typedef __n64 int8x8_t;
/* 90 */
typedef __n64 uint8x8_t;
/* 91 */
typedef __n64 int16x4_t;
/* 92 */
typedef __n64 int32x2_t;
/* 93 */
typedef __n64 uint16x4_t;
/* 94 */
typedef __n64 uint32x2_t;
/* 95 */
typedef __n128 int8x16_t;
/* 96 */
typedef __n128 int16x8_t;
/* 97 */
typedef __n128 int32x4_t;
/* 98 */
typedef __n128 int64x2_t;
/* 99 */
typedef __n128 uint8x16_t;
/* 100 */
typedef __n128 uint16x8_t;
/* 101 */
typedef __n128 uint32x4_t;
/* 102 */
typedef __n128 uint64x2_t;
/* 103 */
typedef __n64 poly8x8_t;
/* 104 */
typedef __n64 poly16x4_t;
/* 105 */
typedef __n128 poly16x8_t;
/* 106 */
typedef __n128 poly8x16_t;
/* 107 */
typedef __n64 float16x4_t;
/* 108 */
typedef __n64 float32x2_t;
/* 109 */
typedef __n128 float16x8_t;
/* 110 */
typedef __n128 float32x4_t;
/* 111 */
typedef __n128 float64x2_t;
/* 112 */
typedef __n128 poly128_t;
/* 113 */
typedef int16x4_t int16x2_t;
/* 114 */
typedef uint16x4_t uint16x2_t;
/* 115 */
typedef float16x4_t float16x2_t;
/* 116 */
struct __va_list_tag
{
void *__stack;
void *__gr_top;
void *__vr_top;
int __gr_offs;
int __vr_offs;
};
/* 117 */
typedef __va_list_tag gcc_va_list[1];
/* 128 */
struct Lp::UI::BtnPartsCtrl
{
_BYTE gap0[8];
};
/* 119 */
struct UISys::ButtonActionCallbackArg
{
UISys::ViewPage *viewPage;
Lp::UI::BtnPartsCtrl btnPartsCtrl;
unsigned int buttonIndex;
unsigned int dword14;
unsigned int dword18;
unsigned int dword1C;
unsigned int dword20;
unsigned __int64 qword28;
};
/* 124 */
struct UISys::ViewPage
{
UISys::ViewPage_vtbl *__vftable /*VFT*/;
_BYTE gap0[1896];
unsigned __int64 BTN_PARTS_CTRL_NUM;
unsigned __int64 *pqword778;
};
/* 129 */
struct UISys::ViewPage_vtbl
{
_BYTE gap0[424];
int (*getButtonIndex_)(UISys::ViewPage *, Lp::UI::BtnPartsCtrl *);
};
/* 120 */
struct Lp::UI::BtnPartsCtrl::BtnEventArg
{
unsigned int dword0;
unsigned int dword4;
unsigned int dword8;
unsigned int dwordC;
unsigned __int64 qword10;
Lp::UI::BtnPartsCtrl btnPartsCtrl;
};
/* 122 */
struct struct_v10
{
__int64 (__fastcall **ppfunc0)(__int64, __int64 *);
_BYTE gap8[5828];
unsigned int hopefully_not_theme_index;
};
/* 123 */
struct struct_a1
{
_BYTE gap0[72];
struct_v10 *a_struct_v10;
};
/* 127 */
struct sead::Buffer
{
int mSize;
void *mBuffer;
};
/* 126 */
struct __attribute__((packed)) __attribute__((aligned(1))) EditMain
{
_QWORD qword0; ///< Subclass of UISys::ViewPage
_BYTE gap8[64];
__int64 temp3;
_BYTE gap_2[928];
__int64 temp1;
unsigned __int64 temp2;
_BYTE gap_1[304];
_DWORD dword530;
_BYTE gap534[52];
_DWORD dword568;
_BYTE gap56C[4];
_DWORD dword570;
_BYTE gap574[4];
_QWORD qword578;
_DWORD dword580;
_BYTE gap584[4];
_QWORD qword588;
_QWORD qword590;
_QWORD qword598;
_QWORD qword5A0;
_DWORD dword5A8;
_QWORD qword5AC;
_BYTE byte5B4;
_BYTE gap5B5[3];
_DWORD dword5B8;
_BYTE gap5BC[4];
_QWORD qword5C0;
_DWORD dword5C8;
_BYTE gap5CC[4];
_QWORD qword5D0;
_QWORD qword5D8;
_DWORD dword5E0;
_BYTE gap5E4[4];
_QWORD qword5E8;
_DWORD dword5F0;
_BYTE gap5F4[4];
_QWORD qword5F8;
_DWORD dword600;
_BYTE gap604[4];
_QWORD qword608;
_DWORD dword610;
_BYTE gap614[4];
_QWORD qword618;
_QWORD qword620;
_QWORD qword628;
_QWORD qword630;
_QWORD qword638;
_QWORD qword640;
_QWORD qword648;
_QWORD qword650;
_QWORD qword658;
_DWORD dword660;
_BYTE gap664[4];
_DWORD dword668;
_BYTE gap66C[4];
_QWORD qword670;
_QWORD qword678;
_QWORD qword680;
_QWORD qword688;
_QWORD qword690;
_QWORD qword698;
_QWORD qword6A0;
_QWORD qword6A8;
_QWORD qword6B0;
_QWORD qword6B8;
_QWORD qword6C0;
_QWORD qword6C8;
_QWORD qword6D0;
_QWORD qword6D8;
_QWORD qword6E0;
_QWORD qword6E8;
_QWORD qword6F0;
_QWORD qword6F8;
_DWORD dword700;
_BYTE gap704[4];
_QWORD qword708;
_DWORD dword710;
_BYTE gap714[4];
_QWORD qword718;
_DWORD dword720;
_BYTE gap724[4];
_QWORD qword728;
_QWORD qword730;
_QWORD qword738;
_QWORD qword740;
_QWORD qword748;
_QWORD qword750;
_QWORD qword758;
_QWORD qword760;
_QWORD qword768;
sead::Buffer mBtnPartsCtrlBuffer;
unsigned int unsigned_int780;
_BYTE gap784[4];
_QWORD qword788;
_QWORD qword790;
_QWORD qword798;
_QWORD qword7A0;
unsigned int unsigned_int7A8;
_BYTE gap7AC[4];
_QWORD qword7B0;
unsigned int unsigned_int7B8;
_BYTE gap7BC[4];
_QWORD qword7C0;
unsigned int unsigned_int7C8;
_BYTE gap7CC[4];
_QWORD qword7D0;
_QWORD qword7D8;
_QWORD qword7E0;
_QWORD qword7E8;
_QWORD qword7F0;
_QWORD qword7F8;
_QWORD qword800;
_QWORD qword808;
_QWORD qword810;
_QWORD qword818;
_QWORD qword820;
_DWORD dword828;
_DWORD dword82C;
_QWORD qword830;
_QWORD qword838;
_QWORD qword840;
_QWORD qword848;
_QWORD qword850;
_QWORD qword858;
_QWORD qword860;
_QWORD qword868;
unsigned int unsigned_int870;
_BYTE gap874[4];
_QWORD qword878;
_DWORD dword880;
_BYTE byte884;
_BYTE gap885[3];
_QWORD qword888;
_QWORD qword890;
_QWORD qword898;
_QWORD qword8A0;
_QWORD qword8A8;
_QWORD qword8B0;
_QWORD qword8B8;
_BYTE gap8C0[40];
_QWORD qword8E8;
_QWORD qword8F0;
_QWORD qword8F8;
_QWORD qword900;
_QWORD qword908;
_QWORD qword910;
_QWORD qword918;
_QWORD qword920;
_QWORD qword928;
_QWORD qword930;
_QWORD qword938;
_QWORD qword940;
_QWORD qword948;
_QWORD qword950;
_QWORD qword958;
_QWORD qword960;
_QWORD qword968;
_QWORD qword970;
_QWORD qword978;
_QWORD qword980;
_QWORD qword988;
_QWORD qword990;
_QWORD qword998;
_QWORD qword9A0;
_QWORD qword9A8;
_QWORD qword9B0;
_QWORD qword9B8;
_QWORD qword9C0;
_QWORD qword9C8;
_QWORD qword9D0;
_QWORD qword9D8;
_QWORD qword9E0;
_QWORD qword9E8;
_QWORD qword9F0;
_BYTE byte9F8;
_BYTE gap9F9[7];
_QWORD qwordA00;
_BYTE gapA08[24];
_BYTE byteA20;
};
/* 133 */
struct ThingWithParentFlag
{
_BYTE gap0[20];
int temp_1;
int temp_2;
unsigned int mParentFlag;
_BYTE gap1[232];
ThingWithAttrInfo *thingWithAttrInfo;
};
/* 153 */
struct ThingWithAttrInfo
{
_BYTE gap0[48];
unsigned __int64 mAttrNum; ///< type unknown
_BYTE gap1[9];
bool mIsValidChangeAttr; ///< type assumed
};
/* 135 */
struct sead::SafeString_vtbl;
/* 134 */
struct sead::SafeString
{
sead::SafeString_vtbl *__vftable /*VFT*/;
const char *mStringTop;
};
/* 136 */
struct StringStruct
{
sead::SafeString mSafeString;
unsigned int field_10;
unsigned int field_14;
unsigned int field_18;
unsigned int field_1C;
unsigned int field_20;
unsigned int field_24;
};
/* 137 */
enum Skin
{
Skin_M1 = 0x0,
Skin_M3 = 0x1,
Skin_MW = 0x2,
Skin_WU = 0x3,
Skin_3W = 0x4,
};
/* 138 */
enum EditKuriboAttr : __int8
{
EditKuriboAttr_Kuribo = 0x0,
EditKuriboAttr_Kakibo = 0x1, ///< -Extra Variants-
///< EditKuriboAttr_Kuribon = 0x2,
///< EditKuriboAttr_Kakibon = 0x3,
};
/* 139 */
enum EditKuriboFlag : __int64
{
EditKuriboFlag_Kuribo = 0xFFFFFFFBLL,
EditKuriboFlag_Kakibo = 0x4LL,
};
/* 140 */
enum EditMechaKoopaAttr : __int8
{
EditMechaKoopaAttr_0x0 = 0x0,
EditMechaKoopaAttr_0x1 = 0x1,
};
/* 141 */
enum EditMechaKoopaFlag : __int64
{
EditMechaKoopaFlag_0xFFF3FFFF = 0xFFF3FFFFLL,
};
/* 143 */
enum EditNokoNokoAttr : __int8
{
EditNokoNokoAttr_0x0 = 0x0,
EditNokoNokoAttr_0x1 = 0x1,
};
/* 144 */
enum EditNokoNokoFlag : __int64
{
EditNokoNokoFlag_0xFFFFFFFB = 0xFFFFFFFBLL,
EditNokoNokoFlag_0x4 = 0x4LL,
};
/* 145 */
enum EditBurnerAttr : __int8
{
EditBurnerAttr_0x0 = 0x0,
EditBurnerAttr_0x1 = 0x1,
};
/* 146 */
enum EditBurnerFlag : __int64
{
EditBurnerFlag_0xFFFFFFFB = 0xFFFFFFFBLL,
EditBurnerFlag_0x4 = 0x4LL,
};
/* 148 */
struct GameStateHolder
{
_BYTE gap0[48];
GameSkinHolder *gameSkinHolder;
};
/* 149 */
struct GameSkinHolder
{
_BYTE gap0[12];
__int32 tempA1;
__int32 temp2; ///< compared to 2?
__int32 temp3; ///< compared to many numbers
__int32 temp4; ///< compared to 2
Skin mSkin;
_BYTE gap2[56];
__int32 temp6;
__int32 temp7;
__int32 temp8;
__int32 temp9;
struct_162 *temp1;
_BYTE gap3[16];
_BYTE temp5;
};
/* 162 */
struct struct_162
{
__int32 temp1;
__int32 lessonModeSomething;
};
/* 151 */
struct EditActor
{
EditActor_vtbl *__vftable /*VFT*/;
_BYTE gap1[32];
EditActor_InnerClass2 *innerClass2;
_BYTE gap1A[56];
__int64 temp_1;
int temp_2;
int temp_3;
_BYTE gap2[16];
int temp_4;
_BYTE gap3[212];
__int64 temp_5;
_BYTE gap4[24];
__int64 temp_6;
__int64 temp_7;
__int64 temp_8;
_BYTE gap5[40];
__int64 temp_9;
_BYTE gap6[24];
__int64 temp_10;
_BYTE gap7[8];
__int64 temp_11;
_BYTE gap8[8];
__int64 temp_12;
_BYTE gap9[8];
_BYTE gap10[48];
__int64 temp_2A;
EditActor_InnerClass1 *innerClass1A;
EditActor_InnerClass1 *innerClass1B;
EditActor_InnerClass1 *innerClass1C;
EditActor_InnerClass1 *innerClass1D;
_BYTE gap11[92];
int temp_A; ///< sub_148
int temp_B;
int temp_C; ///< sub_148
float temp_D; ///< sub_148
int temp_E;
int temp_F; ///< sub_148
int temp_G;
_BYTE gap12[64];
ThingWithParentFlag *thingWithParentFlag;
_BYTE gap13[4];
int temp_13;
};
/* 152 */
struct EditActor_vtbl
{
_BYTE gap0[328];
int (*changeDir)(EditActor *, __int8 *);
_BYTE gap1[392];
int (*something)(EditActor *, long double *);
_BYTE gap2[712];
int (*getAttr_2)(EditActor *);
_BYTE gap3[40];
int (*getAttr)(EditActor *);
int (*getAttrNum)(EditActor *);
_BYTE gap4[16];
int (*changeAttr)(EditActor *, __int8 *);
};
/* 155 */
struct EditActor_InnerClass2
{
__int64 *__vftable;
EditActor *editActor;
__int64 temp_1;
__int64 temp_2;
__int64 temp_3;
__int64 temp_4;
__int64 temp_5;
__int64 temp_6;
__int64 temp_7;
__int64 temp_8;
__int64 temp_9;
__int64 temp_10;
__int64 temp_11;
__int64 temp_12;
__int64 temp_13;
__int64 temp_14;
__int64 temp_15;
__int64 temp_16;
__int64 temp_17;
__int64 temp_18;
__int64 temp_19;
__int64 temp_20;
__int64 temp_21;
__int64 temp_22;
__int64 temp_23;
__int64 temp_24;
__int64 temp_25;
__int64 temp_26;
__int64 temp_27;
__int64 temp_28;
__int64 temp_29;
__int64 temp_30;
__int64 temp_31;
__int64 temp_32;
__int64 temp_33;
__int64 temp_34;
__int64 temp_35;
__int64 temp_36;
__int64 temp_37;
__int64 temp_38;
__int64 temp_39;
__int64 temp_40;
__int64 temp_41;
__int64 temp_42;
__int64 temp_43;
__int64 temp_44;
__int64 temp_45;
__int64 temp_46;
__int64 temp_47;
__int64 temp_48;
__int64 temp_49;
};
/* 154 */
struct EditActor_InnerClass1
{
_BYTE gap0[124];
int mParentFlag13and3;
};
/* 156 */
struct EditActor_InnerClass3
{
EditActor_InnerClass3_vtbl *__vftable /*VFT*/;
sead::Buffer buffer;
__int64 temp_3;
__int64 temp_4;
};
/* 157 */
struct EditActor_InnerClass3_vtbl
{
_BYTE gap1[432];
int (*getIndex)(EditActor_InnerClass3 *); ///< speculative function name
};
/* 158 */
struct EditActor_InnerClass3_v7
{
};
/* 159 */
struct EditActor_InnerClass3_v9
{
EditActor_InnerClass3_v9_vtbl *__vftable /*VFT*/;
};
/* 160 */
struct EditActor_InnerClass3_v9_vtbl
{
_BYTE gap1[440];
int (*temp_1)(char *); ///< help where is this
};
/* 161 */
struct float32x2x2_t
{
float32x2_t val[2];
};