NotekeeperUiState.cs 309 B

1234567891011121314
  1. using Robust.Shared.Serialization;
  2. namespace Content.Shared.CartridgeLoader.Cartridges;
  3. [Serializable, NetSerializable]
  4. public sealed class NotekeeperUiState : BoundUserInterfaceState
  5. {
  6. public List<string> Notes;
  7. public NotekeeperUiState(List<string> notes)
  8. {
  9. Notes = notes;
  10. }
  11. }