rayzor

diff src/camera.h @ 13:964f8ea5f095

missed quite a lot of things in my last commit apparently
author John Tsiombikas <nuclear@member.fsf.org>
date Sat, 12 Apr 2014 23:37:55 +0300
parents d94a69933a71
children be616b58df99
line diff
     1.1 --- a/src/camera.h	Sat Apr 12 23:28:24 2014 +0300
     1.2 +++ b/src/camera.h	Sat Apr 12 23:37:55 2014 +0300
     1.3 @@ -2,7 +2,7 @@
     1.4  #define CAMERA_H_
     1.5  
     1.6  #include "vmath.h"
     1.7 -#include "xfnode.h"
     1.8 +#include "snode.h"
     1.9  
    1.10  class Camera : public SceneNode {
    1.11  private:
    1.12 @@ -16,7 +16,7 @@
    1.13  	Camera();
    1.14  
    1.15  	void set_target(const Vector3 &target);
    1.16 -	const Vector3 &get_target() const;
    1.17 +	Vector3 get_target() const;
    1.18  
    1.19  	void set_fov(float fov);
    1.20  	float get_fov() const;