mirror of
https://github.com/Blinue/Magpie.git
synced 2026-06-24 02:04:10 +00:00
12 lines
199 B
C++
12 lines
199 B
C++
#include "pch.h"
|
|
#include "CursorDrawer2.h"
|
|
|
|
namespace Magpie {
|
|
|
|
bool CursorDrawer2::Initialize(GraphicsContext& graphicsContext) noexcept {
|
|
_graphicsContext = &graphicsContext;
|
|
|
|
return true;
|
|
}
|
|
|
|
}
|