Setup NPC director

This commit is contained in:
koritsa
2026-06-01 16:26:15 +03:00
committed by koritsa
parent 4427627e7d
commit 0b59f740c9
17 changed files with 590 additions and 50 deletions
+15
View File
@@ -13,3 +13,18 @@ enum class EBodyPart : uint8
Ass = 2,
Genitals = 3,
};
#define LOCTEXT_NAMESPACE "BodyPart"
inline FText BodyPartText(const EBodyPart Part)
{
switch (Part)
{
case EBodyPart::Boobs: return LOCTEXT("Boobs", "boobs");
case EBodyPart::Ass: return LOCTEXT("Ass", "ass");
case EBodyPart::Genitals: return LOCTEXT("Genitals", "genitals");
default: return LOCTEXT("None", "nothing");
}
}
#undef LOCTEXT_NAMESPACE