From 50bda5534253fc0d5b6abecfe162f6449d86b6f3 Mon Sep 17 00:00:00 2001 From: RuiAlonso Date: Thu, 21 Apr 2022 11:59:56 +0200 Subject: [PATCH] chore: doc for arrow sprites state --- .../lib/src/components/spaceship_ramp.dart | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/packages/pinball_components/lib/src/components/spaceship_ramp.dart b/packages/pinball_components/lib/src/components/spaceship_ramp.dart index d331c827..00d2445c 100644 --- a/packages/pinball_components/lib/src/components/spaceship_ramp.dart +++ b/packages/pinball_components/lib/src/components/spaceship_ramp.dart @@ -13,19 +13,19 @@ enum SpaceshipRampArrowSpriteState { /// Arrow with no dashes lit up. inactive, - /// Arrow with 1 dash lit up. + /// Arrow with 1 light lit up. active1, - /// Arrow with 2 dashes lit up. + /// Arrow with 2 lights lit up. active2, - /// Arrow with 3 dashes lit up. + /// Arrow with 3 lights lit up. active3, - /// Arrow with 4 dashes lit up. + /// Arrow with 4 lights lit up. active4, - /// Arrow with all 5 dashes lit up. + /// Arrow with all 5 lights lit up. active5, }