1#pragma once
2#include "Model.h"
3#include "ModelPart.h"
4
5class BoatModel : public Model
6{
7public:
8 ModelPart *cubes[5];
9 BoatModel();
10 virtual void render(shared_ptr<Entity> entity, float time, float r, float bob, float yRot, float xRot, float scale, bool usecompiled);
11};