MINI v.0.9.64d:

- [NEW] origin(x,y) sets the origin of the coordinate system.
- [FIX] false extern declaration removed.
- MINI_VERSION has its own header file.
This commit is contained in:
2023-07-05 07:58:31 +02:00
parent dab7a96ec2
commit 9b99aa23cf
5 changed files with 22 additions and 3 deletions

3
mini.h
View File

@@ -2,7 +2,7 @@
#include <SDL2/SDL.h>
#define MINI_VERSION "0.9.32d"
#include "version.h"
#define KEY_UNKNOWN 0
#define KEY_A 4
@@ -170,6 +170,7 @@ void clip();
void camera(int x, int y);
void view(int x, int y, int w, int h);
void view();
void origin(int x, int y);
void circ(int x, int y, uint8_t r = 4);
void circ(int x, int y, uint8_t r, uint8_t color);