]> git.jsancho.org Git - lugaru.git/blobdiff - Source/Person.h
Remove HitStruct and associated commented-out code
[lugaru.git] / Source / Person.h
index 517ca0d5057a544358f8ac9b69ad70cd50b1d8f4..27666e4bf904fe99cd04b1d1c0b1d3e50710a665 100644 (file)
@@ -47,15 +47,6 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
 #define rabbittype 0
 #define wolftype 1
 
-class HitStruct
-{
-       public:
-               Joint *joint1;
-               Joint *joint2;
-               XYZ hitlocation;
-               bool collision;
-};
-
 class Person
 {
        public:
@@ -380,7 +371,6 @@ class Person
                void DoStuff();
                void DoAnimations();
                void RagDoll(bool checkcollision);
-               HitStruct BulletCollideWithPlayer(XYZ start, XYZ end);
 };
 
 #endif