18 lines
416 B
C++
18 lines
416 B
C++
#pragma once
|
|
|
|
#include <uf/config.h>
|
|
#include <uf/ext/ext.h>
|
|
#include <uf/engine/entity/entity.h>
|
|
#include <uf/engine/scene/scene.h>
|
|
|
|
namespace ext {
|
|
namespace GuiManagerBehavior {
|
|
UF_BEHAVIOR_DEFINE_TYPE();
|
|
EXT_BEHAVIOR_DEFINE_TRAITS();
|
|
EXT_BEHAVIOR_DEFINE_FUNCTIONS();
|
|
UF_BEHAVIOR_DEFINE_METADATA(
|
|
pod::Vector2ui size = { 1, 1 };
|
|
pod::Vector2ui reference = { 1920, 1080 };
|
|
);
|
|
}
|
|
} |