[ox/mc] Add basic walking of data by data descriptor

This commit is contained in:
2019-03-07 06:05:08 -06:00
parent 8b7db3d544
commit cd91f6b60a
15 changed files with 571 additions and 168 deletions

View File

@@ -18,8 +18,8 @@ class HashMap {
private:
struct Pair {
K key;
T value;
K key = {};
T value = {};
};
Vector<K> m_keys;
Vector<Pair*> m_pairs;