9 lines
179 B
GDScript3
9 lines
179 B
GDScript3
|
|
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}
|
||
|
|
|