summaryrefslogtreecommitdiff
path: root/scene.h
blob: 7ae50b8027a8af9795bfa1739898723eb3ca8504 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#ifndef SCENE_H
#define SCENE_H

#include "vector.h"

class Scene {
	public:
		float pitch, yaw;
		Vector3 pos;
		float yvel;

		void lookat();
		void move(float forward, float right, int steps);
};

#endif