aboutsummaryrefslogtreecommitdiff
path: root/include/cru/platform/native/cursor.hpp
blob: 6c8f8068fba551bf761542d663bd7a1732f052c0 (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