namespace Svelto.ECS
{
///
/// This EntityStream can be used in parallel jobs, but does NOT guarantee order.
///
///
public struct ThreadSafeNativeEntityStream : ITypeSafeStream
{
public ThreadSafeNativeEntityStream(EntitiesDB entitiesDB)
{
}
public void Dispose()
{
}
///
/// I am thinking to pass the component and do the queryEntity only as a validation
///
///
///
public void PublishEntityChange(in T entityComponent, EGID id)
{
#if DEBUG && !PROFILE_SVELTO
#endif
}
}
}