Sdk/EntityOwner: Make Entity* constructor implicit
This commit is contained in:
parent
34787d6766
commit
5108eb8906
|
|
@ -214,6 +214,7 @@ Nazara Development Kit:
|
|||
- Added BaseWidget::ForEachWidgetChild
|
||||
- Added experimental BoxLayout class
|
||||
- RenderSystem now resolve skinning before render
|
||||
- EntityOwner constructor taking a Entity* is no longer explicit
|
||||
|
||||
# 0.4:
|
||||
|
||||
|
|
|
|||
|
|
@ -15,7 +15,7 @@ namespace Ndk
|
|||
{
|
||||
public:
|
||||
EntityOwner() = default;
|
||||
explicit EntityOwner(Entity* entity);
|
||||
EntityOwner(Entity* entity);
|
||||
EntityOwner(const EntityOwner& handle) = delete;
|
||||
EntityOwner(EntityOwner&& handle) noexcept = default;
|
||||
~EntityOwner();
|
||||
|
|
|
|||
Loading…
Reference in New Issue