aboutsummaryrefslogtreecommitdiff
path: root/include/cru/platform/gui/Cursor.hpp
blob: 3f1679e428368218290069d1489c5c845e1af040 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#pragma once
#include "Base.hpp"

#include <memory>

namespace cru::platform::gui {
struct ICursor : virtual INativeResource {};

struct ICursorManager : virtual INativeResource {
  virtual std::shared_ptr<ICursor> GetSystemCursor(SystemCursorType type) = 0;

  // TODO: Add method to create cursor.
};
}  // namespace cru::platform::gui