Added UtilFloat3.

This commit is contained in:
yellows8 2020-04-02 14:42:51 -04:00
parent 75c3d2eca4
commit 33425de627
No known key found for this signature in database
GPG Key ID: 0AF90DA3F1E60E43

View File

@ -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))