Files
LearningOpenGL/GraphicsComponent.h
onTheZero 4bf6b02255 GameObjects
Began to add GameObjects, starting with the player.
2025-08-13 00:59:03 -04:00

8 lines
112 B
C++

#pragma once
class GraphicsComponent
{
public:
virtual ~GraphicsComponent() {};
virtual void Update() = 0;
};