prime/include/rstl/map.hpp
Luke Street f7f0a8e140 More defs for CStateManagerContainer & friends
Former-commit-id: 04a7213fa7e2d7fd90653133ff4ea2764c0f29d5
2022-08-12 22:48:34 -04:00

19 lines
319 B
C++

#ifndef _RSTL_MAP_HPP
#define _RSTL_MAP_HPP
#include "types.h"
#include "rstl/rmemory_allocator.hpp"
namespace rstl {
template < typename T >
struct less {};
template < typename K, typename V, typename Cmp = less< K >, typename Alloc = rmemory_allocator >
class map {
u8 pad[0x10];
};
} // namespace rstl
#endif