From cab4ddb1c860904074590fc896d6d6071a3fe650 Mon Sep 17 00:00:00 2001 From: Mitchell Richters Date: Wed, 22 Dec 2021 20:49:30 +1100 Subject: [PATCH] - Eliminate some stale code out of `intvec.h`. --- source/core/intvec.h | 22 ---------------------- 1 file changed, 22 deletions(-) diff --git a/source/core/intvec.h b/source/core/intvec.h index 182ff56aa..11c6f76e6 100644 --- a/source/core/intvec.h +++ b/source/core/intvec.h @@ -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);