summaryrefslogtreecommitdiff
path: root/src/game/game.h
blob: bd98e7ed7236ed3a7d2b68511dd1d5c346dbc311 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#ifndef GAME_H
#define GAME_H

typedef struct {
	Arena	*parena;

	Texture	texture;

	Camera	camera;
	V3	camera_dp;

	Model	*model;

	U32	mesh_shader;
	U32	ui_shader;

	F32	t;
} State;

#endif /* GAME_H */