12 lines
222 B
C++
12 lines
222 B
C++
#pragma once
|
|
|
|
#include "Graphics.h"
|
|
#include "GraphicsComponent.h"
|
|
#include <print>
|
|
|
|
class PlayerGraphics : public GraphicsComponent {
|
|
void update(Graphics &graphics) {
|
|
std::print("Updating player graphics");
|
|
}
|
|
};
|