aboutsummaryrefslogtreecommitdiffstats
path: root/src/ru/olamedia/camera/Cameraman.java
blob: 7dbbcc01fc23c8f5b8e13bb9bedf51de4d7b8784 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
package ru.olamedia.camera;

/**
 * Cameraman.
 * 
 * @desc Primary purpose is providing eyes level: getCameraY()
 * 
 * @author olamedia
 * 
 */
public interface Cameraman {
	public float getCameraX();

	public float getCameraY();

	public float getCameraZ();

	public void update(float delta);

	public void captureControls();
}