mirror of
https://github.com/YGGverse/Yoda.git
synced 2026-04-01 00:55:28 +00:00
23 lines
No EOL
398 B
PHP
23 lines
No EOL
398 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace Yggverse\Yoda\Entity\Menu\Bar;
|
|
|
|
class Main
|
|
{
|
|
public \GtkMenuBar $bar;
|
|
|
|
public \Yggverse\Yoda\Entity\Menu\Item\Yoda $yoda;
|
|
|
|
public function __construct()
|
|
{
|
|
$this->bar = new \GtkMenuBar();
|
|
|
|
$this->yoda = new \Yggverse\Yoda\Entity\Menu\Item\Yoda();
|
|
|
|
$this->bar->append(
|
|
$this->yoda->item
|
|
);
|
|
}
|
|
} |