2018-06-14 17:19:53 +00:00
|
|
|
#pragma once
|
|
|
|
|
2018-11-24 18:55:16 +00:00
|
|
|
#include "Age.h"
|
2018-06-14 17:19:53 +00:00
|
|
|
#include <vector>
|
|
|
|
|
|
|
|
class PRMap
|
|
|
|
{
|
|
|
|
protected:
|
|
|
|
std::vector<Age> m_ages;
|
|
|
|
std::vector<std::vector<unsigned int>> m_PRs;
|
|
|
|
|
|
|
|
public:
|
|
|
|
unsigned int lookup(const Age &age, const unsigned int &points);
|
|
|
|
};
|