Configuration.h
branchv_0
changeset 30 02972f051744
parent 29 dc3c102e1264
--- a/Configuration.h	Wed Dec 27 01:50:38 2023 +0100
+++ b/Configuration.h	Wed Dec 27 10:34:12 2023 +0100
@@ -29,7 +29,7 @@
 		std::string fileName;
 	};
 
-	class Texture : public File {
+	class Document : public File {
 	};
 
 	class Shader : public File {
@@ -43,8 +43,8 @@
 
 	};
 
-	// TODO: support loading whole directory and monitoring using inotify
-	std::vector<Texture> textures;
+	double dpi = 600.;
+	std::vector<Document> documents;
 	std::vector<Shader> shaders;
 
 	unsigned long backgroundColor = (0x33 << 16 | 0x33 << 8 | 0x33);