------------------------------------------------------------------------
| 17 | |
| 18 | //------------------------------------------------------------------------ |
| 19 | CScriptBind_Inventory::CScriptBind_Inventory(ISystem* pSystem, IGameFramework* pGameFramework) |
| 20 | : m_pSystem(pSystem), |
| 21 | m_pEntitySystem(gEnv->pEntitySystem), |
| 22 | m_pGameFramework(pGameFramework) |
| 23 | { |
| 24 | Init(m_pSystem->GetIScriptSystem(), m_pSystem, 1); |
| 25 | |
| 26 | RegisterMethods(); |
| 27 | RegisterGlobals(); |
| 28 | } |
| 29 | |
| 30 | //------------------------------------------------------------------------ |
| 31 | CScriptBind_Inventory::~CScriptBind_Inventory() |
nothing calls this directly
no test coverage detected