From 0c1636355918a82df0ec188252c8f90487206c7b Mon Sep 17 00:00:00 2001 From: Justin Worthe Date: Sat, 18 Aug 2018 22:18:01 +0200 Subject: Implemented maximum number of energy buildings in a row --- src/engine/constants.rs | 2 ++ 1 file changed, 2 insertions(+) (limited to 'src/engine/constants.rs') diff --git a/src/engine/constants.rs b/src/engine/constants.rs index 9ece36d..60e8101 100644 --- a/src/engine/constants.rs +++ b/src/engine/constants.rs @@ -26,6 +26,8 @@ pub const ENERGY_GENERATED_TOWER: u16 = 3; pub const ENERGY_PRICE: u16 = 20; pub const ENERGY_CONSTRUCTION_TIME: u8 = 1; +pub const ENERGY_MAX_IN_ROW: u32 = 2; + pub const IRON_CURTAIN_PRICE: u16 = 100; pub const IRON_CURTAIN_UNLOCK_INTERVAL: u16 = 30; pub const IRON_CURTAIN_DURATION: u8 = 6; -- cgit v1.2.3