summaryrefslogtreecommitdiff
path: root/Editor/GUI/WindowManager.cpp
blob: add2066b67a69e01481ed628b46d8ab0a31f9a22 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#include "EditorWindows.h"
#include "WinUtils.h"

GUIWindow* WindowManager::GetMouseOverWindow()
{
	return NULL;
}

Vector2f WindowManager::GetMousePosition()
{
	POINT pt;
	if (!GetCursorPos(&pt))
		return Vector2f(0, 0);

	return Vector2f(pt.x, pt.y);

}