Files
metadesk/code/base/math.h
T
2025-02-01 16:05:53 -05:00

16 lines
187 B
C

#if MD_INTELLISENSE_DIRECTIVES
#pragma once
#include "base/base_types.h"
#endif
typedef union Rng1U64 Rng1U64;
union Rng1U64
{
struct
{
U64 min;
U64 max;
};
U64 v[2];
};