This repository was archived by the owner on Oct 31, 2024. It is now read-only.
File tree Expand file tree Collapse file tree 2 files changed +3
-1
lines changed
src/Fortnite-API/Objects/V2 Expand file tree Collapse file tree 2 files changed +3
-1
lines changed Original file line number Diff line number Diff line change @@ -14,10 +14,12 @@ public class BrMaterialInstanceV2 : IEquatable<BrMaterialInstanceV2>
14
14
[ J ] public Dictionary < string , Uri > Images { get ; private set ; }
15
15
[ J ] public Dictionary < string , BrMaterialInstanceV2Color > Colors { get ; private set ; }
16
16
[ J ] public Dictionary < string , float > Scalings { get ; private set ; }
17
+ [ J ] public Dictionary < string , bool > Flags { get ; private set ; }
17
18
18
19
[ I ] public bool HasImages => Images != null && Images . Count != 0 ;
19
20
[ I ] public bool HasColors => Colors != null && Colors . Count != 0 ;
20
21
[ I ] public bool HasScalings => Scalings != null && Scalings . Count != 0 ;
22
+ [ I ] public bool HasFlags => Flags != null && Flags . Count != 0 ;
21
23
22
24
public bool Equals ( BrMaterialInstanceV2 other )
23
25
{
Original file line number Diff line number Diff line change 2
2
using System . Collections . Generic ;
3
3
using System . Diagnostics ;
4
4
5
- using J = Newtonsoft . Json . JsonPropertyAttribute ;
6
5
using I = Newtonsoft . Json . JsonIgnoreAttribute ;
6
+ using J = Newtonsoft . Json . JsonPropertyAttribute ;
7
7
8
8
namespace Fortnite_API . Objects . V2
9
9
{
You can’t perform that action at this time.
0 commit comments