File tree Expand file tree Collapse file tree
CrewAssignments/Components
CrewMetaRecords/Components Expand file tree Collapse file tree Original file line number Diff line number Diff line change 22
33namespace Content . Shared . CrewAssignments . Components ;
44
5- [ RegisterComponent , NetworkedComponent ]
6- [ AutoGenerateComponentState ]
5+ [ RegisterComponent ]
76public sealed partial class CrewAssignmentsComponent : Component
87{
98 [ DataField ]
10- [ AutoNetworkedField ]
119 public Dictionary < int , CrewAssignment > CrewAssignments { get ; set ; } = new ( ) ;
1210 [ DataField ]
13- [ AutoNetworkedField ]
1411 public int NextID = 1 ;
1512 public bool TryGetAssignment ( int id , out CrewAssignment ? assignment )
1613 {
Original file line number Diff line number Diff line change 11using Content . Shared . CrewAssignments . Prototypes ;
22using Content . Shared . CrewAssignments . Systems ;
3+ using Content . Shared . MessageBoard . Components ;
34using Robust . Shared . GameStates ;
45using Robust . Shared . Prototypes ;
56
67namespace Content . Shared . CrewMetaRecords ;
78
8- [ RegisterComponent , NetworkedComponent ]
9- [ AutoGenerateComponentState ]
9+ [ RegisterComponent ]
1010public sealed partial class CrewMetaRecordsComponent : Component
1111{
1212 [ DataField ]
@@ -23,6 +23,9 @@ public sealed partial class CrewMetaRecordsComponent : Component
2323 public List < WorldObjectivesEntry > CompletedObjectives { get ; set ; } = new ( ) ;
2424 [ DataField ]
2525 public List < CodexEntry > CodexEntries { get ; set ; } = new ( ) ;
26+
27+ [ DataField ]
28+ public List < MessageBoardEntry > MessageBoardEntries { get ; set ; } = new ( ) ;
2629 [ DataField ]
2730 [ AutoNetworkedField ]
2831 public Dictionary < string , CrewMetaRecord > CrewMetaRecords { get ; set ; } = new ( ) ;
Original file line number Diff line number Diff line change 22
33namespace Content . Shared . CrewRecords . Components ;
44
5- [ RegisterComponent , NetworkedComponent ]
6- [ AutoGenerateComponentState ]
5+ [ RegisterComponent ]
76public sealed partial class CrewRecordsComponent : Component
87{
98 [ DataField ]
10- [ AutoNetworkedField ]
119 public Dictionary < string , CrewRecord > CrewRecords { get ; set ; } = new ( ) ;
1210
1311 public bool TryGetRecord ( string name , out CrewRecord ? record )
You can’t perform that action at this time.
0 commit comments