summaryrefslogtreecommitdiff
path: root/assetFactory/object.h
blob: f48b78a7818ef25e072f5ea8b835de25d9b6046f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#pragma once

#include "shape.h"
#include "stdTypeDefs.hpp"
#include "use.h"

class Object : public StdTypeDefs<Object>, public Shape {
public:
	Object(std::string i);

	CreatedFaces createMesh(ModelFactoryMesh & mesh, const Mutation::Matrix & mutation) const;

	Use::Collection uses;
	std::string id;
};