initial components
This commit is contained in:
11
include/components/PlayerGraphics.h
Normal file
11
include/components/PlayerGraphics.h
Normal file
@@ -0,0 +1,11 @@
|
||||
#pragma once
|
||||
|
||||
#include "Graphics.h"
|
||||
#include "GraphicsComponent.h"
|
||||
#include <print>
|
||||
|
||||
class PlayerGraphics : public GraphicsComponent {
|
||||
void update(Graphics &graphics) {
|
||||
std::print("Updating player graphics");
|
||||
}
|
||||
};
|
||||
Reference in New Issue
Block a user