Add libGDX

This commit is contained in:
Steffen Lange 2024-02-26 18:24:26 +01:00
parent a112980c20
commit 6e45a3dbf9

14
modules/LibGDX.php Normal file
View file

@ -0,0 +1,14 @@
<?php
class LibGDX extends PatchBase {
function __construct() {
parent::__construct('Mario Zechner & Nathan Sweet', 'libGDX', 'https://libgdx.com/');
}
function check() : bool {
if ($this->fetch_json('https://api.github.com/repos/libgdx/libgdx/releases/latest'))
return $this->parse_json('tag_name');
return false;
}
}
?>