9 lines
95 B
C++
9 lines
95 B
C++
|
#pragma once
|
||
|
|
||
|
#if defined(__APPLE__)
|
||
|
#include <OpenGL/glu.h>
|
||
|
#else
|
||
|
#include <GL/glu.h>
|
||
|
#endif
|
||
|
|