| 859 | } |
| 860 | |
| 861 | BitSet<>* EntitySystemHelpersBase::GetReplicationFlags(EntityHandle const& entity, ExtComponentType type) |
| 862 | { |
| 863 | if (components_[(unsigned)type].ReplicationIndex == UndefinedReplicationComponent) { |
| 864 | return nullptr; |
| 865 | } |
| 866 | |
| 867 | return GetReplicationFlags(entity, components_[(unsigned)type].ReplicationIndex); |
| 868 | } |
| 869 | |
| 870 | BitSet<>* EntitySystemHelpersBase::GetReplicationFlags(EntityHandle const& entity, ReplicationTypeIndex replicationType) |
| 871 | { |
nothing calls this directly
no test coverage detected