Remove unneeded macro.

This commit is contained in:
Night Owl 2016-09-20 00:52:10 +05:00
parent 98815c198b
commit 8607d22707

View File

@ -16,10 +16,15 @@
#ifndef SCIENTIST_H
#define SCIENTIST_H
#define NUM_SCIENTIST_HEADS 4 // four heads available for scientist model
#if defined ( TOT_DLL )
#define NUM_SCIENTIST_HEADS 4 // four heads available for scientist model
enum { HEAD_GLASSES = 0, HEAD_EINSTEIN = 1, HEAD_LUTHER = 2, HEAD_SLICK = 3 };
enum
{
HEAD_GLASSES = 0,
HEAD_EINSTEIN = 1,
HEAD_LUTHER = 2,
HEAD_SLICK = 3
};
//=======================================================
// Scientist
@ -88,6 +93,5 @@ public:
int m_iPose;// which sequence to display
static char *m_szPoses[7];
};
#endif // defined ( TOT_DLL )
#endif // SCIENTIST_H
#endif // SCIENTIST_H