port from perforce
This commit is contained in:
28
evoke-64k/trunk/ev10/entityinfo.h
Normal file
28
evoke-64k/trunk/ev10/entityinfo.h
Normal file
@@ -0,0 +1,28 @@
|
||||
#pragma once
|
||||
|
||||
#include "defines.h"
|
||||
#include <d3d9.h>
|
||||
#include <d3dx9math.h>
|
||||
|
||||
struct SEntityInfo
|
||||
{
|
||||
D3DXVECTOR3 m_v3Pos;
|
||||
D3DXVECTOR3 m_v3Rot;
|
||||
D3DXVECTOR3 m_v3Scale;
|
||||
|
||||
D3DXVECTOR3 m_v3Move;
|
||||
int m_iTimeStart;
|
||||
int m_iTimeLength;
|
||||
};
|
||||
|
||||
const int m_iMaxEntityCount= 96;
|
||||
#ifdef EXTRACODE
|
||||
extern int m_iEntityCount;
|
||||
extern char m_pcEntityData[65536];
|
||||
extern SEntityInfo m_EntityInfos[ m_iMaxEntityCount ];
|
||||
#else
|
||||
#endif
|
||||
|
||||
extern int m_iEntityToObj[m_iMaxEntityCount];
|
||||
|
||||
void SetEntityPos( int iTime );
|
||||
Reference in New Issue
Block a user