EHM DAL 0.2.3
Data abstraction layer for Eastside Hockey Manager
Loading...
Searching...
No Matches
current_ability.h
1#pragma once
2
3// Application headers
4#include "include/data_types/attribute/reputation_200.h"
5
6namespace ehm_dal::data_types {
11class CurrentAbility : public Reputation200<qint16>
12{
13public:
14 CurrentAbility(const qint16 value = 0)
16 {}
17};
18
19} // namespace ehm_dal::data_types
The CurrentAbility class is a qint16 class for 0-200 current ability ranges.
Definition: current_ability.h:12
T value() const
Returns the raw value which can otherwise be accessed via QVariant data(const qint32 role).
Definition: data_type.h:33
The Reputation200 class is a template class for 0-200 reputation attribute ranges.
Definition: reputation_200.h:12
namespace ehm_dal::data_types
Definition: attribute.h:6