- Eliminate some stale code out of intvec.h.

This commit is contained in:
Mitchell Richters 2021-12-22 20:49:30 +11:00 committed by Christoph Oelckers
parent b24f07f281
commit cab4ddb1c8

View file

@ -44,27 +44,5 @@ struct vec3_t
};
#if 0
struct FVector2
{
float x, y;
};
struct vec3_16_t
{
union
{
struct
{
int16_t x, y, z;
};
vec2_16_t vec2;
};
};
#endif
FSerializer& Serialize(FSerializer& arc, const char* key, vec2_t& c, vec2_t* def);
FSerializer& Serialize(FSerializer& arc, const char* key, vec3_t& c, vec3_t* def);