We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8c521df commit 13f9ce5Copy full SHA for 13f9ce5
api/AltV.Net/Data/Decoration.cs
@@ -5,8 +5,8 @@ namespace AltV.Net.Data;
5
[StructLayout(LayoutKind.Sequential)]
6
internal readonly struct DecorationInternal
7
{
8
- private readonly bool Collection;
9
- private readonly bool Overlay;
+ private readonly uint Collection;
+ private readonly uint Overlay;
10
11
public Decoration ToPublic()
12
@@ -20,6 +20,6 @@ public Decoration ToPublic()
20
21
public struct Decoration
22
23
- public bool Collection;
24
- public bool Overlay;
+ public uint Collection;
+ public uint Overlay;
25
}
0 commit comments