From b6413251a866c76538869b84ed1c9b9852f7c507 Mon Sep 17 00:00:00 2001 From: Spartan322 Date: Fri, 22 Dec 2023 23:01:51 -0500 Subject: Apply type hints to menu scripts --- game/src/Game/Autoload/Resolution.gd | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'game/src/Game/Autoload/Resolution.gd') diff --git a/game/src/Game/Autoload/Resolution.gd b/game/src/Game/Autoload/Resolution.gd index 73169fb..9dddb29 100644 --- a/game/src/Game/Autoload/Resolution.gd +++ b/game/src/Game/Autoload/Resolution.gd @@ -27,7 +27,7 @@ var _resolutions : Array[Vector2i] const _regex_pattern : String = "(\\d+)\\s*[xX,]\\s*(\\d+)" var _regex : RegEx -func _ready(): +func _ready() -> void: assert(minimum_resolution.x > 0 and minimum_resolution.y > 0, "Minimum resolution must be positive!") for resolution_value in _starting_resolutions: add_resolution(resolution_value) @@ -53,7 +53,7 @@ func get_resolution_value_list() -> Array[Vector2i]: var list : Array[Vector2i] = [] # Return a sorted copy instead of a reference to the private array list.append_array(_resolutions) - list.sort_custom(func(a, b): return a > b) + list.sort_custom(func(a : Vector2i, b : Vector2i) -> bool: return a > b) return list func get_resolution_value_from_string(resolution_string : String) -> Vector2i: -- cgit v1.2.3-56-ga3b1