Skip to content

Commit

Permalink
Merge pull request #42554 from Jerimee/doxygenHelloWorld
Browse files Browse the repository at this point in the history
m doxygen name.h
  • Loading branch information
ZhilkinSerg authored Jul 30, 2020
2 parents ec90ed2 + 2e67aed commit 2996053
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions src/name.h
Original file line number Diff line number Diff line change
Expand Up @@ -6,15 +6,21 @@

#include "enum_traits.h"

/// @brief types of proper noun tables
enum class nameFlags : int {
/// Masculine first names, also used for Unisex
IsMaleName = 1 << 0,
/// Feminine first names, also used for Unisex
IsFemaleName = 1 << 1,
IsUnisexName = IsMaleName | IsFemaleName,
IsGivenName = 1 << 2,
IsFamilyName = 1 << 3,
IsNickName = 1 << 4,
/// Names of cities and towns in game
IsTownName = 1 << 5,
/// Full names of crowdfunding donors
IsFullName = 1 << 6,
/// Name belongs to list for world config saves. Seen in start menu.
IsWorldName = 1 << 7
};

Expand Down

0 comments on commit 2996053

Please sign in to comment.