Fixed wrong include guard.
This commit is contained in:
parent
38d97abd5c
commit
27388c7af3
1 changed files with 3 additions and 4 deletions
|
@ -5,8 +5,8 @@
|
||||||
* Author: Felix
|
* Author: Felix
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#ifndef VECTOR_H_
|
#ifndef DG_VECTOR_H_
|
||||||
#define VECTOR_H_
|
#define DG_VECTOR_H_
|
||||||
|
|
||||||
#include <math.h>
|
#include <math.h>
|
||||||
|
|
||||||
|
@ -80,5 +80,4 @@ angle(float in) {
|
||||||
return Vector2f(sin(in), cos(in));
|
return Vector2f(sin(in), cos(in));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#endif /* DG_VECTOR_H_ */
|
||||||
#endif /* VECTOR_H_ */
|
|
||||||
|
|
Reference in a new issue