File tree Expand file tree Collapse file tree 3 files changed +0
-19
lines changed Expand file tree Collapse file tree 3 files changed +0
-19
lines changed Original file line number Diff line number Diff line change @@ -857,16 +857,3 @@ CPed* CGameSA::GetPedContext ( void )
857
857
m_pPedContext = pGame->GetPools ()->GetPedFromRef ( (DWORD)1 );
858
858
return m_pPedContext;
859
859
}
860
-
861
- constexpr
862
- CAnimBlendAssocGroupSAInterface * CGameSA::getAnimAssocGroupInterface ( AssocGroupId animGroup )
863
- {
864
- DWORD * pAnimAssocGroupsArray = reinterpret_cast < DWORD * > ( *(DWORD*)ARRAY_CAnimManager_AnimAssocGroups );
865
- return reinterpret_cast < CAnimBlendAssocGroupSAInterface * > ( pAnimAssocGroupsArray + 5 * animGroup );
866
- }
867
-
868
- CGameSA::AssocGroup_type CGameSA::CreateAnimBlendAssocGroup ( AssocGroupId animGroup )
869
- {
870
- auto pAnimAssocGroupInterface = getAnimAssocGroupInterface ( animGroup );
871
- return std::make_unique < CAnimBlendAssocGroupSA > ( pAnimAssocGroupInterface );
872
- }
Original file line number Diff line number Diff line change @@ -257,10 +257,6 @@ class CGameSA : public CGame
257
257
void SetPostWeaponFireHandler ( PostWeaponFireHandler* pPostWeaponFireHandler ) { m_pPostWeaponFireHandler = pPostWeaponFireHandler; }
258
258
void SetTaskSimpleBeHitHandler ( TaskSimpleBeHitHandler* pTaskSimpleBeHitHandler ) { m_pTaskSimpleBeHitHandler = pTaskSimpleBeHitHandler; }
259
259
260
- constexpr
261
- CAnimBlendAssocGroupSAInterface * getAnimAssocGroupInterface ( AssocGroupId animGroup );
262
- AssocGroup_type CreateAnimBlendAssocGroup ( AssocGroupId animGroup );
263
-
264
260
PreWeaponFireHandler* m_pPreWeaponFireHandler;
265
261
PostWeaponFireHandler* m_pPostWeaponFireHandler;
266
262
TaskSimpleBeHitHandler* m_pTaskSimpleBeHitHandler;
Original file line number Diff line number Diff line change @@ -248,8 +248,6 @@ typedef std::unique_ptr < CAnimBlendAssocGroup > AssocGroup_type;
248
248
virtual void SetPreWeaponFireHandler ( PreWeaponFireHandler* pPreWeaponFireHandler ) = 0 ;
249
249
virtual void SetPostWeaponFireHandler ( PostWeaponFireHandler* pPostWeaponFireHandler ) = 0 ;
250
250
virtual void SetTaskSimpleBeHitHandler ( TaskSimpleBeHitHandler* pTaskSimpleBeHitHandler ) = 0 ;
251
-
252
- virtual AssocGroup_type CreateAnimBlendAssocGroup ( AssocGroupId animGroup ) = 0 ;
253
251
};
254
252
255
253
#endif
You can’t perform that action at this time.
0 commit comments