fish-station/Content.Client/_Sunrise/HelpChoice/HelpChoiceWindow.xaml
Copilot aba00f7e8f
Implement Mentor Help System (MHelp) - Complete Ticket-based Help for Game Questions (#2915)
Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com>
Co-authored-by: VigersRay <60344369+VigersRay@users.noreply.github.com>
Co-authored-by: Vigers Ray <vigersray@gmail.com>
2025-09-09 20:54:52 +03:00

14 lines
932 B
XML

<DefaultWindow xmlns="https://spacestation14.io"
SetSize="450 200"
Title="{Loc 'help-choice-title'}"
Resizable="False">
<BoxContainer Orientation="Vertical">
<RichTextLabel Text="{Loc 'help-choice-title-label'}" HorizontalAlignment="Center"/>
<BoxContainer Orientation="Horizontal" HorizontalAlignment="Center" SeparationOverride="20">
<Button Name="AHelpButton" Text="{Loc 'help-choice-ahelp-button'}" SetSize="160 45" HorizontalAlignment="Center" Access="Public"/>
<Button Name="MentorHelpButton" Text="{Loc 'help-choice-mhelp-button'}" SetSize="160 45" HorizontalAlignment="Center" Access="Public"/>
</BoxContainer>
<RichTextLabel Name="AHelpDescLabel" Text="{Loc 'help-choice-ahelp-desc-label'}"/>
<RichTextLabel Name="MHelpDescLabel" Text="{Loc 'help-choice-mhelp-desc-label'}"/>
</BoxContainer>
</DefaultWindow>