Arma Reforger Explorer 1.7.0.54
Arma Reforger Code Explorer by Zeroy - Thanks to MisterOutofTime
Loading...
Searching...
No Matches
SCR_ItemInsertionCallback.c
Go to the documentation of this file.
1class SCR_ItemInsertionCallback
2{
3 IEntity m_Item;
4 SCR_InvCallBack m_Callback;
5 BaseInventoryStorageComponent m_TargetStorage;
6 float m_fExpireTime;
7
8 void SCR_ItemInsertionCallback(notnull IEntity item, SCR_InvCallBack cb, BaseInventoryStorageComponent storage, float time)
9 {
10 m_Item = item;
11 m_Callback = cb;
12 m_fExpireTime = time;
13 m_TargetStorage = storage;
14 }
15}