diff --git a/include/gen/RagDollDescriptor.h b/include/gen/RagDollDescriptor.h
deleted file mode 100644
index 73396ee55aba5e82bb8c4cc0b65a5e0472d722ae..0000000000000000000000000000000000000000
--- a/include/gen/RagDollDescriptor.h
+++ /dev/null
@@ -1,53 +0,0 @@
-/* Copyright (c) 2006, NIF File Format Library and Tools
-All rights reserved.  Please see niflib.h for license. */
-
-//---THIS FILE WAS AUTOMATICALLY GENERATED.  DO NOT EDIT---//
-
-//To change this file, alter the niftools/docsys/gen_niflib.py Python script.
-
-#ifndef _RAGDOLLDESCRIPTOR_H_
-#define _RAGDOLLDESCRIPTOR_H_
-
-#include "../NIF_IO.h"
-
-namespace Niflib {
-
-
-/*!  */
-struct RagdollDescriptor {
-	/*! Default Constructor */
-	NIFLIB_API RagdollDescriptor();
-	/*! Default Destructor */
-	NIFLIB_API ~RagdollDescriptor();
-	/*! Copy Constructor */
-	NIFLIB_API RagdollDescriptor( const RagdollDescriptor & src );
-	/*! Copy Operator */
-	NIFLIB_API RagdollDescriptor & operator=( const RagdollDescriptor & src );
-	/*! Unknown. */
-	Float4 pivotA;
-	/*! Unknown. */
-	Float4 planeA;
-	/*! Unknown. */
-	Float4 twistA;
-	/*! Unknown. */
-	Float4 pivotB;
-	/*! Unknown. */
-	Float4 planeB;
-	/*! Unknown. */
-	Float4 twistB;
-	/*! Unknown. */
-	float coneMinAngle;
-	/*! Unknown. */
-	float planeMinAngle;
-	/*! Unknown. */
-	float planeMaxAngle;
-	/*! Unknown. */
-	float twistMinAngle;
-	/*! Unknown. */
-	float twistMaxAngle;
-	/*! Unknown. */
-	float maxFriction;
-};
-
-}
-#endif
diff --git a/niflib.vcproj b/niflib.vcproj
index 6b9154258ad572fb00ca04cc52f5a15f007d5a9c..c7a1f05b2378062283302a26efb4bf1e9bafa831 100644
--- a/niflib.vcproj
+++ b/niflib.vcproj
@@ -305,6 +305,10 @@
 			Filter="cpp;c;cxx;def;odl;idl;hpj;bat;asm;asmx"
 			UniqueIdentifier="{4FC737F1-C7A5-4376-A066-2A32D752A2FF}"
 			>
+			<File
+				RelativePath=".\src\AnimSequence.cpp"
+				>
+			</File>
 			<File
 				RelativePath=".\src\ComplexShape.cpp"
 				>
@@ -1535,6 +1539,10 @@
 			Filter="h;hpp;hxx;hm;inl;inc;xsd"
 			UniqueIdentifier="{93995380-89BD-4b04-88EB-625FBE52EBFB}"
 			>
+			<File
+				RelativePath=".\include\AnimSequence.h"
+				>
+			</File>
 			<File
 				RelativePath=".\include\ComplexShape.h"
 				>
diff --git a/src/gen/RagDollDescriptor.cpp b/src/gen/RagDollDescriptor.cpp
deleted file mode 100644
index 356169cab163ec64d068b58ade6c6c3f849f6f98..0000000000000000000000000000000000000000
--- a/src/gen/RagDollDescriptor.cpp
+++ /dev/null
@@ -1,37 +0,0 @@
-/* Copyright (c) 2006, NIF File Format Library and Tools
-All rights reserved.  Please see niflib.h for license. */
-
-//---THIS FILE WAS AUTOMATICALLY GENERATED.  DO NOT EDIT---//
-
-//To change this file, alter the niftools/docsys/gen_niflib.py Python script.
-
-#include "../../include/gen/RagdollDescriptor.h"
-using namespace Niflib;
-
-//Constructor
-RagdollDescriptor::RagdollDescriptor() : coneMinAngle(0.0f), planeMinAngle(0.0f), planeMaxAngle(0.0f), twistMinAngle(0.0f), twistMaxAngle(0.0f), maxFriction(0.0f) {};
-
-//Copy Constructor
-RagdollDescriptor::RagdollDescriptor( const RagdollDescriptor & src ) {
-	*this = src;
-};
-
-//Copy Operator
-RagdollDescriptor & RagdollDescriptor::operator=( const RagdollDescriptor & src ) {
-	this->pivotA = src.pivotA;
-	this->planeA = src.planeA;
-	this->twistA = src.twistA;
-	this->pivotB = src.pivotB;
-	this->planeB = src.planeB;
-	this->twistB = src.twistB;
-	this->coneMinAngle = src.coneMinAngle;
-	this->planeMinAngle = src.planeMinAngle;
-	this->planeMaxAngle = src.planeMaxAngle;
-	this->twistMinAngle = src.twistMinAngle;
-	this->twistMaxAngle = src.twistMaxAngle;
-	this->maxFriction = src.maxFriction;
-	return *this;
-};
-
-//Destructor
-RagdollDescriptor::~RagdollDescriptor() {};