15 lines
255 B
GDScript
15 lines
255 B
GDScript
extends Button
|
|
|
|
@export var bribe: Production
|
|
|
|
signal bribe_succees
|
|
|
|
func _ready() -> void:
|
|
sync()
|
|
|
|
func sync():
|
|
text = str(bribe.amount) + " of " + bribe.currency.name
|
|
|
|
func _on_pressed() -> void:
|
|
if Economy.do_bribing(bribe):
|
|
bribe_succees.emit()
|