OpenBarnyard
 
Loading...
Searching...
No Matches
ACollisionModel.cpp
Go to the documentation of this file.
1#include "pch.h"
2#include "ACollisionModel.h"
3
4//-----------------------------------------------------------------------------
5// Enables memory debugging.
6// Note: Should be the last include!
7//-----------------------------------------------------------------------------
9
11
12// $Barnyard: FUNCTION 00618b40
14 : m_pModel( TNULL )
15{
16}
17
18// $Barnyard: FUNCTION 0061a7b0
19// $Barnyard: FUNCTION 00618fe0
23
24TBOOL ACollisionModel::Create( TINT a_iMeshIndex, Toshi::TModel* a_pModel )
25{
26 m_iMeshIndex = a_iMeshIndex;
27 m_pModel = a_pModel;
28
29 TASSERT( !"Not implemented" );
30
31 return TTRUE;
32}
#define TASSERT(X,...)
Definition Defines.h:138
#define TOSHI_NAMESPACE_USING
Definition Defines.h:46
#define TNULL
Definition Typedefs.h:23
int TINT
Definition Typedefs.h:7
#define TTRUE
Definition Typedefs.h:25
bool TBOOL
Definition Typedefs.h:6
TBOOL Create(TINT a_iMeshIndex, Toshi::TModel *a_pModel)
virtual ~ACollisionModel()