Arma Reforger Explorer 1.7.0.54
Arma Reforger Code Explorer by Zeroy - Thanks to MisterOutofTime
Loading...
Searching...
No Matches
InventorySearchPredicate.c
Go to the documentation of this file.
2{
3 // Fill this array with required GenericComponent types
4 ref array<typename> QueryComponentTypes = {};
5 // Fill this array with required BaseItemAttributeData types
6 ref array<typename> QueryAttributeTypes = {};
7
8 override protected sealed ref array<typename> GetQueryComponents()
9 {
10 if (QueryComponentTypes.Count() == 0)
11 return null;
12 return QueryComponentTypes;
13 }
14 override protected sealed ref array<typename> GetQueryAttributes()
15 {
16 if (QueryAttributeTypes.Count() == 0)
17 return null;
18 return QueryAttributeTypes;
19 }
20};
sealed ref array< typename > GetQueryAttributes()
sealed ref array< typename > GetQueryComponents()