Skip to content

Commit 13f9ce5

Browse files
committed
fix type
1 parent 8c521df commit 13f9ce5

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

api/AltV.Net/Data/Decoration.cs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@ namespace AltV.Net.Data;
55
[StructLayout(LayoutKind.Sequential)]
66
internal readonly struct DecorationInternal
77
{
8-
private readonly bool Collection;
9-
private readonly bool Overlay;
8+
private readonly uint Collection;
9+
private readonly uint Overlay;
1010

1111
public Decoration ToPublic()
1212
{
@@ -20,6 +20,6 @@ public Decoration ToPublic()
2020

2121
public struct Decoration
2222
{
23-
public bool Collection;
24-
public bool Overlay;
23+
public uint Collection;
24+
public uint Overlay;
2525
}

0 commit comments

Comments
 (0)