Add Bevy Engine

This commit is contained in:
Steffen Lange 2024-05-31 19:02:09 +02:00
parent 326476322b
commit a05953d43a

14
modules/Bevy.php Normal file
View file

@ -0,0 +1,14 @@
<?php
class Bevy extends PatchBase {
function __construct() {
parent::__construct('Bevy Contributors', 'Bevy', 'https://bevyengine.org/');
}
function check() : bool {
if ($this->fetch_json('https://api.github.com/repos/bevyengine/bevy/releases/latest'))
return $this->parse_json('tag_name');
return false;
}
}
?>