aboutsummaryrefslogtreecommitdiff
path: root/sources/TZR_MouseGetPosition.c
blob: dab29763b8568dd18ba958c1c857289da3deecae (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#include "TZR_globals.h"
#include "TZR_render.h"

void
TZR_MouseGetPosition(int *x, int *y)
{
	if (x != NULL)
		*x = ___tzr_mouse_x;
	if (y != NULL)
		*y = ___tzr_mouse_y;
	TZR_ScreenTransform(x, y);
}