mirror of
https://github.com/JHDev2006/Super-Mario-Bros.-Remastered-Public.git
synced 2025-10-22 07:28:14 +00:00
11 lines
165 B
GDScript
11 lines
165 B
GDScript
class_name AchievementProgressCalculator
|
|
extends Node
|
|
|
|
@export var target_number := 8
|
|
|
|
func _ready() -> void:
|
|
get_progress()
|
|
|
|
func get_progress() -> int:
|
|
return 0
|