]> git.jsancho.org Git - lugaru.git/blobdiff - Source/Animation/Muscle.cpp
Rename all C++ headers with .hpp extension
[lugaru.git] / Source / Animation / Muscle.cpp
index 1e7f0d5e171e8bd3f71ce6d68822ba093de9f87d..4485c5e64153bcd2492d8c8cf745da9acec2855e 100644 (file)
@@ -18,8 +18,9 @@ You should have received a copy of the GNU General Public License
 along with Lugaru.  If not, see <http://www.gnu.org/licenses/>.
 */
 
-#include "Animation/Muscle.h"
-#include "binio.h"
+#include "Animation/Muscle.hpp"
+
+#include "Utils/binio.h"
 
 extern float multiplier;
 extern bool freeze;
@@ -42,11 +43,7 @@ Muscle::Muscle()
     strength = 0;
 }
 
-Muscle::~Muscle()
-{
-}
-
-void Muscle::load(FILE* tfile, int vertexNum, Joint* joints)
+void Muscle::load(FILE* tfile, int vertexNum, std::vector<Joint>& joints)
 {
     int numvertices, vertice, parentID;