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

#include "shape.h"

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