fix: changed getter Iterable type

pull/218/head
alestiago 3 years ago
parent 4d256fe68a
commit 8d5d2897da

@ -34,7 +34,7 @@ class Blueprint {
List<Component> get components => List.unmodifiable(_components); List<Component> get components => List.unmodifiable(_components);
/// Returns a copy of the blueprints built by this blueprint. /// Returns a copy of the blueprints built by this blueprint.
List<Component> get blueprints => List.unmodifiable(_blueprints); List<Blueprint> get blueprints => List.unmodifiable(_blueprints);
} }
/// Adds helper methods regarding [Blueprint]s to [FlameGame]. /// Adds helper methods regarding [Blueprint]s to [FlameGame].

Loading…
Cancel
Save