mirror of
https://gitee.com/freeyz/godot-mota.git
synced 2024-12-23 01:19:30 +08:00
8 lines
151 B
GDScript
8 lines
151 B
GDScript
extends Button
|
|
|
|
class_name SaveGameButton
|
|
|
|
func _on_SaveGameButton_pressed():
|
|
GameArchiveManager.save_to_index(0)
|
|
pass # Replace with function body.
|