initial components
This commit is contained in:
13
include/components/GraphicsComponent.h
Normal file
13
include/components/GraphicsComponent.h
Normal file
@@ -0,0 +1,13 @@
|
||||
#pragma once
|
||||
|
||||
#include "Graphics.h"
|
||||
|
||||
class GraphicsComponent {
|
||||
|
||||
public:
|
||||
virtual ~GraphicsComponent() {}
|
||||
virtual void update(Graphics &graphics) = 0;
|
||||
|
||||
private:
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user