aboutsummaryrefslogtreecommitdiff
path: root/include/cru/platform/native/cursor.hpp
blob: eae51ffe850bfee0f7e4a8a0e7d20a74d0fbe048 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#pragma once
#include "../resource.hpp"
#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