gameui

diff src/vec.h @ 4:e0916bb20b7f

changed the name to goatkit
author John Tsiombikas <nuclear@member.fsf.org>
date Fri, 21 Mar 2014 21:45:37 +0200
parents f1014234dece
children
line diff
     1.1 --- a/src/vec.h	Fri Mar 21 03:37:16 2014 +0200
     1.2 +++ b/src/vec.h	Fri Mar 21 21:45:37 2014 +0200
     1.3 @@ -1,7 +1,7 @@
     1.4  #ifndef VEC_H_
     1.5  #define VEC_H_
     1.6  
     1.7 -namespace gameui {
     1.8 +namespace goatkit {
     1.9  
    1.10  class Vec2 {
    1.11  public:
    1.12 @@ -11,6 +11,6 @@
    1.13  	Vec2(float xx, float yy) : x(xx), y(yy) {}
    1.14  };
    1.15  
    1.16 -}	// namespace gameui
    1.17 +}	// namespace goatkit
    1.18  
    1.19  #endif	// VEC_H_