2017-06-06 05:31:56 +00:00
|
|
|
/* (c) Magnus Auvinen. See licence.txt in the root of the distribution for more information. */
|
|
|
|
/* If you are missing that file, acquire a complete release at teeworlds.com. */
|
|
|
|
#ifndef GAME_EXTRAINFO_H
|
|
|
|
#define GAME_EXTRAINFO_H
|
|
|
|
|
|
|
|
#include <base/vmath.h>
|
|
|
|
|
|
|
|
bool UseExtraInfo(const CNetObj_Projectile *pProj);
|
2019-05-21 08:51:43 +00:00
|
|
|
void ExtractInfo(const CNetObj_Projectile *pProj, vec2 *StartPos, vec2 *StartVel);
|
2017-06-06 05:31:56 +00:00
|
|
|
void ExtractExtraInfo(const CNetObj_Projectile *pProj, int *Owner, bool *Explosive, int *Bouncing, bool *Freeze);
|
|
|
|
void SnapshotRemoveExtraInfo(unsigned char *pData);
|
|
|
|
|
|
|
|
#endif
|