move platformes and scenery to /apps/demos/

This commit is contained in:
2024-10-11 19:26:46 +03:00
parent 9c01264fd0
commit 4ac87b3021
26 changed files with 0 additions and 0 deletions

View File

@ -0,0 +1,25 @@
#ifndef INGAME_H
#define INGAME_H
#include "twn_game_api.h"
#include "../state.h"
#include "scene.h"
typedef struct SceneIngame {
Scene base;
Camera cam;
/* TODO: put this in a better place */
float yaw;
float pitch;
float roll;
} SceneIngame;
Scene *ingame_scene(State *state);
#endif