Skip to content

Commit 3452634

Browse files
committed
feat(shared): add count to decoration
1 parent 0def6e3 commit 3452634

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

api/AltV.Net/Data/Decoration.cs

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,13 +7,15 @@ internal readonly struct DecorationInternal
77
{
88
private readonly uint Collection;
99
private readonly uint Overlay;
10+
private readonly byte Count;
1011

1112
public Decoration ToPublic()
1213
{
1314
return new Decoration
1415
{
1516
Collection = Collection,
16-
Overlay = Overlay
17+
Overlay = Overlay,
18+
Count = Count
1719
};
1820
}
1921
}
@@ -22,4 +24,5 @@ public struct Decoration
2224
{
2325
public uint Collection;
2426
public uint Overlay;
27+
public byte Count;
2528
}

runtime

0 commit comments

Comments
 (0)