7 lines
259 B
C++
7 lines
259 B
C++
#include <raylib.h>
|
|
|
|
Color ColorLerp(Color c1, Color c2, float amount);
|
|
Color ColorAdd(Color c, int add);
|
|
Vector2 CalculateVector(float rotation, float offSet, float len);
|
|
|
|
void drawTexureWithRotation(RenderTexture2D &target, Rectangle &dest, float rotation); |