summaryrefslogtreecommitdiffhomepage
path: root/NullGenerator.h
diff options
context:
space:
mode:
Diffstat (limited to 'NullGenerator.h')
-rw-r--r--NullGenerator.h9
1 files changed, 9 insertions, 0 deletions
diff --git a/NullGenerator.h b/NullGenerator.h
new file mode 100644
index 0000000..7e92a1c
--- /dev/null
+++ b/NullGenerator.h
@@ -0,0 +1,9 @@
+#pragma once
+
+#include "Generator.h"
+
+
+struct NullGenerator : public Generator
+{
+ void update(float) override {}
+};