Start CCubeRenderer

This commit is contained in:
2025-01-29 23:34:30 -07:00
parent 9562b0dce0
commit 636613d434
10 changed files with 375 additions and 10 deletions

11
libc/type_traits Normal file
View File

@@ -0,0 +1,11 @@
#ifndef _TYPE_TRAITS
#define _TYPE_TRAITS
namespace std {
template < typename T >
struct type_identity {
typedef T type;
};
} // namespace std
#endif // _TYPE_TRAITS