Conform to Sequence instead of LazySequenceProtocol for typed families

This commit is contained in:
Christian Treffs 2018-12-04 08:06:15 +01:00
parent 85f56ac576
commit 196dd312c7
1 changed files with 1 additions and 1 deletions

View File

@ -10,7 +10,7 @@
// * define read/write access
// * set size and storage constraints
public protocol TypedFamilyProtocol: AnyObject, Equatable, LazySequenceProtocol {
public protocol TypedFamilyProtocol: AnyObject, Equatable, Sequence {
associatedtype EntityComponentsSequence: EntityComponentsSequenceProtocol
var traits: FamilyTraitSet { get }