forked from atenfyr/UAssetAPI
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCategoryReference.cs
More file actions
70 lines (62 loc) · 2.14 KB
/
Copy pathCategoryReference.cs
File metadata and controls
70 lines (62 loc) · 2.14 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
namespace UAssetAPI
{
public class CategoryReference
{
public int connection;
public int connect;
public int category;
public int link;
public int typeIndex;
public ushort type;
public int lengthV;
public int startV;
public int garbage1;
public int garbage2;
public ushort garbageNew;
public byte[] garbage3;
public CategoryReference(int connection, int connect, int category, int link, int typeIndex, ushort type, int lengthV, int startV, int garbage1, int garbage2, ushort garbageNew, byte[] garbage3)
{
this.connection = connection;
this.connect = connect;
this.category = category;
this.link = link;
this.typeIndex = typeIndex;
this.type = type;
this.lengthV = lengthV;
this.startV = startV;
this.garbage1 = garbage1;
this.garbage2 = garbage2;
this.garbageNew = garbageNew;
this.garbage3 = garbage3;
}
public CategoryReference(CategoryReference refer)
{
this.connection = refer.connection;
this.connect = refer.connect;
this.category = refer.category;
this.link = refer.link;
this.typeIndex = refer.typeIndex;
this.type = refer.type;
this.lengthV = refer.lengthV;
this.startV = refer.startV;
this.garbage1 = refer.garbage1;
this.garbage2 = refer.garbage2;
this.garbageNew = refer.garbageNew;
this.garbage3 = refer.garbage3;
}
public CategoryReference(int connection, int connect, int category, int link, int typeIndex, ushort type, int lengthV, int startV)
{
this.connection = connection;
this.connect = connect;
this.category = category;
this.link = link;
this.typeIndex = typeIndex;
this.type = type;
this.lengthV = lengthV;
this.startV = startV;
}
public CategoryReference()
{
}
}
}