removed some unneeded includes

This commit is contained in:
Sara 2023-11-11 23:28:30 +01:00
parent a5405c8222
commit 552f296b5d
3 changed files with 0 additions and 4 deletions

View file

@ -1,5 +1,4 @@
#include "collision.h"
#include "debug.h"
#include "vmath.h"
#include "rigidbody.h"

View file

@ -4,7 +4,6 @@
#include "shape.h"
#include "render.h"
#include "debug.h"
#include "program.h"
void physics_entity_debug_draw(PhysicsEntity self) {
RigidBody* body = self.tc->get_rigidbody(self.data);

View file

@ -2,12 +2,10 @@
#include "camera.h"
#include "game_world.h"
#include "physics_world.h"
#include "sprite.h"
#include "time.h"
#include "assets.h"
#include "debug.h"
#include "input.h"
#include <assert.h>
#include <SDL2/SDL_video.h>
#include <SDL2/SDL_image.h>