Replaced some resources for better licensing

Some resources used in examples have not a clear license, so, I'm replacing some of them for clearly licensed versions or resources created by me under CC0. License file to be added.
This commit is contained in:
raysan5 2020-05-31 23:31:43 +02:00
parent 0e1d7d6430
commit 82fca43406
7 changed files with 6 additions and 6 deletions

View file

@ -48,7 +48,7 @@ int main(void)
float gravity = 3.0f;
Texture2D smoke = LoadTexture("resources/smoke.png");
Texture2D smoke = LoadTexture("resources/spark_flame.png");
int blending = BLEND_ALPHA;
@ -85,7 +85,7 @@ int main(void)
if (mouseTail[i].alpha <= 0.0f) mouseTail[i].active = false;
mouseTail[i].rotation += 5.0f;
mouseTail[i].rotation += 2.0f;
}
}