summaryrefslogtreecommitdiff
path: root/assetFactory/cuboid.h
blob: 5a4072a8cba486719a713d64810d81fcbd2ff8d6 (plain)
1
2
3
4
5
6
7
8
#pragma once

#include "shape.h"

class Cuboid : public Shape {
public:
	CreatedFaces createMesh(ModelFactoryMesh & mesh, const Mutation::Matrix & mutation) const override;
};