more component stuff

This commit is contained in:
Josh Lyon
2025-08-13 22:21:37 -06:00
parent f6de0ed9f3
commit 7259d9307b
8 changed files with 151 additions and 43 deletions

View File

@@ -2,12 +2,13 @@
#include "Graphics.h"
class GameObject;
class GraphicsComponent {
public:
virtual ~GraphicsComponent() {}
virtual void update(Graphics &graphics) = 0;
private:
};