BCSTM-Player |

This commit is contained in:
2021-07-23 13:58:16 +00:00
parent f51ddecf3d
commit c537fc095a
101 changed files with 39980 additions and 0 deletions

View File

@ -0,0 +1,21 @@
//
// Linear.h
//
// This code is derived from Universal Tween Engine
// Licensed under Apache License 2.0 - http://www.apache.org/licenses/LICENSE-2.0
//
#ifndef __LinearPath__
#define __LinearPath__
#include <TweenEngine/TweenPath.h>
namespace TweenEngine
{
class LinearPath : public TweenPath
{
float compute(float t, float *points, int pointsCnt);
};
}
#endif /* defined(__LinearPath__) */