Added shapes, found and fixed possible memory leak

This commit is contained in:
andreja6
2019-11-07 10:28:19 -08:00
parent b2240a4ad0
commit 7b87773abf
10 changed files with 446 additions and 120 deletions

4
Enum.h
View File

@@ -5,13 +5,13 @@ namespace Enum
namespace SurfaceType
{
enum Value {
Smooth, Bumps, Welds, Glue
Smooth, Snaps, Inlets, Glue, Weld, Spawn, Hinge, Motor, Bumps
};
}
namespace Shape
{
enum Value {
Block, Sphere, Cylinder
Ball = 0, Block = 1, Cylinder = 2
};
}
}