]> git.jsancho.org Git - lugaru.git/commitdiff
Migrate some more definitions from Constants.h
authorAlexander Monakov <amonakov@gmail.com>
Mon, 3 Jan 2011 20:01:29 +0000 (23:01 +0300)
committerAlexander Monakov <amonakov@gmail.com>
Mon, 3 Jan 2011 20:01:29 +0000 (23:01 +0300)
Source/Constants.h
Source/Skeleton.h

index 2858cdf7b7c01583eef0d6d238826d340807c022..1b1cd9bdaa8840d0ff34490c8e04dea488d745e7 100644 (file)
@@ -42,27 +42,6 @@ static const char *editortypenames[] = {
   "dead1", "dead2", "dead3", "dead4"
 };
 
-const int head = 0; // DO NOT CONFLICT WITH ZLIB's variable head
-const int neck = 1;
-const int leftshoulder = 2;
-const int leftelbow = 3;
-const int leftwrist = 4;
-const int lefthand = 5;
-const int rightshoulder = 6;
-const int rightelbow = 7;
-const int rightwrist = 8;
-const int righthand = 9;
-const int abdomen = 10;
-const int lefthip = 11;
-const int righthip = 12;
-const int groin = 13;
-const int leftknee = 14;
-const int leftankle = 15;
-const int leftfoot = 16;
-const int rightknee = 17;
-const int rightankle = 18;
-const int rightfoot = 19;
-
 const int max_dialogues = 20;
 const int max_dialoguelength = 20;
 
index fa57c9a1845a47128599453b40d03ff09937952e..627ca42ca8b3b84129429a5198d25952a27a8d50 100644 (file)
@@ -34,6 +34,15 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
 #include "Sprite.h"
 #include "binio.h"
 
+enum bodyparts {
+  head, neck,
+  leftshoulder,  leftelbow,  leftwrist,  lefthand,
+  rightshoulder, rightelbow, rightwrist, righthand,
+  abdomen, lefthip, righthip, groin,
+  leftknee,  leftankle,  leftfoot,
+  rightknee, rightankle, rightfoot
+};
+
 class Joint
 {
 public: