mirror of
https://github.com/tonytins/citylimits.git
synced 2025-03-23 15:42:19 +00:00
8 lines
197 B
GDScript3
8 lines
197 B
GDScript3
|
extends Node
|
||
|
|
||
|
var power_grid: int # Number of power stations in the area. Helps provide redundancies.
|
||
|
var power_capacity: int
|
||
|
var current_power_cap: int
|
||
|
var prev_power_cap: int
|
||
|
var has_power: bool
|