Files
ai-images/Source/AIImages/Services/IPawnDescriptionService.cs

27 lines
905 B
C#
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
using AIImages.Models;
using Verse;
namespace AIImages.Services
{
/// <summary>
/// Интерфейс сервиса для извлечения данных о внешности персонажа
/// </summary>
public interface IPawnDescriptionService
{
/// <summary>
/// Извлекает данные о внешности персонажа
/// </summary>
PawnAppearanceData ExtractAppearanceData(Pawn pawn);
/// <summary>
/// Получает текстовое описание внешности для отображения в UI
/// </summary>
string GetAppearanceDescription(Pawn pawn);
/// <summary>
/// Получает текстовое описание одежды для отображения в UI
/// </summary>
string GetApparelDescription(Pawn pawn);
}
}