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

std::vector<GUIWindow*> WindowManager::s_GUIWindows;

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

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

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

}