Refactor serialization copying to use source generators (#19412)
This commit is contained in:
@@ -313,13 +313,13 @@ public sealed class RCDSystem : EntitySystem
|
||||
}
|
||||
|
||||
[Serializable, NetSerializable]
|
||||
public sealed class RCDDoAfterEvent : DoAfterEvent
|
||||
public sealed partial class RCDDoAfterEvent : DoAfterEvent
|
||||
{
|
||||
[DataField("location", required: true)]
|
||||
public readonly EntityCoordinates Location = default!;
|
||||
public EntityCoordinates Location = default!;
|
||||
|
||||
[DataField("startingMode", required: true)]
|
||||
public readonly RcdMode StartingMode = default!;
|
||||
public RcdMode StartingMode = default!;
|
||||
|
||||
private RCDDoAfterEvent()
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user