IsoEngine/src/components/physics_component.h

11 lines
198 B
C
Raw Normal View History

2024-09-09 02:50:07 -06:00
#pragma once
struct PhysicsComponent {
float velocityX = 0.0f;
float velocityY = 0.0f;
float accelerationX = 0.0f;
float accelerationY = 0.0f;
void Update(float deltaTime);
};