diff options
Diffstat (limited to 'src/crepe/api/Vector2.h')
| -rw-r--r-- | src/crepe/api/Vector2.h | 3 | 
1 files changed, 3 insertions, 0 deletions
| diff --git a/src/crepe/api/Vector2.h b/src/crepe/api/Vector2.h index 5a57484..90d9d57 100644 --- a/src/crepe/api/Vector2.h +++ b/src/crepe/api/Vector2.h @@ -42,6 +42,9 @@ public:  	//! Checks if this vector is not equal to another vector.  	bool operator!=(const Vector2 & other) const; + +	//! +	double dot(const Vector2& other) const;  };  } // namespace crepe |