using Unity.Entities; using Unity.NetCode; namespace Unity.MegaCity.Gameplay { /// /// Move the player mesh to allow nice cosmetic effects like rolling and breaking the car /// [GhostComponent(PrefabType = GhostPrefabType.PredictedClient)] public struct PlayerVehicleCosmeticPhysics : IComponentData { public Entity VehicleEntity; } }