This commit is contained in:
2024-03-07 15:33:00 +03:00
parent 13e3addae4
commit 2a8fba23d3
2 changed files with 39 additions and 33 deletions

View File

@ -1,6 +1,7 @@
#pragma once
namespace EasingFunc {
typedef float(*eFunc)(float);
float easeLinear(float t) {
return t;
}