Shark.h
branchv_0
changeset 7 e6065118326f
parent 5 ee4ba9f5a053
child 8 80ad08521091
--- a/Shark.h	Fri Dec 01 21:02:02 2023 +0100
+++ b/Shark.h	Sat Dec 02 15:02:56 2023 +0100
@@ -37,6 +37,7 @@
 #include "ImageLoader.h"
 #include "Shader.h"
 #include "Program.h"
+#include "FileMonitor.h"
 
 class Shark {
 private:
@@ -174,7 +175,9 @@
 	Window win;
 	XVisualInfo* vi;
 	GLXContext glc;
-	
+
+	FileMonitor fileMonitor;
+	std::vector<WatchedFile> watchedFiles;
 	ImageLoader imageLoader;
 	std::vector<std::shared_ptr<Shader>> shaders;
 	std::shared_ptr<Program> shaderProgram;