A very small amount of work on Manager class

This commit is contained in:
2026-08-28 20:41:40 -04:00
parent 54004e4e34
commit b335a63f61
4 changed files with 77 additions and 1 deletions

18
include/TerribleMap.h Normal file
View File

@@ -0,0 +1,18 @@
#ifndef TERRIBLEMAP_H
#define TERRIBLEMAP_H
#include <LinkedList.h>
template <typename K, typename V>
struct Entry {
K key;
V value;
};
template <typename K, typename V>
class TerribleMap {
private:
LinkedList<Entry<K,V>> mapList;
};
#endif