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

14 lines
338 B
PHP

<?php
class Ebitengine extends PatchBase {
function __construct() {
parent::__construct('Hajime Hoshi', 'Ebitengine', 'https://ebitengine.org/');
}
function check() : bool {
if ($this->fetch_json('https://api.github.com/repos/hajimehoshi/ebiten/releases/latest'))
return $this->parse_json('tag_name');
return false;
}
}
?>