diff options
Diffstat (limited to '')
| -rw-r--r-- | Rsc/Identities.hpp | 42 |
1 files changed, 42 insertions, 0 deletions
diff --git a/Rsc/Identities.hpp b/Rsc/Identities.hpp new file mode 100644 index 0000000..08ffaae --- /dev/null +++ b/Rsc/Identities.hpp @@ -0,0 +1,42 @@ +/* Identities (Radio) */
+
+class CfgIdentities {
+ class WFHQ_EN0_EP1 {
+ name = "Benny";
+ face = "Default";
+ glasses = "None";
+ speaker = "Male01EN";
+ pitch = 1.0;
+ };
+ class WFHQ_EN1_EP1 : WFHQ_EN0_EP1 {
+ speaker = "Male02EN";
+ };
+ class WFHQ_EN2_EP1 : WFHQ_EN0_EP1 {
+ speaker = "Male03EN";
+ };
+ class WFHQ_EN3_EP1 : WFHQ_EN0_EP1 {
+ speaker = "Male04EN";
+ };
+ class WFHQ_EN4_EP1 : WFHQ_EN0_EP1 {
+ speaker = "Male05EN";
+ };
+ class WFHQ_EN5_EP1 : WFHQ_EN0_EP1 {
+ speaker = "Female01EN_EP1";
+ };
+
+ class WFHQ_TK0_EP1 : WFHQ_EN0_EP1 {
+ speaker = "Male01TK";
+ };
+ class WFHQ_TK1_EP1 : WFHQ_EN0_EP1 {
+ speaker = "Male02TK";
+ };
+ class WFHQ_TK2_EP1 : WFHQ_EN0_EP1 {
+ speaker = "Male03TK";
+ };
+ class WFHQ_TK3_EP1 : WFHQ_EN0_EP1 {
+ speaker = "Male04TK";
+ };
+ class WFHQ_TK4_EP1 : WFHQ_EN0_EP1 {
+ speaker = "Male05TK";
+ };
+};
\ No newline at end of file |
