mirror of
https://github.com/YGGverse/Yoda.git
synced 2026-03-31 16:45:27 +00:00
18 lines
No EOL
280 B
PHP
18 lines
No EOL
280 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace Yggverse\Yoda\Entity\Button;
|
|
|
|
class Back
|
|
{
|
|
public \GtkButton $button;
|
|
|
|
public function __construct(
|
|
?string $label = 'Back'
|
|
) {
|
|
$this->button = \GtkButton::new_with_label(
|
|
$label
|
|
);
|
|
}
|
|
} |