26 lines
320 B
C
26 lines
320 B
C
#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
|