mirror of
https://github.com/SpartanJ/eepp.git
synced 2026-05-30 10:06:35 +03:00
Created a backend system for the window-input management. So now it will be a los easier to port to another windows library/platform. Since this is a big commit, it's probably that some bugs where introduced, but i tested all that i could, and it's working fine. I'll probably add a cursor manager backend because right now there is no cursor management at all, i removed the CreateCursor function because it was unusable.
16 lines
225 B
C++
16 lines
225 B
C++
#include "cclipboard.hpp"
|
|
|
|
namespace EE { namespace Window {
|
|
|
|
cClipboard::cClipboard( cWindow * window ) :
|
|
mWindow( window )
|
|
{}
|
|
|
|
cClipboard::~cClipboard() {}
|
|
|
|
cWindow * cClipboard::GetWindow() const {
|
|
return mWindow;
|
|
}
|
|
|
|
}}
|