IsoEngine/src/components/physics_component.h
2024-09-09 02:50:07 -06:00

11 lines
198 B
C

#pragma once
struct PhysicsComponent {
float velocityX = 0.0f;
float velocityY = 0.0f;
float accelerationX = 0.0f;
float accelerationY = 0.0f;
void Update(float deltaTime);
};