Changed / Refactored many enums and structs, to better standardize the naming of everything. Improved some more descriptions and briefs.

This commit is contained in:
Jonathan Thomas
2013-09-10 12:59:06 -05:00
parent 234201743a
commit cbed47ea5f
26 changed files with 74 additions and 90 deletions

View File

@@ -79,7 +79,7 @@ void Keyframe::AddPoint(float x, float y)
}
// Add a new point on the key-frame, with a specific interpolation type
void Keyframe::AddPoint(float x, float y, Interpolation_Type interpolate)
void Keyframe::AddPoint(float x, float y, InterpolationType interpolate)
{
// Create a point
Point new_point(x, y, interpolate);