// // // #pragma once #include "hash.h" #include "../Autoarr/Autoarr2.hpp" template class Hashtable2{ uint8 hein; public: Autoarr2* Keys; Autoarr2* Values; Hashtable2(); TValue Get(TKey key); TValue GetPtr(TKey key); bool AddOrSet(TKey key, TValue); bool Remove(TKey); ~Hashtable2(); };