mirror of
https://github.com/YGGverse/Yoda.git
synced 2026-04-01 00:55:28 +00:00
define dependencies ns
This commit is contained in:
parent
8c6936f5b1
commit
14ee41e735
22 changed files with 154 additions and 76 deletions
|
|
@ -4,11 +4,15 @@ declare(strict_types=1);
|
|||
|
||||
namespace Yggverse\Yoda\Entity\Browser\History;
|
||||
|
||||
use \GtkBox;
|
||||
use \GtkOrientation;
|
||||
|
||||
use \Yggverse\Yoda\Entity\Browser\History;
|
||||
|
||||
class Container
|
||||
{
|
||||
public \GtkBox $gtk;
|
||||
// GTK
|
||||
public GtkBox $gtk;
|
||||
|
||||
// Dependencies
|
||||
public History $history;
|
||||
|
|
@ -24,8 +28,8 @@ class Container
|
|||
$this->history = $history;
|
||||
|
||||
// Init container
|
||||
$this->gtk = new \GtkBox(
|
||||
\GtkOrientation::VERTICAL
|
||||
$this->gtk = new GtkBox(
|
||||
GtkOrientation::VERTICAL
|
||||
);
|
||||
|
||||
// Init navbar
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue