9 lines
115 B
C
9 lines
115 B
C
![]() |
#ifndef MATH_H
|
||
|
#define MATH_H
|
||
|
|
||
|
#include "../object/point.h"
|
||
|
|
||
|
float distance(Point& a, Point& b);
|
||
|
|
||
|
#endif // MATH_H
|