Level editor work

This commit is contained in:
elasota
2020-02-23 20:21:04 -05:00
parent d63ac98624
commit c78a20dafd
61 changed files with 1317 additions and 305 deletions

View File

@@ -0,0 +1,13 @@
#pragma once
#include "IGpCursor.h"
#include "GpWindows.h"
struct IGpCursor_Win32 : public IGpCursor
{
public:
virtual const HCURSOR &GetHCursor() const = 0;
virtual void IncRef() = 0;
virtual void DecRef() = 0;
};