diff options
author | Rémi Verschelde <rverschelde@gmail.com> | 2019-04-30 12:05:46 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-04-30 12:05:46 +0200 |
commit | 0327d57cfd64b40878a79e5b83f4848001fecb4a (patch) | |
tree | 5add258b16b3fc00a3b060a1d12db57edda9442f /servers | |
parent | 4e230d713487ea540ca534b11d0bdf225617a676 (diff) | |
parent | 1a1b35721a89e2b27d2b18b8b746c37fd56734aa (diff) | |
download | redot-engine-0327d57cfd64b40878a79e5b83f4848001fecb4a.tar.gz |
Merge pull request #27007 from BastiaanOlij/arvr_notifications
Send notifications to ARVRInterfaces
Diffstat (limited to 'servers')
-rw-r--r-- | servers/arvr/arvr_interface.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/servers/arvr/arvr_interface.h b/servers/arvr/arvr_interface.h index 8459a82388..9ea59a3961 100644 --- a/servers/arvr/arvr_interface.h +++ b/servers/arvr/arvr_interface.h @@ -112,6 +112,7 @@ public: virtual void commit_for_eye(ARVRInterface::Eyes p_eye, RID p_render_target, const Rect2 &p_screen_rect) = 0; /* output the left or right eye */ virtual void process() = 0; + virtual void notification(int p_what) = 0; ARVRInterface(); ~ARVRInterface(); |