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

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