diff --git a/OpenRA.Game/OpenRA.Game.csproj b/OpenRA.Game/OpenRA.Game.csproj
index 16c7633d85..e795badd54 100644
--- a/OpenRA.Game/OpenRA.Game.csproj
+++ b/OpenRA.Game/OpenRA.Game.csproj
@@ -198,7 +198,6 @@
-
diff --git a/OpenRA.Game/Graphics/VoxelRenderable.cs b/OpenRA.Mods.RA/Graphics/VoxelRenderable.cs
similarity index 99%
rename from OpenRA.Game/Graphics/VoxelRenderable.cs
rename to OpenRA.Mods.RA/Graphics/VoxelRenderable.cs
index d951a31d30..2d59a63583 100644
--- a/OpenRA.Game/Graphics/VoxelRenderable.cs
+++ b/OpenRA.Mods.RA/Graphics/VoxelRenderable.cs
@@ -11,8 +11,9 @@
using System.Collections.Generic;
using System.Drawing;
using System.Linq;
+using OpenRA.Graphics;
-namespace OpenRA.Graphics
+namespace OpenRA.Mods.RA.Graphics
{
public struct VoxelRenderable : IRenderable
{
diff --git a/OpenRA.Mods.RA/OpenRA.Mods.RA.csproj b/OpenRA.Mods.RA/OpenRA.Mods.RA.csproj
index 086ef5919e..5ef59505fe 100644
--- a/OpenRA.Mods.RA/OpenRA.Mods.RA.csproj
+++ b/OpenRA.Mods.RA/OpenRA.Mods.RA.csproj
@@ -525,6 +525,7 @@
+
diff --git a/OpenRA.Mods.RA/Render/RenderVoxels.cs b/OpenRA.Mods.RA/Render/RenderVoxels.cs
index 7c91cba27b..6b466817ff 100755
--- a/OpenRA.Mods.RA/Render/RenderVoxels.cs
+++ b/OpenRA.Mods.RA/Render/RenderVoxels.cs
@@ -11,6 +11,7 @@
using System.Collections.Generic;
using OpenRA.Graphics;
using OpenRA.Traits;
+using OpenRA.Mods.RA.Graphics;
namespace OpenRA.Mods.RA.Render
{