Heimdall/app/SupportedApps/pyLoad.php

12 lines
239 B
PHP
Raw Normal View History

2018-03-21 15:07:16 +00:00
<?php namespace App\SupportedApps;
2018-03-21 15:17:12 +00:00
class pyLoad implements Contracts\Applications {
2018-03-21 15:07:16 +00:00
public function defaultColour()
{
2018-03-21 15:17:12 +00:00
return '#881';
2018-03-21 15:07:16 +00:00
}
public function icon()
{
2018-03-21 15:17:12 +00:00
return 'supportedapps/pyload.png';
2018-03-21 15:07:16 +00:00
}
}