csharpdeeb25a2 | 1 | #nullable enable |
| 2 | using CascadeIDE.Features.Chat; |
| 3 | using CascadeIDE.Models; |
| 4 | |
| 5 | namespace CascadeIDE.Views.Chat.Skia; |
| 6 | |
| 7 | /// <summary>Тонкая обёртка над <see cref="ChatSurfaceEntityFactory"/>.</summary> |
| 8 | internal static class SkiaChatSceneBuilder |
| 9 | { |
| 10 | public static IReadOnlyList<ISkiaChatEntity> Build( |
| 11 | ChatSurfaceSnapshot snapshot, |
| 12 | bool overviewMode, |
| 13 | Guid detailThreadId, |
| 14 | bool forwardHost = false, |
| 15 | IntercomFontsSettings? intercomFonts = null, |
| 16 | bool compactSideHost = false) => |
| 17 | ChatSurfaceEntityFactory.Build(snapshot, overviewMode, detailThreadId, forwardHost, intercomFonts, compactSideHost); |
| 18 | } |
| 19 | |
View only · write via MCP/CIDE