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

#include "shape.h"

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