mirror of
https://github.com/PrimeDecomp/prime.git
synced 2025-12-16 10:57:01 +00:00
Continue work on CActor::UpdateAnimation; lots of headers n stuff
Former-commit-id: 85284f7640
This commit is contained in:
16
include/rstl/red_black_tree.hpp
Normal file
16
include/rstl/red_black_tree.hpp
Normal file
@@ -0,0 +1,16 @@
|
||||
#ifndef _RSTL_RED_BLACK_TREE_HPP
|
||||
#define _RSTL_RED_BLACK_TREE_HPP
|
||||
|
||||
#include "types.h"
|
||||
|
||||
namespace rstl {
|
||||
template < typename P >
|
||||
struct select1st {};
|
||||
|
||||
template < typename T >
|
||||
struct less {};
|
||||
|
||||
template < typename T, typename P, int U, typename S = select1st< P >, typename Cmp = less< T > >
|
||||
class red_black_tree {};
|
||||
}; // namespace rstl
|
||||
#endif
|
||||
Reference in New Issue
Block a user