8 lines
179 B
GDScript
8 lines
179 B
GDScript
extends Node
|
|
|
|
func time_to_seconds(hours_value : int, seconds_value : int) -> int:
|
|
return 0
|
|
|
|
func seconds_to_time(seconds : int) -> Dictionary:
|
|
return {"Hours":0,"Seconds":0}
|
|
|