mirror of
https://github.com/linuxserver/Heimdall.git
synced 2026-02-21 20:20:34 +09:00
13 lines
248 B
PHP
13 lines
248 B
PHP
<?php namespace App\SupportedApps;
|
|
|
|
class Headphones implements Contracts\Applications {
|
|
public function defaultColour()
|
|
{
|
|
return '#185';
|
|
}
|
|
public function icon()
|
|
{
|
|
return 'supportedapps/headphones.png';
|
|
}
|
|
}
|