Arma Reforger Explorer 1.7.0.54
Arma Reforger Code Explorer by Zeroy - Thanks to MisterOutofTime
Loading...
Searching...
No Matches
SCR_SortableItem.c
Go to the documentation of this file.
1class SCR_SortableItem<Class ActualType>
2{
4 int m_iSortBy = 0;
5
6 ActualType m_Item;
7
8 //------------------------------------------------------------------------------------------------
9 void SCR_SortableItem(const ActualType item, const int sortValue)
10 {
11 m_Item = item;
12 m_iSortBy = sortValue;
13 }
14}
Super root of all classes in Enforce script.
Definition Types.c:35