Added basic shape stuff

This commit is contained in:
andreja6
2018-10-24 20:49:26 -07:00
parent d2e0b29051
commit c50d2a8166
4 changed files with 21 additions and 1 deletions

6
Enum.h
View File

@@ -6,4 +6,10 @@ namespace Enum
Smooth, Bumps, Welds, Glue
};
}
namespace Shape
{
enum Value {
Block, Sphere, Cylinder
};
}
}