1 //
2 //  TouchBar.h
3 //  Bonzomatic
4 //
5 //  Created by Nightfox on 13/5/18.
6 //
7 #ifdef BONZOMATIC_ENABLE_TOUCHBAR
8 
9 #include <GLFW/glfw3.h>
10 #define GLFW_EXPOSE_NATIVE_COCOA
11 #include <GLFW/glfw3native.h>
12 
13 void ShowTouchBar(GLFWwindow *window);
14 
15 #endif
16