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

8 lines
110 B
C++

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