Add Ebitengine

This commit is contained in:
Steffen Lange 2024-02-26 18:24:12 +01:00
parent 960db2f320
commit a112980c20

14
modules/Ebitengine.php Normal file
View file

@ -0,0 +1,14 @@
<?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;
}
}
?>