Warning fixes
This commit is contained in:
parent
f2197800bc
commit
d7dda716fe
|
|
@ -18,8 +18,8 @@ namespace Nz
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
EnttWorld();
|
EnttWorld();
|
||||||
EnttWorld(const EnttWorld&) = default;
|
EnttWorld(const EnttWorld&) = delete;
|
||||||
EnttWorld(EnttWorld&&) = default;
|
EnttWorld(EnttWorld&&) = delete;
|
||||||
~EnttWorld() = default;
|
~EnttWorld() = default;
|
||||||
|
|
||||||
template<typename T, typename... Args> T& AddSystem(Args&&... args);
|
template<typename T, typename... Args> T& AddSystem(Args&&... args);
|
||||||
|
|
|
||||||
|
|
@ -32,7 +32,7 @@ namespace Nz
|
||||||
inline DegreeAnglef GetFOV() const;
|
inline DegreeAnglef GetFOV() const;
|
||||||
UInt32 GetRenderMask() const override;
|
UInt32 GetRenderMask() const override;
|
||||||
inline Int32 GetRenderOrder() const;
|
inline Int32 GetRenderOrder() const;
|
||||||
const RenderTarget& GetRenderTarget() const;
|
const RenderTarget& GetRenderTarget() const override;
|
||||||
inline const Vector2f& GetSize() const;
|
inline const Vector2f& GetSize() const;
|
||||||
inline const Rectf& GetTargetRegion() const;
|
inline const Rectf& GetTargetRegion() const;
|
||||||
ViewerInstance& GetViewerInstance() override;
|
ViewerInstance& GetViewerInstance() override;
|
||||||
|
|
|
||||||
|
|
@ -24,7 +24,7 @@ namespace Nz
|
||||||
static constexpr std::size_t MaxLightCount = 8;
|
static constexpr std::size_t MaxLightCount = 8;
|
||||||
|
|
||||||
inline LightComponent(bool initialyVisible = true);
|
inline LightComponent(bool initialyVisible = true);
|
||||||
LightComponent(const LightComponent&) = default;
|
LightComponent(const LightComponent&) = delete;
|
||||||
LightComponent(LightComponent&&) = default;
|
LightComponent(LightComponent&&) = default;
|
||||||
~LightComponent() = default;
|
~LightComponent() = default;
|
||||||
|
|
||||||
|
|
@ -44,7 +44,7 @@ namespace Nz
|
||||||
|
|
||||||
inline void Show(bool show = true);
|
inline void Show(bool show = true);
|
||||||
|
|
||||||
LightComponent& operator=(const LightComponent&) = default;
|
LightComponent& operator=(const LightComponent&) = delete;
|
||||||
LightComponent& operator=(LightComponent&&) = default;
|
LightComponent& operator=(LightComponent&&) = default;
|
||||||
|
|
||||||
NazaraSignal(OnLightAttached, LightComponent* /*graphicsComponent*/, std::size_t /*lightIndex*/);
|
NazaraSignal(OnLightAttached, LightComponent* /*graphicsComponent*/, std::size_t /*lightIndex*/);
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue