Fix a bunch of warnings

This commit is contained in:
SirLynix
2022-11-19 11:02:16 +01:00
parent 5fb974f24c
commit 5ca2cf9320
8 changed files with 19 additions and 19 deletions

View File

@@ -34,7 +34,7 @@ namespace Nz
public:
DebugDrawer(RenderDevice& renderDevice, std::size_t maxVertexPerDraw = DefaultVertexBlockSize);
DebugDrawer(const DebugDrawer&) = delete;
DebugDrawer(DebugDrawer&&) = delete;
DebugDrawer(DebugDrawer&&) noexcept = default;
~DebugDrawer();
void Draw(CommandBufferBuilder& builder);