From 5f0c15b2d3299ea210a78d54e9b10c3cb4266139 Mon Sep 17 00:00:00 2001 From: Aki Date: Tue, 19 Apr 2022 23:48:20 +0200 Subject: Created factory to handle enemy creation --- NullGenerator.h | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 NullGenerator.h (limited to 'NullGenerator.h') 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 {} +}; -- cgit v1.1