FLResourceLibrary/FLGenerateLibrary/FreelancerCoreClasses/Sounds/VoiceProps.cs

14 lines
267 B
C#
Raw Normal View History

2025-05-13 15:23:06 +03:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace FLGenerateLibrary
{
public class VoiceProps
{
public string Voice;
public TypeGender gender;
public List<string> SupportsRoles;
}
}