Merge branch 'main' of yibble.dev:bulmanator/ld58

This commit is contained in:
2025-10-05 21:19:14 +01:00
17 changed files with 335 additions and 127 deletions

View File

@@ -1,5 +1,6 @@
#if !defined(LD_GAME_CORE_H_)
#define LD_GAME_CORE_H_
#include "world.h"
typedef struct G_Camera G_Camera;
struct G_Camera {
@@ -18,6 +19,8 @@ struct G_State {
D_Context draw;
G_Camera camera;
World *world;
};
function void G_ImagesLoad(G_State *game);
@@ -35,6 +38,5 @@ function R3f G_CameraBounds(G_Camera *camera);
#include "player.h"
#include "nav.h"
#include "npc.h"
#include "world.h"
#endif // LD_GAME_CORE_H_