2018-08-19 09:46:58 +02:00
|
|
|
#pragma once
|
2020-05-28 15:17:34 +02:00
|
|
|
#include "box.h"
|
2018-08-19 09:46:58 +02:00
|
|
|
|
2020-05-30 15:55:23 +02:00
|
|
|
struct ANIM_FRAME
|
|
|
|
{
|
|
|
|
short MinX;
|
|
|
|
short MaxX;
|
|
|
|
short MinY;
|
|
|
|
short MaxY;
|
|
|
|
short MinZ;
|
|
|
|
short MaxZ;
|
|
|
|
short OffsetX;
|
|
|
|
short OffsetY;
|
|
|
|
short OffsetZ;
|
|
|
|
unsigned short AngleSets[]; // Variable size
|
|
|
|
};
|
|
|
|
|
2020-04-15 18:30:34 +02:00
|
|
|
extern BITE_INFO EnemyBites[9];
|
2020-04-14 06:11:10 +02:00
|
|
|
extern int LightningCount;
|
|
|
|
extern int LightningRand;
|
|
|
|
extern int StormTimer;
|
|
|
|
extern int dLightningRand;
|
|
|
|
extern byte SkyStormColor[3];
|
|
|
|
extern byte SkyStormColor2[3];
|
2020-04-24 19:15:05 +02:00
|
|
|
extern int GnFrameCounter;
|
2020-04-20 07:14:54 +02:00
|
|
|
|
2019-12-02 14:49:19 +01:00
|
|
|
int DrawPhaseGame();
|
|
|
|
int GetFrame_D2(ITEM_INFO* item, short* framePtr[], int* rate);
|
2020-04-14 06:11:10 +02:00
|
|
|
void UpdateStorm();
|
2020-04-14 07:13:31 +02:00
|
|
|
short* GetBoundsAccurate(ITEM_INFO* item);
|
|
|
|
short* GetBestFrame(ITEM_INFO* item);
|
|
|
|
int Sync();
|
|
|
|
bool TIME_Init();
|
|
|
|
bool TIME_Reset();
|
|
|
|
void DrawAnimatingItem(ITEM_INFO* item);
|
2020-05-27 09:21:20 +02:00
|
|
|
void GetLaraJointPosition(PHD_VECTOR* pos, int LM_enum);
|