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