Update IWindow.hpp

This commit is contained in:
Jack Andersen 2015-11-26 19:23:15 -10:00
parent 3fb2a27572
commit 783b4d9c5e
1 changed files with 1 additions and 1 deletions

View File

@ -200,7 +200,7 @@ public:
}
virtual void setWindowFrame(float x, float y, float w, float h)=0;
virtual void setWindowFrame(int x, int y, int w, int h)=0;
virtual void getWindowFrame(const SWindowRect& rect)
virtual void setWindowFrame(const SWindowRect& rect)
{
setWindowFrame(rect.location[0], rect.location[1], rect.size[0], rect.size[1]);
}