summaryrefslogtreecommitdiff
path: root/game/surface.h
blob: ccc5c6cb81180a86ea7c8a9966a34e8088a9d2cb (plain)
1
2
3
4
5
6
7
8
9
10
11
#pragma once

#include "assetFactory/asset.h"

struct Surface : public Asset {
	friend Persistence::SelectionPtrBase<std::shared_ptr<Surface>>;
	bool persist(Persistence::PersistenceStore & store) override;

	glm::vec3 colorBias;
	float quality;
};