mirror of
https://github.com/michaelrausch/Party-Parrots-At-Sea.git
synced 2026-05-09 06:18:44 +00:00
6ff309a40c
- Top Down Camera Works - Started on chase cam but the math is a bit tricky. tags : #story[1273]
19 lines
195 B
Java
19 lines
195 B
Java
package seng302.visualiser.cameras;
|
|
|
|
|
|
public interface RaceCamera {
|
|
|
|
void zoomIn();
|
|
|
|
void zoomOut();
|
|
|
|
void panLeft();
|
|
|
|
void panRight();
|
|
|
|
void panUp();
|
|
|
|
void panDown();
|
|
|
|
}
|