Sdk/EntityOwner: Make Entity* constructor implicit
This commit is contained in:
@@ -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();
|
||||
|
||||
Reference in New Issue
Block a user