mirror of
https://github.com/ddnet/ddnet.git
synced 2024-11-10 18:18:18 +00:00
5e723f6199
for some reason the client doesnt render extrainfo projectiles if the gamemode wasnt ddnet
14 lines
577 B
C
14 lines
577 B
C
/* (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);
|
|
void ExtractInfo(const CNetObj_Projectile *pProj, vec2 *StartPos, vec2 *StartVel);
|
|
void ExtractExtraInfo(const CNetObj_Projectile *pProj, int *Owner, bool *Explosive, int *Bouncing, bool *Freeze);
|
|
void SnapshotRemoveExtraInfo(unsigned char *pData);
|
|
|
|
#endif
|