summaryrefslogtreecommitdiff
path: root/src/skill_modifiers.hpp
blob: 5e90b00080fc96c906eda16648b4911b33431119 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#pragma once

#include "h-basic.h"
#include "skills_defs.hpp"
#include "skill_modifier.hpp"

#include <vector>

struct skill_modifiers
{
	/**
	 * Skill modifiers indexed by skill. Note that this vector
	 * may be shorter than the s_descriptors vector.
	 */
	std::vector<skill_modifier> modifiers;

};