ESGRAF48/source/ResultWidget/PRMap.h

15 lines
226 B
C
Raw Permalink Normal View History

2018-06-14 17:19:53 +00:00
#pragma once
#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);
};