Start work on level definitions

This commit is contained in:
James Lambert 2022-04-24 16:43:41 -06:00
parent dae161d206
commit 10ee8e3e79
2 changed files with 12 additions and 0 deletions

View file

@ -0,0 +1 @@
#include "level_definition.h"

View file

@ -0,0 +1,11 @@
#ifndef __LEVEL_DEFINITION_H__
#define __LEVEL_DEFINITION_H__
#include "../physics/collision_scene.h"
struct LevelDefinition {
struct CollisionObject* collisionQuads;
short collisionQuadCount;
};
#endif