PatchBot/modules/LibGDX.php
2024-02-26 18:24:26 +01:00

14 lines
337 B
PHP

<?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;
}
}
?>