progress on resolving deps

This commit is contained in:
ed
2025-02-01 16:05:53 -05:00
parent 9459ae066a
commit e30f65a86b
17 changed files with 178 additions and 53 deletions
+15
View File
@@ -0,0 +1,15 @@
#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];
};