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