14 lines
143 B
C++
14 lines
143 B
C++
#ifndef S3D_EYE_H
|
|
#define S3D_EYE_H
|
|
|
|
namespace nme {
|
|
|
|
enum S3DEye {
|
|
EYE_MIDDLE,
|
|
EYE_LEFT,
|
|
EYE_RIGHT
|
|
};
|
|
|
|
}
|
|
|
|
#endif |