Error
Microsoft (R) Visual C# Compiler version 3.8.0-dev.20527.1 (53dc6556)
Copyright (C) Microsoft Corporation. All rights reserved.
error NetCode: struct Unity.Physics.Stateful.StatefulTriggerEvent cannot implement Buffer,Buffer interfaces at the same time
error NetCode: struct Unity.Physics.Stateful.StatefulCollisionEvent cannot implement Buffer,Buffer interfaces at the same time
I just implemented DOTS Physics using a similar pattern as this sample: https://github.com/Unity-Technologies/EntityComponentSystemSamples/blob/master/PhysicsSamples/Assets/Demos/2.%20Setup/2d.%20Events/2d1.%20Triggers/2d1a.%20Triggers%20-%20Change%20Material.unity
I basically copy and pasted the same files into my project to create StatefulTriggerEvents out of TriggerEvents. Everything worked fine.
I then added NetCode and now I am receiving this error and do not understand what could have happened.