From 196dd312c75352e38330b6f144a892370d5f195e Mon Sep 17 00:00:00 2001 From: Christian Treffs Date: Tue, 4 Dec 2018 08:06:15 +0100 Subject: [PATCH] Conform to Sequence instead of LazySequenceProtocol for typed families --- Sources/FirebladeECS/TypedFamily.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Sources/FirebladeECS/TypedFamily.swift b/Sources/FirebladeECS/TypedFamily.swift index 22687a9..18d6267 100644 --- a/Sources/FirebladeECS/TypedFamily.swift +++ b/Sources/FirebladeECS/TypedFamily.swift @@ -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 }