summaryrefslogtreecommitdiff
path: root/src/flags_group.hpp
blob: 84809e3730c3303091c703a1d30b6733ef118633 (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 "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 */
};