Advertisement
Guest User

Untitled

a guest
Jan 16th, 2014
95
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.57 KB | None | 0 0
  1. package com.voxel.engine.core.Camera;
  2.  
  3. import org.lwjgl.util.vector.Vector3f;
  4.  
  5. /**
  6. * Created with IntelliJ IDEA.
  7. * User: Toby's PC
  8. * Date: 14/01/14
  9. * Time: 19:07
  10. * To change this template use File | Settings | File Templates.
  11. */
  12. public interface Camera {
  13.  
  14. public void yaw(float amount);
  15. public void pitch(float amount);
  16. void roll(float amount);
  17. public void walkBackwards(Vector3f velocity);
  18. public void walkForward(Vector3f velocity);
  19. public void strafeLeft(Vector3f velocity);
  20. public void strafeRight(Vector3f velocity);
  21. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement