CommonLibSSE NG
Loading...
Searching...
No Matches
Sexes.h
Go to the documentation of this file.
1#pragma once
2
3namespace RE
4{
5 struct SEXES
6 {
7 enum SEX : std::uint32_t
8 {
9 kNone = static_cast<std::underlying_type_t<SEX>>(-1),
10 kMale = 0,
11 kFemale = 1,
12
13 kTotal = 2
14 };
15 };
16 using SEX = SEXES::SEX;
17}
Definition AbsorbEffect.h:6
Definition Sexes.h:6
SEX
Definition Sexes.h:8