Magpie/src/Magpie.Core/CursorDrawer2.cpp
2026-01-08 16:57:14 +08:00

12 lines
199 B
C++

#include "pch.h"
#include "CursorDrawer2.h"
namespace Magpie {
bool CursorDrawer2::Initialize(GraphicsContext& graphicsContext) noexcept {
_graphicsContext = &graphicsContext;
return true;
}
}