aboutsummaryrefslogtreecommitdiff
path: root/include/cru/platform/native/Cursor.hpp
blob: 447cd6943b78c0e153ea3f3bba112d3b5e82fa59 (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::native {
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::native