mirror of
https://github.com/HowestDAE/dae16-VerhulstBram.git
synced 2025-12-16 20:41:47 +01:00
Added the Grid, Camera, Level system
Basic player Started (Barely) on the TextureManager And other fixes
This commit is contained in:
@@ -18,6 +18,13 @@ struct Point2f
|
||||
explicit Point2f( float x, float y );
|
||||
//Point2f(int x, int y); //Stupid fix for it giving an error
|
||||
|
||||
//operator
|
||||
Point2f operator+( const Point2f& other ) const;
|
||||
Point2f operator*( float other ) const;
|
||||
Point2f operator*( const Point2f& other ) const;
|
||||
Point2f operator*( int other ) const;
|
||||
Point2f operator/( float other ) const;
|
||||
|
||||
float x;
|
||||
float y;
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user