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

#include "h-basic.hpp"
#include "object_flag_set.hpp"

/**
 * For level gaining artifacts
 */
struct flags_group
{
	char name[30] { };                       /* Name */
	byte color = 0;                          /* Color */

	byte price = 0;                          /* Price to "buy" it */

	object_flag_set flags;                   /* Flags set */
};