GhostRoleInfoBox.xaml.cs 509 B

123456789101112131415161718
  1. using Robust.Client.AutoGenerated;
  2. using Robust.Client.UserInterface.Controls;
  3. using Robust.Client.UserInterface.XAML;
  4. namespace Content.Client.UserInterface.Systems.Ghost.Controls.Roles
  5. {
  6. [GenerateTypedNameReferences]
  7. public sealed partial class GhostRoleInfoBox : BoxContainer
  8. {
  9. public GhostRoleInfoBox(string name, string description)
  10. {
  11. RobustXamlLoader.Load(this);
  12. Title.Text = name;
  13. Description.SetMessage(description);
  14. }
  15. }
  16. }