* Копипаст смуглефа * Дорожная карта санрайза * Мелкие фиксы * Небольшие фиксы --------- Co-authored-by: DrSmugleaf <drsmugleaf@gmail.com>
20 lines
451 B
C#
20 lines
451 B
C#
using Robust.Client.AutoGenerated;
|
|
using Robust.Client.UserInterface.Controls;
|
|
using Robust.Client.UserInterface.XAML;
|
|
|
|
namespace Content.Client._Sunrise.Roadmap;
|
|
|
|
[GenerateTypedNameReferences]
|
|
public sealed partial class RoadmapVersionHeader : BoxContainer
|
|
{
|
|
public string? Text
|
|
{
|
|
get => Version.Text;
|
|
set => Version.Text = value;
|
|
}
|
|
|
|
public RoadmapVersionHeader()
|
|
{
|
|
RobustXamlLoader.Load(this);
|
|
}
|
|
}
|