From 33425de6273c19199d4cff0780f08dbbe94ad0ed Mon Sep 17 00:00:00 2001 From: yellows8 Date: Thu, 2 Apr 2020 14:42:51 -0400 Subject: [PATCH] Added UtilFloat3. --- nx/include/switch/types.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/nx/include/switch/types.h b/nx/include/switch/types.h index 4941fe2c..0dd6555b 100644 --- a/nx/include/switch/types.h +++ b/nx/include/switch/types.h @@ -47,6 +47,8 @@ typedef void (*VoidFn)(void); ///< Function without arguments nor return v typedef struct { u8 uuid[0x10]; } Uuid; ///< Unique identifier. +typedef struct { float value[3]; } UtilFloat3; ///< 3 floats. + /// Creates a bitmask from a bit number. #ifndef BIT #define BIT(n) (1U<<(n))