mirror of
https://github.com/Ed94/metadesk.git
synced 2026-06-13 07:52:22 -07:00
16 lines
187 B
C
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];
|
|
};
|