Files
tbd-station-14/Content.Client/Credits/CreditsWindow.xaml
Thomas df5e6a2b5c Add RGA/RSI to Credits (#36704)
* Add RGA and RSI to Credits

* Move to thread + add directory field
2025-04-21 12:24:44 +02:00

37 lines
1.5 KiB
XML

<DefaultWindow xmlns="https://spacestation14.io"
Title="{Loc 'credits-window-title'}"
SetSize="650 650">
<TabContainer Name="MasterTabContainer">
<ScrollContainer Name="Ss14ContributorsTab"
HScrollEnabled="False">
<BoxContainer Name="Ss14ContributorsContainer"
Orientation="Vertical"
Margin="2 2 0 0">
<!-- Contributors get added here by code -->
</BoxContainer>
</ScrollContainer>
<ScrollContainer Name="PatronsTab"
HScrollEnabled="False">
<BoxContainer Name="PatronsContainer"
Orientation="Vertical"
Margin="2 2 0 0">
<!-- Patrons get added here by code -->
</BoxContainer>
</ScrollContainer>
<ScrollContainer Name="LicensesTab"
HScrollEnabled="False">
<BoxContainer Name="LicensesContainer"
Orientation="Vertical"
Margin="2 2 0 0">
<!-- Licenses get added here by code -->
</BoxContainer>
</ScrollContainer>
<ScrollContainer Name="AttributionsTab"
HScrollEnabled="False">
<BoxContainer Name="AttributionsContainer"
Orientation="Vertical"
Margin="2 2 0 0" />
</ScrollContainer>
</TabContainer>
</DefaultWindow>