Code warning cleanup and add GPL license header to all CPP files

This commit is contained in:
Bruno Herbelin
2021-11-10 23:19:38 +01:00
parent 790ccc320e
commit a6ba694fbd
70 changed files with 1332 additions and 116 deletions

View File

@@ -28,7 +28,7 @@ class CopyCallback : public UpdateCallback
public:
CopyCallback(Node *target);
void update(Node *n, float dt);
void update(Node *n, float);
};
class MoveToCallback : public UpdateCallback
@@ -63,10 +63,10 @@ public:
class BounceScaleCallback : public UpdateCallback
{
bool initialized_;
float duration_;
float scale_;
float progress_;
bool initialized_;
glm::vec3 initial_scale_;
public: