Add headers, clang-format, decompctx.py & more

This commit is contained in:
2022-04-09 20:17:06 -04:00
parent 7f90b8de58
commit 53f8d3cba7
83 changed files with 3919 additions and 2665 deletions

15
include/rstl/map.hpp Normal file
View File

@@ -0,0 +1,15 @@
#ifndef _RSTL_MAP_HPP
#define _RSTL_MAP_HPP
#include "types.h"
#include "rmemory_allocator.hpp"
namespace rstl {
template < typename K, typename V, typename Alloc = rmemory_allocator >
class map {
u8 pad[0x10];
};
} // namespace rstl
#endif