#pragma once #include #include #include "h-basic.hpp" /* * Store owner descriptor. */ struct owner_type { /** * Name */ std::string name; /** * Purse limit */ s16b max_cost = 0; /** * Inflation */ s16b inflation = 0; /** * Liked/hated races. */ std::array, 2> races { }; /** * Liked/hated classes */ std::array, 2> classes { }; /** * Costs for liked people */ std::array costs { }; };