add entity namespace

This commit is contained in:
yggverse 2024-04-10 07:08:49 +03:00
parent 7398ed7af2
commit 90c6d615fb
15 changed files with 40 additions and 40 deletions

View file

@ -0,0 +1,23 @@
<?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
);
}
}