pollen-not-included/addons/gdUnit4/test/update/resources/patches/v1.1.4/patch_a.gd
2024-05-02 09:36:31 +01:00

12 lines
283 B
GDScript

extends GdUnitPatch
func _init():
super(GdUnit4Version.parse("v1.1.4"))
func execute() -> bool:
var patches := Array()
if Engine.has_meta(PATCH_VERSION):
patches = Engine.get_meta(PATCH_VERSION)
patches.append(version())
Engine.set_meta(PATCH_VERSION, patches)
return true